Jay
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Custom fields no more, now Featured image ?Do you have custom fields enabled on post and pages? At the very top whn your logged in, you will see a tab that says “screen options” Click that and make sure custom fields are checked. In regards to the featured image, it has to be enabled in your theme. Review the codex here. Long story short, add the below to your functions.php file
add_theme_support( 'post-thumbnails' );Forum: Fixing WordPress
In reply to: I changed a URL and dont wanna loose my juice.Google is your friend. 301 direct
Forum: Fixing WordPress
In reply to: Custom fields no more, now Featured image ?Custom fields are still available, but there was a bug in the previous release. Did you recently update? If so, I do believe it will be fixed in 3.5. In the mean time, you can use the hotfix plugin. Read this
Forum: Fixing WordPress
In reply to: 2011 Theme…Header Image clicks back to home pageHi John,
Several reasons, but mainly if an update is released and you update, it will erase all of your changes.
Forum: Fixing WordPress
In reply to: Different Image Upload Directory for CPTThat is great, I look forward to seeing your solution.
Cheers!
Forum: Fixing WordPress
In reply to: Search outputting deprecated wp_specialcharsAny suggestions on how to solve this error message? I cant seem to find where it is coming from.
Ran across this same issue and found this, Hopefully it will help others out if needed.
Forum: Fixing WordPress
In reply to: WP_Query and PaginationThanks keesiemeijer, that helped me clean up some of my loops :),
Forum: Fixing WordPress
In reply to: WP_Query and PaginationTry this Just copy and paste the whole thing. Make sure you backup your original file first.
Forum: Fixing WordPress
In reply to: WP_Query and PaginationTry this as your loop
$wp_query = new WP_Query('cat=3&showposts=3&order=DESC&paged='.$paged); while ($wp_query->have_posts()): $wp_query->the_post(); // Do Stuff endwhile;Forum: Fixing WordPress
In reply to: Query questionFor future reference.
$cat_post = new WP_Query( array( 'posts_per_page' => 1, 'category__in' => array(2), 'post_type' => array( 'post', 'custom1', 'custom2', ) ));Forum: Fixing WordPress
In reply to: Query questionround 2, still same issue.
$cat_post = new WP_Query( array( 'posts_per_page' => 1, 'category__in' => array(2)) 'post_type' => array( 'post', 'custom1', 'custom2', ), );Forum: Fixing WordPress
In reply to: Query questionHere is what I got and I keep getting a syntax error. What am I missing.
` $cat_post = new WP_Query(array(
‘post_type’ => array(
‘post’,
‘custom1’,
‘custom2’,
),
‘showposts’ => ‘1’),
‘category__in’ => array(2)
);`Forum: Fixing WordPress
In reply to: Query questionFor some reason my custom post type is not showing up. I am guessing I need to put post_type in an array?
Forum: Fixing WordPress
In reply to: Query questionThank you very much alchymyth. I will give that a try.