Skip to content

How to use post image attachments for gallery slider

How to use post image attachments for gallery slider

add_filter( 'wpex_get_post_gallery_ids', function( $ids ) { $images = get_attached_media( 'image' ); if ( $images ) { $ids = array(); // reset incase there are any defined gallery images lets not include them foreach ( $images as $image ) { $ids[]…

Read more

Custom Post Type Image Sizes

The Total theme makes it easy to add new image sizes under the Theme Panel > Image Sizes admin dashboard so you can better control the display of your custom post type featured images. The snippet below is an example…

Read more

Allow Shortcodes in bbPress Forumns & Replies

By default bbPress doesn't support shortcodes for the output of the Forum descriptions or in replies. You can use the do_shortcode function to include support by hooking into the bbPress content filters as shown below. Simply add this code to…

Read more

Move Category Description under Pagination

By default in the Total theme the category/archive descriptions are added as subtitles under the main title but there are theme options which allow you to move it into the main content area above the loop. Now if you want…

Read more
Back To Top