小编Bry*_*yan的帖子

Display ACF field inside posts loop in category.php

OK, so I need to display ACF custom field inside my posts loop in my custom category.php file. Here is the loop:

<div class="container">
<div class="row">

<?php
if ( have_posts() ) : ?>
<?php
/* Start the Loop */
while ( have_posts() ) : the_post();
?>

<div class="col-xs-12 col-sm-4">
    <?php the_title( '<h2><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' ); ?>
    <div><?php MY_ACF_FIELD_GOES_HERE ?></div>
</div> 

<?php 
/* End the Loop */    
endwhile;
?>
</div><!-- .row -->
</div><!-- .container …
Run Code Online (Sandbox Code Playgroud)

php wordpress advanced-custom-fields

0
推荐指数
1
解决办法
31
查看次数

标签 统计

advanced-custom-fields ×1

php ×1

wordpress ×1