You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* translators: used between list items, there is a space after the comma */
28
+
$tag_list = get_the_tag_list( '', ', ' );
29
+
30
+
if ( ! carry_categorized_blog() ) {
31
+
// This blog only has 1 category so we just need to worry about tags in the meta text
32
+
if ( '' != $tag_list ) {
33
+
$meta_text = __( 'This entry was tagged %2$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'carry' );
34
+
} else {
35
+
$meta_text = __( 'Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'carry' );
36
+
}
37
+
38
+
} else {
39
+
// But this blog has loads of categories so we should probably display them here
40
+
if ( '' != $tag_list ) {
41
+
$meta_text = __( 'This entry was posted in %1$s and tagged %2$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'carry' );
42
+
} else {
43
+
$meta_text = __( 'This entry was posted in %1$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'carry' );
0 commit comments