• User Attivo

    come ottenere url da wordpress?

    ciao a tutti,
    ho provato in tutti questi modi ma neanche uno funziona:

    function get_page_url() { $s = empty($_SERVER["HTTPS"]) ? '' : ($_SERVER["HTTPS"] == "on") ? "s" : ""; $sp = strtolower($_SERVER["SERVER_PROTOCOL"]); $protocol = substr($sp, 0, strpos($sp, "/")) . $s; $port = ($_SERVER["SERVER_PORT"] == "80") ? "" : (":".$_SERVER["SERVER_PORT"]); return $protocol . "://" . $_SERVER['SERVER_NAME'] . $port . $_SERVER['REQUEST_URI'];}
    $currentUrl1 = get_page_url();

    $currentUrl2 = get_site_url( $blog_id, $path, $scheme );

    $currentUrl3 = get_permalink( $post->ID );

    $currentUrl4 = site_url( $path, $scheme );

    $currentUrl5 = get_bloginfo('url');

    $currentUrl6 = get_bloginfo('wpurl');

    global $wp;$currentUrl7 = add_query_arg( $wp->query_string, '', home_url( $wp->request ) );

    $currentUrl8 = $_SERVER['PHP_SELF'];[/PHP]

    tutti mi restituiscono questo (vuvuvu .nomesito.it)
    io invece vorrei questo (vuvuvu .nomesito. it/job/1178/)

    come faccio?


  • Consiglio Direttivo

    Ciao prinzart,

    @prinzart said:

    tutti mi restituiscono questo (vuvuvu .nomesito.it)
    io invece vorrei questo (vuvuvu .nomesito. it/job/1178/)

    da: Impostazioni --> Permalink --> Struttura personalizzata imposti la struttura che ritieni più idonea (con o senza categoria):

    • /%category%/%postname%/%post_id%/
    • /%postname%/%post_id%/

    Per qualsiasi dubbio, dai uno sguardo qui! 😉