GradyD
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: get first post of child category in custom taxonomyCan anyone help me with this?
Forum: Fixing WordPress
In reply to: remove custom taxonomy from URL with rewriteBumping this again
Forum: Fixing WordPress
In reply to: remove custom taxonomy from URL with rewriteCan anyone help me?
Forum: Fixing WordPress
In reply to: Multiple meta data inputs under one labelThis guide is where I found my answer, https://wptheming.com/2010/08/custom-metabox-for-post-type/
Forum: Fixing WordPress
In reply to: Multiple meta data inputs under one labelbumping this… I have not figured this out or gotten any closer.
Forum: Fixing WordPress
In reply to: Get child categories of custom taxonomyI was able to fix my issue. My cod is as follows,
$args = array( 'hide_empty' => 0, 'orderby' => 'id', 'show_count' => 0, 'use_desc_for_title' => 0, 'child_of' => $category ); $terms = get_terms( 'appCategory', $args ); if ( !empty( $terms ) && !is_wp_error( $terms ) ) { foreach ( $terms as $term ) { echo '<p>' . $term->name , '</p>'; echo get_term_link($term); }
Forum: Fixing WordPress
In reply to: WP_Query custom taxonomy by category IDHaha!! That did it! Just when I get it working I see you posted an answer. Thank you, again ??
Forum: Fixing WordPress
In reply to: Widget dropdown always displays first optionThat did it!! Changing the ‘C’ to a lowercase ‘c’ fixed the issue. Thank you!
Forum: Fixing WordPress
In reply to: Widget dropdown always displays first optionSadly I was not able to get it working using your code.
Forum: Fixing WordPress
In reply to: Hide static_front_page from customize optionsAwww snap! That did it. Thank you!
Forum: Fixing WordPress
In reply to: Hide static_front_page from customize optionsI read the codex and also googled around for that method but for some reason it does not want to work. I think this is because I am not running a custom customizer. Thanks
Forum: Fixing WordPress
In reply to: Why does this display 10 items instead of five?Endlyss,
Yes that is my partner in crime. I normally do all the html/css and he does the PHP but this had us both scratching our heads. He also was away so I took matters into my own hand.
Thanks for helping both of us!
Forum: Fixing WordPress
In reply to: Theme applied on the home page but not on postsIf you upload and replace it could correct the issue.
Forum: Fixing WordPress
In reply to: Theme applied on the home page but not on postsCan you please tell me what edits you did make?
Forum: Fixing WordPress
In reply to: How can i have different the_permalink for 2 divs of the same pageI do not think this is possible using the current Facebook API. You could use two different pages/posts and keep them totally isolated. The facebook API does not allow you to specific posts, https://developers.facebook.com/docs/public_feed/