Advertisement
arie_cristianD

override mobile truncate in desktop

Oct 9th, 2023
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. function jnews_enable_mobile_truncate() {
  2.     if ( get_post_type( get_the_ID() ) !== 'post' ) {
  3.         return false;
  4.     }
  5.     return get_theme_mod( 'jnews_mobile_truncate', false ) && is_single();
  6. }
  7.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement