0

当用户访问特定的帖子或页面(主页除外)时,如何在 php 中获取帖子信息(至少帖子的 ID)?哪个动作或过滤器最适合这个?

我想检测用户何时访问页面或帖子并制作这样的 html 日志:

a user visited the page <a href="link_to_post"> Post Title </a>

我目前有the_post行动,但它也在主页上运行。

4

1 回答 1

0

您可以使用is_home()它来检查它是否是主页。您可以使用get_permalinkandget_the_title获取链接和帖子标题

尝试这个:

if (!is_home()) {
    echo 'a user visited the page <a href="' . get_permalink() . '">' . get_the_title() . '</a>';
}
于 2013-07-12T08:41:09.083 回答