wordpress默认发布图片文章时自动居中、链接附件、图片尺寸大小

作者:晓白pos网 发布时间:2021-10-17 01:33:41

代码供晓白日后使用,因为晓白在弄网站时发现了他的用处,WordPress在编辑文章插入图片的时,默认为空,可以通过添加以下代码到主题functions.php 文件里面进行自动默认,减去手动修改

代码如下

[hidecontent type="reply"]

/**
 * WordPress 设置图片的默认显示方式(尺寸/对齐方式/链接到)
 */
add_action( 'after_setup_theme', 'default_attachment_display_settings' );
function default_attachment_display_settings() {
	update_option( 'image_default_align', 'center' );//居中显示
	update_option( 'image_default_link_type', 'post' );//连接到媒体文件本身
	update_option( 'image_default_size', 'full' );//完整尺寸
}

[/hidecontent]

其中

以下仅供后续参考修改

image_default_align图片的对齐方式

left:左对齐

right:右对齐

center:居中对齐

none:无

image_default_link_type图片的链接到

file:媒体文件本身

post:附件页面,也就是图片所在文章地址

custom:自定义URL

none:无

image_default_size图片的尺寸

thumbnail:缩略图尺寸

wordpress默认发布图片文章时自动居中、链接附件、图片尺寸大小

medium:中等尺寸

full:完整尺寸

标签:, , , , ,

联系邮箱:ert5tyx@163.com(三个工作日内处理)
Copyright © 2020 · 晓白pos网 皖ICP备2022013394号-7