Plugin Directory

Changeset 2023834


Ignore:
Timestamp:
02/02/2019 04:21:13 PM (7 years ago)
Author:
BjornW
Message:

Add Gutenberg compatibility

  • Version bumped to 1.0.2 to indicate the minor fix to make Tag Pages Gutenberg compatible (thanks @swisspidy)
  • Add screenshot displaying the tags interface when using the Gutenberg block editor for Pages
  • Add donation call for a few organisations in readme
Location:
tag-pages/trunk
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • tag-pages/trunk/CHANGELOG.md

    r1440812 r2023834  
    11Changelog
    22=========
     3
     4#### 1.0.2 - Feb 2, 2019
     5
     6**Fixes**
     7
     8- Gutenberg does not show tags on page create/edit screen
    39
    410#### 1.0.1 - June 21, 2016
  • tag-pages/trunk/readme.txt

    r1842617 r2023834  
    33Tags: tags, pages, tag pages
    44Requires at least: 3.0
    5 Tested up to: 4.8
     5Tested up to: 5.0.3
    66Stable tag:trunk
    77License: GPLv2 or later
     
    2121achieve it's goal. It also should work perfectly fine with Multisite installations.
    2222
     23If this plugin meets your expectations and you use it commercially
     24please consider a donation to one of these organisations or your country's equivalents:
     25
     26  - <a href='https://www.msf.org/'>Medicines Sans Frontiers</a>
     27  - <a href='https://fsfe.org'>Free Software Foundation Europe</a>
     28  - <a href='https://https://www.bitsoffreedom.nl/english/'>Bits of Freedom</a>
     29  - <a href='https://fsf.org'>Free Software Foundation</a>
     30  - <a href='https://eff.org'>Electronic Frontier Foundation</a>
     31
     32
    2333== Screenshots ==
    2434
    25 1. A screenshot of the WordPress backend Pages section with the Tags metabox marked red.
     351. A screenshot of the (older) WordPress backend Pages section with the Tags metabox marked red.
     362. A screenshot of the WordPress backend Pages section using the Gutenberg block editor with the Tags (document properties) marked red
    2637
    2738== Installation ==
     
    3647It is your theme's responsibility to display tags (if any) on your website. Make sure the theme you are using supports displaying tags on Pages.
    3748
     49= Is Gutenberg supported? =
     50Yes, <a href='https://wordpress.org/gutenberg/'>the Gutenberg block editor</a> is supported from version 1.0.2 and upwards.
     51NB: The <a href='https://wordpress.org/plugins/classic-editor/'>Classic Editor</a> plugin is also supported.
    3852
    3953
     
    5872== Changelog ==
    5973
     74#### 1.0.2 - Feb 2, 2019
     75
     76**Fixes**
     77
     78- Gutenberg does not show tags on page create/edit screen
     79
    6080#### 1.0.1 - June 21, 2016
    6181
  • tag-pages/trunk/tag-pages.php

    r1440812 r2023834  
    44Plugin URI: http://burobjorn.nl
    55Description: Add tags to Pages, just as you would do with Posts
    6 Version: 1.0.1
     6Version: 1.0.2
    77Author: Bjorn Wijers <burobjorn at burobjorn dot nl>
    88Author URI: http://burobjorn.nl
     
    4040        register_taxonomy_for_object_type('post_tag', 'page');
    4141    }
    42     add_action('admin_init', 'tagpages_register_taxonomy');
     42    add_action('init', 'tagpages_register_taxonomy');
    4343}
    4444
Note: See TracChangeset for help on using the changeset viewer.