Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * JNEWS Custom, Add Custom Code before Comment Sections
- */
- function jcustom_add_any_code_before_comment_section() {
- /** Add Any Code HTML, CSS, or JS Here */
- ?>
- <style> h1 { color: red; }</style>
- <script>window.alert('123')</script>
- <h1>**IM HERE**</h1>
- <?php
- }
- add_action( 'jnews_single_post_after_content', 'jcustom_add_any_code_before_comment_section', 59 ); /** Hook Priority of Comment Section is 60 */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement