Make WordPress Themes

source: lightning/6.10.3/page-lp-builder.php

Last change on this file was 110849, checked in by themedropbox, 7 years ago

New version of Lightning - 6.10.3

File size: 710 bytes
Line 
1<?php
2/*
3 * Template Name: Landing Page for Page Builder
4 */
5get_header(); ?>
6
7<div class="section siteContent">
8
9<?php
10if ( have_posts() ) {
11        while ( have_posts() ) :
12                the_post();
13        ?>
14
15        <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
16                <div class="entry-body">
17                        <?php the_content(); ?>
18                </div>
19                <?php
20                $args = array(
21                        'before'      => '<nav class="page-link"><dl><dt>Pages :</dt><dd>',
22                        'after'       => '</dd></dl></nav>',
23                        'link_before' => '<span class="page-numbers">',
24                        'link_after'  => '</span>',
25                        'echo'        => 1,
26                );
27                wp_link_pages( $args );
28        ?>
29        </div><!-- [ /#post-<?php the_ID(); ?> ] -->
30
31<?php
32endwhile;
33}
34?>
35
36</div><!-- [ /.siteContent ] -->
37<?php get_footer(); ?>
Note: See TracBrowser for help on using the repository browser.