我想在我的 WordPress 网站上添加一个 Amazon Payments 按钮。我已经开始阅读 API 集成指南,我需要将以下代码添加到我的网站“商店”的头部 - 我知道通过我的远程目录导航 SFTP - 这段代码在哪里?我的理解是,我的 WordPress 页面的数据存储在我的托管公司的数据库中?如果我要创建一个“商店”页面,我应该在哪里导航以插入以下代码?
<head>
// your head section here
<script type='text/javascript'>
window.onAmazonLoginReady = function() {
amazon.Login.setClientId('YOUR_CLIENT_ID_HERE');
};
</script>
<script type='text/javascript'
src='https://static-na.payments-amazon.com/OffAmazonPayments/us/sandbox/js/Widgets.js'>
</script>
// your head section here
</head>