在定义列表中显示 WordPress 类别

发布于 2024-11-27 08:47:51 字数 348 浏览 0 评论 0原文

第一次发帖,长期读者。

我正在将静态 html 文件转换为动态 WordPress 网站。我编写的标记将在定义列表中列出类别,其中 wp 类别名称是

,wp 类别描述是
。我的问题是 wp_list_categories 函数没有我想要的那么灵活,而且我对 php 的了解仅限于调整 wp 的内置函数。我正在寻找的是一个自定义函数来实现我的目标,即使用定义列表列出 wp 类别及其类别描述。然后我可以将该函数放入functions.php 文件中并在整个站点中使用它。

任何帮助将不胜感激。

谢谢!

约翰

First time poster, long time reader.

I am converting my static html file to a dynamic wordpress site. the markup I wrote will list categories in a definition list where the wp category name is a <dt> and the wp category description is a <dd>. My problem is that the wp_list_categories function is not as flexible as I would like, and the extent to which I know php is limited to tweaking built-in functions of wp. What I am looking for is a custom function to accomplish my goal of using a definition list to list wp categories with their category description. Then I can drop that function in the functions.php file and use it throughout the site.

Any help would be much appreciated.

thx!

john

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

顾铮苏瑾 2024-12-04 08:47:51

get_the_category() 返回与当前帖子相关的所有类别对象的数组。在循环中使用它。

编辑:此处使用 http://codex.wordpress.org/Function_Reference/get_the_category

get_the_category() returns an array of all category objects related to the current post. Use it in the Loop.

Edit: Usage here http://codex.wordpress.org/Function_Reference/get_the_category

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文