armanadhitama
Forum Replies Created
-
Forum: Your WordPress
In reply to: I need some suggestion and critiquejeremy >>
Yeah i find much error on the validation last monday. I just want to fix it, but still busy on my work. perhaps it’ll be fixed within this 1-2 weeks.
Forum: Themes and Templates
In reply to: custom single post home, with page for past postsyou can still using standards template (index.php) and follow these steps :
1. search for this line <? query_posts(); ?> in the index of your template
2. replace with <? query_posts(‘showposts=1’); ?>
3. finishif you’d like to using homepage.php instead index.php, copy code below t your homepage.php
<? query_posts(‘showposts=1’); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?><div class=”post” id=”post-<?php the_ID(); ?>”>
<h2>” rel=”bookmark” title=”Permanent Link to <?php the_title_attribute(); ?>”><?php the_title(); ?></h2>
<small><?php the_time(‘F jS, Y’) ?> <!– by <?php the_author() ?> –></small><div class=”entry”>
<?php the_content(‘Read the rest of this entry »’); ?>
</div><p class=”postmetadata”><?php the_tags(‘Tags: ‘, ‘, ‘, ‘
‘); ?> Posted in <?php the_category(‘, ‘) ?> | <?php edit_post_link(‘Edit’, ”, ‘ | ‘); ?> <?php comments_popup_link(‘No Comments »’, ‘1 Comment »’, ‘% Comments »’); ?></p>
</div><?php endwhile; endif ?>
Forum: Fixing WordPress
In reply to: How could I remove ‘category’ from category permalinks?I’ve got the plug-in works correctly on my problem. Try this one : Top Level Plugin. By it’s comments, there’s few issue with the pagination, meta tags and other. But i didn’t use the pagination. Please tell me if you have tried.
Forum: Fixing WordPress
In reply to: How could I remove ‘category’ from category permalinks?no,, i mean that i need to keep the %category% for the post url,, so the post link would still like this https://www.domain.com/blogs/journey-of-life/welcome/ (i used blogs category and journey of life as sub-category,,welcome is the postname)