Hi需要删除特定页面的标题,此one. 我可以
add_filter( \'the_title\', ai1ec_remove_title );
function ai1ec_remove_title( $title ) {
if( \'Calendar\' === $title ) {
return \'\';
} else {
return $title;
}
}
但这也会删除任何帖子/自定义帖子的标题,标题为日历,我想专门针对一个页面,有更好的方法吗?