વર્ડપ્રેસ કેટેગરી/ટેગ/લેખક પૃષ્ઠને સ્ટીકી લેખો કેવી રીતે બનાવવી?

વર્ડપ્રેસબિલ્ટ-ઇન આર્ટીકલ સ્ટિકીંગ ફંક્શન છે, પરંતુ ડિફૉલ્ટ રૂપે માત્ર ટોચનું પેજ જ સ્ટીકી લેખો દર્શાવવા માટે સમર્થિત છે.

અન્ય આર્કાઇવ પૃષ્ઠો (જેમ કે શ્રેણી પૃષ્ઠો, ટેગ પૃષ્ઠો, લેખક પૃષ્ઠો અને તારીખ પૃષ્ઠો) ફક્ત ડિફોલ્ટ ક્રમમાં, ટોચ પર સ્ટીકી લેખો પ્રદર્શિત કરી શકતા નથી.

વર્ડપ્રેસ સાથે ઘણું કરવાનું છેSEOમિત્રો, આશા છે કે આ સમસ્યાઓ હલ થશે.

વર્ડપ્રેસ કેટેગરી/ટેગ/લેખક પૃષ્ઠને સ્ટીકી લેખો કેવી રીતે બનાવવી?

વાસ્તવમાં, અમારે માત્ર 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 માં નીચેનો કોડ ઉમેરો અને સ્ટીકી પોસ્ટમાં સ્ટીકી નામનો વર્ગ ઉમેરો.

સામાન્ય WordPress થીમ્સમાં ટોચના લેખ શૈલીનો 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 કન્ટેન્ટ માર્કેટિંગ AI ટૂલ વપરાશ માર્ગદર્શિકા" મેળવનારા પ્રથમ બનો! 🌟
📚 આ માર્ગદર્શિકામાં ઘણું મૂલ્ય છે, 🌟આ એક દુર્લભ તક છે, તેને ચૂકશો નહીં! ⏰⌛💨
ગમે તો શેર કરો અને લાઈક કરો!
તમારી શેરિંગ અને લાઈક્સ એ અમારી સતત પ્રેરણા છે!

 

评论 评论

તમારું ઇમેઇલ સરનામું પ્રકાશિત કરવામાં આવશે નહીં. જરૂરી ક્ષેત્રો વપરાય છે * લેબલ

ટોચ પર સ્ક્રોલ કરો