Eric Marden
Forum Replies Created
-
Forum: Plugins
In reply to: [Epic Post Type] [Plugin: Epic Post Type] Plugin BuggedI didn’t realize that all 3 plugins needed to be on the same version number, so I’ve just pushed in an update that synchronizes them all to v0.7.
The plugin does not add anything in the admin, and there is no User Interface. They are libraries for quickly building out Custom Post Types, Taxonomies and Meta Boxes. We’re a WP Dev Shop and are currently using this library on a few of our sites (some with dozens of custom post types).
We’ll put out some documentation soon, but wanted to establish the plugin on WP.org.
I hope the author fixes this in the next release.
Forum: Fixing WordPress
In reply to: Manual upgrade to 3.0.4 failed, problems with wp-content folderecho out WP_CONTENT_DIR to debug. Your path to the wp-content folder is likely faulty.
Forum: Plugins
In reply to: [Plugin: WP Post Footer] this plugin does not workingIf you can, try upgrading WordPress to 2.9 or higher. Testing of 2.8 has been sparse, and I may need to do more testing of that version.
Forum: Plugins
In reply to: Including pluggable.phpYou should not include any core files into your plugins. You don’t need to. If you are creating a plugin or adding code to your theme’s functions.php, which are the only two ways to correctly add custom php functions to WordPress, then you will indeed already have access to all of WordPress’s functions.
The pluggable functions are meant to be re-defined by your code, which is the reason they are wrapped in function_exists statements.
Forum: Plugins
In reply to: [Plugin: XEN Carousel] Trying to show multiple images…I am planning on re-architecting this plugin soon to take advantage of new features in WordPress 3.0 and will include the ability to change the settings. You might want to copy the contents of xencarousel.js into xencarousel.min.js and then edit it. Minified code is a bit trickier to edit by hand.
Forum: Plugins
In reply to: [Plugin: WP Post Footer] this plugin does not workingv1.1 was released today.
Forum: Plugins
In reply to: [Plugin: WP Post Footer] this plugin does not workingUpgrade to v1.1 to fix. Be sure to review the read me for inserting the output into your theme.
Forum: Requests and Feedback
In reply to: New Default WordPress Theme?I vote for K2: getk2.com
Forum: Fixing WordPress
In reply to: Customizing Single.php as a template for no commentspage templates only work for pages and not posts.
Forum: Plugins
In reply to: [Plugin: K2 Hook Up] Inclusion of PHP codeDaniel, you will need to add the hooks manually to your new theme. They would look something like this
<?php do_action('template_*'); ?>template_* should be replaced with the real hook names, and placed where you think they fit best:
template_body_top
template_before_header
template_header
template_header_menu
template_primary_begin
template_primary_end
template_before_content
template_after_content
template_entry_head
template_entry_foot
template_before_footer
template_footerHope this helps,
-e
Forum: Plugins
In reply to: Attach (not embed) images to postYou could do this as a custom plugin… add a metabox that includes a drop down list of images (from the media-library, or tied to a folder on disc) and associate them that way. The plugin would just have to save the path or attachment ID in the post_meta, which you can query and pull into your templates.
Forum: Plugins
In reply to: [Plugin: K2 Hook Up] Inclusion of PHP codeCheck out my new plugin and see if this doesn’t fit the bill: http://xentek.net/code/wordpress/plugins/in-the-loop/
Thanks!
-e
Forum: Plugins
In reply to: [Plugin: K2 Hook Up] Inclusion of PHP codeYou know, I can create a plugin that allows you to do this. I hesitate to add this to K2 Hook Up, since where I’d hook into WP would be coming from core, and users of other themes may find this new plugin useful.
Let me see what I can whip up today.
– Eric
Forum: Plugins
In reply to: [Plugin: K2 Hook Up] Inclusion of PHP codeCheck the K2 wiki for where the hooks are placed: http://code.google.com/p/kaytwo/wiki/K2CSSandCustomCSS
As far as I know there aren’t any inside The Loop.
Do you need one somewhere near the content of a post?
-e