Single Post Preset
Make or modify your own presets with detailed settings of posts on your blog.
Make or modify your own presets with detailed settings of posts on your blog.
This action is used after a single perex in a single post function my_custom_perex(){ echo '<img src="SOME_URL" alt="NAME_OF_IMAGE" />'; } add_action('jaw_after_single_perex', 'my_custom_perex'); The result can look like this: List of all hooks you can find HERE
This action is used before a single perex in a single post function my_custom_perex(){ echo '<img src="SOME_URL" alt="NAME_OF_IMAGE" />'; } add_action('jaw_before_single_perex', 'my_custom_perex'); The result can look like this: List of all hooks you can find HERE