GRAQ
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Whole list of Tags in databaseWhat do you see if you go to the admin screen and click on Posts menu?
The submenu underneath should expand into ‘Posts’, ‘Add new’, ‘Categories’ and ‘Post tags’. Click on the ‘post tags’.
Forum: Everything else WordPress
In reply to: Display a message to 100,000th userWithout wanting to come across too rude to you, my advice would be: just don’t do it.
Forum: Hacks
In reply to: $wpdb->updateTry popping the clause in a variable first?
$where = "WHERE f_name = {$insert_member_data['f_name']} AND l_name = {$insert_member_data['l_name']}'" $wpdb->update('wp_network_members', $insert_member_data, $where);Forum: Hacks
In reply to: Using the WP get_option() functionUsually (for theme development) your functions are put in functions.php – that is what it is there for.
Forum: Hacks
In reply to: show latest post from multiple categoriesIs it that category 11 has the 9 most recent posts?
Comparing it to the codex, at first glance it looks correct:
http://codex.wordpress.org/Function_Reference/WP_Query#Category_ParametersForum: Fixing WordPress
In reply to: WordPress Discussion TabHave they been switched off? In the top right is a tab labelled ‘Screen Options’ where you can toggle on and off the various meta boxes.
Forum: Fixing WordPress
In reply to: hostname, username, passwordYou could possibly try ‘localhost’ and the same username and password you logged in with. But that is a wild, wild guess.
If WP was set up the way you are implying, and you need FTP details, then that is more of a host issue than a WordPress issue.
Forum: Networking WordPress
In reply to: Issue with Nginx WPMultiSiteThere is a good post to read here:
http://wordpress.org/support/topic/nginx-php-fpm-php-apc-wordpress-multisite-subdirectory-wp-super-cacheIf you’re not feeling overwhelmed by it all.
Nice write up bigsite.
I have a little mixture of questions:
1. What is the importance of adding a trailing slash to wp-admin requests?
2. What is the relationship betweenrewrite /files/$ /index.php last;
andrewrite /files/(.+)$ /wp-includes/ms-files.php?file=$1 last;
3. I use justrewrite ^.*/files/(.*) /wp-includes/ms-files.php?file=$1;
Is that better/worse/same?There is no mention of fastcgi-caching in your configs, which possibly a reason why you are not seeing as much of a performance hike as you were hoping for, as it can be comparable to supercache.
Forum: Networking WordPress
In reply to: Issue with Nginx WPMultiSiteJust briefly, for handling media files, change
rewrite ^.*/files/(.*) /wp-content/blogs.php?file=$1;to
rewrite ^.*/files/(.*) /wp-includes/ms-files.php?file=$1;This is a change in file structure that came with WP3.0
Forum: Developing with WordPress
In reply to: meaning of posts_selection in add_actionGlad to help. Don’t forget to mark the topic resolved 🙂
Forum: Hacks
In reply to: Can a plugin add code to a known sidebar id registered by a theme?*snip*
Scrap that, I misread your question!Forum: Everything else WordPress
In reply to: How to Learn All the WordPress Functions?Glad to help.
You should mark the topic resolved 🙂
Forum: Fixing WordPress
In reply to: members profileStandard WordPress functionality is that you can go to http://www.example.com/author/user-name and it will pull up the author details.
How much detail is in there depends on your theme and such.
Forum: Developing with WordPress
In reply to: meaning of posts_selection in add_actionWhenever do_action() is called, all the add_action()s get invoked.
Imagine that you want to do X when Y happens. The core team have in their function the line
do_action('y_has_happened', $with_this_data);You can write in your theme or plugin:
add_action('y_has_happened', 'my_function_when_y_happens'); function my_function_when_y_happens($happened_with_this_data){ // Do X (with the data). }Hence them being ‘hooks’ they are points that allow theme/plugin writers to hook into that point.