| bio | website | |
|---|---|---|
| location | San Francisco | |
| age | ||
| visits | member for | 2 years, 1 month |
| seen | 4 hours ago | |
| stats | profile views | 723 |
yay
|
11h |
comment |
How to make Home Menu( Front Page) use index.php instead of page.php have you looked at the template hierarchy? |
|
11h |
comment |
wordpress taxonomy results the loop displays whatever is in the global query object. the query for a taxonomy term happens before the template is loaded, i'll guess that you're creating a new query in the template with incorrect parameters and overwriting the default. edit your question to show us the contents of your taxonomy.php file. |
|
1d |
comment |
Whats the Limit to WooCommerce for adding variations to a product? I don't know WooCommerce, but when I've experienced data "disappearing" after a save in WordPress, the culprit was php's max_input_vars being exceeded and truncating data. |
|
2d |
comment |
POST from jQuery to PHP in your theme's functions.php file or a plugin, along with the your_process_function that's hooked to the action. |
|
2d |
comment |
Front end form submission/processing, without using a template file In both of your functions, $testResult is a local variable, see variable scope in php docs. |
|
May 15 |
comment |
Insert image doesn't pickup right size what are the pixel dimensions of the original image you uploaded? |
|
May 15 |
comment |
Is there a common structure for a wordpress formular? for admin or for front end? |
|
May 15 |
comment |
List number of posts with a specific meta_key for each meta_value it looks like you're using custom fields for something that would be better suited as a taxonomy. |
|
May 14 |
comment |
My custom query not detecting the correct category why do you query for posts in category.php and not just use the default query/loop that WordPress generates automatically? |
|
May 14 |
comment |
Loop not appending through infinite-scroll ajax call have you seen this? |
|
May 14 |
comment |
Rewrite custom post type url's adding meta box values they have the same base, but their patterns are distinct. i'm certain this is solvable by adding the rules manually in the right order, I'll give it a shot later if I've got some time. |
|
May 14 |
comment |
Rewrite custom post type url's adding meta box values check out the monkeyman rewrite analyzer and look at the rules that are created by your code. you may need to juggle the order in which the rules are added via add_rewrite_rule to get the more specific rule to the top. |
|
May 14 |
comment |
User registration add user ID? when two people log in with the same username, how does the system know which is which? |
|
May 14 |
comment |
Pagination work! But title still says “Page Not Found” read this and then read this. |
|
May 13 |
comment |
Custom permalink to custom taxonomy post the pages that WordPress generates for each category. go to Posts > Categories in admin and click the "View" link under one of your categories. |
|
May 13 |
comment |
Custom permalink to custom taxonomy post it sounds like you're just describing the taxonomy term archive pages. |
|
May 13 |
comment |
Permalinks problem with custom theme if you switch to a default theme, do permalinks work as expected? |
|
May 13 |
comment |
ZIP up all images displayed in a [gallery] and offer as download link note that if you're dealing with new 3.5-style galleries, that method to retrieve images from a gallery may not work for you. |
|
May 12 |
comment |
Twitter feed is showing blank in WP site have you tried the username without the hash tag? look in your browser's javascript console for any errors. as-is this question is otherwise unanswerable and likely has nothing to do with WordPress specifically, and it's a premium theme so we can't see the code. |
|
May 12 |
comment |
How do I call a function to use on a page? @John - the function uses the global $post variable, which isn't related to the posts you are outputting in a get_posts foreach loop, that's why they all appear to be the same value- they are all pulling from the same single post. see access all post data in the codex entry for get_posts. |