我找到了一个名为“ edit_form_after_title
” 的WordPress挂钩,在标题后添加了一个文本框。
创建新帖子时,如何使用此挂钩在标题后显示摘录?
我找到了一个名为“ edit_form_after_title
” 的WordPress挂钩,在标题后添加了一个文本框。
创建新帖子时,如何使用此挂钩在标题后显示摘录?
Answers:
我从这里改编而成:https : //wordpress.stackexchange.com/a/158485/373
/* -----------------------------------------
* Put excerpt meta-box before editor
* ----------------------------------------- */
function my_add_excerpt_meta_box( $post_type ) {
if ( in_array( $post_type, array( 'post', 'page' ) ) ) {
add_meta_box(
'postexcerpt', __( 'Excerpt' ), 'post_excerpt_meta_box', $post_type, 'test', // change to something other then normal, advanced or side
'high'
);
}
}
add_action( 'add_meta_boxes', 'my_add_excerpt_meta_box' );
function my_run_excerpt_meta_box() {
# Get the globals:
global $post, $wp_meta_boxes;
# Output the "advanced" meta boxes:
do_meta_boxes( get_current_screen(), 'test', $post );
}
add_action( 'edit_form_after_title', 'my_run_excerpt_meta_box' );
function my_remove_normal_excerpt() { /*this added on my own*/
remove_meta_box( 'postexcerpt' , 'post' , 'normal' );
}
add_action( 'admin_menu' , 'my_remove_normal_excerpt' );
function jb_post_excerpt_meta_box($post) {
remove_meta_box( 'postexcerpt' , $post->post_type , 'normal' ); ?>
<div class="postbox" style="margin-bottom: 0;">
<h3 class="hndle"><span>Excerpt</span></h3>
<div class="inside">
<label class="screen-reader-text" for="excerpt"><?php _e('Excerpt') ?></label>
<textarea rows="1" cols="40" name="excerpt" id="excerpt">
<?php echo $post->post_excerpt; ?>
</textarea>
</div>
</div>
<?php }
add_action('edit_form_after_title', 'my_post_excerpt_meta_box');
这样,您就可以根据需要精确添加摘录框。但是重要的是要消除原来的盒子。否则,您将无法将摘录保存在新框中。
这个答案与@OzzyCzech发布的答案类似,但是它更通用,并且在摘要框中添加了标题。这种方法的一个缺点是您无法通过“屏幕选项”隐藏摘要框...在这种情况下,您需要使用@ lea-cohen的答案。
add_action( 'edit_form_after_title', 'move_excerpt_meta_box' );
function move_excerpt_meta_box( $post ) {
if ( post_type_supports( $post->post_type, 'excerpt' ) ) {
remove_meta_box( 'postexcerpt', $post->post_type, 'normal' ); ?>
<h2 style="padding: 20px 0 0;">Excerpt</h2>
<?php post_excerpt_meta_box( $post );
}
}
meta_box
?