Hice mi plantilla por primera vez, siguiendo algunos tutoriales. Todo muy bien en la parte de diseño, pero cuando instalo algunos plugins estos no funcionan. Pruebo los plugins en temas por defecto que vienen con la instalación y funcionan perfectamente. ¿Qué le puede estar faltando a mi theme?
Pego el código de mi index.php, por si alguien vea algún error. Gracias.
Código PHP :
<?php get_header(); ?> <!--Llamamos al header--> <div class="wrapper"> <div class="contenido"> <?php if (function_exists('wp_flash_img_show')) {wp_flash_img_show();} ?> <?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?> <div class="post"> <h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2> <div class="entrada"> <?php the_content(); ?> <p class="postmetadata"> <?php _e('Categoria:'); ?> <?php the_category(', ') ?> <br /> <?php comments_popup_link('No hay comentarios »', '1 commentario »', '% commentarios »'); ?> <?php edit_post_link('Editar', ' | ', ''); ?> </p> </div> </div> <?php endwhile; ?> <div class="navegacion"> <?php posts_nav_link('actual','previo','siguiente'); ?> </div> <?php else : ?> <div class="post" id="post-<?php the_ID(); ?>"> <h2><?php _e('No encontrado'); ?></h2> </div> <?php endif; ?> </div> <!--Fin contenido--> <?php get_sidebar(); ?><!--Llama a sidebar.php --> <?php get_footer(); ?> </body> </html>