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?
- Difference Between Filter and Action Hooks?
- How to add sub-menu to a menu generated by wp_nav_menu by using plugin
- How are bulk actions handled in custom list table classes?
- Completely remove WP_Admin_Bar for specific user roles
- Using query_vars filter
- API to trigger prompt on leaving page
- Show message on wordpress admin dashboard
- Explanation of the “posts_join” and “posts_fields” filter hooks?
- How do you use the plugin boilerplate loader class to hook actions and filters?
- 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?
- Add a jQuery function to admin pages
- 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?
- Actions or filters fired when data is saved in a custom table
- WP Cron doesn’t save or in post body
- Determine which theme location a wp_get_nav_menu_items is for
- What’s the difference between hooks, filters and actions? [duplicate]
- Conditional add_filter?
- Calling apply_filters on non-documented hooks
- Problems with removing admin bar
- How to allow Unfiltered HTML in a wordpress multisite install
- Check if I am in the Admin Panel (wp-admin)?
- Is there a way to verified if an add_filter is already applied?
- Does add_filter work outside functions.php
- multiple functions with same filter
- Woocommerce – Hide a Column in Cart Table
- How to redirect to action on custom page within admin section
- Extending WP_List_Table seems getting wrong with $this->get_columns() – what’s wrong?
- Add notification bubble notice in navigation using transients
- Can I individually style items in the backend widget list?
- Where should I put “run once” plugin pages?
- How to display additional info in the plugins admin table?
- Namespaced action and filter tags
- Two functions utilizing registration_errors filter
- Issue plugin commands in admin settings page
- Is there a Filter that I can use to filter the tags before they are inserted in to the database?
- Programmatically modify an admin page UI of a WordPress site from my WordPress plugin
- Global State During an Admin Post
- Add code inside specific wordpress standard function
- Render content after post title in wp-admin
- Why doesn’t my simple the_title filter get applied?
- How to filter the_content() & include content from template
- How to show filters on table when using WP_List_Table
- Prefixing plugin hooks (actions/filters) with a wrapper class or functions
- What should happen when a WordPress Plugin is activated across the network (Network Wide Activation)
- Wp_list_table search box not working for custom value from database
- How to add WordPress Admin “Insert Link” UI (searches through existing posts for URL) and functionality into a custom plugin?
- Is it possible to restrict all admin pages except theme customisation and storefront using plugin?
- wp_filesystem put_contents issue with owner/group
- Admin Posts List (edit.php) by post IDs
- Enqueue script globally
- How to get all queries’s results after they have executed?
- How do I link to a php file in my plugin directory?
- WordPress Admin Login Custom Logo
- How to create custom settings page for custom plugin
- Bind a function with its own argument to show something dynamically after every content
- Wp-admin Custom User Management
- Hook add_attachment error
- Update variable value via add_filter
- Redirect in WordPress plugin
- Make wordpress join default user metas with a column from another table while displaying the wp_users table on the users screen
- Configure WordPress to Generate Scheme-less Relative URLs
- Gravity Forms Anchor only on Front Page?
- How to find list of all functions bind to a particular hook from my plugin?
- How do I force a download in the admin area?
- How do i remove the title from a specific page
- Can / should a widget plugin define its own Widget Area?
- How do I duplicate a single post, with all its properties, and save it as a different post?
- check_admin_referer()
- add_filter postbox_classes multiple post types
- Override category archive page title (not the head title)
- Wp_List_Table is showing as no class found named wp list table
- Override woocommerce loop-start.php from theme using plugin?
- I cant add is_admin control to plugin
- 400 Bad Request and illegal invocation in wp_ajax based on processData set to false or true
- Save custom field on WP_List_Table
- WordPress Plugin Boilerplate – add actions and/or filters based on user’s role
- Change Label of custom post type
- Change Front page displays settings conditionally when user is online
- Stop unauthorised file access
- Add_action not calling callback function
- Redirect with message after admin_post.php
- I have a plugin where in I have to change the title of the page dynamically by sending parameter to the_title filter
- Caption Shortcode: what filter to change the image size?
- Hook for plugin to show content for certain urls
- Plugin dev: How to multiply instances of a plugin in the same metabox?
- Issue with iframe in TinyMCE
- admin page passing $_POST variables to itself
- wp_mail_from not changing from address
- modify buddpress adminbar only in admin pages
- append code after the_content not working
- How to change the headline title for an admin page in a plugin?
- Do Not Back Up? Is there any accepted way to tell backup and clone plugins to skip a certain file? [closed]
- How do I display and edit other posts within the ‘Edit Post’ area of Wp-Admin Dashboard