| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 1 year, 11 months |
| seen | Nov 30 '12 at 17:07 | |
| stats | profile views | 11 |
Media Developer since 1990, working with web, print, audio, video, and music.
|
Jan 5 |
comment |
I am looking for a specialist WordPress host cPanel hosts that have Fantastico have an easy way to install Wordpress. From inside the control panel, you click Fantastico, select Wordpress, hit install, and enter the admin and site details. It automatically installs the database and sets up the configuration for you. It might help if you go with a cPanel host. |
|
Jan 5 |
asked | Setting post_id for single.php based on URL without a redirect |
|
Jan 5 |
answered | I am looking for a specialist WordPress host |
|
Jan 5 |
awarded | Teacher |
|
Jan 5 |
answered | remove permalink trailing slash |
|
Dec 24 |
comment |
Gathering all Custom Post Type posts in to array/object the proper way I didn't like how wasteful using get_posts was, so I did just that, used a WP query. I thought there might be a function out there to wrap this, but I used the following: $names = $wpdb->get_results("SELECT ID,post_title FROM {$wpdb->prefix}posts WHERE post_status='publish' and post_type='country-zones' ORDER BY post_title;",ARRAY_N); |
|
Dec 24 |
comment |
Gathering all Custom Post Type posts in to array/object the proper way My brain is jello. It's simply: $array = get_posts(array('post_type' => 'custom_post_type_here')); |
|
Dec 24 |
revised |
Gathering all Custom Post Type posts in to array/object the proper way added 15 characters in body |
|
Dec 24 |
comment |
Gathering all Custom Post Type posts in to array/object the proper way Thanks, but not what I'm asking about. I'm looking for a function that will return individual posts as a row in an array, not the post types. |
|
Dec 24 |
asked | Gathering all Custom Post Type posts in to array/object the proper way |
|
Nov 7 |
awarded | Commentator |
|
Nov 7 |
comment |
Add Meta Box not showing on New Post - Custom meta box not showing Yup, that's it. I think I figured this out before, but it always throws me for a loop. Spot on, thanks. |
|
Nov 7 |
accepted | Add Meta Box not showing on New Post - Custom meta box not showing |
|
Nov 7 |
comment |
Add Meta Box not showing on New Post - Custom meta box not showing Sorry, that doesn't work at all from what I'm seeing. After trying this, the meta box disappeared entirely. |
|
Nov 7 |
asked | Add Meta Box not showing on New Post - Custom meta box not showing |
|
Oct 7 |
accepted | Create New Admin Menu Section - Like how custom post type works, in a way |
|
Oct 7 |
comment |
Create New Admin Menu Section - Like how custom post type works, in a way I just found the functions a bit ago and was trying to get them to work, but they weren't showing because the role I selected isn't formatted correctly. I wish the Codex would spell out what it expect sometimes! Thanks! |
|
Oct 7 |
asked | Create New Admin Menu Section - Like how custom post type works, in a way |
|
Jul 23 |
awarded | Scholar |
|
Jul 23 |
comment |
Plugin Development: Wordpress processes twice on post update. How to skip process on the first? Thanks, that is exactly it. This works perfectly, and appears to use everything within the WP framework. |