Maiskolben
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: hide miniposts from articles-listingHey thank you!
Forum: Fixing WordPress
In reply to: get_post_custom_keys($post->ID);Thx esmi! This is exactly what I’m searching for!
Forum: Fixing WordPress
In reply to: takes 1 to 12 hours to see changes on sitewhat did your hoster said about this problem? I guess there’s something with the cache.
Forum: Fixing WordPress
In reply to: get_post_custom_keys($post->ID);Hey esmi,
this isn’t work for me. get_post_custom_keys($post->ID) gives (in the german version of wp) back when custom fields comes with a post:
Array ( [0] => customfield1 [1] => customfield2 [2] => _edit_lock [3] => _edit_last [4] => _mini_post [5] => customfield3 [6] => customfield4 )
Even if there no customfield(s), key 2-4 appear. And sometimes (in some articles) _mini_post is missing (for whatever it stands for), and the indexes of the array output in unordered way. This is the reason why the code from my first post isn’t functioning. What is this for a _mini_post? ^^
Hope anybody can help me with this…
Maiskolben
Forum: Fixing WordPress
In reply to: index.php vs. example.phpOk, thank you a lot!
I see, that there’s no way to get these plugin running for 2.9.2. And it’s ok! I will look up for another good plugin for embed music to my pages…Forum: Fixing WordPress
In reply to: index.php vs. example.phpYes, it makes sense! But when code comes with the plugin and a plugin calls a playlist.php, a flashplayerplugin cannot load its generated xml-list. And I know another site that allows the direct typing to this playlist.php url… hmm, maybe the plugin isn’t functioning under WP 2.9.2 then…
Forum: Fixing WordPress
In reply to: Can’t hide pagesForum: Fixing WordPress
In reply to: Calling pages instead of postscool, but you could use the “exclude-pages” plugin? it seems to be much easier to me… Works with the latest version (2.9.2.).
Forum: Fixing WordPress
In reply to: New Postssure, you can call your function like that, the functions.php is already included by the header.. I tried to figure out what’s going on with that newsalertdiv thing you would like to have, but like SS_Minnow said, it takes too much time for gettin this worked.. And I’m not a php crack.
Forum: Fixing WordPress
In reply to: Using Get Recent Comments widget twice@ss_minnow: Cool! ^^ thanks for that link!
Forum: Fixing WordPress
In reply to: Using Get Recent Comments widget twiceI guess something like that, it’s not tested…
<?php if (is_home() || function_exists('get_recent_comments')) { ?> <h2><?php _e('Recent Comments:'); ?></h2> <p><?php get_recent_comments(); ?></p> <?php } ?>
Forum: Fixing WordPress
In reply to: Using Get Recent Comments widget twiceyes, you’re right! And viá cascading stylesheets you can post hardcoded stuff within your sidebar but under the dynamic area, and make it looks like the sidebar as well…
Forum: Fixing WordPress
In reply to: New Postsin your ftp client with root access, then the path where do you uploaded your wp. -> root/wp-content/themes/THEMENAME/
Forum: Fixing WordPress
In reply to: Need Help Uploading HeaderIf you want to declare a dynamic header for every post you want, you can use the plugin “dynamic-header”. Works with the latest version 2.9.2. I’m using it, and it’s the best plugin for manipulate the header!
Forum: Fixing WordPress
In reply to: Using Get Recent Comments widget twiceEven post it to another question, maybe you can handle it with (post this anywhere out of your sidebar):
<?php if (function_exists('get_recent_comments')) { ?> <h2><?php _e('Recent Comments:'); ?></h2> <p><?php get_recent_comments(); ?></p> <?php } ?>
It’s a bit tricky, but not impossible I think…