Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions 01-wordpress/wp-content/themes/child-theme/footer.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<?php
/**
* The default footer template
*
* @package WordPress
* @subpackage Hoverboard
* @since 0.1.0
*/
?>

<footer id="site-credits" class="container">
<div class="row">
<div class="col-sm-6 text-muted credit">
<p>
All content copyright &copy;
<a href="<?php echo home_url('/'); ?>"
rel="home"><?php bloginfo('name', 'display'); ?></a>
</p>
</div>
<div class="col-sm-6 text-muted text-right credit">
<p>
Modified by
<a href="https://github.com/ashawhat">Ashley Lee</a>
</p>
</div>
</div>
</footer>

<?php wp_footer(); ?>
</body>
</html>
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ git submodule update

### Create a Feature Branch

Pull a new branch in Git for your changes.
Create a new branch in Git for your changes.


### Modify the WordPress Child Theme
Expand Down