Skip to content

Instantly share code, notes, and snippets.

@noboo
Last active August 20, 2017 23:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save noboo/d4fbac263915fd72f81cce1d7e272320 to your computer and use it in GitHub Desktop.
Save noboo/d4fbac263915fd72f81cce1d7e272320 to your computer and use it in GitHub Desktop.
アフィリエイトサービスの商品一覧を簡単に構築。「CS Shop」「 カスタムフィールドテンプレート」

アフィリエイトサービスの商品一覧を簡単に構築。「CS Shop」「 カスタムフィールドテンプレート」

  • CS Shop設定後に、カスタムフィールドテンプレートの「Auto Hook of the_content() (Experimental Option)」にphpを記述。(コンテンツの前、投稿)
  • カテゴリ番号は、各サイトで調べて記述。
[csshop service="rakuten" keyword="<?php the_title(); ?>" category="112493"]
<div class="row">
<div class="col-xs-3 col-md-3">
<a href="<?php echo the_permalink();?>"><?php the_post_thumbnail(); ?></a>
</div>
<div class="col-xs-3 col-md-3">
<a href="<?php echo the_permalink();?>&service=rakuten&pagesize=15&keyword=<?php the_title(); ?>&category=205908"><img src="<?php bloginfo('template_directory'); ?>/images/rakuten.png"></a>
</div>
<div class="col-xs-3 col-md-3">
<a href="<?php echo the_permalink();?>&service=amazon&pagesize=15&keyword=<?php the_title(); ?>&category=MusicalInstruments%2C2123630051"><img src="<?php bloginfo('template_directory'); ?>/images/amazon.png"></a>
</div>

<div class="col-xs-3 col-md-3">
<a href="<?php echo the_permalink();?>&service=yahoo&pagesize=15&keyword=<?php the_title(); ?>&category=2327"><img src="<?php bloginfo('template_directory'); ?>/images/yahosho.png"></a>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment