Changeset 2931171
- Timestamp:
- 06/27/2023 12:06:59 AM (3 years ago)
- Location:
- blogcard-for-wp/trunk
- Files:
-
- 2 edited
-
blogcard-for-wp.php (modified) (4 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
blogcard-for-wp/trunk/blogcard-for-wp.php
r2929952 r2931171 4 4 Plugin URI: https://e-joint.jp/works/blogcard-for-wp 5 5 Description: URLを貼るだけで、ブログカード風のリンクが作れるGutenbergブロックです。 6 Version: 1.0. 56 Version: 1.0.6 7 7 Author: Takashi Fujisaki 8 8 Author URI: https://e-joint.jp … … 67 67 } 68 68 69 70 69 /** 71 70 * Categories … … 74 73 * @param array $post Post. 75 74 */ 76 77 if (!function_exists('wpbc_categories')) { 78 function wpbc_categories($categories, $post) 75 if (!function_exists('su_categories')) { 76 function su_categories($categories, $post) 79 77 { 80 78 return array_merge( … … 85 83 'title' => 'su blocks' // ブロックカテゴリーの表示名. 86 84 // 'icon' => 'wordpress', //アイコンの指定(Dashicons名). 87 ] ,85 ] 88 86 ] 89 87 ); 90 88 } 91 add_filter('block_categories_all', ' wpbc_categories', 10, 2);89 add_filter('block_categories_all', 'su_categories', 10, 2); 92 90 } 93 94 91 95 92 add_action('enqueue_block_editor_assets', 'wpbc_enqueue_block_editor_assets'); -
blogcard-for-wp/trunk/readme.txt
r2929952 r2931171 5 5 Requires at least: 5.0 6 6 Tested up to: 6.2.2 7 Stable tag: 1.0. 47 Stable tag: 1.0.6 8 8 Requires PHP: 7.0 9 9 License: GPLv2 or later … … 33 33 == Changelog == 34 34 35 = 1.0.6 = 36 バグ修正 37 35 38 = 1.0.5 = 36 39 バグ修正
Note: See TracChangeset
for help on using the changeset viewer.