php help
- Started
- Last post
- 8 Responses
- dbloc
I am trying to add Blog to the navigation. What I added is currently commented out because it isn't working. Can anyone help out.
- dbloc0
skinning a wordpress theme.
- ephix0
uhh unless you are Sergey or Larry, you are shit out of luck?
- acescence0
what is the php error you are getting? don't see anything right away. would help to see the site.
- dbloc0
here's the example..
- acescence0
that doesn't help me. put:
define('WP_DEBUG', true);
in your config.php file and you will see php errors.i'm guessing this isn't a php problem but a css or javascript issue.
- dbloc0
ok I figured the last one out.
now I want to exclude a page from a list.
This is the code I'm updating:
<ul>
<?php ro_list_pages($pparam); ?></ul>
This is the example I was given
<ul>
<?php wp_list_pages('exclude=17,38' ); ?>
</ul>
- dbloc0
so it's ro_list_pages instead of wp_list_pages
- acescence0
that's a custom function most likely associated with the theme you're using. you can probably find it in the theme's functions.php file.