Skip to content

Instantly share code, notes, and snippets.

@yhira
Created November 19, 2018 14:20
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 yhira/740612681b0aebc4a250de037a27c17e to your computer and use it in GitHub Desktop.
Save yhira/740612681b0aebc4a250de037a27c17e to your computer and use it in GitHub Desktop.
アピールエリアに画像リンクのみを表示する
<?php //アピールエリア
/**
* Cocoon WordPress Theme
* @author: yhira
* @link: https://wp-cocoon.com/
* @license: http://www.gnu.org/licenses/gpl-2.0.html GPL v2 or later
*/ ?>
<?php //アピールエリアを表示するか
if (is_appeal_area_visible() && !is_amp()): ?>
<a href="<?php echo get_appeal_area_button_url(); ?>" class="appeal-wrap">
<div id="appeal" class="appeal<?php echo get_additional_appeal_area_classes(); ?>">
<div id="appeal-in" class="appeal-in wrap">
</div>
</div>
</a>
<?php endif ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment