Inventory_Presser_Admin_Options::callback_use_arranger_gallery()
Outputs a checkbox and label to enable the photo arranger Gallery Block feature.
Return Return
(void)
Source Source
File: includes/admin/class-admin-options.php
public function callback_use_arranger_gallery() { $setting_name = 'use_arranger_gallery'; $options = INVP::settings(); printf( '<p><input type="checkbox" name="%s[%s]" id="%s" %s> <label for="%s">%s</label></p>', esc_attr( INVP::OPTION_NAME ), esc_attr( $setting_name ), esc_attr( $setting_name ), isset( $options[ $setting_name ] ) ? checked( $options[ $setting_name ], true, false ) : '', esc_attr( $setting_name ), esc_html__( 'Add a Gallery Block to new vehicle posts to manage photo uploads and their order', 'inventory-presser' ) ); }
Expand full source code Collapse full source code View on Github