You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've tried using a function to disable Disqus for one of our custom post types, this is one I've seen on multiple websites, but it doesn't seem to work anymore:
`add_filter( 'comments_template' , 'wpb_block_disqus', 1 );
function wpb_block_disqus($file) {
if ( 'post' == get_post_type() )
remove_filter('comments_template', 'dsq_comments_template');
return $file;
}`
Any guidance on this would be great!
The text was updated successfully, but these errors were encountered:
dmayer5
changed the title
Disable Disqus for Custom Post Type
Disable Disqus for Custom Post Type- Question
Mar 17, 2020
I've tried using a function to disable Disqus for one of our custom post types, this is one I've seen on multiple websites, but it doesn't seem to work anymore:
`add_filter( 'comments_template' , 'wpb_block_disqus', 1 );
function wpb_block_disqus($file) {
if ( 'post' == get_post_type() )
remove_filter('comments_template', 'dsq_comments_template');
return $file;
}`
Any guidance on this would be great!
The text was updated successfully, but these errors were encountered: