Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am a newbie coder. I have learned a lot in the few weeks. Now I am making my blog site. What I want is , show the limited part of 6 or 8 articles in the content div and make a read more link to show the article.

Can you tell me a way to do it?

share|improve this question

2 Answers

up vote 1 down vote accepted

Load the string helper and use the word_limiter, character_limiter (google for docs)

Or, contain a paragraph called "Summary" (varchar(255)) different to your main "Content" field (TEXT).

share|improve this answer

Initially load string helper and do as follows

word_limiter("data",limit);

You can check it here

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.