How to remove Divi post status

Jan 3, 2019 | Divi Resources

How to drop “— Divi” appended after name of each page or post which uses Divi Builder

Since the Divi 3.18 update which was released after the Gutenberg editor was introduced in WordPress 5.0, there is post status introduced which shows if a page or post is created using Divi Builder.

It is done in form of a string “— Divi” added after Name of the pages in the list.

Users who do not want to keep this feature and remove it from their site can use the following snippet in the functions.php file of their child themes.

function remove_divi_post_status( $post_states, $post ) {
		// Make sure that $post_states is an array. Third party plugin might modify $post_states and makes it null
		// which create various issue (i.e. Piklist + Having a page configured as a static page)
		if ( ! is_array( $post_states ) ) {
			$post_states = array();
		}

		if ( et_pb_is_pagebuilder_used( $post->ID ) ) {
			// Remove Divi if existing
			$key = array_search( 'Divi', $post_states );
			if ( false !== $key ) {
				unset( $post_states[ $key ] );
			}
		}

		return $post_states;
}
add_filter('display_post_states','remove_divi_post_status', 11, 2);

The above code will get rid of the “— Divi” string appended after name of each page or post which uses Divi Builder.

Subscribe and Never Miss Out!

Posted By:
Arif
Dreamer, Schemer, Music & Technology enthusiast. He enjoys building things that speak HTTP. Arif is Development Head at Elicus and has over 13 years experience in the WordPress development industry.

0 Comments

Submit a Comment

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments

Submit a Comment

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Progress Bars in Divi: Layouts, Usage, and How to Add Them

Progress Bars in Divi: Layouts, Usage, and How to Add Them

A website is all about capturing the visitor’s attention, offering them a solution or information they are looking for in the most convenient way. Without a user-friendly design, it’s not possible. Hence, you need to add interactive elements that make exploring the...

Divi 5 Official Release Date and Things to Keep in Mind

Divi 5 Official Release Date and Things to Keep in Mind

The time to say goodbye to the longest-running version of the Divi theme is about to come. In a few weeks, Divi 4 will be succeeded by its newer version, Divi 5, and the official release date has already announced. For those who are on the Divi 4 version, it’s...

Divi WooCommerce Extended

Subscribe and Never Miss Out!