<?php /** * Plugin Name: 禁用WordPress特色图像 * Plugin URI: https://www.lidsin.com * Description: This plugin disables the default WordPress featured image functionality. * Version: 1.0 * Author: 全场最佳:LIDSIN * Author URI: https://www.lidsin.com * License: GPL2 */ // 防止直接访问插件文件 if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } // 禁用 WordPress 特色图片功能 function disable_featured_image_support() { remove_theme_support( 'post-thumbnails' ); } // 将函数挂钩到 'after_setup_theme' 动作 add_action( 'after_setup_theme', 'disable_featured_image_support', 11 );