Plugin Directory

Changeset 2768536


Ignore:
Timestamp:
08/09/2022 06:45:54 PM (4 years ago)
Author:
mattlitzinger
Message:

Updated support for 6.0.1

Location:
recommend/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • recommend/trunk/README.txt

    r2664780 r2768536  
    44Donate link: https://paypal.me/mattlitzinger
    55Requires at least: 4.7
    6 Tested up to: 5.9
     6Tested up to: 6.0.1
    77Requires PHP: 7.0
    8 Stable tag: 0.6.1
     8Stable tag: 0.6.2
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    4444== Changelog ==
    4545
     46= 0.6.3 =
     47*Release Date: August 9th, 2022*
     48
     49* Updated to support WordPress 6.0.1 release
     50
     51* Fixes:
     52    * Added `in_the_loop()` and `is_main_query()` conditionals for displaying like count after post content
     53
    4654= 0.6.2 =
    4755*Release Date: January 25rd, 2022*
  • recommend/trunk/recommend.php

    r2664780 r2768536  
    187187        $included_post_types = ($options['included_post_types'] !== '') ? explode(',', str_replace(' ', '', $options['included_post_types'])) : array();
    188188        if(
     189            in_the_loop() &&
     190            is_main_query() &&
    189191            (
    190192                is_single() ||
Note: See TracChangeset for help on using the changeset viewer.