Skip to content

Move Breadcrumbs Trail

Move Breadcrumbs Trail

// Set breadcrumbs position to "custom" to remove from theme's default location // NOTE: This can now be done in the Customizer as well. add_filter( 'wpex_breadcrumbs_position', function() { return 'custom'; } ); // Place breadcrumbs above your page/post content /…

Read more

Custom Excerpt Output

The following snippet will allow you to alter the custom output for any excerpts used in the theme. By default the heme will try and locate the first paragraph of text on the site and create the excerpt from it…

Read more

Add New “Standard” Font Options

function myprefix_add_new_standard_fonts( $array ) { $array[] = 'Century Gothicfunction myprefix_add, CenturyGothic, AppleGothic, sans-serif'; return $array; } add_filter( 'wpex_standard_fonts_array', 'myprefix_add_new_standard_fonts' );

Read more

Easy Custom Post Type Entry Override

Allows you to create your own file in your child theme for your custom post type entries. You can use this method for any post type archive or custom taxonomies defined via a Custom post types plugin such as the…

Read more

Conditionally Alter The Callout Content

add_filter( 'totaltheme/footer/callout/content', function( $content ) { // Alter content for the portfolio posts. if ( is_singular( 'portfolio' ) ) { return 'MY CUSTOM CONTENT'; } // Return content. return $content; } );

Read more

Purely CSS Fixed Header Style One

The Total theme's sticky header is very complex as it takes in a lot of data because Total allows for control so for example if a user wants content above the header the theme needs to account for that. It…

Read more
Back To Top