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

Seamless Sticky Custom Post Types

설명

There are no settings or custom functions. Set custom post types to be sticky just as you would with regular posts, and those post id’s will be included in the result of get_option( 'sticky_posts' ).

PLEASE NOTE In order to integrate as seamlessly as possible, this plugin will not alter any queries or filter any functions. If your sticky posts aren’t appearing the way you want, there’s probably a good reason in your query (Is ignore_sticky_posts set to true? Is post_type set to a different type?). This plugin may be most appropriate for developers who just want the native sticky post UI and no other superfluous features.

If you find this plugin useful, please rate it accordingly.

스크린샷

  • The sticky post checkbox that appears for regular posts will be available for your custom post types.
  • As will the sticky post checkbox in quick edit.

후기

2018년 10월 19일
This plugin is really helpful. If you have no skill to edit functions.php well and there are many custom post type, You sholud use this.Gguaranteed working.
2018년 1월 18일
A very nice plugin enabling without further ado a functionality that should have been native. If you’re actively using the sticky post functionality for CPTs, it might be tricky to use some queries. For example, this will not work $featured_post_args = array( 'post_type' => 'custom_post', 'posts_per_page' => 1, 'post__in' => get_option( 'sticky_posts' ), 'ignore_sticky_posts' => 1 ); and you need to use something like array_filter(get_option( 'sticky_posts' ), function($id) { return get_post_type($id) == 'custom_post' && get_post_status($id) == 'publish'; }); But this is a problem of WP itself and not of the plugin.
2016년 10월 17일
Installed, added Stick Post support… no messing about. Cheers!
2016년 9월 3일
Like many others I really wish this functionality (support for Sticky Custom Posts) would be added to the core – it makes no sense that it isn’t. That said, without core support for this basic function, THIS plugin is the best option available, and just does exactly that – it adds the “Stick this post to the front page” checkbox to your registered custom post types. The folks who have given this a low rating appear to not understand how to actually USE sticky posts – WP does not do anything other than provide a mechanism to ‘flag’ a post as sticky, or not sticky. It’s then up to the THEME developer to write the necessary loops to DISPLAY sticky posts as the site owner wants them to appear. If your Theme doesn’t manage the sticky posts the way you want, and you don’t have the ability to add code to your functions (which can be as simple as copy & paste if you find the right code), then simply choose another Theme – don’t blame this plugin developer for a lack of Theme support. This plugin deserves a 5-star rating because it does exactly what it claims to do, and it’s free. What more can you ask?
모든 20 평가 읽기

기여자 & 개발자

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

기여자

자국어로 “Seamless Sticky Custom Post Types”(을)를 번역하세요.

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

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