コンタクトボタンの練習

お問い合わせ
お問い合わせ
<!-- entry-body -->
        <div class="entry-body">
          <?php the_content(  ); ?>
          <?php
            //改ページを有効にするための記述
            wp_link_pages(
            array(
            'before' => '<nav class="entry-links">',
            'after' => '</nav>',
            'link_before' => '',
            'link_after' => '',
            'next_or_number' => 'number',
            'separator' => '',
             )
             );
          ?>
          <?php echo do_shortcode( '[contact_button link="http://victcat.com/contact"]お問い合わせ[/contact_button]' ) ; ?>

        </div><!-- /entry-body -->

kkk


<!-- entry-body -->
<div class="entry-body">
<?php the_content( ); ?>
<?php
//改ページを有効にするための記述
wp_link_pages(
array(
'before' => '<nav class="entry-links">',
'after' => '</nav>',
'link_before' => '',
'link_after' => '',
'next_or_number' => 'number',
'separator' => '',
)
);
?>
<?php echo do_shortcode( '[contact_button link="http://victcat.com/contact"]お問い合わせ[/contact_button]' ) ; ?>

</div><!-- /entry-body -->

お問い合わせ
お問い合わせ