如何为每个 wordpress 点击后创建单独的弹出表单
Posted
技术标签:
【中文标题】如何为每个 wordpress 点击后创建单独的弹出表单【英文标题】:How to create a seperate popup form for each wordpress post on-click 【发布时间】:2020-06-12 14:14:25 【问题描述】:我通过具有一些自定义字段的自定义帖子类型插件列出了我的数据。下面的代码将显示自定义帖子类型列表数据。
<?php
$args = array(
'post_type' => 'inde_case',
'posts_per_page' => -1
);
query_posts($args);
?>
<ul class="case_study_section1 col-md-12 nopadding">
<?php while ( have_posts() ) : the_post(); ?>
<?php $terms = get_the_terms( get_the_ID(), 'inde_case_category');
if( !empty($terms) )
$term = array_pop($terms);
?>
<li data-category="<?php echo $term->slug; ?>" class="case_study_img col-md-3 col-sm-6">
<div class="caseSection">
<div class="imagediv"><?php the_post_thumbnail(); ?></div>
<div style="width:100%;float:left;">
<a class="case_study_pdf" href="<?php the_field('linkicon'); ?>" >PDF</a>
<a class="case_study_title" href="<?php the_field('linktext'); ?>" ><?php the_title(); ?></a>
</div>
</div>
</li>
<?php endwhile; ?>
我已经正确列出了我的数据,包括缩略图和 pdf 链接......等等。
我正在尝试通过 popup-maker 插件创建一个弹出窗口,它创建了一个类来打开一个弹出窗口。当我将该类放在上面的代码中时(请参阅下文),在这种情况下,每个帖子只会应用一个弹出窗口。
<a class="popmake-6981 case_study_pdf" href="<?php the_field('linkicon'); ?>" >PDF</a>
当有人点击 pdf 链接时,我如何为每个特定帖子打开一个单独的弹出窗口? 或者我可以使用 postId 或一些独特的数据打开一个特定的弹出表单吗? 请指教。
【问题讨论】:
每篇文章弹出不同的内容? 是的,那应该是单独的联系表格。 每个帖子都可以在自定义字段中设置弹出ID 尚未设置,但我可以设置.....我可以在自定义字段中设置弹出类吗? 【参考方案1】:您可以使用其[popup]
短代码创建弹出窗口,如here 所述。
匹配 ID 和触发器类。
<?php while ( have_posts() ) : the_post();?>
<article>
<h2><a class="popmake-post-<?php the_ID();?>" href="<?php the_permalink();?>"><?php the_title();?></a></h2>
<?php echo do_shortcode("[popup id='post-". get_the_ID() ."' size='small' title='". get_the_title() ."']". get_the_content() . "[/popup]");?>
</article>
<?php endwhile; ?>
请注意,您可能还需要在定位设置中该页面上的一些弹出窗口,否则它们可能无法初始化。
【讨论】:
以上是关于如何为每个 wordpress 点击后创建单独的弹出表单的主要内容,如果未能解决你的问题,请参考以下文章