如果在后期保存时丢失,请将后期缩略图设置为默认值
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如果在后期保存时丢失,请将后期缩略图设置为默认值相关的知识,希望对你有一定的参考价值。
set post thumb if missing on post save
function init_set_thumb() { add_action('save_post', 'set_post_thumb', 10); } add_action('admin_init', 'init_set_thumb'); function set_post_thumb($post_id) { if(!wp_is_post_revision($post_id)) { $post_type = get_post_type($post_id); $post_thumb = get_post_thumbnail_id($post_id); if($post_type == 'post' && !$post_thumb) { // if post type = post and get_post_thumbnail == false $defaultimage = 1; // set to id of attachment to use as default post thumb set_post_thumbnail($post_id,$defaultimage); } } }
以上是关于如果在后期保存时丢失,请将后期缩略图设置为默认值的主要内容,如果未能解决你的问题,请参考以下文章
php [WooCommerce Instagram]如果您想将其更改为缩略图或其他图像尺寸,请将此代码添加到您的“自定义功能”区域
warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失