- 10 Best Appointment Scheduling Software for Small Businesses - April 8, 2021
- 7 Best Geotargeting WordPress Plugins for Localized Marketing - April 7, 2021
- 5 Best Cloud Backup Solutions for Small Businesses - April 6, 2021
This code has to be pasted into your theme’s functions.php file. It can be customized to deal with custom post types, as shown on line 16 and after. add_filter( ‘default_content’, ‘pu_default_editor_content’ ); function pu_default_editor_content( $content ) { global $post_type; switch( $post_type ) { case ‘post’: $content = ‘Default content for blog posts.’; break; case ‘page’: […]