how to trim post title in home page.
-
hello, this is avi,
1. i want to trim my post title length on home page, how to do it?
this is my content.php
<article id=”post-<?php the_ID(); ?>” <?php post_class(); ?>>
<?php if ( !is_single() ) twentyfourteen_post_thumbnail(); ?><header class=”entry-header”>
<?php if ( in_array( ‘category’, get_object_taxonomies( get_post_type() ) ) && twentyfourteen_categorized_blog() ) : ?>
<div class=”entry-meta”>
<span class=”cat-links”><?php echo get_the_category_list( _x( ‘, ‘, ‘Used between list items, there is a space after the comma.’, ‘twentyfourteen’ ) ); ?></span>
</div>
<?php
endif;if ( is_single() ) :
the_title( ‘<h1 class=”entry-title”>’, ‘</h1>’ );else :
the_title( ‘<h1 class=”entry-title”>‘, ‘</h1>’ );endif;
?>
- The topic ‘how to trim post title in home page.’ is closed to new replies.