我想用add_meta_box()
为我的自定义帖子类型创建元信息。到目前为止还好,但我不明白为什么$callback
看起来是这样的。
一example from one WordPress tutorial 这是:
/* Display the post meta box. */
function callback( $post ) { ?>
<?php wp_nonce_field( basename( __FILE__ ), \'smashing_post_class_nonce\' ); ?>
<p>
<label for="smashing-post-class"><?php _e( "Add a custom CSS class, which will be applied to WordPress\' post class.", \'example\' ); ?></label>
<br />
<input class="widefat" type="text" name="smashing-post-class" id="smashing-post-class" value="<?php echo esc_attr( get_post_meta( $post->ID, \'smashing_post_class\', true ) ); ?>" size="30" />
</p>
<?php }
怎么了?>
(第二行)和<?php}
(在最后一行)?我不明白。我可以只回显HTML而不是那样做吗?如果只是在函数中输入原始HTML,WordPress如何显示HTML?