由于某些原因,此自定义字段未显示在页面中。
这是模板文件:
<?php
/**
* Template Name: bbPress - Topics (Newest)
*
* @package bbPress
* @subpackage Theme
*/
?>
<?php get_header(); ?>
<div id="container">
<div id="content" role="main">
<?php do_action( \'bbp_template_notices\' ); ?>
<?php while ( have_posts() ) : the_post(); ?>
<div id="topics-front" class="bbp-topics-front">
<div class="entry-content">
<div id="page-intro">
<?php the_content(); ?>
</div>
<?php get_template_part( \'loop\', \'bbp_topics\' ); ?>
</div>
</div><!-- #topics-front -->
<?php endwhile; ?>
<?php if ( get_post_meta($post->ID, \'note\', true) ) : ?>
<div id="note">
<p><?php echo get_post_meta($post->ID, \'note\', true); ?><p/>
</div>
<?php endif; ?>
</div><!-- #content -->
</div><!-- #container -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
正如您所看到的,一切都已设置好: