patrickc
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: expand category list display in wp-admin/post.phpFor some reason, that didn’t work for me. Just so I’m not completely spacey… To fix the problem, wp-admin.css should have this modified section, right?
#categorydiv div {
height: 35em;
overflow: auto;
}Is there anything else I need to change? I already made my text box 20 lines tall.
Forum: Fixing WordPress
In reply to: See a category page?I tried to put a “wp_list_cats” line on one of my pages, and for some reason, the page didn’t execute it; the code is visible instead of the category list. This is what I put in the body of the page:
<h2>< ?php _e('Category-based'); ?></h2>
<ul>< ?php wp_list_cats('sort_column=name&optioncount=0&exclude=1&hide_empty=0'); ?></ul><h2>< ?php _e('Date-based'); ?></h2>
<ul>< ?php wp_get_archives('type=monthly'); ?></ul>Thoughts? When I try a different “list cats” tag (one that I’m not using in my sidebar as well), the same thing happens.
You can see what it looks like at:
http://supercres.net/?page_id=888Forum: Fixing WordPress
In reply to: Change category ID?Ack, I found it. I’d never used it before; it was a bit scary 😛
Thanks
Forum: Fixing WordPress
In reply to: Change category ID?Which php file would it be that i’m modifying? I was looking for it earlier, with no luck.
Forum: Themes and Templates
In reply to: Getting rid of Page metatext, commentsA related question:
When I go from my index page to the individual entry page, the “comments_popup_link” disappears. On the index, I have it next to a “Permalink” and a text divider (“|”). Is there a way to make the permalink and text divider go away too? They’re both useless on the individual entry page, anyway.
Forum: Themes and Templates
In reply to: Getting rid of Page metatext, commentsPerfect. Thanks. I was a bit wary about creating a new template, but it’s all good.