No estás registrado (Registrarse)

Vanilla 1.1.10 es un producto de Lussumo. Para más información: Documentación, Soporte.

    •  
      CommentAuthorlbarcelo
    • CommentTimeApr 17th 2008
     # 1
    A ver si me podeis hechar una mano, ando buscando alguna manera de listar las entradas de un wordpress (solo los titulos) a partir de una categoria o de una tag en concreto (cualquiera de las dos cosas me vale), sabeis de algun plugin o manera de hacerlo sin tener que pagarle a alguien? :confuso:
  1.  # 2
    ¿Quieres que sólo salgan los títulos, fuera del diseño normal?
    •  
      CommentAuthorraimundoz
    • CommentTimeApr 17th 2008 editado
     # 3
    creo que habia un plugin que se llamaba the exeprt reloaded, puedes configurar que mostrar en las categorias/tags etc, si solo mostrar el titulo, o el titulo y parte del texto o titulo, parte de texto e imagen... no se si es compatible con wp 2.5 pero busca por ahi que hay...Dia del webmainer :webmainer:
    •  
      CommentAuthorrober
    • CommentTimeApr 18th 2008
     # 4
    Creo que es esto lo que buscas.


    First, you’ll want to open your archive.php file and find the post loop. It usually starts with this code (or something similar):

    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    You’ll want to delete everything from that code down to the end of the loop, which usually ends with this:

    <?php endif; ?>
    Now, you’ll want to replace the post loop code with the following slightly different code loop:

    <?php $temp_category = single_cat_title('',false); if (!empty($temp_category)){ // give index ?>
    <h1><?php single_cat_title(); ?></h1>
    <p><?php echo(category_description(the_category_ID(false))); ?></p>
    <?php if ($posts) : foreach ($posts as $post) : start_wp(); ?>
    <li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li><br>
    <?php endforeach; else: ?>
    <p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
    <?php endif; ?>
    <?php }else{ // give details or single post ?>
    ...... code for normal post overview
    <?php } ?>
    And you’re done! You can add<li>, <ol>, and whatever else as needed, and then style your archives page in your stylesheet to get the look you’re trying to achieve.

    Fuente:http://hackwordpress.com/how-to-converting-your-category-pages-to-display-post-titles/Touch Games | cibercafe |
    •  
      CommentAuthorlbarcelo
    • CommentTimeApr 18th 2008
     # 5
    Busco justamente lo que dicen HispaOnline y Rober, solamente que me gustaria que las categorias siguiesen listandose como siempre y en una pagina de wordpress poner el listado por titulos de todos los post de una categoria en concreto, he encontrado un plugin que lo hace solo que llega hasta la version 2.3 :tongue: