Plugin Directory

Changeset 2108257


Ignore:
Timestamp:
06/18/2019 04:02:44 PM (7 years ago)
Author:
issey7
Message:

version 1.4

Location:
rss-make-antenna
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • rss-make-antenna/tags/1.4/readme.txt

    r2086186 r2108257  
    33Tags: rss feed
    44Requires at least: 4.7
    5 Tested up to: 5.2
    6 Stable tag: 1.3
     5Tested up to: 5.2.1
     6Stable tag: 1.4
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2828== Changelog ==
    2929
     30= 1.4 =
     31Get multiple categories.
     32
    3033= 1.3 =
    3134Changed the number of characters of excerpted text.
  • rss-make-antenna/tags/1.4/rss-make-antenna.php

    r2086186 r2108257  
    44Plugin URI: https://raizzenet.com/work/plugin-rss-make-antenna
    55Description: RSSからサイトの更新情報を取得して投稿するプラグインです。
    6 Version: 1.3
     6Version: 1.4
    77Author: Kazunari Matsumoto
    88Author URI: https://raizzenet.com
     
    271271                        $contents = '';
    272272                    }
    273                     $new_category = '';
     273                    $new_category = array();
    274274                    $categorys = $item->get_categories();
    275275                    if ($categorys) {
    276276                        foreach ($categorys as $category) {
    277                             $new_category = esc_attr($category->get_label());
     277                            $new_category[] = esc_attr($category->get_label());
    278278                        }
    279279                    }
  • rss-make-antenna/trunk/readme.txt

    r2086186 r2108257  
    33Tags: rss feed
    44Requires at least: 4.7
    5 Tested up to: 5.2
    6 Stable tag: 1.3
     5Tested up to: 5.2.1
     6Stable tag: 1.4
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2828== Changelog ==
    2929
     30= 1.4 =
     31Get multiple categories.
     32
    3033= 1.3 =
    3134Changed the number of characters of excerpted text.
  • rss-make-antenna/trunk/rss-make-antenna.php

    r2086186 r2108257  
    44Plugin URI: https://raizzenet.com/work/plugin-rss-make-antenna
    55Description: RSSからサイトの更新情報を取得して投稿するプラグインです。
    6 Version: 1.3
     6Version: 1.4
    77Author: Kazunari Matsumoto
    88Author URI: https://raizzenet.com
     
    271271                        $contents = '';
    272272                    }
    273                     $new_category = '';
     273                    $new_category = array();
    274274                    $categorys = $item->get_categories();
    275275                    if ($categorys) {
    276276                        foreach ($categorys as $category) {
    277                             $new_category = esc_attr($category->get_label());
     277                            $new_category[] = esc_attr($category->get_label());
    278278                        }
    279279                    }
Note: See TracChangeset for help on using the changeset viewer.