gpt4 book ai didi

wordpress - 使用带有 "more"链接的 Wordpress 摘录?

转载 作者:行者123 更新时间:2023-12-03 07:25:10 27 4
gpt4 key购买 nike

Wordpress 的文档建议将以下内容添加到functions.php 中以实现我想要执行的操作:

function new_excerpt_more($post) {
return '<a href="'. get_permalink($post->ID) . '">' . 'Read the Rest...' . '</a>';
}
add_filter('excerpt_more', 'new_excerpt_more');

根据:http://codex.wordpress.org/Function_Reference/the_excerpt

但是当我将其添加到functions.php并尝试使用它时,我没有看到更多链接。以下是我尝试使用它的方法:

the_excerpt(__('(more...)'));

我也尝试过:

the_excerpt();
<小时/>

更新:我已尝试以下操作,但它要么返回错误(如果没有参数),要么不显示任何摘录或任何内容(如果有参数):

function new_excerpt_more($excerpt) {
$link = get_permalink();
$title = the_title('','',false);
$ahref = '<a href="'.$link.'" title="'.$title.'">more...</a>';
return str_replace('[...]', $ahref, $excerpt);
}
add_filter('wp_trim_excerpt', 'new_excerpt_more');

最佳答案

function new_excerpt_more($output) {
return $output . '<p><a href="'. get_permalink() . '">' . 'Read the Rest...' . '</a></p>';
}
add_filter('get_the_excerpt', 'new_excerpt_more');

适用于:

<?php the_excerpt(); ?>

关于wordpress - 使用带有 "more"链接的 Wordpress 摘录?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3152519/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com