Skip to content
This repository has been archived by the owner on Sep 16, 2019. It is now read-only.

Commit

Permalink
Merge pull request #315 from olefredrik/bugfix/updateTextDomain
Browse files Browse the repository at this point in the history
Bugfix/update text domain
  • Loading branch information
olefredrik committed Apr 28, 2015
2 parents db0cfd8 + 6e0374d commit 7b500b2
Show file tree
Hide file tree
Showing 23 changed files with 126 additions and 124 deletions.
12 changes: 6 additions & 6 deletions 404.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@

<article <?php post_class() ?> id="post-<?php the_ID(); ?>">
<header>
<h1 class="entry-title"><?php _e( 'File Not Found', 'FoundationPress' ); ?></h1>
<h1 class="entry-title"><?php _e( 'File Not Found', 'foundationpress' ); ?></h1>
</header>
<div class="entry-content">
<div class="error">
<p class="bottom"><?php _e( 'The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.', 'FoundationPress' ); ?></p>
<p class="bottom"><?php _e( 'The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.', 'foundationpress' ); ?></p>
</div>
<p><?php _e( 'Please try the following:', 'FoundationPress' ); ?></p>
<p><?php _e( 'Please try the following:', 'foundationpress' ); ?></p>
<ul>
<li><?php _e( 'Check your spelling', 'FoundationPress' ); ?></li>
<li><?php printf( __( 'Return to the <a href="%s">home page</a>', 'FoundationPress' ), home_url() ); ?></li>
<li><?php _e( 'Click the <a href="javascript:history.back()">Back</a> button', 'FoundationPress' ); ?></li>
<li><?php _e( 'Check your spelling', 'foundationpress' ); ?></li>
<li><?php printf( __( 'Return to the <a href="%s">home page</a>', 'foundationpress' ), home_url() ); ?></li>
<li><?php _e( 'Click the <a href="javascript:history.back()">Back</a> button', 'foundationpress' ); ?></li>
</ul>
</div>
</article>
Expand Down
4 changes: 2 additions & 2 deletions archive.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
<?php /* Display navigation to next/previous pages when applicable */ ?>
<?php if ( function_exists( 'foundationpress_pagination' ) ) { foundationpress_pagination(); } else if ( is_paged() ) { ?>
<nav id="post-nav">
<div class="post-previous"><?php next_posts_link( __( '&larr; Older posts', 'FoundationPress' ) ); ?></div>
<div class="post-next"><?php previous_posts_link( __( 'Newer posts &rarr;', 'FoundationPress' ) ); ?></div>
<div class="post-previous"><?php next_posts_link( __( '&larr; Older posts', 'foundationpress' ) ); ?></div>
<div class="post-next"><?php previous_posts_link( __( 'Newer posts &rarr;', 'foundationpress' ) ); ?></div>
</nav>
<?php } ?>

Expand Down
26 changes: 13 additions & 13 deletions comments.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
'callback' => null,
'end-callback' => null,
'type' => 'all',
'reply_text' => __( 'Reply', 'FoundationPress' ),
'reply_text' => __( 'Reply', 'foundationpress' ),
'page' => '',
'per_page' => '',
'avatar_size' => 48,
Expand All @@ -22,7 +22,7 @@
'format' => 'html5',
'short_ping' => false,
'echo' => true,
'moderation' => __( 'Your comment is awaiting moderation.', 'FoundationPress' ),
'moderation' => __( 'Your comment is awaiting moderation.', 'foundationpress' ),
)
);

Expand All @@ -38,12 +38,12 @@
// Do not delete these lines

// Prevent access to this file directly
defined( 'ABSPATH' ) or die( __( 'Please do not load this page directly. Thanks!', 'FoundationPress' ) );
defined( 'ABSPATH' ) or die( __( 'Please do not load this page directly. Thanks!', 'foundationpress' ) );

