답변:
에 연결 post-new.php
하고 category_id
요청 매개 변수를 확인 하여이 문제를 해결했습니다 . 존재하지 않으면이 페이지로 다시 제출되는 카테고리 드롭 다운이있는 양식을 표시 한 다음 exit()
일반 게시물 양식이 표시되지 않도록 호출하십시오 . 그것이 존재한다면, wp_insert_post
카테고리를 추가 할 후크를 설정했습니다 . 새 게시물이 이미 통해 데이터베이스에 작성되기 때문에이 작동 기능 , 우리는 카테고리, 태그, 기타 (메타) 내용을 추가 할 수 있습니다. 그 후 폼은 "신선한"새로운 컨텐츠로 렌더링됩니다.get_default_post_to_edit()
add_filter( 'load-post-new.php', 'wpse14403_load_post_new' );
function wpse14403_load_post_new()
{
$post_type = 'post';
if ( isset( $_REQUEST['post_type'] ) ) {
$post_type = $_REQUEST['post_type'];
}
// Only do this for posts
if ( 'post' != $post_type ) {
return;
}
if ( array_key_exists( 'category_id', $_REQUEST ) ) {
add_action( 'wp_insert_post', 'wpse14403_wp_insert_post' );
return;
}
// Show intermediate screen
extract( $GLOBALS );
$post_type_object = get_post_type_object( $post_type );
$title = $post_type_object->labels->add_new_item;
include( ABSPATH . 'wp-admin/admin-header.php' );
$dropdown = wp_dropdown_categories( array(
'name' => 'category_id[]',
'hide_empty' => false,
'echo' => false,
) );
$category_label = __( 'Category:' );
$continue_label = __( 'Continue' );
echo <<<HTML
<div class="wrap">
<h2>{$title}</h2>
<form method="get">
<table class="form-table">
<tbody>
<tr valign="top">
<th scope="row">{$category_label}</th>
<td>{$dropdown}</td>
</tr>
<tr>
<td></td>
<th><input name="continue" type="submit" class="button-primary" value="{$continue_label}" /></th>
</tbody>
</table>
<input type="hidden" name="post_type" value="{$post_type}" />
</form>
</div>
HTML;
include( ABSPATH . 'wp-admin/admin-footer.php' );
exit();
}
// This function will only be called when creating an empty post,
// via `get_default_post_to_edit()`, called in post-new.php
function wpse14403_wp_insert_post( $post_id )
{
wp_set_post_categories( $post_id, $_REQUEST['category_id'] );
}
post-new.php
말고 테마 functions.php
또는 플러그인 파일에 추가해야 합니다.