How show full length sticky post

Hi,

It would be great help if you help me on how to remove the post content limit for sticky post. So that whenever i mark a post as sticky it should show in home page with full content.

Thanks in advance

It depends what blog template you are using but the basic idea would be like this by using conditional tags.

<?php if ( is_sticky() ) : ?>
<?php the_content(); ?>
<?php else : ?>
<?php the_excerpt(); ?>
<?php endif;?>

As you can see this code check if this post is sticky, so it would use the_content to display content in full, if not it will use excerpt.

All blog templates can be found in content-extensions.php file that you can find in theme folder - library - structure.