Subversion Repository Public Repository

wpbsav

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
/**
 * Template Name: StaticPage
 */
?>
<?php get_header(); ?>
    
    <?php     
    if ( have_posts() ) {
            while ( have_posts() ) {
                    the_post(); 
                    //
                    // Post Content here
                    //
                    ?>
                		<h1><?php echo the_title(); ?></h1>
                		
                    <?php
                    the_content();
                    ?>
                    	
                    <?php
            } // end while
    } // end if
    ?>

<?php get_footer(); ?>

Commits for wpbsav/SagreraWP/wp-content/themes/bsav/page-staticpage.php

Diff revisions: vs.
Revision Author Commited Message
21 amaraver Thu 23 Apr, 2015 09:42:43 +0000

shortcodes