Oceanwp theme don’t show new column in Post List
-
By Default in WordPress If U Need to add and display new column In all post list table of wp dashboard u can just add this shortcode in theme’s function.php file
add_filter( ‘manage_post_posts_columns’, ‘my_manage_post_posts_columns’ );function my_manage_post_posts_columns( $columns ) {$columns[‘custom_name’] = esc_html__( ‘Custom Name’ ); return $columns;}
And “Custom Name” Column is created and can displayed in wp dashboard all post in screen option and post list table. it generally happens with all Themes of wordpress But i m unable to do this with Oceanwp
The page I need help with: [log in to see the link]
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Oceanwp theme don’t show new column in Post List’ is closed to new replies.