Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
'capabilities' => array( 'create_posts' => 'do_not_allow', // false < WP 4.5, credit @Ewout 'read_post' => 'do_not_allow', ),
add_filter( 'post_row_actions', 'remove_row_actions' ); function remove_row_actions( $actions ) { if( get_post_type() == 'post' ) { unset( $actions['view'] ); } return $actions; }