以下是一个快速解决方案:
在要添加帖子页脚的页面或帖子上创建一个名为post_footer
并在值中添加页脚内容。
然后将此代码粘贴到主题的函数中。php文件
add_filter(\'the_content\',`my_post_footer`,99);
function my_post_footer($content){
global $post;
$footer = get_post_meta($post->ID,\'post_footer\',true);
if ($footer){
return $content . $footer;
}
return $content
}
你完了!这样,你可以在每页/每篇文章上有不同的页脚,如果你不想要的话,根本就没有页脚。