Moderator
t-p
(@t-p)
You may simply use css to hide it, like so:
.teaser-meta {
display:none;
}
If you want more elegant solution, I recommend asking your alpha-trinity theme’s developer: https://ww.wp.xz.cn/themes/alpha-trinity/
You may not get any reply from the theme’s developer because that theme has no been updated in over 2 years!
You seem to be using this theme:
https://ww.wp.xz.cn/themes/alpha-trinity/
The index.php file:
https://themes.svn.ww.wp.xz.cn/alpha-trinity/1.0.2/index.php
Find this line:
<p class="teaser-meta"><?php echo get_the_date(); ?> / <?php comments_number('0 comments', '1 comment', '% comments'); ?></p>
Remove the / <?php comments_number('0 comments', '1 comment', '% comments'); ?> from that.
Takns to botth.
I Tried the @t-p solution, and it works fine. Even thought it hides everything, not only the “/ 0 comments”, but also the date.
What I excatle aimed was to change:
December 22, 2018 / 0 comments
By:
December 22, 2018
In any case, thanks again.
M.