<?php
//Add Word Limit to Posts
add_filter("the_content", "easy_custom_filter");
function easy_custom_filter($content)
{
return substr($content, 0, 100);
// return a subset of it
}
?>
//Add Word Limit to Posts
add_filter("the_content", "easy_custom_filter");
function easy_custom_filter($content)
{
return substr($content, 0, 100);
// return a subset of it
}
?>
No comments :
Post a Comment