Cómo mostrar solo el título de las entradas en mi sitio web

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

ertebest

Alfa
¡Usuario con pocos negocios! ¡Utiliza siempre saldo de Forobeta!
Que tal, mi problema es el siguiente y estuve investigando y la solución es bastante sencilla... quiero que las entradas de mi sitio web sólo muestren el título (ocultar el contenido de los post) y al hacer clic en el título el usuario pueda acceder al post completo.

NOTA: La etiqueta "More" no es lo que busco..

Este es el index de mi plantilla:

Insertar CODE, HTML o PHP:
<?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(); ?>

gracias de antemano a las personas que respondan.
 
ese code no sirve...tu theme usa otro archivo. content.php o content-loop.php
 
Ahha muchas gracias estaba en content.php ya eliminé el content del post.