私は自分のカスタム投稿タイプをquery_posts()
で少し調整することで私のメインループに簡単に含めることができますが、 "最近の投稿"サイドバーウィジェットにカスタム投稿タイプを含める方法がわかりません。他のウィジェット、そのことについては)。
ネイティブの投稿タイプ以外のものを含めるために、 "最近の投稿"の範囲を拡張するにはどうすればよいですか。
最近の投稿 ウィジェットのコードを編集するか、デフォルトに基づいて独自のバージョンを作成する必要があります。コードは513行目のwp-includes/default-widgets.php
ファイルにあります。ただし、coreを変更しないでください。自分の My Custom Recent Posts ウィジェットを作成してサイトで使用することをおすすめします。新しいウィジェットクラスをあなたのテーマのfunctions.php
ファイルにドロップするか、それをプラグインで使うだけです。
あなたがする必要がある唯一の本当の修正は、ウィジェットのクラス名とカプセル化された機能とオプションへの変更です(それで、オリジナルの 最近の投稿 ウィジェットとの名前の衝突がないように。カスタム投稿タイプが含まれるように、widget()
コンストラクタのWP_Query
への呼び出しを編集します。
この例では、私はpost_type
をarray('post, 'page', 'custom-post-type')
と等しく設定しました...あなたの特定のユースケースに合うようにそれを修正する必要があるでしょう。
これがウィジェットの参照用の完全なコードです。
/**
* My_Custom_Recent_Posts widget class
*
*/
class WP_Widget_My_Custom_Recent_Posts extends WP_Widget {
function __construct() {
$widget_ops = array('classname' => 'widget_my_custom_recent_entries', 'description' => __( "The most recent posts on your site") );
$this->WP_Widget('my-custom-recent-posts', __('My Custom Recent Posts'), $widget_ops);
$this->alt_option_name = 'widget_my_custom_recent_entries';
add_action( 'save_post', array(&$this, 'flush_widget_cache') );
add_action( 'deleted_post', array(&$this, 'flush_widget_cache') );
add_action( 'switch_theme', array(&$this, 'flush_widget_cache') );
}
function widget($args, $instance) {
$cache = wp_cache_get('widget_my_custom_recent_posts', 'widget');
if ( !is_array($cache) )
$cache = array();
if ( isset($cache[$args['widget_id']]) ) {
echo $cache[$args['widget_id']];
return;
}
ob_start();
extract($args);
$title = apply_filters('widget_title', empty($instance['title']) ? __('My Custom Recent Posts') : $instance['title'], $instance, $this->id_base);
if ( !$number = (int) $instance['number'] )
$number = 10;
else if ( $number < 1 )
$number = 1;
else if ( $number > 15 )
$number = 15;
$r = new WP_Query(array('showposts' => $number, 'nopaging' => 0, 'post_status' => 'publish', 'ignore_sticky_posts' => true, 'post_type' => array('post', 'page', 'custom-post-type')));
if ($r->have_posts()) :
?>
<?php echo $before_widget; ?>
<?php if ( $title ) echo $before_title . $title . $after_title; ?>
<ul>
<?php while ($r->have_posts()) : $r->the_post(); ?>
<li><a href="<?php the_permalink() ?>" title="<?php echo esc_attr(get_the_title() ? get_the_title() : get_the_ID()); ?>"><?php if ( get_the_title() ) the_title(); else the_ID(); ?></a></li>
<?php endwhile; ?>
</ul>
<?php echo $after_widget; ?>
<?php
// Reset the global $the_post as this query will have stomped on it
wp_reset_postdata();
endif;
$cache[$args['widget_id']] = ob_get_flush();
wp_cache_set('widget_my_custom_recent_posts', $cache, 'widget');
}
function update( $new_instance, $old_instance ) {
$instance = $old_instance;
$instance['title'] = strip_tags($new_instance['title']);
$instance['number'] = (int) $new_instance['number'];
$this->flush_widget_cache();
$alloptions = wp_cache_get( 'alloptions', 'options' );
if ( isset($alloptions['widget_my_custom_recent_entries']) )
delete_option('widget_my_custom_recent_entries');
return $instance;
}
function flush_widget_cache() {
wp_cache_delete('widget_my_custom_recent_posts', 'widget');
}
function form( $instance ) {
$title = isset($instance['title']) ? esc_attr($instance['title']) : '';
if ( !isset($instance['number']) || !$number = (int) $instance['number'] )
$number = 5;
?>
<p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:'); ?></label>
<input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo $title; ?>" /></p>
<p><label for="<?php echo $this->get_field_id('number'); ?>"><?php _e('Number of posts to show:'); ?></label>
<input id="<?php echo $this->get_field_id('number'); ?>" name="<?php echo $this->get_field_name('number'); ?>" type="text" value="<?php echo $number; ?>" size="3" /></p>
<?php
}
}
3.6以降では、使用するクエリを変更するために次のコードを使用できます。
add_filter('widget_posts_args', 'widget_posts_args_add_custom_type');
function widget_posts_args_add_custom_type($params) {
$params['post_type'] = array('post','custom_type');
return $params;
}
Post_typeの配列に必要な型を追加するだけで表示されます。
更新日: http://core.trac.wordpress.org/ticket/16159 によると、これはバージョン3.4から利用可能
私は重い作業が既に行われている素晴らしいプラグインに出会いました、そしてそれは素晴らしいドキュメンテーションと作者サポートを持っています。私は本当に感動しました。
それは WP_Queryが (あなたが カスタム投稿タイプでフィルタリングすることを許可する そしてあなたが望む他の何か)をオーバーライドすることを可能にしますそしてそれを使用する方法に関するいくつかの明確な指示。
ドキュメンテーション http://www.pjgalbraith.com/2011/08/recent-posts-plus/
WordpressプラグインのURL http://wordpress.org/extend/plugins/recent-posts-plus/
私の仕事をthatだけ短くしました!
ウィジェットコードをコピーし(/wp-includes/default-widgets.phpを参照)、クエリ行を修正することができます。
このコードはあなたのCPTを含む新しい最近の投稿ウィジェットを作成します
最近のネイティブ投稿ウィジェットを拡張する際には、2つのステップが必要です。
私。 wp-includesフォルダのdefaults-widgets.phpから最近の投稿ウィジェットのコードをコピーして名前を変更することによってあなたができるあなたのカスタム最近の投稿ウィジェットのための新しいクラスを作成してください。
ii。それからあなたは同様に新しいウィジェットを登録する必要があるでしょう、そしてあなたはネイティブの最近の投稿ウィジェットを登録解除するか、あるいは両方を使うことを選ぶかもしれません。
すべてのコードは、子テーマを使用して単純に関数ファイルにコピーするか、別のファイルを作成して子テーマ関数ファイルに含めることができます。
<?php
class WPSites_Recent_Posts extends WP_Widget {
public function __construct() {
$widget_ops = array('classname' => 'wpsites_recent_posts', 'description' => __( "Latest CPT's & Posts.") );
parent::__construct('wpsites-recent-posts', __('WP Sites Recent Posts'), $widget_ops);
$this->alt_option_name = 'wpsites_recent_posts';
add_action( 'save_post', array($this, 'flush_widget_cache') );
add_action( 'deleted_post', array($this, 'flush_widget_cache') );
add_action( 'switch_theme', array($this, 'flush_widget_cache') );
}
public function widget($args, $instance) {
$cache = array();
if ( ! $this->is_preview() ) {
$cache = wp_cache_get( 'wpsites_widget_recent_posts', 'widget' );
}
if ( ! is_array( $cache ) ) {
$cache = array();
}
if ( ! isset( $args['widget_id'] ) ) {
$args['widget_id'] = $this->id;
}
if ( isset( $cache[ $args['widget_id'] ] ) ) {
echo $cache[ $args['widget_id'] ];
return;
}
ob_start();
$title = ( ! empty( $instance['title'] ) ) ? $instance['title'] : __( 'Recent Posts' );
/** This filter is documented in wp-includes/default-widgets.php */
$title = apply_filters( 'widget_title', $title, $instance, $this->id_base );
$number = ( ! empty( $instance['number'] ) ) ? absint( $instance['number'] ) : 5;
if ( ! $number )
$number = 5;
$show_date = isset( $instance['show_date'] ) ? $instance['show_date'] : false;
$r = new WP_Query( apply_filters( 'widget_posts_args', array(
'posts_per_page' => $number,
'no_found_rows' => true,
'post_status' => 'publish',
'post_type' => array('post', 'portfolio',
'ignore_sticky_posts' => true
) ) ) );
if ($r->have_posts()) :
?>
<?php echo $args['before_widget']; ?>
<?php if ( $title ) {
echo $args['before_title'] . $title . $args['after_title'];
} ?>
<ul>
<?php while ( $r->have_posts() ) : $r->the_post(); ?>
<li>
<a href="<?php the_permalink(); ?>"><?php get_the_title() ? the_title() : the_ID(); ?></a>
<?php if ( $show_date ) : ?>
<span class="post-date"><?php echo get_the_date(); ?></span>
<?php endif; ?>
</li>
<?php endwhile; ?>
</ul>
<?php echo $args['after_widget']; ?>
<?php
wp_reset_postdata();
endif;
if ( ! $this->is_preview() ) {
$cache[ $args['widget_id'] ] = ob_get_flush();
wp_cache_set( 'wpsites_widget_recent_posts', $cache, 'widget' );
} else {
ob_end_flush();
}
}
public function update( $new_instance, $old_instance ) {
$instance = $old_instance;
$instance['title'] = strip_tags($new_instance['title']);
$instance['number'] = (int) $new_instance['number'];
$instance['show_date'] = isset( $new_instance['show_date'] ) ? (bool) $new_instance['show_date'] : false;
$this->flush_widget_cache();
$alloptions = wp_cache_get( 'alloptions', 'options' );
if ( isset($alloptions['wpsites_recent_posts']) )
delete_option('wpsites_recent_posts');
return $instance;
}
public function flush_widget_cache() {
wp_cache_delete('wpsites_widget_recent_posts', 'widget');
}
public function form( $instance ) {
$title = isset( $instance['title'] ) ? esc_attr( $instance['title'] ) : '';
$number = isset( $instance['number'] ) ? absint( $instance['number'] ) : 5;
$show_date = isset( $instance['show_date'] ) ? (bool) $instance['show_date'] : false;
?>
<p><label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:' ); ?></label>
<input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo $title; ?>" /></p>
<p><label for="<?php echo $this->get_field_id( 'number' ); ?>"><?php _e( 'Number of posts to show:' ); ?></label>
<input id="<?php echo $this->get_field_id( 'number' ); ?>" name="<?php echo $this->get_field_name( 'number' ); ?>" type="text" value="<?php echo $number; ?>" size="3" /></p>
<p><input class="checkbox" type="checkbox" <?php checked( $show_date ); ?> id="<?php echo $this->get_field_id( 'show_date' ); ?>" name="<?php echo $this->get_field_name( 'show_date' ); ?>" />
<label for="<?php echo $this->get_field_id( 'show_date' ); ?>"><?php _e( 'Display post date?' ); ?></label></p>
<?php
}
}
新しいカスタムの最近の投稿ウィジェットを登録する
function wpsites_widgets_init() {
if ( !is_blog_installed() )
return;
register_widget('WPSites_Recent_Posts');
do_action( 'widgets_init' );
}
add_action( 'init', 'wpsites_widgets_init', 2 );
このコードには、変更したWP_Queryが含まれています。このWP_Queryには、カスタムの投稿タイプに合わせて名前を変更できるポートフォリオCPTを含む投稿タイプの配列が含まれています。
修正が必要なコードは次のとおりです。
'post_type' => array('post', 'portfolio',
最近の投稿ウィジェットよりカスタマイズしやすいウィジェットプラグインも作成しました。興味のある方はこちらからダウンロードできます http://new2wp.com/pro/latest-custom-post-type-posts-sidebar-widget/ /