php - How can I add my custom css class to all existing posts in wordpress?

one text

Solution:

You can use the plugin "Post/Page specific custom CSS" to add custom css to any post or page.

Update: I found a solution to this problem. Of course, this solution may be a little complicated. But with this method, you can assign a style to several specific posts. First, you must find the post ID from the database or with the below method.

  1. Click to edit your post or page.
  2. In your browser URL bar at the top of this edit screen, you will see something like this where the id: …/wp-admin/post.php?post=447&action=edit
  3. In the example above, there are 477 post IDs.

Once the post IDs are found, follow the example below.

/*first use .postid- and if it does not work then use .post- */

.postid-477 h4 , .postid-300 h4 , .postid-256 h4 {
     font-family:tahoma;
     color: #77a13b;
     size: 28px;

}

or

.post-477 h4, .post-300 h4 , .post-256 h4 {
     font-family:tahoma;
     color: #77a13b;
     size: 28px;

}

Source