How can I change the inspector-style sheet of the verification tool?

Asked 2 years ago, Updated 2 years ago, 434 views

I am creating a site with WordPress.I'm an amateur.

If you look at what you want to change in the verification tool, you can see that the element style is
The file name is inspector-stylesheet.

That's the excerpt from the php, but
You are trying to change the size of this character.

How can this be done?

functions.php

 function twpp_change_excerpt_length($length){
    return70; 
  }
add_filter('excerpt_length', 'twpp_change_excerpt_length',999);

archive.php

<div class="blog-item-excerpt">
    <?php echo mb_substr(get_the_excerpt(), 0,50).'[...]';?>
        </div>
                <?php//end?> to display excerpts    

calling in .

php wordpress

2022-09-30 22:03

1 Answers

There was some explanation below.
https://willcloud.jp/knowhow/dev-tools-01/
After two days, I tried again, and for some reason I could do it normally,
I don't know exactly how to do it, but thank you to everyone who helped me.


2022-09-30 22:03

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.