Skip to content

Instantly share code, notes, and snippets.

@swinggraphics
Created June 6, 2022 18:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save swinggraphics/336c45bfef2dbd3df0a9cfc525961415 to your computer and use it in GitHub Desktop.
Save swinggraphics/336c45bfef2dbd3df0a9cfc525961415 to your computer and use it in GitHub Desktop.
Provide clear indication when Beaver Builder is active
<?php
/* Make BB status obvious */
add_filter( 'display_post_states', 'sg_bb_post_state', 10, 2 );
function sg_bb_post_state( $post_states, $post ) {
if ( FLBuilderModel::is_builder_enabled( $post->ID ) ) {
$post_states[] = 'Beaver Builder';
}
return $post_states;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment