wordpress 短代码详解

创建流程:

1.创建一个函数,当 WordPress 发现短代码的时候会调用此函数;

function recent_posts_function() {
query_posts(array(‘orderby’ => ‘date’, ‘order’ => ‘DESC’ , ‘showposts’ => 1));
if (have_posts()) :
while (have_posts()) : the_post();
$return_string = ‘<a href=”‘.get_permalink().'”>’.get_the_title().'</a>’;
endwhile;
endif;
wp_reset_query();
return $return_string;
}
2.通过设置一个唯一的名称来注册短代码;

function register_shortcodes(){
add_shortcode(‘recent-posts’, ‘recent_posts_function’);
}
3.把注册的函数绑定到Wordpress的action上。

add_action( ‘init’, ‘register_shortcodes’);

  • QQ群:253510359
  • 建议:VPS商家层出不穷,根据需要购买,切莫剁剁剁!
  • 评测:很多VPS虽已评测,但网络环境改变稳定性,速度也会随之改变.评测只能作为一般性参考.不负任何法律,道义责任.
  • 申明:所有vps,域名,服务器优惠信息均来自网络公开内容,由于水平有限不免有谬误.请以官方为准.