将Single.php更改为模式弹出引导WordPress

时间:2016-01-26 作者:satria

我想更改模式弹出窗口single.php 要进行引导,所以当单击readmore on post时,只需打开带有显示弹出窗口的单个帖子,即可进入新页面,并显示查看该帖子的次数。

1 个回复
SO网友:Amir Iqbal

检查原始答案Here.

<div class="container" style="margin-top:20px; min-height:500px;" >
<div class="row">
<?php 
   $labels = new WP_Query(array(
   \'post_type\' => \'slider\', 
   \'posts_per_page\' => 1000
)); 
 while ( $labels->have_posts() ) : 
 $labels->the_post();
?>
<?php
$src = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), array(5600,1000 ), false, \'\' );
?>
<a href="#myModal-<? the_ID(); ?>" data-toggle="modal" >
<div class="span2" style="background: #09F url(<?php echo $src[0]; ?>) center no-repeat !important;">
  <?php the_title();?>
</div>
</a>




<div id="myModal-<? the_ID(); ?>" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
  <div class="modal-header">
    <h3 id="myModalLabel">
      <?php the_title();?>
    </h3>
    <p>
      <?php the_content();?>
    </p>
  </div>
  <div class="modal-body">
    <?php the_post_thumbnail(); ?>
  </div>
  <div class="modal-footer">
    <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
  </div>
</div>

相关推荐

About wordpress child themes

我对WordPress和儿童主题有一些问题。据我所知,如果我不想在更新主题时失去任何东西,使用子主题是很重要的。我是WordPress的初学者,到目前为止,我一直在使用PageBuilder(管理面板上的板载自定义选项)自定义我的网站,并在“附加CSS”选项中加入几行CSS。所有这些都是在主主题上完成的(只是玩转尝试学习),现在我想开始使用一个儿童主题。问题如下:我不知道我是否可以像通过管理界面设计父主题那样设计我的子主题,或者我是否必须通过文本编辑器(在我的计算机上,然后通过FTP等方式上传)对所有内容