我需要帮助循环一个简单的php代码。我正在努力实现以下目标:
Start Loop
Look for all the posts
Add the author first & last name as a tag (links to /tag/firstName-lastName)
Once clicked on the tag, take me to the author page with all their posts
end loop
这一切都是我一个人写的。php(我知道它只会影响我打开的页面,不会影响所有的博客)
迄今为止我的代码;
<?php
$post_id = get_the_ID();
$queried_post = get_post($post_id);
$user_info = get_userdata($post->the_author);
$first = $user_info->last_name;
wp_set_post_tags( $post_id, $first, true );
?>