How to auto add release year after title on movies and series?
for movies open \themes\psyplay\includes\single\movies.php
search for <h3 itemprop="name"><?php the_title(); ?></h3>
and replace it with this
<?php $theYear = ($mostrar = $terms = strip_tags( $terms = get_the_term_list( $post->ID, 'release-year') ) ) ? $mostrar : ' '; ?>
<h3 itemprop="name"><?php the_title(); ?> <?php echo '('. $theYear .')'; ?> watch movie online</h3>
for series open \themes\psyplay\includes\single\tvshows.php
search for <h3 itemprop="name"><?php the_title(); ?></h3>
and replace it with <?php $theYear = ($mostrar = $terms = strip_tags( $terms = get_the_term_list( $post->ID, 'release-year') ) ) ? $mostrar : ' '; ?>
<h3 itemprop="name"><?php the_title(); ?> <?php echo '('. $theYear .')'; ?> watch tv show online</h3>