Advertisement
kaed

8/17/13 - content.php

Aug 17th, 2013
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.50 KB | None | 0 0
  1. <?php
  2. /**
  3.  * @package fuckinround
  4.  */
  5. ?>
  6.  
  7. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  8.     <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(); ?></a>
  9.    
  10.     <script type="text/javascript">
  11.     jQuery(document).ready(function($){
  12.         $('article > a').each(function(){
  13.             if($(this).children('img').length == 0){
  14.                 $(this).append('<img src="http://library.binus.ac.id/images/noImageAvailable.jpg" alt="no image" />');
  15.             }
  16.         });
  17.     });
  18.     </script>
  19. </article><!-- #post-## -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement