突出显示Wordpress侧边栏中的当前帖子
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了突出显示Wordpress侧边栏中的当前帖子相关的知识,希望对你有一定的参考价值。
Highlights the current post/page in the Wordpress sidebar.
$(document).ready(function() { // Base URL var baseUrl = "http://www.yoursite.com/"; // You need to target your sidebar here, change #sidebar to your sidebar identifier (id) $("#sidebar a").each(function(){ var href = $(this).attr('href').replace(baseUrl,''); if (href == document.location.pathname) { $(this).addClass('current'); } }); }); </script>
以上是关于突出显示Wordpress侧边栏中的当前帖子的主要内容,如果未能解决你的问题,请参考以下文章