Use this to filter the title:
add_action(
'admin_head-edit.php',
'wpse264139_edit_post_change_title_in_list'
);
function wpse264139_edit_post_change_title_in_list() {
add_filter(
'the_title',
'wpse264139_construct_new_title',
100,
2
);
}`
`function wpse264139_construct_new_title( $title, $id ) {
if(get_post_type($id) == 'post_type') {
$field = get_field('place', $id);
return $field . " " . $title;
}
else {
return $title;
}
}
NOTE: most of the code came from: Replacing the title in admin list table
Related Posts:
- How can I add a column in the wp_list_table of the admin area?
- sortable columns for multiple custom post types not working
- Change column of row action (Quick Edit) links in WP_List_Table
- Change “Enter Title Here” help text on a custom post type
- Customize Edit Post screen for Custom Post Types?
- Filter by custom field in custom post type on admin page
- Showing User’s Post Counts by Custom Post Type in the Admin’s User List?
- Merge two custom post types into one admin page?
- Remove the “View” Link in Post Admin
- Multiple custom post types under one admin menu
- How can I change the admin search posts fields?
- How do I get a post (page or CPT) ID from a title or slug?
- Limit the word count in the post title
- Custom post type: Add “Edit | Quick Edit | Trash | View” links to date (if title is not shown in column)?
- How To Remove These Stuffs From Custom Post Type List Screen?
- Admin Area Custom Type Search By Meta Fields Without Title & Content
- How can I filter posts by post_parent in the admin?
- Custom post type admin search
- Ordering posts by custom taxonomy in admin area
- How to add custom columns to Custom Post Type admin screen
- How to Make an admin_notices Message That Disappears Once the User Leaves That Particular Page?
- Is it OK to move admin menu items?
- Set Custom Post Type title to the Post’s Date
- WP_List_Table Inside Metabox Not Working on Submit
- Custom Taxonomies Terms as Post Title for Custom Post Types upon Publishing
- Filter by custom Field for Custom post type Admin Listing
- Add custom column at custom posts list
- Exclude add_filter from the admin
- Set post title from two meta fields
- Renaming Menu Item within Admin Menu Section for a Custom Post Type?
- How to get search results in the backend admin on a custom post type?
- Search Post Title Only [duplicate]
- How i add new link after Edit | Quick Edit | Trash | View in quick edit section
- How to add post_author column to custom post type
- Adding help information to custom post edit page
- Only Show an Author Their Custom Post Types
- Actions that Run on Admin Edit Page Load After Posts Are Queried
- Filters post in admin with dropdown select, custom post type
- Admin List Dynamic Heading
- Is there a way to list posts of only a certain category
- How to use custom post type APIs, but use a different db table
- WordPress User Roles, Custom Post Types, and Admin views
- Settings page above CPT page in admin section
- How to search CPT’s by meta query from the admin dashboard?
- Add theme options to custom post type admin pages [closed]
- What is the impact if i ignore title and content in my custom post types CPT?
- Changing ‘view’ link for custom post type on list post screen?
- Sort admin area by custom Event Date field
- Add html to cpt main page / admin edit.php
- Using several custom fields as custom post title
- Remove rows in the manage post/page view
- Is there a way to have the view link on manage posts page to open in a new window or tab?
- How to only show posts assigned to current user, only in certain post types
- Customize my custom taxonomy table in Admin panel
- Custom admin post.php page
- How to add a custom-post-type post within another custom-post-type post edit screen using AJAX?
- Notify admin on new submit
- On update or create post redirect to current post position in list
- Show post in table front end
- Custom title set on quick edit
- Admin Column does not populate with data
- Add custom column to post list table
- Edit Custom Post Type on Custom Admin Page instead Post Admin
- Custom Postype specific changes in admin panel
- Custom Meta Title for Custom Post Type
- Custom post type isn’t working
- Add a ‘guide’ image to custom post type admin page
- New “Custom Types” item in admin menu. Is this a plugin or a new wordpress feature?
- Programatically inserted posts not showing in Posts Table
- Sortable column containing numeric values for Custom Post Type at WordPress Backend
- Linking to Post Types from wp-admin
- Plugin or method of allowing user to rearrange custom post types with drag and drop?
- Address as a content type post
- Add ‘page template’ column to dashboard for CPTs
- Sanitize title only if only custom post type
- Filter posts of custom post type by meta key in (List All Section)
- Add the custom post term to the custom post title
- Is there a hook between clicking on “Add new” and the edit screen of a new post?
- Require custom post type if is_admin() – template doesn’t show up?
- using the loop in custom meta is messing up ‘add new’ post type
- WordPress admin for a custom post, hide/collapse the main “title” and “description” boxes
- Metaboxes inside Tab
- How to customize custom post type’s list table?
- Clone wp-admin/users.php (Users Admin Page)
- how to display posts content on the custom css popup by clicking on each title on the sidebar?
- How to select meta key in custom database query
- WP_List_Table Inside Metabox Not Working on Clicking Search Button
- filter the title changed also the page titles
- Create an administation subpage containing posts in a certain category
- Customising the admin columns for a custom post type, but now most of the built in categories don’t display?
- Set the Title of a Custom Post Type by code as Author’s Username
- Exclude categories For Custom post types
- Custom Post Type Causing Admin Sidebar UI Issue
- How to change the default orderby from “Date” to e.g. “Title” or my custom column in content type records list in admin?
- Collection of fields in a single post
- Prevent users from changing post status
- Display read only info on admin, custom post page
- Custom Plugin w/ Custom Post Types – Custom Posts Are Showing at all Privilege Levels – Is this possible to adjust?
- Custom post type split title, setup permalink accordingly
- Admin menu link with variable