wordpress rename post format

  1. In your WordPress dashboard, go to the "Posts" section and select the post you want to rename.

  2. Click on the "Quick Edit" option for the post.

  3. Locate the "Format" dropdown menu and choose the post format you want to rename.

  4. Open the Chrome DevTools Console by pressing Cmd + Option + J (Mac) or Ctrl + Shift + J (Windows, Linux, Chrome OS).

  5. Type the following command and press Enter:

jQuery('select[name="post_format"] option[value="your_post_format_here"]').text('New Post Format Name');

Replace "your_post_format_here" with the actual post format value and "New Post Format Name" with your desired new name.

  1. Press Enter to execute the command.

  2. Close the Chrome DevTools Console and your post format should now be renamed.