Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter fadedhalo

    (@fadedhalo)

    Does ANYONE have any idea on this?

    this forum seems more full of questions than answers….

    Thread Starter fadedhalo

    (@fadedhalo)

    bump 🙂

    Thread Starter fadedhalo

    (@fadedhalo)

    bueller? fry? anyone?

    Thread Starter fadedhalo

    (@fadedhalo)

    i am having trouble finding how to let the_content() see the page it relates to.
    what should i put in the last parameter of the class?

    I thought my php skills were better than they were. turns out theyre awful. haha

    anyway, here is my code:

    <?php get_header(); ?>
    	<div id="content" class="narrowcolumn">
    		<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    		<div class="post" id="post-<?php the_ID(); ?>">
    		<h2><?php the_title(); ?></h2>
    			<div class="entry">
                    <p>
                    <ul>
    					<?php wp_list_pages('sort_column=menu_order&title_li=&child_of='.$post->ID.'&depth=0');?>
    					<?php the_content('Continue reading ', FALSE, 'LOCATION TO PAGE NEEDS ADDED HERE'); ?>
                  </li>
                    </p>
    			</div>
    		</div>
    		<?php endwhile; endif; ?>
    	<?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
    	</div>
    
    <?php get_sidebar(); ?>
    
    <?php get_footer(); ?>

    Can anyone help out?

    Thread Starter fadedhalo

    (@fadedhalo)

    so i have found i can use the_content to display what i want, but i cant seem to get it to work with the list_pages class.

    has anyone integrated these two and can you help?

    Thanks

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