Skip to content

Custom Breadcrumbs Arguments

Custom Breadcrumbs Arguments

Below is a snippet showing how you can alter some of the default breadcrumbs arguments. Note that this is for the theme's built-in breadcrumbs function and not the Yoast SEO breadcrumbs.

Read more

How To Display Overlays On Mobile Under The Image

Various image overlays display on hover, however, on mobile devices there isn't any "hover" affect. That's ok, you can actually use some custom CSS if you want to have the overlays display on mobile under the image. Below is an…

Read more

Display Audio Embed On Blog Entry

By default audio posts display a featured image with a little overlay icon. If you want you can paste the following code in a child theme's functions.php file and it will display the audio embed instead of the image so…

Read more

Alter The Readmore Button Text

// Example of conditionally altering the readmore button text via the filter // This example shows you can change it for video format posts. function myprefix_custom_post_readmore_link_text( $text ) { if ( 'video' == get_post_format() ) { $text = 'Watch Video';…

Read more

WPBakery Pageable Container jwplayer Not Working Fix

Basically the way the pageable containers work is by hiding whatever is inside the non-active tabs. Certain players like jwplayer can not properly render the media if it's hidden by default. The following CSS will display all your tabs by…

Read more
Back To Top