thanks for your quickly response.
Where I must do it ….
In all single, post, template, … I have inserted this line:
<?php load_template (get_template_directory() . ‘/includes/print.php’); ?>
and I created the following code in the /includes/print.php file
<?php
// create Array for posts/pages ID’s for that you don’t want to Wp-Print icon shown…
$noprint = “34”; // A Propos
$noprint = $noprint . “,623”; // Espace-Prive
$noprint = $noprint . “,133”; // Contact
$noprint_list = preg_split(“/[\,]+/”, $noprint);
$thePostID = $post->ID;
if (! in_array($thePostID,$noprint_list))
{
if(function_exists(‘wp_print’))
{
print_link();
}
}
?>
When I write your line code in the Custom “Print Text Link Style” field, I just receive the ” | ” in the post or page.