GavickPro Documentation

Available Filters and actions in the GavernWP WordPress theme framework

Full description How to use the Filters and Actions can be found here.

List of filters available in GavernWP framework:

For theme parts:

For social links (every social link can be changed by the filter – all social filters are placed in gavern/widgets.social.php file):

For the title:

For the Theme logo:

For metatags:

For Open Graph tags:
filters for functions which generate the template Open Graph tags – title, image, type, description, URL and custom (all placed in gavern/helpers/helpers.layout.php file)

For the breadcrumb:
filters for functions which generate the breadcrumb output (all placed in gavern/helpers/helpers.layout.php file)

For the GK News Show Pro widget: filters for functions which generate GK News Show Pro output -title, article text, article featured image, information about article, readmore button, title link and text (all filters placed in gavern/widgets.nsp.php file)

For the GK Tabs widget:
filters for functions which generate GK Tabs output – tab title and content (all filters placed in gavern/widgets.tabs.php file)

For example, to change “Meet Gavern WP” to “Home” in breadcrumb use following filter:

function my_breadcrumb_home( $home ) {
return 'Home';
}
add_filter('gavern_breadcrumb_home', 'my_breadcrumb_home');
Available Filters and actions in the GavernWP WordPress theme framework 5.005 (100.00%) 2 votes