Skip to content

Enable Support for the WordPress “More” Break

Enable Support for the WordPress “More” Break

The Total theme has a custom excerpt function which bypasses the WordPress excerpt so that you can define how many words you want to display for your excerpts. The theme's excerpt function by default ignores the "read more" break so…

Read more

Add Extra Google Font Options

The following snippet can be used to add extra Google Font options or override the entire list of available Google font options available in the Customizer > Typography panel or exclusive Total theme elements.

Read more

Display Blog Post Featured Image As Page Header Background

// Changes your blog page header style to background image if a featured image exists add_filter( 'totaltheme/page/header/style', function( $style ) { if ( is_singular( 'post' ) && ! $style && has_post_thumbnail() ) { $style = 'background-image'; } return $style; }…

Read more

Full-Height Header One Menu

The following CSS can be used to give your header style one a full height so that your menu items are the same height as the header itself.

Read more
Back To Top