/***
*查找失效的简码
*https://www.weixiaoduo.com/unused-find-shortcode/
*/
functionBing_find_shortcode($atts,$content=null){
extract(shortcode_atts(array(‘find’=>”),$atts));
$string=$atts[‘find’];
$the_query=newWP_Query(array(‘s’=>$string));
if($the_query->have_posts()){
$html=‘<ul>’;
while($the_query->have_posts()){
$the_query->the_post();
$html.=‘<li><a href=”‘.get_permalink().‘”>’.get_the_title().‘</a></li>’;
}
$html.=‘</ul>’;
}else$html=__(‘ 未找到’,‘Bing’);
wp_reset_postdata();
return$html;
}
add_shortcode(‘shortcodefinder’,‘Bing_find_shortcode’);