WP_Themes_List_Table::_js_vars( array $extra_args = array() )

Send required variables to JavaScript land


Parameters

$extra_args array Optional

Default: array()


Top ↑

Source

File: wp-admin/includes/class-wp-themes-list-table.php. View all references

public function _js_vars( $extra_args = array() ) {
	$search_string = isset( $_REQUEST['s'] ) ? esc_attr( wp_unslash( $_REQUEST['s'] ) ) : '';

	$args = array(
		'search'      => $search_string,
		'features'    => $this->features,
		'paged'       => $this->get_pagenum(),
		'total_pages' => ! empty( $this->_pagination_args['total_pages'] ) ? $this->_pagination_args['total_pages'] : 1,
	);

	if ( is_array( $extra_args ) ) {
		$args = array_merge( $args, $extra_args );
	}

	printf( "<script type='text/javascript'>var theme_list_args = %s;</script>\n", wp_json_encode( $args ) );
	parent::_js_vars();
}


Top ↑

Changelog

Changelog
Version Description
3.4.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.