Skip to content

v3.13.0

Choose a tag to compare

@sectsect sectsect released this 17 Nov 02:30
· 55 commits to master since this release

Release v3.13.0 (2025-11-17)

Bug Fixes

  • Fix WordPress Plugin Check violations by unifying function and constant naming conventions (#111 by @sectsect)
    • Renamed 38 functions from mixed prefixes (wptagorder_*, wpto_*, wto_*) to standardized wp_tag_order_* prefix
    • Renamed 8 constants to WP_TAG_ORDER_* prefix
    • Updated all test files to use new naming conventions
    • Maintains backward compatibility for public APIs

Refactor / Maintenance

  • Systematic 4-stage refactoring to ensure WordPress coding standards compliance
    • Stage 1: Unified constants to WP_TAG_ORDER_* (8 constants)
    • Stage 2: Renamed wto_* functions to wp_tag_order_* (15 functions)
    • Stage 3: Renamed wpto_* functions to wp_tag_order_* (18 functions)
    • Stage 4: Renamed wptagorder_* functions to wp_tag_order_* (5 functions)
  • All changes maintain PHPStan compliance
  • All tests passing with updated references

Notes

  • This release focuses on WordPress Plugin Directory compliance
  • No breaking changes to public APIs
  • All internal function names now follow WordPress naming conventions consistently