Plugin Directory

Changeset 3363351


Ignore:
Timestamp:
09/17/2025 04:00:40 PM (7 months ago)
Author:
ryhowa
Message:

Updated to ver 1.1.6

Location:
faq-accordion-schema/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • faq-accordion-schema/trunk/app/Accordion.php

    r3362323 r3363351  
    99    public function __construct() {
    1010        add_shortcode('fqaas_faq_accordion', [$this, 'faqasc_render_accordion'] );
     11        add_shortcode('fqaas-faq-accordion', [$this, 'faqasc_render_accordion'] );
    1112        add_shortcode('fqaas_faq', [$this, 'faqasc_render_accordion']);
     13        add_shortcode('fqaas-faq', [$this, 'faqasc_render_accordion']);
    1214        $enable_faq_alias = (bool) get_option('fqaas_enable_faq_alias', false);
    1315        if ( $enable_faq_alias ) {
     
    1517        }
    1618        add_shortcode('faq_accordion', [$this, 'faqasc_render_accordion'] );
     19        add_shortcode('faq-accordion', [$this, 'faqasc_render_accordion'] );
    1720    }
    1821
  • faq-accordion-schema/trunk/app/Settings.php

    r3362323 r3363351  
    116116                                <?php checked( $enable_faq, true ); ?> />
    117117                            <p class="description">
    118                                 <?php esc_html_e('If enabled, the [faq] shortcode will be registered as an alias of [faq-accordion]. Leave disabled to avoid collisions with other plugins/themes.', 'faq-accordion-schema'); ?>
     118                                <?php esc_html_e('If enabled, the [faq] shortcode will be registered as an alias of [faq_accordion]. Leave disabled to avoid collisions with other plugins/themes.', 'faq-accordion-schema'); ?>
    119119                            </p>
    120120                        </td>
  • faq-accordion-schema/trunk/faq-accordion-schema.php

    r3362686 r3363351  
    77 * Automatically builds the accordion by simply including headings and text withing the shortcode.
    88 * Includes options to enable/disable schema markup, add custom styles, and choose whether to override or respect theme styles.
    9  * Version: 1.0.5
     9 * Version: 1.0.6
    1010 * Author: Ryan Howard
    1111 * Author URI: https://www.ryanhoward.dev
  • faq-accordion-schema/trunk/readme.txt

    r3362686 r3363351  
    55Tested up to: 6.8
    66Requires PHP: 7.2
    7 Stable tag: 1.0.5
     7Stable tag: 1.0.6
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    60603. Rich results in Google SERP with FAQ schema
    6161
     62== Does the FAQ Accordion & Schema plugin automatically add FAQ schema? ==
     63
     64Yes. Every accordion you create with the plugin includes valid FAQPage JSON-LD markup by default. This helps Google and AI systems understand your questions and answers without requiring manual coding.
     65
     66== How does this plugin help with AI and LLM visibility? ==
     67
     68Large language models look for clearly labeled question-and-answer pairs when assembling responses. The plugin outputs structured data that makes it easier for LLMs to interpret your content and include it in generated answers.
     69
     70== Can I use this plugin to add more content without cluttering the page? ==
     71
     72Absolutely. The accordion format lets you publish additional questions and answers in a compact way. This gives you more coverage for SEO and answer engines while keeping your pages clean and readable for visitors.
     73
     74== Why should I use this plugin instead of coding schema manually? ==
     75
     76Manually writing JSON-LD is error-prone and time-consuming. The plugin handles schema automatically and ensures it stays valid as you edit or expand your FAQs. You focus on writing good content, and the markup is handled for you.
     77
     78== Where can I validate my structured data? ==
     79
     80You can test any page that includes FAQ schema using Google’s Schema Markup Validator. Enter your URL to confirm if your structured data is valid.
     81
    6282== Changelog ==
     83
     84= 1.0.6 =
     85* Updated readme.txt
     86* Extended shortcode support – now the following shortcodes work correctly:
     87  - [fqaas_faq_accordion]
     88  - [fqaas-faq-accordion]
     89  - [fqaas_faq]
     90  - [fqaas-faq]
     91  - [faq] (if alias option is enabled)
     92  - [faq_accordion]
     93  - [faq-accordion]
    6394
    6495= 1.0.5 =
Note: See TracChangeset for help on using the changeset viewer.