• hawkesley

    (@hawkesley)


    I want to link from one static page to another in the body of the page.
    I am using wp_list-pages to do this.
    How do I show just the link text, not the ‘Pages’ heading?
    I have looked at the codex and tried some combinations including passing a null title_=
    `<p>Register your work now</p>

      <?php
      wp_list_pages(‘include=67’);
      ?>

    This shows
    Pages
    Author Registration
    I want to get rid of pages heading.

Viewing 2 replies - 1 through 2 (of 2 total)
  • mankot

    (@mankot)

    wp_list_pages(‘include=67&title_li=’);

    should do the trick? Have u tried it?

    Thread Starter hawkesley

    (@hawkesley)

    Hi,
    Thanks, yes that worked.
    For future reference what does the arguement mean? ie &title_li= ‘null’?
    Once again thanks

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘how to show simple page link’ is closed to new replies.