Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #62778, comment 5


Ignore:
Timestamp:
01/09/2025 08:02:53 PM (20 months ago)
Author:
sainathpoojary

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #62778, comment 5

    initial v1  
    1 == Reproduction Report
    2 === Description
    3 This report validates whether the issue can be reproduced.
     1Hey @daveccampbell,
    42
    5 === Environment
    6 - WordPress: 6.8-alpha-59590
    7 - PHP: 8.2.27
    8 - Server: Apache/2.4.62 (Debian)
    9 - Database: mysqli (Server: 11.4.4-MariaDB-ubu2404 / Client: mysqlnd 8.2.27)
    10 - Browser: Chrome 131.0.0.0
    11 - OS: macOS
    12 - Theme: Twenty Twenty-Five 1.0
    13 - MU Plugins: None activated
    14 - Plugins: None
     3This line enables the Links Manager feature in WordPress, which was deprecated and hidden by default since WordPress 3.5. It ensures that the Links/Blogroll menu item appears in the WordPress admin panel by filtering the link_manager_enabled option to always return true.
    154
    16 === Actual Results
    17 ✅ Error condition occurs (reproduced).
     5Uncommenting it won’t make any difference because its sole purpose is to enable this feature.
    186
    19 === Supplemental Artifacts
    20 Video: https://utfs.io/f/PL8E4NiPUWyO7WG5Lz9AWOSNT8iuxYqzcvCVIEKbQmF3njPo
     7{{{
     8   add_filter( 'pre_option_link_manager_enabled', '__return_true', 100 );
     9
     10}}}
     11
     12