Merge pull request #149 from stef-k/code-formatting-page-templates - Thx again @stef-k

code format page templates
This commit is contained in:
Holger 2016-11-22 08:12:17 +01:00 committed by GitHub
commit d1e2b2ddb8
6 changed files with 108 additions and 100 deletions

View File

@ -6,6 +6,7 @@
*
* @package understrap
*/
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
@ -15,7 +16,8 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="<?php bloginfo('name'); ?> - <?php bloginfo('description'); ?>">
<meta name="apple-mobile-web-app-title"
content="<?php bloginfo( 'name' ); ?> - <?php bloginfo( 'description' ); ?>">
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<?php wp_head(); ?>

View File

@ -22,7 +22,9 @@ $container = get_theme_mod('understrap_container_type');
<?php get_sidebar( 'left' ); ?>
<div class="<?php if ( is_active_sidebar( 'left-sidebar' ) || is_active_sidebar( 'right-sidebar' ) ) : ?>col-md-4<?php else : ?>col-md-12<?php endif; ?> content-area" id="primary">
<div
class="<?php if ( is_active_sidebar( 'left-sidebar' ) || is_active_sidebar( 'right-sidebar' ) ) : ?>col-md-4<?php else : ?>col-md-12<?php endif; ?> content-area"
id="primary">
<main class="site-main" id="main" role="main">
@ -31,7 +33,7 @@ $container = get_theme_mod('understrap_container_type');
<?php get_template_part( 'loop-templates/content', 'page' ); ?>
<?php
// If comments are open or we have at least one comment, load up the comment template
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;

View File

@ -2,18 +2,16 @@
/**
* Template Name: Empty Page Template
*
* Template for displaying a page just with the header and footer area and a "naked" content area in between. Good for landingpages and other types of pages where you want to add a lot of custom markup
* Template for displaying a page just with the header and footer area and a "naked" content area in between.
* Good for landingpages and other types of pages where you want to add a lot of custom markup.
*
* @package understrap
*/
get_header();
?>
<?php while ( have_posts() ) : the_post(); ?>
while ( have_posts() ) : the_post();
get_template_part( 'loop-templates/content', 'empty' );
endwhile;
<?php get_template_part( 'loop-templates/content', 'empty' ); ?>
<?php endwhile; // end of the loop. ?>
<?php get_footer(); ?>
get_footer();

View File

@ -2,7 +2,7 @@
/**
* Template Name: Full Width Page
*
* Template for displaying a page without sidebar even if a sidebar widget is published
* Template for displaying a page without sidebar even if a sidebar widget is published.
*
* @package understrap
*/
@ -26,7 +26,7 @@
<?php get_template_part( 'loop-templates/content', 'page' ); ?>
<?php
// If comments are open or we have at least one comment, load up the comment template
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
comments_template();

View File

@ -19,7 +19,9 @@ $container = get_theme_mod('understrap_container_type');
<?php get_sidebar( 'left' ); ?>
<div class="<?php if ( is_active_sidebar( 'left-sidebar' ) ) : ?>col-md-8<?php else : ?>col-md-12<?php endif; ?> content-area" id="primary">
<div
class="<?php if ( is_active_sidebar( 'left-sidebar' ) ) : ?>col-md-8<?php else : ?>col-md-12<?php endif; ?> content-area"
id="primary">
<main class="site-main" id="main" role="main">
@ -28,7 +30,7 @@ $container = get_theme_mod('understrap_container_type');
<?php get_template_part( 'loop-templates/content', 'page' ); ?>
<?php
// If comments are open or we have at least one comment, load up the comment template
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;

View File

@ -12,14 +12,15 @@ $container = get_theme_mod( 'understrap_container_type' );
?>
<?php
/*
* Exclude the posts page from being shown in this layout.
* Order pages by their order number.
*/
$exclude = array();
// exclude blog page
// exclude blog page.
array_push( $exclude, get_option( 'page_for_posts' ) );
// exclude WooCommerce pages
// exclude WooCommerce pages.
array_push( $exclude, get_option( 'woocommerce_cart_page_id' ) );
array_push( $exclude, get_option( 'woocommerce_shop_page_id' ) );
array_push( $exclude, get_option( 'woocommerce_checkout_page_id' ) );
@ -33,7 +34,7 @@ $args = array(
'post_type' => 'page',
'post__not_in' => $exclude,
'orderby' => 'menu_order',
'order' => 'ASC'
'order' => 'ASC',
);
$qry = new WP_Query( $args );
@ -52,8 +53,11 @@ $qry = new WP_Query( $args );
<?php get_template_part( 'loop-templates/content', 'verticalpage' ); ?>
</div>
<?php wp_reset_postdata(); //reset custom query?>
<?php endwhile; endif; ?>
<?php wp_reset_postdata(); // reset custom query. ?>
<?php
endwhile;
endif;
?>
</main><!-- #main -->