axxe16
2/6/2017 - 10:47 AM

Aggiungere una variabile GET su url in WP

Aggiungere una variabile GET su url in WP

<?php
// This would output '/client/?s=word&foo=bar'
echo esc_url( add_query_arg( 'foo', 'bar' ) );
 
// This would output '/client/?s=word&foo=bar&baz=tiny'
$arr_params = array( 'foo' => 'bar', 'baz' => 'tiny' );
echo esc_url( add_query_arg( $arr_params ) );

//posso specificare anche un url diverso dalla pagina corrente 
echo add_query_arg( 'foo', 'bar' , get_permalink($idPagina) );