Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Redirect After Click Portfolio in Portfolio Gallery Widgets
- */
- function redirect_after_click_portfolio() {
- $page_id = 8888; // Your Page ID
- if ( get_the_ID() === $page_id ) {
- ?>
- <script type="text/javascript">
- (function ($) {
- $(document).on('ready', () => {
- const portfolio = $('.jkit-portfolio-gallery .row-item');
- portfolio.on({
- click: (e) => {
- const url = $(e.target).closest('.row-item').find('.row-item-more a').attr('href');
- window.location.href = url;
- }
- })
- })
- })(jQuery)
- </script>
- <?php
- }
- }
- add_action( 'wp_footer', 'redirect_after_click_portfolio' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement