MicrotechXP
New Member
- Messages
- 7,644
- Reaction score
- 0
- Points
- 0
I have been messing with a theme that I bought and I can't seem to get one thing done. The posts are limited to a certain amount on the home page and I want to make the limit more. Like from 500 words to 1500 words before limited (example).
Here is the code I have found for the limiting:
What do I need to do to make the limit more?
Here is the website: http://ddrun.x10hosting.com/
Here is the code I have found for the limiting:
PHP:
/************************************************************\
* WP NOW - Content Limit
\************************************************************/
function wpn_content_limit($content, $ilimit = false)
{
$limit = ($ilimit) ? $ilimit : 270;
$pad="...";
$content = strip_tags($content);
if(strlen($content) > $limit)
{
$content = substr($content,0,$limit);
}
echo $content.$pad;
}
/************************************************************\
* WP NOW - Content Show
\************************************************************/
function wpn_content_show($limit)
{
if(is_category() || is_archive())
{
if (!empty($post->post_excerpt))
{
the_excerpt();
}
else
{
wpn_content_limit(get_the_content(), $limit);
}
}
else
{
wpn_content_limit(get_the_content(), $limit);
}
}
What do I need to do to make the limit more?
Here is the website: http://ddrun.x10hosting.com/