Php Wordpress BrandooIIS Azure搜索不工作的问题

Php Wordpress BrandooIIS Azure搜索不工作的问题,php,wordpress,search,full-text-search,Php,Wordpress,Search,Full Text Search,在Azure上创建了一个站点,但它在BrandooWordPress下。在SQL和IIS上运行。我现在的问题是,我的搜索框在开发中正常工作,但在Azure上使用后,它目前无法正常工作。我需要在web.config上添加任何内容吗?我真的很高兴你的意见 <?php if ( have_posts() ) { ?> <ul id="search-result"> <?php while (have_posts()) : the_post(); ?> &l

在Azure上创建了一个站点,但它在BrandooWordPress下。在SQL和IIS上运行。我现在的问题是,我的搜索框在开发中正常工作,但在Azure上使用后,它目前无法正常工作。我需要在web.config上添加任何内容吗?我真的很高兴你的意见

<?php if ( have_posts() ) { ?>
<ul id="search-result">
<?php while (have_posts()) : the_post(); ?>

    <li class="sr-<?php echo get_post_type( $post->ID ); ?>"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>

<?php endwhile; ?>
</ul>

<?php } else { ?>

<ul id="search-result">
  <li class="nothing-here"><?php _e( "Sorry, no posts were found.", "framework" ); ?></li>
</ul>