php acf例子
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php acf例子相关的知识,希望对你有一定的参考价值。
<?php
// filter
function my_posts_where( $where ) {
$where = str_replace("meta_key = 'event_%", "meta_key LIKE 'event_%", $where);
return $where;
}
add_filter('posts_where', 'my_posts_where');
// get the ID of the current page
$currentposttitle = get_the_title();
// args
$args = array(
'numberposts' => -1,
'post_type' => 'Events',
'meta_query' => array(
'relation' => 'OR',
array(
'key' => 'event_%_location',
'value' => '"' . get_the_title() . '"',//I'm sure this is wrong but I'm assuming the key value isn't correct as a post object and the title has to be defined.
'compare' => '=',
'value' => $currentposttitle,
)
)
);
// query
$the_query = new WP_Query( $args );
?>
<?php if( $the_query->have_posts() ): ?>
<ul>
<?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<li>
<h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
</li>
<?php endwhile; ?>
</ul>
<?php endif; ?>
<?php wp_reset_query(); // Restore global post data stomped by the_post(). ?>
以上是关于php acf例子的主要内容,如果未能解决你的问题,请参考以下文章
php 两个简单的例子,只显示acf,如果有内容显示。
php 替换重复的字符串。在这个例子中,我需要手动从ACF中的单选按钮翻译语言。
php ACF w / ACF超链接#ACF
php 使用ACF画廊字段和ACF灵活内容
在 functions.php (WordPress) 中包含 ACF
php ACF PHP