2

我想在postThumbnail区域内添加top区域。我试着这样做

Telescope.modules.add("top","postThumbnail");

那没起效。谁能给我解决这个问题?

4

1 回答 1

1

postThumbnail 是模块。post_thumbnail 是模板。此时只是一个语法错误,但其余的应该可以正常工作。

Telescope.modules.add需要一个对象作为第二个参数,试试这个:

Telescope.modules.add("top", {
  template: "post_thumbnail",
  // you may need to tweak the order value
  order: 10
});

https://telescope.readme.io/docs/template-modules#adding-a-module

于 2015-08-12T13:03:28.927 回答