Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save zackeryfretty/9188f192193318ca61537a04a75c1755 to your computer and use it in GitHub Desktop.
Save zackeryfretty/9188f192193318ca61537a04a75c1755 to your computer and use it in GitHub Desktop.
function zf_set_custom_width_on_posts_bb( $defaults, $form_type ) {
if ( get_post_type( get_the_ID() ) == 'post' ) {
if( $form_type == 'row' ) {
$defaults->max_content_width = '800';
}
}
return $defaults;
}
add_filter( 'fl_builder_settings_form_defaults', 'zf_set_custom_width_on_posts_bb', 100, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment