|
Feb 15 |
answered | Creating Job Tickets |
|
Feb 14 |
comment |
Why is my 'list_terms_exclusions' filter function timing out? the only thing i can think of is if my_sc_return_secret_cats() is the culprit. i don't see anything weird that sticks out from the code you posted. |
|
Feb 13 |
comment |
Why is my 'list_terms_exclusions' filter function timing out? any errors in the log? |
|
Feb 8 |
revised |
My custom plugin did not create db tables in database improved formatting |
|
Feb 8 |
suggested | suggested edit on My custom plugin did not create db tables in database |
|
Jan 30 |
answered | Post formats “audio” and “video” only showing in index.php |
|
Jan 30 |
comment |
Post formats “audio” and “video” only showing in index.php if those are template files, you would need to associate them to a page. A page uses index.php as the default template file. |
|
Jan 25 |
revised |
Quasi-custom API Call Plugin added 11 characters in body |
|
Jan 25 |
answered | Quasi-custom API Call Plugin |
|
Jan 20 |
answered | Custom Front-end Post submission Not working :( |
|
Jan 20 |
answered | How do I set user account inactive? |
|
Jan 19 |
answered | Custom post type and have_posts() return empty result |
|
Jan 18 |
comment |
Why does my site flash white every time it changes page? YSLow indicate there are several things you can do to speed up your site: addons.mozilla.org/en-US/firefox/addon/yslow |
|
Jan 15 |
comment |
How do I create a WP user outside of Wordpress and auto login? @baritoneuk - It makes sense. In general, you would want a single authoritative source for your users. If you're choosing WP then the non-WP site would need to authenticate against the WP DB. If your authoritative source is the non-WP site the you would need to do what I described in my answer. either way, you're by passing the login mechanism in one of the sites. |
|
Jan 13 |
comment |
Why does my site flash white every time it changes page? from my experience the first things to look at are plugins. try to disable all plugins and enable them one-by-one to see if you can spot one that slows down your page load. |
|
Jan 13 |
comment |
Creating new templates in child themes breaks layout it looks like the parent css is not being carried over to your child theme. Are you by chance not referencing the parent template in your child template? |
|
Jan 13 |
answered | Why does my site flash white every time it changes page? |
|
Jan 13 |
answered | How do I create a WP user outside of Wordpress and auto login? |
|
Jan 11 |
comment |
Change All Login/Signup Links in Plugin Are you thinking of something similar to OpenID? openid.net where credentials are kept external from your site? |
|
Jan 10 |
comment |
Most efficient way to get posts with postmeta I'm not sure if you even want to do the joins. the combination of get_posts() and get_post_meta() gives you the same data back. In fact, it's less efficient using the joins since you might be retrieving data you won't use later. |