php Wordpress特色图片调整

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php Wordpress特色图片调整相关的知识,希望对你有一定的参考价值。

// Feaured image tweaks

function customposttype_image_box() {
    remove_meta_box( 'postimagediv', 'case-study', 'side' );
    add_meta_box('postimagediv', __('Featured image <span style="color:red">*</span>'), 'post_thumbnail_meta_box', 'case-study', 'side', 'high');
}

add_action('do_meta_boxes', 'customposttype_image_box');


function wpse_108013_mandatory_featured_image() {
 if(!has_post_thumbnail()) { // here you check if there's a featured image
      wp_die( 'A featured image is required' ); // there is no featured image
 }
}
add_action( 'pre_post_update', 'wpse_108013_mandatory_featured_image' );

add_filter('admin_post_thumbnail_html', 'add_featured_image_text');
function add_featured_image_text($content) {
    return $content .= '<small style="color:#999">Required</small>';
}

以上是关于php Wordpress特色图片调整的主要内容,如果未能解决你的问题,请参考以下文章

Wordpress 特色图片调整大小和裁剪不起作用

如何*放大* WordPress 中的所有特色图片?

PHP PHP WP WordPress获取特色图片后缩略图

WordPress |在特色图片上使用 imagehover

php WordPress :: RSS Feed中的特色图片MailChimp

如何在没有 single.php 的情况下从 wordpress 帖子中删除特色图片