Changeset 3259960
- Timestamp:
- 03/22/2025 06:46:52 AM (13 months ago)
- Location:
- tcd-classic-editor/trunk
- Files:
-
- 2 deleted
- 5 edited
-
assets/css/editor.css (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
setting/table-of-contents.php (modified) (2 diffs)
-
tcd-classic-editor.php (modified) (1 diff)
-
theme-support/one_tcd061.php (deleted)
-
theme-support/rehub_tcd099.php (deleted)
-
theme-support/tcd.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
tcd-classic-editor/trunk/assets/css/editor.css
r3255965 r3259960 1717 1717 color: var(--tcdce-button-font-color-hover); 1718 1718 border: var(--tcdce-button-border-hover); 1719 text-decoration: none; 1719 1720 } 1720 1721 -
tcd-classic-editor/trunk/readme.txt
r3255965 r3259960 4 4 Requires at least: 6.7 5 5 Tested up to: 6.7 6 Stable tag: 1.2. 36 Stable tag: 1.2.4 7 7 Requires PHP: 8.0 8 8 License: GPLv2 or later … … 47 47 48 48 == Changelog == 49 = 1.2.4 = 50 * Updated: Minor CSS adjustments for improved design. 51 49 52 = 1.2.3 = 50 53 * Updated: Minor CSS adjustments for improved design. -
tcd-classic-editor/trunk/setting/table-of-contents.php
r3235706 r3259960 136 136 array( 137 137 'public' => true, 138 '_builtin' => false 138 '_builtin' => false, 139 // ナビゲーションメニューに表示しない場合も除く 140 'show_in_nav_menus' => true, 139 141 ) 140 142 ) … … 144 146 $post_types = array_merge( $post_types, $built_in_post_types ); 145 147 } 148 149 $post_types = apply_filters( 150 'tcdce_toc_setting_post_types_options', 151 $post_types 152 ); 146 153 147 154 foreach( $post_types as $post_type ){ -
tcd-classic-editor/trunk/tcd-classic-editor.php
r3255965 r3259960 4 4 * Plugin URI: 5 5 * Description: This is a classic editor extension plug-in for TCD users. 6 * Version: 1.2. 36 * Version: 1.2.4 7 7 * Author: TCD 8 8 * Author URI: https://tcd-theme.com/ -
tcd-classic-editor/trunk/theme-support/tcd.php
r3255965 r3259960 7 7 if ( ! defined( 'ABSPATH' ) ) { 8 8 exit; // Exit if accessed directly 9 }10 11 // テーマ毎に特定のPHPファイルを呼び出す(ex: rehub_tcd099)12 $current_template = get_template();13 if( $current_template ){14 $current_template_dir = TCDCE_PATH . 'theme-support/' . $current_template . '.php';15 if( file_exists( $current_template_dir ) ){16 require_once $current_template_dir;17 }18 9 } 19 10
Note: See TracChangeset
for help on using the changeset viewer.