// EXPPLICITNI og:image (prioritet 1) — rješava "Inferred Property" add_action('wp_head', function () { if ( ! is_singular('oglas') ) return; // 1) Uzmi featured ako postoji, inače naš "best" kandidat $img_id = has_post_thumbnail() ? get_post_thumbnail_id() : ( function_exists('oglsk_best_image_id') ? oglsk_best_image_id( get_queried_object_id() ) : 0 ); if ( ! $img_id ) return; $src = wp_get_attachment_image_src( $img_id, 'full' ); if ( empty($src[0]) ) return; // Absolutni HTTPS URL (FB voli https) $url = preg_replace('#^http://#', 'https://', $src[0]); $w = !empty($src[1]) ? (int)$src[1] : 1200; $h = !empty($src[2]) ? (int)$src[2] : 630; echo "\n\n"; echo '\n"; echo '\n"; echo '\n"; echo '\n"; // korisno i za X/Twitter echo '' . "\n"; echo '\n"; }, 1); $price_on_request = get_post_meta( get_the_ID(), 'price_on_request', true ); $price = get_post_meta( get_the_ID(), 'price', true ); if ( $price_on_request ) { echo 'Na upit'; } elseif ( $price !== '' ) { echo '' . esc_html( $price ) . ' €'; } ?>