Skip to content

Display Only the Theme Settings Media Tab for Non-Admins

Disable Responsiveness

Make sure to change 'PAGE_ID' with the ID of the page where you want to disable responsiveness or change the entire is_page() conditional for your own conditional checks.

Read more

Move Breadcrumbs Trail

// Set breadcrumbs position to "custom" to remove from theme's default location // NOTE: This can now be done in the Customizer as well. add_filter( 'wpex_breadcrumbs_position', function() { return 'custom'; } ); // Place breadcrumbs above your page/post content /…

Read more

Custom Excerpt Output

The following snippet will allow you to alter the custom output for any excerpts used in the theme. By default the heme will try and locate the first paragraph of text on the site and create the excerpt from it…

Read more
Back To Top