mr_nase
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 1.5: Warnings on wp-admin/page-new.php when permalink turned onIt’s working fine with PHP 4.3.10..
Nevertheless I would like to see this one fixed. As this is just a warning it shouldn’t be a big problem 🙂
Forum: Fixing WordPress
In reply to: can this be done, only one article imageYeah, but that’s a bit too much 🙂
I figured out, how I can do it.
I changed the function the_meta() tofunction the_meta() {
global $id, $post_meta_cache;
if ($keys = get_post_custom_keys()) {
foreach ($keys as $key) {
$values = array_map(‘trim’,$post_meta_cache[$id][$key]);
$value = implode($values,’, ‘);
return $value;
}
}
}Now I can echo that image in the template with
<img src=”<?php echo the_meta(‘image’); ?>” />
and that works.
Now I just need a hack which allows me to upload pictures directly from the ‘Write’ page 🙂Forum: Requests and Feedback
In reply to: hacks are hard to findThat doesn’t solve the actual problem 🙂
Forum: Fixing WordPress
In reply to: Problems with the calendarhm, now the archive isn’t working properly anymore 🙁
See it @ http://www.mrnase.de 🙂Forum: Themes and Templates
In reply to: wp css resource/templates?thnks allusion 🙂
Forum: Themes and Templates
In reply to: WordPress CSS Style Competition! (ends Feb 6th)Ok, to be sure i’ll contact the other. Luckily i’ve found a note in the css file. 🙂
Forum: Themes and Templates
In reply to: WordPress CSS Style Competition! (ends Feb 6th)May we use that css code? Or can you tell me who made ‘Human Condition’? I’d really like to ask the author wether i may use his/her template 🙂
Forum: Fixing WordPress
In reply to: Problems with the calendarthat did the trick, thank you 🙂
Forum: Plugins
In reply to: Breadcrumb Hack for 1.01nice, i’ll use that.
dankeschön 😉
grüße aus dtland.