Skip to content

Commit

Permalink
Fix: padding
Browse files Browse the repository at this point in the history
  • Loading branch information
mtdkei authored and mtdkei committed Jan 21, 2025
1 parent b277eae commit 5054a1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/content-archive-settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ function vkpdc_render_settings_page() {
<?php endforeach; ?>
<tr>
<th><?php esc_html_e( 'Exclude Taxonomies', 'vk-pattern-directory-creator' ); ?></th>
<td style="padding-left: 1.5rem;">
<td>
<?php foreach ( $taxonomies as $taxonomy ) : ?>
<input type="checkbox" id="excluded_taxonomy_<?php echo esc_attr( $taxonomy->name ); ?>" name="excluded_taxonomies[]" value="<?php echo esc_attr( $taxonomy->name ); ?>" <?php checked( in_array( $taxonomy->name, (array) $saved_excluded_taxonomies, true ) ); ?> />
<label for="excluded_taxonomy_<?php echo esc_attr( $taxonomy->name ); ?>"><?php echo esc_html( $taxonomy->label ); ?></label><br />
Expand Down

0 comments on commit 5054a1b

Please sign in to comment.