Editar diseño para mostrar solo títulos en post

  • Autor Autor ertebest
  • Fecha de inicio Fecha de inicio
E

ertebest

Alfa
¡Usuario con pocos negocios! ¡Utiliza siempre saldo de Forobeta!
Que tal, gracias de antemano a los que responden...

Quisiera saber si alguien tiene alguna idea de como editar el diseño de los post de tal manera que sólo muestren el título... Ya conozco la etiqueta "More" y no es lo que busco.


Navegando por internet me encontré este sitio: http://www.legionjuegos.org/ algo así... haré post bastante extensos.

El index de mi plantilla es el siguiente:

<?php get_header(); ?>
<?php get_sidebar('top'); ?>
<?php
if (have_posts()) {
/* Display navigation to next/previous pages when applicable */
if (theme_get_option('theme_' . (theme_is_home() ? 'home_' : '') . 'top_posts_navigation')) {
theme_page_navigation();
}
/* Start the Loop */
while (have_posts()) {
the_post();
get_template_part('content', get_post_format());
}
/* Display navigation to next/previous pages when applicable */
if (theme_get_option('theme_bottom_posts_navigation')) {
theme_page_navigation();
}
} else {
theme_404_content();
}
?>
<?php get_sidebar('bottom'); ?>
<?php get_footer(); ?>
 
<?php get_header(); ?>
<?php get_sidebar('top'); ?>
<?php
if (have_posts()) {
/* Display navigation to next/previous pages when applicable */
if (theme_get_option('theme_' . (theme_is_home() ? 'home_' : '') . 'top_posts_navigation')) {
theme_page_navigation();
}
/* Start the Loop */
while (have_posts()) {
the_post();
echo get_the_title();
}
/* Display navigation to next/previous pages when applicable */
if (theme_get_option('theme_bottom_posts_navigation') ) {
theme_page_navigation();
}
} else {
theme_404_content();
}
?>
<?php get_sidebar('bottom'); ?>
<?php get_footer(); ?>
 
Le modifiqué esa parte pero aún así no funciona.
 
Atrás
Arriba