4

我在 WordPress 的编辑帖子部分创建了一个自定义字段,并且能够通过以下帖子保存该值:Wordpress - 将自定义字段添加到帖子屏幕

我可以检索特定类别的帖子,但无法检索自定义字段的值。

在此处输入图像描述

如上图所示,左上角突出显示了一个自定义帖子字段。另一个突出显示的字段是显示该帖子属于“投资组合”类别。

这是我用来检索“投资组合”类别帖子的代码

<?php 
    $the_query = new WP_Query(array(
    'category_name' => 'Portfolio', 
    'posts_per_page' => 9,
    'order' => 'DESC'
)); 
while ( $the_query->have_posts() ) : 
    $the_query->the_post();
?>

<p>The title: <?php the_title(); ?></p>
<p> custome value: <?php get_post_meta( $post_ID, '_ssb_portfolio_url', true); ?> </p>
<p>The Content: <?php the_content(); ?></p>

<?php 
    endwhile; 
    wp_reset_postdata();
?>

我能够获取帖子标题和帖子内容的值,但不能获取自定义字段值。我的代码有什么问题?

4

1 回答 1

8

您可以使用get_post_custom( $post_id )

在你的情况下

while ( $the_query->have_posts() ) :
    $the_query->the_post();
    $custom = get_post_custom( get_the_ID() ); ?>

然后$custom是您的自定义字段的数组

于 2013-03-20T12:47:01.547 回答