文章页和栏目页 都能调用分类名称和链接
WordPress调用分类名称和链接比较麻烦,这个代码很简单的解决这个问题
term_id) . '">'. $category[0] -> cat_name ;?>
2022年10月1日
这样可以方便知道当前文章是有修改更新过的,毕竟有些文章和产品是具有时效性的。有些朋友喜欢简单的更新日期插入在文章末尾,那如何实现呢?
以下两种方法都需要single.php中输出了
// 文章末尾添加更新日期时间
function itbulu_last_updated_date( $content ) {
$u_time = get_the_time( 'U' );
$u_modified_time = get_the_modified_time( 'U' );
$custom_content = '';
if ( $u_modified_time >= $u_time + 86400 ) {
$updated_date = get_the_modified_time( 'Y-m-d' );
$custom_content .= '<div class="last-updated">文章最后更新于 ' . $updated_date . ' </div>';
}
$content .= $custom_content;
return $content;
}
add_filter( 'the_content', 'itbulu_last_updated_date' );
// 无插件最新更新时间
function itbulu_post_update( $content ) {
$u_time = get_the_time('U');
$u_modified_time = get_the_modified_time('U');
$custom_content = '';
if ($u_modified_time >= $u_time + 86400) {
$updated_date = get_the_modified_time('Y.m.d H:s'); //这里设置时间显示格式,可自由调整。
$custom_content .= '<p class="itbulu-noplugin-update">本文最后更新于<code>'. $updated_date . '</code>,文章可能有时效性,若有错误或失效,请联系。</p>';
}
$custom_content .= $content;
return $custom_content;
}
add_filter( 'the_content', 'itbulu_post_update' );
本文由「
WordPress贰佰技 」 原创或整理后发布,欢迎分享和转发。
原文地址:
https://www.wp200.com/p/25.html 发布于
2022年5月4日