emulsion 3.1.4

add_filter('get_custom_logo', 'emulsion_fallback_custom_logo',10,2);

function emulsion_fallback_custom_logo($html, $blog_id){
	$url = get_site_icon_url();
	if(empty($html) && ! empty($url) ){
		$id= get_option( 'site_icon' );
		return wp_get_attachment_image( $id );
	}
	return $html;
}
foreach( wp_styles()->registered as $key => $val){
	echo $val->handle.'<br>';

}
function attachment_url_to_path( $url ){
		$parsed_url = parse_url( $url );

		if(empty($parsed_url['path'])){
			return false;
		}
		$file = dirname(ABSPATH) . $parsed_url['path'];

		if (is_readable( $file)){
			//var_dump( $file);
			return $file;
		}
		return false;
}

削除しようと思ったがやめた

サイトエディタで、ヘッダーの幅を変更する場合に、テンプレートパートの編集を行うと、そのテンプレートパートを使用するすべてのテンプレートで反映されるため、テンプレートのスタイルバリエーションを使う意味がある。特定のテンプレートの変更に留まるためだ

 /*
    wp.blocks.registerBlockStyle('core/group', {
        name: 'layout-flow',
        label: 'Flow Layout',
        isDefault: false
    });
    wp.blocks.registerBlockStyle('core/post-template', {
        name: 'layout-flow',
        label: 'Flow Layout',
        isDefault: false
    });
    wp.blocks.registerBlockStyle('core/post-template', {
        name: 'layout-wide',
        label: 'Contents Alignwide',
        isDefault: false
    });
    */

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

[emulsion_relate_posts]