No se han encontrado widgets en la barra lateral

Obtener el id de la pagina de posts

Para obtener este id, se utiliza el siguoiente código: $page_for_posts = get_option( 'page_for_posts' );

Leer más

Agregar ACF de imágenes en el menú

add_filter('wp_nav_menu_objects', 'my_wp_nav_menu_objects', 10, 2); function my_wp_nav_menu_objects( $items, $args ) { foreach( $items as &$item ) { $icon = get_field('icono', $item); if( $icon ) { $item->title .= ' ';} } return…

Leer más

Obtener categoría primaria de Yoast

if ( ! function_exists( 'get_primary_taxonomy' ) ) { function get_primary_taxonomy( $post_id, $taxonomy ) { $prm_term = ''; if (class_exists('WPSEO_Primary_Term')) { $wpseo_primary_term = new WPSEO_Primary_Term( $taxonomy, $post_id ); $prm_term = $wpseo_primary_term->get_primary_term();…

Leer más

Formato Email Contacto form 7

<table class="contacto" style="font-family: Arial, Helvetica, sans-serif; font-size: 12px;" width="800" cellspacing="0" cellpadding="30" align="center"> <tbody> <tr> <td colspan="2" align="center"><a href=""><img src="https://avymaq.cl/wp-content/uploads/2022/10/logo.png" alt="" width="200px" /></a></td> </tr> <tr bgcolor="#f1f1f1"> <td colspan="2"> <h3 style="text-align: center;">Nuevo…

Leer más