Not purging archive pages
-
If statement for getting the archive pages (line 218):
// Archives and their feeds $archiveurls = array(); if ( get_post_type_archive_link($postId) == true ) { array_push($listofurls, get_post_type_archive_link( get_post_type( $postId ) ), get_post_type_archive_feed_link( get_post_type( $postId ) ) ); }
Needs to be fixed. Right now, it’s always false and therefore never purges the archive pages.
// Archives and their feeds $archiveurls = array(); if ( get_post_type_archive_link( get_post_type( $postId ) ) == true ) { array_push($listofurls, get_post_type_archive_link( get_post_type( $postId ) ), get_post_type_archive_feed_link( get_post_type( $postId ) ) ); }
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Not purging archive pages’ is closed to new replies.