How to hide the date in lightword
-
For the lightword theme, I wanted to not show the date on the front page sticky post. My blog is https://ovariancancerprognosis.org Here is the code of the index.php page which I know I need to add something to hide the date. Please advise and thanks.
<?php if ( function_exists('yoast_breadcrumb') ) { yoast_breadcrumb('<p id="breadcrumbs">','</p>'); } ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div <?php if (function_exists("post_class")) post_class(); else print 'class="post"'; ?> id="post-<?php the_ID(); ?>"> <?php lw_show_sidebox(); ?> <h2><a title="<?php the_title(); ?>" href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2> <?php lw_simple_date(); ?> <?php the_content(''); ?> <?php if(function_exists('wp_print')) { print_link(); } ?> <?php wp_link_pages('before=<div class="nav_link">'.__('PAGES','lightword').': &after=</div>&next_or_number=number&pagelink=<span class="page_number">%</span>'); ?>
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘How to hide the date in lightword’ is closed to new replies.