[WORDPRESS] WordPress : 탐색 메뉴에 빈 목록 항목 추가
WORDPRESSWordPress : 탐색 메뉴에 빈 목록 항목 추가
해결법
-
1.필터로 추가 할거야 :
필터로 추가 할거야 :
add_filter('wp_nav_menu_items', 'add_stretcher', 10, 2); function add_stretcher($items, $args) { if ($args->theme_location == 'primary') { $items .= '<li class="stretcher"></li>'; } return $items; }
-
2.다음 코드가있는 jQuery를 사용하여 추가 할 수 있습니다
다음 코드가있는 jQuery를 사용하여 추가 할 수 있습니다
<script> jQuery(document).ready(function(){ jQuery("#menu-primary li").last().before("<li class="stretcher"></li>"); }); </script>
from https://stackoverflow.com/questions/18658643/wordpress-add-empty-list-item-to-navigation-menu by cc-by-sa and MIT license
'WORDPRESS' 카테고리의 다른 글
[WORDPRESS] WooCommerce : 일부 범주 가격을 체중으로 변경 (0) | 2020.11.22 |
---|---|
[WORDPRESS] WooCommerce 전자 메일의 사용자 정의 필드로 서식이 지정된 청구 전체 이름을 사용자 정의 (0) | 2020.11.22 |
[WORDPRESS] WooCommerce의 특정 제품에 대한 지리적 위치에 근거한 사용자 정의 리디렉션 (0) | 2020.11.22 |
[WORDPRESS] 's'=> $ Term, WordPress / PHP의 post_title에 기초하여 게시물을 당기지 않아야합니다. (0) | 2020.11.21 |
[WORDPRESS] WooCommerce - 지불 게이트웨이 숨기기 (0) | 2020.11.21 |