I want add an column in all posts beside category, user, status, date in dashboard.
How can i do that?
https://www.ads-software.com/plugins/types/
]]>My website: www.VapingCheap.com
I am new to editing code on wordpress by I have basic code knowledge.
I am using this code…
<?php if ( is_home() ):?>
<?php echo do_shortcode(“[metaslider id=235]”); ?>
<?php endif; ?>
Thanks
]]>https://www.ads-software.com/extend/plugins/codepress-admin-columns/
]]>After updated to version 1.1,
All the thumbnails go upper part and all the post title go lower part.
And there is lu style dot next to each thumbnails.
It would be prefect if the thumbnail is clickable and link to the post.
Thanks !
https://www.ads-software.com/extend/plugins/column-posts/
]]><?php if (have_posts()) : ?>
<?php $count=0; while (have_posts()) : the_post(); if(!($firstpost == $post->ID)) : ?>
<?php if($count % 2 == 0) echo '<div class="left">'; else echo '<div class="right">'; ?>
<div style="">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"> <?php the_title(); ?> </a></h2>
<small><abbr>Posts » <b><?php the_category(', ') ?></b></abbr> - <?php if(function_exists('the_views')) { the_views(); } ?> </small>
</div>
</div>
<?php if($count % 2 != 0) echo '<div class="clear"></div>';?>
<?php $count++; endif; ?>
<?php endwhile; ?>
<div style="clear:both"></div>
<?php else : ?>
<div class="entry">
<h1>404 Not Found</h1>
<?php endif; ?>
so … how can i make it 3 post columns… or 4? or more ?
please, i need some help.
thanks!