I tried to add thumbnail support to my theme
add_theme_support( 'post-thumbnails',
array( 'post', 'page', 'service', '100', '90')
);
I tried to add thumbnail support to my theme
add_theme_support( 'post-thumbnails',
array( 'post', 'page', 'service', '100', '90')
);
Have a look at this documentation.
This feature must be called before the
init
hook is fired. That means it needs to be placed directly intofunctions.php
or within a function attached to theafter_setup_theme
hook. For custom post types, you can also add post thumbnails using theregister_post_type()
function as well.
TRY this
add_theme_support( 'post-thumbnails',
array( 'post', 'page', 'service')
);