如何在自定义帖子类型中创建自定义字段?

时间:2014-11-14 09:09:52

标签: php wordpress post types ctp

我有一个自定义帖子类型页面,这是我使用的代码:

<?php
 get_header();
 get_sidebar();
 the_meta();
?>

<ul class="event">
  <?php $args = array( 'post_type' => 'event-netzwerk', 'posts_per_page' => 30, 'orderby' => 'rand' );
  $loop = new WP_Query( $args );
  while ( $loop->have_posts() ) : $loop->the_post();
    echo '<li>';
    the_title('<h3>', '</h3>');
    the_content();
    echo '</li>';
  endwhile; ?>
</ul> 


<?php

 get_footer();
?>

有人知道如何在那里添加AFC吗?

2 个答案:

答案 0 :(得分:1)

要在主题中使用the_field()

显示ACF
<h1><?php the_field('custom_title'); ?></h1>

答案 1 :(得分:1)

您可以使用the_field函数。

the_field("your_custom_field");

https://wordpress.org/plugins/advanced-custom-fields/screenshots/