In WordPress, it is very popular to show excerpt of a content which shows up to particular word limits.
In each and every cases it is not require to show the whole content rather than small content with limited words.
function wordCutter($str,$len) {
if(strlen(strip_tags(html_entity_decode($str)))>len)
{
$str = substr(strip_tags(html_entity_decode($str)),0,len);
$pos = strrpos($str," ");
$str = substr(strip_tags(html_entity_decode($str)),0,$pos).'...';
}
else
{
$str = strip_tags(html_entity_decode($str));
}
}
In today’s fast-paced and highly competitive marketing environment, even the most creative campaign is only…
We are NYC moving firm. Are you planning a flat move? Maybe a distance or…
Mobile devices, unlike desktops and laptops, can not be handled by dozens or hundreds of…
Augmented Reality- An immersive experience for the learners! Learning and education aren’t the same as…
On special days like birthdays and weddings, we all like to celebrate our loved ones…
A web application is different from a regular mobile or desktop application as it runs…