WF AQ

Knowledge base

15 Gennaio 2019
di admin@admin
Commenti disabilitati su HOW TO UNCOVER MALICIOUS CODE/MALWARE FILES

HOW TO UNCOVER MALICIOUS CODE/MALWARE FILES

Fonte: https://mediatemple.net/community/products/dv/204405434/how-to-uncover-malicious-code-malware-files _______________________________________________ OVERVIEW An unfortunate side-effect of being online is the fact that you are continually being probed for weaknesses by ne’er do wells. Be it your computer, your internet provider, or your website, someone is almost always trying to … Continua a leggere

11 Gennaio 2019
di admin@admin
Commenti disabilitati su Hardening secure WordPress

Hardening secure WordPress

Security in WordPress is taken very seriously, but as with any other system there are potential security issues that may arise if some basic security precautions aren’t taken. This article will introduce you to basic security concepts and serve as an … Continua a leggere

28 Novembre 2017
di admin@admin
Commenti disabilitati su Moving WordPress

Moving WordPress

Fonte: https://codex.wordpress.org/Moving_WordPress   Moving to a New Server If you are moving WordPress from one server to another, begin by backing up your WordPress directory, images, plugins, and other files on your site as well as the database. See WordPress Backups and Backing Up … Continua a leggere

31 Ottobre 2013
di admin@admin
Commenti disabilitati su WordPress Template Hierarchy

WordPress Template Hierarchy

Gerarchi dei template di wordpress. Versione di riferimento: ?????? Sito di riferimento: http://codex.wordpress.org/Template_Hierarchy Link diretto all’immagine del sito di riferimento: http://codex.wordpress.org/File:Template_Hierarchy.png

31 Ottobre 2013
di admin@admin
Commenti disabilitati su Aggiungere un contatore di visite degli articoli in WordPress

Aggiungere un contatore di visite degli articoli in WordPress

Nel file functions.php vanno inserite queste due funzioni. /** * Add Most Viewed Post feature via post meta */ function setPostViews ($postID) { $count_key = ‘post_views_count’; $count = get_post_meta($postID, $count_key, true); if($count==”){ $count = 0; delete_post_meta($postID, $count_key); add_post_meta($postID, $count_key, ‘0’); … Continua a leggere