Advertisement
arie_cristianD

add action to jnews_account_right_content

Nov 21st, 2023
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.16 KB | None | 0 0
  1. /* add content before account page right content */
  2.  
  3. add_action( 'jnews_account_right_content', 'test', 9 );
  4.  
  5. function test() {
  6.     echo '<h1> Test</h1>';
  7. }
  8.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement