是否要删除上一个_POST_LINK中的箭头?

时间:2012-08-29 作者:ad2003

如何隐藏或禁用此« 在前面签名previous_post_link?我在任何地方都找不到它-它只显示在生成的页面上。

这是我正在使用的代码:

    <?php
        $nextPost = get_next_post();
        $nextthumbnail = get_the_post_thumbnail($nextPost->ID);
        next_post_link(\'%link\',\'\'.$nextthumbnail.\'\');
        $next_value = get_post_meta( $nextPost->ID, \'subtext\', $single = true);

?>
谢谢大家!

2 个回复
SO网友:Joseph Leedy

复制您的next_post_link:

 <?php previous_post_link( \'%link\', \'\' . $prevthumbnail . \'\' ); ?>
根据codex page, 第一个参数指定将显示什么(感谢Chip!)

SO网友:manifestor

你可以定义你想要的任何东西。您可以包装%link (文章的实际链接)您最喜欢的方式:

<?php next_post_link( \'<strong>%link</strong>\' ); ?>

结束

相关推荐