2016-11-28 7 views
1

、私は私の最新の記事からループに次のコードを使用しています:各投稿のWordPressの最新ニュースループにもっと多くのボタンを読み込むにはどうすればいいですか?私のWordPressサイトで

<?php 
    if (is_single()) : 
     the_title('<h1 class="entry-title">', '</h1>'); 
    else : 
     the_title('<h2 class="entry-title"><a href="' . esc_url(get_permalink()) . '" rel="bookmark">', '</a></h2>'); 
    endif; 

    if ('post' === get_post_type()) : ?> 
    <div class="entry-meta"> 
     <?php blogtristan_posted_on(); ?> <span class="loopdivide"> | <span class="loop-time"><?php the_time('H:i');?></span> (GMT) 

    </div><!-- .entry-meta --> 
    <?php 
    endif; ?> 
</header><!-- .entry-header --> 

    <div class="entry-content"> 
    <?php 
$post = $post->post_content; /* or you can use get_the_title() */ 
$getlength = strlen($post); 
$thelength = 200; 
echo substr($post, 0, $thelength); 
if ($getlength > $thelength) echo "..."; 
?> 

はどのようにして各ループ項目の簡単な「続きを読む」ボタンを追加するには?

答えて

1

以下のコードを試してみてください

if (strlen($getlength) > 200) { 
    echo '<a href="' . get_the_permalink(get_the_ID()) . '" title="">Read more</a>'; 
}else{ 
    echo $post; 
} 
関連する問題