I think this is the only way for now. Put this in your functions.php in your theme folder or create a simple plugin:
function rename_post_formats( $safe_text ) {
if ( $safe_text == 'Aside' )
return 'Quick';
return $safe_text;
}
add_filter( 'esc_html', 'rename_post_formats' );
//rename Aside in posts list table
function live_rename_formats() {
global $current_screen;
if ( $current_screen->id == 'edit-post' ) { ?>
<script type="text/javascript">
jQuery('document').ready(function() {
jQuery("span.post-state-format").each(function() {
if ( jQuery(this).text() == "Aside" )
jQuery(this).text("Quick");
});
});
</script>
<?php }
}
add_action('admin_head', 'live_rename_formats');
Related Posts:
- Is it possible to remove the “standard” post format?
- Difficulty with PHP function that displays a post’s format in WordPress
- How to modify get_the_excerpt() when post-format equals ‘quote’?
- What’s the difference between home_url() and site_url()
- Difference between the_permalink() and get_permalink() function
- WordPress Enqueue for homepage only, functions.php, wp-framework
- How to influence the information displayed on widget inside wp-admin
- Remove Container Element From wp_nav_menu() Markup
- WordPress function like is_category for subcategory? is_subcategory?
- WordPress Theme Update Action?
- Using a private method as an action callback from within a class
- Auto close (hide) custom metabox / set default state
- Does WordPress Development Mode Exist (with not minified JS)?
- WP_Query in functions.php
- wp_delete_user with username
- what is the meaning of settings_fields()
- Organize functions.php
- How to activate “Description” metabox for menu item programmatically?
- Change labels on ‘Nickname’ and ‘Biographical Info’ in user-edit.php
- Edit the_content function
- write in functions.php
- How to set child post categories to parent post categories when updating parent post?
- get excerpt without images
- display 100 products per page on product category page [closed]
- Adding WooCommerce to a Custom Theme – not working [closed]
- WooCommerce add_action hook results in 500 error
- Advice: Template structure – php blocks in sidebar or someting else?
- Help to resolve Syntax error, unexpected ‘endwhile’ (T_ENDWHILE) [closed]
- Changing itemprop from logo to image on custom logo?
- wp_get_post_terms() returns WP_Error in functions.php but in template it works
- Removing the first image in content
- Move jQuery and Migrate to footer?
- Make menu structure match page heirarchy on page parent change
- Global functions on WPMU
- str_replace function in theme
- is_account_page() change to page slug
- How to add nav menu items to a specific position within a menu
- woocommerce: change default setting > is_sold_individualy function
- Help with WP gallery function, wrap gallery in div
- set_post_thumbnail when user is not logged in
- WordPress Menuing Question :focus
- call of javascript function to external url always blocked by cors
- Can you put a condition on add_image_size() depending on the width of the uploaded image?
- What WordPress function to use to get meta value by using meta keys?
- Force to use STRONG users password and implement rule to prevent REUSE [closed]
- Create a custom taxonomy that will be used to create and filter markers in a Google Map
- Adding an external HTML link to a post thumbnail
- Overwriting the menu break points of twentysixteen in child theme
- Is there a WP function to get taxonomy name from taxonomy_term_id?
- Passing User_Fields to Contact form 7 [duplicate]
- How can this crude function be improved?
- Help With Creating Shortcode
- How can I use Woocommerce $product->get_attribute in functions.php? (if at all)
- How to set default post editor based on role?
- How to hide image-url if no attachment?
- Hide thumbnail on search results when thumbnail not set – using Oxygen
- How to properly refresh page after form action?
- Default Nav Highlight
- Using two loops in one WordPress template
- Multiple navigation menu in same location
- WordPress Website with Login system
- Return link pages instead of displaying them
- Adding Read More to Custom excerpts
- Filepath to Chosen for “Home Page” option – Which function?
- Add a custom function to widget code
- Create Custom URL structure for specific Post category using Post ID instead of post name
- Custom route and extract data from slashes and parameter
- Exclude specific post from query
- wp_set_object_term via js btn frontend
- How can I show a specific page to admins only?
- Function to function shortcode help [closed]
- Hide author info in single posts by certain users
- Creating a custom functions page wordpress
- CSS disabled after getting rid of emoji
- How do I create a child theme from PowerMag theme
- WordPress Toggle Menu has stopped working
- Echo a String Based On Geolocation? [Woocommerce || ACF]
- How do I dequeue a Stylesheet, stored in an ‘Assets’ folder?
- Load scripts into an AJAX div
- Author Page User id in functions.php for non login user
- TinyMCE Multiple Custom Classes Selections
- Surrond h1 entry-title automatically with a span tag
- custom post with loading script per single post
- update_post_meta not working in function
- Show the post date using the wp_get_archives() function?
- Shortcode to output get_header not working
- get_the_title in edit post_link
- wp_enqueue_scripts called twice?
- Welcome Mails based on user role
- How to Insert A List of Posts in A Category Written by the Author into the Author Archive
- Dynamic body classes based on current page
- Why don’t some template tags work when querying information on single.php?
- Problem with Child-Theme using of foundation-framework [closed]
- Removing Facebook contact field from user contact not working
- add variable to actions/functions across different files (woocommerce)
- How do grab the main loop, with conditions, and output via shortcodes
- replacing words to “…” [closed]
- dynamically import array from another js file in WordPress
- Disable Attachment Page Except for Category
- Is it possible to set the first image from a gallery as the product image, rather than the featured image?