Skip to content

Display Shopping Cart Icon on Mobile

Get & Display Term Thumbnail

Total has the ability to assign images to your categories/terms if you are working on some custom code and you want to grab these it's very easy, see the example below.

Read more

Insert Blog Meta into Page Header

add_action( 'wpex_hook_page_header_inner', function() { // Only add on blog posts if ( ! is_singular( 'post' ) ) { return; } get_template_part( 'partials/blog/blog-single-meta' ); }, 40 );

Read more
Back To Top