• tag-gallery.php contains the statements:

    define( TAGGALLERY, WP_PLUGIN_DIR . '/tag-gallery' );
    define( TAGGALLERY_URL, WP_PLUGIN_URL . '/tag-gallery');

    these produse the following notices:
    Notice: Use of undefined constant TAGGALLERY – assumed ‘TAGGALLERY’
    Notice: Use of undefined constant TAGGALLERY_URL – assumed ‘TAGGALLERY_URL’

    changing the definitions to
    define( 'TAGGALLERY', WP_PLUGIN_DIR . '/tag-gallery' );
    define( 'TAGGALLERY_URL', WP_PLUGIN_URL . '/tag-gallery');

    fixes the issues

Viewing 1 replies (of 1 total)
  • Plugin Author johnnypeck

    (@johnnypeck)

    Thanks for the heads up. The issue has been fixed in the upcoming version of tag gallery. Thanks!

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: Tag Gallery] constants TAGGALLERY and TAGGALLERY_URL generate notices’ is closed to new replies.