if ( post_password_required() ) { ?>
<section id="comments">
<div class="notice">
<p class="bottom"><?php _e( 'This post is password protected. Enter the password to view comments.', 'FoundationPress' ); ?></p>
<p class="bottom"><?php _e( 'This post is password protected. Enter the password to view comments.', 'foundationpress' ); ?></p>
</div>
</section>
<?php
Expand All @@ -56,34 +56,34 @@
if ( (is_page() || is_single()) && ( ! is_home() && ! is_front_page()) ) :
?>
<section id="respond">
<h3><?php comment_form_title( __( 'Leave a Reply', 'FoundationPress' ), __( 'Leave a Reply to %s', 'FoundationPress' ) ); ?></h3>
<h3><?php comment_form_title( __( 'Leave a Reply', 'foundationpress' ), __( 'Leave a Reply to %s', 'foundationpress' ) ); ?></h3>
<p class="cancel-comment-reply"><?php cancel_comment_reply_link(); ?></p>
<?php if ( get_option( 'comment_registration' ) && ! is_user_logged_in() ) : ?>
<p><?php printf( __( 'You must be <a href="%s">logged in</a> to post a comment.', 'FoundationPress' ), wp_login_url( get_permalink() ) ); ?></p>
<p><?php printf( __( 'You must be <a href="%s">logged in</a> to post a comment.', 'foundationpress' ), wp_login_url( get_permalink() ) ); ?></p>
<?php else : ?>
<form action="<?php echo get_option( 'siteurl' ); ?>/wp-comments-post.php" method="post" id="commentform">
<?php if ( is_user_logged_in() ) : ?>
<p><?php printf( __( 'Logged in as <a href="%s/wp-admin/profile.php">%s</a>.', 'FoundationPress' ), get_option( 'siteurl' ), $user_identity ); ?> <a href="<?php echo wp_logout_url( get_permalink() ); ?>" title="<?php __( 'Log out of this account', 'FoundationPress' ); ?>"><?php _e( 'Log out &raquo;', 'FoundationPress' ); ?></a></p>
<p><?php printf( __( 'Logged in as <a href="%s/wp-admin/profile.php">%s</a>.', 'foundationpress' ), get_option( 'siteurl' ), $user_identity ); ?> <a href="<?php echo wp_logout_url( get_permalink() ); ?>" title="<?php __( 'Log out of this account', 'foundationpress' ); ?>"><?php _e( 'Log out &raquo;', 'foundationpress' ); ?></a></p>
<?php else : ?>
<p>
<label for="author"><?php _e( 'Name', 'FoundationPress' ); if ( $req ) { _e( ' (required)', 'FoundationPress' ); } ?></label>
<label for="author"><?php _e( 'Name', 'foundationpress' ); if ( $req ) { _e( ' (required)', 'foundationpress' ); } ?></label>
<input type="text" class="five" name="author" id="author" value="<?php echo esc_attr( $comment_author ); ?>" size="22" tabindex="1" <?php if ( $req ) { echo "aria-required='true'"; } ?>>
</p>
<p>
<label for="email"><?php _e( 'Email (will not be published)', 'FoundationPress' ); if ( $req ) { _e( ' (required)', 'FoundationPress' ); } ?></label>
<label for="email"><?php _e( 'Email (will not be published)', 'foundationpress' ); if ( $req ) { _e( ' (required)', 'foundationpress' ); } ?></label>
<input type="text" class="five" name="email" id="email" value="<?php echo esc_attr( $comment_author_email ); ?>" size="22" tabindex="2" <?php if ( $req ) { echo "aria-required='true'"; } ?>>
</p>
<p>
<label for="url"><?php _e( 'Website', 'FoundationPress' ); ?></label>
<label for="url"><?php _e( 'Website', 'foundationpress' ); ?></label>
<input type="text" class="five" name="url" id="url" value="<?php echo esc_attr( $comment_author_url ); ?>" size="22" tabindex="3">
</p>
<?php endif; ?>
<p>
<label for="comment"><?php _e( 'Comment', 'FoundationPress' ); ?></label>
<label for="comment"><?php _e( 'Comment', 'foundationpress' ); ?></label>
<textarea name="comment" id="comment" tabindex="4"></textarea>
</p>
<p id="allowed_tags" class="small"><strong>XHTML:</strong> <?php _e( 'You can use these tags:','FoundationPress' ); ?> <code><?php echo allowed_tags(); ?></code></p>
<p><input name="submit" class="button" type="submit" id="submit" tabindex="5" value="<?php esc_attr_e( 'Submit Comment', 'FoundationPress' ); ?>"></p>
<p id="allowed_tags" class="small"><strong>XHTML:</strong> <?php _e( 'You can use these tags:','foundationpress' ); ?> <code><?php echo allowed_tags(); ?></code></p>
<p><input name="submit" class="button" type="submit" id="submit" tabindex="5" value="<?php esc_attr_e( 'Submit Comment', 'foundationpress' ); ?>"></p>
<?php comment_id_fields(); ?>
<?php do_action( 'comment_form', $post->ID ); ?>
</form>
Expand Down
8 changes: 4 additions & 4 deletions content-none.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,22 @@
?>

<header class="page-header">
<h1 class="page-title"><?php _e( 'Nothing Found', 'FoundationPress' ); ?></h1>
<h1 class="page-title"><?php _e( 'Nothing Found', 'foundationpress' ); ?></h1>
</header>

<div class="page-content">
<?php if ( is_home() && current_user_can( 'publish_posts' ) ) : ?>

<p><?php printf( __( 'Ready to publish your first post? <a href="%1$s">Get started here</a>.', 'FoundationPress' ), admin_url( 'post-new.php' ) ); ?></p>
<p><?php printf( __( 'Ready to publish your first post? <a href="%1$s">Get started here</a>.', 'foundationpress' ), admin_url( 'post-new.php' ) ); ?></p>

<?php elseif ( is_search() ) : ?>

<p><?php _e( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'FoundationPress' ); ?></p>
<p><?php _e( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'foundationpress' ); ?></p>
<?php get_search_form(); ?>

<?php else : ?>

<p><?php _e( 'It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', 'FoundationPress' ); ?></p>
<p><?php _e( 'It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', 'foundationpress' ); ?></p>
<?php get_search_form(); ?>

<?php endif; ?>
Expand Down
2 changes: 1 addition & 1 deletion content.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<?php foundationpress_entry_meta(); ?>
</header>
<div class="entry-content">
<?php the_content( __( 'Continue reading...', 'FoundationPress' ) ); ?>
<?php the_content( __( 'Continue reading...', 'foundationpress' ) ); ?>
</div>
<footer>
<?php $tag = get_the_tags(); if ( ! $tag ) { } else { ?><p><?php the_tags(); ?></p><?php } ?>
Expand Down
4 changes: 2 additions & 2 deletions css/foundation.css

Large diffs are not rendered by default.

124 changes: 62 additions & 62 deletions css/foundation.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion header.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
echo 'Search for &quot;'.esc_html( $s ).'&quot; | '; bloginfo( 'name' );
} elseif ( is_home() || is_front_page() ) {
bloginfo( 'name' ); echo ' | '; bloginfo( 'description' );
} elseif ( is_404() ) {
} elseif ( is_404() ) {
echo 'Error 404 Not Found | '; bloginfo( 'name' );
} elseif ( is_single() ) {
wp_title( '' );
Expand Down
2 changes: 1 addition & 1 deletion hero.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<?php the_content(); ?>
</div>
<footer>
<?php wp_link_pages( array('before' => '<nav id="page-nav"><p>' . __( 'Pages:', 'FoundationPress' ), 'after' => '</p></nav>' ) ); ?>
<?php wp_link_pages( array('before' => '<nav id="page-nav"><p>' . __( 'Pages:', 'foundationpress' ), 'after' => '</p></nav>' ) ); ?>
<p><?php the_tags(); ?></p>
</footer>
<?php do_action( 'foundationpress_page_before_comments' ); ?>
Expand Down
4 changes: 2 additions & 2 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@

<?php if ( function_exists( 'foundationpress_pagination' ) ) { foundationpress_pagination(); } else if ( is_paged() ) { ?>
<nav id="post-nav">
<div class="post-previous"><?php next_posts_link( __( '&larr; Older posts', 'FoundationPress' ) ); ?></div>
<div class="post-next"><?php previous_posts_link( __( 'Newer posts &rarr;', 'FoundationPress' ) ); ?></div>
<div class="post-previous"><?php next_posts_link( __( '&larr; Older posts', 'foundationpress' ) ); ?></div>
<div class="post-next"><?php previous_posts_link( __( 'Newer posts &rarr;', 'foundationpress' ) ); ?></div>
</nav>
<?php } ?>

Expand Down
10 changes: 6 additions & 4 deletions js/foundation.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion kitchen-sink.php
Original file line number Diff line number Diff line change
Expand Up @@ -727,7 +727,7 @@
</p>

<footer>
<?php wp_link_pages( array('before' => '<nav id="page-nav"><p>' . __( 'Pages:', 'FoundationPress' ), 'after' => '</p></nav>' ) ); ?>
<?php wp_link_pages( array('before' => '<nav id="page-nav"><p>' . __( 'Pages:', 'foundationpress' ), 'after' => '</p></nav>' ) ); ?>
<p><?php the_tags(); ?></p>
</footer>
<?php comments_template(); ?>
Expand Down
4 changes: 2 additions & 2 deletions library/entry-meta.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php
if ( ! function_exists( 'foundationpress_entry_meta' ) ) :
function foundationpress_entry_meta() {
echo '<time class="updated" datetime="'. get_the_time( 'c' ) .'">'. sprintf( __( 'Posted on %s at %s.', 'FoundationPress' ), get_the_date(), get_the_time() ) .'</time>';
echo '<p class="byline author">'. __( 'Written by', 'FoundationPress' ) .' <a href="'. get_author_posts_url( get_the_author_meta( 'ID' ) ) .'" rel="author" class="fn">'. get_the_author() .'</a></p>';
echo '<time class="updated" datetime="'. get_the_time( 'c' ) .'">'. sprintf( __( 'Posted on %s at %s.', 'foundationpress' ), get_the_date(), get_the_time() ) .'</time>';
echo '<p class="byline author">'. __( 'Written by', 'foundationpress' ) .' <a href="'. get_author_posts_url( get_the_author_meta( 'ID' ) ) .'" rel="author" class="fn">'. get_the_author() .'</a></p>';
}
endif;
?>
16 changes: 8 additions & 8 deletions library/foundation.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ function foundationpress_pagination() {
'total' => $wp_query->max_num_pages,
'mid_size' => 5,
'prev_next' => true,
'prev_text' => __( '&laquo;', 'FoundationPress' ),
'next_text' => __( '&raquo;', 'FoundationPress' ),
'prev_text' => __( '&laquo;', 'foundationpress' ),
'next_text' => __( '&raquo;', 'foundationpress' ),
'type' => 'list',
) );

Expand Down Expand Up @@ -43,11 +43,11 @@ function foundationpress_pagination() {
function foundationpress_menu_fallback() {
echo '<div class="alert-box secondary">';
// Translators 1: Link to Menus, 2: Link to Customize
printf( __( 'Please assign a menu to the primary menu location under %1$s or %2$s the design.', 'FoundationPress' ),
sprintf( __( '<a href="%s">Menus</a>', 'FoundationPress' ),
printf( __( 'Please assign a menu to the primary menu location under %1$s or %2$s the design.', 'foundationpress' ),
sprintf( __( '<a href="%s">Menus</a>', 'foundationpress' ),
get_admin_url( get_current_blog_id(), 'nav-menus.php' )
),
sprintf( __( '<a href="%s">Customize</a>', 'FoundationPress' ),
sprintf( __( '<a href="%s">Customize</a>', 'foundationpress' ),
get_admin_url( get_current_blog_id(), 'customize.php' )
)
);
Expand Down Expand Up @@ -95,7 +95,7 @@ class Foundationpress_Comments extends Walker_Comment{
* start_lvl() only goes as high as 1 deep nested comments */
function __construct() { ?>

<h3><?php comments_number( __( 'No Responses to', 'FoundationPress' ), __( 'One Response to', 'FoundationPress' ), __( '% Responses to', 'FoundationPress' ) ); ?> &#8220;<?php the_title(); ?>&#8221;</h3>
<h3><?php comments_number( __( 'No Responses to', 'foundationpress' ), __( 'One Response to', 'foundationpress' ), __( '% Responses to', 'foundationpress' ) ); ?> &#8220;<?php the_title(); ?>&#8221;</h3>
<ol class="comment-list">

<?php }
Expand Down Expand Up @@ -135,8 +135,8 @@ function start_el( &$output, $comment, $depth = 0, $args = array(), $id = 0 ) {

<div class="author-meta vcard author">

<?php printf( __( '<cite class="fn">%s</cite>', 'FoundationPress' ), get_comment_author_link() ) ?>
<time datetime="<?php echo comment_date( 'c' ) ?>"><a href="<?php echo esc_url( get_comment_link( $comment->comment_ID ) ) ?>"><?php printf( __( '%1$s', 'FoundationPress' ), get_comment_date(), get_comment_time() ) ?></a></time>
<?php printf( __( '<cite class="fn">%s</cite>', 'foundationpress' ), get_comment_author_link() ) ?>
<time datetime="<?php echo comment_date( 'c' ) ?>"><a href="<?php echo esc_url( get_comment_link( $comment->comment_ID ) ) ?>"><?php printf( __( '%1$s', 'foundationpress' ), get_comment_date(), get_comment_time() ) ?></a></time>

</div><!-- /.comment-author -->

Expand Down
2 changes: 1 addition & 1 deletion library/offcanvas-walker.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ function start_el( &$output, $object, $depth = 0, $args = array(), $current_obje
}

function start_lvl( &$output, $depth = 0, $args = array() ) {
$output .= "\n<ul class=\"left-submenu\">\n<li class=\"back\"><a href=\"#\">Back</a></li>\n";
$output .= "\n<ul class=\"left-submenu\">\n<li class=\"back\"><a href=\"#\">". __( 'Back', 'foundationpress' ) ."</a></li>\n";
}

}
Expand Down
8 changes: 4 additions & 4 deletions library/widget-areas.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
function foundationpress_sidebar_widgets() {
register_sidebar(array(
'id' => 'sidebar-widgets',
'name' => __( 'Sidebar widgets', 'FoundationPress' ),
'description' => __( 'Drag widgets to this sidebar container.', 'FoundationPress' ),
'name' => __( 'Sidebar widgets', 'foundationpress' ),
'description' => __( 'Drag widgets to this sidebar container.', 'foundationpress' ),
'before_widget' => '<article id="%1$s" class="row widget %2$s"><div class="small-12 columns">',
'after_widget' => '</div></article>',
'before_title' => '<h6>',
Expand All @@ -13,8 +13,8 @@ function foundationpress_sidebar_widgets() {

register_sidebar(array(
'id' => 'footer-widgets',
'name' => __( 'Footer widgets', 'FoundationPress' ),
'description' => __( 'Drag widgets to this footer container', 'FoundationPress' ),
'name' => __( 'Footer widgets', 'foundationpress' ),
'description' => __( 'Drag widgets to this footer container', 'foundationpress' ),
'before_widget' => '<article id="%1$s" class="large-4 columns widget %2$s">',
'after_widget' => '</article>',
'before_title' => '<h6>',
Expand Down
2 changes: 1 addition & 1 deletion page-full.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<?php the_content(); ?>
</div>
<footer>
<?php wp_link_pages( array('before' => '<nav id="page-nav"><p>' . __( 'Pages:', 'FoundationPress' ), 'after' => '</p></nav>' ) ); ?>
<?php wp_link_pages( array('before' => '<nav id="page-nav"><p>' . __( 'Pages:', 'foundationpress' ), 'after' => '</p></nav>' ) ); ?>
<p><?php the_tags(); ?></p>
</footer>
<?php comments_template(); ?>
Expand Down
2 changes: 1 addition & 1 deletion page-sidebar-left.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<?php the_content(); ?>
</div>
<footer>
<?php wp_link_pages( array('before' => '<nav id="page-nav"><p>' . __( 'Pages:', 'FoundationPress' ), 'after' => '</p></nav>' ) ); ?>
<?php wp_link_pages( array('before' => '<nav id="page-nav"><p>' . __( 'Pages:', 'foundationpress' ), 'after' => '</p></nav>' ) ); ?>
<p><?php the_tags(); ?></p>
</footer>
<?php do_action( 'foundationpress_page_before_comments' ); ?>
Expand Down
2 changes: 1 addition & 1 deletion page.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<?php the_content(); ?>
</div>
<footer>
<?php wp_link_pages( array('before' => '<nav id="page-nav"><p>' . __( 'Pages:', 'FoundationPress' ), 'after' => '</p></nav>' ) ); ?>
<?php wp_link_pages( array('before' => '<nav id="page-nav"><p>' . __( 'Pages:', 'foundationpress' ), 'after' => '</p></nav>' ) ); ?>
<p><?php the_tags(); ?></p>
</footer>
<?php do_action( 'foundationpress_page_before_comments' ); ?>
Expand Down
6 changes: 3 additions & 3 deletions search.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<?php do_action( 'foundationpress_before_content' ); ?>

<h2><?php _e( 'Search Results for', 'FoundationPress' ); ?> "<?php echo get_search_query(); ?>"</h2>
<h2><?php _e( 'Search Results for', 'foundationpress' ); ?> "<?php echo get_search_query(); ?>"</h2>

<?php if ( have_posts() ) : ?>

Expand All @@ -22,8 +22,8 @@
<?php if ( function_exists( 'foundationpress_pagination' ) ) { foundationpress_pagination(); } else if ( is_paged() ) { ?>

<nav id="post-nav">
<div class="post-previous"><?php next_posts_link( __( '&larr; Older posts', 'FoundationPress' ) ); ?></div>
<div class="post-next"><?php previous_posts_link( __( 'Newer posts &rarr;', 'FoundationPress' ) ); ?></div>
<div class="post-previous"><?php next_posts_link( __( '&larr; Older posts', 'foundationpress' ) ); ?></div>
<div class="post-next"><?php previous_posts_link( __( 'Newer posts &rarr;', 'foundationpress' ) ); ?></div>
</nav>
<?php } ?>

Expand Down
4 changes: 2 additions & 2 deletions searchform.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
<div class="row collapse">
<?php do_action( 'foundationpress_searchform_top' ); ?>
<div class="small-8 columns">
<input type="text" value="" name="s" id="s" placeholder="<?php esc_attr_e( 'Search', 'FoundationPress' ); ?>">
<input type="text" value="" name="s" id="s" placeholder="<?php esc_attr_e( 'Search', 'foundationpress' ); ?>">
</div>
<?php do_action( 'foundationpress_searchform_before_search_button' ); ?>
<div class="small-4 columns">
<input type="submit" id="searchsubmit" value="<?php esc_attr_e( 'Search', 'FoundationPress' ); ?>" class="prefix button">
<input type="submit" id="searchsubmit" value="<?php esc_attr_e( 'Search', 'foundationpress' ); ?>" class="prefix button">
</div>
<?php do_action( 'foundationpress_searchform_after_search_button' ); ?>
</div>
Expand Down
2 changes: 1 addition & 1 deletion single.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<?php the_content(); ?>
</div>
<footer>
<?php wp_link_pages( array('before' => '<nav id="page-nav"><p>' . __( 'Pages:', 'FoundationPress' ), 'after' => '</p></nav>' ) ); ?>
<?php wp_link_pages( array('before' => '<nav id="page-nav"><p>' . __( 'Pages:', 'foundationpress' ), 'after' => '</p></nav>' ) ); ?>
<p><?php the_tags(); ?></p>
</footer>
<?php do_action( 'foundationpress_post_before_comments' ); ?>
Expand Down
Loading

0 comments on commit 7b500b2

Please sign in to comment.