Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Discussion Preview?
Krak
New
How hard would it be to get a summary of the post listed on the main page under the topic? Like the first 300 words or so.
Has this been mentioned in any other threads?
I was dabbling around with this a little earlier and was curious. Can it be done with just a simple theme change? Or would it be best to just do it as an extension? I am thinking extension would probably benefit everyone more. I need it for a theme I am working on.
Any ideas? Where would be a good place to start?
Has this been mentioned in any other threads?
I was dabbling around with this a little earlier and was curious. Can it be done with just a simple theme change? Or would it be best to just do it as an extension? I am thinking extension would probably benefit everyone more. I need it for a theme I am working on.
Any ideas? Where would be a good place to start?
0
This discussion has been closed.
Comments
Not exactly using the same words though.. disregard this post.
Anyone?
this isnt a foolproof way but it'll work none the less
$string = 'find your own string...'; $string = explode(' ', $string); echo implode(' ', array_splice($string, 0, 300));