我正在基于主题框架在wordpress中创建模板。
我想从我创建的一些小部件区域中删除标题。这是我创建的小部件区域。
function tadpole_pagesrighthand() {
register_sidebar(array(
'name' => 'Pages right hand ',
'id' => 'pages-right-hand',
'description' => __('Pages right hand column', 'thematic'),
'before_widget' => thematic_before_widget(),
'after_widget' => thematic_after_widget(),
'before_title' => tadpole_before_title(),
'after_title' => tadpole_after_title(), )
);
}
在我的职能中,我有:
function tadpole_before_title(){
$content='<p>helllo</p>';
}
function tadpole_after_title(){
$content='<p>goodbye</p>';
}
但我的内容没有出现。
我想我正在做一些非常明显的错误,但我看不到它!
有什么想法吗?
答案 0 :(得分:0)
您需要return
要分配给侧边栏属性的内容。您正在分配变量,但不是return
:
function tadpole_before_title() {
$content = '<p>helllo</p>';
return $content;
}
function tadpole_after_title() {
$content = '<p>goodbye</p>';
return $content;
}