elc0mmen
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to get Page Id using PHPI had been looking for this for ages! Thanks valendesigns!
Forum: Fixing WordPress
In reply to: Link to parent Page?Nice!
Forum: Fixing WordPress
In reply to: Can only see tag cloud when logged inIt is a bug and if what I’ve read is true the author does not intend to repair it. If you need to restrict the users to specific categories use Category Access 0.8.2 http://www.coppit.org/code/
Forum: Fixing WordPress
In reply to: Assign categories to users?Wait a sec, I got it: use Dave Coppit’s Category Access as Michael said! In addition to selecting categories for the blog authors, you also have to select the allowed categories for “Anonymous Users” – then it works!
Forum: Fixing WordPress
In reply to: Assign categories to users?OMFG… so it is a bug! I’ve been having this problem with User-Cats-Manager since a month and thought it was MY error! Also tried Bind-User-To-Cat but as WEB11 says it just doesn’t work, the author can still see all categories!
Also tried http://www.coppit.org/code/ but seems to have the same bug: only logged in users can see the posts!
Any working plugins?
Forum: Plugins
In reply to: Retrieve specific child page with query_posts($query)Thanks A LOT! That helped! This is my solution!
<?php // $pages = get_pages('child_of='.$post->ID); foreach($pages as $page) { $content = $page->post_content; if($page->post_title=="Tutoren") { $content = apply_filters('the_content', $content); } else continue; ?> <h2><a href="<?php echo get_page_link($page->ID) ?>"><?php echo $page->post_title ?></a></h2> <div class="entry"><?php echo $content ?></div> <?php } ?>