How can replace this url

时间:2021-07-11 作者:Murat

我需要像第二个一样更改此url如何像第二个一样替换第一个代码?

<td><a href="<?php echo $this->get_user_link( $user->ID ); ?>"><?php esc_html_e( \'View Profile\', \'wpuf-pro\' ); ?></a></td>

echo \'<span><a href="\' . get_site_url() . \'/author/\' . $user->user_login . \'"><img src="\' . $author_avatar_url . \'"></a></span>\'

1 个回复
SO网友:Buttered_Toast

您的意思是要创建一个php字符串来输出第一个代码示例吗?如果是,您可以这样做

echo \'<td><a href="\' . $this->get_user_link($user->ID) . \'">\' . esc_html__(\'View Profile\', \'wpuf-pro\' ) . \'</a></td>\';

相关推荐

更改wp-admin/plugins.php上统计的插件数量

我已成功地使用从插件页面隐藏我的插件$wp_list_table 然而,顶部的分页仍然将插件列为“所有(3)”等。我成功地改变了$wp_list_table 的数组_pagination_args = total_items.但它仍然在页面顶部呈现插件-“全部(3)”。有什么办法可以解决这个问题吗?我找到了WP_Plugins_List_Table::prepare_items()具有全局$totals 变量,但我不确定我将如何改变这一点,在这个函数中$totals = array(); fore