web-dev-qa-db-ja.com

カスタムプラグインを作成する方法

特定の日にユーザーをページにリダイレクトする 単純なプラグイン を書きました。 (この場合、米国ではSOPAに対するブラックアウトが発生します)

今は、wp_redirect(plugins_url( 'simple-sopa-blackout/blackout.php'),302 );という行を使って、指定された日付にユーザーをリダイレクトしています。

問題は、それがhttp://example.net/wp-content/plugins/simple-blackout/blackout.phpのような厄介なURLになることです。これを単にhttp://example.net/blackoutにすることは素晴らしいことです。

私が思ったことに続いて 正しいコーデックス を試しました。

add_filter( 'rewrite_rules_array','my_insert_rewrite_rules' );
add_action( 'wp_loaded','my_flush_rules' );

// flush_rules() if our rules are not yet included
function my_flush_rules(){
    $rules = get_option( 'rewrite_rules' );

    if ( ! isset( $rules['blackout/?$'] ) ) {
        global $wp_rewrite;
        $wp_rewrite->flush_rules();
    }
}

// Adding a new rule
function my_insert_rewrite_rules( $rules )
{
    $newrules = array();
    $newrules['blackout/? $'] = plugins_url( 'simple-sopa-blackout/blackout.php');
    return $newrules + $rules;
}

どんな助けでも素晴らしいだろう、完全な情報源はここにある

編集:

これは私が今持っているものです、それがクエリvars index.php?blackout=stop-sopaでページにアクセスするならばうまくいきます、しかし私がblackout/stop-sopaに行くならばそれはまたループを作成してそして日付が本当ならタイムアウトしているようです

    //create your rewrite rule
add_action( 'init', 'wpse38978_init' );

function wpse38978_init() {
     add_rewrite_rule('blackout/(\d*)$', 'index.php?blackout=$matches[1]', 'top');
}

// add blackout to the whitelist of variables it wordpress knows and allows
function my_plugin_query_vars($query_vars) {
    $query_vars[] = 'blackout';
    return $query_vars;
}
add_filter('query_vars', 'my_plugin_query_vars');


function my_plugin_parse_request($wp) {
    if (array_key_exists('blackout', $wp->query_vars) 
            && $wp->query_vars['blackout'] == 'stop-sopa') {
        include( dirname( __FILE__ ) . '/blackout.php' );
exit();
    }

}
add_action('parse_request', 'my_plugin_parse_request');

if(!function_exists('wp_redirect')) { 
    require(ABSPATH . WPINC . '/pluggable.php');
}

$current_time =  current_time('mysql', '0'); //get current blog time
$ts =strtotime($current_time); //parse the sql blog time to a php useable format
$check_date = date('m/d/Y', $ts);  // put the date in a format we can check
$check_hour = date('H', $ts);  // put the date in a format we can check
$blackout_day = "01/15/2012"; // should we black out the site?
$blackout_day_time_start = "08"; // when should we start (hour in 24 hour format)
$blackout_day_time_end = "20"; // should we black out the site?

if((!is_admin()) && ($check_date == $blackout_day && ($check_hour >= $blackout_day_time_start || $check_hour < $blackout_day_time_end))){
    wp_redirect(get_bloginfo('url').'/blackout/stop-sopa',302 );
      exit();

}
1
Brooke.

私はこの答えがあなたを助けることができると思います。プラグイン内にカスタムページテンプレートを作成してから、そのテンプレートを使用してBlackoutというページを作成し、プラグイン内のユーザーをそのページにリダイレクトします。

プラグインを使ってカスタムページテンプレートを作成しますか?

コードサンプルを編集:

Blackoutというページがあるとしましょう。スラッグはblackoutです。

add_filter( 'page_template', 'your_custom_page_template' );
function your_custom_page_template( $page_template ) {

    if ( is_page( 'blackout' ) ) {
        $page_template = plugin_dir_path( __FILE__ ) . 'your-custom-page-template.php';
    }

    return $page_template;
}

リダイレクトが適切に機能するようにすることができれば、上記のコードと連動して、そのページにアクセスするたびにページテンプレートを表示することができます。これで、テーマの代わりにyour-custom-page-template.phpなどのプラグインフォルダ内から名前を付けることができます。

編集して、これでうまくいきました:

function blackout_redirect(){
    $page = get_page_by_path( 'blackout' );

    if( isset( $page ) && !is_null( $page ) ) {
        if( !is_page( 'blackout' ) && !is_admin() /* && $check_date stuff */ ) {
            wp_redirect( get_permalink( $page->ID ), 302 ); exit;   
        }
    }
}
add_action( 'wp', 'blackout_redirect' );

function blackout_template() {

    if( is_page( 'blackout' ) ) {
        include plugin_dir_path( __FILE__ ) . 'blackout.php'; exit;
    }

}
add_filter( 'template_redirect', 'blackout_template' );

Twenty Elevenテーマでは、他にいくつかのプラグインだけがアクティブになっています。

1
Jared

これを試してください:( URLは http://site.com/blackout/anti-sopa である必要があります)

//create your rewrite rule
add_action( 'init', 'wpse38978_init' );
function wpse38978_init() {
     add_rewrite_rule('blackout/(\d*)$', 'index.php?blackout=$matches[1]', 'top');
}

// add blackout to the whitelist of variables it wordpress knows and allows
add_action( 'query_vars', 'wpse6891_query_vars' );
function wpse38978_query_vars( $query_vars )
{
    $query_vars[] = 'blackout';
    return $query_vars;
}

// If this is done, we can access it later
// This example checks very early in the process:
// if the variable is set, we include our page and stop execution after it
add_action( 'parse_request', 'wpse38978_parse_request' );
function wpse6891_parse_request( &$wp ){
    if ( array_key_exists( 'blackout', $wp->query_vars ) &&  $wp->query_vars['blackout'] == 'anti-sopa') {
        include( dirname( __FILE__ ) . '/blackout.php' );
        exit();
    }
}


if(!function_exists('wp_redirect')) { 
    require(ABSPATH . WPINC . '/pluggable.php');
}

$current_time =  current_time('mysql', '0'); //get current blog time
$ts =strtotime($current_time); //parse the sql blog time to a php useable format
$check_date = date('m/d/Y', $ts);  // put the date in a format we can check
$check_hour = date('H', $ts);  // put the date in a format we can check
$blackout_day = "01/18/2012"; // should we black out the site?
$blackout_day_time_start = "08"; // when should we start (hour in 24 hour format)
$blackout_day_time_end = "20"; // should we black out the site?

if((!is_admin()) && ($check_date == $blackout_day &&($check_hour >= $blackout_day_time_start || $check_hour < $blackout_day_time_end))){
      wp_redirect(get_bloginfo('url').'/blackout/anti-sopa',302 );
      exit();

}
1
Bainternet