搜索附件  
吾侪 附件中心 吾侪生活 WordPress advanced-custom-fields.6.2.0.zip

板块导航

热门下载

advanced-custom-fields.6.2.0.zip

 

wordpress网站如何添加文章帖子内容页分类信息标签:
wordpress网站如何添加文章帖子内容页分类信息标签
https://cn.wordpress.org/plugins/advanced-custom-fields/
参考
Advanced Custom Fields (ACF)
自定义字段插件
#查询具有 ACF 值的帖子
查找位置(自定义字段 – 选择)等于墨尔本(值)的事件(帖子类型)的示例。 这里有很多要读的:http://codex.wordpress.org/Template_Tags/get_posts

<?php

$posts = get_posts(array(
    'numberposts' => -1,
    'post_type' => 'event',
    'meta_key' => 'location',
    'meta_value' => 'melbourne'
));

if($posts)
{
    echo '<ul>';

    foreach($posts as $post)
    {
        echo '<li><a href="' . get_permalink($post->ID) . '">' . get_the_title($post->ID) . '</a></li>';
    }

    echo '</ul>';
}

?>

邮箱|首页|小黑屋|吾侪 ( 蜀ICP备2020029307号-4 )

GMT+8, 2025-10-20 14:35 , Processed in 0.207860 second(s), 15 queries , APCu On.

Powered by Discuz! X3.5

Copyright © , 吾侪网

返回顶部