我有以下问题,
http://i.stack.imgur.com/8Zwyj.png
现在您可以在图片中看到它应该显示“Cookies”之后的食谱。现在有时候这个类别有食谱词。为此我正在尝试制作php调节规则来检查标题中是否存在食谱然后回显没有其他回声食谱。
else if( is_archive() ){
//echo __('Archive for ', 'recipe'). single_month_title(' ',false);
echo single_cat_title('Amish '). single_month_title(' ',false). (' Recipes');
}
这是我现在的代码。我需要制作('食谱')显示它是否在瓷砖中不存在,否则显示。
希望这清楚了。
答案 0 :(得分:0)
single_month_title()
是功能。您需要将其称为函数。您还需要将false
作为第二个参数传递,以便函数return
成为结果(同样适用于single_cat_title()
)。
strpos(single_month_title(null, false), 'Recipes')
我做的事情如下:
$recipes = strpos(single_month_title(null, false), 'Recipes') === false ? '' : ' Recipes';
echo single_cat_title('Amish ', false) . single_month_title(' ', false) . $recipes;