• Resolved ramenland

    (@nakata75)


    いつも利用させていただいております。
    イベントの色を取得してsingle-xo_event.php上で色の数値を出力させたいのですが、どのようにしたらよいでしょうか。
    よろしくお願いいたします。

    • This topic was modified 4 years ago by ramenland.
    • This topic was modified 4 years ago by ramenland.
    • This topic was modified 4 years ago by ramenland.
Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author ishitaka

    (@ishitaka)

    こんにちは

    下記ページのコードが参考になると思います。
    https://xakuro.com/blog/wordpress/1376/

    多少複雑なので、新しいバージョン2.2.9より簡単に取得することができる XO_Event_Calendar::get_the_category 関数を用意しました。

    使用例:

    $cats = $xo_event_calendar->get_the_category();
    if ( $cats ) {
    	echo $cats[0]->id;	// ID
    	echo $cats[0]->name;	// 名前
    	echo $cats[0]->slug;	// スラッグ
    	echo $cats[0]->color;	// 色 (HEX)
    }

    お試しください。

    Thread Starter ramenland

    (@nakata75)

    バージョンアップまでしていただいてご対応いただき誠にありがとうございました。
    これでかなり自由度が上がりました!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘背景色の取得について’ is closed to new replies.