XbjĬ@pi V@i>uP_ @w|1dP &#h(@ɺ(Y @C53Ļa@ \14U0P1р@֘1(0+@Q1Հ @]01HD!@"Q݂k@2@56ʑ|U@OjP h;Ih h$@.11: I@Uh51G(a@bD,pa@PTKHT0`\<h@ U0 :gj[c.(]D@;{X<]p=|ΈP=:d=J*P=Ќ=M@L;ߴ==%0(= 6H<=I`Po*xg+@'41ހd<@Νv\8V@\0SWp@YE+!XB@R)D'@*@"p@ܔT1iB0ʧ/ ikDu@2udSp \w1Lб!l@l`T&iN1@!C젖1v ]@pLh.`(l<Pdxؠ.,P(<Pp@RW|h@VH X I[17À3@ʍ1;DX~@ `kXp@K|K(1<͗a*|@rn8_@ !H'@.HG@zĻ1_l\L@|({znQY+n|\LD@}[@ m, n,@41n$X @'1-qa@\1xX0l| 1 d@6Ɣ2+Qpp`q@(1[x@1Tt4^j @v1`p0@ݗ/Č @Ќd ` \@&H1D\"8p@E o2yI< hY!91 k d@&!D  vkZs@"lLpd@ќ1&p tf@ `= 5@rב ܞ@Fl0r@@P#HpD@+1bp@jĆ @,Š L@P٤(P@d1D% @aUUlf@/,[40}@[ϐ1.$ @GLa@$4}@ 2(@P8l 9@̭>$L@ m xWl$@yT..me5@Fd$ħ@n`$@>fpКYm$db@22DA@{ok0tP<@w[#Aecw(0hڨ1STl$l@3 '#00m$P@ЄY W@tlm1q$@h,1' HP `1"(1@,j#@% V [@txqp1)$@|y0m6:@X>1ZDՀ @1t@"`PQr03,i)ԍ$R>@116$W@,h1I$$n@~j Bt8Ԁ$a@͔0yP$a@ڸ1\ဂ@IL10%O-@",Lt}@}`1[$ @׉xY \@)5"l@su ߑNW@S=D '@A0| J@02G0g5k0Atp",h)@)l߀g(@l~1 C )01Y@7(/(@„F( @l1Oςa@ `޼D @$#L@Xjf@~1{ @e1:Wl @s16l(@ېX1u2m a(0V]1v l,@ˈ灼kY0826dp0@1bl4@JwXA <r8@(V@VPlj/vo(h@𸢰 ]ze@MNZmP_9Fi%@+ˊ:@72:>U@}x@q!D1wـ(@@;jUYo(.@j5`n(@Ò41\o@R[{1@}s@,Αt1@9U[tŽ(H@lj@C o@ڧ:1!ce (031z0J1XBs@~1(j.w@ $=j@fdc8'`:l1<@/?Sux@`H+Qn@}1 ,$@u  rp@5b ol @<>(Xـ42@[xZp t |f@1 +@DO. x@Gc(1lg1@.f1}A$@qp0+G`rhRu0ˌΨRua 5@-tA,<@Ü_H(@[k1,8@4 ใd$p,U@1f7(@s`1CU,@$1ˑi@ !@|P@ЁhҬ,@f ,x@k" t(7@.8x,@ad'%@p˾1sR(,@ @-TƼ[,Sp|=@0|!Ȧ{@F8<vO,h@@ot0@5)@Ij_ rs@P`phd^+@}P O@Il?X!0!t8@r5 ,)"F,E,ime that * the property is accessed. For all other inaccessible properties, a `null` * value is returned. * * @since 5.5.0 * * @param string $name Property name. * @return array|null Prepared attributes, or null. */ public function __get( $name ) { if ( 'attributes' === $name ) { $this->attributes = isset( $this->parsed_block['attrs'] ) ? $this->parsed_block['attrs'] : array(); if ( ! is_null( $this->block_type ) ) { $this->attributes = $this->block_type->prepare_attributes_for_render( $this->attributes ); } return $this->attributes; } return null; } /** * Generates the render output for the block. * * @since 5.5.0 * * @global WP_Post $post Global post object. * * @param array $options { * Optional options object. * * @type bool $dynamic Defaults to 'true'. Optionally set to false to avoid using the block's render_callback. * } * @return string Rendered block output. */ public function render( $options = array() ) { global $post; $options = wp_parse_args( $options, array( 'dynamic' => true, ) ); $is_dynamic = $options['dynamic'] && $this->name && null !== $this->block_type && $this->block_type->is_dynamic(); $block_content = ''; if ( ! $options['dynamic'] || empty( $this->block_type->skip_inner_blocks ) ) { $index = 0; foreach ( $this->inner_content as $chunk ) { if ( is_string( $chunk ) ) { $block_content .= $chunk; } else { $inner_block = $this->inner_blocks[ $index ]; $parent_block = $this; /** This filter is documented in wp-includes/blocks.php */ $pre_render = apply_filters( 'pre_render_block', null, $inner_block->parsed_block, $parent_block ); if ( ! is_null( $pre_render ) ) { $block_content .= $pre_render; } else { $source_block = $inner_block->parsed_block; /** This filter is documented in wp-includes/blocks.php */ $inner_block->parsed_block = apply_filters( 'render_block_data', $inner_block->parsed_block, $source_block, $parent_block ); /** This filter is documented in wp-includes/blocks.php */ $inner_block->context = apply_filters( 'render_block_context', $inner_block->context, $inner_block->parsed_block, $parent_block ); $block_content .= $inner_block->render(); } ++$index; } } } if ( $is_dynamic ) { $global_post = $post; $parent = WP_Block_Supports::$block_to_render; WP_Block_Supports::$block_to_render = $this->parsed_block; $block_content = (string) call_user_func( $this->block_type->render_callback, $this->attributes, $block_content, $this ); WP_Block_Supports::$block_to_render = $parent; $post = $global_post; } if ( ( ! empty( $this->block_type->script_handles ) ) ) { foreach ( $this->block_type->script_handles as $script_handle ) { wp_enqueue_script( $script_handle ); } } if ( ! empty( $this->block_type->view_script_handles ) ) { foreach ( $this->block_type->view_script_handles as $view_script_handle ) { wp_enqueue_script( $view_script_handle ); } } if ( ( ! empty( $this->block_type->style_handles ) ) ) { foreach ( $this->block_type->style_handles as $style_handle ) { wp_enqueue_style( $style_handle ); } } /** * Filters the content of a single block. * * @since 5.0.0 * @since 5.9.0 The `$instance` parameter was added. * * @param string $block_content The block content. * @param array $block The full block, including name and attributes. * @param WP_Block $instance The block instance. */ $block_content = apply_filters( 'render_block', $block_content, $this->parsed_block, $this ); /** * Filters the content of a single block. * * The dynamic portion of the hook name, `$name`, refers to * the block name, e.g. "core/paragraph". * * @since 5.7.0 * @since 5.9.0 The `$instance` parameter was added. * * @param string $block_content The block content. * @param array $block The full block, including name and attributes. * @param WP_Block $instance The block instance. */ $block_content = apply_filters( "render_block_{$this->name}", $block_content, $this->parsed_block, $this ); return $block_content; } } {"id":2095,"date":"2021-05-11T21:55:08","date_gmt":"2021-05-11T19:55:08","guid":{"rendered":"https:\/\/grueneswarenhaus.com\/wp-content\/uploads\/2021\/05\/ute_Gruenes-Warenhaus2.jpg"},"modified":"2021-05-11T21:55:08","modified_gmt":"2021-05-11T19:55:08","slug":"ute_gruenes-warenhaus2","status":"inherit","type":"attachment","link":"https:\/\/grueneswarenhaus.com\/ute_gruenes-warenhaus2\/","title":{"rendered":"ute_Gr\u00fcnes Warenhaus2"},"author":5,"comment_status":"closed","ping_status":"closed","template":"","meta":{"jetpack_post_was_ever_published":false},"jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/aaTAa8-xN","description":{"rendered":"

\"\"<\/a><\/p>\n"},"caption":{"rendered":""},"alt_text":"","media_type":"image","mime_type":"image\/jpeg","media_details":{"width":2560,"height":1920,"file":"2021\/05\/ute_Gruenes-Warenhaus2-scaled.jpg","sizes":{"medium":{"file":"ute_Gruenes-Warenhaus2-300x225.jpg","width":300,"height":225,"mime_type":"image\/jpeg","source_url":"https:\/\/i0.wp.com\/grueneswarenhaus.com\/wp-content\/uploads\/2021\/05\/ute_Gruenes-Warenhaus2-scaled.jpg?fit=300%2C225&ssl=1"},"large":{"file":"ute_Gruenes-Warenhaus2-1024x768.jpg","width":1024,"height":768,"mime_type":"image\/jpeg","source_url":"https:\/\/i0.wp.com\/grueneswarenhaus.com\/wp-content\/uploads\/2021\/05\/ute_Gruenes-Warenhaus2-scaled.jpg?fit=750%2C563&ssl=1"},"thumbnail":{"file":"ute_Gruenes-Warenhaus2-150x150.jpg","width":150,"height":150,"mime_type":"image\/jpeg","source_url":"https:\/\/i0.wp.com\/grueneswarenhaus.com\/wp-content\/uploads\/2021\/05\/ute_Gruenes-Warenhaus2-scaled.jpg?resize=150%2C150&ssl=1"},"medium_large":{"file":"ute_Gruenes-Warenhaus2-768x576.jpg","width":768,"height":576,"mime_type":"image\/jpeg","source_url":"https:\/\/i0.wp.com\/grueneswarenhaus.com\/wp-content\/uploads\/2021\/05\/ute_Gruenes-Warenhaus2-scaled.jpg?fit=750%2C563&ssl=1"},"1536x1536":{"file":"ute_Gruenes-Warenhaus2-1536x1152.jpg","width":1536,"height":1152,"mime_type":"image\/jpeg","source_url":"https:\/\/i0.wp.com\/grueneswarenhaus.com\/wp-content\/uploads\/2021\/05\/ute_Gruenes-Warenhaus2-scaled.jpg?fit=1536%2C1152&ssl=1"},"2048x2048":{"file":"ute_Gruenes-Warenhaus2-2048x1536.jpg","width":2048,"height":1536,"mime_type":"image\/jpeg","source_url":"https:\/\/i0.wp.com\/grueneswarenhaus.com\/wp-content\/uploads\/2021\/05\/ute_Gruenes-Warenhaus2-scaled.jpg?fit=2048%2C1536&ssl=1"},"trp-custom-language-flag":{"file":"ute_Gruenes-Warenhaus2-16x12.jpg","width":16,"height":12,"mime_type":"image\/jpeg","source_url":"https:\/\/i0.wp.com\/grueneswarenhaus.com\/wp-content\/uploads\/2021\/05\/ute_Gruenes-Warenhaus2-scaled.jpg?fit=16%2C12&ssl=1"},"lawncare-theme-main-slider":{"file":"ute_Gruenes-Warenhaus2-1920x746.jpg","width":1920,"height":746,"mime_type":"image\/jpeg","source_url":"https:\/\/i0.wp.com\/grueneswarenhaus.com\/wp-content\/uploads\/2021\/05\/ute_Gruenes-Warenhaus2-scaled.jpg?resize=1920%2C746&ssl=1"},"lawncare-theme-blog-list":{"file":"ute_Gruenes-Warenhaus2-750x393.jpg","width":750,"height":393,"mime_type":"image\/jpeg","source_url":"https:\/\/i0.wp.com\/grueneswarenhaus.com\/wp-content\/uploads\/2021\/05\/ute_Gruenes-Warenhaus2-scaled.jpg?resize=750%2C393&ssl=1"},"lawncare-theme-blog-masonry":{"file":"ute_Gruenes-Warenhaus2-360x189.jpg","width":360,"height":189,"mime_type":"image\/jpeg","source_url":"https:\/\/i0.wp.com\/grueneswarenhaus.com\/wp-content\/uploads\/2021\/05\/ute_Gruenes-Warenhaus2-scaled.jpg?resize=360%2C189&ssl=1"},"lawncare-theme-service-box":{"file":"ute_Gruenes-Warenhaus2-380x381.jpg","width":380,"height":381,"mime_type":"image\/jpeg","source_url":"https:\/\/i0.wp.com\/grueneswarenhaus.com\/wp-content\/uploads\/2021\/05\/ute_Gruenes-Warenhaus2-scaled.jpg?resize=380%2C381&ssl=1"},"lawncare-theme-service-noraml":{"file":"ute_Gruenes-Warenhaus2-160x160.jpg","width":160,"height":160,"mime_type":"image\/jpeg","source_url":"https:\/\/i0.wp.com\/grueneswarenhaus.com\/wp-content\/uploads\/2021\/05\/ute_Gruenes-Warenhaus2-scaled.jpg?resize=160%2C160&ssl=1"},"lawncare-theme-service-single":{"file":"ute_Gruenes-Warenhaus2-350x350.jpg","width":350,"height":350,"mime_type":"image\/jpeg","source_url":"https:\/\/i0.wp.com\/grueneswarenhaus.com\/wp-content\/uploads\/2021\/05\/ute_Gruenes-Warenhaus2-scaled.jpg?resize=350%2C350&ssl=1"},"lawncare-theme-team-img":{"file":"ute_Gruenes-Warenhaus2-265x265.jpg","width":265,"height":265,"mime_type":"image\/jpeg","source_url":"https:\/\/i0.wp.com\/grueneswarenhaus.com\/wp-content\/uploads\/2021\/05\/ute_Gruenes-Warenhaus2-scaled.jpg?resize=265%2C265&ssl=1"},"lawncare-theme-gallery-small":{"file":"ute_Gruenes-Warenhaus2-227x267.jpg","width":227,"height":267,"mime_type":"image\/jpeg","source_url":"https:\/\/i0.wp.com\/grueneswarenhaus.com\/wp-content\/uploads\/2021\/05\/ute_Gruenes-Warenhaus2-scaled.jpg?resize=227%2C267&ssl=1"},"lawncare-theme-gallery-big":{"file":"ute_Gruenes-Warenhaus2-455x535.jpg","width":455,"height":535,"mime_type":"image\/jpeg","source_url":"https:\/\/i0.wp.com\/grueneswarenhaus.com\/wp-content\/uploads\/2021\/05\/ute_Gruenes-Warenhaus2-scaled.jpg?resize=455%2C535&ssl=1"},"lawncare-theme-popular-post":{"file":"ute_Gruenes-Warenhaus2-165x87.jpg","width":165,"height":87,"mime_type":"image\/jpeg","source_url":"https:\/\/i0.wp.com\/grueneswarenhaus.com\/wp-content\/uploads\/2021\/05\/ute_Gruenes-Warenhaus2-scaled.jpg?resize=165%2C87&ssl=1"},"woocommerce_thumbnail":{"file":"ute_Gruenes-Warenhaus2-300x300.jpg","width":300,"height":300,"uncropped":false,"mime_type":"image\/jpeg","source_url":"https:\/\/grueneswarenhaus.com\/wp-content\/uploads\/2021\/05\/ute_Gruenes-Warenhaus2-300x300.jpg"},"woocommerce_single":{"file":"ute_Gruenes-Warenhaus2-600x450.jpg","width":600,"height":450,"mime_type":"image\/jpeg","source_url":"https:\/\/grueneswarenhaus.com\/wp-content\/uploads\/2021\/05\/ute_Gruenes-Warenhaus2-600x450.jpg"},"woocommerce_gallery_thumbnail":{"file":"ute_Gruenes-Warenhaus2-100x100.jpg","width":100,"height":100,"mime_type":"image\/jpeg","source_url":"https:\/\/grueneswarenhaus.com\/wp-content\/uploads\/2021\/05\/ute_Gruenes-Warenhaus2-100x100.jpg"},"shop_catalog":{"file":"ute_Gruenes-Warenhaus2-300x300.jpg","width":300,"height":300,"mime_type":"image\/jpeg","source_url":"https:\/\/grueneswarenhaus.com\/wp-content\/uploads\/2021\/05\/ute_Gruenes-Warenhaus2-300x300.jpg"},"shop_single":{"file":"ute_Gruenes-Warenhaus2-600x450.jpg","width":600,"height":450,"mime_type":"image\/jpeg","source_url":"https:\/\/grueneswarenhaus.com\/wp-content\/uploads\/2021\/05\/ute_Gruenes-Warenhaus2-600x450.jpg"},"shop_thumbnail":{"file":"ute_Gruenes-Warenhaus2-100x100.jpg","width":100,"height":100,"mime_type":"image\/jpeg","source_url":"https:\/\/grueneswarenhaus.com\/wp-content\/uploads\/2021\/05\/ute_Gruenes-Warenhaus2-100x100.jpg"},"full":{"file":"ute_Gruenes-Warenhaus2-scaled.jpg?fit=2560%2C1920&ssl=1","width":2560,"height":1920,"mime_type":"image\/jpeg","source_url":"https:\/\/i0.wp.com\/grueneswarenhaus.com\/wp-content\/uploads\/2021\/05\/ute_Gruenes-Warenhaus2-scaled.jpg?fit=2560%2C1920&ssl=1"}},"image_meta":{"aperture":"1.8","credit":"","camera":"iPhone XR","caption":"","created_timestamp":"1598602672","copyright":"","focal_length":"4.25","iso":"50","shutter_speed":"0.0082644628099174","title":"","orientation":"1","keywords":[]},"original_image":"ute_Gruenes-Warenhaus2.jpg"},"post":null,"source_url":"https:\/\/grueneswarenhaus.com\/wp-content\/uploads\/2021\/05\/ute_Gruenes-Warenhaus2-scaled.jpg","_links":{"self":[{"href":"https:\/\/grueneswarenhaus.com\/wp-json\/wp\/v2\/media\/2095"}],"collection":[{"href":"https:\/\/grueneswarenhaus.com\/wp-json\/wp\/v2\/media"}],"about":[{"href":"https:\/\/grueneswarenhaus.com\/wp-json\/wp\/v2\/types\/attachment"}],"author":[{"embeddable":true,"href":"https:\/\/grueneswarenhaus.com\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/grueneswarenhaus.com\/wp-json\/wp\/v2\/comments?post=2095"}]}}