khokon-bd
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Forum: Plugins
In reply to: [Author: WP Symposium] Tow seperated forum for to languageThanks for advice.
Forum: Plugins
In reply to: [qTranslate] qtransalte does not work yet with 3.5Change the 90 number line from the qtranslate.php like below
define('QT_SUPPORTED_WP_VERSION', '3.5');Hope this will work fine!
Forum: Fixing WordPress
In reply to: Pagination for custom post type<?php $paged = get_query_var('paged'); ?> <?php $temp = $wp_query; $wp_query= null; $wp_query = new WP_Query(); $wp_query->query('post_type=recipes'.'&paged='.$paged); ?><code>and</code><?php $paged = get_query_var('page'); ?>isn’t working! Anything else? @keesiemeijer
Forum: Fixing WordPress
In reply to: Pagination for custom post typeI haven’t much experience on coding. I didn’t try with <?php $paged = get_query_var(‘paged’); ?> & function posts_nav_links() because I don’t know where to use these! My function getpagenavi() code is
function getpagenavi(){ ?> <div id="navigation"> <?php if(function_exists('wp_pagenavi')) : ?> <?php wp_pagenavi() ?> <?php else : ?> <div class="alignleft"><?php next_posts_link(__('« Older Entries','arclite')) ?></div> <div class="alignright"><?php previous_posts_link(__('Newer Entries »','arclite')) ?></div> <div class="clear"></div> <?php endif; ?> </div> <?php }Forum: Fixing WordPress
In reply to: Safe from HackerThanks all. I know that plug-ins make a site slow, so I want to do it without any plug-ins. Is it possible? @christin Moderator.
Viewing 5 replies - 1 through 5 (of 5 total)