Plugin Directory

Changeset 3384379


Ignore:
Timestamp:
10/25/2025 09:09:26 AM (5 months ago)
Author:
pointalize
Message:

Minor fix with version 1.3

Location:
pointalize-faq-markup
Files:
4 added
3 edited

Legend:

Unmodified
Added
Removed
  • pointalize-faq-markup/tags/1.2/readme.txt

    r3384374 r3384379  
    55Tested up to: 6.8
    66Requires PHP: 7.4
    7 Stable tag: 1.1
     7Stable tag: 1.2
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
  • pointalize-faq-markup/trunk/pointalize-faq-markup.php

    r3384372 r3384379  
    33 * Plugin Name:       Pointalize FAQ Markup
    44 * Plugin URI: https://pointalize.com/
    5  * Description:       Automatically generates FAQPage JSON-LD from <details class="faq-item">…</details> in post/page content (answers output as plain text).
    6  * Version:           1.2
     5 * Description:       Automatically generates FAQPage JSON-LD from <details>…</details> in post/page content (answers output as plain text).
     6 * Version:           1.3
    77 * Requires at least: 5.0
    88 * Requires PHP:      7.4
     
    2222 * Rules:
    2323 * - Question = text inside <summary>
    24  * - Answer   = text inside first <p> after the <summary>, else remaining text in <details>
     24 * - Answer   = text inside after the <summary>, else remaining text in <details>
    2525 * - All HTML in answers is stripped → plain text only for clean schema.
    2626 *
     
    101101        '@context'   => 'https://schema.org',
    102102        '@type'      => 'FAQPage',
     103        'name'       => get_the_title(),
    103104        'mainEntity' => $faqs,
    104105    ];
  • pointalize-faq-markup/trunk/readme.txt

    r3384374 r3384379  
    55Tested up to: 6.8
    66Requires PHP: 7.4
    7 Stable tag: 1.1
     7Stable tag: 1.3
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    9797= 1.2 =
    9898* Added better documentation on how to use the plugin.
     99= 1.3 =
     100* Minor fix.
    99101
    100102== Screenshots ==
Note: See TracChangeset for help on using the changeset viewer.