My post excerpt does not work

时间:2015-04-25 作者:user2061772

我正在使用文章摘录,但当我点击阅读更多链接时,它不会显示所有文章段落,它只显示摘录的段落,这是代码行索引。php

<?php if ( have_posts() ) : ?>
  <?php while ( have_posts() ) : the_post(); ?>
    <?php get_template_part( \'content\', get_post_format() ); ?>
      <h2><a href=" <?php the_permalink(); ?> "> <?php the_title(); ?> </a></h2>
    <?php the_excerpt(); ?>
  <?php endwhile; ?>
<?php else : ?>
  <?php get_template_part( \'content\', \'none\' ); ?>
<?php endif; ?>
这是函数中的代码。php文件

function new_excerpt_more( $more ) {
  return \' <a class="read-more" href="\'. get_permalink( get_the_ID() ) . \'">\' .__(\'Read More\', \'your-text-domain\') . \'</a>\';
} 
add_filter( \'excerpt_more\', \'new_excerpt_more\' );

1 个回复
SO网友:Webimetry Solutions

WordPress使用索引。php来显示您的博客页面或归档页面,因此它们总是需要摘录。(除非另有修改)
现在,单个帖子或文章将调用显示全部内容的内容函数。按照以下步骤操作:-步骤1:-打开您的单曲。php并检查

<?php the_excerpt(); ?>
步骤2:-将上述代码替换为:-

<?php the_content(); ?>
这将更改单个帖子以显示案例中的所有内容。如果您有内容-{post format}。php,那么您也需要更改它们。希望这有帮助。:)

结束

相关推荐

Get_the_excerpt()在插件循环中不起作用

我是WordPress插件开发的新手。我正在开发一个简单的WordPress插件get_the_excerpt() 循环中不工作。其他标签,如get_the_title(), get_the_permalink() 即使get_the_content() 工作正常。请有人帮我解决这个问题。这是代码if($loop->have_posts()) : while($loop->have_posts()) : $loop->the_post();