You have misspelled the filter name. There is an “s” lacking at the end. The correct is manage_cri_creator_posts_columns
.
As a suggestion, I’d say that it is better to manipulate the existing array rather than creating a complete new one. Might not be your case, but its a good idea to avoid conflicting with other plugins that could be doing something in this very same filter.
So, for instance, just to change the title label, it would be better if you did:
function crispynewcolumns( $columns ) {
$columns['title'] = __('test title 1');
return $columns;
}
add_filter( 'manage_cri_creator_posts_columns' , 'crispynewcolumns' );
Hope it helped. Here is the link to the documentation: https://codex.wordpress.org/Plugin_API/Filter_Reference/manage_$post_type_posts_columns
Related Posts:
- Plugin API for easy admin list table generation, handling & exporting of MySQL tables?
- Create a clickable name in WP_List_Table for Plugin Admin
- How to add custom content under plugin row in WordPress admin plugin list?
- How can I replace content in the WP Admin area before an admin page is rendered?
- How can I add an image upload field directly to a custom write panel?
- Difference Between Filter and Action Hooks?
- Is it possible to reuse wp.media.editor Modal for dialogs other than media
- How do i best handle custom plugin page actions?
- How to create an API for my plugin?
- How to add sub-menu to a menu generated by wp_nav_menu by using plugin
- How do I improve this admin query snippet to avoid generating duplicate results on non-meta searches?
- How can I load a page template from a plugin?
- How are bulk actions handled in custom list table classes?
- Export data as CSV in back end with proper HTTP headers
- How do I create links at the top of WP_List_table?
- Completely remove WP_Admin_Bar for specific user roles
- Using query_vars filter
- How-to implement admin Ajax inside an admin WP_List_Table?
- API to trigger prompt on leaving page
- Show message on wordpress admin dashboard
- How to get Post ID with the Add Filter Function
- Explanation of the “posts_join” and “posts_fields” filter hooks?
- How do you use the plugin boilerplate loader class to hook actions and filters?
- add_filter OO with parameters
- Hook the Keydown Event in the TinyMCE Post Editor
- How Can I Add a Filter to Class Instance Only?
- Is it possible to add an admin page using add_submenu_page() and pass a var in the query string?
- how to use thickbox in admin?
- Is it possible to remove next-post / previous-post with out creating a custom template?
- How do you create a custom edit.php / edit pages page
- How do I Make a Theme “plugin-ready”?
- Cancel post save
- How to remove unwanted panels inside InspectorControls from core blocks in Gutenberg
- Add a jQuery function to admin pages
- function triggered by “manage_users_custom_column” filter not working
- Proper way to use apply_filters() with class functions?
- Is it save to require plugin.php early to be able to use get_plugin_data() earlier?
- add_filter and remove_filter added before and after wp_query
- How to modify post content before writing to database?
- Actions or filters fired when data is saved in a custom table
- Some nav-menu filters do nothing
- WP Cron doesn’t save or in post body
- Filter on the_content ignores shortcodes
- Determine which theme location a wp_get_nav_menu_items is for
- How to change wordpress post title?
- Display only certain posts based on visitor’s country?
- What’s the difference between hooks, filters and actions? [duplicate]
- Filters ‘request’ and ‘parse_query’ not firing in sites.php nor link-manager.php
- How to use filter hook ‘post_updated_messages’ in coherence with action hook ‘save_post’
- Conditional add_filter?
- URLs of plugin resources?
- Is it possible to create an action hook using do_action() within add_action()?
- Hook for post permalink update
- Dynamically Override Fancy Title
- Calling apply_filters on non-documented hooks
- Problems with removing admin bar
- WordPress Media mime type filter problem 4.0
- How to allow Unfiltered HTML in a wordpress multisite install
- Check if I am in the Admin Panel (wp-admin)?
- Changing bloginfo description from a plugin
- How to put placeholder text in the main post input area?
- Is there a way to verified if an add_filter is already applied?
- Define a function outside a class and call the function using action or filter hook
- Does add_filter work outside functions.php
- Synchronize Custom post type tags to WordPress default posts tags
- How to load the plugin only when logged in?
- multiple functions with same filter
- Woocommerce – Hide a Column in Cart Table
- How to redirect to action on custom page within admin section
- Version upgrade: can my plugin filter the SQL statements issued during a database upgrade?
- WP AJAX is not working, always returns 0
- Extending WP_List_Table seems getting wrong with $this->get_columns() – what’s wrong?
- Add notification bubble notice in navigation using transients
- add_filter : Passing an array instead of the callback function?
- Can I individually style items in the backend widget list?
- How to run a external JavaScript file on wp-admin if admin, and other if normal user?
- How do I alter the comment form ‘allowed tags’ text in a plugin?
- add a class when login
- Add a panel to edit post
- Where should I put “run once” plugin pages?
- How to display additional info in the plugins admin table?
- Using the default wordpress uploader inside plugin
- WordPress after content Hook & external template part
- Modify users.php page to create page/post on button clicked
- Namespaced action and filter tags
- Two functions utilizing registration_errors filter
- Issue plugin commands in admin settings page
- how to make custom bulk actions for a WP_List_Table (core class)
- Any problem in using native jquery ajax style instead of using admin-ajax.php?
- maintaing consistent layout wordpress dashboard
- Is there a Filter that I can use to filter the tags before they are inserted in to the database?
- WordPress is automatically linking plain text email addresses
- Replacing Scripts in Admin Load_Scripts
- best practice for query string values – get_query_var always empty for my value supplied in query string
- get_current_screen() return null
- Programmatically modify an admin page UI of a WordPress site from my WordPress plugin
- How To Change Logout Screen Title
- Global State During an Admin Post
- Add code inside specific wordpress standard function
- Render content after post title in wp-admin