Fixing the in Post Thumbnails in Arras Theme (Arras Theme ไม่โชว์รูป)
The following code is on line 103 of filters.php:
$lead = get_post_meta($post->ID, ARRAS_POST_THUMBNAIL, true);
if ( $lead) {
replace with the following:
$lead = get_post_meta($post->ID, ARRAS_POST_THUMBNAIL, true);
if ( $lead && arras_get_option(‘single_thumbs’)) {
That will get the “Post Thumbnail” radio button to work again…
Fixing the in Post Thumbnails in Arras Theme (Arras Theme ไม่โชว์รูป)
The following code is on line 103 of filters.php:
$lead = get_post_meta($post->ID, ARRAS_POST_THUMBNAIL, true);
if ( $lead) {
replace with the following:
$lead = get_post_meta($post->ID, ARRAS_POST_THUMBNAIL, true);
if ( $lead && arras_get_option('single_thumbs')) {
That will get the “Post Thumbnail” radio button to work again…