akawombat
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Blog Name, Title and Tagline sequenceSolved, thanks for the tip, I added a line to make it work just how I wanted it, thanks.
<title>
<?php
if (is_single()) {
wp_title(‘ ‘);
wp_title(”, false);
echo ‘–‘;}
bloginfo(‘name’);if (!is_single()) {
echo ‘–‘;
bloginfo(‘description’);
}
?>
</title>Forum: Fixing WordPress
In reply to: Blog Name, Title and Tagline sequenceThis works, except that the Post Title doesn’t show up on the post pages.
it looks like this right now with that code:
Blog Name — Tagline (then switch back to:)
— Blog Name (for post pages)Forum: Plugins
In reply to: HOW DO YOU tag -> Category Without Linkok, it was the ” get_the_category” tag
<?php
foreach((get_the_category()) as $cat) {
echo $cat->cat_name . ‘ ‘;
} ?>text without link 🙂
Forum: Plugins
In reply to: HOW DO YOU tag -> Category Without Linkcan i get the wordpress gods up in this ma’ to point me to which one -and if getting a category without a link is even possible?
Forum: Plugins
In reply to: HOW DO YOU tag -> Category Without Link<?php the_category(); ?>
shows me a linked category name. i want a category name without a link. just text.