JaW Hooks
Our customers usually want to customize their theme, so in the GDay News theme are used lots of hooks for better customization via child theme or custom plugins. Here is a list of all hooks with some documentation as well.
Our customers usually want to customize their theme, so in the GDay News theme are used lots of hooks for better customization via child theme or custom plugins. Here is a list of all hooks with some documentation as well.
Actions are used in theme on places, where our customers usually wants to customize the theme. Add some code by action is very easy. Take for example first of our actions jaw_before_header. This action is used in header. Now if we want to put some object (e.g. some image) into header just put into your functions.php in your Child theme this code:
function my_custom_header(){ echo '<img src="SOME_URL" alt="NAME_OF_IMAGE" />'; } add_action('jaw_before_header', 'my_custom_header');The result can look like this:
More about actions you can find on codex.wordpress.org.
jaw_under_topbar
jaw_before_menuwrapper
jaw_before_breadcrumbs
jaw_after_breadcrumbs
jaw_before_no_posts
jaw_after_no_posts
jaw_gallery_before_list_photos
jaw_save_theme_options
Filters can be used for filtering of some content. You can use it if you want to e.g. add something after post excerpt.
Take a look at our jaw_section_title filter. If you want to add icon before every title bar, just add into your function.php in your Child theme this code:
function my_title_filter($content){ return '<i class="jaw-icon-heart-off"></i> ' . $content; } add_filter('jaw_section_title', 'my_title_filter');The result can look like this:
More about filters you can find on codex.wordpress.org.
jaw_revocomposer_elements_editor
jaw_menu_widget_areas
jaw_body_class
jaw_breadcrumbs_text
jaw_post_format
jaw_single_title
jaw_revocomposer_content – Output HTML from RevoComposer on frontend
jaw_gallery_filter_close_icon
jaw_gallery_filter_undo_icon
jaw_gallery_filter_arrow_right_icon
jaw_gallery_filter_arrow_left_icon
jaw_gallery_filter_description_up_icon
jaw_gallery_filter_description_down_icon
jaw_gallery_box_default_items_name
jaw_default_embed_icon
jaw_default_video_icon
jaw_related_posts_query_cats
jaw_related_posts_query_tags
jaw_logo_size
jaw_mobile_logo_size
jaw_menu_logo_size
jaw_usermanagement_categories
jaw_usermanagement_tags
jaw_usermanagement_authors