Anneka
Forum Replies Created
-
Forum: Plugins
In reply to: [WoW Armory Character] This plugin stopped workingtry regions in lower case. This fix is hardcoding the path which is why it isnt populating dropdown menus as I understand. Until plugin author fixes as he says it’ll be like this.
Forum: Plugins
In reply to: [WoW Armory Character] This plugin stopped workingDid you get it to work?
Forum: Themes and Templates
In reply to: Can someone help me understand thisWant to add that, after reading WP time output codex I put this like this
esc_html( get_the_date( 'd,M,Y' ) ),and this displayed as I wanted date, shortened month, full year. (8, Sep, 2014) but I can’t figure out how to style them individually.
Could someone give me an idea?
Forum: Reviews
In reply to: [Add Multiple Users for WordPress] Crashed WordPressWhen a plug-in causes problem and locks you out easiest way to resolve is access file system with FTP client and rename or delete the plugin folder and it stops functioning.
is this woogang legit or they are ripping off the woothemes
Forum: Fixing WordPress
In reply to: is it possible to show nav for excerpts custom wp_query?Update: after a bloody fight I added manually, even though function is supposed to retreive the query name and do this in function shown aboe, it doesn’t.
next_posts_link( '« Older articles', $my_query->max_num_pages, mytheme )and removed translation brackets __( ) and it works.
as soon as I put in __( ) brackets it stops displaying links at all.
Why would translation blocks break the code??
Forum: Fixing WordPress
In reply to: How to pass multiple $variables to new WP_Query() static front page?This code works for exclusion but it ignores
posts_per_page=>
very weird.<?php $exclude = get_cat_ID('featured'); $args = array( 'post-type' => 'post', 'posts_per_page' => 3, 'category__not_in' => $exclude ); $non_featured = new WP_Query ( $args ); ?>Forum: Fixing WordPress
In reply to: How to pass multiple $variables to new WP_Query() static front page?thanks for reply, i am going to try this. although I achieved result with this
<?php // all but Featured Posts $featured_args = array( 'post_type' => 'post', 'tax_query' => array ( array( 'taxonomy' => 'category', 'field' => 'slug', 'terms' => 'featured', 'operator' => 'NOT IN' ) ), 'post_status' => 'publish', ); $non_featured = new WP_Query ( $featured_args ); ?>Forum: Fixing WordPress
In reply to: How to pass multiple $variables to new WP_Query() static front page?To clarify:
1. I am retrieving “featured” category ID and assigning it to a variable.
$exclude = get_cat_ID('featured');2. Then excluding that category variable.
`$nonfeat = ‘cat=-‘.$exclude;
`
3. Separately these variables work when I put in new WP_Query($here) but cant make both work together.May be I am lacking proper syntax?
I’d like to integrate that exclusion variable into $args variable since new WP_Query() doesn’t seem to accept more then one variable.
And this is where I am stuck. I know I could exclude category by its ID but I need it to be by name.Any help appreciated. TY.
Forum: Fixing WordPress
In reply to: WordPress 3.9 has built in drop-down menu?Yes after hordes of bare-bone themes I settled on underscore _s.
My fav. Nested template part reducing unneeded requests.I am going to look more deeply because I don’t see any part of code that does show / hide on dropdown ULs.
Forum: Fixing WordPress
In reply to: Exclude Category by name, underscore _sThanks for your reply, I had similar code except I have one more connecting variable in between. It didn’t work the first time, but I tried same code second time but renamed the second variable and it worked. I don’t know but possible that php was getting confused by $exclude and $exc ?
working code is like this:
$args = array( 'post-type' => 'post' ); $exclude = get_cat_ID('featured'); $nonfeat = 'cat=-'.$exclude; $non_featured = new WP_Query ( $nonfeat, $args);Forum: Plugins
In reply to: [NextGEN Public Uploader] Where do you approve imagesThe setting in controls
Forum: Themes and Templates
In reply to: How does this reference work? 'twentytwelve'ty
Forum: Themes and Templates
In reply to: Naked Theme, simpleThank you very much. Looks like exactly what I am looking for. How did I miss them.
Forum: Themes and Templates
In reply to: How to Add icon to a specific category postsThank you for the reply, appreciate it! also ty for the link