dingfelder
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Fatal errormy host does not like making changes like this which could increase the server load or decrease overall memory. I think this needs to get addressed by wp
Forum: Fixing WordPress
In reply to: about and contact pagesVery good. You can see the result at:
http://www.dingfelder.org/blogI had to make 1 slight change to your suggestion: the code needed a UL tag:
<h2><?php _e('Pages:'); ?></h2>
<ul><?php wp_list_pages('exclude=16,19&title_li='); ?>
</ul>
Thanks for assistance 🙂
What do you think of my modified theme? It is sort of a hybrid of “Pool” and “Connections”… Im still playing with the colors but I think the concept is pretty well finalized.
Cheers,
-Ding
Forum: Fixing WordPress
In reply to: about and contact pagesok, one more question.
When I tried the example code, using:
<ul>
<?php wp_list_pages('exclude=17,38&title_li=<h2>' . __('Pages') . '</h2>' ); ?>
</ul>
I get weird output.
I think it is (because of the css) making the page title be a
<li>element.with the connections theme (which my site is a slight variation of) the csss for a page element is:
#pagenav
{
list-style:none;
}
See my site: http://www.dingfelder.org/blogyou will see there that I have moved the “months” section from the connection theme up and this is right before my pages code.
the archive code is
‘<h2><?php _e(‘Archives:’); ?></h2>-
<?php wp_get_archives(‘type=monthly&show_post_count=true’); ?>
‘
what ends up happening is that my pages code gets indented within the archive code for some reason.
Any idea what could be going wrong?
Forum: Fixing WordPress
In reply to: about and contact pagesExcellent. Exactly what I was looking for (the link to Page Exclusion Code)
Muchos Gracias 🙂
Forum: Installing WordPress
In reply to: multiple blogs with apache aliasany plan for implementing this type of functionality in the standard wordpress?
Forum: Fixing WordPress
In reply to: about and contact pagesI was hoping that would not be the answer. The tricky part is, there are (on many themes) 2 places that list pages.
On the top (in the header) there is contact and about for instance
In the sidebar is a list of all defined pages.
If I follow your directions (if I am reading them right) then the “about” page will appear in both places, whereas I do NOT want it in the sidebar, only in the startic page list in the header.
Does that make sense?