• Home
  • Quick Start
    • Color Schemes
  • Documentation
    • Shortcodes
    • JaW Hooks
    • Screenshots of ThemeOptions
  • Tutorials
  • Forum
  • Contact
Log In

  • Home
  • Quick Start
    • Color Schemes
  • Documentation
    • Shortcodes
    • JaW Hooks
    • Screenshots of ThemeOptions
  • Tutorials
  • Forum
  • Contact

HomeTag: title

title

wphooks
0 comments
JaW Hooks

Action jaw_postbox_X

This action is used for content of post boxes. function my_init(){ remove_action("jaw_postbox_vertical", array("jwRender", "postboxMeta"), 15, 1); add_action("jaw_postbox_vertical", array("jwRender", "postboxMeta"), 9, 1); } add_action('init', 'my_init', 10); The result can look like this: function my_postbox(){ echo "Something special here"; } add_action("jaw_postbox_vertical", "my_postbox", 11, 1); The result can look like this: List of all hooks you can find HERE

  • October 17, 2016
  • 0
  • 121
wphooks
0 comments
JaW Hooks

Filter jaw_gallery_box_default_name

This filter is used in JaW Gallery Simple, Vertical and Horizontal. You can change its default name, which is simple GALLERY. function my_custom_gallery_title($title){ return "custom name"; } add_filter('jaw_gallery_box_default_name', 'my_custom_gallery_title'); The result looks like this: List of all hooks you can find HERE

  • June 6, 2016
  • 0
  • 65
wphooks
0 comments
CodeJaW HooksTutorials

Filter jaw_section_title

This filter is used in Section Bar. function my_section_title($title){ return " " . $title; } add_filter('jaw_section_title', 'my_section_title'); The result can look like this: List of all hooks you can find HERE

  • March 24, 2016
  • 0
  • 89
wphooks
0 comments
CodeJaW HooksTutorials

Filter jaw_cropped_text

This filter is used in post box. It’s the cutted description and title text of your post. By standard way it looks like this. function my_cropped_text($text){ return strtoupper($text); } add_filter('jaw_cropped_text', 'my_cropped_text'); The result can look like this: List of all hooks you can find HERE

  • March 24, 2016
  • 0
  • 68
shortcode titles
0 comments
Content

Shortcode Title

Title Attributes title – Title name description – Some description type – Element’s header type bar_type_1 – With left border bar_type_2 – With top and bottom border bar_type_3 – With background color bar_type_4 – With middle right border bar_type_big_left – Title big left border bar_type_big_center – Title big center border bar_type_big_right – Title big right border default off – Title off space – Title off

  • October 23, 2015
  • 0
  • 111
wphooks
0 comments
CodeJaW HooksTutorials

Action jaw_gallery_after_title

This action is used after title in a single gallery function my_custom_gallery_after_title() { echo '<img src="SOME_URL" alt="NAME_OF_IMAGE" />'; } add_action('jaw_gallery_after_title', 'my_custom_gallery_after_title'); The result can look like this: List of all hooks you can find HERE

  • September 29, 2015
  • 0
  • 48
wphooks
0 comments
CodeJaW HooksTutorials

Action jaw_gallery_before_title

This action is used before title in a single gallery function my_custom_gallery_before_title() { echo '<img src="SOME_URL" alt="NAME_OF_IMAGE" />'; } add_action('jaw_gallery_before_title', 'my_custom_gallery_before_title'); The result can look like this: List of all hooks you can find HERE

  • September 29, 2015
  • 0
  • 51
wphooks
0 comments
CodeJaW HooksTutorials

Action jaw_after_section_title

This action is used after the box title. function my_custom_box_title(){ echo '<img src="SOME_URL" alt="NAME_OF_IMAGE" />'; } add_action('jaw_after_section_title', 'my_custom_box_title'); The result can look like this: List of all hooks you can find HERE

  • September 25, 2015
  • 0
  • 69
wphooks
0 comments
CodeJaW HooksTutorials

Action jaw_before_section_title

This action is used before the box title. function my_custom_box_title(){ echo '<img src="SOME_URL" alt="NAME_OF_IMAGE" />'; } add_action('jaw_before_section_title', 'my_custom_box_title'); The result can look like this: List of all hooks you can find HERE

  • September 25, 2015
  • 0
  • 72
Copyright © 2016 jawtemplates - WordPress Design Studio Disable responsivity