you can do this customisation by removing the core author column and replace it with a custom one.
$post_type = "kea_activity";
add_filter("manage_{$post_type}_posts_columns", function ($posts_columns) {
$posts_columns["author_custom"] = "Author";
unset($posts_columns["author"]);
return $posts_columns;
});
add_action("manage_{$post_type}_posts_custom_column", function ($column_name, $post_ID) {
if ("author_custom" === $column_name) {
$author = get_the_author();
echo esc_html($author) . " <strong>information</strong>";
}
}, 10, 2);
Related Posts:
- Change the Theme in Jupyter Notebook?
- Extra TinyMCE editor strips and tags?
- Disable Visual editor for all users
- Adding a rich text editor to Excerpt
- Avoid converting “>” to >
- Disable WYSIWYG editor only when creating a page
- How to edit posts with the new wp_editor api?
- How can i add some static text above the editor?
- Add quicktag buttons to the HTML editor
- Force TinyMCE editor’s “Toolbar Toggle” to be automatically chosen & expanded
- Stop certain classes showing up in TinyMCE Advanced Style dropdown
- WordPress 4.6 link edit dialog is too rudimentary
- Disable the Code View in the content editor?
- post editor changes & to &
- Disable escaping html
- Gutenberg block editor – list of form components for custom blocks
- Completely disable editor
- If two users attempt to modify a page, does WordPress still work correctly?
- What’s the Best Way to Edit WordPress Files?
- Why is WordPress WYSIWYMG and how do I make it WYSIWYG?
- Add visual editor capability to custom excerpt window?
- Square brackets make WordPress ignore newline/paragraph
- Open posts in editor in the ‘Text’ mode by default
- Text cut off on save
- Making the Post/Page Content Editor Box Bigger?
- Showing only certain buttons on tinymice content editor
- Set default text for the editor in new posts
- How to apply editor filter to posts with a specific custom post type
- Remove all table widths from editor content
- WordPress post editor crashes with Polyfill typo
- in network setup super admin has the tinyMCE buttons and the regular admin has not
- How to get Text Selection in WordPress Editor
- Float images in content
- Good tutorial on how to make custom write panels in WordPress 3?
- Always paste as a text in visual editor
- Use MarkItUp as editor and not the default
- Restrict other Admins from using Editor in Admin Panel
- Editor doesn’t load properly on my self-hosted WordPress 3.3
- Can Rich Text features be configured per user?
- Cannot access WordPress Appearance → Editor
- Edit the archive-{custom_page}.php via WP editor
- How to disable YouTube (and any other oembed) embeding in the editor
- Creating table layout in WYSIWYG editor
- Add default text to multiple wysiwyg editors
- How to leave a line between paragraphs when writing text in the visual or text editor
- Customize Editor Styles
- WYSIWYG eating up first p in td
- problem adding code into wp editor for https://wordpress.org/support [closed]
- Adding content in Gutenberg editor
- How to display full width block without toolbar?
- WordPress editor converted/deleted HTML entities code
- Open ‘View Page’ Button in Editor in new Tab
- Opening Brackets Do Not Format to Paragraphs in Visual Editor
- WordPress editor spacing very unreliable
- wp_editor responsive?
- WordPress editor removes all the linefeed characters with WP-Markdown and Syntax Highlighter evolved
- Why wordpress word count differs from Microsoft word and sites like wordcounter.net
- WP is not allowing me to post Macintosh .pages documents to my blog
- The simplest way to let clients edit pages
- Page/post editor with syntax highlighting [closed]
- How do you stop WP from stripping code? [closed]
- Unable to edit and see content of pages
- Problem with some keys when editing HTML in wordpress “text” editor
- Feauterd image meta box not showing up
- Why WordPress not using WP_Filesystem
- Disabled visual editor and WordPress keeps adding line-breaks to my code
- Built-in spell checker not working in WordPress 3.3.1
- How to use numbered lists in the post editor?
- Force WP to ignore multiple whitespaces
- Resize Rich Post Editor in Chrome
- Problem with -> in pre tags
- Why does a certain attribute disappear after a while from a page?
- Is WordPress classical and block editor(s) too inefficient to handle large data?
- How to add text editor field in user edit profile?
- Edit Post with a parameter in URL
- wp_editor() renders outside wrapping div
- Can’t update or publish post/pages with browser Safari
- WordPress page edits are now slow
- Have a website using version 4.9.11 and the Appearance option does not appear on Dashboard
- How to enable error reporting for wp admin section
- Editor width automatically reduced – text is wrapped after 1 character
- editor option not available in dashboard
- Gutenberg work with Bootstrap Shortcodes plugin
- Classic Editor text font color is white after installing the latest version of wordpress
- How to hide a field of the editor by default
- Allow contributors to edit their own images
- What’s the best way to trim content from WYSIWYG editor?
- Image Post creates unusual extra HTML
- Why are carriage returns deleted in the editor?
- How to add Thumbnail button in frontend editor
- Inline style appears in the editor but breaks on live site
- Directly open page in text editor
- Contributor post to be reviewed and published by only one editor
- Where Can I Find the Video Player In The Edit Media Screen
- Limit post view and management to custom user meta information
- Why is the text editor linked to the visual editor?
- How i can customize WordPress front page in WP dashboard editor?
- Foliopress WYSIWYG editor does not display images [closed]
- How can I edit global styles?
- Using WordPress Site Editor – how to control overall container width?