To automatically flush permalinks every hour, use the following code:
- Hook the scheduling function to
init
. - Schedule an hourly event if not already scheduled.
- Hook the scheduled event to a function.
- Define the function to flush rewrite rules.
// Hook the scheduling function
add_action( 'init', 'schedule_my_hourly_event' );
// Schedule the event
function schedule_my_hourly_event() {
if ( ! wp_next_scheduled( 'my_hourly_event' ) ) {
wp_schedule_event( time(), 'hourly', 'my_hourly_event' );
}
}
// Hook the event to a function
add_action( 'my_hourly_event', 'my_flush_rewrite_rules' );
// Function to flush rewrite rules
function my_flush_rewrite_rules() {
flush_rewrite_rules();
}
Related Posts:
- how to get permalink structure with php
- add_rewrite_rule with bottom priority doesn’t handle the WordPress pages
- wp_trim_words() does not work with my code Am I doing any mistake in my code?
- WordPress theme showing blank page
- Permalink changes after several minutes after saving post
- What is the proper way to call a function (from functions.php) on a link click?
- redirect 301 with special character like WIX site “#!”
- Accessing WordPress Functions get_permalink() in Vanilla PHP?
- How to extract URLs from wordpress taxonomies
- Disable Attachment Pages Completely
- List of all theme customizer control types?
- Modify previous and next text from pagination links
- Shortcode putting html such as
- Calling a method from functions.php on a click of a button
- How to redirect users to custom lostpassword page?
- How to change featured content to a different tag in WordPress Twenty Fourteen?
- Can I write ‘RewriteCond’ using ‘functions.php’?
- How do I create comment-reply-button using element not
- WordPress menu deletes when trying to add a hook
- Overriding a theme redux file in child theme
- Validate a users email address when using gmail to register
- How to check If Oembed is empty or not
- Making Quote Plugin more efficient
- Adding tawk.to code just before body tag on functions.php file
- Do changes to WordPress permalink custom structure affect old urls?
- allow subscribers to see private posts without plug in
- Can I prevent the user from adding more than two levels deep of terms inside of a taxonomy metabox?
- Show css depending on activity type in BuddyPress activity-loop [closed]
- remove wp floating submenu in wp dashboard
- ACF: how do I get the fields and its values of a specific group?
- Fatal error: Uncaught Error: Call to undefined function test()
- Return a numerical function value in Customizer controls
- How can I get the values of my WordPress $wpdb query in Jquery?
- Show when user is online/offline in real time on user_profile.php
- Adding a widget function into the php theme file
- theme_root returning a truncated URI
- Call to undefined method – Download Monitor
- Call to undefined function get_userdata() in plugin
- Echo string and function?
- How to change menu labels
- Adding wrapper elements in the_date() like in the_title()?
- How to obtain the current website URL in my theme?
- Notify users only on post publish
- Plugin Generate Unexpected output during activation
- Remove Custom Divs from AMP pages
- Read array in php?
- Is it possible to display a DIV to not logged in users and then change it for users who are logged in?
- PHP code for displaying WordPress posts in a static page not working
- Remove extract from function
- Undefined offset: 3 in custom function
- Display css ONLY on most recent post of specific category?
- How to add data to a custom field at the wp_users table?
- How can I use custom menus with a Bootstrap WordPress theme?
- How to make a cookie be on the whole site instead of being on a specific page/
- Search only working on front page (index) , not working on other pages
- Child Theme’s Read More Text
- call a string/function from database
- Get date function not working
- How to remove/hide collapse menu for user/subscriber?
- How to implement __() function in my theme’s php file?
- How a HTML form can trigger a PHP function?
- Allow a user or role to view drafts and previews, but not other admin privileges?
- Get current user id in function php
- Proper way to remove html code on child theme
- Trying to add Custom Post Type to this functions.php command
- Apply function.php filter only if url not has /amp/
- Preventing direct access to a page in WordPress
- How to use data URL in WordPress?
- Flushing the slug base has no effect and does not change
- Non-blocking file_put_contents in function.php
- Display a custom name when the user has no name settle in his account
- Multiple cron jobs vs daily cron job doing multiple things? Which one yields better performance and scalability?
- How does Permalink work with the AMP plugin after Removing Parent Permalink Catalog from Posts
- Discount in the specific product title using keyword ( Woocoommerce )
- WordPress generates weird permalinks
- Modify post image in full size
- How to link all featured images to custom url in single.php for only non-logged-in users?
- JQuery modal not loading video on popup, only displaying it after multiple reopenings
- Menu to the right of screen on desktop using Bootstrap 4
- custom post type column countdown
- Creating wordpress user registration form
- Add missing alt tag to featured images for “storefront” theme
- Notice: Undefined index: post_title error
- Load admin bar without wp_head or wp_footer [duplicate]
- Allow user to select location and then set cookie for location in WordPress
- My query keeps looping infinitely ! how to stop it?
- Highlight Single Page Ancestor
- Registration form not registering First and Last name
- Removing get_template_part in child theme
- Merge / Combine two php functions for Previous and Next Link with Thumbnail
- set new link as permalink
- str_replace not responding in functions.php [closed]
- How to get the rating value of each comment
- Adding php within a return statement [closed]
- Error in php code
- How can I fix my pagination?
- Add any username as link prefix and show data from that specific user’s profile on wordpress pages – with no login required
- Replace the image of a product with its video in the shop page
- How call WordPress shortcode inside function file
- strict custom php script on specific product category [closed]