वर्डप्रेस श्रेणी/टॅग/लेखक पृष्ठ चिकट लेख कसे दाखवायचे?

वर्डप्रेसएक अंगभूत लेख स्टिकिंग फंक्शन आहे, परंतु डिफॉल्टनुसार केवळ शीर्ष पृष्ठ चिकट लेख प्रदर्शित करण्यासाठी समर्थित आहे.

इतर संग्रहण पृष्ठे (जसे की श्रेणी पृष्ठे, टॅग पृष्ठे, लेखक पृष्ठे आणि तारीख पृष्ठे) शीर्षस्थानी चिकट लेख प्रदर्शित करू शकत नाहीत, फक्त डीफॉल्ट क्रमाने.

वर्डप्रेससह बरेच काही करायचे आहेएसइओमित्रांनो, या समस्यांचे निराकरण होईल अशी आशा आहे.

वर्डप्रेस श्रेणी/टॅग/लेखक पृष्ठ चिकट लेख कसे दाखवायचे?

खरं तर, आम्हाला फक्त wp-includes/query.php च्या मुख्यपृष्ठाच्या कोडचा संदर्भ घ्यावा लागेल आणि त्यात थोडासा बदल करावा लागेल, जेणेकरून संग्रहण पृष्ठाच्या शीर्षस्थानी (जसे की श्रेणी पृष्ठ, टॅब पृष्ठ, लेखक पृष्ठ आणि तारीख पृष्ठ ) शीर्ष लेख देखील प्रदर्शित करू शकतो.

वर्डप्रेस चिकट लेख कोड

कृपया तुमच्या वर्तमान थीम अंतर्गत functions.php फाइलमध्ये खालील कोड टाका ▼

//让WordPress分类、标签、存档和作者页显示置顶文章
add_filter('the_posts', 'putStickyOnTop' );
function putStickyOnTop( $posts ) {
if ( is_series() || is_home() || !is_main_query() || !is_archive())
return $posts;

global $wp_query;

$sticky_posts = get_option('sticky_posts');

if ( $wp_query->query_vars['paged'] <= 1 && is_array($sticky_posts) && !empty($sticky_posts) && !get_query_var('ignore_sticky_posts') ) { $stickies1 = get_posts( array( 'post__in' => $sticky_posts ) );
foreach ( $stickies1 as $sticky_post1 ) {
// 判断当前是否分类页 
if($wp_query->is_category == 1 && !has_category($wp_query->query_vars['cat'], $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['tag'], $sticky_post1->ID)) {
// 移除不是本标签的文章
$offset1 = array_search($sticky_post1->ID, $sticky_posts);
unset( $sticky_posts[$offset1] );
}
if($wp_query->is_year == 1 && date_i18n('Y', strtotime($sticky_post1->post_date))!=$wp_query->query['m']) {
// 移除不是本年份的文章
$offset1 = array_search($sticky_post1->ID, $sticky_posts);
unset( $sticky_posts[$offset1] );
}
if($wp_query->is_month == 1 && date_i18n('Ym', strtotime($sticky_post1->post_date))!=$wp_query->query['m']) {
// 移除不是本月份的文章
$offset1 = array_search($sticky_post1->ID, $sticky_posts);
unset( $sticky_posts[$offset1] );
}
if($wp_query->is_day == 1 && date_i18n('Ymd', strtotime($sticky_post1->post_date))!=$wp_query->query['m']) {
// 移除不是本日期的文章
$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['author']) {
// 移除不是本作者的文章
$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 ( !empty($sticky_posts) && !empty($wp_query->query_vars['post__not_in'] ) )
$sticky_posts = array_diff($sticky_posts, $wp_query->query_vars['post__not_in']);

// Fetch sticky posts that weren't in the query results
if ( !empty($sticky_posts) ) {
$stickies = get_posts( array(
'post__in' => $sticky_posts,
'post_type' => $wp_query->query_vars['post_type'],
'post_status' => 'publish',
'nopaging' => true
) );

foreach ( $stickies as $sticky_post ) {
array_splice( $posts, $sticky_offset, 0, array( $sticky_post ) );
$sticky_offset++;
}
}
}

return $posts;
}

//置顶文章添加样式
add_filter('post_class',  'addStickyClass' ,10,3 );
function addStickyClass( $classes, $class, $post_id ){
  if( is_sticky() && is_category() && !isset( $classes['sticky'] ) ){
    $classes[] = 'sticky';
  }
  
  return $classes;
} 

चिकट लेखाचा कोड वापरण्यासाठी सूचना

1) जर तुम्हाला संग्रहण पृष्ठावर सर्व शीर्ष लेख प्रदर्शित करायचे असल्यास, कृपया कोडच्या 11-43 ओळी हटवा;

2) जर तुम्हाला श्रेणी पृष्ठावर शीर्ष लेख प्रदर्शित करायचा नसेल, तर कृपया ▼ ओळ 3 मध्ये जोडा

