Wishlist::edit_url()

Summary

Get the URL to handle update requests for this wishlist


Return

(string)


Source

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

	public function edit_url() {
		$url = home_url( sprintf( 'bigcommerce/%s/%s/%d', Request_Router::ACTION, Edit_Wishlist::ACTION, $this->list_id() ) );

		/**
		 * Filter the URL for posting an update to a wishlist's settings
		 *
		 * @param string   $url      The form handler URL
		 * @param Wishlist $wishlist The wishlist object
		 */
		return apply_filters( 'bigcommerce/wishlist/edit-url', $url, $this );
	}


User Contributed Notes

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