突出显示Wordpress侧边栏中的当前帖子

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了突出显示Wordpress侧边栏中的当前帖子相关的知识,希望对你有一定的参考价值。

Highlights the current post/page in the Wordpress sidebar.
  1. <script type="text/javascript">
  2. $(document).ready(function() {
  3. // Base URL
  4. var baseUrl = "http://www.yoursite.com/";
  5. // You need to target your sidebar here, change #sidebar to your sidebar identifier (id)
  6. $("#sidebar a").each(function(){
  7. var href = $(this).attr('href').replace(baseUrl,'');
  8. if (href == document.location.pathname) {
  9. $(this).addClass('current');
  10. }
  11. });
  12. });
  13. </script>

以上是关于突出显示Wordpress侧边栏中的当前帖子的主要内容,如果未能解决你的问题,请参考以下文章

关于wordpress主题侧边栏菜单

突出显示存档中的类别 - WordPress

Wordpress - 与帖子相关的类别列表

Wordpress 自定义演示侧边栏未出现在帖子上

按月获取用户帖子的存档 Wordpress

根据日期限制 wordpress 中的档案列表