WordPress更新文章元数据函数:update_post_meta
WordPress函数update_post_meta用于更新文章元数据。
update_post_meta( int $post_id, s···
WordPress获取文章元数据函数:get_post_meta
WordPress函数get_post_meta用于获取文章元数据。
get_post_meta( int $post_id, string ···
WordPress返回所有文章元数据函数:get_post_custom
WordPress函数get_post_custom用于获取指定文章的所有元数据,相当于使用get_post_meta()···
WordPress获取文章元数据键函数:get_post_custom_keys
WordPress函数get_post_custom_keys用于获取文章所有元数据的键。
get_post_custom_keys(···
WordPress返回文章元数据值函数:get_post_custom_values
WordPress函数get_post_custom_values返回文章所有元数据的值。
get_post_custom_values(···
WordPress根据附件ID获取文件路径函数:get_attached_file
WordPress函数get_attached_file根据附件的ID返回对应附件的完整路径。
get_attached_fil···
WordPress根据附件页面地址判断是否为本地附件:is_local_attachment
WordPress函数is_local_attachment根据附件页面URL判断该附件是否为本地附件,注意这里的···
WordPress判断是否附件页面函数:is_attachment
WordPress函数is_attachment用于判断当前页面是否为附件页。
is_attachment( int|string|···
WordPress根据附件ID更新文件路径函数:update_attached_file
WordPress函数update_attached_file根据附件的ID更新文件路径。
update_attached_file( ···
WordPress根据附件ID判断附件是否是图像函数:wp_attachment_is_image
WordPress函数wp_attachment_is_image根据附件的ID判断该附件是否是图像,如果想要通过文···
WordPress插入附件信息到数据库函数:wp_insert_attachment
WordPress函数wp_insert_attachment用于插入一个附件信息到数据库。
wp_insert_attachmen···
WordPress删除附件函数:wp_delete_attachment
WordPress函数wp_delete_attachment用于删除指定ID的附件。
wp_delete_attachment( int $···