0
投稿内の画像のデフォルトサイズを変更したいと思います。 /wp-admin/options.php
ページとfunctions.php
ファイルの両方を編集しようとしましたが、サイズには影響しません。デフォルトのアライメントとデフォルトのリンクで動作しますが、サイズでは動作しません。wordpressでimage_default_sizeが変更されない
ここでの画像は、「フルサイズ」として表示保つ私のfunctions.phpファイルからの抜粋
add_action('after_setup_theme', 'default_attachment_display_settings');
function default_attachment_display_settings() {
update_option('image_default_align', 'right');
update_option('image_default_size', 'large');
}
です。
[custom css](https://wordpress.org/plugins/simple-custom-css/)を使用してCSSを有効にするプラグイン。 –