Question

J'ai lancé un répertoire d'article dans Word Press.Je veux ajouter l'URL de l'article à la fin de la même page. Comment écrire ce code. Par exemple, http://ezinearticles.com/? Moto-audio --- Accessorize-with-a-casque-avec-haut-parleurs & id= 6279817

ici à l'URL de fin est donné. merci.

Était-ce utile?

La solution

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

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top