is_single(), is_front_page(), is_home()

is_single(), is_front_page(), is_home() sont des fonctions de tests.

à utiliser lors de l’action template_redirect.

Exemple:

add_action( 'template_redirect', 'fcn_test' );
 
function fcn_test(){
 
if(is_single)
//do anything
 
if(is_front_page)
//do anything
 
}

Powered by WordPress with GimpStyle Theme design by Horacio Bella.
Entries and comments feeds. Valid XHTML and CSS.