Thanks for using my plugin. I visited your link. Here all thumbnail size are not same size. Also some post title is big some are less so it is not same size.
Thread Starter
opopop
(@opopop)
All are same sizes thumbnail Sports, Business and Fashion but yes you are right post title are big and small could you please suggest how do i fix this post title issue
One solution can apply add character limit by php for title then add …
Then all title will be same.
Thread Starter
opopop
(@opopop)
Any Reference please code or plugin
Use substr function
Try this
$html .= “<h2 class=’entry-title’>{$title}</h2>”;
To
$html .= “<h2 class=’entry-title’>{substr($title,0,50)}</h2>”;
http://php.net/manual/en/function.substr.php
in the Layout file open the plugin then see
lib/views/layouts/layout1.php
Thread Starter
opopop
(@opopop)
after put above code site not works
Please try this.
$html .=“<h2 class=’entry-title’>”.substr($title,0,50).”</h2>”;