I get this error when i enter 623.line to single.php
Parse error: syntax error, unexpected ‘;’ in /home/deniztas/sac-ekimi.deniz-tasarim.site/wp-content/themes/html5blank-stable22/single.php on line 623 Site teknik zorluklarla karşılaşıyor.
the 623.line:
<?php if ( function_exists('journalite_author_bio') ) {journalite_author_bio();}?>
how to solve it?
edit:
i added all single.php
<?php get_header(); ?> <?php wpb_set_post_views(get_the_ID()); ?> <main role="main"> <section class="container"> <div class="row " > <div class="col-lg-10 "> <div class="row"> <div class="col-lg-12 "> <?php if (have_posts()): while (have_posts()) : the_post(); ?> <!-- article --> <article id="post-<?php the_ID(); ?> <?php post_class();"" ?> <!-- post thumbnail --> <!-- /post thumbnail --> <?php the_content(); // Dynamic Content ?> </div> <!-- /post title --> <?php the_tags( __( 'Tags: ', 'html5blank' ), ', ', '<br>'); // Separated by commas with a line break at the end ?> <?php edit_post_link(); // Always handy to have Edit Post Links available ?> <!-- profile card --> <style> @import "https://fonts.googleapis.com/css?family=Open+Sans:300,400"; .badgescard, .firstinfo { display: flex; justify-content: center; align-items: center; } html { height: 100%; } *, *:before, *:after { box-sizing: border-box; } .contentz { position: relative; animation: animatop 0.9s cubic-bezier(0.425, 1.14, 0.47, 1.125) forwards; } .card { width: full; min-height: 100px; padding: 20px; border-radius: 3px; background-color: white; box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2); position: relative; overflow: hidden; } .card:after { content: ''; display: block; width: 190px; height: 300px; background: cadetblue; position: absolute; animation: rotatemagic 0.75s cubic-bezier(0.425, 1.04, 0.47, 1.105) 1s both; } .badgescard { padding: 10px 20px; border-radius: 3px; background-color: #00bcd4; color:#fff; width: 450px; box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2); margin-left: 10px; z-index: -1; left: 10px; bottom: 10px; animation: animainfos 0.5s cubic-bezier(0.425, 1.04, 0.47, 1.105) 0.75s forwards; } .badgescard span { font-size: 1.6em; margin: 0px 6px; opacity: 0.6; } .firstinfo { flex-direction: row; z-index: 2; position: relative; } .firstinfo img { border-radius: 50%; width: 120px; height: 120px; } .firstinfo .profileinfo { padding: 0px 20px; } .firstinfo .profileinfo h1 { font-size: 1.8em; } .firstinfo .profileinfo h3 { font-size: 1.2em; color: #00bcd4; font-style: italic; } .firstinfo .profileinfo p.bio { padding: 10px 0px; color: #5A5A5A; line-height: 1.2; font-style: initial; } @keyframes animatop { 0% { opacity: 0; bottom: -500px; } 100% { opacity: 1; bottom: 0px; } } @keyframes animainfos { 0% { bottom: 10px; } 100% { bottom: -42px; } } @keyframes rotatemagic { 0% { opacity: 0; transform: rotate(0deg); top: -24px; left: -253px; } 100% { transform: rotate(-30deg); top: -24px; left: -78px; } } </style> <div class="contentz" > <div class="card"> <div class="firstinfo"><?php echo get_avatar( get_the_author_meta('email'), '90' ); ?> <div class="profileinfo"> <?php echo ' <h1> '; the_author_link(); echo ' </h1> ';?> <h3>Swift developer</h3> <?php echo ' <p class="bio"> '; the_author_meta('description'); echo '</p>' ?> </div> </div> </div> <div class="badgescard" > <?php $ youtube_profile = get_the_author_meta( 'youtube_profile' ); if ( !empty($ youtube_profile) || $ youtube_profile != '' ) { echo '<span class="socmed-author socmed-author-twitter"><a href="'.esc_url($ youtube_profile).'" target="_blank" ><i class="fa fa-youtube-square fa-2x"></i></a></span>'; } ?> <?php $ twitter_profile = get_the_author_meta( 'twitter_profile' ); if ( !empty($ twitter_profile) || $ twitter_profile != '' ) { echo '<span class="socmed-author socmed-author-twitter"><a href="'.esc_url($ twitter_profile).'" target="_blank" ><i class="fa fa-twitter-square fa-2x"></i></a></span>'; } ?> <?php $ rss_url = get_the_author_meta( 'rss_url' ); if ( !empty($ rss_url) || $ rss_url != '' ) { echo '<span class="socmed-author socmed-author-twitter"><a href="'.esc_url($ rss_url).'" target="_blank" ><i class="fa fa-rss-square fa-2x"></i></a></span>'; } ?> <?php $ facebook_profile = get_the_author_meta( 'facebook_profile' ); if ( !empty($ facebook_profile) || $ facebook_profile != '' ) { echo '<span class="socmed-author socmed-author-twitter"><a href="'.esc_url($ facebook_profile).'" target="_blank" ><i class="fa fa-facebook-square fa-2x"></i></a></span>'; } ?> <?php $ linkedin_profile = get_the_author_meta( 'linkedin_profile' ); if ( !empty($ linkedin_profile) || $ linkedin_profile != '' ) { echo '<span class="socmed-author socmed-author-twitter"><a href="'.esc_url($ linkedin_profile).'" target="_blank" ><i class="fa fa-linkedin-square fa-2x"></i></a></span>'; } ?> <?php $ pinterest_profile = get_the_author_meta( 'pinterest_profile' ); if ( !empty($ pinterest_profile) || $ pinterest_profile != '' ) { echo '<span class="socmed-author socmed-author-twitter"><a href="'.esc_url($ pinterest_profile).'" target="_blank" ><i class="fa fa-pinterest-square fa-2x"></i></a></span>'; } ?> <?php $ instagram_profile = get_the_author_meta( 'instagram_profile' ); if ( !empty($ instagram_profile) || $ instagram_profile != '' ) { echo '<span class="socmed-author socmed-author-twitter"><a href="'.esc_url($ instagram_profile).'" target="_blank" ><i class="fa fa-instagram-square fa-2x"></i></a></span>'; } ?> </div> </div> <?php if ( function_exists('journalite_author_bio') ) {journalite_author_bio();}?> <!-- /profile card --> <?php comments_template(); ?> </article> <!-- /article --> <?php endwhile; ?> <?php else: ?> <!-- article --> <article> <h1><?php _e( 'Sorry, nothing to display.', 'html5blank' ); ?></h1> </article> <!-- /article --> <?php endif; ?> </div> </div> <div class="col-lg-2" > <nav class="navbar navbar-expand-md navbar-light position-fixed shadow p-3 mb-5 bg-white rounded " style="background-color:#F3F3F3; overflow: hidden; margin-top:50px;" role="navigation"> <?php get_sidebar(); ?> <?php dynamic_sidebar('smartslider_area_1'); ?> </nav> </div> </div> </div> </section> </main> <?php get_footer(); ?>