starbug72
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Google AdsenseThis plugin adds a button on the create post screen so you can include Adsense on the posts that you want it to appear on.
https://www.philhord.com/phord/adsense-inline-with-wordpress-blog-posts/
Forum: Fixing WordPress
In reply to: addition of Title / Description / Meta?I figured it out… here’s the code for the title tag:
<title><?php bloginfo(‘name’); ?> <?php wp_title(); ?></title>
Forum: Fixing WordPress
In reply to: addition of Title / Description / Meta?That description tag works great. Thanks for posting the code!
How do you make the title of the post, auto insert into the title tag? Maybe this is standard in the index template, but maybe I screwed that up with all the tinkering. ??
Forum: Themes and Templates
In reply to: Categories and SubcategoriesThanks for suggesting the various options. I considered both the alpha and changing the IDS. As you said, both have problems. There’s only 8 main cats, but some have many subcats (one has 50 sub cats) and with that many, the subcats need to be alpha.
Rearranging the IDs in the table would work — unless I want to add another subcat later and have it be alpha. Then I’d have to go through that renaming process again, and that would be a headache IMO.
So to make a long story short, I just renamed a couple of the main cats, used the sort by name (alpha) and the order is more to my liking now. This seems to be the simplest and most flexible solution.
Thanks for the help!
Forum: Themes and Templates
In reply to: Categories and SubcategoriesYou are awesome, thanks!!!
Last questions…promise! What if I want categories in a certain order that’s not alpha?
Forum: Themes and Templates
In reply to: Categories and SubcategoriesThanks for the tip! I updated the code to be <?php wp_list_cats(‘children=1’); ?> and now it’s listing subcategories under the main cats.
Only problem now is that the cats are not in alphabetical order. Any ideas?
Thanks in advance.