0
Using Wordpress I will need to use the article link more than once, I wonder if storing the 'permalink' in a server resource saving variable, since I will only make a request to the database or there is an expense to process that does not compensate?
Ex:
$post_url = get_permalink();
// To take the URL and store in a variable
echo $post_url;
// To use it
PS: I will use the link 4 times.