Save title as custom field on custom post type

This will automatically update a meta named post_title to the value of the post’s title, no matter where you save the post from: function wpse_275785_save_title_as_meta( $post_id, $post, $update ) { update_post_meta( $post_id, ‘post_title’, $post->post_title ); } add_action( ‘save_post’, ‘wpse_275785_save_title_as_meta’, 99, 3 );

how to add text to posts from tags

There is no plugin for that… at least one plugin 🙂 Create custom fileds for your custom text. Install ACF plugin (advanced custom fields) from wordpress.org. Now… create a field group with ACF and then create custom fileds inside that group for your custom text 1 and custom text 2. (Don’t forget to assign field … Read more

Why is a category/ tag name prefixed to title of every page?

I’ve found the cause. All in one SEO Pack plugin 1.6.14.5 is guilty (perhaps it’s not guilty by itself but also due to the multisite setup of my site and other plugins I’ve just installed conflicting it). Disabling the plugin resolve the problem immediately. I’m upgrading it and will use an alternative if it doesn’t … Read more