Skip to content

Instantly share code, notes, and snippets.

@JoeHana
Created August 28, 2018 23:11
Show Gist options
  • Save JoeHana/acf215d966ff86f261d0bc65c182d3d8 to your computer and use it in GitHub Desktop.
Save JoeHana/acf215d966ff86f261d0bc65c182d3d8 to your computer and use it in GitHub Desktop.
Set Featured Image & Title as default option in WPCasa Oslo
<?php
/**
* Set Featured Image & Title as default option in WPCasa Oslo
*/
add_filter( 'wpsight_oslo_meta_boxes_header_listings', 'custom_wpsight_oslo_meta_boxes_header_listings' );
function custom_wpsight_oslo_meta_boxes_header_listings( $fields ) {
$fields['display']['default'] = 'featured_image';
return $fields;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment