Forum Replies Created

Viewing 2 replies - 76 through 77 (of 77 total)
  • Can you post a link to your website please? Thanks.

    Are you editing your theme, or just using it as stock?

    If you’re editing, try the following:
    <?php wp_list_pages('title_li=&depth=1'); ?>

    **EDIT – I’m assuming that it’s this site.

    Have you made sure that the pages are published publicly and aren’t private? Also, make sure that they’re not scheduled for the future.

    Hi, I have just overcome this problem myself.

    Here’s the code that I’m using:

    <?php
    $settings = array('wpautop' => true, 'media_buttons' => true, 'quicktags' => true, 'textarea_rows' => '25');
    wp_editor(html_entity_decode($profileuser->description), 'description', $settings);
    ?>

    The html_entity_decode() function converts all HTM entities to their applicable characters.

    **EDIT – Forgot to mention, my code’s for the user biography in the user profile section. Should be the same principle, though.

Viewing 2 replies - 76 through 77 (of 77 total)