ホームページ > CMS チュートリアル > &#&プレス > WordPressのカテゴリーやタグなどのアーカイブページを上部に固定する方法

WordPressのカテゴリーやタグなどのアーカイブページを上部に固定する方法

藏色散人
リリース: 2019-12-28 09:52:26
オリジナル
2010 人が閲覧しました

WordPressのカテゴリーやタグなどのアーカイブページを上部に固定する方法

WordPress のカテゴリやタグなどのアーカイブ ページを上部に固定するにはどうすればよいですか?

この記事の例では、WordPress のカテゴリやタグなどのアーカイブ ページの先頭に到達する方法について説明します。皆さんの参考に共有してください。具体的な分析は次のとおりです。

推奨事項: "wordpress チュートリアル"

WordPress では、デフォルトでは、トップ記事は次のとおりです。ホームページを分類したい場合は、/ タグなどのアーカイブ ページでも記事を上部に固定できます。二次開発が必要です。

次に、wp-includes/query のホームページを固定するためのコードを参照してください。 .php. 少し改造するだけでカテゴリーページ、タグページ、著者ページを作ることができます アーカイブページや日付ページなどもトップページと同様に範囲内の固定記事を上部に表示することができます 以下のコードを関数に入れるだけです現在のテーマの .php

コードは次のとおりです:

