wordpress-zerro/functions.php

14 lines
154 B
PHP
Raw Normal View History

2020-03-13 18:23:34 +08:00
<?php
function zerro_setup() {
add_theme_support(
'post-formats',
array(
'image',)
);
}
add_action( 'after_setup_theme', 'zerro_setup' );
?>