Skip to content

Custom Post Gallery Loop

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

How to Override Custom Widgets

You can override any of the Total theme's custom widgets via your child theme. Simply copy the widget file from the Total Theme Core plugin under total-theme-core/inc/widges/ into your child theme (best to create a widgets folder in the child…

Read more

Disable More Tag For Blog Entries

By default if the theme see's that your post is using the more tag it will use that for the blog entry excerpts. If you want to ignore the more tag and use the theme's custom excerpt function you can…

Read more
Back To Top