977 reputation
216
bio website rainrain.com
location
age
visits member for 2 years
seen 8 hours ago
stats profile views 43

Feb
12
accepted How do I remove a pre-exising customizer setting?
Dec
17
accepted Make Next and Previous on single-$posttype.php use the same order as archive-$posttype.php
Nov
28
comment Make Next and Previous on single-$posttype.php use the same order as archive-$posttype.php
Actually played around with it for a while and though I still don't really know much about it, I have a lot better idea than I did an hour ago. I wonder if you have time to just give me a bare bones an example of how such a filter might work. I'm sure I could work out details themselves but I don't know where to put it or how to get it actually operating in any way at all .. I read this post wordpress.org/support/topic/… which seems to be in the same general area but he is talking about editing core files and anyway I tried it but it gave no effect.
Nov
28
comment Make Next and Previous on single-$posttype.php use the same order as archive-$posttype.php
Thanks. I am surprised there's not some simple solution like a function for it or something. I would have thought that it would be in common use. Thanks for pointing me in the right direction anyway, but I doubt if I'd be able to work it out from the source code; mainly because I wouldn't know where to start, and I dont get the idea ... so if you do have any more information on it in the future I'd appreciate if you posted it here when you eventually do have time. For now I think I'll leave the next and previous events out of my theme unless someone else posts here as they're not vital.
Nov
28
asked Make Next and Previous on single-$posttype.php use the same order as archive-$posttype.php
Nov
27
accepted How do I use a color from theme options?
Nov
27
comment How do I use a color from theme options?
Thanks Chip, that's a fine comprehensive answer which I guess will be of benefit to others in the future as well as me now ... a veritable mini tutorial even !
Nov
27
comment How do I use a color from theme options?
Thanks, I was thinking about the customizer too but am I wrong in thinking that to use the customizer I would first have to have it working the traditional way via the theme options. I have a few customizer settings and that's how I've done them ( ie implement a regular theme option and then get it working in the customizer )
Nov
26
asked How do I use a color from theme options?
Nov
2
revised How to set a default format for a custom post type?
Seems it should have said via Dashboard -> Settings - Writing
Nov
2
suggested suggested edit on How to set a default format for a custom post type?
Sep
3
comment Developing plugin, where to place action hooks etc?
Not sure I understand. Where you put the callbacks and add_shortcode calls is not really that relevant, as long as they're all included. Eg you can put them anywhere you like in your functions.php file, or in a plugin file, or in a file that's included by one of these files ... and the order is not relevant, unless I'm mistaken ... so you can still put them all in one place without putting the add_shortcode calls in an init
Aug
29
answered Developing plugin, where to place action hooks etc?
Aug
29
answered Recovering a wordpress blog that got corrupted
Aug
24
comment How do I remove a pre-exising customizer setting?
That looks better than my solution so I will give you the tick - I haven't tested it but I suppose you have ... I don't get the title_tagline though - surely it should say static_front_page, is that a typo BAC?
Aug
21
revised WordPress add options to theme not displaying
deleted 27 characters in body
Aug
21
answered WordPress add options to theme not displaying
Aug
18
accepted Is it necessary to reset the query after using get_posts()?
Aug
18
comment How can I prevent posts with no title showing up in my query?
Thanks. I'm sure that would work, though I was trying to avoid querying directly ... based on your original idea I was able to get it working something like this ... thanks .... $a_empty_titles = array(); $args = array( 'post_status' => 'publish' ); $fp_posts = get_posts( $args ); foreach( $fp_posts as $post ) if ( ! $post->post_title ) array_push($a_empty_titles,$post->ID); $args = array( 'post__not_in' => $a_empty_titles );
Aug
17
asked Is it necessary to reset the query after using get_posts()?