recheck and fix indentation

This commit is contained in:
Stef Kariotidis 2016-10-25 19:38:36 +03:00
parent c3b98e296e
commit 03f4350a55
4 changed files with 47 additions and 47 deletions

View File

@ -16,14 +16,14 @@ function understrap_scripts() {
// menu - vertical page association // menu - vertical page association
if ( is_page_template( 'page-templates/vertical-one-page.php' ) || is_home() || is_single() ) { if ( is_page_template( 'page-templates/vertical-one-page.php' ) || is_home() || is_single() ) {
wp_enqueue_script('vertical-one-page', get_template_directory_uri() . '/js/vertical-one-page.js', array('jquery'), '0.4.8', true); wp_enqueue_script( 'vertical-one-page', get_template_directory_uri() . '/js/vertical-one-page.js', array( 'jquery' ), '0.4.8', true );
$page_for_posts = strtolower( get_the_title( get_option( 'page_for_posts' ) ) ); $page_for_posts = strtolower( get_the_title( get_option( 'page_for_posts' ) ) );
$home_url = home_url(); $home_url = home_url();
$is_single = is_single(); $is_single = is_single();
$vars = array( $vars = array(
'pageForPosts' => $page_for_posts, 'pageForPosts' => $page_for_posts,
'homeUrl' => $home_url, 'homeUrl' => $home_url,
'isSingle' => $is_single 'isSingle' => $is_single
); );
wp_localize_script( 'vertical-one-page', 'vars', $vars ); wp_localize_script( 'vertical-one-page', 'vars', $vars );
} }

View File

@ -2,35 +2,35 @@
* Vertical page navigation * Vertical page navigation
* A temporary source file providing smooth scrolling navigation to Pages * A temporary source file providing smooth scrolling navigation to Pages
*/ */
(function ($) { (function( $ ) {
var currentPage = location.href; var currentPage = location.href;
var adjustedHeight = $('body').hasClass('admin-bar') ? 36 : 0; var adjustedHeight = $( 'body' ).hasClass( 'admin-bar' ) ? 36 : 0;
var blogPage = vars.homeUrl + '/' + vars.pageForPosts; var blogPage = vars.homeUrl + '/' + vars.pageForPosts;
if (currentPage.substr(-1) === '/') { if ( currentPage.substr( -1 ) === '/' ) {
currentPage = currentPage.substr(0, currentPage.length -1); currentPage = currentPage.substr( 0, currentPage.length - 1 );
} }
$(document).ready(function () { $( document ).ready(function() {
// smoothly scroll to an ID // smoothly scroll to an ID
$('a[href*="#"]:not([href="#"])').click(function (e) { $( 'a[href*="#"]:not([href="#"])' ).click( function ( e ) {
var target; var target;
// if not on root URL // if not on root URL
if (currentPage === blogPage || vars.isSingle) { if ( currentPage === blogPage || vars.isSingle ) {
target = $(this); target = $(this);
target = vars.homeUrl + '/' + target[0].hash; target = vars.homeUrl + '/' + target[0].hash;
location = target; location = target;
} }
target = $(this.hash); target = $( this.hash );
target = target.length ? target : $('[name=' + this.hash.slice(1) + ']'); target = target.length ? target : $( '[name=' + this.hash.slice(1) + ']' );
if (target.length) { if ( target.length ) {
$('html, body').delay(100).animate({ $( 'html, body' ).delay( 100 ).animate({
scrollTop: target.offset().top - adjustedHeight scrollTop: target.offset().top - adjustedHeight
}, 800); }, 800);
// put the hash in location bar // put the hash in location bar
window.history.pushState(null, null, e.delegateTarget.href); window.history.pushState( null, null, e.delegateTarget.href );
return false; return false;
} }
}); });
}); });
})(jQuery); })( jQuery );

View File

@ -8,7 +8,7 @@
<?php global $post ?> <?php global $post ?>
<article id="<?php echo strtolower($post->post_title); ?>" <?php post_class(); ?>> <article id="<?php echo strtolower( $post->post_title ); ?>" <?php post_class(); ?>>
<header class="entry-header"> <header class="entry-header">
@ -16,17 +16,17 @@
</header><!-- .entry-header --> </header><!-- .entry-header -->
<?php echo get_the_post_thumbnail( $post->ID, 'large' ); ?> <?php echo get_the_post_thumbnail( $post->ID, 'large' ); ?>
<div class="entry-content"> <div class="entry-content">
<?php the_content(); ?> <?php the_content(); ?>
<?php <?php
wp_link_pages( array( wp_link_pages( array(
'before' => '<div class="page-links">' . __( 'Pages:', 'understrap' ), 'before' => '<div class="page-links">' . __( 'Pages:', 'understrap' ),
'after' => '</div>', 'after' => '</div>',
) ); ) );
?> ?>
</div><!-- .entry-content --> </div><!-- .entry-content -->

View File

@ -14,12 +14,12 @@ get_header(); ?>
* Exclude the posts page from being shown in this layout. * Exclude the posts page from being shown in this layout.
* Order pages by their order number. * Order pages by their order number.
*/ */
$exclude = get_option('page_for_posts'); $exclude = get_option( 'page_for_posts' );
$args = array( $args = array(
'post_type' => 'page', 'post_type' => 'page',
'post__not_in' => array($exclude), 'post__not_in' => array( $exclude ),
'orderby' => 'menu_order', 'orderby' => 'menu_order',
'order' => 'ASC' 'order' => 'ASC'
); );
$qry = new WP_Query( $args ); $qry = new WP_Query( $args );