Viewing 2 replies - 1 through 2 (of 2 total)
  • make eveything that I posted show up

    there are no more words even if one clicks the ‘read more’ – this is more or less all you posted.

    generally:
    have a look into the template of the front page (possibly index.php ?)
    and see if it uses the_excerpt(); within the loop.
    if so, replace it with the_content();

    https://codex.www.ads-software.com/Function_Reference/the_excerpt

    Thread Starter chun89

    (@chun89)

    <?php get_header() ?>

    <div class=”hfeed”>
    <div class=”hfeed-tab”>
    <div id=”tab-content”>
    <div id=”tab-content-post”>
    <div class=”fspace”></div>

    <?php while ( have_posts() ) : the_post() ?>

    <div id=”post-<?php the_ID() ?>” >
    <h2 class=”entry-title”>” rel=”bookmark” title=”Permanent Link to <?php the_title_attribute(); ?>”><?php the_title(); ?></h2>

    <div class=”entry-content-home”>
    <?php
    $permalink=get_permalink($ID);
    if(empty($post->post_password)){
    if (!(strtoupper(get_locale()) == ‘ZH_CN’)){
    echo ‘<p>’;
    the_content_rss(”, true, ”, 55);
    echo ‘</p>’;
    }else{
    $exp=mb_substr(strip_tags($post->post_content),0,220);
    echo ‘<p>’.$exp.’ …… ‘;
    }
    _e(“ More »</p>”,’js-o3-lite’);
    }else{
    _e(“<p>Protected post.Enter your password to view”,’js-o3-lite’);
    _e(“Click me to go and enter the password »</p>”,’js-o3-lite’);
    }
    ?>
    </div>
    <p class=”homemeta”>
    <span class=”dateicon”><?php the_time(‘Y/m/d’) ?></span>
    <span class=”caticon”><?php printf(__(‘%s’), get_the_category_list(‘, ‘)); ?></span>
    <span class=”comicon”>
    </span>
    </p>

    </div>
    <?php endwhile ?>
    </div>
    <div id=”nav-below”>
    <div class=”nav-left”>
    <span class=”nav-previous”><?php next_posts_link(__(‘« Older posts’)) ?></span>
    <span class=”nav-next”><?php previous_posts_link(__(‘Newer posts »’)) ?></span>
    </div>
    </div>
    </div>

    <ul class=”ui-tabs-nav”>
    <?php if ( is_home() && !is_paged()) : ?>
    <li class=”current_page_item”>” title=”back to homepage”>Home
    <?php else : ?>

    • ” title=”back to homepage”>Home
    • <?php endif // is_home() && !is_paged() ?>
      <?php wp_list_pages(‘sort_column=post_title&title_li=&depth=1&’)?>

      </div>
      </div>
      </div>
      </div>

      <?php include (TEMPLATEPATH.’/sidebar.php’) ?>

      <?php get_footer() ?>

      It already says the content. i appreciate your reply though

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘help with post’ is closed to new replies.