synthspotting
Forum Replies Created
-
big hugs to elpis2000, i report too the prob is fixed!
Forum: Fixing WordPress
In reply to: Number of posts on a page — Editing the Loophey! if yer still looking for the answer (according to version 2.2.2) here it is, just replace in yer index.php
these lines
<?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?>
for
<?php $top_query = new WP_Query('showposts=4'); ?> <?php if(have_posts()) : ?> <?php while($top_query->have_posts()) : $top_query->the_post(); $first_post = $post->ID; ?>
well this work only for the 4 last posts published!
Forum: Fixing WordPress
In reply to: Beginner needs help with theme uploadhey Vanessa! it’s that easy, all your themes should be uploaded right unto
/wp-content/themes/and then it could be looking something like
/wp-content/themes/my-theme
/wp-content/themes/his-theme
/wp-content/themes/her-themeand so on!
Forum: Fixing WordPress
In reply to: inserting <img src=” ” />hey! would you elaborate cuz the question isn’t clear i think.
img thing can be easily insrted into php templates you have up your /theme folder, something like this:
<img src=”<?php bloginfo(‘stylesheet_directory’); ?>/images/icon_readers.gif” align=”absmiddle”>
and it’s even easier inserting images into your posts via admin console
Forum: Fixing WordPress
In reply to: Idiotic inventions: search have no pageswell, for index.php it can be cured by
<?php query_posts('showposts=10'); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
but for search.php this trick ain’t pulling rabbits out of hat!
Forum: Fixing WordPress
In reply to: Idiotic inventions: search have no pagesless idiotic becuz this thing is called “categories” which is to differentiate one sort of posts from another
but search goes thru all categories and might result in showing ALL posts on one single page, can’t you analyze that??
Forum: Fixing WordPress
In reply to: Idiotic inventions: search have no pagesthe limit is there to add blog readers and admin another pain in the ass. the point is that this limit ruins the easiness of navigation and the structural charm, that is why i call it ‘idiotic’ no matter how many posts i have here. i just wanted to make some sense. thanx!
Forum: Everything else WordPress
In reply to: How to remove development blog from dashboardhi! you need to open index.php file under wp-admin folder and manually delete or comment the corresponding lines (sorry, i cannot quote em right atm, cuz already got rid of that useless crap)!