• Resolved Marco

    (@unl3a5h3r)


    Hi,

    I got some static posts on my blog. I printed them as PDf and put a DL-link on the post. Right now the link looks like https://…../post_ID.pdf but I’d like to name the link dynamic as https://…./the_permalink.pdf like the link structure in the adress bar. Is there a function i can use for this? Or maybe a workaround with query?

    GG
    Unl3a5h3r

Viewing 5 replies - 1 through 5 (of 5 total)
  • How are you doing the link currently?

    e.g can’t you use the_permalink();

    Thread Starter Marco

    (@unl3a5h3r)

    rigth now it is like this:

    <a href="<?php $category = get_the_category();$cat = $category[0]->cat_name;if($cat == 'News'){echo "?article2pdf=1";}else{$link = "/wp-content/uploads/";$link .= get_the_ID();$link .= ".pdf";echo $link;}?>">[PDF Version]</a>

    ans instead of the get_the_ID() I’d like something like get_the_permalink() with the result die-gesetzliche-krankenversicherung (in this case)

    Yeah try this:

    get_permalink($post->ID);

    Or:

    get_permalink(get_the_ID());

    Ref:https://www.ads-software.com/support/topic/287687?replies=5

    Thread Starter Marco

    (@unl3a5h3r)

    Well the Idea is good. But I dont get the right permalink in this case. I get https://www.fvfinanz.de/?p=2043 but I need the post_name

    Right now I try to write my own sql query to get the post_name out of wp_posts

    Thread Starter Marco

    (@unl3a5h3r)

    SOLUTION:

    <?php
    $p_id = get_the_id();
    $query = mysql_query("SELECT * FROM fv_posts");
    while($result = mysql_fetch_array($query)){
    $array_id =  $result['ID'];
    if ($array_id == $p_id){
    echo $result['post_name'];
    }
    }
    ?>
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘own permalink (PDF Permalink)’ is closed to new replies.