if has theme mod

时间:2015-01-15 作者:Jesse Uilenreef

有人知道如何用wordpress PHP编写下一行吗,因为我对PHP不是很在行。

If\\u theme\\u mode有content echo{我的内容}或者{其他内容};

thnx公司

2 个回复
SO网友:Ravinder Kumar

请尝试以下代码:

if( get_theme_mod(\'your_setting_name\') ){
  //your code
}else{
  //your code
}
Note: get_theme_mod() 如果设置不存在值,则返回false

SO网友:Brandon

您可以检查主题mod,如果存在则回显,如果没有,则应用默认值,所有操作都只需一行:

echo get_theme_mod( \'example\', \'Some default\' );

结束