<a href=
"%3C?php%20the_permalink()%20?%3E"><?php the_title(); ?></a>
This code generates this corrupted link:
https://www.richardsilverstein.com/tikun_olam/%3C?php%20the_permalink()%20?%3E
What is the protocol for such matters among theme developers? Is there a way to ask if an active developer might update her themes? Or does she own them & have to give permission (which would be hard since her former website no longer exists).
If any theme developers would be willing to update Almost Spring, if that’s considered kosher, I’d be very happy.
Also, if anyone has special favorite themes that have a similar sense of visual style to hers, I’d love to hear about them.
]]>I want to see my category name instead of my blog name when clicked on categories. So I changed the header.php in almost spring theme as below:
original:
<div id=”header”>
<h1>“><?php bloginfo(‘name’); ?></h1>
</div>
modified:
<div id=”header”>
<h1>“>
<?php
if (single_cat_title() == “”) {
echo “My Blog Name”;
}
else{
single_cat_title();
}
?></h1>
</div>
The Result is below when I clicked the category name:
My Category NameMy Blog Name
I only want the category name how?
Thank you,
Leo
All theme names I use are from:
https://www.alexking.org/software/wordpress/theme_browser.php
– I like the layout and colours of the “Almost Spring” they are cool.
– I like the way how on mouseover the links bring up a little box instead of the traditional alt or title tag, like on “Neuron.” I really like this…The only problem I had with this theme was the side navbar, and how it mashed all the links together and the cateogories aren’t automatically expanded.
– And the only other thing is to have the same kind of header as the default theme, so that I can fit my 760x200px banner there like it is now.
If anyone could do that it would be great, I’m not sure if anyone can, thanks!
]]>