Changeset 2837183
- Timestamp:
- 12/21/2022 10:03:58 AM (3 years ago)
- Location:
- lbk-faqs-schema
- Files:
-
- 6 edited
-
tags/1.1.7/faq-schema.php (modified) (3 diffs)
-
tags/1.1.7/includes/class.admin.php (modified) (1 diff)
-
tags/1.1.7/readme.txt (modified) (1 diff)
-
trunk/faq-schema.php (modified) (previous)
-
trunk/includes/class.admin.php (modified) (1 diff)
-
trunk/readme.txt (modified) (previous)
Legend:
- Unmodified
- Added
- Removed
-
lbk-faqs-schema/tags/1.1.7/faq-schema.php
r2837022 r2837183 8 8 * @license GPL-2.0-or-later 9 9 * @category plugin 10 * @version 1.1. 710 * @version 1.1.8 11 11 * 12 12 * @wordpress-plugin … … 14 14 * Plugin URI: https://lbk.vn/ 15 15 * Description: This plugin will create FAQs Schema for Post, Page, Product Woo 16 * Version: 1.1. 716 * Version: 1.1.8 17 17 * Requires at least: 5.0 18 18 * Requires PHP: 7.4 … … 52 52 * @var string 53 53 */ 54 const VERSION = '1.1. 7';54 const VERSION = '1.1.8'; 55 55 56 56 /** -
lbk-faqs-schema/tags/1.1.7/includes/class.admin.php
r2837015 r2837183 77 77 <a href="#" class="button" id="add_new_faqs_button" style="margin: 5px auto;">Add New</a> 78 78 <div id="lbk_list_faqs_inner" style="width:100%"> 79 <?php if ( $custom_faqs > 0 ) : $c = 1; $args['textarea_name'] = "lbk_faqs_custom[{$c}][answer]";?>80 <?php foreach( $custom_faqs as $faqs ) : ?>79 <?php if ( $custom_faqs > 0 ) : $c = 1; ?> 80 <?php foreach( $custom_faqs as $faqs ) : $args['textarea_name'] = "lbk_faqs_custom[{$c}][answer]"; ?> 81 81 <div class="collapsible state-close" id="faqs-<?php echo $c ?>"> 82 82 <div class="collapsible_heading"> -
lbk-faqs-schema/tags/1.1.7/readme.txt
r2837024 r2837183 3 3 Donate link: https://lbk.vn/ 4 4 Tags: faq schema, lbk, faq, faqpage 5 Requires at least: 1.1. 75 Requires at least: 1.1.8 6 6 Tested up to: 6.1 7 7 Stable tag: 1.1.7 -
lbk-faqs-schema/trunk/includes/class.admin.php
r2837014 r2837183 77 77 <a href="#" class="button" id="add_new_faqs_button" style="margin: 5px auto;">Add New</a> 78 78 <div id="lbk_list_faqs_inner" style="width:100%"> 79 <?php if ( $custom_faqs > 0 ) : $c = 1; $args['textarea_name'] = "lbk_faqs_custom[{$c}][answer]";?>80 <?php foreach( $custom_faqs as $faqs ) : ?>79 <?php if ( $custom_faqs > 0 ) : $c = 1; ?> 80 <?php foreach( $custom_faqs as $faqs ) : $args['textarea_name'] = "lbk_faqs_custom[{$c}][answer]"; ?> 81 81 <div class="collapsible state-close" id="faqs-<?php echo $c ?>"> 82 82 <div class="collapsible_heading">
Note: See TracChangeset
for help on using the changeset viewer.