Here is my site In header menu bar. I want to make "About" and "Privacy Policy" to "nofollow" link. How to do this? Please help me. Thanks.
You can do this with some lines of PHP code: $output = wp_list_pages('echo=0'); // you can add more parameters here $output = str_replace('<a', '<a rel="nofollow"', $output); echo $output; PHP:
Open your header.php file, search the code for displaying pages, it must has this syntax: wp_list_pages('...'); and replace this code with the code above.