ripsey
Forum Replies Created
-
Forum: Plugins
In reply to: Using sidebar widgets in multiple sidebarsWorks great! Thanks a lot.
Forum: Installing WordPress
In reply to: Private pages not listed on blogI’m having the exact same problem, any leads on this?
Forum: Fixing WordPress
In reply to: WP 2.1 and Link Categories and optionsHmmmm… My two lists weren’t intermingling, and I’m still using the old code:
—–
-
Categories
<?php wp_list_cats(‘sort_column=name&optioncount=1&hierarchical=0’); ?>—–
As for the Blogroll, I’ve split it up into three seperate calls:
—–
<?php wp_list_bookmarks(‘categorize=1&category=11&orderby=id’); ?><?php wp_list_bookmarks(‘categorize=1&category=12&orderby=name’); ?>
<?php wp_list_bookmarks(‘categorize=1&category=13&orderby=rand&limit=5’); ?>
—–This allows me to have separate options to display ’em… The 1st one’s ordered by ID, the 2nd by name, and the last is random and limited to showing only 5.
also…
I used to have to style the Link Category headers (the h2 tag) by ID, and for each category…
—–
#linkcat-1 h2, #linkcat-2 h2, #linkcat-3 h2, #linkcat-4 h2, #linkcat-5 h2 {
font-size: 11px;
font-weight: normal;
margin-bottom: 0px;
margin-top: 7px;
}
—–But now can comfortably use the class tag, and only have to make a single style:
—–
.linkcat h2 {
font-size: 11px;
font-weight: normal;
margin-bottom: 0px;
margin-top: 7px;
}
—–Forum: Fixing WordPress
In reply to: WP 2.1 and Link Categories and optionsThanks for the info.
I just got into PHP while building my WP site, so I’m familiar enough… I hope.