このファンクションは非推奨です。
ファンクション
asumil_wishlist_navi( string $html )
お気に入りリストのナビゲーション
パラメータ パラメータ
- $html
(文字列) (必須)
ファイル: src/Deprecated/functions.php
function asumil_wishlist_navi($html) {
$theme = wp_get_theme();
if ($theme->get('Name') != 'Welcart Default Theme') {
$html .= '<div class="wcw cart_navi">';
$html .= '<ul>';
/**
* @deprecated 3.0.0
*/
$html .= '<li class="wcw current">' . apply_filters('wcw_navi_wishlist_text', __('Wishlist', 'wcexwl')) . '</li>';
$html .= '</ul>';
$html .= '</div>';
}
/**
* @deprecated 3.0.0
*/
$html = apply_filters('asumil_wishlist_navi_inner', $html);
return $html;
}
| バージョン | 説明 |
|---|---|
| 3.0.0 | このファンクションは非推奨です。 |