无法通过WordPress插件中的短代码显示自定义帖子元

时间:2014-12-11 18:42:41

标签: php wordpress custom-post-type meta

我创建了一个插件,用于设置自定义帖子类型(“程序”),分类和显示自定义帖子的简短代码。我正在尝试通过短代码显示自定义的帖子元字段(广播日期)。这些是我到目前为止尝试过的方法:

这是我喜欢的方法,因为它允许我将它用于多个元值:

if ( $query->have_posts() ) { ?>
    <div class="schedule-container">
        <?php while ( $query->have_posts() ) : $query->the_post();
        $programmeImage = wp_get_attachment_url( get_post_thumbnail_id($post->ID, 'thumbnail') );           
        $programmeMeta = get_post_meta($post->ID,'_meta_content',TRUE);
        ?>
        <div id="programme-<?php the_ID(); ?>" <?php post_class(); ?> style="background-image: url( <?php echo $programmeImage ?> )">
            <div class="schedule-titlebar">
                <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
                <p><?php echo $programmeMeta['broadcast-date'] ?></p>
            </div>
        </div>
        <?php endwhile;
        wp_reset_postdata(); ?>
    </ul>
}

但这没有用,所以我尝试了这个:

if ( $query->have_posts() ) { ?>
    <div class="schedule-container">
        <?php while ( $query->have_posts() ) : $query->the_post();
        $programmeImage = wp_get_attachment_url( get_post_thumbnail_id($post->ID, 'thumbnail') );           
        $programmeBroadcastDate = get_post_meta($post->ID,'broadcast-date',TRUE);
        ?>
        <div id="programme-<?php the_ID(); ?>" <?php post_class(); ?> style="background-image: url( <?php echo $programmeImage ?> )">
            <div class="schedule-titlebar">
                <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
                <p><?php echo $programmeBroadcastDate ?></p>
            </div>
        </div>
        <?php endwhile;
        wp_reset_postdata(); ?>
    </ul>
}

这也不起作用!

有什么想法吗?感谢

0 个答案:

没有答案