• Hello everyone.

    My ticker with Breaking news got blocked a few months ago.
    The ticker shows news I posted a few months ago.
    I don’t know what to do to unlock it.

    Here is the code.

    <div id="ticker-box">
    	<div id="ticker">
    		<div class="ticker-heading">
    			<?php echo get_option('ob_ticktitle'); ?>
    		</div><!--ticker-heading-->
    		<div id="ticker-list-box">
    			<ul class="ticker-list">
    				<?php $recent = new WP_Query(array( 'tag' => get_option('ob_ticker_tags'), 'posts_per_page' => get_option('ob_ticker_num') )); while($recent->have_posts()) : $recent->the_post();?>
    				<li><a href="<?php the_permalink() ?>"><span class="ticker-star">★</span>
    					<?php the_title(); ?>
    					</a>
    				</li>
    				<?php endwhile; ?>
    			</ul>
    
    		</div><!--ticker-list-box-->
    		<div class="ticker-title-date">
    			<div id="ticker-title-side">
    				<?php echo get_option('ob_today_date'); ?>
    			</div><!--ticker-title-side-->
    			<div id="ticker-today-date">
    				<?php echo date('j F Y'); ?>
    			</div><!--ticker-today-date-->
    		</div><!--ticker-title-date-->
    	</div><!--ticker-->
    </div><!--ticker-box-->
  • The topic ‘My ticker just got blocked.’ is closed to new replies.