1. 首页
  2. 数据库
  3. 其它
  4. wordpress获取自定义字段值函数:get_post_custom()

wordpress获取自定义字段值函数:get_post_custom()

上传者: 2021-02-01 07:24:45上传 PDF文件 26.93KB 热度 11次
【描述】 同get_post_meta()一样,用于返回文章的自定义字段值得一个函数,只不过get_post_custom()函数使用起来更简单,如果在循环中使用你甚至不需要设置任何参数。 【用法】 【参数】 $post_id (整数)(可选)将要检索的自定义字段的文章编号。 默认值:Current post 【示例】 if (have_posts()) : while (have_posts()) : the_post(); var_dump(get_post_custom()); endwhile; endif; 输出的结果如下:(如果如下字段有设置的话) ar
用户评论