Monday, December 23, 2019

Modal popup

<div class="modal fade" id="modal_a" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
  <div class="modal-dialog" role="document">
    <div class="modal-content">
       <div class="modal-header">
        <h3 class="modal-title" id="exampleModalLabel"><?php the_title(); ?></h3>
        <button type="button" class="close" data-dismiss="modal" aria-label="Close">
          <span aria-hidden="true">&times;</span>
        </button>
      </div>
      <div class="modal-body">
           <p><?php the_content(); ?></p>
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
       
      </div>
    </div>
  </div>
</div>


<a href="" data-toggle="modal" data-target="#modal_a">
                      <?php the_title(); ?>
                  </a>

Sunday, December 1, 2019

Trending according to week

 <?php
$popularpost = new WP_Query( array( 'posts_per_page' => 1,
   'meta_key' => 'wpb_post_views_count',
   'orderby' => 'meta_value_num',
   'order' => 'DESC',
   'date_query' => array(
                                                    array(
                                                        'after' => '1 week ago',
                                                    ),
                                                ),
            ) );
while ( $popularpost->have_posts() ) : $popularpost->the_post();

?>

Featured Post

Make money online

https://www.wpbeginner.com/beginners-guide/make-money-online/?fbclid=IwAR0_9_5aHmbB4rDisaPevdnO4uAgo0N9heHgPu1TjerjurE5ilD2NyzeB2A

Popular Posts