我的网站上有评论帖子。 在那里,我可以添加自定义字段标准。
如何从这些自定义字段标准中创建标记? 我应该得到一个存档页面,显示所有选定标准的帖子。
这是一个自定义字段的代码:
<div class="mom_tiny_form_element">
<?php $mb->the_field('custom_box_units_gametypes'); ?>
<div class="mom_tiny_desc">
<div class="mom_td_bubble">
<label for="<?php $mb->the_name(); ?>"><?php _e('Game Types', 'framework'); ?></label>
<span><?php _e('Select one of the options', 'framework'); ?></span>
</div> <!--bubble-->
</div> <!--desc-->
<div class="mom_tiny_input">
<select name="<?php $mb->the_name(); ?>">
<option value="slot games" <?php $mb->the_select_state('slot games'); ?>><?php _e('Slot Games', 'framework'); ?></option>
<option value="table games" <?php $mb->the_select_state('table games'); ?>><?php _e('Table Games', 'framework'); ?></option>
<option value="instant win" <?php $mb->the_select_state('instant win'); ?>><?php _e('Instant Win', 'framework'); ?></option>
<option value="video poker" <?php $mb->the_select_state('video poker'); ?>><?php _e('Video Poker', 'framework'); ?></option>
<option value="arcade" <?php $mb->the_select_state('arcade'); ?>><?php _e('Arcade', 'framework'); ?></option>
<option value="virtual sports" <?php $mb->the_select_state('virtual sports'); ?>><?php _e('Virtual Sports', 'framework'); ?></option>
<option value="bingo/keno" <?php $mb->the_select_state('bingo/keno'); ?>><?php _e('Bingo/Keno', 'framework'); ?></option>
<option value="pattern match" <?php $mb->the_select_state('pattern match'); ?>><?php _e('Pattern Match', 'framework'); ?></option>
</select>
</div> <!--input-->
<?php $mb->the_field('custom_box_units_gametypes2'); ?>
<div class="mom_tiny_input">
<div class="mom_switch"><input type="checkbox" name="<?php $mb->the_name(); ?>" value="on"<?php $mb->the_checkbox_state('on'); ?>/><label><i></i></label></div>
</div> <!--input-->
<div class="clear"></div>
</div>
这是针对前端的:
<?php if (isset($gametype) && $gametype == 'on') { ?>
<footer class="review-criteria-row">
<div class="user-rate bars user-star-rate">
<h3 class="review-criteria_title"><strong class="user_rate"><?php _e('Game Types:', 'framework'); ?></strong></h3>
<div class="review-criteria_answer">
<a href="http://localhost/wordpress/tag/<?php echo do_shortcode($new_games_name); ?>"> <?php echo do_shortcode($games); ?></a>
 
</footer> <!-- footer -->
<?php } ?>
因此,当访问者点击老虎机游戏时,将打开一个存档页面,其中包含所选评论的所有评论