Thank you, the question has been solved by another friend developer
Here is his code:
<?php if (function_exists("insert_audio_player")) {
if ( is_home() ) {
// homepage code goes here
insert_audio_player("[audio:http://link.mp3]");
} else {
// other pages code go here
insert_audio_player("[audio:http://link2.mp3]");
}
} ?>
Hope this helps another people who have the same problem
Hi zbirkos,
Your solution is the only way that can resolve my problem, after trying a bunch of other methods, eg, define(‘WP_MEMORY_LIMIT’, ’64M’);
It works like a charm. Thank you so much!