fixing recent posts sidebar filter on single blog pages as well
authorAnthony Talarico <talarico@gaslightmedia.com>
Wed, 17 Apr 2019 13:53:08 +0000 (09:53 -0400)
committerAnthony Talarico <talarico@gaslightmedia.com>
Wed, 17 Apr 2019 13:53:08 +0000 (09:53 -0400)
functions.php

index 322a0a2..71906e7 100644 (file)
@@ -745,7 +745,7 @@ function fusion_doing_ajax() {
 /* Omit closing PHP tag to avoid "Headers already sent" issues. */
 add_action('wp', 'check_home');
 function check_home() {
-    if(is_home() || is_category()) {
+    if(is_home() || is_category() || is_single()) {
         function modify_widget() {
             $r = array( 'cat' => '-70');
             return $r;