@@ -311,7 +311,7 @@ discard block |
||
| 311 | 311 | * @access public |
| 312 | 312 | * @since 1.5.0 |
| 313 | 313 | * @static |
| 314 | - * @return string|boolean |
|
| 314 | + * @return string|false |
|
| 315 | 315 | */ |
| 316 | 316 | public static function is_alnp_using_customizer() { |
| 317 | 317 | if ( is_customize_preview() ) { |
@@ -331,7 +331,7 @@ discard block |
||
| 331 | 331 | * @param string $name The ID to register with WordPress. |
| 332 | 332 | * @param string $file_path The path to the actual file. |
| 333 | 333 | * @param bool $is_script Optional, argument for if the incoming file_path is a JavaScript source file. |
| 334 | - * @param array $support Optional, for requiring other javascripts for the source file you are calling. |
|
| 334 | + * @param string[] $support Optional, for requiring other javascripts for the source file you are calling. |
|
| 335 | 335 | * @param string $version Optional, can match the version of the plugin or version of the source file. |
| 336 | 336 | * @param bool $footer Optional, can set the JavaScript to load in the footer instead. |
| 337 | 337 | * @global string $wp_version |
@@ -31,9 +31,11 @@ |
||
| 31 | 31 | // Load content after the loop. |
| 32 | 32 | do_action( 'alnp_load_after_loop' ); |
| 33 | 33 | |
| 34 | -else : |
|
| 34 | +else { |
|
| 35 | + : |
|
| 35 | 36 | |
| 36 | 37 | // Load content if there are no more posts. |
| 37 | 38 | do_action( 'alnp_no_more_posts' ); |
| 39 | +} |
|
| 38 | 40 | |
| 39 | 41 | endif; // END if have_posts() |
@@ -39,9 +39,11 @@ |
||
| 39 | 39 | // Load content after the loop. |
| 40 | 40 | do_action( 'alnp_load_after_loop' ); |
| 41 | 41 | |
| 42 | - else : |
|
| 42 | + else { |
|
| 43 | + : |
|
| 43 | 44 | |
| 44 | 45 | // Load content if there are no more posts. |
| 45 | 46 | do_action( 'alnp_no_more_posts' ); |
| 47 | + } |
|
| 46 | 48 | |
| 47 | 49 | endif; // END if have_posts() |
@@ -46,7 +46,9 @@ |
||
| 46 | 46 | // Preferred implementation, where theme provides an array of options |
| 47 | 47 | if ( isset( $theme_support[0] ) && is_array( $theme_support[0] ) ) { |
| 48 | 48 | foreach( $theme_support[0] as $key => $value ) { |
| 49 | - if ( ! empty( $value ) ) update_option( 'auto_load_next_post_' . $key, $value ); |
|
| 49 | + if ( ! empty( $value ) ) { |
|
| 50 | + update_option( 'auto_load_next_post_' . $key, $value ); |
|
| 51 | + } |
|
| 50 | 52 | } |
| 51 | 53 | } |
| 52 | 54 | } |
@@ -44,11 +44,9 @@ |
||
| 44 | 44 | |
| 45 | 45 | if ( file_exists( $child_path . 'content-alnp.php' ) ) { |
| 46 | 46 | $template_redirect = $child_path . 'content-alnp.php'; |
| 47 | - } |
|
| 48 | - else if( file_exists( $template_path . 'content-alnp.php') ) { |
|
| 47 | + } else if( file_exists( $template_path . 'content-alnp.php') ) { |
|
| 49 | 48 | $template_redirect = $template_path . 'content-alnp.php'; |
| 50 | - } |
|
| 51 | - else if( file_exists( $default_path . '/template/content-alnp.php' ) ) { |
|
| 49 | + } else if( file_exists( $default_path . '/template/content-alnp.php' ) ) { |
|
| 52 | 50 | $template_redirect = $default_path . '/template/content-alnp.php'; |
| 53 | 51 | } |
| 54 | 52 | |
@@ -118,10 +118,18 @@ |
||
| 118 | 118 | $navigation_container = alnp_get_theme_support( 'navigation_container' ); |
| 119 | 119 | $comments_container = alnp_get_theme_support( 'comments_container' ); |
| 120 | 120 | |
| 121 | - if ( ! empty( $content_container ) ) update_option( 'auto_load_next_post_content_container', $content_container ); |
|
| 122 | - if ( ! empty( $title_selector ) ) update_option( 'auto_load_next_post_title_selector', $title_selector ); |
|
| 123 | - if ( ! empty( $navigation_container ) ) update_option( 'auto_load_next_post_navigation_container', $navigation_container ); |
|
| 124 | - if ( ! empty( $comments_container ) ) update_option( 'auto_load_next_post_comments_container', $comments_container ); |
|
| 121 | + if ( ! empty( $content_container ) ) { |
|
| 122 | + update_option( 'auto_load_next_post_content_container', $content_container ); |
|
| 123 | + } |
|
| 124 | + if ( ! empty( $title_selector ) ) { |
|
| 125 | + update_option( 'auto_load_next_post_title_selector', $title_selector ); |
|
| 126 | + } |
|
| 127 | + if ( ! empty( $navigation_container ) ) { |
|
| 128 | + update_option( 'auto_load_next_post_navigation_container', $navigation_container ); |
|
| 129 | + } |
|
| 130 | + if ( ! empty( $comments_container ) ) { |
|
| 131 | + update_option( 'auto_load_next_post_comments_container', $comments_container ); |
|
| 132 | + } |
|
| 125 | 133 | } |
| 126 | 134 | } // END set_theme_selectors() |
| 127 | 135 | |
@@ -164,8 +164,12 @@ discard block |
||
| 164 | 164 | public function alnp_remove_widgets_panel( $components ) { |
| 165 | 165 | if ( $this->alnp_is_customizer() ) { |
| 166 | 166 | foreach( $components as $key => $component ) { |
| 167 | - if ( $component == 'widgets' ) unset( $components[ 'widgets' ] ); |
|
| 168 | - if ( $component == 'nav_menus' ) unset( $components[ 'nav_menus' ] ); |
|
| 167 | + if ( $component == 'widgets' ) { |
|
| 168 | + unset( $components[ 'widgets' ] ); |
|
| 169 | + } |
|
| 170 | + if ( $component == 'nav_menus' ) { |
|
| 171 | + unset( $components[ 'nav_menus' ] ); |
|
| 172 | + } |
|
| 169 | 173 | } |
| 170 | 174 | } |
| 171 | 175 | |
@@ -463,8 +467,7 @@ discard block |
||
| 463 | 467 | return false; |
| 464 | 468 | } elseif ( is_home() ) { |
| 465 | 469 | return true; |
| 466 | - } |
|
| 467 | - elseif ( is_singular( apply_filters( 'alnp_customizer_posts_ready', array( 'post' ) ) ) ) { |
|
| 470 | + } elseif ( is_singular( apply_filters( 'alnp_customizer_posts_ready', array( 'post' ) ) ) ) { |
|
| 468 | 471 | return true; |
| 469 | 472 | } |
| 470 | 473 | |
@@ -495,8 +498,7 @@ discard block |
||
| 495 | 498 | |
| 496 | 499 | return get_permalink( $id ); |
| 497 | 500 | endwhile; |
| 498 | - } |
|
| 499 | - else { |
|
| 501 | + } else { |
|
| 500 | 502 | return false; |
| 501 | 503 | } |
| 502 | 504 | } // END alnp_get_random_page_permalink() |
@@ -124,8 +124,7 @@ |
||
| 124 | 124 | add_action( 'admin_notices', array( $this, 'theme_ready_notice' ) ); |
| 125 | 125 | update_option( 'auto_load_next_post_theme_supported', $template ); |
| 126 | 126 | } |
| 127 | - } |
|
| 128 | - else { |
|
| 127 | + } else { |
|
| 129 | 128 | // If theme not supported then delete option. |
| 130 | 129 | delete_option( 'auto_load_next_post_theme_supported' ); |
| 131 | 130 | } |
@@ -31,9 +31,11 @@ |
||
| 31 | 31 | // Load content after the loop. |
| 32 | 32 | do_action( 'alnp_load_after_loop' ); |
| 33 | 33 | |
| 34 | -else : |
|
| 34 | +else { |
|
| 35 | + : |
|
| 35 | 36 | |
| 36 | 37 | // Load content if there are no more posts. |
| 37 | 38 | do_action( 'alnp_no_more_posts' ); |
| 39 | +} |
|
| 38 | 40 | |
| 39 | 41 | endif; // END if have_posts() |