Skip to content

Instantly share code, notes, and snippets.

@sbrajesh
Created July 21, 2015 00:06
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 sbrajesh/088e365ae0b3fb886c43 to your computer and use it in GitHub Desktop.
Save sbrajesh/088e365ae0b3fb886c43 to your computer and use it in GitHub Desktop.
stop buddyblog featured image
<?php
//do not allow featured image pload
add_filter( 'buddyblog_post_form_settings', 'buddydev_restrict_featured_image_upload' );
function buddydev_restrict_featured_image_upload( $settings ) {
$settings['has_post_thumbnail'] = 0;
return $settings;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment