我尝试在wordpress的每个帖子的顶部添加自定义数据。以前我试过的是看起来像这样
function newcontent($content) {
ob_start();
//有些东西在这里 echo“这是用于测试”;
$newvariable = ob_get_clean();
return $content.$newvariable;
}
add_filter('the_content','newcontent');
输出就像
让我们考虑这是帖子
POST TITLE
this is for testing // appending message to the content // POST CONTENT
是否有办法在标题上方的每个帖子的顶部显示样本数据?
不确定可能有办法:)
任何建议都会很棒:)
谢谢, 维基
答案 0 :(得分:1)
不确定我是否理解正确但是......
function insert_before_title($title){
return '<h1> before the title </h1>'.$title;
}
add_filter('the_title', 'insert_before_title');
只需过滤标题而不是内容。