WordPressカスタマイズの覚書

目次

カスタマイズ項目

キャッチフレーズの改行

#headerTop #site-description:after {
    content: '改行したキャッチフレーズ';
    display: block;
}

WordPressでSVGファイルをアップロードする方法

function add_file_types_to_uploads($file_types){
 
    $new_filetypes = array();
    $new_filetypes['svg'] = 'image/svg+xml';
    $file_types = array_merge($file_types, $new_filetypes );
 
    return $file_types;
}
add_action('upload_mimes', 'add_file_types_to_uploads');

SVG to PNG コンバーター

https://convertio.co/ja/svg-png ※大きめに変換してくれる

https://svgtopng.com/ja/ ※サイズが小さい

Twenty Seventeen の投稿者非表示

.single .byline {
	display: none;
}

テキストの縦揃え

line-height で調整

参考

WordPress

Posted by iwadjp