Hello, dear developers!
I want to modify the plugin Related Items so that instead of the news titles of the related news would show pictures inserted in the news with the plugin Featured Image.
I was able to make it for Search and fot list of news, but unfortunately competently change plugin Related Items for the news I did not get. Can you help me?
Thank U.
Comments
Btw, glad to hear someone uses that plugin ;-)
in the my theme(zpBase) functions.php i paste printRelatedItems function, rename it in printRelatedItemsNews
and change this line:
`
" title="<?php echo html_encode($obj->getTitle()); ?>"><?php echo html_encode($obj->getTitle()); ?>`
to
`
" title="<?php echo html_encode($obj->getTitle()); ?>">
<?php $alt=html_encode($obj->getTitle());
$hasFeaturedImage = getFeaturedImage($obj);
if ($hasFeaturedImage) printSizedFeaturedImage($obj,$alt,100,100,100,null,null,null,null,'remove-attributes center',null,true,null); ?>
`
it works!`