Viewing 5 replies - 1 through 5 (of 5 total)
  • Open index.php in your theme folder

    replace with the_content() with the_excerpt() function

    of course in the settings -> reading i have setup full text

    this only works for RSS feeds, not for the content n the blog.

    review http://codex.wordpress.org/Function_Reference/the_excerpt

    for theme specific support, please post in https://wordpress.org/support/theme/blackbird/

    Thread Starter daxstec

    (@daxstec)

    The problem is that i do not have the functions, below my index.php in my theme folder:

    <?php
    /**
     * The main template file.
     *
     * This is the most generic template file in a WordPress theme
     * and one of the two required files for a theme (the other being style.css).
     * It is used to display a page when nothing more specific matches a query.
     * E.g., it puts together the home page when no home.php file exists.
     * Learn more: http://codex.wordpress.org/Template_Hierarchy
     *
     */
    ?>
    <?php get_header(); ?>
    <div class="page-heading">
        <h1 class="page-title"><?php the_title(); ?></h1>
        <div class="clear"></div>
    </div>
    <!--Start Page Content -->
    <div class="page-content-container">
        <div class="page-content">
            <div class="grid_16 alpha">
                <div class="content-bar">
                    <!--Start Post-->
                    <?php get_template_part('loop', 'index'); ?>
                    <!--End Post-->
                    <div class="clear"></div>
                    <nav id="nav-single"> <span class="nav-previous">
                            <?php next_posts_link(__('&larr; Older posts', 'black-bird')); ?>
                        </span> <span class="nav-next">
                            <?php previous_posts_link(__('Newer posts &rarr;', 'black-bird')); ?>
                        </span> </nav>
                </div>
            </div>
            <div class="grid_8 omega">
                <!--Start Sidebar-->
                <?php get_sidebar(); ?>
                <!--End Sidebar-->
            </div>
        </div>
    </div>
    </div>
    </div>
    </div>
    <?php get_footer(); ?>

    this line

    <?php get_template_part('loop', 'index'); ?>

    points to loop.php

    check the code there.

    Thread Starter daxstec

    (@daxstec)

    Done, sorry but i do not know php, i am a java programmer 😉

    Thanks and have a nice day 😉

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Posts are displaying summary, not full text’ is closed to new replies.