Códigos útiles para plantillas wordpress
Mostar enlace a siguiente y anterior
<div class="navigation-post"> <div class="alignleft"><?php previous_post_link(); ?></div> <div class="alignright"> <?php next_post_link(); ?> </div></div>
Mostrar loop con categoria especifica y número de posts
<?php
query_posts('category_name=video&posts_per_page=10');
while (have_posts()) : the_post(); ?>
Añadir un shortcode
<?php echo do_shortcode('[hmp_player]'); ?>
Añadir js en child-theme con soporte jquery
wp_enqueue_script('my-custom-script', get_stylesheet_directory_uri(). '/js/custom.js',array('jquery'),'1.0',true);
<?php
query_posts('category_name=video&posts_per_page=10');
while (have_posts()) : the_post(); ?>
Añadir un shortcode
<?php echo do_shortcode('[hmp_player]'); ?>
Añadir js en child-theme con soporte jquery
wp_enqueue_script('my-custom-script', get_stylesheet_directory_uri(). '/js/custom.js',array('jquery'),'1.0',true);