bcyber
Forum Replies Created
Viewing 3 replies - 1 through 3 (of 3 total)
-
@serge.k I uncommented those lines and it’s counting 3 views for each one
Forum: Hacks
In reply to: Grab featured images from members area?Here’s what I’m doing.
At the top of body –
<?php include 'path/to/members/wp-load.php'; ?>This is how I’m getting the featured images.
<?php $do_not_duplicate = array(); ?> <?php $mosaics = new WP_Query('posts_per_page=1'); ?> <?php while ($mosaics->have_posts()) : $mosaics->the_post(); ?> <?php $do_not_duplicate[] = $post->ID; ?> <?php if (class_exists('MultiPostThumbnails')) : MultiPostThumbnails::the_post_thumbnail(get_post_type(), 'tour-thumb', NULL, 'post-tour-thumb-thumbnail'); endif; ?> <?php endwhile; wp_reset_postdata(); ?> </p> <hr> <p><?php $mosaics = new WP_Query( array( 'posts_per_page' => 1, 'post__not_in' => $do_not_duplicate ) ); ?> <?php while ($mosaics->have_posts()) : $mosaics->the_post(); ?> <?php $do_not_duplicate[] = $post->ID; ?> <?php if (class_exists('MultiPostThumbnails')) : MultiPostThumbnails::the_post_thumbnail(get_post_type(), 'tour-thumb', NULL, 'post-tour-thumb-thumbnail'); endif; ?> <?php endwhile; wp_reset_postdata(); ?></p>Forum: Fixing WordPress
In reply to: Save Post Bug 2.5.1I’m having the same problem. Since I upgraded to 2.5.1 I can’t publish posts anymore. Some how some of them are ending up in the drafts section too which doesn’t make any sense.
Viewing 3 replies - 1 through 3 (of 3 total)