高级自定义字段和功能

时间:2015-05-24 23:02:45

标签: wordpress advanced-custom-fields

我是php和Advanced Custom Fields(ACF)的新手。我希望在所有页面上显示静态横幅,但在主页上有一个视频。如何使用if main函数?

1 个答案:

答案 0 :(得分:1)

试试这个

     <?php if (is_home()) { //check is home page
     //not show
     } else { //if not home page
     //show ACF 
    the_field('field_name'); //replace ACF field name
   }
   ?>

祝你好运