Changeset 3370747
- Timestamp:
- 09/30/2025 11:12:59 PM (3 months ago)
- Location:
- interact-quiz-embed/trunk
- Files:
-
- 2 edited
-
interact-quiz-embed.php (modified) (5 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
interact-quiz-embed/trunk/interact-quiz-embed.php
r2990262 r3370747 5 5 Description: Use this plugin to embed your Interact quiz into your Wordpress site. 6 6 Author: The Quiz Collective Inc. 7 Version: 3. 17 Version: 3.2 8 8 Author URI: https://www.tryinteract.com 9 9 … … 169 169 function interact_option_page(){ 170 170 171 if(isset($_POST['interact_promotion_id']) ) {171 if(isset($_POST['interact_promotion_id']) && wp_verify_nonce($_POST['interact_promotion_nonce'], 'interact_promotion_action')) { 172 172 $updatedPromoId = false; 173 173 $newId = sanitize_text_field($_POST['interact_promotion_id']); … … 190 190 <h1>Interact Quiz Embed Plugin</h1> 191 191 <hr/> 192 <h2>Embed your Quiz , Poll, or Giveawaywith a Shortcode</h2>192 <h2>Embed your Quiz with a Shortcode</h2> 193 193 <p>This plugin generates a shortcode which embeds your Interact App into your WordPress content. <a href='https://en.support.wordpress.com/shortcodes/' target='_blank'>How do I use a shortcode?</a></p> 194 194 <?php 195 if(isset($_POST['app_url']) ) {195 if(isset($_POST['app_url']) && wp_verify_nonce($_POST['interact_shortcode_nonce'], 'interact_shortcode_action')) { 196 196 197 197 $app_url = sanitize_url($_POST['app_url']); … … 236 236 ?> 237 237 <form action="" method="post" id="interact-embed-form"> 238 <?php wp_nonce_field('interact_shortcode_action', 'interact_shortcode_nonce'); ?> 238 239 <table class="form-table"> 239 240 <tr> … … 272 273 <h2>Promote your Quiz with a Popup or Announcement Bar</h2> 273 274 <form action="" method="post"> 275 <?php wp_nonce_field('interact_promotion_action', 'interact_promotion_nonce'); ?> 274 276 <p>Enter your <b>Promotion ID</b> which can be found in your dashboard under 'Embed & Share'</p> 275 277 <table class="form-table"> -
interact-quiz-embed/trunk/readme.txt
r2990262 r3370747 3 3 Tags: interact, quiz, poll, giveaway, embed, shortcode, promotion 4 4 Requires at least: 3.0.1 5 Tested up to: 6. 3.26 Stable tag: 3. 15 Tested up to: 6.8.2 6 Stable tag: 3.2 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.