There is a link to my about page but it doesn't work.
I also have a question page which is based on a plugin which doesn't appear at all.
How can I correct theses problems?
There is a link to my about page but it doesn't work.
I also have a question page which is based on a plugin which doesn't appear at all.
How can I correct theses problems?
My URL is www.askthecomputerdoc.com/blog. The "Ask the Computer Doc" page does not come up at all.
Not sure about the plug in issue, and your link to your site didn't work,
but... did you read this: http://cutline.tubetorial.com/cutline-problems-qa-part-1/
They answer a lot of questions there, one is about the about page.
Thanks for the link to the tubetorial.
I made the change to list my pages and it basically works but I have 2 problems.
I would still like a link to the front page. How do I add that?
My pages now ask for comments. These pages are not intended to be blog entries. How can this be remedied?
In your wordpress admin panel when you create a new page, or manage your pages, there is a handy discussion panel you can use and just uncheck the option that allows users to comments.. that issue is quite easy.
As far as having a front page link still, what you need to do is add this right above the php code you added to auto list your pages. (part of what you deleted out to put it there)
<li><a <?php if (is_home()) echo('class="current" '); ?>href="<?php bloginfo('url'); ?>">home</a></li>
So your final Unordered navigation list will look like this:
<ul>
<li><a <?php if (is_home()) echo('class="current" '); ?>href="<?php bloginfo('url'); ?>">Front Page</a></li>
<?php wp_list_pages('sort_column=menu_order&depth=1&title_li='); ?>
</ul>
Hope that helps...
Thanks for the helpful tips
You must log in to post.