Title: madebydaniel's Replies | WordPress.org

---

# madebydaniel

  [  ](https://wordpress.org/support/users/madebydaniel/)

 *   [Profile](https://wordpress.org/support/users/madebydaniel/)
 *   [Topics Started](https://wordpress.org/support/users/madebydaniel/topics/)
 *   [Replies Created](https://wordpress.org/support/users/madebydaniel/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/madebydaniel/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/madebydaniel/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/madebydaniel/engagements/)
 *   [Favorites](https://wordpress.org/support/users/madebydaniel/favorites/)

 Search replies:

## Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to get events from the default audio player?](https://wordpress.org/support/topic/how-to-get-events-from-the-default-audio-player/)
 *  [madebydaniel](https://wordpress.org/support/users/madebydaniel/)
 * (@madebydaniel)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/how-to-get-events-from-the-default-audio-player/#post-5272634)
 * After some more research, I came across this:
 *     ```
       $('audio').on('play', function(){
               console.log("play");
          });
       ```
   
 * from:
    [http://stackoverflow.com/questions/25735936/wordpress-how-to-get-events-from-the-default-audio-player](http://stackoverflow.com/questions/25735936/wordpress-how-to-get-events-from-the-default-audio-player)
 * You can then console the array and dive in:
 *     ```
       $('audio').on('play', function(){
           var file = $(this);
           console.log(file);
       });
       ```
   
 * Then you can try pulling out what you need like so:
 *     ```
       $('audio').on('play', function(){
           var file = $(this)[0][currentSrc];
           console.log(file);
       });
       ```
   
 * I’m sure there are better ways, but this is the best I’ve came up with so far.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to get events from the default audio player?](https://wordpress.org/support/topic/how-to-get-events-from-the-default-audio-player/)
 *  [madebydaniel](https://wordpress.org/support/users/madebydaniel/)
 * (@madebydaniel)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/how-to-get-events-from-the-default-audio-player/#post-5272633)
 * I have the exact same question/issue.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Spasalon] Strange 'Read More' Text in header](https://wordpress.org/support/topic/strange-read-more-text-in-header/)
 *  [madebydaniel](https://wordpress.org/support/users/madebydaniel/)
 * (@madebydaniel)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/strange-read-more-text-in-header/#post-4994144)
 * I also had this problem. After inspecting my source and doing a little hunting,
   I think I may have discovered the cause, at least mine.
 * I am using my own theme, but this was my first time introducing the yoast plugin.
   I suspect many themes that generate the “read more” text may have this issue.
 * I have a function within my functions.php file generating og properties. The 
   og:description property was set as `content="'. the_excerpt(); .'"`.. that was
   generating the “read more” copy in the header.
 * For some reason when activating the seo plugin, this causes this line to fail.
   However, the yoast plugin also generates og properties and will cause these to
   be doubled in your head, or most likely one in the head and one outside of the
   head.
 * If you’re using the yoast plugin, and your theme is generating it’s own og properites
   I’d try disabling any og function all together, most likely named insert_fb_in_head(){…

Viewing 3 replies - 1 through 3 (of 3 total)