新パスワード取得
メールの内容にしたがってパスワードを変更してください。
// RSSフィードをWelcartの商品(item)のみに限定する function restrict_feed_to_welcart_items( $vars ) { if ( isset( $vars['feed'] ) ) { $vars['post_type'] = 'item'; // Welcartの商品のみを指定 } return $vars; } add_filter( 'request', 'restrict_feed_to_welcart_items' );