function exclusive_entry_cont_for_searc()
{
    //for update general_settings
    global $exclusive_general_settings_page;
    foreach ($exclusive_general_settings_page->options_generalsettings as $value) {
        if (get_theme_mod($value['var_name']) === FALSE) {
            ${$value}['var_name'] = $value['std'];
        } else {
            ${$value}['var_name'] = get_theme_mod($value['id']);
        }
    }
    ?>
		<div class="entry">
	        <?php 
    if ($blog_style) {
        the_excerpt();
    } else {
        the_content(__('More', 'wd_exclusive'));
    }
    ?>
		</div>
        <div class="entry-meta">
			<?php 
    if ($date_enable) {
        exclusive_posted_on();
    }
    exclusive_entry_meta();
    ?>
		</div><?php 
}
Exemple #2
0
						<a class="title_href" href="<?php 
        the_permalink();
        ?>
">
							<h3><?php 
        the_title();
        ?>
</h3>
						</a>
				    
						<div class="entry-meta">
							<?php 
        if ($date_enable) {
            exclusive_posted_on();
        }
        exclusive_entry_meta();
        ?>
						</div>
						<div class="entry">	
							<?php 
        the_post_thumbnail();
        the_content();
        ?>
						</div>
					</div>
					
					<?php 
        wp_link_pages(array('before' => '<div class="page-links"><span class="page-links-title">' . __('Page', 'exclusive') . '</span>', 'after' => '</div>', 'link_before' => '<span class="page-links-number">', 'link_after' => '</span>'));
        exclusive_post_nav();
        global $post;
        $withcomments = true;