Forums

Front Page Template Read More for other pages (2 posts)

  1. alidot5ive
    Member
    Posted 1 year ago #

    Hi Everyone

    My front page template looks like

    //First Part
    <?php
    the_post();
    the_content();
    ?>
    
    //Second Part
    <?php
    $page_id =41;
    $page_data = get_page( $page_id );
    $content = $page_data->post_content;
    $title = $page_data->post_title;
    ?> 
    
    <h1><?php echo $title ?></h1>
    <?php echo $content;?>

    First part is related to page I want to show on my home page and its working very fine as per my requirements

    But on Second Part I am having trouble to show teaser for some other page and its read more link ... right now second part showing full text of the other page

    Please help me out ... thanks in advance

    Regards,
    Ali

  2. vtxyzzy
    Member
    Posted 1 year ago #

    Give this a try:

    <?php echo apply_filters('the_content',$content); ?>

Topic Closed

This topic has been closed to new replies.

About this Topic