Wishlist::create_url()

Summary

No summary available.

Source

File: src/BigCommerce/Accounts/Wishlists/Wishlist.php

	public static function create_url() {
		$url = home_url( sprintf( 'bigcommerce/%s/%s', Request_Router::ACTION, Create_Wishlist::ACTION ) );

		/**
		 * Filter the URL for creating a wishlist
		 *
		 * @param string $url The form handler URL
		 */
		return apply_filters( 'bigcommerce/wishlist/create-url', $url );
	}


User Contributed Notes

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