WordPress listado Actions Hooks

Fecha Publicación:       21 de Mayo de 2020
Fecha Modificación:       21 de Mayo de 2020

Entramos a la pagina web www.hookr.io    y vamos al menu Core y selecionamos menu Actions 

a) wp_head  

Nos permite ingresar codigo dentro de las etiquetas   <head></head>.

Aqui nos indica como usar este Hook:

// define the wp_head callback 
function action_wp_head(  ) { 
    // make action magic happen here... 
};          
// add the action 
add_action( 'wp_head', 'action_wp_head', 10, 0 ); 

 

Ejemplos wp_head:

Agregamos un meta tag dentro de las etiquetas head ,  este codigo HOOKS  lo    agregamos en un snippets  

// el nombre de funcion puede cambiar por ejemplo 
// action_wp_head cambiaremos por action_wp_head_meta
function action_wp_head_meta(  ) { 
    echo "<meta name='prueba' content='prueba' />";
};          
// add the action 
add_action( 'wp_head', 'action_wp_head_meta', 10, 0 ); 

b) get_header

Se activa antes de que se cargue el archivo de plantilla de encabezado es decir antes del Head.   

Modo de Uso:

// define the get_header callback 
function action_get_header( $name ) { 
    // make action magic happen here... 
}; 
         
// add the action 
add_action( 'get_header', 'action_get_header', 10, 1 ); 

 

Ejemplos get_head:

Este codigo HOOKS  lo    agregamos en un snippets con la función do_shortcode  agregamos un shortcode y con el HOOKS  get_header  lo agregamos antes de la cabecera  <head>:  

 

// define the get_header callback 
function action_get_header( $name ) { 
	echo do_shortcode('[smartslider3 slider="2"]');
}; 
         
// add the action 
add_action( 'get_header', 'action_get_header', 10, 1 ); 
Articulo : 935 - Veces Leidas
Compartir Articulo: