根据字数为帖子添加估计值

时间:2016-04-26 作者:Rodrigo Senna

我有一个博客,那里每个字付2美分,需要在旁边添加一个文字统计值。

有人知道如何使这个自动乘法和单词计数一起进行吗?

example: 27个单词x 0.02美元=0.54美元

The panel show: 文字:27 |估值:0.54美元

Show as the picture belowEstimated value: $ 0.54

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

这里是一个起点,通过查看单词计数是如何在/wp-admin/js/post.js 文件:

/**
 * Testing word price calculations
 */
add_action( \'after_wp_tiny_mce\', function()
{ ?><script>
    ( function( $ ) {
        $( function() {
            // Init
            var $content = $( \'#content\' ),
                $count = $( \'#wp-word-count\' ).find( \'.word-count\' ),
                total_price = 0,
                price_per_word = 0.02;

            // Out price updating function
            function wpse_update_price(){
                total_price = $count.html() * price_per_word;
                // Debug output
                console.log( \'Total price: \' + total_price );
            }

            // On keyup event 
            $content.on( \'input keyup\', _.debounce( wpse_update_price, 1100 ) );
        } );
    } )( jQuery );
</script><?php
} );
这里,我们在控制台日志中显示总价。

希望您能根据需要进一步调整。

相关推荐

IS_ACCOUNT_PAGE()更改为页面插件

我对wordpress php真的很陌生。我应该使用哪个函数替换代码中的\\u account\\u page()。这是我之前努力实现的目标if (is_account_page()){ do some code here } 之后if (user on this page slug){ do some code here } 我应该为user on this page slug 部分