Viewing 4 replies - 1 through 4 (of 4 total)
  • It looks like you are using the Chaotic Soul theme?

    Whatever you have in the sidebar for listing your pages – replace it with the following:

    <?php wp_list_pages('title_li='); ?>

    the ‘title_li=’ will omit the title.

    Thread Starter jamaal

    (@jamaal)

    Thanks, that worked in getting the word Pages away, but now the page titles are listed in alphabetical order, which i dont want.

    I had this code before, which was listing the page by id.

    <?php wp_list_pages('sort_column=menu_order'); ?>

    Pls help.

    Ok, so you need both arguments:

    <?php wp_list_pages('sort_column=menu_order&title_li='); ?>

    Hopefully, that should do the trick.

    Thread Starter jamaal

    (@jamaal)

    Thanks I solved it – using this code: <?php wp_list_pages('title_li=&sort_column=menu_order'); ?>

    I’m getting the hang of this php stuff 🙂

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘I need to delete the word “Pages”’ is closed to new replies.