#2182 closed defect (bug) (fixed)
Incorrect semicolon in a PHP code snippet
Reported by: | fahidjavid | Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Component: | Developer Hub | Keywords: | |
Cc: |
Description
Hi,
I have found an unnecessary semicolon in a PHP code snippet while I was using Customizer API to add customizer control in my project.
If you find the following code on this page https://developer.wordpress.org/themes/advanced-topics/customizer-api/
<?php $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, // WP_Customize_Manager 'accent_color', // Setting id array( // Args, including any custom ones. 'label' => __( 'Accent Color' ), 'section' =>; 'colors', ) ) );
You can see the unnecessary semicolon next to the 'section' => parameter.
Here is the related screenshot:
Thank you,
Fahid
Change History (2)
Note: See
TracTickets for help on using
tickets.
Hi @fahidjavid, welcome to Meta Trac! The code snippet has been fixed.