Add Add-Post-Formats.php

This commit is contained in:
Andreas Andersen 2026-04-11 19:04:39 +00:00
commit 0ffb087386

12
Add-Post-Formats.php Normal file
View file

@ -0,0 +1,12 @@
<?php
/**
* Plugin Name: Add Post Formats
* Description: Plugin that enable the support of post formats in WordPress, even though your theme does not support them
* Author: Andreas Andersen
* Author URI: https://www.it-blogger.dk
* Plugin URI: https://www.it-blogger.dk
* Version: 1.0
*/
add_theme_support( 'post-formats', array('gallery','quote','video','aside','image', 'link','status','audio','chat') );
?>