Change Post Title & Content post format separator

The default Post Title & Content separator in Revive Old Post is a space. To change this separator to anything you wish you can use the available filter in the plugin.

Start off by including the following code in either your child theme's functions.php file or create a site-specific plugin using the following plugin:  https://wordpress.org/plugins/pluginception/

All you need to add is the plugin name and then copy the code below and enter it into the editing area, after pasting the code save your changes and head over to your Plugins area and activate the plugin to see the changes.

function rop_change_default_separator(){
return '-';
}
add_filter( 'rop_title_content_separator', 'rop_change_default_separator' );

Change the dash (-) to whatever separator you wish to use.

Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.