Skip to content

Instantly share code, notes, and snippets.

@Codevz
Last active June 18, 2022 10:29
Show Gist options
  • Select an option

  • Save Codevz/c5238827b53b8f1c755f9e9b97e22f09 to your computer and use it in GitHub Desktop.

Select an option

Save Codevz/c5238827b53b8f1c755f9e9b97e22f09 to your computer and use it in GitHub Desktop.
XTRA WP Theme - Action hook for adding content before breadcrumbs, https://xtratheme.com/
<?php
/**
* With this function you can add any content or php codes before breadcrumbs section.
*/
function my_prefix_before_breadcrumbs() {
echo 'This is a custom content text.';
}
add_action( 'codevz/before_breadcrumbs', 'my_prefix_before_breadcrumbs' );
@Codevz
Copy link
Copy Markdown
Author

Codevz commented Jan 18, 2022

If you want to see more actions and hooks of XTRA WP theme, Please check out documentation here https://xtratheme.com/docs/developer/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment