0

我想显示为目录列表标签找到的搜索结果的数量。我想我需要类似的东西...

<?php echo tag_num_results ('Mayo') ?>

(这不起作用)...我只是不知道应该使用什么来代替 tag_num_results。有使用 directorypress 经验的人会知道我应该改用什么吗?

或者,

在此页面http://wherestheauction.com/tag/mayo/上,它准确显示了我想要的内容,如“找到 8 个结果”中所示。有谁知道此代码在 directorypress 文件夹中的位置?我找了又找,还是找不到!

提前谢谢了!

编辑

我希望标签搜索结果出现在此页面的地图中:http ://wherestheauction.com/

所以我有一个无序列表

<ul id="continents">

<li id="leitrim"><a href="http://wherestheauction.com/tag/leitrim/"><span>Leitrim</span></a></li>
<li id="sligo"><a href="http://wherestheauction.com/tag/sligo/"><span>Sligo</span></a></li>
<li id="roscommon"><a href="http://wherestheauction.com/tag/roscommon/"><span>Roscommon</span></a></li>
<li id="mayo"><a href="http://wherestheauction.com/tag/mayo/"><span>Mayo</span></a></li>
<li id="galway"><a href="http://wherestheauction.com/tag/galway/"><span>Galway</span></a></li>
</ul>

当用户将鼠标悬停在地图的特定部分时,我希望它说例如“Mayo 8 Auctions”。我不确定如何将 Ofir Baruch 的答案纳入其中。

$args = array(
                'tag' => $tag,
    );

    $all_posts = get_posts( $args );
    $count = count($all_posts);
    unset($all_posts);
4

1 回答 1

0

这个对我有用:

        $args = array(
                    'tag' => $tag,
        );

        $all_posts = get_posts( $args );
        $count = count($all_posts);
        unset($all_posts);
于 2013-05-23T10:02:20.743 回答