ethicus
Forum Replies Created
Viewing 7 replies - 1 through 7 (of 7 total)
-
Forum: Fixing WordPress
In reply to: Search posts in the admin panel by dateHi t31os_,
Due to the project I only had the time to test this script today. It works perfectly. the function $arc_result can it also filter on a specific day?
Thanks so far for your help btw!
Forum: Plugins
In reply to: Moving custom Admin menu item up the listHi MichealH,
I was looking in the codex and couldn’t find the extra argument you put in the add_menu_page. What does it do exactly?
btw it does work but I was just wondering why??
Forum: Everything else WordPress
In reply to: Add Social Networking such as Lovd By Less or ElggI was looking into OpenID maybe this is a way to go around?
Forum: Everything else WordPress
In reply to: Add Social Networking such as Lovd By Less or ElggGood topic,
im also busy trying to find out how to have wordpress integrated with Elgg
who has done this one before?Forum: Themes and Templates
In reply to: display the excerpt of a recent catergory postI’m sorry i’ve put in a post that doesn’t have the more tag in it DUH!
Could you tell me what the extra code does?THIS CODE WORKS!
<?php $recent = new WP_Query("cat=5&showposts=1"); while($recent->have_posts()) : $recent->the_post();?> <h1><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h1> <?php global $more; $more = 0; ?> <?php the_content('Read More..'); ?> <?php endwhile; ?>Forum: Themes and Templates
In reply to: display the excerpt of a recent catergory postNope that wont do it neither :o(
Forum: Themes and Templates
In reply to: display the excerpt of a recent catergory post<?php $recent = new WP_Query("cat=8&showposts=1"); while($recent->have_posts()) : $recent->the_post();?> <h1><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h1> <?php global $more; $more = 0; ?> <?php the_content('Read more'); ?> <?php endwhile; ?>this don’t work…
Viewing 7 replies - 1 through 7 (of 7 total)