0
如何在帖子內插入像「繼續閱讀」的按鈕,with this style in wordpress?or this 不使用bb代碼,並在第二段之前。繼續閱讀wordpress後
如何在帖子內插入像「繼續閱讀」的按鈕,with this style in wordpress?or this 不使用bb代碼,並在第二段之前。繼續閱讀wordpress後
步驟-1:轉到設置 - >閱讀並選擇摘要並保存更改。
步驟-2:我們需要在每個摘錄的末尾添加鏈接文本。爲此,我們需要在名爲functions.php的不同文件中工作。
找到它並在代碼編輯器中打開它。
滾動至最底部,添加的PHP代碼塊:
/* Modify the read more link on the_excerpt() */
function et_excerpt_length($length) {
return 220;
}
add_filter('excerpt_length', 'et_excerpt_length');
/* Add a link to the end of our excerpt contained in a div for styling purposes and to break to a new line on the page.*/
function et_excerpt_more($more) {
global $post;
return '<div class="view-full-post"><a href="'. get_permalink($post->ID) . '" class="view-full-post-btn">View Full Post</a></div>;';
}
add_filter('excerpt_more', 'et_excerpt_more');
更多參考找到這個: https://www.elegantthemes.com/blog/tips-tricks/how-to-customize-the-wordpress-read-more-link-text
你也許在找這個? https://wordpress.org/plugins/ajax-load-more/ –
我需要一個「繼續閱讀」按鈕,無限滾動模板已經有。謝謝@FarizLuqman –
如果你想繼續閱讀按鈕在當前的文章,你可以使用「更多」標籤:https://en.support.wordpress.com/more-tag/ –