Okay, I’m going on the assumption that the real question is “how do I get Thematic to add the post-format to its body classes?”
Try this in your functions.php:
function my_thematic_post_format_class( $classes = array() ) {
$format = get_post_format();
if ( '' == $format )
$format="standard";
$classes[] = 'format-' . $format;
return $classes;
}
add_filter( 'post_class', 'my_thematic_post_format_class' );
Don’t override the thematic post class functions. Just add that filter, and you should be good.
Related Posts:
- How to *remove* a parent theme page template from a child theme?
- How do I make my child theme re-apply the settings that were customised when its parent was active?
- How to Add Customizer Setting in Child Theme
- Create a customizable child theme
- How to show only Standard Format post in my custom taxonomy page -wordpress 3.8.1
- Add URL field to the link post format
- How can I & how do I change text displayed in comment via child theme
- How to build a child theme from a react-based parent theme?
- Customizing default Mediaelement player
- Child Theme – how to add new widget on a specific place?
- How do I call in a category title on a category page in a child theme?
- Is it possible to add a ribbon in the background of h1 on every page?
- Include custom JS without child theme
- Child theme .css files are not overriding their parent .css files
- Child Theme with multiple css files
- How to get Related Custom Posts?
- How do I remove a customiser option from a parent theme in a child theme?
- CSS Styling a specific page
- Is there a way to override require_once of the main theme on the child theme?
- Load File (Function & Variable Value) from Child Theme
- Changes in my child theme from customizer not appearing in style.css?
- Is there another way to customize a parent template file besides adding the file to a child theme?
- css media query question [closed]
- How to customize the WordPress 2014 theme, to have page using less horizontal margin?
- WordPress Child Theme Stylesheet being loaded before Parent’s minified .css
- Make tag archive display post are ordered by post format
- How to add functionality to an existing theme (using child themes)
- How to Render Post Types in RSS Feed?
- WordPress 3.1.2 Bug: add_theme_support() and video post format registering twice
- Changing update message from Newspaper child theme
- javascript file not working in a plugin template file
- Easily add custom HTML outside the main container?
- Trying to customise 2011 Child Theme Background Colour
- WordPress core jquery version file not loaded?
- How can error pages be customized
- Issue with navigation bar in child theme
- Fixed bottom menu on mobile doesn’t work on search included in Child Theme of Storefront
- Unhook a function within a class in the child theme
- Calling get_theme_mod() of an WP_Customize_Image_Control() returns an Array, how do I correctly return the image src for my custom theme?
- If a theme will undergo major changes would it be better to clone the parent instead of writting a child theme?
- How do I move my sites to a child theme without loosing customisation?
- Change post template the proper way
- Why, when it comes to custom background and image, does ‘The first value registered’ win?
- Changing a setting in the wp-admin/customize.php reverts CSS styles to parent theme [closed]
- Changes in comments.php in the child theme does not show up on the site
- Word Press Theme Customiser and Child theme Function.php
- Modifying posts based on category in TwentyTwentyTwo theme
- How do I know if the custom theme is a child theme or a full-custom theme?
- How to move custom icons from parent theme to the child theme
- How to: Easily Move a WordPress Install from Development to Production?
- Is there a flowchart for WordPress loading sequence?
- Essential technical features for high-end WordPress web hosting? [closed]
- How to remove admin menu pages inserted by plugins?
- Opinions and recommendations on the best barebones base theme [closed]
- How to put logs in WordPress
- How to get the Date Format and Time Format settings for use in my template?
- Where are Additional CSS files stored
- Best Practices for Regression Testing WordPress Websites?
- Remove wrapping div and ul from output of wp_nav_menu
- What Is The Use Of map_meta_cap Filter?
- get post author id outside loop
- Custom Walker: how to get ID in function start_lvl
- Creative uses of WordPress [closed]
- Multiple Inputs in a Customizer Control
- New WP_Customize API – how does it work under the hood?
- Embedding a SOAP Client into a WordPress Plugin?
- Is there anything that Joomla or Drupal can do that can’t be done in WordPress? [closed]
- Update widget form after drag-and-drop (WP save bug)
- Data sanitization: Best Practices with code examples
- How to benchmark a WordPress installation? [closed]
- Should I delete the default themes?
- Moving WP install from local to live, what about wp_posts GUID?
- Modified wp.media.view.Settings.Gallery in Backbone JS, but editing doesn’t work
- Running Gutenberg React in Development Mode
- Prevent WordPress from automatically installing a new theme each year
- Can we use one WordPress installation for multiple databases, domains and content directories
- Is there a blank theme framework compatible with WP 3.0? [closed]
- Plugin SVN & update API – how are plugins identified?
- Users with custom roles not showing in post author select box
- How to use more than 256MB of memory in the admin?
- How do I query by post format in WordPress 3.1
- How do register_sidebar() and get_sidebar() work together?
- How do you get formatted content of a post using the WordPress API?
- Localization: I want the backend: english and frontend in defined language
- Are there any forks of WordPress (and what is different about them)?
- How to Change 404 page title
- Make Custom Metaboxes Collapse by Default
- WordPress Paginate $wpdb->get_results
- Custom maintenance page
- Add button to TinyMCE bar without creating a plugin
- Why do I get the timeout warning?
- How to add a new product type on woocommerce product types? [closed]
- How to include own css on wordpress tinymce editor?
- How to disable page delete
- add button to post edit page when post_status=publish
- how to override woocommerce specific loop or archive-product.php [closed]
- How to set a default format for a custom post type?
- Modify existing plugin function using filter (without modifying the plugin directly)
- Rename UPLOADS folder with custom WP_CONTENT_DIR
- WordPress hook before inserting post into database