I need get post meta value “phone” and his value is “555666777” in this post, in others, can be 456654768… or whatever
My code is this:
<?php global $wp_query; $postid = $wp_query->post->ID; echo get_post_meta($postid, 'phone', true); ?>
Now, i wish this numbers don’t show in html like numbers, i need this numbers are images.
I have created 0.jpg 1.jpg 2.jpg 3.jpg 4.jpg 5.jpg 6.jpg 7.jpg 8.jpg 9.jpg
It’s possible change the numbers of phone value with this jpgs? I don’t want that google robots or anothers can this telephone numbers.
A good way would be to isolate each digit using modulo and integer division, and produce an
img
tag out of it:I think you dont need wp_query to get current post_id