I have a custom post type called "articles". When an article link is clicked, I want to redirect them to custom URL(this URL is saved in the database as custom field) instead of the single page. How can I do it? I couldn't find an action hook/filter for it?
I have a custom post type called "articles". When an article link is clicked, I want to redirect them to custom URL(this URL is saved in the database as custom field) instead of the single page. How can I do it? I couldn't find an action hook/filter for it?
For redirect to custom url you need to change post detail link to custom url. You simply remove post link and apply custom url.
<a href="<?php echo get_field('link'); ?>"><?php the_title(); ?></a>
In my case "link" is custom url.