如何在创世框架子主题中添加阅读更多按钮?

How to add a read more button in genesis framework child theme?

在我的 WordPress 博客中,我使用带有现代博客子主题的 Genesis 框架。现在我想在存档页面上添加阅读更多按钮。与WordPress通用功能相同。

我在互联网上找到了一个代码,但这对我不起作用。

add_filter('excerpt_more', 'get_read_more_link');
add_filter( 'the_content_more_link', 'get_read_more_link' );
function get_read_more_link() {
   return '...;<a href="' . get_permalink() . '">[Read More]</a>';
}

您应该将此添加到您的主题子 functions.php 文件中:

// Read more link text

add_filter( 'excerpt_more', 'custom_read_more_link');
add_filter('get_the_content_more_link', 'custom_read_more_link');
add_filter('the_content_more_link', 'custom_read_more_link');

function custom_read_more_link() {
    return '&nbsp;<a class="more-link" href="' . get_permalink() . '" rel="nofollow">[Read More] &hellip;</a>';
}