This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php if(function_exists('rps_show')) echorps_show(); ?> | |
| <?php query_posts('showposts=15'); ?> | |
| <?php while (have_posts()) : the_post(); ?> | |
| <ul> | |
| <li> | |
| <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"> | |
| <?php if(has_post_thumbnail()) { the_post_thumbnail(); } | |
| elseif( $thumbnail = get_post_meta($post->ID, 'resim', true) ){ ?> | |
| <div class="padding150_0"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| ajax-send.js - copyright Jake Bellacera (http://jakebellacera.com) | |
| This script uses JQuery & JQuery Validate (https://github.com/jzaefferer/jquery-validation) | |
| For this example, we will have a form named '#ajaxform', you can of course change this to whatever you'd like. | |
| */ | |
| $(function(){ | |
| $('#submitbutton').click(function() { |