ARIARAD 2 ارسال شده در اردیبهشت 93 گزارش بازنشر ارسال شده در اردیبهشت 93 (ویرایش شده) سلام خدمت همگی وقتتون بخیربنده می خواستم پست قبلی و بعدی رو به پستام اضافه کنم با این تفاوت که پست بعدی و قبلی از یک custom taxonomy خاص و یک post type خاص باشنیعنی فقط پست هایی رو نشون بدن که شامل اون دو تا باشنتو سایتای خارجی خیلی گشتم کد زیر رو پیدا کردم ولی فقط پست بعدی و قبلی post type رو اجرا می کنه و به custom taxonomy اهمیت نمیدهممنون میشم راهنمایی کنید$term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'singer' ) );echo $term->slug; // will show the slug// get_posts in same custom taxonomy$postlist_args = array('posts_per_page' => -1,'orderby' => 'menu_order title','order' => 'ASC','post_type' => 'music-video', // this can be your post type'productcat' => $termSlug // get slug of product category from above - change productcat for your taxonomy slug);$postlist = get_posts( $postlist_args );// get ids of posts retrieved from get_posts$ids = array();foreach ($postlist as $thepost) {$ids[] = $thepost->ID;}// get and echo previous and next post in the same taxonomy$thisindex = array_search($post->ID, $ids);$previd = $ids[$thisindex-1];$nextid = $ids[$thisindex+1];?><?phpif ( !empty($previd) ) {echo '<a rel="prev" href="' . get_permalink($previd). '">previous</a>';}if ( !empty($nextid) ) {echo '<a rel="next" href="' . get_permalink($nextid). '">next</a>';}?> تو کد بالا music-video پست تیپ و singer تاکسونومی هست ویرایش شده اردیبهشت 93 توسط ARIARAD لینک به ارسال
فرهاد-سئو 905 ارسال شده در اردیبهشت 93 گزارش بازنشر ارسال شده در اردیبهشت 93 مطالب این صفحه رو هم امتحان کردین؟https://www.google.com/search?q=previous+and+next+post+in+same+taxonomy&oq=previous+%26+next+post+in&aqs=chrome.1.69i57j0l5.37654j0j7&sourceid=chrome&es_sm=122&ie=UTF-8 1 لینک به ارسال
پست های پیشنهاد شده
لطفا برای ارسال دیدگاه وارد شوید
شما بعد از اینکه وارد حساب کاربری خود شدید می توانید دیدگاهی ارسال کنید
ورود به حساب کاربری