wp_guy
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Display more than 45 tags?Actually wp_tag_cloud(“number=0”) does the trick
Forum: Themes and Templates
In reply to: Error in modify themeCan you paste the contents of your header.php file here?
Forum: Fixing WordPress
In reply to: Update blog via email from phone?I’ve never done it, but as it says there… “Any images and attachments in your email will be posted inline. Note that image attachments are broken in WordPress 2.5. A fix is expected in 2.6.”
And here is another forum topic on the matter: https://www.ads-software.com/support/topic/125521?replies=8
Forum: Fixing WordPress
In reply to: Update blog via email from phone?Yes, you can. More info here: https://codex.www.ads-software.com/Blog_by_Email
Forum: Themes and Templates
In reply to: integrating $_GET into search.phpIt should be:
<?php _e('I\'m sorry, the query '.$_GET["s"].' could not be found'); ?>
And I don’t think the _e function will work like that, but if your site is in english, then it shouldn’t matter.
Forum: Themes and Templates
In reply to: Different layout for some pagesYou can do something like:
<?php include (TEMPLATEPATH . '/header2.php'); ?>
More info: Including Any Template
Forum: Fixing WordPress
In reply to: CategoriesIt’s wp_terms, wp_term_relationships and wp_term_taxonomy (along with tags)
Forum: Fixing WordPress
In reply to: Reverting back to old DatabaseI guess the easiest would be to upload WordPress to your server (no need to delete WordPress MU), edit the config file to load your database… and then exporting.
Then I suppose you can import that export file into WordPress MU easily.
Forum: Plugins
In reply to: limit number of pages shown from of wp_list_pages, and a read more linkDon’t know if there is a plugin for that but, you could do that by getting the pages, converting that to an array and then echo the first 5:
<?php $howmany = 5; $pages = wp_list_pages("echo=0&title_li="); $pages_arr = explode("\n", $pages); for($i=0;$i<$howmany;$i++){ echo $pages_arr[$i]; } ?>
Then put a link to a page that lists them all… kinda like:
<li><a href="url.to/page">More...</a></li>
Hope that helps
Forum: Themes and Templates
In reply to: Listing latest postsI think you can get the regular loop to work fine if you add this line in between the two loops:
<?php query_posts($query_string); ?>
That sort of resets the whole thing ??
Forum: Fixing WordPress
In reply to: “Previous Page” / “Next Page” change…Well… basically, you just need to upload and activate the plugin, then replace the navigation links on your theme, which might look something like:
<?php next_posts_link('« Older Entries') ?> <?php previous_posts_link('Newer Entries »') ?>
and replace them for this line:
<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?>
It’s explained here:
Forum: Plugins
In reply to: Category OrderIf I may toot my own horn… I released this plugin which does exactly that, via easy drag and drop:
https://www.ads-software.com/extend/plugins/order-categories/
Forum: Fixing WordPress
In reply to: Photo’s do show up in main page, not in messageThat’s because you specified a relative path to your images… You should add a slash “/” at the beginning of the image path.
This:
img/080512-solange-ochtrup-1.jpg
Should be this:
/img/080512-solange-ochtrup-1.jpg
Forum: Fixing WordPress
In reply to: “Previous Page” / “Next Page” change…Check out this plugin:
Forum: Fixing WordPress
In reply to: All posts now the same post? ! see code please…Try adding this after your first loop and before the second:
<?php query_posts($querystring); ?>