By default the Total theme displays a "Theme Settings" metabox on all core public post types which includes various settings…
By default the Total theme uses a comma to separate categories/terms when displaying them as a list such as in…
// Remove author URL from bio add_filter( 'wpex_post_author_bio_data', function( $data ) { unset( $data['posts_url'] ); return $data; } ); //…
// Remove from everywhere add_filter( 'wpex_metaboxes', '__return_false' ); // Remove from specific post types add_filter( 'wpex_metaboxes', function( $bool ) {…
function myprefix_hide_wpex_meta_from_authors( $array, $post ) { // Return array if admin if ( ! current_user_can( 'administrator' ) ) { return…
The Page Settings Metabox is added to override default theme behavior which you can use theme filters to override. However,…
function my_gallery_metabox_post_types( $types ) { // Add to portfolio $types[] = 'portfolio'; // Remove from staff unset( $types['staff' ] );…
You may have noticed that the Total theme includes a Theme Settings Metabox that displays below your posts and pages…
add_filter( 'wpex_main_metaboxes_post_types', function( $types ) { // Add to my custom-type post type $types[] = 'custom-type'; $types[] = 'custom-type-2'; $types[]…