Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /*
- Template Name: News Page
- */
- get_header(); ?>
- <div class="container">
- <ol class="col-md-4 breadcrumb">
- <li><a href="<?php echo get_site_url(); ?>">Home</a></li>
- <li class="active">News</li>
- </ol>
- </div>
- <?php
- $paged = ( get_query_var('paged') ) ? get_query_var('paged') : 1;
- $args = array (
- 'post_type' => 'news',
- 'posts_per_page' => 2,
- 'paged' => $paged
- );
- $the_query = new WP_Query( $args );
- ?>
- <?php
- $posts =1;
- ?>
- <div class="container news">
- <div class="col-md-3">
- <?php
- if ($posts == 1) {
- global $wp_query;
- $postid = $wp_query->post->ID;
- get_post_meta($postid, 'title_youtube_link', true);
- wp_reset_query();
- echo '<h5>';
- echo the_field('title_youtube_link');
- echo'</h5>';
- global $wp_query;
- $postid = $wp_query->post->ID;
- get_post_meta($postid, 'youtube_link', true);
- wp_reset_query();
- $meta = get_post_meta(get_the_ID(), 'video', true);
- $content = apply_filters('the_content', get_field('youtube_link') );
- echo $content;
- the_content();
- echo '<div style="padding-top: 35px;"></div>';
- dynamic_sidebar('news_taxonomy');
- echo '<div style="padding-bottom: 35px;"></div>';
- }
- $posts++; ?>
- </div>
- <div class=" col-md-8 col-md-offset-1">
- <script>
- boxes = $('.news-height');
- minHeight = Math.min.apply(
- Math, boxes.map(function() {
- return $(this).height();
- }).get());
- boxes.height(minHeight);
- </script>
- <?php if ( have_posts() ) : while ( $the_query->have_posts() ) : $the_query -> the_post(); ?>
- <div class=" news-style well" >
- <a href="<?php the_permalink(); ?>"><h4 class="bold_this"><?php the_field('title_of_the_news'); ?>→</h4></a>
- <ul class="info">
- <li>Posted in: <?php echo get_the_term_list( $post->ID, 'news_type','',','); ?> </li>
- <li>Added by: <a href="<?php bloginfo('siteurl') ;?>/about/"><?php the_author(); ?></a></li>
- <li>On: <?php the_time('F j, Y'); ?></li>
- </ul>
- <br><br>
- <?php the_field('content_of_the_news'); ?>
- </div>
- <?php endwhile; endif; ?>
- <?php next_posts_link('Go to next page...'); ?>
- <?php posts_nav_link(); ?>
- <?php wp_pagenavi(); ?>
- <?php $big = 999999999; echo paginate_links( array( 'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ), 'format' => '?paged=%#%', 'current' => max( 1, get_query_var('paged') ), 'total' => $the_query->max_num_pages ) ); ?>
- </div>
- </div>
- <?php get_footer();?>
Advertisement
Add Comment
Please, Sign In to add comment