从Wordpress中自定义帖子类型的类别中获取ACF文本字段值

问题描述 投票:0回答:5

我正在尝试使用 ACF PRO 中文本字段的值创建另一个类。

我有一个名为“portfolio”的自定义帖子类型,它有 4 个类别,ACF 字段设置添加到“分类等于类别”。

当我编辑类别时,我填写我想要获取的名称,然后显示如下:

<div class="grid-item-catalog catalog-project-Holder **the name need to be here**">

如何从类别中获取ACF字段值?

其他信息:我的页面模板是 page-portfolio.php,我使用的是 ACF 中继器。

这是我的代码:

<!-- catalog -->
<div class="grid-catalog catalog-portfolio-wrraper">  
  <?php if ( $query->have_posts() ) {  while ( $query->have_posts() ) { $query->the_post(); ?>
     <!-- Repeater -->
     <?php if( have_rows('portfolio-projects-repeater') ){ ?>
        <?php while( have_rows('portfolio-projects-repeater') ) { the_row(); 
          // vars
          $projectDescription = get_sub_field('project-name');
          $projectImage = get_sub_field('project-image');
          $projectLinkText = get_sub_field('project-link-text');
          $projectLink = get_sub_field('project-link');                                                       
          ?> 
             <div class="grid-item-catalog catalog-project-Holder {the name need to be here}"> 
                  <div class="catalog-project-name"><?php the_title(); ?></div>
                  <div class="catalog-project-content-container">
                     <div class="catalog-project-image"><img src="<?php echo $projectImage['url']; ?>" alt="<?php echo $projectImage['alt'] ?>" /></div>
                     <div class="catalog-project-content">
                        <div class="description-link-container">
                             <div class="description"><?php echo $projectDescription; ?></div>
                             <div class="link"><a href="<?php echo $projectLink; ?>" target="_blank" rel="nofollow"><?php echo $projectLinkText; ?></a></div>
                        </div>
                     </div>
                  </div>
              </div>
        <?php } ?>
    <?php } ?>
    <!-- End Repeater --> 
    <?php } ?>
  <?php } ?>
</div>
<!-- end catalog -->

这是类别ACF字段的设置截图,希望有帮助:

setup of the field

wordpress advanced-custom-fields
5个回答
1
投票

如果我理解正确,您有一个 自定义帖子类型“portfolio”,并且您想要获取该帖子所属的 categoriesACF 字段值。这些类别属于“默认 WordPress 类别”(即不是自定义分类法)。这与帖子有关,而不是中继器中的值。 如果是这种情况,您可以获取某个类别的 ACF 字段 (category-name

) 的值,如下所示:

$category_name = get_field('category-name', $category_id);

这意味着我们需要在循环中获取帖子的类别 ID,您可以使用
get_the_category
来完成此操作(假设它是默认类别,对于您需要的自定义分类法

get_the_terms

)。另请注意,一篇文章可以有多个类别,因此 
get_the_categories
 返回一个数组:
$category_classes = "";
// 1. GET THE CATEGORIES FOR THE CURRENT POST IN THE LOOP
$categories = get_the_category( get_the_ID()); 
if ( $categories ) {
    // 2. A POST CAN HAVE MULTIPLE CATEGORIES SO LOOP THROUGH THEM TO LOOK UP THE ACF FIELD
    foreach ( $categories as $category ) {
        // 3. ADD ALL ACF VALUE FOR THIS CATEGORY TO OUR $category_classes VARIABLE, SEPARATED BY SPACES
        $category_classes .= " ".get_field('category-name', $category->term_id);
    }        
}

现在
$category_classes
将有一个以空格分隔的类别 ACF 值列表,您可以直接在

class

 属性中使用,即 
<div class="grid-item-catalog catalog-project-Holder <?php echo $category_classes; ?>"> 

将其放入您的代码中,应该是这样的:
<!-- catalog -->
<div class="grid-catalog catalog-portfolio-wrraper">  
<?php if ( $query->have_posts() ) {  while ( $query->have_posts() ) { $query->the_post(); ?>

    <?php
    /* YOUR CODE TO GET THE POST CATEGORIES AND LOOK UP THE ACF FIELD VALUE */
    $category_classes = "";
    // 1. GET THE CATEGORIES FOR THE CURRENT POST IN THE LOOP
    $categories = get_the_category( get_the_ID()); 
    if ( $categories ) {
        // 2. A POST CAN HAVE MULTIPLE CATEGORIES SO WE NEED TO LOOP THROUGH THEM ALL
        foreach ( $categories as $category ) {
            // 3. ADD ALL ACF VALUE FOR THIS CATEGORY TO OUR $category_classes VARIABLE, SEPARATED BY SPACES
            $category_classes .= " ".get_field('category-name', $category->term_id);
        }        
    }
    ?>

  <!-- Repeater -->
  <?php if( have_rows('portfolio-projects-repeater') ){ ?>
    <?php while( have_rows('portfolio-projects-repeater') ) { the_row(); 
      // vars
      $projectDescription = get_sub_field('project-name');
      $projectImage = get_sub_field('project-image');
      $projectLinkText = get_sub_field('project-link-text');
      $projectLink = get_sub_field('project-link');                                                       
      ?> 

         <?php 4. OUTPUT THE CLASSES FOR THE DIV ?>
         <div class="grid-item-catalog catalog-project-Holder <?php echo $category_classes; ?>"> 

         <!--   the rest of your code here   -->

          </div>
      <?php } ?>
    <?php } ?>
    <!-- End Repeater --> 
    <?php } ?>
  <?php } ?>

此代码未经测试,但它至少应该为您指明正确的方向:)
    

在您的代码中,您将名称为

0
投票
的自定义字段保存在变量中:

$projectDescription = get_sub_field('project-name');

也许您应该将子字段的元键更改为“项目描述”,如果您还有项目名称,这可能会令人困惑。
要在 php 中输出值,请使用 

<?php echo $variableName; ?>

您正在访问名为 
portfolio-projects-repeater

的转发器中的值。因此,您的字段位于其中,需要一段时间才能访问,就像您所做的那样。

您的屏幕截图显示了一个文本字段,该文本字段不在转发器字段内。

所以如果你想获取该字段的值,你只需要使用get_field()

。这不需要一段时间,也不需要使用

get_sub_field

 来调用。
因此,您的代码应如下所示:

$variableName = get_field('category-name');

保存到变量后,您可以简单地输出它:
<div class="grid-item-catalog catalog-project-Holder <?php echo $variableName; ?>"> 

Yaaaayyy...我成功了,使用以下代码:

0
投票
<?php // load all 'category' terms for the post $terms = get_the_terms( get_the_ID(), 'category'); // we will use the first term to load ACF data from if( !empty($terms) ) { $term = array_pop($terms); $custom_field = get_field('category-name', $term ); } ?>

无论如何,我要感谢您的所有回复,我非常感激。
    


0
投票

<?php //Get the Post ID $id = get_the_ID(); ?> <img src="<?php echo get_field('banner_image', $id); ?>" /> <div class="col-md-4 text-center"><?php echo get_field( "banner_heading", $id); ?></div>



0
投票

对于类别:

<?php $post_id = "category_3"; // category term ID = 3 $value = get_field( 'my_field', $post_id ); ?>

对于自定义分类“事件”:
<?php
$post_id = "event_4"; // event (custom taxonomy) term ID = 4
$value = get_field( 'my_field', $post_id );
?>

样本取自 acf
get_field()
文档:

ACF get_field() 文档


所有样品:

<?php $post_id = false; // current post $post_id = 1; // post ID = 1 $post_id = "user_2"; // user ID = 2 $post_id = "category_3"; // category term ID = 3 $post_id = "event_4"; // event (custom taxonomy) term ID = 4 $post_id = "option"; // options page $post_id = "options"; // same as above $value = get_field( 'my_field', $post_id ); ?>


© www.soinside.com 2019 - 2024. All rights reserved.