{"id":1231,"date":"2012-03-10T09:38:55","date_gmt":"2012-03-10T07:38:55","guid":{"rendered":"http:\/\/brownian.org.ua\/?p=1231"},"modified":"2017-04-14T14:30:06","modified_gmt":"2017-04-14T11:30:06","slug":"wordpress-hraty-vsi-doluchennya","status":"publish","type":"post","link":"https:\/\/brownian.org.ua\/?p=1231","title":{"rendered":"WordPress: \u0433\u0440\u0430\u0442\u0438 \u0432\u0441\u0456 \u0434\u043e\u043b\u0443\u0447\u0435\u043d\u043d\u044f"},"content":{"rendered":"<p>\u041a\u043e\u043c\u0435\u043d\u0442\u0443\u044e\u0447\u0438 <a href=\"\/?p=1194\">\u043e\u0434\u043d\u0443 \u0437 \u043f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u0456\u0445 \u043f\u0443\u0431\u043b\u0456\u043a\u0430\u0446\u0456\u0439<\/a>, \u042e\u0440\u043a\u043e \u0441\u043f\u043e\u043d\u0443\u043a\u0430\u0432 \u0442\u0430\u043a\u0438 \u043c\u0435\u043d\u0435 \u043d\u0430\u043f\u0438\u0441\u0430\u0442\u0438 \u043a\u043e\u0440\u043e\u0442\u043a\u0438\u0439 \u043a\u043e\u0434 (shortcode) \u0434\u043b\u044f \u0432\u0441\u0442\u0430\u0432\u043b\u044f\u043d\u043d\u044f \u043f\u0440\u043e\u0433\u0440\u0430\u0432\u0430\u0447\u0430 \u0437 \u043f\u0435\u0440\u0435\u043b\u0456\u043a\u043e\u043c \u0432\u0441\u0456\u0445 \u0434\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0445 \u0434\u043e \u043f\u0443\u0431\u043b\u0456\u043a\u0430\u0446\u0456\u0457 \u0430\u0443\u0434\u0456\u043e\u0444\u0440\u0430\u0433\u043c\u0435\u043d\u0442\u0456\u0432.<\/p>\n<p>\u0422\u043e\u0431\u0442\u043e, \u044f \u0445\u043e\u0447\u0443 \u0434\u043e \u0434\u0430\u043d\u043e\u0457 \u043f\u0443\u0431\u043b\u0456\u043a\u0430\u0446\u0456\u0457 \u0434\u043e\u043b\u0456\u043f\u0438\u0442\u0438 \u043a\u0456\u043b\u044c\u043a\u0430 mp3 \u0444\u0430\u0439\u043b\u0456\u0432, \u043f\u0456\u0434\u043f\u0438\u0441\u0430\u0442\u0438 \u0457\u0445 \u0456 \u0443 \u043f\u0443\u0431\u043b\u0456\u043a\u0430\u0446\u0456\u0457 \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u0430\u0442\u0438 \u044f\u043a\u0438\u0439\u0441\u044c \u043a\u043e\u0440\u043e\u0442\u043a\u0438\u0439 \u043a\u043e\u0434&#8230; \u0421\u043b\u043e\u0432\u043e\u043c, \u043d\u0438\u0436\u0447\u0435.<\/p>\n<p>\u0423 \u0444\u0430\u0439\u043b\u0456 <code>functions.php<\/code> \u0434\u043e\u043f\u0438\u0441\u0443\u0454\u043c\u043e \u0442\u0430\u043a\u0435:<\/p>\n<pre lang=\"php\">\r\nfunction get_player( $post ) {\r\n  $urls    = array();\r\n  $titles  = array();\r\n  $artists = array();\r\n\r\n  $attachments = get_children(\r\n      array('post_parent' => $post->ID,\r\n            'post_type' => 'attachment',\r\n            'post_mime_type' => 'audio\/mpeg',\r\n            'order_by' => 'menu_order', 'order' => 'ASC'));\r\n  if( $attachments ) {\r\n    foreach ( $attachments as $att_id => $att ) {\r\n      \/\/ allow non-latin chars in file names:\r\n      $url = wp_get_attachment_url($att_id);\r\n      $url = preg_replace('#(.*\/)([^\/]*)$#e', \"'\\\\1'.rawurlencode('\\\\2')\", $url);\r\n      $url = rawurlencode( $url );\r\n      $urls[] = $url;\r\n\r\n      $title  = rawurlencode( str_replace(\",\", \":\", $att->post_title) );\r\n      $titles[] = $title;\r\n\r\n    }\r\n    $player_id = 'audioplayer-' . $post->ID;\r\n    $player = '<p class=\"audioplayer_container\"><div class=\"np-audioplayer\" id=\"'. $player_id .'\">(No Adobe Flash Player?..)<\/div><\/p>' . \"\\n\"\r\n            . '<script type=\"text\/javascript\">' . \"\\n\"\r\n            . '    AudioPlayer.embed(\"' . $player_id . \"\\\", {\\n\"\r\n            . '      soundFile: \"' . implode(\",\", $urls)    . \"\\\" \/\/ ,\\n\"\r\n            . '      titles: \"'    . implode(\",\", $titles)  . \"\\\"\\n\"\r\n            . \"    });\\n\"\r\n            . \"<\/script>\\n\";\r\n    return $player;\r\n  }\r\n  return false;\r\n}\r\n\r\nfunction playall( $atts ) {\r\n  global $post;\r\n  return get_player($post);\r\n}\r\n\r\nadd_shortcode( \"playall\", \"playall\" );\r\n<\/pre>\n<p>\u041f\u0456\u0441\u043b\u044f \u0446\u044c\u043e\u0433\u043e \u043c\u0438 \u043c\u043e\u0436\u0435\u043c\u043e \u0443 \u0442\u0456\u043b\u0456 \u043f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f \u043d\u0430\u043f\u0438\u0441\u0430\u0442\u0438 <code>[<span>playall<\/span>]<\/code>. \u041e\u0441\u044c, \u0434\u043b\u044f \u043f\u0440\u0438\u043a\u043b\u0430\u0434\u0443, \u044f \u043f\u0440\u0438\u0447\u0435\u043f\u0438\u0432 \u0434\u043e \u0446\u044c\u043e\u0433\u043e \u043f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f \u0442\u0440\u0438 \u0444\u0440\u0430\u0433\u043c\u0435\u043d\u0442\u0438:<\/p>\n<p>[playall]<\/p>\n<p>\u0412\u0441\u0456 \u0444\u0440\u0430\u0433\u043c\u0435\u043d\u0442\u0438 \u044f \u043f\u0456\u0434\u043f\u0438\u0441\u0430\u0432 \u0447\u0435\u0440\u0435\u0437 \u0432\u0456\u0434\u043f\u043e\u0432\u0456\u0434\u043d\u0438\u0439 \u0456\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 \u0432\u043e\u0440\u0434\u043f\u0440\u0435\u0441\u0430, \u0457\u0445 \u043f\u043e\u0440\u044f\u0434\u043e\u043a \u0442\u0430\u043a\u043e\u0436 \u0432\u0438\u0441\u0442\u0430\u0432\u0438\u0432 \u0441\u0430\u043c\u0435 \u0442\u0430\u043c. \u0414\u043e \u0440\u0435\u0447\u0456, \u044f\u043a\u0449\u043e \u0437\u0430\u043a\u043e\u043c\u0435\u043d\u0442\u0443\u0432\u0430\u0442\u0438 <code>titles: ...<\/code>, audioplayer \u0432\u0456\u0437\u044c\u043c\u0435 \u0432\u0456\u0434\u043f\u043e\u0432\u0456\u0434\u043d\u0435 \u043f\u043e\u043b\u0435 \u0437 <code>mp3 id tag<\/code>. \u0423 \u0446\u044c\u043e\u043c\u0443 \u043a\u043e\u043d\u043a\u0440\u0435\u0442\u043d\u043e\u043c\u0443 \u0432\u0438\u043f\u0430\u0434\u043a\u0443 \u0432\u0456\u043d \u0437\u0432\u0456\u0434\u0442\u0438 \u0431\u0435\u0440\u0435 \u0456\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0456\u044e \u0434\u043b\u044f <code>artists<\/code> (<em>\u00abNeville Marriner &#8211; Academy of St Martin in the Fields\u00bb<\/em> \u0443 \u0434\u0430\u043d\u043e\u043c\u0443 \u0432\u0438\u043f\u0430\u0434\u043a\u0443).<\/p>\n<p>\u0427\u043e\u043c\u0443 \u0434\u0432\u0456\u0447\u0456 <code>rawurlencode<\/code>? \u041d\u0435 \u0437\u043d\u0430\u044e :-)<\/p>\n<p>\u0414\u043e \u0440\u0435\u0447\u0456, \u0443 \u043d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f\u0445 \u0432\u043e\u0440\u0434\u043f\u0440\u0435\u0441\u0456\u0432\u0441\u044c\u043a\u043e\u0433\u043e Audio Player\u2019\u0430 \u0442\u0440\u0435\u0431\u0430 \u0432\u0438\u043c\u043a\u043d\u0443\u0442\u0438 \u00ab\u043a\u0440\u0438\u043f\u0442\u0443\u0432\u0430\u043d\u043d\u044f\u00bb \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u044c.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u041a\u043e\u043c\u0435\u043d\u0442\u0443\u044e\u0447\u0438 \u043e\u0434\u043d\u0443 \u0437 \u043f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u0456\u0445 \u043f\u0443\u0431\u043b\u0456\u043a\u0430\u0446\u0456\u0439, \u042e\u0440\u043a\u043e \u0441\u043f\u043e\u043d\u0443\u043a\u0430\u0432 \u0442\u0430\u043a\u0438 \u043c\u0435\u043d\u0435 \u043d\u0430\u043f\u0438\u0441\u0430\u0442\u0438 \u043a\u043e\u0440\u043e\u0442\u043a\u0438\u0439 \u043a\u043e\u0434 (shortcode) \u0434\u043b\u044f \u0432\u0441\u0442\u0430\u0432\u043b\u044f\u043d\u043d\u044f \u043f\u0440\u043e\u0433\u0440\u0430\u0432\u0430\u0447\u0430 \u0437 \u043f\u0435\u0440\u0435\u043b\u0456\u043a\u043e\u043c \u0432\u0441\u0456\u0445 \u0434\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0445 \u0434\u043e \u043f\u0443\u0431\u043b\u0456\u043a\u0430\u0446\u0456\u0457 \u0430\u0443\u0434\u0456\u043e\u0444\u0440\u0430\u0433\u043c\u0435\u043d\u0442\u0456\u0432. \u0422\u043e\u0431\u0442\u043e, \u044f \u0445\u043e\u0447\u0443 \u0434\u043e \u0434\u0430\u043d\u043e\u0457 \u043f\u0443\u0431\u043b\u0456\u043a\u0430\u0446\u0456\u0457 \u0434\u043e\u043b\u0456\u043f\u0438\u0442\u0438 \u043a\u0456\u043b\u044c\u043a\u0430 mp3 \u0444\u0430\u0439\u043b\u0456\u0432, \u043f\u0456\u0434\u043f\u0438\u0441\u0430\u0442\u0438 \u0457\u0445 \u0456 \u0443 \u043f\u0443\u0431\u043b\u0456\u043a\u0430\u0446\u0456\u0457 \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u0430\u0442\u0438 \u044f\u043a\u0438\u0439\u0441\u044c \u043a\u043e\u0440\u043e\u0442\u043a\u0438\u0439 \u043a\u043e\u0434&#8230; \u0421\u043b\u043e\u0432\u043e\u043c, \u043d\u0438\u0436\u0447\u0435. \u0423 &hellip; <a href=\"https:\/\/brownian.org.ua\/?p=1231\" class=\"more-link\"><span>Continue reading<span class=\"screen-reader-text\">WordPress: \u0433\u0440\u0430\u0442\u0438 \u0432\u0441\u0456 \u0434\u043e\u043b\u0443\u0447\u0435\u043d\u043d\u044f<\/span><\/span><\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[54],"tags":[79,116,5],"_links":{"self":[{"href":"https:\/\/brownian.org.ua\/index.php?rest_route=\/wp\/v2\/posts\/1231"}],"collection":[{"href":"https:\/\/brownian.org.ua\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/brownian.org.ua\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/brownian.org.ua\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/brownian.org.ua\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1231"}],"version-history":[{"count":0,"href":"https:\/\/brownian.org.ua\/index.php?rest_route=\/wp\/v2\/posts\/1231\/revisions"}],"wp:attachment":[{"href":"https:\/\/brownian.org.ua\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1231"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/brownian.org.ua\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1231"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/brownian.org.ua\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1231"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}