Got a request for help from some the Eyebeam list. The folks organizing the Urban Wilderness Action Center for the international Electrosmog festival wanted some usability help. Â Navigating between subpages of their projects was too confusing.
If you like the way the sub pages are listed out on, say, the Berlin Micro-Turf Expedition – here you go.
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 | <?php
if ( $post ->post_parent) {
$parent_title = get_the_title( $post ->post_parent);
?>
<a href= "<?php echo get_permalink($post->post_parent) ?>" ><?php echo $parent_title ;?></a>:
<?php } ?>
<?php
if ( ( $post ->post_parent) && (get_post( $post ->post_parent)->post_parent) )
$children = wp_list_pages( "title_li=&child_of=" . $post ->post_parent. "&exclude=" . $post ->ID. "&echo=0" );
else
$children = wp_list_pages( "title_li=&child_of=" . $post ->ID. "&echo=0" );
if ( $children ) { ?>
<ul style= "display:inline" >
<?php echo $children ; ?>
</ul>
<?php } ?>
|
- The Eyebeam folks are doing a cool skillshare on how “Tools and Models for Online Collaboration” (back)
- It starts March 20th! Â It’s completely free! Â Go! (back)