
WordPress设置文章分类函数:wp_set_post_categories
WordPress函数wp_set_post_categories用于为指定文章设置分类,默认情况下,新设置的分类···

WordPress获取文章所属标签对象函数:wp_get_post_tags
WordPress函数wp_get_post_tags根据文章ID获取该文章的标签对象,返回数据中包含了标签的···

WordPress设置文章标签函数:wp_set_post_tags
WordPress函数wp_set_post_tags用于给文章分配标签。
wp_set_post_tags( int $post_id, s···

WordPress获取文章所属分类法函数:wp_get_post_terms
WordPress函数wp_get_post_terms可用于获取指定文章所属的分类法。
wp_get_post_terms( i···

WordPress为文章添加分类法函数:wp_set_post_terms
WordPress函数wp_set_post_terms为指定文章添加分类法。
wp_set_post_terms( int $post_i···

WordPress生成摘要函数:wp_trim_excerpt
WordPress函数wp_trim_excerpt生成长度为55字符的文章摘要。
wp_trim_excerpt( string $t···


WordPress获取当前Post ID函数:get_the_ID
WordPress函数get_the_ID一般用在主循环The Loop中,以获取当前Post ID。也可以在文章模···

WordPress获取文章内容函数:get_the_content
WordPress函数get_the_content用于获取文章内容,通常用在主循环The Loop中。
get_the_co···


