Wordpress:单页项目中的页面链接

时间:2013-06-07 20:26:41

标签: php wordpress wordpress-theming

我正在尝试构建一个小的单页wordpress主题,但努力寻找一种方法使导航菜单工作。

页面加载了此功能:http://pastebin.com/Di5MhS8y。每个页面都显示为我的主页的一部分,基于其menu_order。

如果我制作一个自定义菜单语音链接到我的网站外部(尝试使用www.google.com),菜单工作正常。 当我尝试链接到我的网站的单个部分时出现问题。整个页面重新加载,我被带回到它的顶部。

我估计我应该为每个部分提供一个特定的ID,并链接到它,但我不确定。任何建议都会受到超级赞赏!

1 个答案:

答案 0 :(得分:0)

最好的方法是给每个部分一个ID。 如果你想要干净的URL,你可以使用Jquery

创建一个函数

这是我用在一页website

中的一个
var locationPath = filterPath(location.pathname);
      var scrollElem = scrollableElement('html', 'body', 'document', 'window');
      //console.log(scrollElem);

      $('a[href*=#]').each(function() {
        var thisPath = filterPath(this.pathname) || locationPath;
        if (  locationPath == thisPath
        && (location.hostname == this.hostname || !this.hostname)
        && this.hash.replace(/#/,'') ) {
          var $target = $(this.hash), target = this.hash;
          if (target) {
            //console.log('Target: ' + target + ' offset: ' + targetOffset);
            $(this).click(function(event) {
                var targetOffset = $target.offset().top;
              event.preventDefault();
              $(scrollElem).animate({scrollTop: targetOffset}, 1000, function() {
              //console.log($(scrollElem).scrollTop());
                location.hash = target;
                $(scrollElem).animate({scrollTop: targetOffset}, 0);
              });
            });
          }
        }
      });

      // use the first element that is "scrollable"
      function scrollableElement(els) {
        for (var i = 0, argLength = arguments.length; i <argLength; i++) {
          var el = arguments[i],
              $scrollElement = $(el);
          if ($scrollElement.scrollTop()> 0) {
            return el;
          } else {
            $scrollElement.scrollTop(1);
            var isScrollable = $scrollElement.scrollTop()> 0;
            //console.log(el + ': ' + $scrollElement.scrollTop());
            $scrollElement.scrollTop(0);
            if (isScrollable) {
              return el;
            }
          }
        }
        return 'body';
      }