This snippet shows how you could hook into the "wpex_get_grid_entry_columns" filter to alter the default columns for a post type…
add_filter( 'wpex_get_post_type_cat_tax', function( $tax ) { if ( 'my-custom-post-type' == get_post_type() ) { return 'my-custom-taxonomy'; } return $tax; } );
While you can already define your dynamic post template for posts, portfolio, staff, testimonials via the Customizer and you can…
Allows you to create your own file in your child theme for your custom post type entries. You can use…
add_filter( 'wpex_gallery_metabox_post_types', function( $types ) { $types[] = 'your_post_type'; return $types; } );
/** * Alter custom post type thumbnail arguments * @see framework/core-functions wpex_get_post_thumbnail() function for a list of all available arguments…
The following snippet shows how you can use the 'wpex_{post_type}_entry_blocks' filter to add or remove sections/blocks from your custom post…
/** * Any custom post type post layout can be altered via the wpex_single_blocks filter * which returns an array…
/** * Example function for altering your entry overlay style for custom post types * outside the scope of the…
// Enable Social Sharing On Custom Post Types add_filter( 'wpex_has_social_share', function( $bool ) { if ( is_singular( 'YOUR_POST_TYPE_NAME' ) )…
// Alter the meta sections array via the "wpex_meta_sections" filter // For the blog use the 'wpex_blog_entry_meta_sections' or 'wpex_blog_single_meta_sections' instead…
Note: Since Total 5.0 you can now enable this tab via the Post Types Unlimited plugin.