I’m creating a list of 130ish pages that will serve as a bibliographic resource. All of these pages will live under a single parent page that will be listed on the navigation menu. Said differently, my page hierarchy looks something like this:
Pages:
About Me:
Publications:
Bibliographies:
–African American Rhetoric
–Discourse Analysis
–Qunatitative Research Methods
–Self Assessment
Contact Me:
My question is: if I have 130+ individual bibliographies (I’ll create an individual page for each), what options do I have for listing every page on the top-level “Bibliographies” page? I am trying to avoid using a simple vertical list. Ideally, I’d like to represent these numerous bibliographies (child pages) visually; however, a table or other format is definitely an option. Anything except the vertical list actually. At present, the bibliography list takes the following form:
https://wrt-howard.syr.edu/bibs.html
So, any suggestions on how to represent this list in a way that is not a vertical alphabetic list? Thanks so much in advance for any recommendations/plugin links. I appreciate the help in advance.
Thanks again,
justin
]]>I want my page list navigation menu to display each page custom field ‘description’ together with the page list menu:
Page title: | Home | About | Blog
Page description: | Home description | About description | Blog desc
I have replaced the wp_nav_menu of twentyten theme and applied these codes to header.php and it worked.
<?php
$args=array(
‘orderby’ => ‘title’,
‘post_parent’ => 0,
‘post_type’ => ‘page’,
‘post_status’ => ‘publish’,
‘posts_per_page’ => -1,
‘caller_get_posts’=> 1
);
$my_query = null;
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
// List of Pages (just parent pages)
while ($my_query->have_posts()) : $my_query->the_post(); ?>
<span><?php echo get_post_meta($post->ID, ‘description’, true); ?></span>
<?php endwhile;
}
wp_reset_query(); // Restore global post data stomped by the_post().
?>
Just one problem, the current_page_item css feature of wordpress isn’t working.
Here’s my site: https://www.inventivewebs.net/wp-sample/
Please help. Thanks.
]]>Like you see here with my archives list:
https://diaryofchanel.com/archives/
where it says “Blog Post – (23 cmnts)”
I would like do that for a Page that has a SUBPAGE list.
I’ve been trying to find a solution to this for more than 2 weeks.
]]>Like you see here with my archives list:
https://diaryofchanel.com/archives/
I would like that for my pages list on this page:
https://diaryofchanel.com/discuss/
That way when viewers go to my Discuss page, they are able to see how many comments each subpage has.
Makes sense?
]]>Just started using Worpress and am wondering if there was a way to add different thumbnail images to the (wp_list_pages) page list, similar to adding a thumbnail of an author on the author lists.
Cheers,
Rick.