为WordPress的论文主题添加压缩页面,并使用论文1.8的自定义过滤器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为WordPress的论文主题添加压缩页面,并使用论文1.8的自定义过滤器相关的知识,希望对你有一定的参考价值。

To get the simplest squeeze page possible: no header, sidebars or footer. Paste the following php in custom_functions.php. The first function is the filter that returns “false” instead of returning the content that would normal be there (in the header, or footer, or sidebar). The second function selects the page on which to apply the filter and then applies the filter to the header, sidebars and footer, just before Thesis loads on that page.
  1. function custom_remove_defaults($content) {
  2. return false;
  3. }
  4.  
  5. function apply_custom_filters() {
  6. if (is_page('Squeeze Page')) {
  7. add_filter('thesis_show_header', 'custom_remove_defaults');
  8. add_filter('thesis_show_sidebars', 'custom_remove_defaults');
  9. add_filter('thesis_show_footer', 'custom_remove_defaults');
  10. }
  11. }
  12. add_action('template_redirect','apply_custom_filters');

以上是关于为WordPress的论文主题添加压缩页面,并使用论文1.8的自定义过滤器的主要内容,如果未能解决你的问题,请参考以下文章

为WordPress的论文主题添加多个压缩页面,并使用论文1.8的自定义过滤器

为WordPress的论文主题添加压缩页面,并为论文1.8添加自定义过滤器,使其具有不同的侧面

如何在wordpress主题中添加设置页面

转载:如何在wordpress主题中添加设置页面

使用 Sass 压缩输出,同时为 Wordpress 保留主题注释标题

如何调整 Wordpress 二十一十一主题,使页面宽度为 100% 并居中?