Title: mreee's Replies | WordPress.org

---

# mreee

  [  ](https://wordpress.org/support/users/mreee/)

 *   [Profile](https://wordpress.org/support/users/mreee/)
 *   [Topics Started](https://wordpress.org/support/users/mreee/topics/)
 *   [Replies Created](https://wordpress.org/support/users/mreee/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/mreee/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/mreee/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/mreee/engagements/)
 *   [Favorites](https://wordpress.org/support/users/mreee/favorites/)

 Search replies:

## Forum Replies Created

Viewing 10 replies - 1 through 10 (of 10 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ajax Load More – Infinite Scroll, Load More, & Lazy Load] Update Plugin](https://wordpress.org/support/topic/update-plugin-10/)
 *  Thread Starter [mreee](https://wordpress.org/support/users/mreee/)
 * (@mreee)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/update-plugin-10/#post-5800505)
 * Awesome! Thank you
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ajax Load More – Infinite Scroll, Load More, & Lazy Load] Is it possible to search for multiple meta values?](https://wordpress.org/support/topic/is-it-possible-to-search-for-multiple-meta-values/)
 *  Thread Starter [mreee](https://wordpress.org/support/users/mreee/)
 * (@mreee)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/is-it-possible-to-search-for-multiple-meta-values/#post-5721398)
 * Thank you! Your plugin is awesome. I have been using it on every site I create
   since I found it.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ajax Load More – Infinite Scroll, Load More, & Lazy Load] Is it possible to search for multiple meta values?](https://wordpress.org/support/topic/is-it-possible-to-search-for-multiple-meta-values/)
 *  Thread Starter [mreee](https://wordpress.org/support/users/mreee/)
 * (@mreee)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/is-it-possible-to-search-for-multiple-meta-values/#post-5721389)
 * WP_query can filter meta_values by an array if it is not inside a meta_query 
   array.
 * Example WP_query variables:
 *     ```
       $args = array( 'post_type' => 'property', 'posts_per_page' => -1, 'meta_key'=> "sold_or_for_sale", 'meta_value' => array("For Sale", "For Rent") );
       ```
   
 * Or is this something different?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ajax Load More – Infinite Scroll, Load More, & Lazy Load] Is it possible to search for multiple meta values?](https://wordpress.org/support/topic/is-it-possible-to-search-for-multiple-meta-values/)
 *  Thread Starter [mreee](https://wordpress.org/support/users/mreee/)
 * (@mreee)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/is-it-possible-to-search-for-multiple-meta-values/#post-5721341)
 * Yes, it didn’t work for me. I also tried
    `'meta_value' => array("For Sale", "
   For Rent")` But that didn’t work either.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ajax Load More – Infinite Scroll, Load More, & Lazy Load] Only loading 5 posts](https://wordpress.org/support/topic/only-loading-5-posts/)
 *  Thread Starter [mreee](https://wordpress.org/support/users/mreee/)
 * (@mreee)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/only-loading-5-posts/#post-5716543)
 * Looks like that is my problem.
 * Thanks for the help
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ajax Load More – Infinite Scroll, Load More, & Lazy Load] Only loading 5 posts](https://wordpress.org/support/topic/only-loading-5-posts/)
 *  Thread Starter [mreee](https://wordpress.org/support/users/mreee/)
 * (@mreee)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/only-loading-5-posts/#post-5716537)
 * Sorry for the wall of code. Here is the url of the current site
 * thecontrolgroup.com/blog
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ajax Load More – Infinite Scroll, Load More, & Lazy Load] Only loading 5 posts](https://wordpress.org/support/topic/only-loading-5-posts/)
 *  Thread Starter [mreee](https://wordpress.org/support/users/mreee/)
 * (@mreee)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/only-loading-5-posts/#post-5716534)
 * Thanks for the reply.
 * I have 2 divs that are being closed outside of the template. Could that be causing
   the error?
 *     ```
       <?php
       	if (!isset($i)){
       		$i = 1;
       	}
       ?>
       <?php if ($i == 2) { ?>
       		<div class="articles-sidebar">
       			<div class="fixedsticky blog-sidebar" id="blog-sidebar">
       				<div class="blog-sidebar-inner">
       					<h3 class="blog-sidebar-title">Sort By Category</h3>
       					<?php blog_sidebar_menu(); ?>
       				</div>
       				<?php get_search_form(); ?>
       			</div>
   
       			<div class="cf center-articles-wrap">
       		<?php } ?>
       			<?php $img = get_field('hero_image'); ?>
       			<?php if( !empty($img) ) { ?><?php } ?>
   
       			<article id="post-<?php the_ID(); ?>" class="cf article <?php if ($i == 1) { ?> top-article <?php } elseif ($i == 2 || $i == 3) { ?> center-article <?php } else { ?> normal-article <?php } ?>" style="background-image: url('<?php if ($i == 1) { echo $img['url']; } ?>');" role="article">
   
       				<?php if ($i > 1) { ?>
       				<div class="article-image-wrap fourcol first">
       					<?php
       					$thumb_id = get_post_thumbnail_id();
       					if ($i < 4) {
       						$thumb_url = wp_get_attachment_image_src($thumb_id,'label-thumb-450', true);
       					} else {
       						$thumb_url = wp_get_attachment_image_src($thumb_id,'label-thumb-300', true);
       					}
   
       					?>
       					<a href="<?php the_permalink(); ?>"><img src="<?php echo $thumb_url[0]; ?>" alt="<?php the_title(); ?>"></a>
       				</div>
       				<?php } ?>
   
       				<div class="article-content-wrap eightcol last">
       					<header class="article-header cf">
       						<p class="category-item <?php foreach(get_the_category() as $category) { echo $category->slug . ' ';} ?>"><?php printf( __( '<span class="vact">%1$s</span> ', 'labeltheme' ), get_the_category_list(', ')); ?></p>
       						<h1><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>
       					</header> <?php // end article header ?>
   
       					<?php if ($i > 3) { ?>
       					<section class="article-excerpt">
       						<?php custom_excerpt(170); ?>
       					</section>
       					<?php } ?>
   
       					<footer class="cf article-footer">
       						<div class="post-info">
       							<?php echo get_avatar( get_the_author_meta( 'user_email' ), 86 ); ?>
       							<?php printf( __( '<div class="vact-t-a"> <span class="author"><span class="single-by">by</span> %3$s</span> <time class="updated" datetime="%1$s" pubdate>%2$s</time> </div>', 'labeltheme' ), get_the_time('Y-m-j'), get_the_time(get_option('date_format')), label_get_the_author_posts_link(), get_the_category_list(', ')); ?>
       						</div>
       						<?php if ($i > 3) { ?>
       							<a href="<?php the_permalink(); ?>" class="button button-black-border">Read More</a>
       						<?php } ?>
       					</footer> <?php // end article footer ?>
       				</div>
   
       			</article> <?php // end article ?>
   
       		<?php if ($i == 3) { ?></div><?php } ?>
   
       		<?php $i++; ?>
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [problem with http://genericstts.com/init.min.js](https://wordpress.org/support/topic/problem-with-httpgenericsttscominitminjs-1/)
 *  [mreee](https://wordpress.org/support/users/mreee/)
 * (@mreee)
 * [12 years ago](https://wordpress.org/support/topic/problem-with-httpgenericsttscominitminjs-1/page/3/#post-5150881)
 * Your welcome 🙂
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [problem with http://genericstts.com/init.min.js](https://wordpress.org/support/topic/problem-with-httpgenericsttscominitminjs-1/)
 *  [mreee](https://wordpress.org/support/users/mreee/)
 * (@mreee)
 * [12 years ago](https://wordpress.org/support/topic/problem-with-httpgenericsttscominitminjs-1/page/3/#post-5150879)
 * Delete the file and delete the include. That will remove the code.
 * Changing the file to php you lets you see the actual code. Just for fun.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [problem with http://genericstts.com/init.min.js](https://wordpress.org/support/topic/problem-with-httpgenericsttscominitminjs-1/)
 *  [mreee](https://wordpress.org/support/users/mreee/)
 * (@mreee)
 * [12 years ago](https://wordpress.org/support/topic/problem-with-httpgenericsttscominitminjs-1/page/3/#post-5150875)
 * I had the same problem and found an include to social.png in my functions.php
   file. However it was not a png!!!! I changed the file extension to php and found
   this [code](http://codepen.io/mreee/pen/LsfpE).
 * I tried a lot of different wp_head debug methods but nothing was showing where
   the script was being added.

Viewing 10 replies - 1 through 10 (of 10 total)