반응형
WordPress 사용자 지정 게시물 유형이 검색 결과에 표시되지 않음
WordPress에서 사용자 지정 게시물 유형(Quiz) 및 검색에 문제가 있습니다.사용자 지정 게시물 유형이 검색 결과 페이지에 표시되지 않습니다.기본 게시물 내용만 검색 결과에 표시됩니다.
제가 사용한 코드는 다음과 같습니다.
함수들php 함수 create_posttype () {
register_post_type( 'compassquiz',
array(
'labels' => array(
'name' => __( 'Compass Quiz' ),
'singular_name' => __( 'Compass Quiz' )
),
'taxonomies' => array('post_tag'),
'public' => true,
'publicly_queryable' => true,
'has_archive' => true,
'rewrite' => array('slug' => 'free-quiz-bank-exam'),
'query_var' => true,
'exclude_from_search' => false,
)
);}
add_action( 'init', 'create_posttype' );
함수에 추가 코드가 있습니다.php
//Read Custom Post types in Search
function filter_search($query) {
if ($query->is_search) {
$query->set('post_type', array('post', 'compassquiz'));
};
return $query;
};
add_filter('pre_get_posts', 'filter_search');
수색.
<?php
if ( have_posts() ) : ?>
<header class="page-header">
<h1 class="page-title">
<?php printf( esc_html__( 'Search Results for: %s', 'compass' ), '<span>' . get_search_query() . '</span>' ); ?>
</h1>
</header>
<?php
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/content', 'search' );
endwhile;
the_posts_navigation();
else :
get_template_part( 'template-parts/content', 'none' );
endif;
?>
내용 검색
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<?php the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>
</header>
<div class="entry-summary">
<?php
echo substr(get_the_excerpt(), 0,150) . '...';
echo ('<br><a href="' .get_permalink() . '" class="moretag">Read More »</a>');
?>
</div><!-- .entry-summary -->
</article><!-- #post-## -->
저는 WP Fourm과 다른 스택 오버플로우 질문에서 발견된 많은 코드를 시도했습니다.하지만 실제로 효과가 있는 해결책을 찾을 수 없었습니다.
검색양식에코드를추가하고숨겨진필드값에사용자정의게시유형을설정합니다.
<input type="hidden" name="post_type" value="post type name" />
검색 양식의 여러 사용자 지정 게시물 유형
<input type="hidden" name="post_type" value="posttype1, posttype2, posttype3" />
여러 사용자 지정 게시물 유형을 검색하려면 검색 양식에 입력을 복제할 수도 있습니다.
<input type="hidden" name="post_type" value="post_type1" />
<input type="hidden" name="post_type" value="post_type2" />
<input type="hidden" name="post_type" value="post_type3" />
WordPress 5.3에서 테스트됨
언급URL : https://stackoverflow.com/questions/36787961/wordpress-custom-post-type-not-showing-in-search-results
반응형
'programing' 카테고리의 다른 글
jQuery를 사용하여 이미지에서 마우스 클릭의 X/Y 좌표 가져오기 (0) | 2023.10.01 |
---|---|
C 코드를 사용하여 ifconfig와 동일한 정보를 가져옵니다. (0) | 2023.10.01 |
Get-Content - 문서에 설명된 대로 작동하지 않을 때까지 기다립니다. (0) | 2023.10.01 |
Woocmerce에서 특정 상품 속성이 있는지 확인하는 방법 (0) | 2023.10.01 |
단순입력함 기능 (0) | 2023.10.01 |