我正在为 Soundcloud 开发一些 javascript,它允许用户通过单击一个按钮来验证他们的帐户,一旦他们这样做,我就将其设置为将用户转发到特定页面。下面是我正在使用的代码
<script>
SC.initialize({
client_id: "MYIDHERE",
redirect_uri: "MYURLHERE/callback.html"
});
$("#connect").live("click", function(){
SC.connect(function(){
SC.get("/me", function(me){
$("#username").text(me.username);
$("#userid").text(me.id);
$.ajax({
type: "POST",
url: "MYURLHERE/my-recordings-logged-in",
data: {
userID: me.id
},
success: function(data) {
location.href = data;
}
});
});
});
});
</script>
我遇到的问题是,当页面被转发到新页面时,URL 后面有一堆 HTML 代码:
MYURLHERE/!DOCTYPE%20html%20PUBLIC%20"-//W3C//DTD%20XHTML%201.0%20Transitional//EN"%20" ...等(整个页面的html代码在实际http栏)
而不是显示我在 WordPress 中创建的页面。不确定这是 WordPress 页面模板问题还是它没有转发到实际的 .php 扩展名?
这是我正在使用的页面模板文件的 PHP 代码:
<?php
/*
Template Name: My Account (Logged in)
*/
?>
<?php
require_once( 'MYURLHERE/wp-load.php' );
get_header(); ?>
<div class="contentwrap fullwidth">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="postwrap pagefullwidth">
<h1><?php the_title(); ?></h1>
<?php the_content(); ?>
<?php $userid = $_POST["userID"]; ?>
<?php $my_query = new WP_Query('showposts=1000&tag=$userid'); while ($my_query->have_posts()) : $my_query->the_post(); $do_not_duplicate = $post->ID; ?>
<?php the_content(); ?>
<a href="<?php the_permalink(); ?>">View This Appreciation</a>
<?php endwhile; ?>
</div><!-- END postwrap -->
<?php endwhile; else: ?>
<?php endif; ?>
</div><!-- END contentwrap -->
<?php get_footer(); ?>
任何帮助,将不胜感激