jueves, 29 de noviembre de 2018

Wordpress - Traer elementos

noviembre 29, 2018 // by Alex // // No comments

TRAER EL BUSCADOR GENERAL DE WORDPRESS

PHP

<?php get_search_form() ?>

TRAER UNA PARTE DE LA PLANTILLA

PHP

<?php get_template_part('carpeta/nombre-del', 'elemento'); ?>

TRAER LINK DEL HOME

PHP

<?php echo get_home_url(); ?>

O también

<?php echo esc_url( home_url( '/' ) ); ?>

concatenada

<?php echo esc_url(home_url('/')) . '/wp-content/uploads/2019/03/bandera-espanol.png'; ?>

AGREGAR LA GESTIÓN DEL LOGO AL PERSONALIZAR


en el "functions.php"

PHP

add_theme_support( 'custom-logo', array(
'height' => 100,
'width' => 400,
'flex-height' => true,
'flex-width' => true
) );

Y luego se llama al logo en la plantilla:

PHP

<?php
if(has_custom_logo()):
the_custom_logo();
else:
echo'<a href="'.esc_url(home_url('/')).'">'.
get_bloginfo('name').'</a>';
endif;
?>

Traer el contenido de las páginas

PHP

<?php if (have_posts()): while(have_posts()): the_post(); the_content(); endwhile; endif; ?>

0 comentarios:

Publicar un comentario