<?php if (is_single()) {?>
<div class="post-prenex">
<div class="alignleft">
<?php previous_post('« « %',
'Previous Post ', 'no'); ?>
</div>
<?php ?>
<div class="alignright">
<?php next_post('% » » ',
'Next Post ', 'no'); ?>
</div>
</div>
<?php }?>
大家好我尝试了简单的插件作为下一篇和上一篇文章。在那下一个和上一篇文章工作正常。但是帖子中的内容却消失了。 我不知道我犯了什么错误。 注意:我没有编辑 the_content
add_action 尝试的single.php文件任何一个指出问题并给予解决方案非常感谢。
答案 0 :(得分:1)
我看到的一些问题:
实施例
function mycontent( $content ) {
$output = '';
// add something to output
return $content.$output; //return content with output
}
add_action( 'the_content', 'mycontent' );