Answers for "get the custom post permalink by id"

PHP
0

get permalink by id wordpress

<?php
if(count($related)) {
    echo "<div>Read More<ul>";
    foreach($related as $id) {
        echo '<li><a href="'.get_permalink( $id ).'">'.get_the_title( $id ).'</a></li>';
    }
    echo "</ul></div>";
  }
?>
Posted by: Guest on January-04-2022
0

add custom taxonomy into permalinks post_type_link

'rewrite' => array('slug' => 'courses/%course%')
Posted by: Guest on June-03-2021

Code answers related to "get the custom post permalink by id"

Browse Popular Code Answers by Language