edit_form_after_title
제목 뒤에 텍스트 상자를 추가하기 위해 ” “(이) 라는 WordPress 후크를 찾았습니다 .
이 게시물을 사용하여 새 게시물을 작성하는 동안 제목 뒤에 발췌를 표시하려면 어떻게해야합니까?
답변
간단합니다. postexcerpt
먼저 상자를 등록 해제 한 다음 상단에 다른 상자를 추가하십시오.
여기 내 코드가 있습니다
add_action(
'admin_menu', function () {
remove_meta_box('postexcerpt', 'post', 'normal');
}, 999
);
add_action('edit_form_after_title', 'post_excerpt_meta_box');
답변
나는 여기에서 적응했다 : /wordpress//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 );
}
}