Advertisement
arie_cristianD

custom post fields

Dec 11th, 2023
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. add_action(
  2.         'jnews_single_post_before_content',
  3.         function () {
  4.             $post_id    = get_the_ID();
  5.             $forum_link = get_post_meta( $post_id, 'forum_link', true );
  6.             echo 'Post Forum Link: ' . esc_url( $forum_link );
  7.         }
  8.     );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement