Skip to content

Add New “Standard” Font Options

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