如果在后期保存时丢失,请将后期缩略图设置为默认值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如果在后期保存时丢失,请将后期缩略图设置为默认值相关的知识,希望对你有一定的参考价值。

set post thumb if missing on post save
  1. function init_set_thumb() {
  2. add_action('save_post', 'set_post_thumb', 10);
  3. }
  4. add_action('admin_init', 'init_set_thumb');
  5.  
  6. function set_post_thumb($post_id) {
  7. if(!wp_is_post_revision($post_id)) {
  8. $post_type = get_post_type($post_id);
  9. $post_thumb = get_post_thumbnail_id($post_id);
  10. if($post_type == 'post' && !$post_thumb) { // if post type = post and get_post_thumbnail == false
  11. $defaultimage = 1; // set to id of attachment to use as default post thumb
  12. set_post_thumbnail($post_id,$defaultimage);
  13. }
  14. }
  15. }

以上是关于如果在后期保存时丢失,请将后期缩略图设置为默认值的主要内容,如果未能解决你的问题,请参考以下文章

SQL Server 数据库创建视图时修改字段长度

SQL Server 数据库创建视图时修改字段长度

游民轮播图效果实现

360度环物全景后期拍摄怎么做?

php [WooCommerce Instagram]如果您想将其更改为缩略图或其他图像尺寸,请将此代码添加到您的“自定义功能”区域

warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失