高级自定义字段和函数
Advanced Custom Fields and functions
我对 php 和 Advanced Custom Fields (ACF) 很陌生。我想在所有页面上显示静态横幅,但有视频的主页除外。如何使用if main函数?
试试这个
<?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
}
?>
祝你好运
我对 php 和 Advanced Custom Fields (ACF) 很陌生。我想在所有页面上显示静态横幅,但有视频的主页除外。如何使用if main函数?
试试这个
<?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
}
?>
祝你好运