SO网友:Frank P. Walentynowicz
请尝试以下代码:
function new_title( $title ) {
if(in_the_loop() && !is_singular(\'page\')) {
$picArray = array(
\'3\' => \'⚠\',
\'5\' => \'⛅\',
);
$cats = get_the_category();
$cat = $cats[0]->term_id;
$title = $picArray[$cat] . \' \' . $title;
}
return $title;
}
add_filter( \'the_title\', \'new_title\' );
首先,我们检查一下
in the loop, 还有我们的帖子
is not a page. 变量
$picArray
是{
类别id=>{表情符号的html标识对的关联数组。当然,您必须构建此数组以匹配您的值。