ソニーペイメントサービスの2つの決済モジュール

Welcart Voll 1.0.13 をリリース

Welcart Voll 1.0.13 をリリースしました。

タグの設置・スタイル調整

タグ追加: welcart_basic-voll/page.php 22行目あたり

<?php endwhile; else: ?>

    <p><?php _e( 'Sorry, no posts matched your criteria.', 'usces' ); ?></p>

<?php endif; ?>

<?php 
    wp_link_pages( array(
        'before'    => '<div class="post-nav-links">',
        'after'     => '</div>'
    ) ); 
?>

</div><!-- #content -->

スタイル追加: welcart_basic-voll/style.css 1635行目あたり

/* page.php // Post Nav Links
-------------------------------------------------------------- */
.post-nav-links {
    padding: 0 0 1.714em;
    display: flex;
    justify-content: center;
    align-items: center;
}
.post-nav-links .post-page-numbers {
    color: #090909;
    margin: .178em;
    text-align: center;
    border: 1px solid #090909;
    -webkit-transition: .3s ease all;
    -moz-transition: .3s ease all;
    -o-transition: .3s ease all;
    transition: .3s ease all;
    width: 40px;
    height: 40px;
    padding: 0;
    line-height: 40px;
}
.post-nav-links .post-page-numbers:hover,
.post-nav-links .post-page-numbers.current {
    background-color: #090909;
    border: 1px solid #090909;
    color: #fff;
}

※ ハイライト部分のスタイルを追加