Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当用户访问特定的帖子或页面(主页除外)时,如何在 php 中获取帖子信息(至少帖子的 ID)?哪个动作或过滤器最适合这个?
我想检测用户何时访问页面或帖子并制作这样的 html 日志:
a user visited the page <a href="link_to_post"> Post Title </a>
我目前有the_post行动,但它也在主页上运行。
the_post
您可以使用is_home()它来检查它是否是主页。您可以使用get_permalinkandget_the_title获取链接和帖子标题
is_home()
get_permalink
get_the_title
尝试这个:
if (!is_home()) { echo 'a user visited the page <a href="' . get_permalink() . '">' . get_the_title() . '</a>'; }