이 플러그인은 최근 3개의 주요 워드프레스 출시와 시험 되지 않았습니다. 워드프레스의 좀 더 최근 버전으로 이용할 때 더 이상 관리되지 않고 지원되지 않고 호환성 문제가 있을 수 있습니다.

FB Page Attributes WP Menu

설명

Automatically keep the page parent structure from page attributes in sync with a menu. Once you select which menu you want to keep in sync, save a page parent, and menu will be automatically updated, or save the menu and the page parent will be automatically updated. You can also add a page to the menu straight from the page attributes area when editing a page.

스크린샷

  • Choose the menu to keep in sync
  • Manage the auto-redirects that are set up when your menu changes change the parent url portions
  • Demo of saving the menu syncing to the page and saving the page syncing to the menu

설치

  1. Upload fb-page-attributes-menu to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Make sure you have at least one menu at ‘Appearance’ > ‘Menu’
  4. Back up your database; once you decide to keep a menu in sync, saving the menu will update any existing page parent structure or vice versa.
  5. Select the Menu you would like to keep in since via ‘Appearance’ > ‘Menu Sync Settings’
  6. If you have menu items already, resave your menu via ‘Appearance’ > ‘Menu’ to automatically set the parents.

FAQ

Installation Instructions
  1. Upload fb-page-attributes-menu to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Make sure you have at least one menu at ‘Appearance’ > ‘Menu’
  4. Back up your database; once you decide to keep a menu in sync, saving the menu will update any existing page parent structure or vice versa.
  5. Select the Menu you would like to keep in since via ‘Appearance’ > ‘Menu Sync Settings’
  6. If you have menu items already, resave your menu via ‘Appearance’ > ‘Menu’ to automatically set the parents.
If a menu changes, won’t that change my permalink structure?

It may, depending on the permalink structure you chose. If hierarchical and the parent page changes it will. This plugin records those changes and will automatically intercept a 404 not found and redirect to the updated permalink.

Is this plugin right for me?

This allows content editors to quickly modify the menu when they edit a page without having to know (or even have access to) the ‘Appearance’ > ‘Menu’ area.

Can I still use custom links in my menu?

Yes, this does not delete any existing or any new custom menus you add. It only keeps the hierarchy in sync as well as allows you to add and remove pages from the menu from the page edit screen.

Are there any other filters or actions?

You can prevent editors from modifying the top level menu items via an additional filter. This might be useful if you want to make sure you, as an administrator, can update your design when a top-level navigation change needs to make made (for instance for responsive design purposes):

function my_plugin_or_theme_control_top_level( $access ) {
    // Your criteria here. Return true or false.
    return $access;
}
add_filter( 'page_attributes_menu_control_top_level', 'my_plugin_or_theme_control_top_level' );

function my_plugin_or_theme_control_top_level_title( $access ) {
    // Your criteria here. Return true or false.
    return $access;
}
add_filter( 'page_attributes_menu_control_top_level_title', 'my_plugin_or_theme_control_top_level_title' );

후기

이 플러그인에 대한 평가가 없습니다.

기여자 & 개발자

“FB Page Attributes WP Menu”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

자국어로 “FB Page Attributes WP Menu”(을)를 번역하세요.

개발에 관심이 있으십니까?

코드 탐색하기는, SVN 저장소를 확인하시거나, 개발 기록RSS로 구독하세요.

변경이력

1.0

  • Initial release