add_filter('the_posts', 'putStickyOnTop' ); 
function putStickyOnTop( $posts ) { 
if(is_home() || !is_main_query() || !is_archive()) 
return $posts; 
global $wp_query; 
$sticky_posts = get_option('sticky_posts'); 
if ( $wp_query->query_vars[&#39;paged&#39;] <= 1 && is_array($sticky_posts) && !emptyempty($sticky_posts) && !get_query_var(&#39;ignore_sticky_posts&#39;) ) { $stickies1 = get_posts( array( &#39;post__in&#39; => $sticky_posts ) ); 
foreach ( $stickies1 as $sticky_post1 ) { 
// 判断当前是否分类页 
if($wp_query->is_category == 1 && !has_category($wp_query->query_vars[&#39;cat&#39;], $sticky_post1->ID)) { 
// 去除不属于本分类的文章 
$offset1 = array_search($sticky_post1->ID, $sticky_posts); 
unset( $sticky_posts[$offset1] ); 
} 
if($wp_query->is_tag == 1 && has_tag($wp_query->query_vars[&#39;tag&#39;], $sticky_post1->ID)) { 
// 去除不属于本标签的文章 
$offset1 = array_search($sticky_post1->ID, $sticky_posts); 
unset( $sticky_posts[$offset1] ); 
} 
if($wp_query->is_year == 1 && date_i18n(&#39;Y&#39;, strtotime($sticky_post1->post_date))!=$wp_query->query[&#39;m&#39;]) { 
// 去除不属于本年份的文章 
$offset1 = array_search($sticky_post1->ID, $sticky_posts); 
unset( $sticky_posts[$offset1] ); 
} 
if($wp_query->is_month == 1 && date_i18n(&#39;Ym&#39;, strtotime($sticky_post1->post_date))!=$wp_query->query[&#39;m&#39;]) { 
// 去除不属于本月份的文章 
$offset1 = array_search($sticky_post1->ID, $sticky_posts); 
unset( $sticky_posts[$offset1] ); 
} 
if($wp_query->is_day == 1 && date_i18n(&#39;Ymd&#39;, strtotime($sticky_post1->post_date))!=$wp_query->query[&#39;m&#39;]) { 
// 去除不属于本日期的文章 
$offset1 = array_search($sticky_post1->ID, $sticky_posts); 
unset( $sticky_posts[$offset1] ); 
} 
if($wp_query->is_author == 1 && $sticky_post1->post_author != $wp_query->query_vars[&#39;author&#39;]) { 
// 去除不属于本作者的文章 
$offset1 = array_search($sticky_post1->ID, $sticky_posts); 
unset( $sticky_posts[$offset1] ); 
} 
} 
$num_posts = count($posts); 
$sticky_offset = 0; 
// Loop over posts and relocate stickies to the front. 
for ( $i = 0; $i < $num_posts; $i++ ) { 
if ( in_array($posts[$i]->ID, $sticky_posts) ) { 
$sticky_post = $posts[$i]; 
// Remove sticky from current position 
array_splice($posts, $i, 1); 
// Move to front, after other stickies 
array_splice($posts, $sticky_offset, 0, array($sticky_post)); 
// Increment the sticky offset. The next sticky will be placed at this offset. 
$sticky_offset++; 
// Remove post from sticky posts array 
$offset = array_search($sticky_post->ID, $sticky_posts); 
unset( $sticky_posts[$offset] ); 
} 
} 
// If any posts have been excluded specifically, Ignore those that are sticky. 
if ( !emptyempty($sticky_posts) && !emptyempty($wp_query->query_vars[&#39;post__not_in&#39;] ) ) 
$sticky_posts = array_diff($sticky_posts, $wp_query->query_vars[&#39;post__not_in&#39;]); 
// Fetch sticky posts that weren&#39;t in the query results 
if ( !emptyempty($sticky_posts) ) { 
$stickies = get_posts( array( 
&#39;post__in&#39; => $sticky_posts, 
&#39;post_type&#39; => $wp_query->query_vars[&#39;post_type&#39;], 
&#39;post_status&#39; => &#39;publish&#39;, 
&#39;nopaging&#39; => true 
) ); 
foreach ( $stickies as $sticky_post ) { 
array_splice( $posts, $sticky_offset, 0, array( $sticky_post ) ); 
$sticky_offset++; 
} 
} 
} 
return $posts; 
}
ログイン後にコピー

コードの説明:

1. ピン留めされたすべての記事をアーカイブに表示したい場合ページにあるコードの 11 ~ 43 行目を削除します;

2. 特定のカテゴリ ページに固定された記事を表示したくない場合は、3 行目の

コードを次のように変更します。

if( 
//改成: 
// abc是分类名称 
if ( is_category( &#39;abc&#39; ) ||
ログイン後にコピー

3. 特定のタブ ページに固定記事を表示したくない場合は、3 行目のコード

# を変更します ##コードは次のとおりです:

if( 
//改成: 
// abc是标签名称 
if ( is_tag( &#39;abc&#39; ) ||
ログイン後にコピー

4. 著者のページに固定記事を表示したくない場合は、3 行目の

コードを次のように変更します:

if( 
//改成: 
// abc是作者昵称 
if ( is_author( &#39;abc&#39; ) ||
ログイン後にコピー

5. 上記のコードは、メイン ループのみです。アーカイブ ページで WP_Query または query_posts を使用して記事リストを取得し、これらのリストの先頭に固定された記事を表示したい場合は、コードの 3 行目にある次のコードを削除できます (注:表示される記事の数が次の値よりも少なくなります。設定が異なります):

コードは次のとおりです:

コードは次のとおりです:

|| !is_main_query()
ログイン後にコピー

トップ スタイル:トップ記事にスタイルを追加したい場合は、functions.php に次のコードを追加すると、sticky という名前のクラスがトップ記事に追加され、特定の CSS コードは自分でカスタマイズされます。コードは次のとおりです:

add_filter(&#39;post_class&#39;, &#39;addStickyClass&#39; ,10,3 ); 
function addStickyClass( $classes, $class, $post_id ){ 
if( is_sticky() && is_category() && !isset( $classes[&#39;sticky&#39;] ) ){ 
$classes[] = &#39;sticky&#39;; 
} 
return $classes; 
}
ログイン後にコピー
この記事が皆様のお役に立てば幸いです

WordPress ウェブサイト構築

役に立ちました。

以上がWordPressのカテゴリーやタグなどのアーカイブページを上部に固定する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート