如何将按钮文本从阅读更多内容更改为帖子类别和后wordpress中的其他文本?

时间:2018-10-29 13:25:59

标签: php wordpress

如何在阅读更多的文章后更改文章链接文本? 此外,如何更改相关的帖子文字以及更多的按钮 Post Image For Refrence

我尝试在post-single.php也funtions.php中添加代码

(MATLAB)                                        | (TERMINAL)
>> menage_share('create', 'shmem', uint64(20))  | 
<< 20                                           |
>> write_share('shmem', 'Hello there')          | $ ./share_server
<< 11                                           |   ( ... help message ... )
                                                | << r
                                                | >> Hello there 

1 个答案:

答案 0 :(得分:0)

根据您显示的内容,您的代码段将适用于默认的更多内容,在抄本中显示为“经典”。

看看您的代码片段如何在按钮上的任何位置都不显示?

让我们尝试一下。

function new_excerpt_more($more) {
global $post;
return ' <a class="moretag btn btn-primary" href="'. get_permalink($post->ID) . '">Read More »</a>'; //Change to suit your needs
}

add_filter( 'excerpt_more', 'new_excerpt_more' );

这至少应该使您到达可以调试的地步,但请注意,它可能是非常特定于主题的。 URL(如果可以提供的话)可以帮助很多人。