Badraoui نشر 12 يناير 2016 أرسل تقرير نشر 12 يناير 2016 أريد إنشاء حقل للبحث للنوع مخصص من المنشورات على موقع مبني بووردبريس، فكيف ذلك؟ اقتباس
0 E.Nourddine نشر 13 يناير 2016 أرسل تقرير نشر 13 يناير 2016 (معدل) سنتبع الخطوات الثلاث التالية من أجل الوصل إلى إجابة عن سؤالك:1- أضف Function Codes:هنا يمكنك تحديد archive-search.php:function template_chooser($template) { global $wp_query; $post_type = get_query_var('post_type'); if( $wp_query->is_search && $post_type == 'products' ) { return locate_template('archive-search.php'); // redirect to archive-search.php } return $template; } add_filter('template_include', 'template_chooser'); 2- أنشيء search result template الخاصة بـ search-archive.php )custom post type): <?php /* Template Name: Custom Search */ get_header(); ?> <div class="contentarea"> <div id="content" class="content_right"> <h3>Search Result for : <?php echo "$s"; ?> </h3> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <div id="post-<?php the_ID(); ?>" class="posts"> <article> <h4><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a><h4> <p><?php the_exerpt(); ?></p> <p align="right"><a href="<?php the_permalink(); ?>">Read More</a></p> <span class="post-meta"> Post By <?php the_author(); ?> | Date : <?php echo date('j F Y'); ?></span> </article><!-- #post --> </div> <?php endwhile; ?> <?php endif; ?> </div><!-- content --> </div><!-- contentarea --> <?php get_sidebar(); ?> <?php get_footer(); ?>3- إنشاء واجهة Search Form:<div> <h3>Search Products</h3> <form role="search" action="<?php echo site_url('/'); ?>" method="get" id="searchform"> <input type="text" name="s" placeholder="Search Products"/> <input type="hidden" name="post_type" value="products" /> <!-- // hidden 'products' value --> <input type="submit" alt="Search" value="Search" /> </form> </div>يمكنك الاستفادة أكثر من الرابط تم التعديل في 13 يناير 2016 بواسطة E.Nourddine اقتباس
السؤال
Badraoui
أريد إنشاء حقل للبحث للنوع مخصص من المنشورات على موقع مبني بووردبريس، فكيف ذلك؟
1 جواب على هذا السؤال
Recommended Posts
انضم إلى النقاش
يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.