right-now

چند کلمه تا الآن منتشر کردید ؟

برای این که بدونید تا حالا چند کلمه منتشر کردید کد زیر رو در فایل تابع های پوسته [ functions.php ] خود قرار بدید :

function post_word_count() {
    $count = 0;
    $posts = get_posts( array(
        'numberposts' => -1,
        'post_type' => array( 'post', 'page' )
    ));
    foreach( $posts as $post ) {
        $count += str_word_count( strip_tags( get_post_field( 'post_content', $post->ID )));
    }
    $num =  number_format_i18n( $count );
    $text = _n( 'Word', 'کلمه', $num );
    echo "<tr><td class='first b'><a>{$num}</a></td><td class='t'><a>{$text}</a></td></tr>";
}
add_action( 'right_now_content_table_end', 'post_word_count');

حالا به پیشخوان بروید و در قسمت ” هم اکنون ” تعداد کلمات رو ببینید.

Like 1 نفر این نوشته را پسندیدند
avatar



دیدگاه‌ها غیرفعال هستند.