6 lines
142 B
PHP
6 lines
142 B
PHP
<?php
|
|
function sp_after_theme_setup() {
|
|
add_theme_support( 'post-thumbnails' );
|
|
}
|
|
add_action( 'after_theme_setup', 'sp_after_theme_setup' );
|