web-dev-qa-db-ja.com

投稿を公開する機能を遅らせる方法

私はbuddypressを使用しており、新しいメンバーは全員作者の役割を担っています。このサイトは、トピックが1つあるフォーラムのようなものです。私はコメントを心配していません、ただ投稿する.

最近、私はユーザーから大量のスパムを受信しました。ユーザーが実際に少なくとも1週間投稿しないようにするにはどうすればよいですか。

2
john powell

そのためのプラグインはありませんので、私はそれを書きました。あなたはそれをプラグインあるいは(より良い)mu-plugin(あなたの~/wp-content/mu-pluginsフォルダに置く)として使うことができます。

Mu-Plugin:MetaBoxを削除して「投稿を公開」する可能性を遅らせる

何が起こり、なぜ起こるのかについての詳細な説明は、インラインコメントを参照してください。

<?php
/**
 * Plugin Name: Delay post publishing
 * Plugin URI: http://unserkaiser.com
 * Description: Only allows publishing a post if the user registered one week ago. 
 * Version: 0.1
 * Author: Franz Josef Kaiser
 * Author URI: http://unserkaiser.com
 */

// Only run this for new "post"-post_type admin UI screens
if ( ! is_admin() AND 'post-new.php' !== $GLOBALS['typenow'] ) return;

function remove_publish_metabox_until_date() 
{
    // Retrieve the current users' data as object
    $curr_user = get_user_by( 'id', get_current_user_id() );

    // Get the time/date (and format) of the time 
    // the user registered as UNIX timestamp - needed for comparison
    $reg_date  = abs( strtotime( $curr_user->user_registered ) );
    $curr_date = abs( strtotime( current_time( 'mysql' ) ) );

    // Human readable difference: This calculates the time since the user registered
    $diff       = human_time_diff( $reg_date, $curr_date );
    $diff_array = explode( ' ', $diff );

    // Remove if we're on the 1st day (diff result is mins/hours)
    // This removes the MetaBox
    if ( 
        strstr( $diff_array[1], 'mins' )
        OR strstr( $diff_array[1], 'hours' )
    )
        return remove_meta_box( 'submitdiv', null, 'side' );

    // Remove if we're below or equal to 7 days (1 week)
    // This removes the MetaBox
    if ( 7 >= $diff_array[0] )
        return remove_meta_box( 'submitdiv', null, 'side' );
}
add_action( 'add_meta_boxes', 'remove_publish_metabox_until_date', 20 );

このプラグインに関するさらなる更新は this Gist にあります。

WPSEプラグインリポジトリ にもあります。

3
kaiser