Warning: This method has been deprecated. Use detect_delimited_options() instead.

Inventory_Presser_WP_All_Import::detect_piped_options( int $post_id, string $meta_key, mixed $meta_value )

If the value being saved to the meta key inventory_presser_options_array contains a pipe, split the string on pipe and add each option individually.


Parameters Parameters

$post_id

(int) (Required)

$meta_key

(string) (Required)

$meta_value

(mixed) (Required)


Top ↑

Return Return

(void)


Top ↑

Source Source

File: includes/integrations/class-wp-all-import.php

	public function detect_piped_options( $post_id, $meta_key, $meta_value ) {
		$this->detect_delimited_options( $post_id, $meta_key, $meta_value );
	}