Shortcode_Controller::get_rendered_item_params()

Summary

No summary available.

Source

File: src/BigCommerce/Rest/Shortcode_Controller.php

	public function get_rendered_item_params() {
		$params = [];
		foreach ( Shortcodes\Products::default_attributes() as $key => $default ) {
			$params[ $key ] = [
				'type'    => is_int( $default ) ? 'integer' : 'string',
				'default' => $default,
			];
		}

		return $params;
	}


User Contributed Notes

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