Hello world!
Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
'); ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> ?> // Add Schema.org for Articles function add_article_schema() { if (is_singular('blog')) { global $post; $schema = array( '@context' => 'https://schema.org', '@type' => 'Article', 'headline' => get_the_title(), 'author' => array( '@type' => 'Person', 'name' => get_the_author() ), 'datePublished' => get_the_date('c'), 'dateModified' => get_the_modified_date('c'), 'image' => get_the_post_thumbnail_url(get_the_ID(), 'full'), 'publisher' => array( '@type' => 'Organization', 'name' => get_bloginfo('name'), 'logo' => array( '@type' => 'ImageObject', 'url' => get_custom_logo_url() ) ) ); echo ''; } } add_action('wp_footer', 'add_article_schema'); ?>
Welcome to WordPress. This is your first post. Edit or delete it, then start writing!