-
I have setup rankmath with buddyboss theme and following documentation did the settings. Now, I am facing issues with attachment pages. As mentioned in documentation and youtube tutorial I followed the same steps.
Rank Math > General Settings > Links > Enable Redirection > Save
After that adding this snippet in rank-math.php:
/**
* Redirect Attachments to media URL
*/
add_filter(‘rank_math/frontend/attachment/redirect_url’, function ($redirect, $post) {
return $post->guid;
}, 10, 2);It Should Work as whenever attachment page link clicked its will redirect to media url but in my case this process is only working on staging site but for the main site its only redirecting to homepage or no redirection. I checked both orphan and in use images.
The ticket ‘Redirecting Attachment Pages To Media URL’ is closed to new replies.