if(

▼ मध्ये सुधारित करा

// abc是分类的名称
if ( is_category( 'abc' ) || 

3) तुम्हाला टॅब पृष्ठावर शीर्ष लेख प्रदर्शित करायचा नसल्यास, कृपया ▼ ओळ 3 मध्ये

if(

मध्ये बदला:

// abc是标签的名称
if ( is_tag( 'abc' ) || 

4) जर तुम्हाला लेखकाच्या पानावर शीर्ष लेख प्रदर्शित करायचा नसेल, तर कृपया ▼ ओळ 3 मध्ये

if(

▼ मध्ये सुधारित करा

// abc是作者的昵称
if ( is_author( 'abc' ) || 

5) तुम्हाला सानुकूल श्रेणी पृष्ठ शीर्ष लेख प्रदर्शित करू इच्छित नसल्यास, ठेवा

if(

ते यामध्ये बदला:

// series是自定义分类、abc是自定义分类名称
if ( is_series( 'abc' ) ||

वरील कोड फक्त मुख्य लूपसाठी वैध आहे, जर तुम्ही संग्रहण पृष्ठावरील पोस्टची सूची मिळविण्यासाठी WP_Query किंवा query_posts वापरत असाल आणि त्या सूचीच्या शीर्षस्थानी पिन केलेल्या पोस्ट प्रदर्शित करू इच्छित असाल.

तुम्ही ओळ 3 मधील खालील कोड हटवू शकता (आपण सेट केलेल्या लेखांपेक्षा भिन्न प्रदर्शित लेखांची संख्या असू शकते) ▼

|| !is_main_query() 

शीर्ष लेखात शैली जोडा

जर तुम्हाला स्टिकी पोस्टमध्ये स्टाइल्स टाकायच्या असतील तर खालील कोड functions.php मध्ये जोडा आणि स्टिकी पोस्टमध्ये स्टिकी नावाचा क्लास जोडा.

सामान्य वर्डप्रेस थीममध्ये शीर्ष लेख शैलीचा CSS कोड असेल, तुम्ही कस्टम ▼ देखील जोडू शकता

//置顶文章添加样式
add_filter('post_class',  'addStickyClass' ,10,3 );
function addStickyClass( $classes, $class, $post_id ){
  if( is_sticky() && is_category() && !isset( $classes['sticky'] ) ){
    $classes[] = 'sticky';
  }
  
  return $classes;
} 

वर्डप्रेस श्रेणी संग्रहण पृष्ठे शीर्षस्थानी वर्डप्रेस लेख दर्शविण्याचा आणखी एक मार्ग आहे▼

होप चेन वेइलांग ब्लॉग ( https://www.chenweiliang.com/ ) सामायिक केले "वर्डप्रेस श्रेणी/टॅग/लेखक पृष्ठ चिकट लेख कसे दाखवायचे? , तुम्हाला मदत करण्यासाठी.

या लेखाची लिंक सामायिक करण्यासाठी आपले स्वागत आहे:https://www.chenweiliang.com/cwl-878.html

नवीनतम अपडेट्स मिळवण्यासाठी चेन वेइलियांगच्या ब्लॉगच्या टेलिग्राम चॅनेलवर आपले स्वागत आहे!

🔔 चॅनल टॉप डिरेक्टरीमध्ये मौल्यवान "ChatGPT Content Marketing AI टूल वापर मार्गदर्शक" मिळवणारे पहिले व्हा! 🌟
📚 या मार्गदर्शकामध्ये प्रचंड मूल्य आहे, 🌟ही एक दुर्मिळ संधी आहे, ती चुकवू नका! ⏰⌛💨
आवडल्यास शेअर आणि लाईक करा!
तुमचे शेअरिंग आणि लाईक्स ही आमची सतत प्रेरणा आहे!

 

评论 评论

आपला ईमेल पत्ता प्रकाशित केला जाणार नाही. 用 项 已 用 * लेबल

वर स्क्रोल करा