diff options
author | Yury German <blueknight@gentoo.org> | 2022-01-23 19:12:12 -0500 |
---|---|---|
committer | Yury German <blueknight@gentoo.org> | 2022-01-23 19:12:12 -0500 |
commit | 856daf897233b153771276d227f05f8f33a6189e (patch) | |
tree | 0b5f869863fb7810f8bdf30b848606779415f2d0 /themes/twentyfourteen/content-quote.php | |
parent | Plugin - akismet update from 4.1.3 to 4.2.1 (diff) | |
download | blogs-gentoo-856daf897233b153771276d227f05f8f33a6189e.tar.gz blogs-gentoo-856daf897233b153771276d227f05f8f33a6189e.tar.bz2 blogs-gentoo-856daf897233b153771276d227f05f8f33a6189e.zip |
twentyfourteen upg 2.7 to 3.2 and twentysixteen from 2.0 to 2.5
Signed-off-by: Yury German <blueknight@gentoo.org>
Diffstat (limited to 'themes/twentyfourteen/content-quote.php')
-rw-r--r-- | themes/twentyfourteen/content-quote.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/twentyfourteen/content-quote.php b/themes/twentyfourteen/content-quote.php index 29e6ec37..9726792c 100644 --- a/themes/twentyfourteen/content-quote.php +++ b/themes/twentyfourteen/content-quote.php @@ -12,7 +12,7 @@ <?php twentyfourteen_post_thumbnail(); ?> <header class="entry-header"> - <?php if ( in_array( 'category', get_object_taxonomies( get_post_type() ) ) && twentyfourteen_categorized_blog() ) : ?> + <?php if ( in_array( 'category', get_object_taxonomies( get_post_type() ), true ) && twentyfourteen_categorized_blog() ) : ?> <div class="entry-meta"> <span class="cat-links"><?php echo get_the_category_list( _x( ', ', 'Used between list items, there is a space after the comma.', 'twentyfourteen' ) ); ?></span> </div><!-- .entry-meta --> @@ -43,9 +43,9 @@ <div class="entry-content"> <?php - /* translators: %s: Name of current post */ the_content( sprintf( + /* translators: %s: Post title. */ __( 'Continue reading %s <span class="meta-nav">→</span>', 'twentyfourteen' ), the_title( '<span class="screen-reader-text">', '</span>', false ) ) |