¿Quieres mostrar el número total de palabras publicadas de entradas y páginas en tu panel de administración? Si bien es probable que haya un plugin para esto, hemos creado un fragmento de código rápido que puede utilizar para mostrar el total de palabras publicadas en el panel de administración “Ahora mismo” de WordPress.
Instrucciones:
Todo lo que tienes que hacer es añadir este código al archivo functions.php de tu tema o en un plugin específico del sitio:
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', 'Words', $num ); echo "<tr><td class='first b'>{$num}</td><td class='t'>{$text}</td></tr>"; } add_action( 'right_now_content_table_end', 'post_word_count');
Nota: Si es la primera vez que añades fragmentos de código en WordPress, consulta nuestra guía sobre cómo añadir correctamente fragmentos de código en WordPress, para no romper accidentalmente tu sitio.
Si te ha gustado este fragmento de código, por favor, echa un vistazo a nuestros otros artículos en el sitio como: Cómo crear impresionantes formularios optin en WordPress y 7 mejores plugins de encuestas de WordPress para aumentar el compromiso en el sitio.
Can you show us how to display how many media images are in the libary in right now too please 🙁 i tried mixing both snipps on this website and broke my website at least 6 times. Please help 🙂
Thanks Kevin, now works very well, thank you for this code, it help me.
No problem Andre glad that I could help,
Hi Kevin, I don’t understand what is the last line, I’ve this situation:
// Create a custom widget function welcome() { echo ‘…………….’; } function register_widgets(){ wp_add_dashboard_widget(‘dashboard_widget’, ‘Hello’, ‘welcome’); } add_action(‘wp_dashboard_setup’, ‘register_widgets’);
Hi Andre23, I posted something that should work for you, this will add the word count within a custom dashboard widget. http://pastebin.com/hDnereaS
Just copy and paste within the function.php
Kevin, if I want to display the words in a custom widgets, how can I do?
Hi Andre23 well the reason this snippet puts the information within “right now” is because of the add_action. eg
add_action( ‘right_now_content_table_end’, ‘post_word_count’);
So if you remove that last line you could write your widget and call the same function to display within your widget. You will want to update the html so that it will work with your widget,