jc93
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Why is my blog post show by descending?Hi,
I was tried. But too bad !!! It doesn’t work and the sidebar run away to the bottom.
Forum: Fixing WordPress
In reply to: Why is my blog post show by descending?Hi,
That mean I just replace the code your was given into the line 13 to 17?
Forum: Fixing WordPress
In reply to: Why is my blog post show by descending?Kindly look with this link. Thanks!
Forum: Fixing WordPress
In reply to: Why is my blog post show by descending?Hi, I just got the index.php
<?php if (is_archive()) $post_number = get_option(‘personalpress_archivenum_posts’);
if (is_search()) $post_number = get_option(‘personalpress_searchnum_posts’);
if (is_tag()) $post_number = get_option(‘personalpress_tagnum_posts’);
if (is_category()) $post_number = get_option(‘personalpress_catnum_posts’);
if (is_home()) $args=array(
‘showposts’=>get_option(‘personalpress_homepage_posts’),
‘paged’=>$paged,
‘category__not_in’ => get_option(‘personalpress_exlcats_recent’),
); ?>
<?php get_header(); ?><?php global $query_string;
if (is_category()) query_posts($query_string . “&showposts=$post_number&paged=$paged&cat=$cat”);
elseif (is_home()) query_posts($args);
else query_posts($query_string . “&showposts=$post_number&paged=$paged”); ?><div id=”main”>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?><?php $thumb = ”;
$width = 175;
$height = 175;
$classtext = ”;
$titletext = get_the_title();$thumbnail = get_thumbnail($width,$height,$classtext,$titletext,$titletext);
$thumb = $thumbnail[“thumb”]; ?><?php global $post;
$page_result = is_search() && ($post->post_type == ‘page’) ? true : false; ?><div class=”entry-wrap<?php if ($page_result) echo(‘ page_result’); ?>”>
<div class=”entry”>
<h2 class=”title”>” title=”<?php printf(__(‘Permanent Link to %s’, ‘PersonalPress’), $titletext) ?>”><?php the_title(); ?></h2><?php if (get_option(‘personalpress_postinfo1’) <> ”) { ?>
<?php if ( in_array(‘date’, get_option(‘personalpress_postinfo1’)) ) { ?>
<p class=”date”>
<span class=”month”><?php the_time(‘M’); ?></span>
<span class=”day”><?php the_time(‘d’); ?></span>
</p>
<?php }; ?>
<?php }; ?><div class=”entry-content clearfix”>
<?php if($thumb <> ” && get_option(‘personalpress_thumbnails_index’) == ‘on’) { ?>
<div class=”thumb”>
<?php print_thumbnail($thumb, $thumbnail[“use_timthumb”], $titletext, $width, $height, $classtext); ?>” title=”<?php printf(__(‘Permanent Link to %s’, ‘PersonalPress’), $titletext) ?>”><span class=”overlay”></span>
</div> <!– end .thumb –>
<?php }; ?><?php if (get_option(‘personalpress_blog_style’) == ‘on’) the_content(“”); else { ?>
<p><?php truncate_post(370); ?></p>
<?php }; ?>” title=”<?php printf(__(‘Permanent Link to %s’, ‘PersonalPress’), $titletext) ?>” class=”readmore”><span><?php _e(‘Read More’,’PersonalPress’); ?></span>
</div> <!– end .entry-content –><div class=”post-meta-top”></div>
<div class=”post-meta clearfix”>
<?php if (get_option(‘personalpress_postinfo1’) <> ”) { ?>
<?php if ( in_array(‘author’, get_option(‘personalpress_postinfo1’)) || in_array(‘comments’, get_option(‘personalpress_postinfo1’)) || in_array(‘categories’, get_option(‘personalpress_postinfo1’)) ) { ?><?php if ( in_array(‘author’, get_option(‘personalpress_postinfo1’)) ) { ?>
<span class=”meta-info author”>
<span class=”right-sep”>
<?php the_author_posts_link(); ?>
</span>
</span>
<?php }; ?><?php if ( in_array(‘comments’, get_option(‘personalpress_postinfo1’)) ) { ?>
<span class=”meta-info comments-number”>
<span class=”right-sep”>
<?php comments_popup_link(__(‘0 comments’,’PersonalPress’), __(‘1 comment’,’PersonalPress’), ‘% ‘.__(‘comments’,’PersonalPress’)); ?>
</span>
</span>
<?php }; ?><?php if ( in_array(‘categories’, get_option(‘personalpress_postinfo1’)) ) { ?>
<span class=”meta-info categories”>
<span class=”right-sep”>
<?php the_category(‘, ‘) ?>
</span>
</span>
<?php }; ?><?php }; ?>
<?php }; ?>
</div> <!– end .post-meta –></div> <!– end .entry –>
</div> <!– end .entry-wrap –><?php endwhile; ?>
<?php if(function_exists(‘wp_pagenavi’)) { wp_pagenavi(); }
else { ?>
<?php include(TEMPLATEPATH . ‘/includes/navigation.php’); ?>
<?php } ?><?php else : ?>
<?php include(TEMPLATEPATH . ‘/includes/no-results.php’); ?>
<?php endif; wp_reset_query(); ?></div> <!– end #main –>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Hopefully you can find something wrong inside =) Thank!
Forum: Fixing WordPress
In reply to: Why is my blog post show by descending?So where should I check what’s on my code file?
You may have a look with my blog : https://www.jcwangzhang.com
Appreciate for your replied and help!
Thanks!
Forum: Fixing WordPress
In reply to: Why is my blog post show by descending?may i know what’s the code file do you mean?
thanks!
Forum: Networking WordPress
In reply to: 404 Not FoundHi,
My host was checked for me and the .htaccess is working as fine. But why the issue still not work yet? May I know besides the problem from my host, what the problem will cause this?
I really need the help from yours.
Thanks!
Forum: Networking WordPress
In reply to: 404 Not FoundHi,
But my web hosting was enable rewriter for .htaccess
Forum: Networking WordPress
In reply to: 404 Not FoundHi,
That mean the code doesn’t have any error.
Just because of the htaccess not working?So what can my host do for me?
Forum: Networking WordPress
In reply to: 404 Not FoundHi Ipstenu,
Too bad, nothing came out. Just show updated.RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]# uploaded files
RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L]# add a trailing slash to /wp-admin
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]Anything wrong with the above code?
Forum: Networking WordPress
In reply to: 404 Not FoundHi Andrea,
What do you mean by resave permalink structure?
Where to get the permalink code. Thanks!
Forum: Plugins
In reply to: Contact FormThanks.
Besides this,
got others function is same like Cfrom more wider range ?Forum: Themes and Templates
In reply to: CMS Themesjust like selling magazine themes.