Plugin Directory

Changeset 3259960


Ignore:
Timestamp:
03/22/2025 06:46:52 AM (13 months ago)
Author:
DesignPlus
Message:

Release version 1.2.4

Location:
tcd-classic-editor/trunk
Files:
2 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • tcd-classic-editor/trunk/assets/css/editor.css

    r3255965 r3259960  
    17171717    color: var(--tcdce-button-font-color-hover);
    17181718    border: var(--tcdce-button-border-hover);
     1719    text-decoration: none;
    17191720  }
    17201721
  • tcd-classic-editor/trunk/readme.txt

    r3255965 r3259960  
    44Requires at least: 6.7
    55Tested up to: 6.7
    6 Stable tag: 1.2.3
     6Stable tag: 1.2.4
    77Requires PHP: 8.0
    88License: GPLv2 or later
     
    4747
    4848== Changelog ==
     49= 1.2.4 =
     50* Updated: Minor CSS adjustments for improved design.
     51
    4952= 1.2.3 =
    5053* Updated: Minor CSS adjustments for improved design.
  • tcd-classic-editor/trunk/setting/table-of-contents.php

    r3235706 r3259960  
    136136        array(
    137137          'public'   => true,
    138           '_builtin' => false
     138          '_builtin' => false,
     139          // ナビゲーションメニューに表示しない場合も除く
     140          'show_in_nav_menus'   => true,
    139141        )
    140142      )
     
    144146      $post_types = array_merge( $post_types, $built_in_post_types );
    145147    }
     148
     149    $post_types = apply_filters(
     150      'tcdce_toc_setting_post_types_options',
     151      $post_types
     152    );
    146153
    147154    foreach( $post_types as $post_type ){
  • tcd-classic-editor/trunk/tcd-classic-editor.php

    r3255965 r3259960  
    44 * Plugin URI:
    55 * Description: This is a classic editor extension plug-in for TCD users.
    6  * Version: 1.2.3
     6 * Version: 1.2.4
    77 * Author: TCD
    88 * Author URI: https://tcd-theme.com/
  • tcd-classic-editor/trunk/theme-support/tcd.php

    r3255965 r3259960  
    77if ( ! defined( 'ABSPATH' ) ) {
    88    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     }
    189}
    1910
Note: See TracChangeset for help on using the changeset viewer.