Home / Disable Post Formats
Duplicate Snippet

Embed Snippet on Your Site

Disable Post Formats

Disable the Post Formats feature for all posts.

60+
Code Preview
php
<?php
add_action( 'after_setup_theme', function() {
    remove_theme_support( 'post-formats' );
}, 11 );

Comments

Add a Comment