Skip to content
This repository has been archived by the owner on Jan 8, 2024. It is now read-only.

Commit

Permalink
Homepage widgets + default footer text updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke Fretwell authored and Luke Fretwell committed Feb 15, 2014
1 parent d57c42c commit acf8584
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion footer.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<?php dynamic_sidebar( 'footer-text' ); ?>
</div>
<?php } else { ?>
<?php printf( __( '%1$s the free %2$s theme for government.', 'govpress' ), '<a href="http://govpress.com/" rel="designer">GovFresh WP</a>', '<a href="http://wordpress.org/" rel="generator">WordPress</a>' ); ?>
<?php printf( __( '%1$s, the %2$s theme for government.', 'govpress' ), 'Powered by <a href="http://govpress.govfresh.com/" rel="designer">GovPress</a>', '<a href="http://wordpress.org/" rel="generator">WordPress</a>' ); ?>
<?php } ?>
</div><!-- .col-width -->
</footer><!-- .site-footer -->
Expand Down
10 changes: 9 additions & 1 deletion templates/home-page.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<?php while ( have_posts() ) : the_post(); ?>

<?php get_template_part( 'content', 'page' ); ?>
<?php the_content(); ?>

<?php
// If comments are open or we have at least one comment, load up the comment template
Expand All @@ -24,6 +24,14 @@

<?php endwhile; // end of the loop. ?>

<?php if ( is_active_sidebar( 'home-page-featured' ) ) : ?>
<div id="secondary" class="clear">
<div class="section-wrap">
<?php dynamic_sidebar( 'home-page-featured' ); ?>
</div>
</div>
<?php endif; // End home page top widget module ?>

</main><!-- #main -->
</div><!-- #primary -->

Expand Down

0 comments on commit acf8584

Please sign in to comment.