Skip to content

Purely CSS Fixed Header Style One

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

Custom Post Gallery Loop

The Total theme includes the ability to assign images to your post via the Gallery Metabox (available for core theme post types but can be extended for other post types). If you want to create a custom module, shortcode or…

Read more

Topbar Custom Image Icons

By default the topbar uses font icons for the social links. If you want you can easily use image icons instead. Simply go to the Customizer and change the style to Colored Image Icons (legacy) then you can use the…

Read more

Alter The Next/Previous Links Text

By default the next and previous links in the Total theme display the title of the next/previous post. You can easily change this to your own custom text if you want via your child theme.

Read more

Order Related Staff by Name

// Alter the related staff posts query function myprefix_custom_related_staff_args( $args ) { // Change order from random to name $args['orderby'] = 'title'; // Return args return $args; } add_filter( 'wpex_related_staff_args', 'myprefix_custom_related_staff_args' );

Read more
Back To Top