Advertisement
michaellevelup

Download featured image

May 3rd, 2022
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.42 KB | None | 0 0
  1. function king_add_download($text){
  2.  
  3.     global $post;
  4.  
  5.     if(($post->post_type == 'post')){
  6.  
  7.         $thumb_URL = get_the_post_thumbnail_url( get_the_ID(), 'full' );
  8.         $last_tag = strrpos( $text, "</" );
  9.         $text = substr_replace( $text, '<a class="download_image" href="'.$thumb_URL.'">Download this Image</a>', $last_tag, 0 );
  10.     }
  11.  
  12.     return $text;
  13. }
  14.  
  15. add_filter('the_content','king_add_download', 1);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement