Wordpress高级自定义域(ACF)-显示域内容
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress高级自定义域(ACF)-显示域内容相关的知识,希望对你有一定的参考价值。
In this example it checks to see if the page it is on has an ACF named page_title, if so - display it as an H1, and if not, display the WP default page title as the H1
<?php if ($values) { ?> <h1><?php the_field('page_title'); ?></h1> <?php } else { ?> <h1><?php the_title(); ?></h1> <?php } ?>
以上是关于Wordpress高级自定义域(ACF)-显示域内容的主要内容,如果未能解决你的问题,请参考以下文章
ACF 中继器子字段 Shuffle(wordpress 高级自定义字段)
在 Wordpress the_content() 中包含高级自定义字段 (ACF)
如何检查 Wordpress 高级自定义字段插件中的字段组?
php PHP - Wordpress - 搜索 - wordpress自定义搜索功能,包含ACF /高级自定义字段和分类法以及拆分表达式
php PHP - Wordpress - 搜索 - wordpress自定义搜索功能,包含ACF /高级自定义字段和分类法以及拆分表达式
php PHP - Wordpress - 搜索 - wordpress自定义搜索功能,包含ACF /高级自定义字段和分类法以及拆分表达式