WordPress and buddypress programming

don’t show the word Private on private posts

Viewing 0 reply threads
  • Author
    Posts
    • #8826
      Michael Mc
      Keymaster
      @mkmcst
      // dont show the word privaate 
       function remove_private_prefix($title) { $title = str_replace('Private: ', '', $title); return $title; } add_filter('the_title', 'remove_private_prefix'); 
Viewing 0 reply threads
  • You must be logged in to reply to this topic.