Plugin Directory

Changeset 2931171


Ignore:
Timestamp:
06/27/2023 12:06:59 AM (3 years ago)
Author:
ejointjp
Message:

v1.0.6

Location:
blogcard-for-wp/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • blogcard-for-wp/trunk/blogcard-for-wp.php

    r2929952 r2931171  
    44Plugin URI: https://e-joint.jp/works/blogcard-for-wp
    55Description: URLを貼るだけで、ブログカード風のリンクが作れるGutenbergブロックです。
    6 Version:     1.0.5
     6Version:     1.0.6
    77Author:      Takashi Fujisaki
    88Author URI:  https://e-joint.jp
     
    6767}
    6868
    69 
    7069/**
    7170 * Categories
     
    7473 * @param array $post Post.
    7574 */
    76 
    77 if (!function_exists('wpbc_categories')) {
    78   function wpbc_categories($categories, $post)
     75if (!function_exists('su_categories')) {
     76  function su_categories($categories, $post)
    7977  {
    8078    return array_merge(
     
    8583          'title' => 'su blocks'  // ブロックカテゴリーの表示名.
    8684          // 'icon'  => 'wordpress',    //アイコンの指定(Dashicons名).
    87         ],
     85        ]
    8886      ]
    8987    );
    9088  }
    91   add_filter('block_categories_all', 'wpbc_categories', 10, 2);
     89  add_filter('block_categories_all', 'su_categories', 10, 2);
    9290}
    93 
    9491
    9592add_action('enqueue_block_editor_assets', 'wpbc_enqueue_block_editor_assets');
  • blogcard-for-wp/trunk/readme.txt

    r2929952 r2931171  
    55Requires at least: 5.0
    66Tested up to: 6.2.2
    7 Stable tag: 1.0.4
     7Stable tag: 1.0.6
    88Requires PHP: 7.0
    99License: GPLv2 or later
     
    3333== Changelog ==
    3434
     35= 1.0.6 =
     36バグ修正
     37
    3538= 1.0.5 =
    3639バグ修正
Note: See TracChangeset for help on using the changeset viewer.