为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.
function custom_remove_defaults($content) { return false; } function apply_custom_filters() { add_filter('thesis_show_header', 'custom_remove_defaults'); add_filter('thesis_show_sidebars', 'custom_remove_defaults'); add_filter('thesis_show_footer', 'custom_remove_defaults'); } } add_action('template_redirect','apply_custom_filters');
以上是关于为WordPress的论文主题添加多个压缩页面,并使用论文1.8的自定义过滤器的主要内容,如果未能解决你的问题,请参考以下文章
为WordPress的论文主题添加压缩页面,并使用论文1.8的自定义过滤器