Changeset 2923050
- Timestamp:
- 06/07/2023 07:51:51 PM (3 years ago)
- Location:
- encyclopedia-lexicon-glossary-wiki-dictionary/trunk
- Files:
-
- 5 edited
-
includes/post-type.php (modified) (1 diff)
-
includes/taxonomies.php (modified) (1 diff)
-
plugin.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
templates/encyclopedia-prefix-filter.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
encyclopedia-lexicon-glossary-wiki-dictionary/trunk/includes/post-type.php
r2486011 r2923050 52 52 'menu_position' => 20, # below Pages 53 53 'show_in_rest' => true, 54 55 'show_in_graphql' => true, 56 'graphql_single_name' => 'encyclopediaEntry', 57 'graphql_plural_name' => 'encyclopediaEntries' 54 58 ]; 55 59 -
encyclopedia-lexicon-glossary-wiki-dictionary/trunk/includes/taxonomies.php
r2487657 r2923050 56 56 ], 57 57 'show_in_rest' => true, 58 59 'show_in_graphql' => true, 60 'graphql_single_name' => 'encyclopediaTag', 61 'graphql_plural_name' => 'encyclopediaTags' 58 62 ]; 59 63 -
encyclopedia-lexicon-glossary-wiki-dictionary/trunk/plugin.php
r2861285 r2923050 5 5 Plugin URI: https://dennishoppe.de/en/wordpress-plugins/encyclopedia 6 6 Description: Encyclopedia enables you to create your own encyclopedia, lexicon, glossary, wiki, dictionary or knowledge base. 7 Version: 1.7.5 17 Version: 1.7.52 8 8 Author: Dennis Hoppe 9 9 Author URI: https://DennisHoppe.de -
encyclopedia-lexicon-glossary-wiki-dictionary/trunk/readme.txt
r2892715 r2923050 2 2 Contributors: dhoppe 3 3 Tags: encyclopedia, lexicon, glossary, wiki, dictionary, knowledge base, directory, vocabulary, tooltip 4 Requires at least: 5. 04 Requires at least: 5.5 5 5 Tested up to: 6.2 6 6 Requires PHP: 7.1 … … 128 128 = Minimum Requirements = 129 129 * WordPress 5.5 or greater 130 * PHP version 7.1 or greater; PHP 8 .0is strongly recommended!130 * PHP version 7.1 or greater; PHP 8 is strongly recommended! 131 131 * MySQL version 5.6 or MariaDB 10 or greater 132 132 … … 177 177 == Changelog == 178 178 179 = 1.7.52 = 180 * Added basic WPGraphQL support 181 * Fixed null parameter for htmlentities in encyclopedia-prefix-filter.php 182 179 183 = 1.7.51 = 180 184 * Fixed invalid post type slugs which end or start with a slash -
encyclopedia-lexicon-glossary-wiki-dictionary/trunk/templates/encyclopedia-prefix-filter.php
r2486011 r2923050 16 16 <?php endif ?> 17 17 18 <?php echo HTMLEntities($element->prefix, null, 'UTF-8') ?>18 <?php echo HTMLEntities($element->prefix, ENT_QUOTES | ENT_SUBSTITUTE | ENT_HTML5, 'UTF-8') ?> 19 19 20 20 <?php if ($element->disabled) : ?>
Note: See TracChangeset
for help on using the changeset viewer.