我想在postThumbnail
区域内添加top
区域。我试着这样做
Telescope.modules.add("top","postThumbnail");
那没起效。谁能给我解决这个问题?
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