WordPress 页面专栏作家,更改默认页面类型
嘿,我需要帮助设置页面专栏作家中使用的默认列类型。它恢复为 WordPress - 下一页(默认),但我需要它普通普通页面。
我查看了代码,在第 456 行我们有一个“page_transitions”数组。数组中的第一项设置为
'default'=> true
,但将第二项更改为 'default'=>true 似乎没有执行任何操作。
有什么想法吗?
Hay, I need help setting the default column type used in page-columnist. It reverts to WordPress - Next Page (default), however i need it Ordinary Plain Page.
I look through the code and on line 456 we have an array of 'page_transitions'. the first item in the array is set to
'default'=> true
but changing the second item to 'default'=>true doesn't seem to do anything.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
快速解决方案,似乎“默认”选项没有执行任何操作。
在模板“function.php”文件中添加此代码,
然后在主题 js/ 文件夹中添加一个名为“page_Column_Change_Default.js”的文件,其内容应该是
基本上第一个片段获取当前 URL 并将其与“add post”进行比较“ URL (post-new.php?post_type=page)。这决定了我们是否位于“新帖子”页面。如果是的话,它会获取一个 javascript 文件并将其显示在正确的位置。
第二个片段(javascript 文件),使用 jquery 取消选择第一个单选按钮,然后选择第二个。
Quick solution, seems that the "default" option doesn't do anything.
In your templates 'function.php' file add this code,
Then in your themes js/ folder, add a file called "page_Column_Change_Default.js" and it's content should be
Basically the first snippet gets the current URL and compares it the "add post" URL (post-new.php?post_type=page). This determines if we're on the "new post" page. If we are, it gets a javascript file and displays it in the proper place.
The second snippet (the javascript file), using jquery to deselect the first radio button, and select the second one.