有没有办法让这个管理员产品仪表板只显示登录用户创建的产品?
我正在尝试manage_{$post->post_type}_posts_custom_column功能但不能移动太多
例如我想要这样的东西
add_action( 'manage_product_posts_custom_column', 'custom_column_content', 10, 2 );
function custom_column_content( $column, $product_id ){
if( logged in user==Product Author){
Display product;
}
else{
Dont display product
}
}
烙印99