将URL参数POST布局设置为默认

时间:2019-08-05 作者:Discover

我有2个URL:

www.site。com/post1/li>www.site。com/post1/?content=onepage我有以下功能,可以通过中的URL参数控制帖子的布局BOLD:

www.site。com/post1/?content=onepage 激活以下功能:


    function onepage(){

        // condition(s) if you need to decide not to disabling shortcode(s)
        if( empty( $_GET["content"] ) || "onepage" !== $_GET["content"] )

            return;

        // Condition(s) at top are not met, we can remove the shortcode(s)


    function remove_shotcode($content) {
        return str_replace(\'[/shortcode1]\', \'\', $content);    
        return str_replace(\'[shortcode2]\', \'\', $content);
    }
    add_filter( \'the_content\', \'remove_shotcode\', 6); 

    /**
     * Ignore the <!--nextpage--> for content pagination.
     * 
     * @see http://wordpress.stackexchange.com/a/183587/26350
     */

    add_action( \'the_post\', function( $post )
    {
        if ( false !== strpos( $post->post_content, \'<!--nextpage-->\' ) ) 
        {
            // Reset the global $pages:
            $GLOBALS[\'pages\']     = [ $post->post_content ];

            // Reset the global $numpages:
            $GLOBALS[\'numpages\']  = 0;

           // Reset the global $multipage:
            $GLOBALS[\'multipage\'] = false;
        }

    }, 99 );
    }

    add_action(\'wp\',\'onepage\');

如何创建urlwww.site.com/post1/www.site.com/post1/?content=onepage 默认情况下加载相同的函数。

我认为它只需要一个简单的条件:

这是参数content 设置为onepage

if( empty( $_GET["content"] ) || "onepage" !== $_GET["content"] )

还有一个if no url parameters set.

1 个回复
最合适的回答,由SO网友:Sally CJ 整理而成

我希望这适用于所有帖子

首先content 查询字符串默认为onepage 实际上相当于启用onepage() 对于所有URL/页面。

例如,要在默认情况下仅在单个帖子页面上启用它(对于任何帖子类型),则可以替换此选项:

if( empty( $_GET["content"] ) || "onepage" !== $_GET["content"] )
    return;
使用此选项:

if( ! is_single() && ( empty( $_GET["content"] ) || "onepage" !== $_GET["content"] ) )
    return;
这意味着onepage() 也将应用于content=onepage 在查询字符串中显示。

检查the developer docs 对于其他条件标记,如is_singular().

这回答了你的问题吗?

相关推荐

Functions.php上未定义$_GET和&_REQUEST索引

我最近尝试学习为我的自定义主题创建一个主题选项页面,这是按照stackoverflow和其他资源的教程进行的。但脚本显示错误if ($_GET[\'page\'] == basename(__FILE__)) { if (\'save\' == $_REQUEST[\'formaction\']) { foreach ($options as $value) { if( isset( $_REQUEST[ $value[\'id\']