Opened 6 years ago
Last modified 6 years ago
#44837 new enhancement
Coding Indentation Issues
Reported by: | prashantvatsh | Owned by: | |
---|---|---|---|
Milestone: | Awaiting Review | Priority: | normal |
Severity: | minor | Version: | 4.9.8 |
Component: | Administration | Keywords: | dev-feedback has-patch |
Focuses: | coding-standards | Cc: |
Description (last modified by )
I am seeing in wp-admin files that coding indentation is missing like this file edit-tags.php
The codes are written like this
<form class="search-form wp-clearfix" method="get"> <input type="hidden" name="taxonomy" value="<?php echo esc_attr( $taxonomy ); ?>" /> <input type="hidden" name="post_type" value="<?php echo esc_attr( $post_type ); ?>" /> <?php $wp_list_table->search_box( $tax->labels->search_items, 'tag' ); ?> </form>
which needs to be indented properly to make it more understandable. This can be check in other files as well where we are writing HTML as well as PHP. In this tickets preview how exactly the code is written so I am adding a screenshot as well https://prnt.sc/kmcjeu
Attachments (1)
Change History (8)
This ticket was mentioned in Slack in #core-coding-standards by prashantvatsh. View the logs.
6 years ago
This ticket was mentioned in Slack in #core-coding-standards by prashantvatsh. View the logs.
6 years ago
Note: See
TracTickets for help on using
tickets.
Fixed the indentation issue.