Advertisement
deadhead1971

WPML - Exclude custom post types "This post is also avail.."

Dec 9th, 2019
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. add_filter('wpml_ls_post_alternative_languages', function( $html ){
  2. if ( is_singular('your-post-type') ) {
  3. return FALSE;
  4. }
  5.  
  6. return $html;
  7. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement