aaronholbrook
Forum Replies Created
Viewing 6 replies - 1 through 6 (of 6 total)
-
Forum: Plugins
In reply to: [A7 Simple Events] [Plugin: A7 Simple Events] FrontendAdd a custom query to call the event custom post type.
Added ability to change the text!
Cheers, thanks for the suggestions
Forum: Fixing WordPress
In reply to: Show list of Child pages of current page w/ Featured ImageThanks Britt, that was extremely helpful.
However I noticed one small change was needed to ensure that the featured image that was pulled was for the actual child page and not the current page.
<?php $child_pages = $wpdb->get_results("SELECT * FROM $wpdb->posts WHERE post_parent = ".$post->ID." AND post_type = 'page' ORDER BY menu_order", 'OBJECT'); ?> <?php if ( $child_pages ) : foreach ( $child_pages as $pageChild ) : setup_postdata( $pageChild ); ?> <div class="child-thumb"> <?php echo get_the_post_thumbnail($pageChild->ID, 'thumbnail'); ?> <a href="<?php echo get_permalink($pageChild->ID); ?>" rel="bookmark" title="<?php echo $pageChild->post_title; ?>"><?php echo $pageChild->post_title; ?></a> </div> <?php endforeach; endif; ?>Forum: Themes and Templates
In reply to: How to create an advanced search options?I stumbled on this thread hoping someone had the same question about custom post_types being able to be filtered and lo and behold someone did. However I’m currently using version 2.0.2.5 and it’s still not working so I’m stumped. Did anyone get this to work with post_types or categories?
Forum: Fixing WordPress
In reply to: Adding comment metaAny luck with this Wayne? I’m looking to do the same thing.
Viewing 6 replies - 1 through 6 (of 6 total)