Files
wordpress-zerro/functions.php
T
2020-03-13 18:23:34 +08:00

14 lines
154 B
PHP

<?php
function zerro_setup() {
add_theme_support(
'post-formats',
array(
'image',)
);
}
add_action( 'after_setup_theme', 'zerro_setup' );
?>