Summary of Twenty Twenty Five theme customizations (coming soon)

landscape, moutains, clouds, snow, switzerland, hiking, nature, meadow

Page Language Swicher

We will now summarize the customization details of the Twenty Twenty Five theme

Now that the blog is in shape, we will create a page to summarize the customization contents of the Twenty Twenty Five theme for this blog.If we add it as a blog post, the customization contents will be scattered and difficult to understand, so we will describe all the contents in a fixed page.

We will be creating it and will add links to this section when it takes some shape.

Update at night

After all, words do work…I was unable to update lunch again today.I didn’t even make it to lunch, so I had some bread and snacks from the vending machine at work.Next time I will make sure I don’t leave any of it in my mouth or in my articles.

h2, h3 settings in Gutenberg editor were disabled

Not long ago the look and feel of the article was the same, but the style.css is no longer reflected in the Gutenberg editor.I don’t remember changing anything.

I have re-set it again.

PHP
//20250207 Gutenburg Editor to reflect the contents of the style sheet for display
//  editor-style.css need to be appended to the
function wpdocs_theme_add_editor_styles() {
	add_theme_support( 'wp-block-styles' );
	add_theme_support( 'editor-styles' );
	add_editor_style( array( 'style.css', 'editor-style.css' ) );
}
add_action( 'after_setup_theme', 'wpdocs_theme_add_editor_styles' );
functions.php
CSS
/* 20250122 h3 Change the display of Line on the left, bold*/
h3 {
        border-left:5px solid #707f49;
        padding-top:9px;
        padding-bottom:9px;
        padding-left:9px;
        font-weight:bold;
}
/* 20250122 h2 Change the display of Bold */
h2 {
        font-weight:bold;
}
editor-style.css

I just copied and pasted the h2 and h3 settings from the child theme’s style.css. I had to set them in the editor-style.css to get them to work.

Now that h3 is distinguishable, it is easier to blog about.I used this page as a reference. (Japanese site)

iPhone SE4 (iPhone16e) to be announced in February?

(Japanese site)

Could it be announced as early as February 11? I am very happy if it is true.I would be happy if it is true.My current iPhone7 plus is not lasting a day on the rechargeable battery.It’s at its limit, including the fact that I can’t update my iOS to the latest version…

Musubi

Today is Friday, and the day after tomorrow I will be creating the customization details for this site for the Twenty Twenty Five theme.I will publish it when it is somewhat completed.

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *