Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // content-upcoming-games.php
- <div class="controls col-md-12">
- <label>Sort By:</label>
- <button class="filter" data-filter="all">All</button>
- <button class="filter" data-filter=".ps4">PS4</button>
- <button class="filter" data-filter=".xbox-one">Xbox One</button>
- <button class="filter" data-filter=".wii-u">Wii U</button>
- <button class="filter" data-filter=".pc">PC</button>
- </div>
- <?php if(is_post_type_archive( 'upcoming-games' )) {
- $class ='';
- $consoles_slug = wp_get_object_terms( $post->ID, 'consoles' );
- foreach ($consoles_slug as $console_slug) {
- $class .= $console_slug->slug . ' ';
- } }
- ?>
- <div id="upcoming-games-list">
- <div class="mix <?php echo $class ?> ?>">
- Content
- </div>
- </div>
- --------------------------------------------------------------------------------------------------------
- // main.js
- $('#upcoming-games-list').mixItUp({
- animation: {
- enable: true,
- effects: 'fade scale',
- duration: 600,
- easing: 'ease',
- perspectiveDistance: '3000px',
- perspectiveOrigin: '50% 50%',
- queue: true,
- queueLimit: 1,
- animateChangeLayout: false,
- animateResizeContainer: true,
- animateResizeTargets: false,
- staggerSequence: null,
- reverseOut: false
- }
- });
- --------------------------------------------------------------------------------------------------------
- // functions.php
- wp_enqueue_script( 'console-filtering', get_template_directory_uri() . "/js/jquery.mixitup.js", array(), '' , true );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement