nakedape
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Edit pages screen – add ‘Template’ columns?Fantastic, thanks Michael, perfect solution.
Forum: Fixing WordPress
In reply to: Is this a WordPress exploit error or GoDaddy’s fault?Did you ever resolve this? I am also having the problem with this script on my WordPress site as well. (I haven’t updated WP for a while, so I know I’m largely to blame… no need to rub it in people!)
I haven’t tracked down the location of the script yet, but it was found by unmaskparasites. Where abouts was it located for you?
Cheers,
John
Forum: Fixing WordPress
In reply to: show 3 most recent posts under static home page (2.2)Try something along these lines (X need to be changed to your desired category id and number of posts):
<?php $posts = get_posts( "category=X&numberposts=X" ); ?> <?php if( $posts ) : ?> <?php foreach( $posts as $post ) : setup_postdata( $post ); ?> <div class="post"> <h3><a href="<?php echo get_permalink($post->ID); ?>" ><?php echo $post->post_title; ?></a></h3> <?php the_excerpt(); ?>" rel="bookmark">read more »</a> </div> <?php endforeach; ?> <?php endif; ?>
Edit: If you want to display the entire post, not just the excerpt, then use the_content (https://codex.www.ads-software.com/Template_Tags/the_content).
Forum: Fixing WordPress
In reply to: Can I password protect a page with a custom template?I have the same problem.. I’m pulling in excerpts from several categories to a custom page template, and password-protecting the page does nothing.
If you resolve this issue, could you please give some notes on how?
Thanks Shawndh,
– John
Forum: Installing WordPress
In reply to: Drop-down menus and querying other databasesYou’ve been very patient, gubanichplague.
Forum: Plugins
In reply to: eventcalendar3 – multiple (different) event lists?bump..
anyone?Forum: Plugins
In reply to: categorised upcoming eventsbump… does noone have any clever ideas?
Forum: Fixing WordPress
In reply to: Password Protect A Single PageI want a plugin that will result in a JavaScript password-prompt box showing up when someone navigates to this specific page.
did you ever find one?
I would like to know about it.
??
Forum: Fixing WordPress
In reply to: most recent uploadsProgress update:
I’m using Organizer to manage file uploads, and wdn-directory-list to create a styled list of all docs in a specified directory.
Now I just need to find a way to only pull the 5 most recently modified files.
Anyone have any ideas? Keep in mind that I’m somewhat of a php novice.
Thanks,
John
Forum: Plugins
In reply to: categorised upcoming eventsbump
Forum: Fixing WordPress
In reply to: Limit fetch_rss to only 5 headlines?Thanks for that snippet of example code, Otto.
Forum: Plugins
In reply to: Batch categorizesorry, resolved: https://robm.me.uk/projects/plugins/wordpress/batch-categories
great plugin.
Forum: Plugins
In reply to: Batch categorizeAny progress on this?
Would be great to be able to batch categorise!
cheers,
— john
Forum: Plugins
In reply to: Tell A Friend Plugin for Website NOT for PostsThanks guys, will check them out.
Forum: Plugins
In reply to: Tell A Friend Plugin for Website NOT for Postseligorin, did you ever resolve this issue?
useful input, denis … ?