我有一个教程中的代码。在这里,我想让我的缩略图在单击时显示一个动态模态,用户可以在其中编辑 onlick 模态内部的内容。我有一个类别列表,在我的缩略图<a href>
中显示我的模式。我是 Wordpress 的初学者
我的问题:我真的不明白我在哪里可以创建我的模态?我知道关于我的模态的循环帖子,但是,它是一个帖子吗?我将在哪里创建我的动态模态?是通过邮寄吗?. 我应该创建一个帖子以及它如何链接以使其成为模态?我应该创建一个类别来知道这篇文章是模态的吗?
这是代码:
<div class="row">
<div class="col-xs-4">
<ul class="categories-filters">
<?php
$args2 = array(
'exclude' => array(6,3,2),
'order' => 'DESC',
'title_li' => __(''),
'posts_per_page' => '6',
'hierarchical' => 'true'
);
wp_list_categories($args2);
?>
</ul>
</div>
<div class="col-xs-8 bot">
<div id="inside" class="row row-left">
<?php if(have_posts()) :
$count = 0;
while(have_posts()) : the_post(); ?>
<div class="col-xs-8 col-box2">
<a href="#myModal-<? the_ID(); ?>" data-toggle="modal" ><?php the_post_thumbnail('thumbnail'); ?></a>
</div>
<?php if($count==2) :
echo '</div>';
echo '<div id="inside" class="row row-left">';
endif;
$count++; endwhile;
endif;
wp_reset_postdata();
?>
</div>
</div>
</div>
这是我的模态:
<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>