最近发现每次上传图片插入到文章中,图片默认选择缩略图大小并靠左,每次都需要手动修改一下图片信息,比较麻烦。
今天为大家提供修改默认上传图片大小和对齐方式等。
将代码添加到functions.php:
- //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', 'none' );
- update_option( 'image_default_size', 'full' );
- }
代码参数如下:
image_default_align 图片默认对其设定
left (左)
right (右)
center (居中)
none (无)
image_default_link_type 图片默认链接设定
file (文件)
post (地址)
custom (自定义)
none (无)
image_default_size 图片默认尺寸设定
thumbnail (小)
medium (中)
large (大)
full (全尺寸)
使用上述代码后效果如下:
微信扫描下方的二维码阅读本文