我正在开发一个wordpress项目,我想在自定义帖子上添加批量操作。
我为自定义帖子使用了Custom Post Type
UI插件,为自定义字段使用了Advanced Custom Fields
插件。
请建议我为自定义帖子添加批量操作的任何代码或插件。
谢谢, Aniket。
答案 0 :(得分:1)
自WordPress 4.7(2016年12月发布)以来,可以在不使用JavaScript的情况下添加自定义批量操作。
//Hooks
add_action( 'current_screen', 'my_bulk_hooks' );
function my_bulk_hooks() {
if( current_user_can( 'administrator' ) {
add_filter( 'bulk_actions-edit-post', 'register_my_bulk_actions' );
add_filter( 'handle_bulk_actions-edit-post', 'my_bulk_action_handler', 10, 3 );
add_action( 'admin_notices', 'my_bulk_action_admin_notice' );
}
}
//Register
function register_my_bulk_actions($bulk_actions) {
$bulk_actions['email_to_eric'] = __( 'Email to Eric', 'text_domain');
return $bulk_actions;
}
//Handle
function my_bulk_action_handler( $redirect_to, $doaction, $post_ids ) {
if ( $doaction !== 'email_to_eric' ) {
return $redirect_to;
}
foreach ( $post_ids as $post_id ) {
// Perform action for each post.
}
$redirect_to = add_query_arg( 'bulk_emailed_posts', count( $post_ids ), $redirect_to );
return $redirect_to;
}
//Notices
function my_bulk_action_admin_notice() {
if ( ! empty( $_REQUEST['bulk_emailed_posts'] ) ) {
$emailed_count = intval( $_REQUEST['bulk_emailed_posts'] );
printf( '<div id="message" class="updated fade">' .
_n( 'Emailed %s post to Eric.',
'Emailed %s posts to Eric.',
$emailed_count,
'text_domain'
) . '</div>', $emailed_count );
}
}
注意1:在定义
bulk_actions
对象时,您必须使用WP_Screen
过滤器。这就是我在第2行中使用current_screen
操作的原因。注2:如果您想将批量操作添加到自定义页面,例如woocommerce产品页面,只需更改第5行和第5行中的屏幕ID即可。 6.例如:
add_filter( 'bulk_actions-edit-product', 'register_my_bulk_actions' );
add_filter( 'handle_bulk_actions-edit-product', 'my_bulk_action_handler', 10, 3 );
更多信息:
使用自定义批量操作
https://make.wordpress.org/core/2016/10/04/custom-bulk-actions/
答案 1 :(得分:-3)
使用WordPress函数的“register_post_type”,它比附加插件更容易 参考:https://codex.wordpress.org/Function_Reference/register_post_type