¿Cómo agregar URL de página de artículos en la parte inferior de la misma página?

StackOverflow https://stackoverflow.com/questions/6054871

  •  15-11-2019
  •  | 
  •  

Pregunta

Comencé un directorio de artículos en Word Press.Quiero agregar URL de artículos al final de la misma página. Cómo escribir ese código. Por ejemplo, http://ezinearticles.com/? Motocicleta-Audio --- accessorize-with-a-castet-with-altavoces y amp; id= 6279817
Aquí se da a la URL final. Gracias.

¿Fue útil?

Solución

A few options for that:

The WordPress way would be to use get_permalink($post_id)

<?php
global $post
$link = get_permalink($post->ID);

or you could use the REQUEST_URI shown here: http://wordpress.org/support/topic/get-current-page-url

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top