bmil21
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Custom post types broken after upgrading to WP 3.1To be more specific:
On some custom posts I only see the options “View” and “Purge from Page Cache,” and on others, the custom posts won’t even show up even though there are custom posts shown as “published” under the “Custom Post Types” tab on the left.
I attempted to solve this issue by deleting the custom post type and then re-entering the same information, deactivating and reactivating plugin, visiting the permalinks section and saving, and upgrading both the plugin and wordpress itself.
Please let me know if a solution is readily available.
Forum: Fixing WordPress
In reply to: Custom post types broken after upgrading to WP 3.1I’m having the same issue and concerns as well. I hope there is a way for this to be fixed thru the custom post type ui.
Actually, can I change the link for wp_tag_cloud?
Here’s a portion of my code:
<?php wp_tag_cloud( array( 'taxonomy' => 'Headings', 'unit' => 'px', 'smallest' => '12', 'link' => 'edit' ) ); ?>My links display correctly but the destination is empty ‘href=”‘” when I want to change it to something else.
Am I able to edit the wp_tag_cloud function so that I can have the destination be what I want?
When I use that function, it displays simply “array” on the page.
Can that be used?
I am also very interested in a way to use
get_the_post_image()orget_the_post_thumbnail()or something similar for a secondary thumbnail.Forum: Fixing WordPress
In reply to: Register Post Type, AttributesIs there a way to set a custom post type’s parent as a static page that has already been created. Maybe have some sort of code that enables the regular static page ‘Parents’ to show up as they do in the pages admin section.
If further explaining is needed, feel free to ask.
Thanks for any help.
Forum: Plugins
In reply to: [Plugin: Custom Post Type UI] 404 error – permalink not workI’m having the same problem where I cannot access the post but get a 404 page instead. I have tried saving my permalinks and inserting
flush_rewrite_rules();in various recommended locations, but I am not able to solve the issue.I am using the Carrington JAM framework and the Custom Post Type UI. If someone can provide me with example of the code that fixes this issue or if someone has an idea of how to fix the issue, I would greatly appreciate it.
Forum: Fixing WordPress
In reply to: Page Parent and Children – specific sidebarActually by adding the code below above the if statement, I was able to achieve the desired affect.
global $post;I am using the Carrington JAM framework and this bit of code helps. Apparently, I need to remember the Variable Scope http://carringtontheme.com/2009/06/remember-variable-scope/
Forum: Alpha/Beta/RC
In reply to: Get post thumbnail/ featured image to show up for custom post types?You need to add this bit of code to the functions.php file so that the featured image will show up in the admin…
add_theme_support('post-thumbnails');Forum: Fixing WordPress
In reply to: Page Parent and Children – specific sidebarActually, I believe more of the problem is that the sidebar does not show up when a user is on one of the Child Pages. The code works when on the parent page (71), but disappears on the child pages. The primary issue may be with this code below.
<?php if (is_page('71') || $post->post_parent == '71' ) {?>Thanks,
BrandonForum: Fixing WordPress
In reply to: Selective Parameters for wp_list_pagesOk, I’ll give that a try.
Thanks!