Advertisement
verygoodplugins

Untitled

Mar 14th, 2019
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. function my_single_post_link( $link, $post_id, $settings ) {
  2.  
  3.     //Modify the link here
  4.     $link = get_post_meta( $post_id, 'link', true );
  5.     return $link;
  6.  
  7. }
  8.  
  9. add_filter( 'uael_single_post_link', 'my_single_post_link', 10, 3 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement