Aidorm
Forum Replies Created
-
Forum: Plugins
In reply to: [Yoast SEO] Exclude one or two categories from autocategory callingI’m interested with this as well.. I hope someone can help us. Thanks!
Forum: Themes and Templates
In reply to: [Pinboard] Grid Layout Problem: Pinboard ThemeBump for help guys..
Thanks!
Forum: Fixing WordPress
In reply to: Grid Layout Problem: Pinboard Themeok thanks! i’ll just copy and paste it to the theme’s forum.
[continued at https://www.ads-software.com/support/topic/grid-layout-problem-pinboard-theme-1?replies=1 ]
Forum: Fixing WordPress
In reply to: Show all post with attached image on a single Pagehey this method actually solved my problem! thanks a lot!
Forum: Fixing WordPress
In reply to: Show all post with attached image on a single Pagethanks for the response, i’ll try that out.
by the way, what do you mean by expensive query? i’m still a noob in this stuff. ??
Forum: Fixing WordPress
In reply to: Show all post with attached image on a single Pagecan someone help me out?
i tried this code that i got from a closed thread but it doesn’t work for me.
<?php echo '<hr/>'; ?> <?php $args = array ( 'post_type' => 'attachment', 'numberposts' => 1, 'post_status' => null, 'post_mime_type' => 'image', 'post_parent' => $post->ID); $attachments = get_posts($args); ?> <?php global $wp_query, $wp_the_query; ?> <?php $wp_query = new WP_Query( $args ); ?> <?php if( $wp_query->have_posts() ) : ?> <div class="entries"> <?php while( $wp_query->have_posts() ) : $wp_query->the_post(); ?> <?php get_template_part( 'content', get_post_format() ); ?> <?php endwhile; ?> </div><!-- .entries --> <?php pinboard_posts_nav(); ?> <?php else : ?> <?php pinboard_404(); ?> <?php endif; ?> <?php wp_reset_postdata(); ?> <?php $wp_query = $wp_the_query; ?>
Forum: Fixing WordPress
In reply to: Show all post with attached image on a single Pagethe above loop still shows post without image. i’m looking for some exception to the query to remove the posts without image in the search result but i can’t find it. ??
Forum: Fixing WordPress
In reply to: Show all post with attached image on a single Pageposts with attachment only.
Forum: Fixing WordPress
In reply to: Show all post with attached image on a single Pagei’m just a newbie in coding but i’m learning a lot in this forum.
anyway, i’ve sorted my code and got to this part.
$args = array( 'post_type' => 'post', 'posts_per_page' => -1, 'post_status' => 'publish', 'post_parent' => null ); $the_query = new WP_Query( $args ); ?> <?php if ( $the_query->have_posts() ) : ?> <?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?> <?php get_template_part( 'content', get_post_format() ); ?> <?php endwhile; ?>
it shows my post correctly but i can’t exclude those post without any attached image.
Forum: Fixing WordPress
In reply to: Show all post with attached image on a single Pagethanks a lot. but using wp_query still only shows all images in my website. i guess i can search for the right code to show the thumbnails of all the post associated with an image but i can’t get to show those post with images only and not all images in the website.
thanks again.