Created
August 28, 2018 23:11
-
-
Save JoeHana/acf215d966ff86f261d0bc65c182d3d8 to your computer and use it in GitHub Desktop.
Set Featured Image & Title as default option in WPCasa Oslo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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