[PHP] make links

2011-05-02 Thread Michael Simiyu
hello, i want to add links to the code below in wordpress ie where it says control the world and read and comment only i want to make it a link a href=http://www.google.com; target=_selfMy Link/a ?php if (current_user_can('level_10')) : ? ?php print control the world; ? ?php elseif

Re: [PHP] make links

2011-05-02 Thread Adam Preece
hi, then use this. ?php if (current_user_can('level_10')) : ? ?php print a href=\http://www.google.com\; target=\_self\My Link/a; ? ?php elseif (current_user_can('level_6')) : ? ?php print read and comment only; ? ?php else : ? ?php print you gotta log-in to see the goodies; ? ?php