wordpress常用函数

1、wordpress放在文章循环中可以获取文章缩略图src路径

wp_get_attachment_image_src(get_post_thumbnail_id(get_the_ID()), full)[0]

2、wordpress获取css、js、img等资源文件路径

get_template_directory_uri()

3、wordpress调用自定义模板文件

get_template_part()

4、wordpress根据分类id获取分类名称以及分类连接

$cat_name= get_cat_name($index_list[$i]);//$index_list[$i]:分类id
$cat_link=get_category_link($index_list[$i]);

你可能感兴趣的:(wordpress)