<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Food Blogger Mania &#187; FSE</title>
	<atom:link href="https://foodbloggermania.it/tag/ricette/fse/feed/" rel="self" type="application/rss+xml" />
	<link>https://foodbloggermania.it</link>
	<description>Food Blogger Mania</description>
	<lastBuildDate>Wed, 15 Apr 2026 12:01:03 +0000</lastBuildDate>
	<language>it-IT</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
		<item>
		<title>How We Built a New Home for WordPress.com Developers Using the Twenty Twenty-Four Theme</title>
		<link>https://foodbloggermania.it/ricetta/how-we-built-a-new-home-for-wordpress-com-developers-using-the-twenty-twenty-four-theme-3/</link>
		<comments>https://foodbloggermania.it/ricetta/how-we-built-a-new-home-for-wordpress-com-developers-using-the-twenty-twenty-four-theme-3/#comments</comments>
		<pubDate>Thu, 29 Feb 2024 20:55:03 +0000</pubDate>
		<dc:creator>Alveare Delle Delizie</dc:creator>
				<category><![CDATA[Friuli Venezia Giulia]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[FSE]]></category>
		<category><![CDATA[JS]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Twenty Twenty]]></category>
		<category><![CDATA[URI]]></category>
		<category><![CDATA[WP]]></category>

		<guid isPermaLink="false">https://foodbloggermania.it/ricetta/how-we-built-a-new-home-for-wordpress-com-developers-using-the-twenty-twenty-four-theme-3/</guid>
		<description><![CDATA[In the last few weeks, our team here at WordPress.com has rebuilt developer.wordpress.com from the ground up. If you build or design websites for other people, in any capacity, bookmark this site. It’s your new home for docs, resources, the latest news about developer features, and more.  Rather than creating a unique, custom theme, we&#160;<a href="https://foodbloggermania.it/ricetta/how-we-built-a-new-home-for-wordpress-com-developers-using-the-twenty-twenty-four-theme-3/" class="read-more">Continua a leggere..</a>]]></description>
			<content:encoded><![CDATA[<p>In the last few weeks, our team here at WordPress.com has rebuilt <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://developer.wordpress.com">developer.wordpress.com</a> from the ground up. <strong>If you build or design websites for other people, in any capacity, bookmark this site</strong>. It’s your new home for docs, resources, the latest news about developer features, and more. </p>
<p>Rather than creating a unique, custom theme, we went all-in on using <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/theme/twentytwentyfour">Twenty Twenty-Four</a>, which is the default theme for all WordPress sites.&nbsp;</p>
<p>That’s right, with a combination of built-in Site Editor functionalities and traditional PHP templates, we were able to create a site from scratch to house all of our developer resources.&nbsp;</p>
<p>Below, I outline exactly how our team did it.</p>
<h2>A Twenty Twenty-Four Child Theme</h2>
<p>The <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://developer.wordpress.com">developer.wordpress.com</a> site has existed for years, but we realized that it needed an overhaul in order to modernize the look and feel of the site with our current branding, as well as accommodate <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://developer.wordpress.com/docs/">our new developer documentation</a>.&nbsp;</p>
<p>You’ll probably agree that the site needed a refresh; here’s what <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://developer.wordpress.com">developer.wordpress.com</a> looked like two weeks ago:</p>
<div>
<figure><a target="_blank" rel="nofollow" href="https://en-blog.files.wordpress.com/2024/02/old-developer-wordpress-com-homepage.png"><img width="1600" height="1010" src="https://en-blog.files.wordpress.com/2024/02/old-developer-wordpress-com-homepage.png" alt="The old developer.wordpress.com homepage with the headline 'Howdy, Developers' on a blue background with several CTAs to get started and try WordPress.com for free" class="wp-image-54651" /></a></figure>
</div>
<p>Once we decided to redesign and rebuild the site, we had two options: 1) build it entirely from scratch or 2) use an existing theme.&nbsp;</p>
<p>We knew we wanted to use <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/support/site-editor/">Full Site Editing</a> (FSE) because it would allow us to easily use <strong>existing patterns</strong> and give our content team the <strong>best writing and editing experience </strong>without them having to commit code.</p>
<p>We considered starting from scratch and using the<a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.org/plugins/create-block-theme/"> official “Create Block Theme” plugin</a>. Building a new theme from scratch is a great option if you need something tailored to your specific needs, but Twenty Twenty-Four was already close to what we wanted, and it would give us a headstart because we can inherit most styles, templates, and code from the parent theme.</p>
<p>We quickly decided on a hybrid theme approach: we would use FSE as much as possible but still fall back to CSS and classic PHP templates where needed (like for our Docs custom post type).</p>
<p>With this in mind, we created a minimal child theme based on Twenty Twenty-Four.</p>
<h3>Spin up a scaffold with <code>@wordpress/create-block</code></h3>
<p>We initialized our new theme by running <code>npx @wordpress/create-block@latest wpcom-developer</code>.&nbsp;</p>
<p>This gave us a folder with example code, build scripts, and a plugin that would load a custom block.</p>
<p>If you only need a custom block (not a theme), you’re all set.</p>
<p><em>But we’re building a theme here! </em>Let’s work on that next.</p>
<h3>Modify the setup into a child theme</h3>
<p>First, we deleted&nbsp;<code>wpcom-developer.php</code>, the file responsible for loading our block via a plugin. We also added a <code>functions.php</code> file and a&nbsp;<code>style.css</code> file <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://developer.wordpress.org/themes/advanced-topics/child-themes/">with the expected syntax required</a> to identify this as a child theme.&nbsp;</p>
<p>Despite being a CSS file, we’re not adding any styles to the <code>style.css</code>&nbsp;file. Instead, you can think of it <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://developer.wordpress.org/themes/core-concepts/main-stylesheet/#file-header">like a documentation file</a> where <code>Template: twentytwentyfour</code> specifies that the new theme we’re creating is a child theme of Twenty Twenty-Four.</p>
<div>
<pre>
/*
Theme Name: wpcom-developer
Theme URI: https://developer.wordpress.com
Description: Twenty Twenty-Four Child theme for Developer.WordPress.com
Author: Automattic
Author URI: https://automattic.com
Template: twentytwentyfour
Version: 1.0.0
*/
</pre>
</div>
<p>We removed all of the demo files in the “src” folder and added two folders inside: one for CSS and one for JS, each containing an empty file that will be the entry point for building our code.</p>
<p>The theme folder structure now looked like this:</p>
<div>
<figure><a target="_blank" rel="nofollow" href="https://en-blog.files.wordpress.com/2024/02/child-theme-folder-structure-wordpress.png"><img width="665" height="471" src="https://en-blog.files.wordpress.com/2024/02/child-theme-folder-structure-wordpress.png" alt="A WordPress child theme folder structure" class="wp-image-54658" /></a></figure>
</div>
<p>The build scripts in <code>@wordpress/create-block</code> can build SCSS/CSS and TS/JS out of the box. It uses Webpack behind the scenes and provides a standard configuration. We can extend the default configuration further with custom entry points and plugins by adding our own <code>webpack.config.js</code> file.&nbsp;</p>
<p>By doing this, we can:</p>
<ol>
<li><strong>Build specific output files for certain sections of the site</strong>. In our case, we have both PHP templates and FSE templates from both custom code and our parent Twenty Twenty-Four theme. The FSE templates need minimal (if any) custom styling (thanks to <code>theme.json</code>), but our developer documentation area of the site uses a custom post type and page templates that require CSS.</li>
<li><strong>Remove empty JS files</strong> after building the <code>*.asset.php</code> files. Without this, an empty JS file will be generated for each CSS file.</li>
</ol>
<p><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://developer.wordpress.org/themes/advanced-topics/build-process/#configuring-webpack">Since the build process in WordPress Scripts relies on Webpack</a>, we have complete control over how we want to modify or extend the build process.&nbsp;</p>
<p>Next, we installed the required packages:</p>
<div>
<pre>
​​npm install path webpack-remove-empty-scripts --save-dev
</pre>
</div>
<p>Our <code>webpack.config.js</code> ended up looking similar to the code below. Notice that we’re simply extending the <code>defaultConfig</code> with a few extra properties.</p>
<p>Any additional entry points, in our case <code>src/docs</code>, can be added as a separate entry in the <code>entry</code> object.</p>
<div>
<pre>
// WordPress webpack config.
const defaultConfig = require( '@wordpress/scripts/config/webpack.config' );

// Plugins.
const RemoveEmptyScriptsPlugin = require( 'webpack-remove-empty-scripts' );

// Utilities.
const path = require( 'path' );

// Add any new entry points by extending the webpack config.
module.exports = {
	...defaultConfig,
	...{
		entry: {
			'css/global':  path.resolve( process.cwd(), 'src/css',   'global.scss' ),
			'js/index': path.resolve( process.cwd(), 'src/js', 'index.js' ),
		},
		plugins: &#091;
			// Include WP's plugin config.
			...defaultConfig.plugins,
			// Removes the empty `.js` files generated by webpack but
			// sets it after WP has generated its `*.asset.php` file.
			new RemoveEmptyScriptsPlugin( {
				stage: RemoveEmptyScriptsPlugin.STAGE_AFTER_PROCESS_PLUGINS
			} )
		]
	}
};
</pre>
</div>
<p>In <code>functions.php</code>, we enqueue our built assets and files depending on specific conditions. For example,&nbsp;we built separate CSS files <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://developer.wordpress.com/docs/">for the docs area of the site</a>, and we only enqueued those CSS files for our docs.&nbsp;</p>
<div>
<pre>
&lt;?php

function wpcom_developer_enqueue_styles() : void {
    wp_enqueue_style( 'wpcom-developer-style',
        get_stylesheet_directory_uri() . '/build/css/global.css'
    );
}

add_action( 'wp_enqueue_scripts', 'wpcom_developer_enqueue_styles' );
</pre>
</div>
<p>We didn&#8217;t need to register the style files from Twenty Twenty-Four, as WordPress handles these inline.</p>
<p>We <em>did</em> need to enqueue the styles for our classic, non-FSE templates (in the case of our <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://developer.wordpress.com/docs/">developer docs</a>) or any additional styles we wanted to add on top of the FSE styles.</p>
<p>To build the production JS and CSS locally, we run <code>npm run build</code>.&nbsp;</p>
<p>For local development, you can run <code>npm run start</code> in one terminal window and <code>npx wp-env start</code> (<a target="_blank" rel="nofollow" href="/redirect.php?URL=https://developer.wordpress.org/block-editor/reference-guides/packages/packages-env/">using the wp-env package</a>) in another to start a local WordPress development server running your theme.</p>
<div>
<figure><a target="_blank" rel="nofollow" href="https://en-blog.files.wordpress.com/2024/02/active-child-theme-wordpress.png"><img width="768" height="622" src="https://en-blog.files.wordpress.com/2024/02/active-child-theme-wordpress.png" alt="An active wpcom-developer child theme on a local WordPress installation" class="wp-image-54668" style="width:726px;height:auto" /></a></figure>
</div>
<p>While building this site, our team of designers, developers, and content writers used <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://developer.wordpress.com/docs/developer-tools/staging-sites/">a WordPress.com staging site</a> so that changes did not affect the existing <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://developer.wordpress.com">developer.wordpress.com</a> site until we were ready to launch this new theme.</p>
<h2><code>theme.json</code></h2>
<p>Twenty Twenty-Four has a comprehensive <code>theme.json</code> file that defines its styles. By default, our hybrid theme inherits all of the style definitions from the parent (Twenty Twenty-Four) <code>theme.json</code> file.&nbsp;</p>
<p>We selectively overwrote the parts we wanted to change (the color palette, fonts, and other brand elements), leaving the rest to be loaded from the parent theme.&nbsp;</p>
<p>WordPress handles this merging, as well as any changes you make in the editor.&nbsp;</p>
<p>Many of the default styles worked well for us, and we ended up with a compact <code>theme.json</code> file that defines colors, fonts, and gradients. Having <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://core.trac.wordpress.org/browser/branches/6.4/src/wp-content/themes/twentytwentyfour/theme.json">a copy of the parent theme’s</a> <code>theme.json</code> file makes it easier to see how colors are referenced.</p>
<p>You can change <code>theme.json</code> in your favorite code editor, or you can change it directly in the WordPress editor and <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.org/documentation/article/site-editor/#how-to-export-templates-and-styles">then download the theme files from Gutenberg</a>.</p>
<div>
<figure><a target="_blank" rel="nofollow" href="https://en-blog.files.wordpress.com/2024/02/wordpress-toolbar.png"><img width="1008" height="1340" src="https://en-blog.files.wordpress.com/2024/02/wordpress-toolbar.png" alt="WordPress settings with a red arrow pointing to the Export tool" class="wp-image-54672" style="width:555px;height:auto" /></a></figure>
</div>
<p>Why might you want to export your editor changes? Styles can then be transferred back to code to ensure they match and make it easier to distribute your theme or move it from a local development site to a live site. This ensures the FSE page templates are kept in code with version control.&nbsp;</p>
<p>When we launched this new theme on production, the template files loaded from our theme directory; we didn&#8217;t need to import database records containing the template syntax or global styles.</p>
<h3>Global styles in SCSS/CSS</h3>
<p>Global styles are added as CSS variables, and they can be referenced in CSS. Changing the value in <code>theme.json</code> will also <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://developer.wordpress.org/themes/global-settings-and-styles/settings/color/#registering-custom-color-presets">ensure that the other colors are updated</a>.</p>
<p>For example, here’s how we reference our “contrast” color as a border color:</p>
<div>
<pre>
border-color: var(--wp--preset--color--contrast);
</pre>
</div>
<h2>What about <code>header.php</code> and <code>footer.php</code>?</h2>
<p>Some plugins require these files in a theme, e.g. by calling <code>get_header()</code>, which does not automatically load the FSE header template.&nbsp;</p>
<p>We did not want to recreate our header and footer to cover those cases; having just one source of truth is a lot better.</p>
<p>By using <code>do_blocks()</code>, we were able to render our needed header block. Here’s an example from a header template file:</p>
<div>
<pre>
&lt;head&gt;
&lt;?php
wp_head();
$fse_header_block = do_blocks( '&lt;!-- wp:template-part {&quot;slug&quot;:&quot;header&quot;,&quot;theme&quot;:&quot;a8c/wpcom-developer&quot;,&quot;tagName&quot;:&quot;header&quot;,&quot;area&quot;:&quot;header&quot;, &quot;className&quot;:&quot;header-legacy&quot;} /--&gt;' );
?&gt;
&lt;/head&gt;
&lt;body &lt;?php body_class(); ?&gt;&gt;
&lt;?php
echo $fse_header_block;
</pre>
</div>
<h2>The new developer.wordpress.com site is now live!</h2>
<div>
<figure><a target="_blank" rel="nofollow" href="https://en-blog.files.wordpress.com/2024/02/new-developer-wordpress-com.png"><img width="1600" height="1170" src="https://en-blog.files.wordpress.com/2024/02/new-developer-wordpress-com.png" alt="The new developer.wordpress.com homepage with a black background, a pixelated W logo, and the headline 'Powerful WordPress Hosting for Developers'" class="wp-image-54681" /></a></figure>
</div>
<p>Check out our new-and-improved <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://www.developer.wordpress.com">developer.wordpress.com</a> site today, and leave a comment below telling us what you think. We’d love your feedback.&nbsp;</p>
<p>Using custom code and staging sites are just two of the many developer features available to WordPress.com sites that we used to build our new and improved developer.wordpress.com.</p>
<p>If you’re a developer and interested in getting early access to other development-related features, <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/me/developer">click here</a> to enable our “I am a developer” setting on your WordPress.com account.</p>
<figure><a target="_blank" rel="nofollow" href="https://en-blog.files.wordpress.com/2024/02/developer-features-wordpress.png"><img width="1600" height="1038" src="https://en-blog.files.wordpress.com/2024/02/developer-features-wordpress.png" alt="the Developer Features page on WordPress.com with an &quot;I am a developer&quot; toggle and cards displaying developer features like SFTP, SSH, WP-CLI, Staging sites, and Custom code" class="wp-image-54676" /></a></figure>
]]></content:encoded>
			<wfw:commentRss>https://foodbloggermania.it/ricetta/how-we-built-a-new-home-for-wordpress-com-developers-using-the-twenty-twenty-four-theme-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How We Built a New Home for WordPress.com Developers Using the Twenty Twenty-Four Theme</title>
		<link>https://foodbloggermania.it/ricetta/how-we-built-a-new-home-for-wordpress-com-developers-using-the-twenty-twenty-four-theme-2/</link>
		<comments>https://foodbloggermania.it/ricetta/how-we-built-a-new-home-for-wordpress-com-developers-using-the-twenty-twenty-four-theme-2/#comments</comments>
		<pubDate>Thu, 29 Feb 2024 20:55:03 +0000</pubDate>
		<dc:creator>Pani cunzatu</dc:creator>
				<category><![CDATA[Sicilia]]></category>
		<category><![CDATA[Author Automattic Author]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[FSE]]></category>
		<category><![CDATA[JS]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Twenty Twenty]]></category>
		<category><![CDATA[URI]]></category>
		<category><![CDATA[WP]]></category>

		<guid isPermaLink="false">https://foodbloggermania.it/ricetta/how-we-built-a-new-home-for-wordpress-com-developers-using-the-twenty-twenty-four-theme-2/</guid>
		<description><![CDATA[In the last few weeks, our team here at WordPress.com has rebuilt developer.wordpress.com from the ground up. If you build or design websites for other people, in any capacity, bookmark this site. It’s your new home for docs, resources, the latest news about developer features, and more.  Rather than creating a unique, custom theme, we&#160;<a href="https://foodbloggermania.it/ricetta/how-we-built-a-new-home-for-wordpress-com-developers-using-the-twenty-twenty-four-theme-2/" class="read-more">Continua a leggere..</a>]]></description>
			<content:encoded><![CDATA[<p>In the last few weeks, our team here at WordPress.com has rebuilt <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://developer.wordpress.com">developer.wordpress.com</a> from the ground up. <strong>If you build or design websites for other people, in any capacity, bookmark this site</strong>. It’s your new home for docs, resources, the latest news about developer features, and more. </p>
<p>Rather than creating a unique, custom theme, we went all-in on using <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/theme/twentytwentyfour">Twenty Twenty-Four</a>, which is the default theme for all WordPress sites.&nbsp;</p>
<p>That’s right, with a combination of built-in Site Editor functionalities and traditional PHP templates, we were able to create a site from scratch to house all of our developer resources.&nbsp;</p>
<p>Below, I outline exactly how our team did it.</p>
<h2>A Twenty Twenty-Four Child Theme</h2>
<p>The <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://developer.wordpress.com">developer.wordpress.com</a> site has existed for years, but we realized that it needed an overhaul in order to modernize the look and feel of the site with our current branding, as well as accommodate <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://developer.wordpress.com/docs/">our new developer documentation</a>.&nbsp;</p>
<p>You’ll probably agree that the site needed a refresh; here’s what <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://developer.wordpress.com">developer.wordpress.com</a> looked like two weeks ago:</p>
<div>
<figure><a target="_blank" rel="nofollow" href="https://en-blog.files.wordpress.com/2024/02/old-developer-wordpress-com-homepage.png"><img width="1600" height="1010" src="https://en-blog.files.wordpress.com/2024/02/old-developer-wordpress-com-homepage.png" alt="The old developer.wordpress.com homepage with the headline 'Howdy, Developers' on a blue background with several CTAs to get started and try WordPress.com for free" class="wp-image-54651" /></a></figure>
</div>
<p>Once we decided to redesign and rebuild the site, we had two options: 1) build it entirely from scratch or 2) use an existing theme.&nbsp;</p>
<p>We knew we wanted to use <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/support/site-editor/">Full Site Editing</a> (FSE) because it would allow us to easily use <strong>existing patterns</strong> and give our content team the <strong>best writing and editing experience </strong>without them having to commit code.</p>
<p>We considered starting from scratch and using the<a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.org/plugins/create-block-theme/"> official “Create Block Theme” plugin</a>. Building a new theme from scratch is a great option if you need something tailored to your specific needs, but Twenty Twenty-Four was already close to what we wanted, and it would give us a headstart because we can inherit most styles, templates, and code from the parent theme.</p>
<p>We quickly decided on a hybrid theme approach: we would use FSE as much as possible but still fall back to CSS and classic PHP templates where needed (like for our Docs custom post type).</p>
<p>With this in mind, we created a minimal child theme based on Twenty Twenty-Four.</p>
<h3>Spin up a scaffold with <code>@wordpress/create-block</code></h3>
<p>We initialized our new theme by running <code>npx @wordpress/create-block@latest wpcom-developer</code>.&nbsp;</p>
<p>This gave us a folder with example code, build scripts, and a plugin that would load a custom block.</p>
<p>If you only need a custom block (not a theme), you’re all set.</p>
<p><em>But we’re building a theme here! </em>Let’s work on that next.</p>
<h3>Modify the setup into a child theme</h3>
<p>First, we deleted&nbsp;<code>wpcom-developer.php</code>, the file responsible for loading our block via a plugin. We also added a <code>functions.php</code> file and a&nbsp;<code>style.css</code> file <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://developer.wordpress.org/themes/advanced-topics/child-themes/">with the expected syntax required</a> to identify this as a child theme.&nbsp;</p>
<p>Despite being a CSS file, we’re not adding any styles to the <code>style.css</code>&nbsp;file. Instead, you can think of it <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://developer.wordpress.org/themes/core-concepts/main-stylesheet/#file-header">like a documentation file</a> where <code>Template: twentytwentyfour</code> specifies that the new theme we’re creating is a child theme of Twenty Twenty-Four.</p>
<div>
<pre>
/*
Theme Name: wpcom-developer
Theme URI: https://developer.wordpress.com
Description: Twenty Twenty-Four Child theme for Developer.WordPress.com
Author: Automattic
Author URI: https://automattic.com
Template: twentytwentyfour
Version: 1.0.0
*/
</pre>
</div>
<p>We removed all of the demo files in the “src” folder and added two folders inside: one for CSS and one for JS, each containing an empty file that will be the entry point for building our code.</p>
<p>The theme folder structure now looked like this:</p>
<div>
<figure><a target="_blank" rel="nofollow" href="https://en-blog.files.wordpress.com/2024/02/child-theme-folder-structure-wordpress.png"><img width="665" height="471" src="https://en-blog.files.wordpress.com/2024/02/child-theme-folder-structure-wordpress.png" alt="A WordPress child theme folder structure" class="wp-image-54658" /></a></figure>
</div>
<p>The build scripts in <code>@wordpress/create-block</code> can build SCSS/CSS and TS/JS out of the box. It uses Webpack behind the scenes and provides a standard configuration. We can extend the default configuration further with custom entry points and plugins by adding our own <code>webpack.config.js</code> file.&nbsp;</p>
<p>By doing this, we can:</p>
<ol>
<li><strong>Build specific output files for certain sections of the site</strong>. In our case, we have both PHP templates and FSE templates from both custom code and our parent Twenty Twenty-Four theme. The FSE templates need minimal (if any) custom styling (thanks to <code>theme.json</code>), but our developer documentation area of the site uses a custom post type and page templates that require CSS.</li>
<li><strong>Remove empty JS files</strong> after building the <code>*.asset.php</code> files. Without this, an empty JS file will be generated for each CSS file.</li>
</ol>
<p><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://developer.wordpress.org/themes/advanced-topics/build-process/#configuring-webpack">Since the build process in WordPress Scripts relies on Webpack</a>, we have complete control over how we want to modify or extend the build process.&nbsp;</p>
<p>Next, we installed the required packages:</p>
<div>
<pre>
​​npm install path webpack-remove-empty-scripts --save-dev
</pre>
</div>
<p>Our <code>webpack.config.js</code> ended up looking similar to the code below. Notice that we’re simply extending the <code>defaultConfig</code> with a few extra properties.</p>
<p>Any additional entry points, in our case <code>src/docs</code>, can be added as a separate entry in the <code>entry</code> object.</p>
<div>
<pre>
// WordPress webpack config.
const defaultConfig = require( '@wordpress/scripts/config/webpack.config' );

// Plugins.
const RemoveEmptyScriptsPlugin = require( 'webpack-remove-empty-scripts' );

// Utilities.
const path = require( 'path' );

// Add any new entry points by extending the webpack config.
module.exports = {
	...defaultConfig,
	...{
		entry: {
			'css/global':  path.resolve( process.cwd(), 'src/css',   'global.scss' ),
			'js/index': path.resolve( process.cwd(), 'src/js', 'index.js' ),
		},
		plugins: &#091;
			// Include WP's plugin config.
			...defaultConfig.plugins,
			// Removes the empty `.js` files generated by webpack but
			// sets it after WP has generated its `*.asset.php` file.
			new RemoveEmptyScriptsPlugin( {
				stage: RemoveEmptyScriptsPlugin.STAGE_AFTER_PROCESS_PLUGINS
			} )
		]
	}
};
</pre>
</div>
<p>In <code>functions.php</code>, we enqueue our built assets and files depending on specific conditions. For example,&nbsp;we built separate CSS files <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://developer.wordpress.com/docs/">for the docs area of the site</a>, and we only enqueued those CSS files for our docs.&nbsp;</p>
<div>
<pre>
&lt;?php

function wpcom_developer_enqueue_styles() : void {
    wp_enqueue_style( 'wpcom-developer-style',
        get_stylesheet_directory_uri() . '/build/css/global.css'
    );
}

add_action( 'wp_enqueue_scripts', 'wpcom_developer_enqueue_styles' );
</pre>
</div>
<p>We didn&#8217;t need to register the style files from Twenty Twenty-Four, as WordPress handles these inline.</p>
<p>We <em>did</em> need to enqueue the styles for our classic, non-FSE templates (in the case of our <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://developer.wordpress.com/docs/">developer docs</a>) or any additional styles we wanted to add on top of the FSE styles.</p>
<p>To build the production JS and CSS locally, we run <code>npm run build</code>.&nbsp;</p>
<p>For local development, you can run <code>npm run start</code> in one terminal window and <code>npx wp-env start</code> (<a target="_blank" rel="nofollow" href="/redirect.php?URL=https://developer.wordpress.org/block-editor/reference-guides/packages/packages-env/">using the wp-env package</a>) in another to start a local WordPress development server running your theme.</p>
<div>
<figure><a target="_blank" rel="nofollow" href="https://en-blog.files.wordpress.com/2024/02/active-child-theme-wordpress.png"><img width="768" height="622" src="https://en-blog.files.wordpress.com/2024/02/active-child-theme-wordpress.png" alt="An active wpcom-developer child theme on a local WordPress installation" class="wp-image-54668" style="width:726px;height:auto" /></a></figure>
</div>
<p>While building this site, our team of designers, developers, and content writers used <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://developer.wordpress.com/docs/developer-tools/staging-sites/">a WordPress.com staging site</a> so that changes did not affect the existing <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://developer.wordpress.com">developer.wordpress.com</a> site until we were ready to launch this new theme.</p>
<h2><code>theme.json</code></h2>
<p>Twenty Twenty-Four has a comprehensive <code>theme.json</code> file that defines its styles. By default, our hybrid theme inherits all of the style definitions from the parent (Twenty Twenty-Four) <code>theme.json</code> file.&nbsp;</p>
<p>We selectively overwrote the parts we wanted to change (the color palette, fonts, and other brand elements), leaving the rest to be loaded from the parent theme.&nbsp;</p>
<p>WordPress handles this merging, as well as any changes you make in the editor.&nbsp;</p>
<p>Many of the default styles worked well for us, and we ended up with a compact <code>theme.json</code> file that defines colors, fonts, and gradients. Having <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://core.trac.wordpress.org/browser/branches/6.4/src/wp-content/themes/twentytwentyfour/theme.json">a copy of the parent theme’s</a> <code>theme.json</code> file makes it easier to see how colors are referenced.</p>
<p>You can change <code>theme.json</code> in your favorite code editor, or you can change it directly in the WordPress editor and <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.org/documentation/article/site-editor/#how-to-export-templates-and-styles">then download the theme files from Gutenberg</a>.</p>
<div>
<figure><a target="_blank" rel="nofollow" href="https://en-blog.files.wordpress.com/2024/02/wordpress-toolbar.png"><img width="1008" height="1340" src="https://en-blog.files.wordpress.com/2024/02/wordpress-toolbar.png" alt="WordPress settings with a red arrow pointing to the Export tool" class="wp-image-54672" style="width:555px;height:auto" /></a></figure>
</div>
<p>Why might you want to export your editor changes? Styles can then be transferred back to code to ensure they match and make it easier to distribute your theme or move it from a local development site to a live site. This ensures the FSE page templates are kept in code with version control.&nbsp;</p>
<p>When we launched this new theme on production, the template files loaded from our theme directory; we didn&#8217;t need to import database records containing the template syntax or global styles.</p>
<h3>Global styles in SCSS/CSS</h3>
<p>Global styles are added as CSS variables, and they can be referenced in CSS. Changing the value in <code>theme.json</code> will also <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://developer.wordpress.org/themes/global-settings-and-styles/settings/color/#registering-custom-color-presets">ensure that the other colors are updated</a>.</p>
<p>For example, here’s how we reference our “contrast” color as a border color:</p>
<div>
<pre>
border-color: var(--wp--preset--color--contrast);
</pre>
</div>
<h2>What about <code>header.php</code> and <code>footer.php</code>?</h2>
<p>Some plugins require these files in a theme, e.g. by calling <code>get_header()</code>, which does not automatically load the FSE header template.&nbsp;</p>
<p>We did not want to recreate our header and footer to cover those cases; having just one source of truth is a lot better.</p>
<p>By using <code>do_blocks()</code>, we were able to render our needed header block. Here’s an example from a header template file:</p>
<div>
<pre>
&lt;head&gt;
&lt;?php
wp_head();
$fse_header_block = do_blocks( '&lt;!-- wp:template-part {&quot;slug&quot;:&quot;header&quot;,&quot;theme&quot;:&quot;a8c/wpcom-developer&quot;,&quot;tagName&quot;:&quot;header&quot;,&quot;area&quot;:&quot;header&quot;, &quot;className&quot;:&quot;header-legacy&quot;} /--&gt;' );
?&gt;
&lt;/head&gt;
&lt;body &lt;?php body_class(); ?&gt;&gt;
&lt;?php
echo $fse_header_block;
</pre>
</div>
<h2>The new developer.wordpress.com site is now live!</h2>
<div>
<figure><a target="_blank" rel="nofollow" href="https://en-blog.files.wordpress.com/2024/02/new-developer-wordpress-com.png"><img width="1600" height="1170" src="https://en-blog.files.wordpress.com/2024/02/new-developer-wordpress-com.png" alt="The new developer.wordpress.com homepage with a black background, a pixelated W logo, and the headline 'Powerful WordPress Hosting for Developers'" class="wp-image-54681" /></a></figure>
</div>
<p>Check out our new-and-improved <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://www.developer.wordpress.com">developer.wordpress.com</a> site today, and leave a comment below telling us what you think. We’d love your feedback.&nbsp;</p>
<p>Using custom code and staging sites are just two of the many developer features available to WordPress.com sites that we used to build our new and improved developer.wordpress.com.</p>
<p>If you’re a developer and interested in getting early access to other development-related features, <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/me/developer">click here</a> to enable our “I am a developer” setting on your WordPress.com account.</p>
<figure><a target="_blank" rel="nofollow" href="https://en-blog.files.wordpress.com/2024/02/developer-features-wordpress.png"><img width="1600" height="1038" src="https://en-blog.files.wordpress.com/2024/02/developer-features-wordpress.png" alt="the Developer Features page on WordPress.com with an &quot;I am a developer&quot; toggle and cards displaying developer features like SFTP, SSH, WP-CLI, Staging sites, and Custom code" class="wp-image-54676" /></a></figure>
]]></content:encoded>
			<wfw:commentRss>https://foodbloggermania.it/ricetta/how-we-built-a-new-home-for-wordpress-com-developers-using-the-twenty-twenty-four-theme-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How We Built a New Home for WordPress.com Developers Using the Twenty Twenty-Four Theme</title>
		<link>https://foodbloggermania.it/ricetta/how-we-built-a-new-home-for-wordpress-com-developers-using-the-twenty-twenty-four-theme/</link>
		<comments>https://foodbloggermania.it/ricetta/how-we-built-a-new-home-for-wordpress-com-developers-using-the-twenty-twenty-four-theme/#comments</comments>
		<pubDate>Thu, 29 Feb 2024 20:55:03 +0000</pubDate>
		<dc:creator>Ragazze conTorte</dc:creator>
				<category><![CDATA[Lazio]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[FSE]]></category>
		<category><![CDATA[JS]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Theme Name]]></category>
		<category><![CDATA[Twenty Twenty]]></category>
		<category><![CDATA[URI]]></category>
		<category><![CDATA[WP]]></category>

		<guid isPermaLink="false">https://foodbloggermania.it/ricetta/how-we-built-a-new-home-for-wordpress-com-developers-using-the-twenty-twenty-four-theme/</guid>
		<description><![CDATA[In the last few weeks, our team here at WordPress.com has rebuilt developer.wordpress.com from the ground up. If you build or design websites for other people, in any capacity, bookmark this site. It’s your new home for docs, resources, the latest news about developer features, and more.  Rather than creating a unique, custom theme, we&#160;<a href="https://foodbloggermania.it/ricetta/how-we-built-a-new-home-for-wordpress-com-developers-using-the-twenty-twenty-four-theme/" class="read-more">Continua a leggere..</a>]]></description>
			<content:encoded><![CDATA[<p>In the last few weeks, our team here at WordPress.com has rebuilt <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://developer.wordpress.com">developer.wordpress.com</a> from the ground up. <strong>If you build or design websites for other people, in any capacity, bookmark this site</strong>. It’s your new home for docs, resources, the latest news about developer features, and more. </p>
<p>Rather than creating a unique, custom theme, we went all-in on using <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/theme/twentytwentyfour">Twenty Twenty-Four</a>, which is the default theme for all WordPress sites.&nbsp;</p>
<p>That’s right, with a combination of built-in Site Editor functionalities and traditional PHP templates, we were able to create a site from scratch to house all of our developer resources.&nbsp;</p>
<p>Below, I outline exactly how our team did it.</p>
<h2>A Twenty Twenty-Four Child Theme</h2>
<p>The <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://developer.wordpress.com">developer.wordpress.com</a> site has existed for years, but we realized that it needed an overhaul in order to modernize the look and feel of the site with our current branding, as well as accommodate <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://developer.wordpress.com/docs/">our new developer documentation</a>.&nbsp;</p>
<p>You’ll probably agree that the site needed a refresh; here’s what <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://developer.wordpress.com">developer.wordpress.com</a> looked like two weeks ago:</p>
<div>
<figure><a target="_blank" rel="nofollow" href="https://en-blog.files.wordpress.com/2024/02/old-developer-wordpress-com-homepage.png"><img width="1600" height="1010" src="https://en-blog.files.wordpress.com/2024/02/old-developer-wordpress-com-homepage.png" alt="The old developer.wordpress.com homepage with the headline 'Howdy, Developers' on a blue background with several CTAs to get started and try WordPress.com for free" class="wp-image-54651" /></a></figure>
</div>
<p>Once we decided to redesign and rebuild the site, we had two options: 1) build it entirely from scratch or 2) use an existing theme.&nbsp;</p>
<p>We knew we wanted to use <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/support/site-editor/">Full Site Editing</a> (FSE) because it would allow us to easily use <strong>existing patterns</strong> and give our content team the <strong>best writing and editing experience </strong>without them having to commit code.</p>
<p>We considered starting from scratch and using the<a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.org/plugins/create-block-theme/"> official “Create Block Theme” plugin</a>. Building a new theme from scratch is a great option if you need something tailored to your specific needs, but Twenty Twenty-Four was already close to what we wanted, and it would give us a headstart because we can inherit most styles, templates, and code from the parent theme.</p>
<p>We quickly decided on a hybrid theme approach: we would use FSE as much as possible but still fall back to CSS and classic PHP templates where needed (like for our Docs custom post type).</p>
<p>With this in mind, we created a minimal child theme based on Twenty Twenty-Four.</p>
<h3>Spin up a scaffold with <code>@wordpress/create-block</code></h3>
<p>We initialized our new theme by running <code>npx @wordpress/create-block@latest wpcom-developer</code>.&nbsp;</p>
<p>This gave us a folder with example code, build scripts, and a plugin that would load a custom block.</p>
<p>If you only need a custom block (not a theme), you’re all set.</p>
<p><em>But we’re building a theme here! </em>Let’s work on that next.</p>
<h3>Modify the setup into a child theme</h3>
<p>First, we deleted&nbsp;<code>wpcom-developer.php</code>, the file responsible for loading our block via a plugin. We also added a <code>functions.php</code> file and a&nbsp;<code>style.css</code> file <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://developer.wordpress.org/themes/advanced-topics/child-themes/">with the expected syntax required</a> to identify this as a child theme.&nbsp;</p>
<p>Despite being a CSS file, we’re not adding any styles to the <code>style.css</code>&nbsp;file. Instead, you can think of it <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://developer.wordpress.org/themes/core-concepts/main-stylesheet/#file-header">like a documentation file</a> where <code>Template: twentytwentyfour</code> specifies that the new theme we’re creating is a child theme of Twenty Twenty-Four.</p>
<div>
<pre>
/*
Theme Name: wpcom-developer
Theme URI: https://developer.wordpress.com
Description: Twenty Twenty-Four Child theme for Developer.WordPress.com
Author: Automattic
Author URI: https://automattic.com
Template: twentytwentyfour
Version: 1.0.0
*/
</pre>
</div>
<p>We removed all of the demo files in the “src” folder and added two folders inside: one for CSS and one for JS, each containing an empty file that will be the entry point for building our code.</p>
<p>The theme folder structure now looked like this:</p>
<div>
<figure><a target="_blank" rel="nofollow" href="https://en-blog.files.wordpress.com/2024/02/child-theme-folder-structure-wordpress.png"><img width="665" height="471" src="https://en-blog.files.wordpress.com/2024/02/child-theme-folder-structure-wordpress.png" alt="A WordPress child theme folder structure" class="wp-image-54658" /></a></figure>
</div>
<p>The build scripts in <code>@wordpress/create-block</code> can build SCSS/CSS and TS/JS out of the box. It uses Webpack behind the scenes and provides a standard configuration. We can extend the default configuration further with custom entry points and plugins by adding our own <code>webpack.config.js</code> file.&nbsp;</p>
<p>By doing this, we can:</p>
<ol>
<li><strong>Build specific output files for certain sections of the site</strong>. In our case, we have both PHP templates and FSE templates from both custom code and our parent Twenty Twenty-Four theme. The FSE templates need minimal (if any) custom styling (thanks to <code>theme.json</code>), but our developer documentation area of the site uses a custom post type and page templates that require CSS.</li>
<li><strong>Remove empty JS files</strong> after building the <code>*.asset.php</code> files. Without this, an empty JS file will be generated for each CSS file.</li>
</ol>
<p><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://developer.wordpress.org/themes/advanced-topics/build-process/#configuring-webpack">Since the build process in WordPress Scripts relies on Webpack</a>, we have complete control over how we want to modify or extend the build process.&nbsp;</p>
<p>Next, we installed the required packages:</p>
<div>
<pre>
​​npm install path webpack-remove-empty-scripts --save-dev
</pre>
</div>
<p>Our <code>webpack.config.js</code> ended up looking similar to the code below. Notice that we’re simply extending the <code>defaultConfig</code> with a few extra properties.</p>
<p>Any additional entry points, in our case <code>src/docs</code>, can be added as a separate entry in the <code>entry</code> object.</p>
<div>
<pre>
// WordPress webpack config.
const defaultConfig = require( '@wordpress/scripts/config/webpack.config' );

// Plugins.
const RemoveEmptyScriptsPlugin = require( 'webpack-remove-empty-scripts' );

// Utilities.
const path = require( 'path' );

// Add any new entry points by extending the webpack config.
module.exports = {
	...defaultConfig,
	...{
		entry: {
			'css/global':  path.resolve( process.cwd(), 'src/css',   'global.scss' ),
			'js/index': path.resolve( process.cwd(), 'src/js', 'index.js' ),
		},
		plugins: &#091;
			// Include WP's plugin config.
			...defaultConfig.plugins,
			// Removes the empty `.js` files generated by webpack but
			// sets it after WP has generated its `*.asset.php` file.
			new RemoveEmptyScriptsPlugin( {
				stage: RemoveEmptyScriptsPlugin.STAGE_AFTER_PROCESS_PLUGINS
			} )
		]
	}
};
</pre>
</div>
<p>In <code>functions.php</code>, we enqueue our built assets and files depending on specific conditions. For example,&nbsp;we built separate CSS files <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://developer.wordpress.com/docs/">for the docs area of the site</a>, and we only enqueued those CSS files for our docs.&nbsp;</p>
<div>
<pre>
&lt;?php

function wpcom_developer_enqueue_styles() : void {
    wp_enqueue_style( 'wpcom-developer-style',
        get_stylesheet_directory_uri() . '/build/css/global.css'
    );
}

add_action( 'wp_enqueue_scripts', 'wpcom_developer_enqueue_styles' );
</pre>
</div>
<p>We didn&#8217;t need to register the style files from Twenty Twenty-Four, as WordPress handles these inline.</p>
<p>We <em>did</em> need to enqueue the styles for our classic, non-FSE templates (in the case of our <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://developer.wordpress.com/docs/">developer docs</a>) or any additional styles we wanted to add on top of the FSE styles.</p>
<p>To build the production JS and CSS locally, we run <code>npm run build</code>.&nbsp;</p>
<p>For local development, you can run <code>npm run start</code> in one terminal window and <code>npx wp-env start</code> (<a target="_blank" rel="nofollow" href="/redirect.php?URL=https://developer.wordpress.org/block-editor/reference-guides/packages/packages-env/">using the wp-env package</a>) in another to start a local WordPress development server running your theme.</p>
<div>
<figure><a target="_blank" rel="nofollow" href="https://en-blog.files.wordpress.com/2024/02/active-child-theme-wordpress.png"><img width="768" height="622" src="https://en-blog.files.wordpress.com/2024/02/active-child-theme-wordpress.png" alt="An active wpcom-developer child theme on a local WordPress installation" class="wp-image-54668" style="width:726px;height:auto" /></a></figure>
</div>
<p>While building this site, our team of designers, developers, and content writers used <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://developer.wordpress.com/docs/developer-tools/staging-sites/">a WordPress.com staging site</a> so that changes did not affect the existing <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://developer.wordpress.com">developer.wordpress.com</a> site until we were ready to launch this new theme.</p>
<h2><code>theme.json</code></h2>
<p>Twenty Twenty-Four has a comprehensive <code>theme.json</code> file that defines its styles. By default, our hybrid theme inherits all of the style definitions from the parent (Twenty Twenty-Four) <code>theme.json</code> file.&nbsp;</p>
<p>We selectively overwrote the parts we wanted to change (the color palette, fonts, and other brand elements), leaving the rest to be loaded from the parent theme.&nbsp;</p>
<p>WordPress handles this merging, as well as any changes you make in the editor.&nbsp;</p>
<p>Many of the default styles worked well for us, and we ended up with a compact <code>theme.json</code> file that defines colors, fonts, and gradients. Having <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://core.trac.wordpress.org/browser/branches/6.4/src/wp-content/themes/twentytwentyfour/theme.json">a copy of the parent theme’s</a> <code>theme.json</code> file makes it easier to see how colors are referenced.</p>
<p>You can change <code>theme.json</code> in your favorite code editor, or you can change it directly in the WordPress editor and <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.org/documentation/article/site-editor/#how-to-export-templates-and-styles">then download the theme files from Gutenberg</a>.</p>
<div>
<figure><a target="_blank" rel="nofollow" href="https://en-blog.files.wordpress.com/2024/02/wordpress-toolbar.png"><img width="1008" height="1340" src="https://en-blog.files.wordpress.com/2024/02/wordpress-toolbar.png" alt="WordPress settings with a red arrow pointing to the Export tool" class="wp-image-54672" style="width:555px;height:auto" /></a></figure>
</div>
<p>Why might you want to export your editor changes? Styles can then be transferred back to code to ensure they match and make it easier to distribute your theme or move it from a local development site to a live site. This ensures the FSE page templates are kept in code with version control.&nbsp;</p>
<p>When we launched this new theme on production, the template files loaded from our theme directory; we didn&#8217;t need to import database records containing the template syntax or global styles.</p>
<h3>Global styles in SCSS/CSS</h3>
<p>Global styles are added as CSS variables, and they can be referenced in CSS. Changing the value in <code>theme.json</code> will also <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://developer.wordpress.org/themes/global-settings-and-styles/settings/color/#registering-custom-color-presets">ensure that the other colors are updated</a>.</p>
<p>For example, here’s how we reference our “contrast” color as a border color:</p>
<div>
<pre>
border-color: var(--wp--preset--color--contrast);
</pre>
</div>
<h2>What about <code>header.php</code> and <code>footer.php</code>?</h2>
<p>Some plugins require these files in a theme, e.g. by calling <code>get_header()</code>, which does not automatically load the FSE header template.&nbsp;</p>
<p>We did not want to recreate our header and footer to cover those cases; having just one source of truth is a lot better.</p>
<p>By using <code>do_blocks()</code>, we were able to render our needed header block. Here’s an example from a header template file:</p>
<div>
<pre>
&lt;head&gt;
&lt;?php
wp_head();
$fse_header_block = do_blocks( '&lt;!-- wp:template-part {&quot;slug&quot;:&quot;header&quot;,&quot;theme&quot;:&quot;a8c/wpcom-developer&quot;,&quot;tagName&quot;:&quot;header&quot;,&quot;area&quot;:&quot;header&quot;, &quot;className&quot;:&quot;header-legacy&quot;} /--&gt;' );
?&gt;
&lt;/head&gt;
&lt;body &lt;?php body_class(); ?&gt;&gt;
&lt;?php
echo $fse_header_block;
</pre>
</div>
<h2>The new developer.wordpress.com site is now live!</h2>
<div>
<figure><a target="_blank" rel="nofollow" href="https://en-blog.files.wordpress.com/2024/02/new-developer-wordpress-com.png"><img width="1600" height="1170" src="https://en-blog.files.wordpress.com/2024/02/new-developer-wordpress-com.png" alt="The new developer.wordpress.com homepage with a black background, a pixelated W logo, and the headline 'Powerful WordPress Hosting for Developers'" class="wp-image-54681" /></a></figure>
</div>
<p>Check out our new-and-improved <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://www.developer.wordpress.com">developer.wordpress.com</a> site today, and leave a comment below telling us what you think. We’d love your feedback.&nbsp;</p>
<p>Using custom code and staging sites are just two of the many developer features available to WordPress.com sites that we used to build our new and improved developer.wordpress.com.</p>
<p>If you’re a developer and interested in getting early access to other development-related features, <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/me/developer">click here</a> to enable our “I am a developer” setting on your WordPress.com account.</p>
<figure><a target="_blank" rel="nofollow" href="https://en-blog.files.wordpress.com/2024/02/developer-features-wordpress.png"><img width="1600" height="1038" src="https://en-blog.files.wordpress.com/2024/02/developer-features-wordpress.png" alt="the Developer Features page on WordPress.com with an &quot;I am a developer&quot; toggle and cards displaying developer features like SFTP, SSH, WP-CLI, Staging sites, and Custom code" class="wp-image-54676" /></a></figure>
]]></content:encoded>
			<wfw:commentRss>https://foodbloggermania.it/ricetta/how-we-built-a-new-home-for-wordpress-com-developers-using-the-twenty-twenty-four-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customize Your Entire Site With New Block Themes</title>
		<link>https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-11/</link>
		<comments>https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-11/#comments</comments>
		<pubDate>Wed, 09 Mar 2022 14:00:00 +0000</pubDate>
		<dc:creator>Gemma archeologa tra i fornelli.</dc:creator>
				<category><![CDATA[Toscana]]></category>
		<category><![CDATA[FSE]]></category>
		<category><![CDATA[Full Site Editing]]></category>
		<category><![CDATA[Global Styles]]></category>
		<category><![CDATA[Site Editor]]></category>
		<category><![CDATA[Theme Showcase]]></category>
		<category><![CDATA[Twenty Twenty]]></category>

		<guid isPermaLink="false">https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-11/</guid>
		<description><![CDATA[In case you missed it, we&#8217;ve been rolling out a new set of powerful site design tools called Full Site Editing (or “FSE”) and it&#8217;s now available for all WordPress.com users! Don’t worry if you’re just hearing about Full Site Editing for the first time. We’ve been releasing these new tools in a way that&#160;<a href="https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-11/" class="read-more">Continua a leggere..</a>]]></description>
			<content:encoded><![CDATA[<p>In case you missed it, we&#8217;ve been rolling out a new set of powerful site design tools called <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/blog/2022/02/04/full-site-editing-on-wordpress-com/">Full Site Editing</a> (or “FSE”) and it&#8217;s now available for all WordPress.com users! </p>
<p>Don’t worry if you’re just hearing about Full Site Editing for the first time. We’ve been releasing these new tools in a way that doesn’t actually require you to do anything with your existing site(s). If you are up for a change though, we&#8217;re happy to announce the launch of a brand new family of themes made specifically with Full Site Editing features in mind. As of this writing we have over two dozen themes available that support Full Site Editing. </p>
<div></div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/marl"><img src="https://en-blog.files.wordpress.com/2022/03/marl.jpg?w=1024" alt="" class="wp-image-46005" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/marl">Marl →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/hari"><img src="https://en-blog.files.wordpress.com/2022/03/hari.jpg?w=720" alt="" class="wp-image-46004" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/hari">Hari →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/alonso"><img src="https://en-blog.files.wordpress.com/2022/03/alonso.jpg?w=720" alt="" class="wp-image-46002" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/alonso">Alonso →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/stewart"><img src="https://en-blog.files.wordpress.com/2022/03/stewart.jpg?w=1024" alt="" class="wp-image-45979" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/stewart">Stewart →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/winkel"><img src="https://en-blog.files.wordpress.com/2022/03/winkel.jpg?w=720" alt="" class="wp-image-46001" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/winkel">Winkel →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/videomaker"><img src="https://en-blog.files.wordpress.com/2022/03/videomaker.jpg?w=1024" alt="" class="wp-image-45980" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/videomaker">Videomaker →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/barnett"><img src="https://en-blog.files.wordpress.com/2022/03/barnett.jpg" alt="" class="wp-image-45952" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/barnett">Barnett →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/livro"><img src="https://en-blog.files.wordpress.com/2022/03/livro.jpg?w=1024" alt="" class="wp-image-45962" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/livro">Livro →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/farrow"><img src="https://en-blog.files.wordpress.com/2022/03/farrow.jpg?w=1024" alt="" class="wp-image-45983" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/farrow">Farrow →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/bennett"><img src="https://en-blog.files.wordpress.com/2022/03/bennett.jpg?w=1024" alt="" class="wp-image-45957" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/bennett">Bennett →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/kingsley"><img src="https://en-blog.files.wordpress.com/2022/03/kingsley.jpg?w=1024" alt="" class="wp-image-45967" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/kingsley">Kingsley →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/dorna"><img src="https://en-blog.files.wordpress.com/2022/03/dorna.jpg?w=720" alt="" class="wp-image-46000" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/dorna">Dorna →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/byrne"><img src="https://en-blog.files.wordpress.com/2022/03/byrne.jpg?w=1024" alt="" class="wp-image-45958" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/byrne">Byrne →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist"><img src="https://en-blog.files.wordpress.com/2022/03/geologist.jpg?w=1024" alt="" class="wp-image-45963" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist">Geologist →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/arbutus"><img src="https://en-blog.files.wordpress.com/2022/03/arbutus.jpg" alt="" class="wp-image-45951" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/arbutus">Arbutus →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo"><img src="https://en-blog.files.wordpress.com/2022/03/tt2.jpg?w=1024" alt="" class="wp-image-46009" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo">Twenty Twenty-Two →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/payton"><img src="https://en-blog.files.wordpress.com/2022/03/payton.jpg?w=1024" alt="" class="wp-image-45969" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/payton">Payton →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baxter"><img src="https://en-blog.files.wordpress.com/2022/03/baxter.jpg?w=1024" alt="" class="wp-image-45956" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baxter">Baxter →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/jackson"><img src="https://en-blog.files.wordpress.com/2022/03/jackson.jpg?w=1024" alt="" class="wp-image-45959" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/jackson">Jackson →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/ames"><img src="https://en-blog.files.wordpress.com/2022/03/ames.jpg" alt="" class="wp-image-45949" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/ames">Ames →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/attar"><img src="https://en-blog.files.wordpress.com/2022/03/attar.jpg?w=720" alt="" class="wp-image-46003" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/attar">Attar →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/russell"><img src="https://en-blog.files.wordpress.com/2022/03/russell.jpg?w=1024" alt="" class="wp-image-45986" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/russell">Russell →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/calvin"><img src="https://en-blog.files.wordpress.com/2022/03/calvin.jpg?w=1024" alt="" class="wp-image-45960" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/calvin">Calvin →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baker"><img src="https://en-blog.files.wordpress.com/2022/03/kerr.jpg?w=1024" alt="" class="wp-image-45968" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baker">Baker →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat.jpg?w=1024" alt="" class="wp-image-45975" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat">Quadrat →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/skivers"><img src="https://en-blog.files.wordpress.com/2022/03/videomaker-white-1.jpg?w=1024" alt="" class="wp-image-45987" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/skivers">Skivers →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/zoologist"><img src="https://en-blog.files.wordpress.com/2022/03/zoologist.jpg?w=1024" alt="" class="wp-image-45982" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/zoologist">Zoologist →</a></figcaption>
</figure>
</div>
</div>
<p>These new themes have been designed with a wide variety of sites cases in mind. But their potential stretches well beyond their screenshots and demo sites. Because each theme is fully editable in the Site Editor, every one of these themes can be heavily customized to fit your site&#8217;s needs. You can start with theme that features single minimalist homepage, and then add as many menus and sidebars as you wish. Or, you can start with a complex business theme and strip it down to something minimal to suit your vision.</p>
<p>The Site Editor also includes a new feature called &#8220;<a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/support/using-styles/">Global Styles</a>,&#8221; which allows you to edit site-wide settings for color, typography, and more. You&#8217;re free to change your theme&#8217;s default color scheme to whatever fits your mood, or even make all site text larger or smaller in a couple of clicks. To kick off this new feature, we&#8217;re also providing a few pre-built variations on some of these new themes.</p>
<div></div>
<figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-slate"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-slate.jpg?w=1024" alt="" class="wp-image-45964" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-pink"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-pink.jpg?w=1024" alt="" class="wp-image-45976" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-blue"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-blue.jpg?w=1024" alt="" class="wp-image-45985" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-white"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-white.jpg?w=1024" alt="" class="wp-image-45970" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/videomaker-white"><img src="https://en-blog.files.wordpress.com/2022/03/videomaker-white.jpg?w=1024" alt="" class="wp-image-45981" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-yellow"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-yellow.jpg?w=1024" alt="" class="wp-image-45965" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-yellow"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-yellow.jpg?w=1024" alt="" class="wp-image-45974" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-red"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-red.jpg?w=1024" alt="" class="wp-image-45978" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-blue"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-blue.jpg?w=1024" alt="" class="wp-image-45966" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-swiss"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-swiss.jpg?w=1024" alt="" class="wp-image-45984" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-red"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-red.jpg?w=1024" alt="" class="wp-image-45971" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-mint"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-mint.jpg?w=1024" alt="" class="wp-image-45973" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-green"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-green.jpg?w=1024" alt="" class="wp-image-45977" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-cream"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-cream.jpg?w=1024" alt="" class="wp-image-45961" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-black"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-yellow-1.jpg?w=1024" alt="" class="wp-image-45972" /></a></figure>
</figure>
<div></div>
<p>All the new themes and variations can be found in the <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/">Theme Showcase</a>. Or, if you&#8217;re starting a fresh site, they&#8217;ll be offered to you automatically in the site creation flow. This collection of themes is just the beginning, and we&#8217;re excited to continue launching a variety of diverse theme options for you. What would you like to see in the next set of themes on WordPress.com?</p>
]]></content:encoded>
			<wfw:commentRss>https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customize Your Entire Site With New Block Themes</title>
		<link>https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-10/</link>
		<comments>https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-10/#comments</comments>
		<pubDate>Wed, 09 Mar 2022 14:00:00 +0000</pubDate>
		<dc:creator>fucinaidee</dc:creator>
				<category><![CDATA[Veneto]]></category>
		<category><![CDATA[FSE]]></category>
		<category><![CDATA[Full Site Editing]]></category>
		<category><![CDATA[Global Styles]]></category>
		<category><![CDATA[Site Editor]]></category>
		<category><![CDATA[Theme Showcase]]></category>
		<category><![CDATA[Twenty Twenty]]></category>

		<guid isPermaLink="false">https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-10/</guid>
		<description><![CDATA[In case you missed it, we&#8217;ve been rolling out a new set of powerful site design tools called Full Site Editing (or “FSE”) and it&#8217;s now available for all WordPress.com users! Don’t worry if you’re just hearing about Full Site Editing for the first time. We’ve been releasing these new tools in a way that&#160;<a href="https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-10/" class="read-more">Continua a leggere..</a>]]></description>
			<content:encoded><![CDATA[<p>In case you missed it, we&#8217;ve been rolling out a new set of powerful site design tools called <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/blog/2022/02/04/full-site-editing-on-wordpress-com/">Full Site Editing</a> (or “FSE”) and it&#8217;s now available for all WordPress.com users! </p>
<p>Don’t worry if you’re just hearing about Full Site Editing for the first time. We’ve been releasing these new tools in a way that doesn’t actually require you to do anything with your existing site(s). If you are up for a change though, we&#8217;re happy to announce the launch of a brand new family of themes made specifically with Full Site Editing features in mind. As of this writing we have over two dozen themes available that support Full Site Editing. </p>
<div></div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/marl"><img src="https://en-blog.files.wordpress.com/2022/03/marl.jpg?w=1024" alt="" class="wp-image-46005" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/marl">Marl →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/hari"><img src="https://en-blog.files.wordpress.com/2022/03/hari.jpg?w=720" alt="" class="wp-image-46004" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/hari">Hari →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/alonso"><img src="https://en-blog.files.wordpress.com/2022/03/alonso.jpg?w=720" alt="" class="wp-image-46002" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/alonso">Alonso →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/stewart"><img src="https://en-blog.files.wordpress.com/2022/03/stewart.jpg?w=1024" alt="" class="wp-image-45979" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/stewart">Stewart →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/winkel"><img src="https://en-blog.files.wordpress.com/2022/03/winkel.jpg?w=720" alt="" class="wp-image-46001" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/winkel">Winkel →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/videomaker"><img src="https://en-blog.files.wordpress.com/2022/03/videomaker.jpg?w=1024" alt="" class="wp-image-45980" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/videomaker">Videomaker →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/barnett"><img src="https://en-blog.files.wordpress.com/2022/03/barnett.jpg" alt="" class="wp-image-45952" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/barnett">Barnett →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/livro"><img src="https://en-blog.files.wordpress.com/2022/03/livro.jpg?w=1024" alt="" class="wp-image-45962" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/livro">Livro →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/farrow"><img src="https://en-blog.files.wordpress.com/2022/03/farrow.jpg?w=1024" alt="" class="wp-image-45983" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/farrow">Farrow →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/bennett"><img src="https://en-blog.files.wordpress.com/2022/03/bennett.jpg?w=1024" alt="" class="wp-image-45957" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/bennett">Bennett →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/kingsley"><img src="https://en-blog.files.wordpress.com/2022/03/kingsley.jpg?w=1024" alt="" class="wp-image-45967" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/kingsley">Kingsley →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/dorna"><img src="https://en-blog.files.wordpress.com/2022/03/dorna.jpg?w=720" alt="" class="wp-image-46000" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/dorna">Dorna →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/byrne"><img src="https://en-blog.files.wordpress.com/2022/03/byrne.jpg?w=1024" alt="" class="wp-image-45958" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/byrne">Byrne →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist"><img src="https://en-blog.files.wordpress.com/2022/03/geologist.jpg?w=1024" alt="" class="wp-image-45963" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist">Geologist →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/arbutus"><img src="https://en-blog.files.wordpress.com/2022/03/arbutus.jpg" alt="" class="wp-image-45951" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/arbutus">Arbutus →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo"><img src="https://en-blog.files.wordpress.com/2022/03/tt2.jpg?w=1024" alt="" class="wp-image-46009" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo">Twenty Twenty-Two →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/payton"><img src="https://en-blog.files.wordpress.com/2022/03/payton.jpg?w=1024" alt="" class="wp-image-45969" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/payton">Payton →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baxter"><img src="https://en-blog.files.wordpress.com/2022/03/baxter.jpg?w=1024" alt="" class="wp-image-45956" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baxter">Baxter →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/jackson"><img src="https://en-blog.files.wordpress.com/2022/03/jackson.jpg?w=1024" alt="" class="wp-image-45959" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/jackson">Jackson →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/ames"><img src="https://en-blog.files.wordpress.com/2022/03/ames.jpg" alt="" class="wp-image-45949" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/ames">Ames →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/attar"><img src="https://en-blog.files.wordpress.com/2022/03/attar.jpg?w=720" alt="" class="wp-image-46003" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/attar">Attar →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/russell"><img src="https://en-blog.files.wordpress.com/2022/03/russell.jpg?w=1024" alt="" class="wp-image-45986" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/russell">Russell →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/calvin"><img src="https://en-blog.files.wordpress.com/2022/03/calvin.jpg?w=1024" alt="" class="wp-image-45960" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/calvin">Calvin →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baker"><img src="https://en-blog.files.wordpress.com/2022/03/kerr.jpg?w=1024" alt="" class="wp-image-45968" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baker">Baker →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat.jpg?w=1024" alt="" class="wp-image-45975" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat">Quadrat →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/skivers"><img src="https://en-blog.files.wordpress.com/2022/03/videomaker-white-1.jpg?w=1024" alt="" class="wp-image-45987" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/skivers">Skivers →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/zoologist"><img src="https://en-blog.files.wordpress.com/2022/03/zoologist.jpg?w=1024" alt="" class="wp-image-45982" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/zoologist">Zoologist →</a></figcaption>
</figure>
</div>
</div>
<p>These new themes have been designed with a wide variety of sites cases in mind. But their potential stretches well beyond their screenshots and demo sites. Because each theme is fully editable in the Site Editor, every one of these themes can be heavily customized to fit your site&#8217;s needs. You can start with theme that features single minimalist homepage, and then add as many menus and sidebars as you wish. Or, you can start with a complex business theme and strip it down to something minimal to suit your vision.</p>
<p>The Site Editor also includes a new feature called &#8220;<a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/support/using-styles/">Global Styles</a>,&#8221; which allows you to edit site-wide settings for color, typography, and more. You&#8217;re free to change your theme&#8217;s default color scheme to whatever fits your mood, or even make all site text larger or smaller in a couple of clicks. To kick off this new feature, we&#8217;re also providing a few pre-built variations on some of these new themes.</p>
<div></div>
<figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-slate"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-slate.jpg?w=1024" alt="" class="wp-image-45964" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-pink"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-pink.jpg?w=1024" alt="" class="wp-image-45976" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-blue"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-blue.jpg?w=1024" alt="" class="wp-image-45985" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-white"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-white.jpg?w=1024" alt="" class="wp-image-45970" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/videomaker-white"><img src="https://en-blog.files.wordpress.com/2022/03/videomaker-white.jpg?w=1024" alt="" class="wp-image-45981" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-yellow"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-yellow.jpg?w=1024" alt="" class="wp-image-45965" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-yellow"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-yellow.jpg?w=1024" alt="" class="wp-image-45974" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-red"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-red.jpg?w=1024" alt="" class="wp-image-45978" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-blue"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-blue.jpg?w=1024" alt="" class="wp-image-45966" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-swiss"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-swiss.jpg?w=1024" alt="" class="wp-image-45984" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-red"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-red.jpg?w=1024" alt="" class="wp-image-45971" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-mint"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-mint.jpg?w=1024" alt="" class="wp-image-45973" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-green"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-green.jpg?w=1024" alt="" class="wp-image-45977" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-cream"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-cream.jpg?w=1024" alt="" class="wp-image-45961" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-black"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-yellow-1.jpg?w=1024" alt="" class="wp-image-45972" /></a></figure>
</figure>
<div></div>
<p>All the new themes and variations can be found in the <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/">Theme Showcase</a>. Or, if you&#8217;re starting a fresh site, they&#8217;ll be offered to you automatically in the site creation flow. This collection of themes is just the beginning, and we&#8217;re excited to continue launching a variety of diverse theme options for you. What would you like to see in the next set of themes on WordPress.com?</p>
]]></content:encoded>
			<wfw:commentRss>https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customize Your Entire Site With New Block Themes</title>
		<link>https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-9/</link>
		<comments>https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-9/#comments</comments>
		<pubDate>Wed, 09 Mar 2022 14:00:00 +0000</pubDate>
		<dc:creator>claudialuca90</dc:creator>
				<category><![CDATA[Sicilia]]></category>
		<category><![CDATA[FSE]]></category>
		<category><![CDATA[Full Site Editing]]></category>
		<category><![CDATA[Global Styles]]></category>
		<category><![CDATA[Site Editor]]></category>
		<category><![CDATA[Theme Showcase]]></category>
		<category><![CDATA[Twenty Twenty]]></category>

		<guid isPermaLink="false">https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-9/</guid>
		<description><![CDATA[In case you missed it, we&#8217;ve been rolling out a new set of powerful site design tools called Full Site Editing (or “FSE”) and it&#8217;s now available for all WordPress.com users! Don’t worry if you’re just hearing about Full Site Editing for the first time. We’ve been releasing these new tools in a way that&#160;<a href="https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-9/" class="read-more">Continua a leggere..</a>]]></description>
			<content:encoded><![CDATA[<p>In case you missed it, we&#8217;ve been rolling out a new set of powerful site design tools called <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/blog/2022/02/04/full-site-editing-on-wordpress-com/">Full Site Editing</a> (or “FSE”) and it&#8217;s now available for all WordPress.com users! </p>
<p>Don’t worry if you’re just hearing about Full Site Editing for the first time. We’ve been releasing these new tools in a way that doesn’t actually require you to do anything with your existing site(s). If you are up for a change though, we&#8217;re happy to announce the launch of a brand new family of themes made specifically with Full Site Editing features in mind. As of this writing we have over two dozen themes available that support Full Site Editing. </p>
<div></div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/marl"><img src="https://en-blog.files.wordpress.com/2022/03/marl.jpg?w=1024" alt="" class="wp-image-46005" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/marl">Marl →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/hari"><img src="https://en-blog.files.wordpress.com/2022/03/hari.jpg?w=720" alt="" class="wp-image-46004" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/hari">Hari →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/alonso"><img src="https://en-blog.files.wordpress.com/2022/03/alonso.jpg?w=720" alt="" class="wp-image-46002" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/alonso">Alonso →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/stewart"><img src="https://en-blog.files.wordpress.com/2022/03/stewart.jpg?w=1024" alt="" class="wp-image-45979" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/stewart">Stewart →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/winkel"><img src="https://en-blog.files.wordpress.com/2022/03/winkel.jpg?w=720" alt="" class="wp-image-46001" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/winkel">Winkel →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/videomaker"><img src="https://en-blog.files.wordpress.com/2022/03/videomaker.jpg?w=1024" alt="" class="wp-image-45980" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/videomaker">Videomaker →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/barnett"><img src="https://en-blog.files.wordpress.com/2022/03/barnett.jpg" alt="" class="wp-image-45952" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/barnett">Barnett →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/livro"><img src="https://en-blog.files.wordpress.com/2022/03/livro.jpg?w=1024" alt="" class="wp-image-45962" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/livro">Livro →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/farrow"><img src="https://en-blog.files.wordpress.com/2022/03/farrow.jpg?w=1024" alt="" class="wp-image-45983" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/farrow">Farrow →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/bennett"><img src="https://en-blog.files.wordpress.com/2022/03/bennett.jpg?w=1024" alt="" class="wp-image-45957" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/bennett">Bennett →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/kingsley"><img src="https://en-blog.files.wordpress.com/2022/03/kingsley.jpg?w=1024" alt="" class="wp-image-45967" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/kingsley">Kingsley →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/dorna"><img src="https://en-blog.files.wordpress.com/2022/03/dorna.jpg?w=720" alt="" class="wp-image-46000" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/dorna">Dorna →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/byrne"><img src="https://en-blog.files.wordpress.com/2022/03/byrne.jpg?w=1024" alt="" class="wp-image-45958" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/byrne">Byrne →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist"><img src="https://en-blog.files.wordpress.com/2022/03/geologist.jpg?w=1024" alt="" class="wp-image-45963" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist">Geologist →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/arbutus"><img src="https://en-blog.files.wordpress.com/2022/03/arbutus.jpg" alt="" class="wp-image-45951" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/arbutus">Arbutus →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo"><img src="https://en-blog.files.wordpress.com/2022/03/tt2.jpg?w=1024" alt="" class="wp-image-46009" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo">Twenty Twenty-Two →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/payton"><img src="https://en-blog.files.wordpress.com/2022/03/payton.jpg?w=1024" alt="" class="wp-image-45969" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/payton">Payton →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baxter"><img src="https://en-blog.files.wordpress.com/2022/03/baxter.jpg?w=1024" alt="" class="wp-image-45956" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baxter">Baxter →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/jackson"><img src="https://en-blog.files.wordpress.com/2022/03/jackson.jpg?w=1024" alt="" class="wp-image-45959" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/jackson">Jackson →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/ames"><img src="https://en-blog.files.wordpress.com/2022/03/ames.jpg" alt="" class="wp-image-45949" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/ames">Ames →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/attar"><img src="https://en-blog.files.wordpress.com/2022/03/attar.jpg?w=720" alt="" class="wp-image-46003" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/attar">Attar →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/russell"><img src="https://en-blog.files.wordpress.com/2022/03/russell.jpg?w=1024" alt="" class="wp-image-45986" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/russell">Russell →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/calvin"><img src="https://en-blog.files.wordpress.com/2022/03/calvin.jpg?w=1024" alt="" class="wp-image-45960" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/calvin">Calvin →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baker"><img src="https://en-blog.files.wordpress.com/2022/03/kerr.jpg?w=1024" alt="" class="wp-image-45968" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baker">Baker →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat.jpg?w=1024" alt="" class="wp-image-45975" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat">Quadrat →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/skivers"><img src="https://en-blog.files.wordpress.com/2022/03/videomaker-white-1.jpg?w=1024" alt="" class="wp-image-45987" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/skivers">Skivers →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/zoologist"><img src="https://en-blog.files.wordpress.com/2022/03/zoologist.jpg?w=1024" alt="" class="wp-image-45982" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/zoologist">Zoologist →</a></figcaption>
</figure>
</div>
</div>
<p>These new themes have been designed with a wide variety of sites cases in mind. But their potential stretches well beyond their screenshots and demo sites. Because each theme is fully editable in the Site Editor, every one of these themes can be heavily customized to fit your site&#8217;s needs. You can start with theme that features single minimalist homepage, and then add as many menus and sidebars as you wish. Or, you can start with a complex business theme and strip it down to something minimal to suit your vision.</p>
<p>The Site Editor also includes a new feature called &#8220;<a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/support/using-styles/">Global Styles</a>,&#8221; which allows you to edit site-wide settings for color, typography, and more. You&#8217;re free to change your theme&#8217;s default color scheme to whatever fits your mood, or even make all site text larger or smaller in a couple of clicks. To kick off this new feature, we&#8217;re also providing a few pre-built variations on some of these new themes.</p>
<div></div>
<figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-slate"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-slate.jpg?w=1024" alt="" class="wp-image-45964" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-pink"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-pink.jpg?w=1024" alt="" class="wp-image-45976" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-blue"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-blue.jpg?w=1024" alt="" class="wp-image-45985" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-white"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-white.jpg?w=1024" alt="" class="wp-image-45970" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/videomaker-white"><img src="https://en-blog.files.wordpress.com/2022/03/videomaker-white.jpg?w=1024" alt="" class="wp-image-45981" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-yellow"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-yellow.jpg?w=1024" alt="" class="wp-image-45965" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-yellow"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-yellow.jpg?w=1024" alt="" class="wp-image-45974" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-red"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-red.jpg?w=1024" alt="" class="wp-image-45978" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-blue"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-blue.jpg?w=1024" alt="" class="wp-image-45966" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-swiss"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-swiss.jpg?w=1024" alt="" class="wp-image-45984" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-red"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-red.jpg?w=1024" alt="" class="wp-image-45971" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-mint"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-mint.jpg?w=1024" alt="" class="wp-image-45973" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-green"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-green.jpg?w=1024" alt="" class="wp-image-45977" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-cream"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-cream.jpg?w=1024" alt="" class="wp-image-45961" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-black"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-yellow-1.jpg?w=1024" alt="" class="wp-image-45972" /></a></figure>
</figure>
<div></div>
<p>All the new themes and variations can be found in the <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/">Theme Showcase</a>. Or, if you&#8217;re starting a fresh site, they&#8217;ll be offered to you automatically in the site creation flow. This collection of themes is just the beginning, and we&#8217;re excited to continue launching a variety of diverse theme options for you. What would you like to see in the next set of themes on WordPress.com?</p>
]]></content:encoded>
			<wfw:commentRss>https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customize Your Entire Site With New Block Themes</title>
		<link>https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-8/</link>
		<comments>https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-8/#comments</comments>
		<pubDate>Wed, 09 Mar 2022 14:00:00 +0000</pubDate>
		<dc:creator>BucciaDiArancia</dc:creator>
				<category><![CDATA[Piemonte]]></category>
		<category><![CDATA[FSE]]></category>
		<category><![CDATA[Full Site Editing]]></category>
		<category><![CDATA[Global Styles]]></category>
		<category><![CDATA[Site Editor]]></category>
		<category><![CDATA[Theme Showcase]]></category>
		<category><![CDATA[Twenty Twenty]]></category>

		<guid isPermaLink="false">https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-8/</guid>
		<description><![CDATA[In case you missed it, we&#8217;ve been rolling out a new set of powerful site design tools called Full Site Editing (or “FSE”) and it&#8217;s now available for all WordPress.com users! Don’t worry if you’re just hearing about Full Site Editing for the first time. We’ve been releasing these new tools in a way that&#160;<a href="https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-8/" class="read-more">Continua a leggere..</a>]]></description>
			<content:encoded><![CDATA[<p>In case you missed it, we&#8217;ve been rolling out a new set of powerful site design tools called <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/blog/2022/02/04/full-site-editing-on-wordpress-com/">Full Site Editing</a> (or “FSE”) and it&#8217;s now available for all WordPress.com users! </p>
<p>Don’t worry if you’re just hearing about Full Site Editing for the first time. We’ve been releasing these new tools in a way that doesn’t actually require you to do anything with your existing site(s). If you are up for a change though, we&#8217;re happy to announce the launch of a brand new family of themes made specifically with Full Site Editing features in mind. As of this writing we have over two dozen themes available that support Full Site Editing. </p>
<div></div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/marl"><img src="https://en-blog.files.wordpress.com/2022/03/marl.jpg?w=1024" alt="" class="wp-image-46005" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/marl">Marl →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/hari"><img src="https://en-blog.files.wordpress.com/2022/03/hari.jpg?w=720" alt="" class="wp-image-46004" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/hari">Hari →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/alonso"><img src="https://en-blog.files.wordpress.com/2022/03/alonso.jpg?w=720" alt="" class="wp-image-46002" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/alonso">Alonso →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/stewart"><img src="https://en-blog.files.wordpress.com/2022/03/stewart.jpg?w=1024" alt="" class="wp-image-45979" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/stewart">Stewart →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/winkel"><img src="https://en-blog.files.wordpress.com/2022/03/winkel.jpg?w=720" alt="" class="wp-image-46001" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/winkel">Winkel →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/videomaker"><img src="https://en-blog.files.wordpress.com/2022/03/videomaker.jpg?w=1024" alt="" class="wp-image-45980" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/videomaker">Videomaker →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/barnett"><img src="https://en-blog.files.wordpress.com/2022/03/barnett.jpg" alt="" class="wp-image-45952" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/barnett">Barnett →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/livro"><img src="https://en-blog.files.wordpress.com/2022/03/livro.jpg?w=1024" alt="" class="wp-image-45962" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/livro">Livro →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/farrow"><img src="https://en-blog.files.wordpress.com/2022/03/farrow.jpg?w=1024" alt="" class="wp-image-45983" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/farrow">Farrow →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/bennett"><img src="https://en-blog.files.wordpress.com/2022/03/bennett.jpg?w=1024" alt="" class="wp-image-45957" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/bennett">Bennett →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/kingsley"><img src="https://en-blog.files.wordpress.com/2022/03/kingsley.jpg?w=1024" alt="" class="wp-image-45967" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/kingsley">Kingsley →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/dorna"><img src="https://en-blog.files.wordpress.com/2022/03/dorna.jpg?w=720" alt="" class="wp-image-46000" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/dorna">Dorna →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/byrne"><img src="https://en-blog.files.wordpress.com/2022/03/byrne.jpg?w=1024" alt="" class="wp-image-45958" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/byrne">Byrne →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist"><img src="https://en-blog.files.wordpress.com/2022/03/geologist.jpg?w=1024" alt="" class="wp-image-45963" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist">Geologist →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/arbutus"><img src="https://en-blog.files.wordpress.com/2022/03/arbutus.jpg" alt="" class="wp-image-45951" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/arbutus">Arbutus →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo"><img src="https://en-blog.files.wordpress.com/2022/03/tt2.jpg?w=1024" alt="" class="wp-image-46009" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo">Twenty Twenty-Two →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/payton"><img src="https://en-blog.files.wordpress.com/2022/03/payton.jpg?w=1024" alt="" class="wp-image-45969" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/payton">Payton →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baxter"><img src="https://en-blog.files.wordpress.com/2022/03/baxter.jpg?w=1024" alt="" class="wp-image-45956" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baxter">Baxter →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/jackson"><img src="https://en-blog.files.wordpress.com/2022/03/jackson.jpg?w=1024" alt="" class="wp-image-45959" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/jackson">Jackson →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/ames"><img src="https://en-blog.files.wordpress.com/2022/03/ames.jpg" alt="" class="wp-image-45949" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/ames">Ames →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/attar"><img src="https://en-blog.files.wordpress.com/2022/03/attar.jpg?w=720" alt="" class="wp-image-46003" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/attar">Attar →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/russell"><img src="https://en-blog.files.wordpress.com/2022/03/russell.jpg?w=1024" alt="" class="wp-image-45986" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/russell">Russell →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/calvin"><img src="https://en-blog.files.wordpress.com/2022/03/calvin.jpg?w=1024" alt="" class="wp-image-45960" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/calvin">Calvin →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baker"><img src="https://en-blog.files.wordpress.com/2022/03/kerr.jpg?w=1024" alt="" class="wp-image-45968" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baker">Baker →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat.jpg?w=1024" alt="" class="wp-image-45975" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat">Quadrat →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/skivers"><img src="https://en-blog.files.wordpress.com/2022/03/videomaker-white-1.jpg?w=1024" alt="" class="wp-image-45987" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/skivers">Skivers →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/zoologist"><img src="https://en-blog.files.wordpress.com/2022/03/zoologist.jpg?w=1024" alt="" class="wp-image-45982" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/zoologist">Zoologist →</a></figcaption>
</figure>
</div>
</div>
<p>These new themes have been designed with a wide variety of sites cases in mind. But their potential stretches well beyond their screenshots and demo sites. Because each theme is fully editable in the Site Editor, every one of these themes can be heavily customized to fit your site&#8217;s needs. You can start with theme that features single minimalist homepage, and then add as many menus and sidebars as you wish. Or, you can start with a complex business theme and strip it down to something minimal to suit your vision.</p>
<p>The Site Editor also includes a new feature called &#8220;<a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/support/using-styles/">Global Styles</a>,&#8221; which allows you to edit site-wide settings for color, typography, and more. You&#8217;re free to change your theme&#8217;s default color scheme to whatever fits your mood, or even make all site text larger or smaller in a couple of clicks. To kick off this new feature, we&#8217;re also providing a few pre-built variations on some of these new themes.</p>
<div></div>
<figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-slate"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-slate.jpg?w=1024" alt="" class="wp-image-45964" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-pink"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-pink.jpg?w=1024" alt="" class="wp-image-45976" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-blue"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-blue.jpg?w=1024" alt="" class="wp-image-45985" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-white"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-white.jpg?w=1024" alt="" class="wp-image-45970" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/videomaker-white"><img src="https://en-blog.files.wordpress.com/2022/03/videomaker-white.jpg?w=1024" alt="" class="wp-image-45981" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-yellow"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-yellow.jpg?w=1024" alt="" class="wp-image-45965" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-yellow"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-yellow.jpg?w=1024" alt="" class="wp-image-45974" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-red"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-red.jpg?w=1024" alt="" class="wp-image-45978" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-blue"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-blue.jpg?w=1024" alt="" class="wp-image-45966" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-swiss"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-swiss.jpg?w=1024" alt="" class="wp-image-45984" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-red"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-red.jpg?w=1024" alt="" class="wp-image-45971" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-mint"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-mint.jpg?w=1024" alt="" class="wp-image-45973" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-green"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-green.jpg?w=1024" alt="" class="wp-image-45977" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-cream"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-cream.jpg?w=1024" alt="" class="wp-image-45961" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-black"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-yellow-1.jpg?w=1024" alt="" class="wp-image-45972" /></a></figure>
</figure>
<div></div>
<p>All the new themes and variations can be found in the <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/">Theme Showcase</a>. Or, if you&#8217;re starting a fresh site, they&#8217;ll be offered to you automatically in the site creation flow. This collection of themes is just the beginning, and we&#8217;re excited to continue launching a variety of diverse theme options for you. What would you like to see in the next set of themes on WordPress.com?</p>
]]></content:encoded>
			<wfw:commentRss>https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customize Your Entire Site With New Block Themes</title>
		<link>https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-7/</link>
		<comments>https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-7/#comments</comments>
		<pubDate>Wed, 09 Mar 2022 14:00:00 +0000</pubDate>
		<dc:creator>Alveare Delle Delizie</dc:creator>
				<category><![CDATA[Friuli Venezia Giulia]]></category>
		<category><![CDATA[FSE]]></category>
		<category><![CDATA[Full Site Editing]]></category>
		<category><![CDATA[Global Styles]]></category>
		<category><![CDATA[Site Editor]]></category>
		<category><![CDATA[Theme Showcase]]></category>
		<category><![CDATA[Twenty Twenty]]></category>

		<guid isPermaLink="false">https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-7/</guid>
		<description><![CDATA[In case you missed it, we&#8217;ve been rolling out a new set of powerful site design tools called Full Site Editing (or “FSE”) and it&#8217;s now available for all WordPress.com users! Don’t worry if you’re just hearing about Full Site Editing for the first time. We’ve been releasing these new tools in a way that&#160;<a href="https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-7/" class="read-more">Continua a leggere..</a>]]></description>
			<content:encoded><![CDATA[<p>In case you missed it, we&#8217;ve been rolling out a new set of powerful site design tools called <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/blog/2022/02/04/full-site-editing-on-wordpress-com/">Full Site Editing</a> (or “FSE”) and it&#8217;s now available for all WordPress.com users! </p>
<p>Don’t worry if you’re just hearing about Full Site Editing for the first time. We’ve been releasing these new tools in a way that doesn’t actually require you to do anything with your existing site(s). If you are up for a change though, we&#8217;re happy to announce the launch of a brand new family of themes made specifically with Full Site Editing features in mind. As of this writing we have over two dozen themes available that support Full Site Editing. </p>
<div></div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/marl"><img src="https://en-blog.files.wordpress.com/2022/03/marl.jpg?w=1024" alt="" class="wp-image-46005" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/marl">Marl →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/hari"><img src="https://en-blog.files.wordpress.com/2022/03/hari.jpg?w=720" alt="" class="wp-image-46004" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/hari">Hari →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/alonso"><img src="https://en-blog.files.wordpress.com/2022/03/alonso.jpg?w=720" alt="" class="wp-image-46002" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/alonso">Alonso →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/stewart"><img src="https://en-blog.files.wordpress.com/2022/03/stewart.jpg?w=1024" alt="" class="wp-image-45979" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/stewart">Stewart →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/winkel"><img src="https://en-blog.files.wordpress.com/2022/03/winkel.jpg?w=720" alt="" class="wp-image-46001" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/winkel">Winkel →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/videomaker"><img src="https://en-blog.files.wordpress.com/2022/03/videomaker.jpg?w=1024" alt="" class="wp-image-45980" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/videomaker">Videomaker →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/barnett"><img src="https://en-blog.files.wordpress.com/2022/03/barnett.jpg" alt="" class="wp-image-45952" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/barnett">Barnett →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/livro"><img src="https://en-blog.files.wordpress.com/2022/03/livro.jpg?w=1024" alt="" class="wp-image-45962" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/livro">Livro →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/farrow"><img src="https://en-blog.files.wordpress.com/2022/03/farrow.jpg?w=1024" alt="" class="wp-image-45983" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/farrow">Farrow →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/bennett"><img src="https://en-blog.files.wordpress.com/2022/03/bennett.jpg?w=1024" alt="" class="wp-image-45957" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/bennett">Bennett →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/kingsley"><img src="https://en-blog.files.wordpress.com/2022/03/kingsley.jpg?w=1024" alt="" class="wp-image-45967" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/kingsley">Kingsley →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/dorna"><img src="https://en-blog.files.wordpress.com/2022/03/dorna.jpg?w=720" alt="" class="wp-image-46000" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/dorna">Dorna →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/byrne"><img src="https://en-blog.files.wordpress.com/2022/03/byrne.jpg?w=1024" alt="" class="wp-image-45958" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/byrne">Byrne →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist"><img src="https://en-blog.files.wordpress.com/2022/03/geologist.jpg?w=1024" alt="" class="wp-image-45963" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist">Geologist →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/arbutus"><img src="https://en-blog.files.wordpress.com/2022/03/arbutus.jpg" alt="" class="wp-image-45951" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/arbutus">Arbutus →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo"><img src="https://en-blog.files.wordpress.com/2022/03/tt2.jpg?w=1024" alt="" class="wp-image-46009" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo">Twenty Twenty-Two →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/payton"><img src="https://en-blog.files.wordpress.com/2022/03/payton.jpg?w=1024" alt="" class="wp-image-45969" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/payton">Payton →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baxter"><img src="https://en-blog.files.wordpress.com/2022/03/baxter.jpg?w=1024" alt="" class="wp-image-45956" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baxter">Baxter →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/jackson"><img src="https://en-blog.files.wordpress.com/2022/03/jackson.jpg?w=1024" alt="" class="wp-image-45959" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/jackson">Jackson →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/ames"><img src="https://en-blog.files.wordpress.com/2022/03/ames.jpg" alt="" class="wp-image-45949" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/ames">Ames →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/attar"><img src="https://en-blog.files.wordpress.com/2022/03/attar.jpg?w=720" alt="" class="wp-image-46003" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/attar">Attar →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/russell"><img src="https://en-blog.files.wordpress.com/2022/03/russell.jpg?w=1024" alt="" class="wp-image-45986" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/russell">Russell →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/calvin"><img src="https://en-blog.files.wordpress.com/2022/03/calvin.jpg?w=1024" alt="" class="wp-image-45960" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/calvin">Calvin →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baker"><img src="https://en-blog.files.wordpress.com/2022/03/kerr.jpg?w=1024" alt="" class="wp-image-45968" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baker">Baker →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat.jpg?w=1024" alt="" class="wp-image-45975" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat">Quadrat →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/skivers"><img src="https://en-blog.files.wordpress.com/2022/03/videomaker-white-1.jpg?w=1024" alt="" class="wp-image-45987" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/skivers">Skivers →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/zoologist"><img src="https://en-blog.files.wordpress.com/2022/03/zoologist.jpg?w=1024" alt="" class="wp-image-45982" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/zoologist">Zoologist →</a></figcaption>
</figure>
</div>
</div>
<p>These new themes have been designed with a wide variety of sites cases in mind. But their potential stretches well beyond their screenshots and demo sites. Because each theme is fully editable in the Site Editor, every one of these themes can be heavily customized to fit your site&#8217;s needs. You can start with theme that features single minimalist homepage, and then add as many menus and sidebars as you wish. Or, you can start with a complex business theme and strip it down to something minimal to suit your vision.</p>
<p>The Site Editor also includes a new feature called &#8220;<a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/support/using-styles/">Global Styles</a>,&#8221; which allows you to edit site-wide settings for color, typography, and more. You&#8217;re free to change your theme&#8217;s default color scheme to whatever fits your mood, or even make all site text larger or smaller in a couple of clicks. To kick off this new feature, we&#8217;re also providing a few pre-built variations on some of these new themes.</p>
<div></div>
<figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-slate"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-slate.jpg?w=1024" alt="" class="wp-image-45964" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-pink"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-pink.jpg?w=1024" alt="" class="wp-image-45976" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-blue"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-blue.jpg?w=1024" alt="" class="wp-image-45985" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-white"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-white.jpg?w=1024" alt="" class="wp-image-45970" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/videomaker-white"><img src="https://en-blog.files.wordpress.com/2022/03/videomaker-white.jpg?w=1024" alt="" class="wp-image-45981" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-yellow"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-yellow.jpg?w=1024" alt="" class="wp-image-45965" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-yellow"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-yellow.jpg?w=1024" alt="" class="wp-image-45974" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-red"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-red.jpg?w=1024" alt="" class="wp-image-45978" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-blue"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-blue.jpg?w=1024" alt="" class="wp-image-45966" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-swiss"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-swiss.jpg?w=1024" alt="" class="wp-image-45984" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-red"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-red.jpg?w=1024" alt="" class="wp-image-45971" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-mint"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-mint.jpg?w=1024" alt="" class="wp-image-45973" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-green"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-green.jpg?w=1024" alt="" class="wp-image-45977" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-cream"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-cream.jpg?w=1024" alt="" class="wp-image-45961" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-black"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-yellow-1.jpg?w=1024" alt="" class="wp-image-45972" /></a></figure>
</figure>
<div></div>
<p>All the new themes and variations can be found in the <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/">Theme Showcase</a>. Or, if you&#8217;re starting a fresh site, they&#8217;ll be offered to you automatically in the site creation flow. This collection of themes is just the beginning, and we&#8217;re excited to continue launching a variety of diverse theme options for you. What would you like to see in the next set of themes on WordPress.com?</p>
]]></content:encoded>
			<wfw:commentRss>https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customize Your Entire Site With New Block Themes</title>
		<link>https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-6/</link>
		<comments>https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-6/#comments</comments>
		<pubDate>Wed, 09 Mar 2022 14:00:00 +0000</pubDate>
		<dc:creator>Pani cunzatu</dc:creator>
				<category><![CDATA[Sicilia]]></category>
		<category><![CDATA[FSE]]></category>
		<category><![CDATA[Full Site Editing]]></category>
		<category><![CDATA[Global Styles]]></category>
		<category><![CDATA[Site Editor]]></category>
		<category><![CDATA[Theme Showcase]]></category>
		<category><![CDATA[Twenty Twenty]]></category>

		<guid isPermaLink="false">https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-6/</guid>
		<description><![CDATA[In case you missed it, we&#8217;ve been rolling out a new set of powerful site design tools called Full Site Editing (or “FSE”) and it&#8217;s now available for all WordPress.com users! Don’t worry if you’re just hearing about Full Site Editing for the first time. We’ve been releasing these new tools in a way that&#160;<a href="https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-6/" class="read-more">Continua a leggere..</a>]]></description>
			<content:encoded><![CDATA[<p>In case you missed it, we&#8217;ve been rolling out a new set of powerful site design tools called <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/blog/2022/02/04/full-site-editing-on-wordpress-com/">Full Site Editing</a> (or “FSE”) and it&#8217;s now available for all WordPress.com users! </p>
<p>Don’t worry if you’re just hearing about Full Site Editing for the first time. We’ve been releasing these new tools in a way that doesn’t actually require you to do anything with your existing site(s). If you are up for a change though, we&#8217;re happy to announce the launch of a brand new family of themes made specifically with Full Site Editing features in mind. As of this writing we have over two dozen themes available that support Full Site Editing. </p>
<div></div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/marl"><img src="https://en-blog.files.wordpress.com/2022/03/marl.jpg?w=1024" alt="" class="wp-image-46005" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/marl">Marl →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/hari"><img src="https://en-blog.files.wordpress.com/2022/03/hari.jpg?w=720" alt="" class="wp-image-46004" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/hari">Hari →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/alonso"><img src="https://en-blog.files.wordpress.com/2022/03/alonso.jpg?w=720" alt="" class="wp-image-46002" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/alonso">Alonso →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/stewart"><img src="https://en-blog.files.wordpress.com/2022/03/stewart.jpg?w=1024" alt="" class="wp-image-45979" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/stewart">Stewart →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/winkel"><img src="https://en-blog.files.wordpress.com/2022/03/winkel.jpg?w=720" alt="" class="wp-image-46001" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/winkel">Winkel →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/videomaker"><img src="https://en-blog.files.wordpress.com/2022/03/videomaker.jpg?w=1024" alt="" class="wp-image-45980" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/videomaker">Videomaker →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/barnett"><img src="https://en-blog.files.wordpress.com/2022/03/barnett.jpg" alt="" class="wp-image-45952" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/barnett">Barnett →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/livro"><img src="https://en-blog.files.wordpress.com/2022/03/livro.jpg?w=1024" alt="" class="wp-image-45962" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/livro">Livro →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/farrow"><img src="https://en-blog.files.wordpress.com/2022/03/farrow.jpg?w=1024" alt="" class="wp-image-45983" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/farrow">Farrow →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/bennett"><img src="https://en-blog.files.wordpress.com/2022/03/bennett.jpg?w=1024" alt="" class="wp-image-45957" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/bennett">Bennett →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/kingsley"><img src="https://en-blog.files.wordpress.com/2022/03/kingsley.jpg?w=1024" alt="" class="wp-image-45967" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/kingsley">Kingsley →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/dorna"><img src="https://en-blog.files.wordpress.com/2022/03/dorna.jpg?w=720" alt="" class="wp-image-46000" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/dorna">Dorna →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/byrne"><img src="https://en-blog.files.wordpress.com/2022/03/byrne.jpg?w=1024" alt="" class="wp-image-45958" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/byrne">Byrne →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist"><img src="https://en-blog.files.wordpress.com/2022/03/geologist.jpg?w=1024" alt="" class="wp-image-45963" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist">Geologist →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/arbutus"><img src="https://en-blog.files.wordpress.com/2022/03/arbutus.jpg" alt="" class="wp-image-45951" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/arbutus">Arbutus →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo"><img src="https://en-blog.files.wordpress.com/2022/03/tt2.jpg?w=1024" alt="" class="wp-image-46009" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo">Twenty Twenty-Two →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/payton"><img src="https://en-blog.files.wordpress.com/2022/03/payton.jpg?w=1024" alt="" class="wp-image-45969" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/payton">Payton →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baxter"><img src="https://en-blog.files.wordpress.com/2022/03/baxter.jpg?w=1024" alt="" class="wp-image-45956" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baxter">Baxter →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/jackson"><img src="https://en-blog.files.wordpress.com/2022/03/jackson.jpg?w=1024" alt="" class="wp-image-45959" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/jackson">Jackson →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/ames"><img src="https://en-blog.files.wordpress.com/2022/03/ames.jpg" alt="" class="wp-image-45949" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/ames">Ames →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/attar"><img src="https://en-blog.files.wordpress.com/2022/03/attar.jpg?w=720" alt="" class="wp-image-46003" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/attar">Attar →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/russell"><img src="https://en-blog.files.wordpress.com/2022/03/russell.jpg?w=1024" alt="" class="wp-image-45986" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/russell">Russell →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/calvin"><img src="https://en-blog.files.wordpress.com/2022/03/calvin.jpg?w=1024" alt="" class="wp-image-45960" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/calvin">Calvin →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baker"><img src="https://en-blog.files.wordpress.com/2022/03/kerr.jpg?w=1024" alt="" class="wp-image-45968" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baker">Baker →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat.jpg?w=1024" alt="" class="wp-image-45975" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat">Quadrat →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/skivers"><img src="https://en-blog.files.wordpress.com/2022/03/videomaker-white-1.jpg?w=1024" alt="" class="wp-image-45987" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/skivers">Skivers →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/zoologist"><img src="https://en-blog.files.wordpress.com/2022/03/zoologist.jpg?w=1024" alt="" class="wp-image-45982" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/zoologist">Zoologist →</a></figcaption>
</figure>
</div>
</div>
<p>These new themes have been designed with a wide variety of sites cases in mind. But their potential stretches well beyond their screenshots and demo sites. Because each theme is fully editable in the Site Editor, every one of these themes can be heavily customized to fit your site&#8217;s needs. You can start with theme that features single minimalist homepage, and then add as many menus and sidebars as you wish. Or, you can start with a complex business theme and strip it down to something minimal to suit your vision.</p>
<p>The Site Editor also includes a new feature called &#8220;<a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/support/using-styles/">Global Styles</a>,&#8221; which allows you to edit site-wide settings for color, typography, and more. You&#8217;re free to change your theme&#8217;s default color scheme to whatever fits your mood, or even make all site text larger or smaller in a couple of clicks. To kick off this new feature, we&#8217;re also providing a few pre-built variations on some of these new themes.</p>
<div></div>
<figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-slate"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-slate.jpg?w=1024" alt="" class="wp-image-45964" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-pink"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-pink.jpg?w=1024" alt="" class="wp-image-45976" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-blue"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-blue.jpg?w=1024" alt="" class="wp-image-45985" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-white"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-white.jpg?w=1024" alt="" class="wp-image-45970" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/videomaker-white"><img src="https://en-blog.files.wordpress.com/2022/03/videomaker-white.jpg?w=1024" alt="" class="wp-image-45981" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-yellow"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-yellow.jpg?w=1024" alt="" class="wp-image-45965" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-yellow"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-yellow.jpg?w=1024" alt="" class="wp-image-45974" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-red"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-red.jpg?w=1024" alt="" class="wp-image-45978" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-blue"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-blue.jpg?w=1024" alt="" class="wp-image-45966" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-swiss"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-swiss.jpg?w=1024" alt="" class="wp-image-45984" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-red"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-red.jpg?w=1024" alt="" class="wp-image-45971" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-mint"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-mint.jpg?w=1024" alt="" class="wp-image-45973" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-green"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-green.jpg?w=1024" alt="" class="wp-image-45977" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-cream"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-cream.jpg?w=1024" alt="" class="wp-image-45961" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-black"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-yellow-1.jpg?w=1024" alt="" class="wp-image-45972" /></a></figure>
</figure>
<div></div>
<p>All the new themes and variations can be found in the <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/">Theme Showcase</a>. Or, if you&#8217;re starting a fresh site, they&#8217;ll be offered to you automatically in the site creation flow. This collection of themes is just the beginning, and we&#8217;re excited to continue launching a variety of diverse theme options for you. What would you like to see in the next set of themes on WordPress.com?</p>
]]></content:encoded>
			<wfw:commentRss>https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customize Your Entire Site With New Block Themes</title>
		<link>https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-5/</link>
		<comments>https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-5/#comments</comments>
		<pubDate>Wed, 09 Mar 2022 14:00:00 +0000</pubDate>
		<dc:creator>Ragazze conTorte</dc:creator>
				<category><![CDATA[Lazio]]></category>
		<category><![CDATA[FSE]]></category>
		<category><![CDATA[Full Site Editing]]></category>
		<category><![CDATA[Global Styles]]></category>
		<category><![CDATA[Site Editor]]></category>
		<category><![CDATA[Theme Showcase]]></category>
		<category><![CDATA[Twenty Twenty]]></category>

		<guid isPermaLink="false">https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-5/</guid>
		<description><![CDATA[In case you missed it, we&#8217;ve been rolling out a new set of powerful site design tools called Full Site Editing (or “FSE”) and it&#8217;s now available for all WordPress.com users! Don’t worry if you’re just hearing about Full Site Editing for the first time. We’ve been releasing these new tools in a way that&#160;<a href="https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-5/" class="read-more">Continua a leggere..</a>]]></description>
			<content:encoded><![CDATA[<p>In case you missed it, we&#8217;ve been rolling out a new set of powerful site design tools called <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/blog/2022/02/04/full-site-editing-on-wordpress-com/">Full Site Editing</a> (or “FSE”) and it&#8217;s now available for all WordPress.com users! </p>
<p>Don’t worry if you’re just hearing about Full Site Editing for the first time. We’ve been releasing these new tools in a way that doesn’t actually require you to do anything with your existing site(s). If you are up for a change though, we&#8217;re happy to announce the launch of a brand new family of themes made specifically with Full Site Editing features in mind. As of this writing we have over two dozen themes available that support Full Site Editing. </p>
<div></div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/marl"><img src="https://en-blog.files.wordpress.com/2022/03/marl.jpg?w=1024" alt="" class="wp-image-46005" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/marl">Marl →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/hari"><img src="https://en-blog.files.wordpress.com/2022/03/hari.jpg?w=720" alt="" class="wp-image-46004" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/hari">Hari →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/alonso"><img src="https://en-blog.files.wordpress.com/2022/03/alonso.jpg?w=720" alt="" class="wp-image-46002" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/alonso">Alonso →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/stewart"><img src="https://en-blog.files.wordpress.com/2022/03/stewart.jpg?w=1024" alt="" class="wp-image-45979" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/stewart">Stewart →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/winkel"><img src="https://en-blog.files.wordpress.com/2022/03/winkel.jpg?w=720" alt="" class="wp-image-46001" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/winkel">Winkel →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/videomaker"><img src="https://en-blog.files.wordpress.com/2022/03/videomaker.jpg?w=1024" alt="" class="wp-image-45980" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/videomaker">Videomaker →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/barnett"><img src="https://en-blog.files.wordpress.com/2022/03/barnett.jpg" alt="" class="wp-image-45952" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/barnett">Barnett →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/livro"><img src="https://en-blog.files.wordpress.com/2022/03/livro.jpg?w=1024" alt="" class="wp-image-45962" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/livro">Livro →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/farrow"><img src="https://en-blog.files.wordpress.com/2022/03/farrow.jpg?w=1024" alt="" class="wp-image-45983" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/farrow">Farrow →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/bennett"><img src="https://en-blog.files.wordpress.com/2022/03/bennett.jpg?w=1024" alt="" class="wp-image-45957" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/bennett">Bennett →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/kingsley"><img src="https://en-blog.files.wordpress.com/2022/03/kingsley.jpg?w=1024" alt="" class="wp-image-45967" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/kingsley">Kingsley →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/dorna"><img src="https://en-blog.files.wordpress.com/2022/03/dorna.jpg?w=720" alt="" class="wp-image-46000" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/dorna">Dorna →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/byrne"><img src="https://en-blog.files.wordpress.com/2022/03/byrne.jpg?w=1024" alt="" class="wp-image-45958" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/byrne">Byrne →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist"><img src="https://en-blog.files.wordpress.com/2022/03/geologist.jpg?w=1024" alt="" class="wp-image-45963" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist">Geologist →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/arbutus"><img src="https://en-blog.files.wordpress.com/2022/03/arbutus.jpg" alt="" class="wp-image-45951" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/arbutus">Arbutus →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo"><img src="https://en-blog.files.wordpress.com/2022/03/tt2.jpg?w=1024" alt="" class="wp-image-46009" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo">Twenty Twenty-Two →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/payton"><img src="https://en-blog.files.wordpress.com/2022/03/payton.jpg?w=1024" alt="" class="wp-image-45969" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/payton">Payton →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baxter"><img src="https://en-blog.files.wordpress.com/2022/03/baxter.jpg?w=1024" alt="" class="wp-image-45956" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baxter">Baxter →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/jackson"><img src="https://en-blog.files.wordpress.com/2022/03/jackson.jpg?w=1024" alt="" class="wp-image-45959" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/jackson">Jackson →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/ames"><img src="https://en-blog.files.wordpress.com/2022/03/ames.jpg" alt="" class="wp-image-45949" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/ames">Ames →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/attar"><img src="https://en-blog.files.wordpress.com/2022/03/attar.jpg?w=720" alt="" class="wp-image-46003" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/attar">Attar →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/russell"><img src="https://en-blog.files.wordpress.com/2022/03/russell.jpg?w=1024" alt="" class="wp-image-45986" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/russell">Russell →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/calvin"><img src="https://en-blog.files.wordpress.com/2022/03/calvin.jpg?w=1024" alt="" class="wp-image-45960" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/calvin">Calvin →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baker"><img src="https://en-blog.files.wordpress.com/2022/03/kerr.jpg?w=1024" alt="" class="wp-image-45968" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baker">Baker →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat.jpg?w=1024" alt="" class="wp-image-45975" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat">Quadrat →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/skivers"><img src="https://en-blog.files.wordpress.com/2022/03/videomaker-white-1.jpg?w=1024" alt="" class="wp-image-45987" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/skivers">Skivers →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/zoologist"><img src="https://en-blog.files.wordpress.com/2022/03/zoologist.jpg?w=1024" alt="" class="wp-image-45982" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/zoologist">Zoologist →</a></figcaption>
</figure>
</div>
</div>
<p>These new themes have been designed with a wide variety of sites cases in mind. But their potential stretches well beyond their screenshots and demo sites. Because each theme is fully editable in the Site Editor, every one of these themes can be heavily customized to fit your site&#8217;s needs. You can start with theme that features single minimalist homepage, and then add as many menus and sidebars as you wish. Or, you can start with a complex business theme and strip it down to something minimal to suit your vision.</p>
<p>The Site Editor also includes a new feature called &#8220;<a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/support/using-styles/">Global Styles</a>,&#8221; which allows you to edit site-wide settings for color, typography, and more. You&#8217;re free to change your theme&#8217;s default color scheme to whatever fits your mood, or even make all site text larger or smaller in a couple of clicks. To kick off this new feature, we&#8217;re also providing a few pre-built variations on some of these new themes.</p>
<div></div>
<figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-slate"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-slate.jpg?w=1024" alt="" class="wp-image-45964" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-pink"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-pink.jpg?w=1024" alt="" class="wp-image-45976" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-blue"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-blue.jpg?w=1024" alt="" class="wp-image-45985" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-white"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-white.jpg?w=1024" alt="" class="wp-image-45970" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/videomaker-white"><img src="https://en-blog.files.wordpress.com/2022/03/videomaker-white.jpg?w=1024" alt="" class="wp-image-45981" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-yellow"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-yellow.jpg?w=1024" alt="" class="wp-image-45965" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-yellow"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-yellow.jpg?w=1024" alt="" class="wp-image-45974" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-red"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-red.jpg?w=1024" alt="" class="wp-image-45978" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-blue"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-blue.jpg?w=1024" alt="" class="wp-image-45966" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-swiss"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-swiss.jpg?w=1024" alt="" class="wp-image-45984" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-red"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-red.jpg?w=1024" alt="" class="wp-image-45971" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-mint"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-mint.jpg?w=1024" alt="" class="wp-image-45973" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-green"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-green.jpg?w=1024" alt="" class="wp-image-45977" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-cream"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-cream.jpg?w=1024" alt="" class="wp-image-45961" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-black"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-yellow-1.jpg?w=1024" alt="" class="wp-image-45972" /></a></figure>
</figure>
<div></div>
<p>All the new themes and variations can be found in the <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/">Theme Showcase</a>. Or, if you&#8217;re starting a fresh site, they&#8217;ll be offered to you automatically in the site creation flow. This collection of themes is just the beginning, and we&#8217;re excited to continue launching a variety of diverse theme options for you. What would you like to see in the next set of themes on WordPress.com?</p>
]]></content:encoded>
			<wfw:commentRss>https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customize Your Entire Site With New Block Themes</title>
		<link>https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-4/</link>
		<comments>https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-4/#comments</comments>
		<pubDate>Wed, 09 Mar 2022 14:00:00 +0000</pubDate>
		<dc:creator>ricette da coinquiline</dc:creator>
				<category><![CDATA[Campania]]></category>
		<category><![CDATA[FSE]]></category>
		<category><![CDATA[Full Site Editing]]></category>
		<category><![CDATA[Global Styles]]></category>
		<category><![CDATA[Site Editor]]></category>
		<category><![CDATA[Theme Showcase]]></category>
		<category><![CDATA[Twenty Twenty]]></category>

		<guid isPermaLink="false">https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-4/</guid>
		<description><![CDATA[In case you missed it, we&#8217;ve been rolling out a new set of powerful site design tools called Full Site Editing (or “FSE”) and it&#8217;s now available for all WordPress.com users! Don’t worry if you’re just hearing about Full Site Editing for the first time. We’ve been releasing these new tools in a way that&#160;<a href="https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-4/" class="read-more">Continua a leggere..</a>]]></description>
			<content:encoded><![CDATA[<p>In case you missed it, we&#8217;ve been rolling out a new set of powerful site design tools called <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/blog/2022/02/04/full-site-editing-on-wordpress-com/">Full Site Editing</a> (or “FSE”) and it&#8217;s now available for all WordPress.com users! </p>
<p>Don’t worry if you’re just hearing about Full Site Editing for the first time. We’ve been releasing these new tools in a way that doesn’t actually require you to do anything with your existing site(s). If you are up for a change though, we&#8217;re happy to announce the launch of a brand new family of themes made specifically with Full Site Editing features in mind. As of this writing we have over two dozen themes available that support Full Site Editing. </p>
<div></div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/marl"><img src="https://en-blog.files.wordpress.com/2022/03/marl.jpg?w=1024" alt="" class="wp-image-46005" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/marl">Marl →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/hari"><img src="https://en-blog.files.wordpress.com/2022/03/hari.jpg?w=720" alt="" class="wp-image-46004" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/hari">Hari →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/alonso"><img src="https://en-blog.files.wordpress.com/2022/03/alonso.jpg?w=720" alt="" class="wp-image-46002" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/alonso">Alonso →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/stewart"><img src="https://en-blog.files.wordpress.com/2022/03/stewart.jpg?w=1024" alt="" class="wp-image-45979" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/stewart">Stewart →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/winkel"><img src="https://en-blog.files.wordpress.com/2022/03/winkel.jpg?w=720" alt="" class="wp-image-46001" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/winkel">Winkel →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/videomaker"><img src="https://en-blog.files.wordpress.com/2022/03/videomaker.jpg?w=1024" alt="" class="wp-image-45980" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/videomaker">Videomaker →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/barnett"><img src="https://en-blog.files.wordpress.com/2022/03/barnett.jpg" alt="" class="wp-image-45952" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/barnett">Barnett →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/livro"><img src="https://en-blog.files.wordpress.com/2022/03/livro.jpg?w=1024" alt="" class="wp-image-45962" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/livro">Livro →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/farrow"><img src="https://en-blog.files.wordpress.com/2022/03/farrow.jpg?w=1024" alt="" class="wp-image-45983" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/farrow">Farrow →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/bennett"><img src="https://en-blog.files.wordpress.com/2022/03/bennett.jpg?w=1024" alt="" class="wp-image-45957" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/bennett">Bennett →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/kingsley"><img src="https://en-blog.files.wordpress.com/2022/03/kingsley.jpg?w=1024" alt="" class="wp-image-45967" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/kingsley">Kingsley →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/dorna"><img src="https://en-blog.files.wordpress.com/2022/03/dorna.jpg?w=720" alt="" class="wp-image-46000" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/dorna">Dorna →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/byrne"><img src="https://en-blog.files.wordpress.com/2022/03/byrne.jpg?w=1024" alt="" class="wp-image-45958" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/byrne">Byrne →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist"><img src="https://en-blog.files.wordpress.com/2022/03/geologist.jpg?w=1024" alt="" class="wp-image-45963" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist">Geologist →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/arbutus"><img src="https://en-blog.files.wordpress.com/2022/03/arbutus.jpg" alt="" class="wp-image-45951" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/arbutus">Arbutus →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo"><img src="https://en-blog.files.wordpress.com/2022/03/tt2.jpg?w=1024" alt="" class="wp-image-46009" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo">Twenty Twenty-Two →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/payton"><img src="https://en-blog.files.wordpress.com/2022/03/payton.jpg?w=1024" alt="" class="wp-image-45969" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/payton">Payton →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baxter"><img src="https://en-blog.files.wordpress.com/2022/03/baxter.jpg?w=1024" alt="" class="wp-image-45956" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baxter">Baxter →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/jackson"><img src="https://en-blog.files.wordpress.com/2022/03/jackson.jpg?w=1024" alt="" class="wp-image-45959" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/jackson">Jackson →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/ames"><img src="https://en-blog.files.wordpress.com/2022/03/ames.jpg" alt="" class="wp-image-45949" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/ames">Ames →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/attar"><img src="https://en-blog.files.wordpress.com/2022/03/attar.jpg?w=720" alt="" class="wp-image-46003" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/attar">Attar →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/russell"><img src="https://en-blog.files.wordpress.com/2022/03/russell.jpg?w=1024" alt="" class="wp-image-45986" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/russell">Russell →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/calvin"><img src="https://en-blog.files.wordpress.com/2022/03/calvin.jpg?w=1024" alt="" class="wp-image-45960" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/calvin">Calvin →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baker"><img src="https://en-blog.files.wordpress.com/2022/03/kerr.jpg?w=1024" alt="" class="wp-image-45968" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baker">Baker →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat.jpg?w=1024" alt="" class="wp-image-45975" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat">Quadrat →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/skivers"><img src="https://en-blog.files.wordpress.com/2022/03/videomaker-white-1.jpg?w=1024" alt="" class="wp-image-45987" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/skivers">Skivers →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/zoologist"><img src="https://en-blog.files.wordpress.com/2022/03/zoologist.jpg?w=1024" alt="" class="wp-image-45982" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/zoologist">Zoologist →</a></figcaption>
</figure>
</div>
</div>
<p>These new themes have been designed with a wide variety of sites cases in mind. But their potential stretches well beyond their screenshots and demo sites. Because each theme is fully editable in the Site Editor, every one of these themes can be heavily customized to fit your site&#8217;s needs. You can start with theme that features single minimalist homepage, and then add as many menus and sidebars as you wish. Or, you can start with a complex business theme and strip it down to something minimal to suit your vision.</p>
<p>The Site Editor also includes a new feature called &#8220;<a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/support/using-styles/">Global Styles</a>,&#8221; which allows you to edit site-wide settings for color, typography, and more. You&#8217;re free to change your theme&#8217;s default color scheme to whatever fits your mood, or even make all site text larger or smaller in a couple of clicks. To kick off this new feature, we&#8217;re also providing a few pre-built variations on some of these new themes.</p>
<div></div>
<figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-slate"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-slate.jpg?w=1024" alt="" class="wp-image-45964" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-pink"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-pink.jpg?w=1024" alt="" class="wp-image-45976" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-blue"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-blue.jpg?w=1024" alt="" class="wp-image-45985" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-white"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-white.jpg?w=1024" alt="" class="wp-image-45970" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/videomaker-white"><img src="https://en-blog.files.wordpress.com/2022/03/videomaker-white.jpg?w=1024" alt="" class="wp-image-45981" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-yellow"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-yellow.jpg?w=1024" alt="" class="wp-image-45965" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-yellow"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-yellow.jpg?w=1024" alt="" class="wp-image-45974" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-red"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-red.jpg?w=1024" alt="" class="wp-image-45978" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-blue"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-blue.jpg?w=1024" alt="" class="wp-image-45966" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-swiss"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-swiss.jpg?w=1024" alt="" class="wp-image-45984" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-red"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-red.jpg?w=1024" alt="" class="wp-image-45971" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-mint"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-mint.jpg?w=1024" alt="" class="wp-image-45973" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-green"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-green.jpg?w=1024" alt="" class="wp-image-45977" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-cream"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-cream.jpg?w=1024" alt="" class="wp-image-45961" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-black"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-yellow-1.jpg?w=1024" alt="" class="wp-image-45972" /></a></figure>
</figure>
<div></div>
<p>All the new themes and variations can be found in the <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/">Theme Showcase</a>. Or, if you&#8217;re starting a fresh site, they&#8217;ll be offered to you automatically in the site creation flow. This collection of themes is just the beginning, and we&#8217;re excited to continue launching a variety of diverse theme options for you. What would you like to see in the next set of themes on WordPress.com?</p>
]]></content:encoded>
			<wfw:commentRss>https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customize Your Entire Site With New Block Themes</title>
		<link>https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-3/</link>
		<comments>https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-3/#comments</comments>
		<pubDate>Wed, 09 Mar 2022 14:00:00 +0000</pubDate>
		<dc:creator>Mariapia</dc:creator>
				<category><![CDATA[Basilicata]]></category>
		<category><![CDATA[FSE]]></category>
		<category><![CDATA[Full Site Editing]]></category>
		<category><![CDATA[Global Styles]]></category>
		<category><![CDATA[Site Editor]]></category>
		<category><![CDATA[Theme Showcase]]></category>
		<category><![CDATA[Twenty Twenty]]></category>

		<guid isPermaLink="false">https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-3/</guid>
		<description><![CDATA[In case you missed it, we&#8217;ve been rolling out a new set of powerful site design tools called Full Site Editing (or “FSE”) and it&#8217;s now available for all WordPress.com users! Don’t worry if you’re just hearing about Full Site Editing for the first time. We’ve been releasing these new tools in a way that&#160;<a href="https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-3/" class="read-more">Continua a leggere..</a>]]></description>
			<content:encoded><![CDATA[<p>In case you missed it, we&#8217;ve been rolling out a new set of powerful site design tools called <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/blog/2022/02/04/full-site-editing-on-wordpress-com/">Full Site Editing</a> (or “FSE”) and it&#8217;s now available for all WordPress.com users! </p>
<p>Don’t worry if you’re just hearing about Full Site Editing for the first time. We’ve been releasing these new tools in a way that doesn’t actually require you to do anything with your existing site(s). If you are up for a change though, we&#8217;re happy to announce the launch of a brand new family of themes made specifically with Full Site Editing features in mind. As of this writing we have over two dozen themes available that support Full Site Editing. </p>
<div></div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/marl"><img src="https://en-blog.files.wordpress.com/2022/03/marl.jpg?w=1024" alt="" class="wp-image-46005" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/marl">Marl →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/hari"><img src="https://en-blog.files.wordpress.com/2022/03/hari.jpg?w=720" alt="" class="wp-image-46004" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/hari">Hari →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/alonso"><img src="https://en-blog.files.wordpress.com/2022/03/alonso.jpg?w=720" alt="" class="wp-image-46002" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/alonso">Alonso →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/stewart"><img src="https://en-blog.files.wordpress.com/2022/03/stewart.jpg?w=1024" alt="" class="wp-image-45979" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/stewart">Stewart →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/winkel"><img src="https://en-blog.files.wordpress.com/2022/03/winkel.jpg?w=720" alt="" class="wp-image-46001" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/winkel">Winkel →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/videomaker"><img src="https://en-blog.files.wordpress.com/2022/03/videomaker.jpg?w=1024" alt="" class="wp-image-45980" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/videomaker">Videomaker →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/barnett"><img src="https://en-blog.files.wordpress.com/2022/03/barnett.jpg" alt="" class="wp-image-45952" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/barnett">Barnett →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/livro"><img src="https://en-blog.files.wordpress.com/2022/03/livro.jpg?w=1024" alt="" class="wp-image-45962" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/livro">Livro →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/farrow"><img src="https://en-blog.files.wordpress.com/2022/03/farrow.jpg?w=1024" alt="" class="wp-image-45983" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/farrow">Farrow →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/bennett"><img src="https://en-blog.files.wordpress.com/2022/03/bennett.jpg?w=1024" alt="" class="wp-image-45957" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/bennett">Bennett →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/kingsley"><img src="https://en-blog.files.wordpress.com/2022/03/kingsley.jpg?w=1024" alt="" class="wp-image-45967" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/kingsley">Kingsley →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/dorna"><img src="https://en-blog.files.wordpress.com/2022/03/dorna.jpg?w=720" alt="" class="wp-image-46000" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/dorna">Dorna →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/byrne"><img src="https://en-blog.files.wordpress.com/2022/03/byrne.jpg?w=1024" alt="" class="wp-image-45958" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/byrne">Byrne →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist"><img src="https://en-blog.files.wordpress.com/2022/03/geologist.jpg?w=1024" alt="" class="wp-image-45963" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist">Geologist →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/arbutus"><img src="https://en-blog.files.wordpress.com/2022/03/arbutus.jpg" alt="" class="wp-image-45951" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/arbutus">Arbutus →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo"><img src="https://en-blog.files.wordpress.com/2022/03/tt2.jpg?w=1024" alt="" class="wp-image-46009" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo">Twenty Twenty-Two →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/payton"><img src="https://en-blog.files.wordpress.com/2022/03/payton.jpg?w=1024" alt="" class="wp-image-45969" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/payton">Payton →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baxter"><img src="https://en-blog.files.wordpress.com/2022/03/baxter.jpg?w=1024" alt="" class="wp-image-45956" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baxter">Baxter →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/jackson"><img src="https://en-blog.files.wordpress.com/2022/03/jackson.jpg?w=1024" alt="" class="wp-image-45959" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/jackson">Jackson →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/ames"><img src="https://en-blog.files.wordpress.com/2022/03/ames.jpg" alt="" class="wp-image-45949" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/ames">Ames →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/attar"><img src="https://en-blog.files.wordpress.com/2022/03/attar.jpg?w=720" alt="" class="wp-image-46003" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/attar">Attar →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/russell"><img src="https://en-blog.files.wordpress.com/2022/03/russell.jpg?w=1024" alt="" class="wp-image-45986" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/russell">Russell →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/calvin"><img src="https://en-blog.files.wordpress.com/2022/03/calvin.jpg?w=1024" alt="" class="wp-image-45960" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/calvin">Calvin →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baker"><img src="https://en-blog.files.wordpress.com/2022/03/kerr.jpg?w=1024" alt="" class="wp-image-45968" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baker">Baker →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat.jpg?w=1024" alt="" class="wp-image-45975" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat">Quadrat →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/skivers"><img src="https://en-blog.files.wordpress.com/2022/03/videomaker-white-1.jpg?w=1024" alt="" class="wp-image-45987" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/skivers">Skivers →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/zoologist"><img src="https://en-blog.files.wordpress.com/2022/03/zoologist.jpg?w=1024" alt="" class="wp-image-45982" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/zoologist">Zoologist →</a></figcaption>
</figure>
</div>
</div>
<p>These new themes have been designed with a wide variety of sites cases in mind. But their potential stretches well beyond their screenshots and demo sites. Because each theme is fully editable in the Site Editor, every one of these themes can be heavily customized to fit your site&#8217;s needs. You can start with theme that features single minimalist homepage, and then add as many menus and sidebars as you wish. Or, you can start with a complex business theme and strip it down to something minimal to suit your vision.</p>
<p>The Site Editor also includes a new feature called &#8220;<a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/support/using-styles/">Global Styles</a>,&#8221; which allows you to edit site-wide settings for color, typography, and more. You&#8217;re free to change your theme&#8217;s default color scheme to whatever fits your mood, or even make all site text larger or smaller in a couple of clicks. To kick off this new feature, we&#8217;re also providing a few pre-built variations on some of these new themes.</p>
<div></div>
<figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-slate"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-slate.jpg?w=1024" alt="" class="wp-image-45964" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-pink"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-pink.jpg?w=1024" alt="" class="wp-image-45976" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-blue"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-blue.jpg?w=1024" alt="" class="wp-image-45985" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-white"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-white.jpg?w=1024" alt="" class="wp-image-45970" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/videomaker-white"><img src="https://en-blog.files.wordpress.com/2022/03/videomaker-white.jpg?w=1024" alt="" class="wp-image-45981" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-yellow"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-yellow.jpg?w=1024" alt="" class="wp-image-45965" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-yellow"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-yellow.jpg?w=1024" alt="" class="wp-image-45974" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-red"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-red.jpg?w=1024" alt="" class="wp-image-45978" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-blue"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-blue.jpg?w=1024" alt="" class="wp-image-45966" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-swiss"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-swiss.jpg?w=1024" alt="" class="wp-image-45984" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-red"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-red.jpg?w=1024" alt="" class="wp-image-45971" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-mint"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-mint.jpg?w=1024" alt="" class="wp-image-45973" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-green"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-green.jpg?w=1024" alt="" class="wp-image-45977" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-cream"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-cream.jpg?w=1024" alt="" class="wp-image-45961" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-black"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-yellow-1.jpg?w=1024" alt="" class="wp-image-45972" /></a></figure>
</figure>
<div></div>
<p>All the new themes and variations can be found in the <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/">Theme Showcase</a>. Or, if you&#8217;re starting a fresh site, they&#8217;ll be offered to you automatically in the site creation flow. This collection of themes is just the beginning, and we&#8217;re excited to continue launching a variety of diverse theme options for you. What would you like to see in the next set of themes on WordPress.com?</p>
]]></content:encoded>
			<wfw:commentRss>https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customize Your Entire Site With New Block Themes</title>
		<link>https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-2/</link>
		<comments>https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-2/#comments</comments>
		<pubDate>Wed, 09 Mar 2022 14:00:00 +0000</pubDate>
		<dc:creator>santox89</dc:creator>
				<category><![CDATA[Campania]]></category>
		<category><![CDATA[FSE]]></category>
		<category><![CDATA[Full Site Editing]]></category>
		<category><![CDATA[Global Styles]]></category>
		<category><![CDATA[Site Editor]]></category>
		<category><![CDATA[Theme Showcase]]></category>
		<category><![CDATA[Twenty Twenty]]></category>

		<guid isPermaLink="false">https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-2/</guid>
		<description><![CDATA[In case you missed it, we&#8217;ve been rolling out a new set of powerful site design tools called Full Site Editing (or “FSE”) and it&#8217;s now available for all WordPress.com users! Don’t worry if you’re just hearing about Full Site Editing for the first time. We’ve been releasing these new tools in a way that&#160;<a href="https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-2/" class="read-more">Continua a leggere..</a>]]></description>
			<content:encoded><![CDATA[<p>In case you missed it, we&#8217;ve been rolling out a new set of powerful site design tools called <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/blog/2022/02/04/full-site-editing-on-wordpress-com/">Full Site Editing</a> (or “FSE”) and it&#8217;s now available for all WordPress.com users! </p>
<p>Don’t worry if you’re just hearing about Full Site Editing for the first time. We’ve been releasing these new tools in a way that doesn’t actually require you to do anything with your existing site(s). If you are up for a change though, we&#8217;re happy to announce the launch of a brand new family of themes made specifically with Full Site Editing features in mind. As of this writing we have over two dozen themes available that support Full Site Editing. </p>
<div></div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/marl"><img src="https://en-blog.files.wordpress.com/2022/03/marl.jpg?w=1024" alt="" class="wp-image-46005" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/marl">Marl →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/hari"><img src="https://en-blog.files.wordpress.com/2022/03/hari.jpg?w=720" alt="" class="wp-image-46004" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/hari">Hari →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/alonso"><img src="https://en-blog.files.wordpress.com/2022/03/alonso.jpg?w=720" alt="" class="wp-image-46002" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/alonso">Alonso →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/stewart"><img src="https://en-blog.files.wordpress.com/2022/03/stewart.jpg?w=1024" alt="" class="wp-image-45979" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/stewart">Stewart →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/winkel"><img src="https://en-blog.files.wordpress.com/2022/03/winkel.jpg?w=720" alt="" class="wp-image-46001" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/winkel">Winkel →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/videomaker"><img src="https://en-blog.files.wordpress.com/2022/03/videomaker.jpg?w=1024" alt="" class="wp-image-45980" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/videomaker">Videomaker →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/barnett"><img src="https://en-blog.files.wordpress.com/2022/03/barnett.jpg" alt="" class="wp-image-45952" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/barnett">Barnett →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/livro"><img src="https://en-blog.files.wordpress.com/2022/03/livro.jpg?w=1024" alt="" class="wp-image-45962" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/livro">Livro →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/farrow"><img src="https://en-blog.files.wordpress.com/2022/03/farrow.jpg?w=1024" alt="" class="wp-image-45983" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/farrow">Farrow →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/bennett"><img src="https://en-blog.files.wordpress.com/2022/03/bennett.jpg?w=1024" alt="" class="wp-image-45957" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/bennett">Bennett →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/kingsley"><img src="https://en-blog.files.wordpress.com/2022/03/kingsley.jpg?w=1024" alt="" class="wp-image-45967" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/kingsley">Kingsley →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/dorna"><img src="https://en-blog.files.wordpress.com/2022/03/dorna.jpg?w=720" alt="" class="wp-image-46000" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/dorna">Dorna →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/byrne"><img src="https://en-blog.files.wordpress.com/2022/03/byrne.jpg?w=1024" alt="" class="wp-image-45958" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/byrne">Byrne →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist"><img src="https://en-blog.files.wordpress.com/2022/03/geologist.jpg?w=1024" alt="" class="wp-image-45963" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist">Geologist →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/arbutus"><img src="https://en-blog.files.wordpress.com/2022/03/arbutus.jpg" alt="" class="wp-image-45951" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/arbutus">Arbutus →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo"><img src="https://en-blog.files.wordpress.com/2022/03/tt2.jpg?w=1024" alt="" class="wp-image-46009" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo">Twenty Twenty-Two →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/payton"><img src="https://en-blog.files.wordpress.com/2022/03/payton.jpg?w=1024" alt="" class="wp-image-45969" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/payton">Payton →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baxter"><img src="https://en-blog.files.wordpress.com/2022/03/baxter.jpg?w=1024" alt="" class="wp-image-45956" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baxter">Baxter →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/jackson"><img src="https://en-blog.files.wordpress.com/2022/03/jackson.jpg?w=1024" alt="" class="wp-image-45959" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/jackson">Jackson →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/ames"><img src="https://en-blog.files.wordpress.com/2022/03/ames.jpg" alt="" class="wp-image-45949" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/ames">Ames →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/attar"><img src="https://en-blog.files.wordpress.com/2022/03/attar.jpg?w=720" alt="" class="wp-image-46003" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/attar">Attar →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/russell"><img src="https://en-blog.files.wordpress.com/2022/03/russell.jpg?w=1024" alt="" class="wp-image-45986" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/russell">Russell →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/calvin"><img src="https://en-blog.files.wordpress.com/2022/03/calvin.jpg?w=1024" alt="" class="wp-image-45960" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/calvin">Calvin →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baker"><img src="https://en-blog.files.wordpress.com/2022/03/kerr.jpg?w=1024" alt="" class="wp-image-45968" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baker">Baker →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat.jpg?w=1024" alt="" class="wp-image-45975" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat">Quadrat →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/skivers"><img src="https://en-blog.files.wordpress.com/2022/03/videomaker-white-1.jpg?w=1024" alt="" class="wp-image-45987" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/skivers">Skivers →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/zoologist"><img src="https://en-blog.files.wordpress.com/2022/03/zoologist.jpg?w=1024" alt="" class="wp-image-45982" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/zoologist">Zoologist →</a></figcaption>
</figure>
</div>
</div>
<p>These new themes have been designed with a wide variety of sites cases in mind. But their potential stretches well beyond their screenshots and demo sites. Because each theme is fully editable in the Site Editor, every one of these themes can be heavily customized to fit your site&#8217;s needs. You can start with theme that features single minimalist homepage, and then add as many menus and sidebars as you wish. Or, you can start with a complex business theme and strip it down to something minimal to suit your vision.</p>
<p>The Site Editor also includes a new feature called &#8220;<a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/support/using-styles/">Global Styles</a>,&#8221; which allows you to edit site-wide settings for color, typography, and more. You&#8217;re free to change your theme&#8217;s default color scheme to whatever fits your mood, or even make all site text larger or smaller in a couple of clicks. To kick off this new feature, we&#8217;re also providing a few pre-built variations on some of these new themes.</p>
<div></div>
<figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-slate"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-slate.jpg?w=1024" alt="" class="wp-image-45964" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-pink"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-pink.jpg?w=1024" alt="" class="wp-image-45976" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-blue"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-blue.jpg?w=1024" alt="" class="wp-image-45985" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-white"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-white.jpg?w=1024" alt="" class="wp-image-45970" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/videomaker-white"><img src="https://en-blog.files.wordpress.com/2022/03/videomaker-white.jpg?w=1024" alt="" class="wp-image-45981" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-yellow"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-yellow.jpg?w=1024" alt="" class="wp-image-45965" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-yellow"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-yellow.jpg?w=1024" alt="" class="wp-image-45974" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-red"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-red.jpg?w=1024" alt="" class="wp-image-45978" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-blue"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-blue.jpg?w=1024" alt="" class="wp-image-45966" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-swiss"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-swiss.jpg?w=1024" alt="" class="wp-image-45984" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-red"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-red.jpg?w=1024" alt="" class="wp-image-45971" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-mint"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-mint.jpg?w=1024" alt="" class="wp-image-45973" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-green"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-green.jpg?w=1024" alt="" class="wp-image-45977" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-cream"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-cream.jpg?w=1024" alt="" class="wp-image-45961" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-black"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-yellow-1.jpg?w=1024" alt="" class="wp-image-45972" /></a></figure>
</figure>
<div></div>
<p>All the new themes and variations can be found in the <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/">Theme Showcase</a>. Or, if you&#8217;re starting a fresh site, they&#8217;ll be offered to you automatically in the site creation flow. This collection of themes is just the beginning, and we&#8217;re excited to continue launching a variety of diverse theme options for you. What would you like to see in the next set of themes on WordPress.com?</p>
]]></content:encoded>
			<wfw:commentRss>https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customize Your Entire Site With New Block Themes</title>
		<link>https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes/</link>
		<comments>https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes/#comments</comments>
		<pubDate>Wed, 09 Mar 2022 14:00:00 +0000</pubDate>
		<dc:creator>Ovosodo Cook</dc:creator>
				<category><![CDATA[Emilia Romagna]]></category>
		<category><![CDATA[FSE]]></category>
		<category><![CDATA[Full Site Editing]]></category>
		<category><![CDATA[Global Styles]]></category>
		<category><![CDATA[Site Editor]]></category>
		<category><![CDATA[Theme Showcase]]></category>
		<category><![CDATA[Twenty Twenty]]></category>

		<guid isPermaLink="false">https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes/</guid>
		<description><![CDATA[In case you missed it, we&#8217;ve been rolling out a new set of powerful site design tools called Full Site Editing (or “FSE”) and it&#8217;s now available for all WordPress.com users! Don’t worry if you’re just hearing about Full Site Editing for the first time. We’ve been releasing these new tools in a way that&#160;<a href="https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes/" class="read-more">Continua a leggere..</a>]]></description>
			<content:encoded><![CDATA[<p>In case you missed it, we&#8217;ve been rolling out a new set of powerful site design tools called <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/blog/2022/02/04/full-site-editing-on-wordpress-com/">Full Site Editing</a> (or “FSE”) and it&#8217;s now available for all WordPress.com users! </p>
<p>Don’t worry if you’re just hearing about Full Site Editing for the first time. We’ve been releasing these new tools in a way that doesn’t actually require you to do anything with your existing site(s). If you are up for a change though, we&#8217;re happy to announce the launch of a brand new family of themes made specifically with Full Site Editing features in mind. As of this writing we have over two dozen themes available that support Full Site Editing. </p>
<div></div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/marl"><img src="https://en-blog.files.wordpress.com/2022/03/marl.jpg?w=1024" alt="" class="wp-image-46005" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/marl">Marl →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/hari"><img src="https://en-blog.files.wordpress.com/2022/03/hari.jpg?w=720" alt="" class="wp-image-46004" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/hari">Hari →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/alonso"><img src="https://en-blog.files.wordpress.com/2022/03/alonso.jpg?w=720" alt="" class="wp-image-46002" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/alonso">Alonso →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/stewart"><img src="https://en-blog.files.wordpress.com/2022/03/stewart.jpg?w=1024" alt="" class="wp-image-45979" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/stewart">Stewart →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/winkel"><img src="https://en-blog.files.wordpress.com/2022/03/winkel.jpg?w=720" alt="" class="wp-image-46001" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/winkel">Winkel →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/videomaker"><img src="https://en-blog.files.wordpress.com/2022/03/videomaker.jpg?w=1024" alt="" class="wp-image-45980" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/videomaker">Videomaker →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/barnett"><img src="https://en-blog.files.wordpress.com/2022/03/barnett.jpg" alt="" class="wp-image-45952" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/barnett">Barnett →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/livro"><img src="https://en-blog.files.wordpress.com/2022/03/livro.jpg?w=1024" alt="" class="wp-image-45962" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/livro">Livro →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/farrow"><img src="https://en-blog.files.wordpress.com/2022/03/farrow.jpg?w=1024" alt="" class="wp-image-45983" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/farrow">Farrow →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/bennett"><img src="https://en-blog.files.wordpress.com/2022/03/bennett.jpg?w=1024" alt="" class="wp-image-45957" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/bennett">Bennett →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/kingsley"><img src="https://en-blog.files.wordpress.com/2022/03/kingsley.jpg?w=1024" alt="" class="wp-image-45967" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/kingsley">Kingsley →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/dorna"><img src="https://en-blog.files.wordpress.com/2022/03/dorna.jpg?w=720" alt="" class="wp-image-46000" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/dorna">Dorna →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/byrne"><img src="https://en-blog.files.wordpress.com/2022/03/byrne.jpg?w=1024" alt="" class="wp-image-45958" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/byrne">Byrne →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist"><img src="https://en-blog.files.wordpress.com/2022/03/geologist.jpg?w=1024" alt="" class="wp-image-45963" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist">Geologist →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/arbutus"><img src="https://en-blog.files.wordpress.com/2022/03/arbutus.jpg" alt="" class="wp-image-45951" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/arbutus">Arbutus →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo"><img src="https://en-blog.files.wordpress.com/2022/03/tt2.jpg?w=1024" alt="" class="wp-image-46009" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo">Twenty Twenty-Two →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/payton"><img src="https://en-blog.files.wordpress.com/2022/03/payton.jpg?w=1024" alt="" class="wp-image-45969" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/payton">Payton →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baxter"><img src="https://en-blog.files.wordpress.com/2022/03/baxter.jpg?w=1024" alt="" class="wp-image-45956" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baxter">Baxter →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/jackson"><img src="https://en-blog.files.wordpress.com/2022/03/jackson.jpg?w=1024" alt="" class="wp-image-45959" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/jackson">Jackson →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/ames"><img src="https://en-blog.files.wordpress.com/2022/03/ames.jpg" alt="" class="wp-image-45949" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/ames">Ames →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/attar"><img src="https://en-blog.files.wordpress.com/2022/03/attar.jpg?w=720" alt="" class="wp-image-46003" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/attar">Attar →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/russell"><img src="https://en-blog.files.wordpress.com/2022/03/russell.jpg?w=1024" alt="" class="wp-image-45986" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/russell">Russell →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/calvin"><img src="https://en-blog.files.wordpress.com/2022/03/calvin.jpg?w=1024" alt="" class="wp-image-45960" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/calvin">Calvin →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baker"><img src="https://en-blog.files.wordpress.com/2022/03/kerr.jpg?w=1024" alt="" class="wp-image-45968" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/baker">Baker →</a></figcaption>
</figure>
</div>
</div>
<div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat.jpg?w=1024" alt="" class="wp-image-45975" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat">Quadrat →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/skivers"><img src="https://en-blog.files.wordpress.com/2022/03/videomaker-white-1.jpg?w=1024" alt="" class="wp-image-45987" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/skivers">Skivers →</a></figcaption>
</figure>
</div>
<div>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/zoologist"><img src="https://en-blog.files.wordpress.com/2022/03/zoologist.jpg?w=1024" alt="" class="wp-image-45982" /></a><br />
<figcaption><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/zoologist">Zoologist →</a></figcaption>
</figure>
</div>
</div>
<p>These new themes have been designed with a wide variety of sites cases in mind. But their potential stretches well beyond their screenshots and demo sites. Because each theme is fully editable in the Site Editor, every one of these themes can be heavily customized to fit your site&#8217;s needs. You can start with theme that features single minimalist homepage, and then add as many menus and sidebars as you wish. Or, you can start with a complex business theme and strip it down to something minimal to suit your vision.</p>
<p>The Site Editor also includes a new feature called &#8220;<a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/support/using-styles/">Global Styles</a>,&#8221; which allows you to edit site-wide settings for color, typography, and more. You&#8217;re free to change your theme&#8217;s default color scheme to whatever fits your mood, or even make all site text larger or smaller in a couple of clicks. To kick off this new feature, we&#8217;re also providing a few pre-built variations on some of these new themes.</p>
<div></div>
<figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-slate"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-slate.jpg?w=1024" alt="" class="wp-image-45964" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-pink"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-pink.jpg?w=1024" alt="" class="wp-image-45976" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-blue"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-blue.jpg?w=1024" alt="" class="wp-image-45985" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-white"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-white.jpg?w=1024" alt="" class="wp-image-45970" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/videomaker-white"><img src="https://en-blog.files.wordpress.com/2022/03/videomaker-white.jpg?w=1024" alt="" class="wp-image-45981" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-yellow"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-yellow.jpg?w=1024" alt="" class="wp-image-45965" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-yellow"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-yellow.jpg?w=1024" alt="" class="wp-image-45974" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-red"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-red.jpg?w=1024" alt="" class="wp-image-45978" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-blue"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-blue.jpg?w=1024" alt="" class="wp-image-45966" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-swiss"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-swiss.jpg?w=1024" alt="" class="wp-image-45984" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-red"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-red.jpg?w=1024" alt="" class="wp-image-45971" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/twentytwentytwo-mint"><img src="https://en-blog.files.wordpress.com/2022/03/tt2-mint.jpg?w=1024" alt="" class="wp-image-45973" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-green"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-green.jpg?w=1024" alt="" class="wp-image-45977" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/geologist-cream"><img src="https://en-blog.files.wordpress.com/2022/03/geologist-cream.jpg?w=1024" alt="" class="wp-image-45961" /></a></figure>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/quadrat-black"><img src="https://en-blog.files.wordpress.com/2022/03/quadrat-yellow-1.jpg?w=1024" alt="" class="wp-image-45972" /></a></figure>
</figure>
<div></div>
<p>All the new themes and variations can be found in the <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/themes/">Theme Showcase</a>. Or, if you&#8217;re starting a fresh site, they&#8217;ll be offered to you automatically in the site creation flow. This collection of themes is just the beginning, and we&#8217;re excited to continue launching a variety of diverse theme options for you. What would you like to see in the next set of themes on WordPress.com?</p>
]]></content:encoded>
			<wfw:commentRss>https://foodbloggermania.it/ricetta/customize-your-entire-site-with-new-block-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Try Our New Tools for Creating Beautiful Sites</title>
		<link>https://foodbloggermania.it/ricetta/try-our-new-tools-for-creating-beautiful-sites-8/</link>
		<comments>https://foodbloggermania.it/ricetta/try-our-new-tools-for-creating-beautiful-sites-8/#comments</comments>
		<pubDate>Fri, 04 Feb 2022 19:21:51 +0000</pubDate>
		<dc:creator>claudialuca90</dc:creator>
				<category><![CDATA[Sicilia]]></category>
		<category><![CDATA[FSE]]></category>
		<category><![CDATA[Full Site Editing]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Site Editor]]></category>

		<guid isPermaLink="false">https://foodbloggermania.it/ricetta/try-our-new-tools-for-creating-beautiful-sites-8/</guid>
		<description><![CDATA[Last week we opened up limited access to a revolutionary array of new site editing tools that will transform how you create, edit, and update the look and feel of your WordPress.com website by leveraging easy-to-use drag and drop functionality.  Today we’re excited to announce that the wait is over. Over the next few weeks,&#160;<a href="https://foodbloggermania.it/ricetta/try-our-new-tools-for-creating-beautiful-sites-8/" class="read-more">Continua a leggere..</a>]]></description>
			<content:encoded><![CDATA[<p><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/blog/2022/01/17/get-early-access-to-full-site-editing/">Last week</a> we opened up limited access to a revolutionary array of new site editing tools that will transform how you create, edit, and update the look and feel of your WordPress.com website by leveraging easy-to-use drag and drop functionality. </p>
<p>Today we’re excited to announce that the wait is over. Over the next few weeks, we’ll be rolling these new tools out to <em>all</em> of our customers. Here’s what that means for you.</p>
<h3>Exciting Features Included in This Release</h3>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://en-blog.files.wordpress.com/2022/02/5-9-release-6.webp"><img src="https://en-blog.files.wordpress.com/2022/02/5-9-release-6.webp?w=1024" alt="" class="wp-image-45771" width="512" height="384" /></a></figure>
<h4><strong>List view for dragging and dropping your content</strong></h4>
<p>Until now, you’ve been able to create and customize the key content on your posts and pages by dragging and dropping blocks into any arrangement and style you can think of.</p>
<p>Full Site Editing takes that same idea a giant leap further.</p>
<p>The headers, footers, menus, and other elements of the page previously only editable behind the scenes are now at your complete control via the block editor you’re already used to using. That means you can drag, drop, and visually edit any and all parts of your site without a line of code or an admin dashboard in sight.</p>
<figure><a target="_blank" rel="nofollow" href="https://en-blog.files.wordpress.com/2022/02/templates.png"><img src="https://en-blog.files.wordpress.com/2022/02/templates.png?w=1024" alt="" class="wp-image-45778" width="512" height="384" /></a></figure>
<h4><strong>Any page, any post, any way</strong></h4>
<p>With the new <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/support/site-editor/">Site Editor</a>, you’ll also be able to take total control of the look and feel of specific page templates. From your home page to individual posts, your 404 page to your blog archive, FSE gives you quick, granular control of the design of each and every element of your site.</p>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://en-blog.files.wordpress.com/2022/02/5-9-release-2.webp"><img src="https://en-blog.files.wordpress.com/2022/02/5-9-release-2.webp?w=1024" alt="" class="wp-image-45773" width="512" height="384" /></a></figure>
<h4><strong>Instant visual feedback </strong></h4>
<p>Speaking of granular control, the integrated <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/support/using-styles/">Styles</a> tool gives you an easy-access way to make subtle <em>or</em> site-wide changes using an intuitive suite of visual design tools.&nbsp; From your global color palette to fine-tuning your typography, building out a beautiful, consistent look and feel is now an instantaneous, hands-on experience.</p>
<h3>What this means for you</h3>
<p>You’ll be pleased to hear that you <strong>don’t need to take any action</strong> at all, whether you have an existing site or are about to create a new one. You’ll be able to continue editing your site in exactly the same way you always have by choosing not to use the new <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/support/themes/choose-a-theme/#block-themes">block themes</a>.&nbsp;</p>
<h4><strong>For new sites</strong></h4>
<p>In the coming days, all new sites will give you the chance to choose a theme that takes full advantage of the new Full Site Editing experience. We’ll be rolling out new resources, guides, and help docs to get you up to speed, fast.</p>
<h4><strong>For existing sites</strong></h4>
<p>Over the next few weeks, we will be rolling out the ability to switch your <em>existing</em> site over to a theme that will give you access to these features. <strong>This won’t be automatically switched</strong>, so watch out for an announcement and the details on how to access these new tools.&nbsp;</p>
<h3>The WordPress.com advantage</h3>
<p>If you follow the wider Open Source WordPress project, you might have heard of ‘releases’ or ‘versions’ of WordPress. Full Site Editing incorporates the tools and features added to WordPress in the latest release, WordPress 5.9, <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.org/news/2022/01/josephine/">which went out on January 25th</a>.&nbsp;</p>
<p>As the <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wphostingbenchmarks.com/company/wordpress-com/">fastest WordPress managed hosting provider on the planet</a>, WordPress.com includes everything you’d expect from WordPress 5.9 hosted elsewhere, with blazing fast site speeds and specialized integration into our platform to help ensure that all of our users have a great first experience with these exciting new features from day one.  We’d love to hear what you think of the new experience and are always on hand to answer any questions you have as you make the switch.</p>
<h3><strong>Ready to get started?</strong></h3>
<p>We’re dedicated to helping you get the most out of the new Site Editor experience. </p>
<p>If you’re eager to get started, you might find these extra resources a great next step:</p>
<ul>
<li>Check out a great overview of Full Site Editing in action in the official WordPress <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://www.youtube.com/watch?v=XvEG9XWD4JI">5.9 intro video&nbsp;</a></li>
<li>Keep an eye out for our <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/webinars/">upcoming webinars on Full Site Editing.</a>&nbsp;</li>
<li>Check out some of the detailed deep-dive content in <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/support/full-site-editing-beta/">our support docs.&nbsp;</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>https://foodbloggermania.it/ricetta/try-our-new-tools-for-creating-beautiful-sites-8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Try Our New Tools for Creating Beautiful Sites</title>
		<link>https://foodbloggermania.it/ricetta/try-our-new-tools-for-creating-beautiful-sites-9/</link>
		<comments>https://foodbloggermania.it/ricetta/try-our-new-tools-for-creating-beautiful-sites-9/#comments</comments>
		<pubDate>Fri, 04 Feb 2022 19:21:51 +0000</pubDate>
		<dc:creator>Alveare Delle Delizie</dc:creator>
				<category><![CDATA[Friuli Venezia Giulia]]></category>
		<category><![CDATA[FSE]]></category>
		<category><![CDATA[Full Site Editing]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Site Editor]]></category>

		<guid isPermaLink="false">https://foodbloggermania.it/ricetta/try-our-new-tools-for-creating-beautiful-sites-9/</guid>
		<description><![CDATA[Last week we opened up limited access to a revolutionary array of new site editing tools that will transform how you create, edit, and update the look and feel of your WordPress.com website by leveraging easy-to-use drag and drop functionality.&#160; Today we’re excited to announce that the wait is over. Over the next few weeks,&#160;<a href="https://foodbloggermania.it/ricetta/try-our-new-tools-for-creating-beautiful-sites-9/" class="read-more">Continua a leggere..</a>]]></description>
			<content:encoded><![CDATA[<p><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/blog/2022/01/17/get-early-access-to-full-site-editing/">Last week</a> we opened up limited access to a revolutionary array of new site editing tools that will transform how you create, edit, and update the look and feel of your WordPress.com website by leveraging easy-to-use drag and drop functionality.&nbsp;</p>
<p>Today we’re excited to announce that the wait is over. Over the next few weeks, we’ll be rolling these new tools out to <em>all</em> of our customers. Here’s what that means for you.</p>
<h3>Exciting Features Included in This Release</h3>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://en-blog.files.wordpress.com/2022/02/5-9-release-6.webp"><img src="https://en-blog.files.wordpress.com/2022/02/5-9-release-6.webp?w=1024" alt="" class="wp-image-45771" width="512" height="384" /></a></figure>
<h4><strong>List view for dragging and dropping your content</strong></h4>
<p>Until now, you’ve been able to create and customize the key content on your posts and pages by dragging and dropping blocks into any arrangement and style you can think of.</p>
<p>Full Site Editing takes that same idea a giant leap further.</p>
<p>The headers, footers, menus, and other elements of the page previously only editable behind the scenes are now at your complete control via the block editor you’re already used to using. That means you can drag, drop, and visually edit any and all parts of your site without a line of code or an admin dashboard in sight.</p>
<figure><a target="_blank" rel="nofollow" href="https://en-blog.files.wordpress.com/2022/02/templates.png"><img src="https://en-blog.files.wordpress.com/2022/02/templates.png?w=1024" alt="" class="wp-image-45778" width="512" height="384" /></a></figure>
<h4><strong>Any page, any post, any way</strong></h4>
<p>With the new <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/support/site-editor/">Site Editor</a>, you’ll also be able to take total control of the look and feel of specific page templates. From your home page to individual posts, your 404 page to your blog archive, FSE gives you quick, granular control of the design of each and every element of your site.</p>
<figure><a target="_blank" rel="nofollow" href="/redirect.php?URL=https://en-blog.files.wordpress.com/2022/02/5-9-release-2.webp"><img src="https://en-blog.files.wordpress.com/2022/02/5-9-release-2.webp?w=1024" alt="" class="wp-image-45773" width="512" height="384" /></a></figure>
<h4><strong>Instant visual feedback&nbsp;</strong></h4>
<p>Speaking of granular control, the integrated <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/support/using-styles/">Styles</a> tool gives you an easy-access way to make subtle <em>or</em> site-wide changes using an intuitive suite of visual design tools.&nbsp; From your global color palette to fine-tuning your typography, building out a beautiful, consistent look and feel is now an instantaneous, hands-on experience.</p>
<h3>What this means for you</h3>
<p>You’ll be pleased to hear that you <strong>don’t need to take any action</strong> at all, whether you have an existing site or are about to create a new one. You’ll be able to continue editing your site in exactly the same way you always have by choosing not to use the new <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/support/themes/choose-a-theme/#block-themes">block themes</a>.&nbsp;</p>
<h4><strong>For new sites</strong></h4>
<p>In the coming days, all new sites will give you the chance to choose a theme that takes full advantage of the new Full Site Editing experience. We’ll be rolling out new resources, guides, and help docs to get you up to speed, fast.</p>
<h4><strong>For existing sites</strong></h4>
<p>Over the next few weeks, we will be rolling out the ability to switch your <em>existing</em> site over to a theme that will give you access to these features. <strong>This won’t be automatically switched</strong>, so watch out for an announcement and the details on how to access these new tools.&nbsp;</p>
<h3>The WordPress.com advantage</h3>
<p>If you follow the wider Open Source WordPress project, you might have heard of ‘releases’ or ‘versions’ of WordPress. Full Site Editing incorporates the tools and features added to WordPress in the latest release, WordPress 5.9, <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.org/news/2022/01/josephine/">which went out on January 25th</a>.&nbsp;</p>
<p>As the <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wphostingbenchmarks.com/company/wordpress-com/">fastest WordPress managed hosting provider on the planet</a>, WordPress.com includes everything you’d expect from WordPress 5.9 hosted elsewhere, with blazing fast site speeds and specialized integration into our platform to help ensure that all of our users have a great first experience with these exciting new features from day one.&nbsp; We’d love to hear what you think of the new experience and are always on hand to answer any questions you have as you make the switch.</p>
<h3><strong>Ready to get started?</strong></h3>
<p>We’re dedicated to helping you get the most out of the new Site Editor experience.&nbsp;</p>
<p>If you’re eager to get started, you might find these extra resources a great next step:</p>
<ul>
<li>Check out a great overview of Full Site Editing in action in the official WordPress <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://www.youtube.com/watch?v=XvEG9XWD4JI">5.9 intro video&nbsp;</a></li>
<li>Keep an eye out for our <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/webinars/">upcoming webinars on Full Site Editing.</a>&nbsp;</li>
<li>Check out some of the detailed deep-dive content in <a target="_blank" rel="nofollow" href="/redirect.php?URL=https://wordpress.com/support/full-site-editing-beta/">our support docs.&nbsp;</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>https://foodbloggermania.it/ricetta/try-our-new-tools-for-creating-beautiful-sites-9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- Wp Fastest Cache: XML Content -->