• Resolved maniiiiac

    (@maniiiiac)


    i want to hide my attachments link for guests, there is a modification that make shortcode for hiding some specific section in wordpress, but it’s not work for me, because i need to hide link automatically without make them hide manually.

    can anyone help me?

Viewing 4 replies - 1 through 4 (of 4 total)
  • i want to i did it last year but now i didnt found on web 🙁

    Thread Starter maniiiiac

    (@maniiiiac)

    here is the code :

    <?php
    function hide_links($post_content) {
     if ( in_category( array( 'YOUR CAT ID', 'YOUR CAT ID') )) {
    	global $wpdb;
    
    		return ($post_content = !is_user_logged_in()?preg_replace('/<a(.*?)>(.*?)<\/a>/m', '<div style="color:red;font-size:12px;"> YOUR TEXT</div>',$post_content):$post_content);
    	 }	
    
     }
      add_filter('the_content', 'hide_links')
    
    ?>

    thanks maniiiiac for your interest
    but where am i put this code
    thank you

    Thread Starter maniiiiac

    (@maniiiiac)

    your welcome
    it reside to your post content, would you like hide your link in article?
    so put it to your single.php

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Hide External links for guests!’ is closed to new replies.