如何在 PHP 代码 WordPress 中添加 SportsEvent 模式 Json-ld 代码

用户9258693

我是一个初学者,试图为我的网站整理 SportsEvent Schema 代码。我已经做到了这一点。我创建了自定义字段并将它们映射到架构属性。我似乎无法超越这一点。当我激活插件时遇到错误 -Parse error: syntax error, unexpected ';', expecting ')' in /home/uhkcj8xz70dl/public_html/wp-content/plugins/football-schema/football_schema.php on line 21

<?php
/**
* Plugin Name: Schema.org for Football
* Description: Add SportsEvent Schema.org in JSONld to site
* Plugin URI: 
* Author: Danstan
* Author URI: 
* Version: 1.0.0
* License: GPL2 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

function addschema() //Function for Schema.org
{
global $post;
if (is_singular('matches')) { //only for post type matches
    $schema_sportsevent = array(
        '@context'  => "http://schema.org",
        '@type'     => "SportsEvent",
        'name' => get_the_title($post->ID);
        'description' => get_the_content($post->ID);
        'url' => get_permalink();
        'startDate' => get_post_meta( get_the_ID(), 'start_date' );
        'endDate'=> get_post_meta( get_the_ID(), 'end_date' );
        'image'   => get_the_post_thumbnail_url($post->ID);

        'competitor' => array(
            '@type' => "SportsTeam",
            'name'   => "Team A",
            'image'   => get_post_meta( get_the_ID(), 'logo_left' );
        ),

        'competitor' => array(
            '@type' => "SportsTeam",
            'name'   => "Team B",
            'image'   => get_post_meta( get_the_ID(), 'logo_right' );
        ),

        'location' => array(
            '@type' => "Place",
            'name'   => get_post_meta( get_the_ID(), 'venue_name' );
            'address' => array(
            '@type' => "PostalAddress",
            'postalCode'   => get_post_meta( get_the_ID(), 'zip_postal_code' );
            'streetAddress'   => get_post_meta( get_the_ID(), 'street_address' );
            'addressLocality'   => get_post_meta( get_the_ID(), 'locality_city' );
            'addressRegion'   => get_post_meta( get_the_ID(), 'address_region' );
            'addressCountry'   => get_post_meta( get_the_ID(), 'country' );
        )
        )
    );
    echo '<script type="application/ld+json">' . json_encode($schema_sportsevent) . '</script>'; 
//encode schema for matches
}
endif;
}
add_action('wp_head', 'addschema'); //Add Schema to header
?>`
汤姆伍德沃德

你在一些;你需要的地方混合,,因为它是一个值数组,当你不需要一个时,你添加了一个endif试试这个。

function addschema() //Function for Schema.org
{
    global $post;
    if (is_singular('post')) { //only for post type matches
        $schema_sportsevent = array(
            '@context'  => "http://schema.org",
            '@type'     => "SportsEvent",
            'name' => get_the_title($post->ID),
            'description' => get_the_content($post->ID),
            'url' => get_permalink(),
            'startDate' => get_post_meta( get_the_ID(), 'start_date' ),
            'endDate'=> get_post_meta( get_the_ID(), 'end_date' ),
            'image'   => get_the_post_thumbnail_url($post->ID),

            'competitor' => array(array(
                '@type' => "SportsTeam",
                'name'   => "Team A",
                'image'   => get_post_meta( get_the_ID(), 'logo_left' )),
                array('@type' => "SportsTeam",
                'name'   => "Team B",
                'image'   => get_post_meta( get_the_ID(), 'logo_left' ))
            ),


            'location' => array(
                '@type' => "Place",
                'name'   => get_post_meta( get_the_ID(), 'venue_name' ),
                'address' => array(
                '@type' => "PostalAddress",
                'postalCode'   => get_post_meta( get_the_ID(), 'zip_postal_code' ),
                'streetAddress'   => get_post_meta( get_the_ID(), 'street_address' ),
                'addressLocality'   => get_post_meta( get_the_ID(), 'locality_city' ),
                'addressRegion'   => get_post_meta( get_the_ID(), 'address_region' ),
                'addressCountry'   => get_post_meta( get_the_ID(), 'country' ),
            )
            )
        );
        echo '<script type="application/ld+json">' . json_encode($schema_sportsevent) . '</script>'; 
    //encode schema for matches
    }
}

那应该像这样生成JSON。虽然我的帖子没有一些 post_meta 来填充一些片段。

{
  "@context": "http://schema.org",
  "@type": "SportsEvent",
  "name": "some stuff",
  "description": "",
  "url": "http://192.168.33.10/wordpress/blog/2019/11/28/some-stuff/",
  "startDate": [],
  "endDate": [],
  "image": false,
  "competitor": [
    {
      "@type": "SportsTeam",
      "name": "Team A",
      "image": []
    },
    {
      "@type": "SportsTeam",
      "name": "Team B",
      "image": []
    }
  ],
  "location": {
    "@type": "Place",
    "name": [],
    "address": {
      "@type": "PostalAddress",
      "postalCode": [],
      "streetAddress": [],
      "addressLocality": [],
      "addressRegion": [],
      "addressCountry": []
    }
  }
}

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章