dancingpony
Forum Replies Created
-
Forum: Plugins
In reply to: [Theme My Login] Form won't submit on Profile pageLooks like the nonce field I had to use was:
<?php wp_nonce_field( 'update-user_' . $current_user->ID ); ?>This was from the profile-form.php file, must be checking for that nonce in particular when the page reloads with a POST request.
Forum: Plugins
In reply to: update_user_meta() not working in 'Page'I believe this has something to do with the Theme My Login plugin – so taking the question over there.
https://wordpress.org/support/topic/form-wont-submit-on-profile-page?replies=1
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Only call CSS on ai1ec pagesHi Benjamin,
Thanks for your reply.
Normally I’m a little hesitant to mask one plugin using another, simply because I’m trying to cut down on heavy plugins. However the ‘Plugin Organizer’ seems to of done the job relatively easily.
Thanks,
TaylorForum: Fixing WordPress
In reply to: get_num_queries vs. SAVEQUERIESUpon Googling some different keywords, I found what I believe is the answer to my question.
“[SAVEQUERIES] is recording only the query time — it adds up the time that the WordPress query engine records for each query. timer_stop() will include PHP execution time, IO, other stuff, as well as the query time.”
http://stackoverflow.com/questions/5420668/debugging-wordpress-database-show-different-info
Does anyone know how I can go about actually identifying “PHP execution time, IO, other stuff”?
Forum: Plugins
In reply to: [Breadcrumb NavXT] PHP Update Required for Latest VersionThanks for clearing that up and your quick reply
UPDATE
Stumbled across this that does what I’m after:
<?php $description = stripcslashes(get_post_meta($post->ID, '_aioseop_description', true)); echo $description; ?>