add_action('wp_head', 'insert_newsarticle_schema_jsonld', 5); function insert_newsarticle_schema_jsonld() { if (is_single()) { global $post; $post_id = $post->ID; $title = get_the_title($post_id); $author_name = get_the_author_meta('display_name', $post->post_author); $image_url = get_the_post_thumbnail_url($post_id, 'full'); $date_published = get_the_date('c', $post_id); $date_modified = get_the_modified_date('c', $post_id); $description = get_the_excerpt($post_id); $content = wp_strip_all_tags( wp_trim_words( get_post_field('post_content', $post_id), 80, '...' ) ); $permalink = get_permalink($post_id); if (!$image_url) { // صورة افتراضية لو مفيش صورة للمقال $image_url = 'https://ne.nl7za.com/wp-content/uploads/2025/08/logo2025.png'; } ?> } }