Prima di proseguire...
Potrebbe interessarti la nostra collezione di esercizi C risolti?
Oggi vediamo come inserire i tag per targeting di adsense(come ad esempio <!– google_ad_section_start –>), per far ciò usiamo il plugin adman (spiegato già in precedenza il suo funzionamento).
Per ottimizzare in home page, pagine tag, categorie, archivi, ecc il targeting faremo che considera solo i primi due articoli, mentre nelle pagine specifiche dell’articolo considereremo solo l’articolo corrente.
Per l’articolo singolo basta aggiungere alla chiusura del seguente if:
if (is_single() || (class_exists(‘INAP_Post’) && $_REQUEST[‘type’] == “content”))
questo (circa riga 100):
1 | $content = "<!-- google_ad_section_start -->" . $content . "<!-- google_ad_section_end -->" ; |
Mentre per l’home page e pagine simili dovremo usare la versione modificata di adman proposta qui.
In particolare andremo a sostituire (circa riga 101) :
1 2 3 4 5 6 7 | else if ((is_home() || is_tag() || is_archive()) && !is_feed() && $this ->home_number_of_displays > 0 && get_option( 'adman_adcode_home' )) { $this ->home_number_of_displays--; $content = stripslashes (get_option( 'adman_adcode_home' )) . $content ; } else if ((is_home() || is_tag() || is_archive())&& !is_feed() && $this ->home_number_of_displays>-1 && get_option( 'adman_adcode' )) { $this ->home_number_of_displays--; $content = stripslashes (get_option( 'pubblicità_da_inserire' )) . $content ; } |
con:
1 2 3 4 5 6 7 | else if ((is_home() || is_tag() || is_archive()) && !is_feed() && $this ->home_number_of_displays > 0 && get_option( 'adman_adcode_home' )) { $this ->home_number_of_displays--; $content = stripslashes (get_option( 'adman_adcode_home' )) . "<!-- google_ad_section_start -->" . $content . "<!-- google_ad_section_end -->" ; } else if ((is_home() || is_tag() || is_archive())&& !is_feed() && $this ->home_number_of_displays>-1 && get_option( 'adman_adcode' )) { $this ->home_number_of_displays--; $content = stripslashes (get_option( 'pubblicità_da_inserire' )) . "<!-- google_ad_section_start -->" . $content . "<!-- google_ad_section_end -->" ; } |
tag sezioni da considerare per il targeting di adsense in wordpress (utilizzando il plugin adman) by cardinale claudio is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.