如何将WordPress功能代码移至内容底部

时间:2018-06-19 14:43:13

标签: php wordpress

我在WordPress的functions.php文件中添加了以下代码,以向每篇博客文章添加“最后更新日期...”消息:

function wpb_last_updated_date( $content ) {
$u_time = get_the_time('U'); 
$u_modified_time = get_the_modified_time('U'); 
if ($u_modified_time >= $u_time + 86400) { 
$updated_date = get_the_modified_time('F jS, Y');
$updated_time = get_the_modified_time('h:i a'); 
$custom_content .= '<p class="last-updated">Last updated on '. 
$updated_date . ' at '. $updated_time .'</p>';  
} 

$custom_content .= $content;
return $custom_content;
}
add_filter( 'the_content', 'wpb_last_updated_date' );

这会在博客文章内容的顶部添加以下内容: https://d3vv6lp55qjaqc.cloudfront.net/items/1Q0G0D1c3x313E1H0d05/Image%202018-06-19%20at%207.40.11%20AM.png?X-CloudApp-Visitor-Id=2866569

是否可以编辑PHP代码,以便将其添加到内容的底部而不是将其添加到内容的顶部?如果是这样,您能给我提供代码示例吗?

谢谢!

2 个答案:

答案 0 :(得分:0)

尝试一下。

d = d / 2

答案 1 :(得分:0)

您的问题是您要在行中将主要内容附加到$ custom_content上:

$custom_content .= $content;

如果在这两个变量之间切换并返回$ content,则将附加数据,而不是在数据前添加

$content .= $custom_content;
return $content;