Tag Archives: codex

wp_schedule_event

Schedule a periodic event.Schedules a hook which will be executed by the WordPress actions core on a specific interval, specified by you. The action will trigger when someone visits your WordPress site, if the scheduled time has passed.

4087

Continue reading

wp_salt

Get salt to add to hashes to help prevent attacks.The secret key is located in two places: the database in case the secret key isn’t defined in the second place, which is in the wp-config.php file. If you are going to set the secret key, then you must do so in the wp-config.php file.

4073

Continue reading

wp_richedit_pre

Formats text for the rich text editor.The filter ‘richedit_pre’ is applied here. If $text is empty the filter will be applied to an empty string.

4067

Continue reading

wp_reset_query

Destroy the previous query and set up a new query.This should be used after query_posts() and before another query_posts(). This will remove obscure bugs that occur when the previous wp_query object is not destroyed properly before another is set up.

4057

Continue reading