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

Sticky Postbox

설명

Sticky Postbox is a piece of code written few years ago as exercise to learn how WordPress handles administration meta boxes’s availables statuses (closed, hidden and sortings).

This very lightweight plugin adds the sticky feature to administration meta boxes allowing them to be sticky at top right corner of the browser window.

Only one meta box can be sticky at once, so a new sticky meta box unstick the current one (if there is one).

Basic Features

  • Per-user settings.
  • Multisite support.

Usage

Once the plugin is installed and activated you can sticky administration meta boxes using sticky icon (it appears on the top right corner of each box).

API

Constants

You can use define following constants in your wp-config.php file.

STICKY_POSTBOX_DEBUG

Turn on debug messages (also WP_DEBUG has to be true).
Default to false.

STICKY_POSTBOX_GLOBAL_OPTIONS

In a Multisite installation, allows to shares user’s sticky meta boxes settings across all his sites. For example, if you sticky Publish box in editing Pages in a specific site, it will be sticky on all Pages of all sites.
Default to false.

STICKY_POSTBOX_AUTOENABLE

By default if the plugin has been activated, it starts automatically.
Define to false if you want to init it manually, for example:

// Activate manually the plugin once all plugin have been loaded.
add_action( 'plugins_loaded', function() {
    \Sticky_Postbox::get_instance( 
        array(
            'debug'          => WP_DEBUG,
            'global_options' => false,
        )
    );
} );

Hooks

Currently the plugin doesn’t have actions or filters.

스크린샷

  • Sticky meta box in classic edit post.
  • Sticky meta box in Dashboard.

설치

This section describes how to install the plugin and get it working.

  1. Upload the plugin files to the /wp-content/plugins/sticky-postbox directory, or install the plugin through the WordPress Plugins screen directly.
  2. Activate the plugin through the Plugins screen in WordPress.

FAQ

Does it work with Gutenberg?

This plugin is intended to work with Classic Editor and Dashboards meta boxes.

Does it work with multisite installation?

Yes

후기

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

기여자 & 개발자

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

기여자

자국어로 “Sticky Postbox”(을)를 번역하세요.

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

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

변경이력

For plugin changelog, please see the Releases page on GitHub.