WordPress 禁用特色图像插件


<?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 );
© 版权声明
THE END
喜欢就支持一下吧
点赞11 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片快捷回复

    暂无评论内容