Membership is FREE – with unlimited access to all features, tools, and discussions. Premium accounts get benefits like banner ads and newsletter exposure. ✅ Signature links are now free for all. Share your own thoughts and experience, accounts may be terminated for violations.

How to increase the word in the post of Wordpress?

Joined
Mar 23, 2017
Posts
4
Reaction score
0
I have problem with wordpress, cannot increase the word in post.

I google search, but cannot find out the solutions.

pls. help.Thanks.


F11PylB.png
 
There is no word limit by default on wp so you must have installed a plugin or something that is restricting your post length.
Do you have any active plugins?
 
On a serious note..... found something that may be relevant. Look for a function/plug that contains wp_trim . It may be you have a plug in thats in demo mode or something ? It'll be something like this probably:

$content = get_the_content();
$trimmed_content = wp_trim_words( $content, 610, NULL );
echo $trimmed_content;
 
Top Bottom