このカテゴリには、いくつかの練習ページが用意されています。
これらのページは、まだコンテンツが作られていません。 コンテンツファイルが存在しないページにアクセスすると、404 - File not found.
のような文言が表示されるはずです。
新しくコンテンツファイルを作成して、ページを完成させてください。
タイトルを設定しますbowl()->put( ob_get_clean(), 'og:title' ); ?> descriptionを設定しますbowl()->put( ob_get_clean(), 'og:description' ); ?>
bowl()->put( ob_get_clean(), 'og:image' ); ?>
websitebowl()->put( ob_get_clean(), 'og:type' ); ?>
og:custome1bowl()->pull( 'og:custom-property' );
$custom_property_ary;
if ( $custom_property ) {
$custom_property_ary = json_decode( $custom_property );
array_push( $custom_property_ary, ob_get_clean() );
} else{
$custom_property_ary = array( ob_get_clean() );
}
$px->bowl()->put( json_encode( $custom_property_ary ), 'og:custom-property' );
?>
カスタム項目1bowl()->pull( 'og:custom-content' );
$custom_content_ary;
if ($custom_content) {
$custom_content_ary = json_decode( $custom_content );
array_push( $custom_content_ary, ob_get_clean() );
} else{
$custom_content_ary = array( ob_get_clean() );
}
$px->bowl()->put( json_encode( $custom_content_ary ), 'og:custom-content' );
?>