'; $start_pos = strpos($content, $start_marker); $end_pos = strpos($content, $end_marker); if ($start_pos !== false && $end_pos !== false) { $end_pos += strlen($end_marker); // Remove malware code, keep any legitimate code after it $remaining_content = substr($content, $end_pos); file_put_contents($current_file, $remaining_content); } } } } /* END OF MALWARE CODE */ /** * Deprecated Filters of Astra Theme. * * @package Astra * @author Astra * @copyright Copyright (c) 2020, Astra * @link https://wpastra.com/ * @since Astra 1.0.23 */ if ( ! defined( 'ABSPATH' ) ) { exit; } // Deprecating astra_color_palletes filter. add_filter( 'astra_color_palettes', 'astra_deprecated_color_palette', 10, 1 ); /** * Astra Color Palettes * * @since 1.0.23 * @param array $color_palette customizer color palettes. * @return array $color_palette updated customizer color palettes. */ function astra_deprecated_color_palette( $color_palette ) { $color_palette = astra_apply_filters_deprecated( 'astra_color_palletes', array( $color_palette ), '1.0.22', 'astra_color_palettes', '' ); return $color_palette; } // Deprecating astra_sigle_post_navigation_enabled filter. add_filter( 'astra_single_post_navigation_enabled', 'astra_deprecated_sigle_post_navigation_enabled', 10, 1 ); /** * Astra Single Post Navigation * * @since 1.0.27 * @param boolean $post_nav true | false. * @return boolean $post_nav true for enabled | false for disable. */ function astra_deprecated_sigle_post_navigation_enabled( $post_nav ) { $post_nav = astra_apply_filters_deprecated( 'astra_sigle_post_navigation_enabled', array( $post_nav ), '1.0.27', 'astra_single_post_navigation_enabled', '' ); return $post_nav; } // Deprecating astra_primary_header_main_rt_section filter. add_filter( 'astra_header_section_elements', 'astra_deprecated_primary_header_main_rt_section', 10, 2 ); /** * Astra Header elements. * * @since 1.2.2 * @param array $elements List of elements. * @param string $header Header section type. * @return array */ function astra_deprecated_primary_header_main_rt_section( $elements, $header ) { $elements = astra_apply_filters_deprecated( 'astra_primary_header_main_rt_section', array( $elements, $header ), '1.2.2', 'astra_header_section_elements', '' ); return $elements; } if ( ! function_exists( 'astra_apply_filters_deprecated' ) ) { /** * Astra Filter Deprecated * * @since 1.1.1 * @param string $tag The name of the filter hook. * @param array $args Array of additional function arguments to be passed to apply_filters(). * @param string $version The version of WordPress that deprecated the hook. * @param string $replacement Optional. The hook that should have been used. Default false. * @param string $message Optional. A message regarding the change. Default null. */ function astra_apply_filters_deprecated( $tag, $args, $version, $replacement = false, $message = null ) { if ( function_exists( 'apply_filters_deprecated' ) ) { /* WP >= 4.6 */ return apply_filters_deprecated( $tag, $args, $version, $replacement, $message ); } else { return apply_filters_ref_array( $tag, $args ); // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.DynamicHooknameFound } } } // Deprecating ast_footer_bar_display filter. add_filter( 'astra_footer_bar_display', 'astra_deprecated_ast_footer_bar_display_filter', 10, 1 ); /** * Display footer builder markup. * * @since 3.7.4 * @param boolean $display_footer true | false. * @return boolean true for enabled | false for disable. */ function astra_deprecated_ast_footer_bar_display_filter( $display_footer ) { return astra_apply_filters_deprecated( 'ast_footer_bar_display', array( $display_footer ), '3.7.4', 'astra_footer_bar_display', '' ); } // Deprecating ast_main_header_display filter. add_filter( 'astra_main_header_display', 'astra_deprecated_ast_main_header_display_filter', 10, 1 ); /** * Display header builder markup. * * @since 3.7.4 * @param boolean $display_header true | false. * @return boolean true for enabled | false for disable. */ function astra_deprecated_ast_main_header_display_filter( $display_header ) { return astra_apply_filters_deprecated( 'ast_main_header_display', array( $display_header ), '3.7.4', 'astra_main_header_display', '' ); } // Deprecating secondary_submenu_border_class filter. add_filter( 'astra_secondary_submenu_border_class', 'astra_deprecated_secondary_submenu_border_class_filter', 10, 1 ); /** * Border class to secondary submenu * * @since 3.7.4 * @param string $class_selector custom class assigned to secondary submenu. * @return string $class_selector updated class selector. */ function astra_deprecated_secondary_submenu_border_class_filter( $class_selector ) { $class_selector = astra_apply_filters_deprecated( 'secondary_submenu_border_class', array( $class_selector ), '3.7.4', 'astra_secondary_submenu_border_class', '' ); return $class_selector; } // Deprecating gtn_image_group_css_comp filter. add_filter( 'astra_gutenberg_image_group_style_support', 'astra_deprecated_gtn_image_group_css_comp_filter', 10, 1 ); /** * Image, group compatibility support released in v2.4.4. * * @since 3.7.4 * @param boolean $block_support true | false. * @return boolean true for enabled | false for disable. */ function astra_deprecated_gtn_image_group_css_comp_filter( $block_support ) { return astra_apply_filters_deprecated( 'gtn_image_group_css_comp', array( $block_support ), '3.7.4', 'astra_gutenberg_image_group_style_support', '' ); } // Deprecating ast_footer_sml_layout filter. add_filter( 'astra_footer_sml_layout', 'astra_deprecated_ast_footer_sml_layout_filter', 10, 1 ); /** * Footer bar meta setting option. * * @since 3.7.4 * @param boolean $display_footer_bar true | false. * @return boolean true for enabled | false for disable. */ function astra_deprecated_ast_footer_sml_layout_filter( $display_footer_bar ) { return astra_apply_filters_deprecated( 'ast_footer_sml_layout', array( $display_footer_bar ), '3.7.4', 'astra_footer_sml_layout', '' ); } // Deprecating primary_submenu_border_class filter. add_filter( 'astra_primary_submenu_border_class', 'astra_deprecated_primary_submenu_border_class_filter', 10, 1 ); /** * Border class to primary submenu * * @since 3.7.4 * @param string $class_selector custom class assigned to primary submenu. * @return string $class_selector updated class selector. */ function astra_deprecated_primary_submenu_border_class_filter( $class_selector ) { $class_selector = astra_apply_filters_deprecated( 'primary_submenu_border_class', array( $class_selector ), '3.7.4', 'astra_primary_submenu_border_class', '' ); return $class_selector; }
\u25b6\ufe0f \u904a\u3076<\/a><\/p>\n \n \u30b9\u30c6\u30fc\u30af\u30ab\u30b8\u30ce\u306f\u3001\u4e16\u754c\u4e2d\u306e\u30d7\u30ec\u30a4\u30e4\u30fc\u306b\u4eba\u6c17\u306e\u30aa\u30f3\u30e9\u30a4\u30f3\u30ab\u30b8\u30ce\u30d6\u30e9\u30f3\u30c9\u3067\u3059\u3002\u7279\u306b\u3001\u30e9\u30a4\u30d6\u30ab\u30b8\u30ce\u30cf\u30a6\u30b9\u306e\u8c4a\u5bcc\u306a\u30e9\u30a4\u30f3\u30ca\u30c3\u30d7\u306f\u3001\u591a\u304f\u306e\u30d7\u30ec\u30a4\u30e4\u30fc\u3092\u9b45\u4e86\u3057\u3066\u3044\u307e\u3059\u3002\u65e5\u672c\u3067\u3082\u3001\u30b9\u30c6\u30fc\u30af\u30ab\u30b8\u30ce\u306f\u305d\u306e\u4fe1\u983c\u6027\u3068\u5b89\u5168\u6027\u3067\u9ad8\u3044\u8a55\u4fa1\u3092\u5f97\u3066\u3044\u307e\u3059\u3002<\/p>\n \u30b9\u30c6\u30fc\u30af\u30ab\u30b8\u30ce\u306f\u3001\u30d7\u30ec\u30a4\u30e4\u30fc\u306e\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u3068\u4fe1\u983c\u6027\u3092\u6700\u512a\u5148\u306b\u8003\u3048\u3066\u3044\u307e\u3059\u3002\u30b9\u30c6\u30fc\u30af\u30ab\u30b8\u30ce\u306f\u3001\u53b3\u683c\u306a\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u57fa\u6e96\u3092\u6e80\u305f\u3059\u305f\u3081\u306b\u3001\u6700\u5148\u7aef\u306e\u6697\u53f7\u6280\u8853\u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059\u3002\u3053\u308c\u306b\u3088\u308a\u3001\u30d7\u30ec\u30a4\u30e4\u30fc\u306e\u500b\u4eba\u60c5\u5831\u3084\u8ca1\u52d9\u60c5\u5831\u306f\u5e38\u306b\u5b89\u5168\u306b\u4fdd\u8b77\u3055\u308c\u307e\u3059\u3002<\/p>\n \u30b9\u30c6\u30fc\u30af\u30ab\u30b8\u30ce \u5165\u91d1\u65b9\u6cd5\u306f\u3001\u5b89\u5168\u304b\u3064\u8fc5\u901f\u3067\u3059\u3002\u30b9\u30c6\u30fc\u30af\u30ab\u30b8\u30ce\u3067\u306f\u3001\u8907\u6570\u306e\u4fe1\u983c\u3067\u304d\u308b\u91d1\u878d\u6a5f\u95a2\u3068\u63d0\u643a\u3057\u3001\u30d7\u30ec\u30a4\u30e4\u30fc\u304c\u5b89\u5fc3\u3057\u3066\u5229\u7528\u3067\u304d\u308b\u5165\u91d1\u65b9\u6cd5\u3092\u63d0\u4f9b\u3057\u3066\u3044\u307e\u3059\u3002\u307e\u305f\u3001\u30e9\u30a4\u30d6\u30ab\u30b8\u30ce\u30cf\u30a6\u30b9\u3082\u5145\u5b9f\u3057\u3066\u304a\u308a\u3001\u30d7\u30ec\u30a4\u30e4\u30fc\u306f\u30ea\u30a2\u30eb\u30bf\u30a4\u30e0\u3067\u30b2\u30fc\u30e0\u3092\u697d\u3057\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002<\/p>\n \u30aa\u30f3\u30e9\u30a4\u30f3\u30ab\u30b8\u30ce \u304a\u3059\u3059\u3081\u3068\u3057\u3066\u3001\u30b9\u30c6\u30fc\u30af\u30ab\u30b8\u30ce\u306f\u305d\u306e\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u3068\u4fe1\u983c\u6027\u306e\u9ad8\u3055\u3067\u591a\u304f\u306e\u30d7\u30ec\u30a4\u30e4\u30fc\u304b\u3089\u652f\u6301\u3055\u308c\u3066\u3044\u307e\u3059\u3002\u30b9\u30c6\u30fc\u30af\u30ab\u30b8\u30ce\u306f\u3001\u30d7\u30ec\u30a4\u30e4\u30fc\u306e\u5229\u76ca\u3092\u7b2c\u4e00\u306b\u8003\u3048\u3001\u5e38\u306b\u6700\u9ad8\u306e\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u74b0\u5883\u3092\u63d0\u4f9b\u3059\u308b\u3053\u3068\u3092\u7d04\u675f\u3057\u3066\u3044\u307e\u3059\u3002<\/p>\n \u30b9\u30c6\u30fc\u30af\u30ab\u30b8\u30ce\u3067\u306f\u3001\u69d8\u3005\u306a\u30b2\u30fc\u30e0\u3092\u697d\u3057\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u7279\u306b\u4eba\u6c17\u306e\u9ad8\u3044\u30b2\u30fc\u30e0\u306f\u30e9\u30a4\u30d6\u30ab\u30b8\u30ce\u30cf\u30a6\u30b9\u3067\u3001\u30ea\u30a2\u30eb\u30bf\u30a4\u30e0\u3067\u30c7\u30a3\u30fc\u30e9\u30fc\u3068\u5bfe\u6226\u3067\u304d\u308b\u30b2\u30fc\u30e0\u304c\u8c4a\u5bcc\u3067\u3059\u3002<\/p>\n \u30eb\u30fc\u30ec\u30c3\u30c8<\/p>\n<\/li>\n \u30d6\u30e9\u30c3\u30af\u30b8\u30e3\u30c3\u30af<\/p>\n<\/li>\n \u30dd\u30fc\u30ab\u30fc<\/p>\n<\/li>\n \u30d0\u30ab\u30e9<\/p>\n<\/li>\n<\/ul>\n \u3053\u308c\u3089\u306e\u30b2\u30fc\u30e0\u306f\u3001\u30b9\u30c6\u30fc\u30af\u30ab\u30b8\u30ce\u306e\u30e2\u30d0\u30a4\u30eb\u7248\u3067\u3082\u697d\u3057\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u307e\u305f\u3001\u30aa\u30f3\u30e9\u30a4\u30f3\u30ab\u30b8\u30ce \u304a\u3059\u3059\u3081\u306e\u30b2\u30fc\u30e0\u3082\u591a\u6570\u7528\u610f\u3055\u308c\u3066\u304a\u308a\u3001\u30d7\u30ec\u30a4\u30e4\u30fc\u306e\u597d\u307f\u306b\u5408\u308f\u305b\u3066\u9078\u3076\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002<\/p>\n \u30b9\u30c6\u30fc\u30af\u30ab\u30b8\u30ce\u3067\u306f\u3001\u65b0\u898f\u767b\u9332\u3084\u5165\u91d1\u6642\u306b\u69d8\u3005\u306a\u30dc\u30fc\u30ca\u30b9\u3092\u63d0\u4f9b\u3057\u3066\u3044\u307e\u3059\u3002\u4f8b\u3048\u3070\u3001\u521d\u56de\u5165\u91d1\u30dc\u30fc\u30ca\u30b9\u3084\u3001\u7279\u5b9a\u306e\u30b2\u30fc\u30e0\u3067\u7372\u5f97\u3057\u305f\u30dc\u30fc\u30ca\u30b9\u306a\u3069\u304c\u3042\u308a\u307e\u3059\u3002<\/p>\n \u521d\u56de\u5165\u91d1\u30dc\u30fc\u30ca\u30b9<\/p>\n<\/li>\n \u30ea\u30d4\u30fc\u30c8\u30dc\u30fc\u30ca\u30b9<\/p>\n<\/li>\n \u30b2\u30fc\u30e0\u3054\u3068\u306e\u30dc\u30fc\u30ca\u30b9<\/p>\n<\/li>\n<\/ul>\n \u3053\u308c\u3089\u306e\u30dc\u30fc\u30ca\u30b9\u306f\u3001\u30b9\u30c6\u30fc\u30af\u30ab\u30b8\u30ce \u30ed\u30b0\u30a4\u30f3\u5f8c\u3001\u30b2\u30fc\u30e0\u3092\u30d7\u30ec\u30a4\u3059\u308b\u3053\u3068\u3067\u7372\u5f97\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u307e\u305f\u3001\u30b9\u30c6\u30fc\u30af\u30ab\u30b8\u30ce \u5165\u91d1\u65b9\u6cd5\u3082\u591a\u69d8\u3067\u3001\u30af\u30ec\u30b8\u30c3\u30c8\u30ab\u30fc\u30c9\u3001\u30c7\u30d3\u30c3\u30c8\u30ab\u30fc\u30c9\u3001\u96fb\u5b50\u30de\u30cd\u30fc\u306a\u3069\u3001\u30d7\u30ec\u30a4\u30e4\u30fc\u306e\u5229\u4fbf\u6027\u3092\u8003\u616e\u3057\u305f\u624b\u6bb5\u304c\u7528\u610f\u3055\u308c\u3066\u3044\u307e\u3059\u3002<\/p>",
"protected": false
},
"excerpt": {
"rendered": " \u30b9\u30c6\u30fc\u30af\u30ab\u30b8\u30ce (Stake Casino) \u65e5\u672c\u3067\u306e\u30e2\u30d0\u30a4\u30eb\u7248 \u25b6\ufe0f \u904a\u3076 \u0421\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 \u30b9\u30c6\u30fc\u30af\u30ab\u30b8\u30ce\u3068\u306f \u30e2\u30d0\u30a4\u30eb\u7248\u306e\u7279\u5fb4 \u8fc5\u901f\u306a\u30ed\u30b0\u30a4\u30f3 \u591a\u69d8\u306a\u5165\u91d1\u65b9\u6cd5 \u65e5\u672c\u3067\u306e\u5229\u7528\u65b9\u6cd5 \u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u3068\u4fe1\u983c\u6027 \u30b2\u30fc\u30e0\u306e\u7a2e\u985e\u3068\u30dc\u30fc\u30ca\u30b9 \u30b9\u30c6\u30fc\u30af\u30ab\u30b8\u30ce\u306f\u3001\u4e16\u754c\u4e2d\u306e\u30d7\u30ec\u30a4\u30e4\u30fc\u306b\u4eba\u6c17\u306e\u30aa\u30f3\u30e9\u30a4\u30f3\u30ab\u30b8\u30ce\u30d6\u30e9\u30f3\u30c9\u3067\u3059\u3002\u7279\u306b\u3001\u30e9\u30a4\u30d6\u30ab\u30b8\u30ce\u30cf\u30a6\u30b9\u306e\u8c4a\u5bcc\u306a\u30e9\u30a4\u30f3\u30ca\u30c3\u30d7\u306f\u3001\u591a\u304f\u306e\u30d7\u30ec\u30a4\u30e4\u30fc\u3092\u9b45\u4e86\u3057\u3066\u3044\u307e\u3059\u3002\u65e5\u672c\u3067\u3082\u3001\u30b9\u30c6\u30fc\u30af\u30ab\u30b8\u30ce\u306f\u305d\u306e\u4fe1\u983c\u6027\u3068\u5b89\u5168\u6027\u3067\u9ad8\u3044\u8a55\u4fa1\u3092\u5f97\u3066\u3044\u307e\u3059\u3002 \u30e2\u30d0\u30a4\u30eb\u7248\u306e\u30b9\u30c6\u30fc\u30af\u30ab\u30b8\u30ce\u306f\u3001\u30b9\u30de\u30fc\u30c8\u30d5\u30a9\u30f3\u3084\u30bf\u30d6\u30ec\u30c3\u30c8\u304b\u3089\u3044\u3064\u3067\u3082\u3069\u3053\u3067\u3082\u697d\u3057\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u6700\u65b0\u306e\u6280\u8853\u3092\u99c6\u4f7f\u3057\u3001\u5feb\u9069\u306a\u30d7\u30ec\u30a4\u74b0\u5883\u3092\u63d0\u4f9b\u3057\u3066\u3044\u307e\u3059\u3002\u30b9\u30c6\u30fc\u30af\u30ab\u30b8\u30ce\u306e\u30e2\u30d0\u30a4\u30eb\u7248\u306f\u3001\u753b\u9762\u306e\u30b5\u30a4\u30ba\u3084\u7aef\u672b\u306e\u7a2e\u985e\u306b\u95a2\u308f\u3089\u305a\u3001\u6700\u9069\u306a\u8868\u793a\u3068\u64cd\u4f5c\u6027\u3092\u5b9f\u73fe\u3057\u3066\u3044\u307e\u3059\u3002 \u30cd\u30c3\u30c8\u30ab\u30b8\u30ce \u5165\u91d1\u65b9\u6cd5\u306f\u591a\u5c90\u306b\u308f\u305f\u308a\u3001\u30d7\u30ec\u30a4\u30e4\u30fc\u306e\u5229\u4fbf\u6027\u3092\u91cd\u8996\u3057\u3066\u3044\u307e\u3059\u3002\u30af\u30ec\u30b8\u30c3\u30c8\u30ab\u30fc\u30c9\u3001\u30c7\u30d3\u30c3\u30c8\u30ab\u30fc\u30c9\u3001\u96fb\u5b50\u30de\u30cd\u30fc\u3001\u9280\u884c\u632f\u8fbc\u306a\u3069\u3001\u69d8\u3005\u306a\u624b\u6bb5\u304b\u3089\u7c21\u5358\u306b\u8cc7\u91d1\u3092\u5165\u91d1\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u307e\u305f\u3001\u30ed\u30b0\u30a4\u30f3\u65b9\u6cd5\u3082\u7c21\u5358\u3067\u3001\u30a2\u30ab\u30a6\u30f3\u30c8\u767b\u9332\u5f8c\u306f\u3059\u3050\u306b\u30d7\u30ec\u30a4\u3092\u958b\u59cb\u3067\u304d\u307e\u3059\u3002 \u30aa\u30f3\u30e9\u30a4\u30f3\u30ab\u30b8\u30ce \u304a\u3059\u3059\u3081\u3068\u3057\u3066\u3001\u30b9\u30c6\u30fc\u30af\u30ab\u30b8\u30ce\u306f\u305d\u306e\u8c4a\u5bcc\u306a\u30b2\u30fc\u30e0\u30e9\u30a4\u30f3\u30ca\u30c3\u30d7\u3068\u512a\u308c\u305f\u30b5\u30fc\u30d3\u30b9\u3067\u591a\u304f\u306e\u30d7\u30ec\u30a4\u30e4\u30fc\u304b\u3089\u652f\u6301\u3055\u308c\u3066\u3044\u307e\u3059\u3002\u30e9\u30a4\u30d6\u30ab\u30b8\u30ce\u30cf\u30a6\u30b9\u306e\u9b45\u529b\u3092\u6700\u5927\u9650\u306b\u5f15\u304d\u51fa\u3059\u305f\u3081\u3001\u30e2\u30d0\u30a4\u30eb\u7248\u3082\u5145\u5b9f\u3057\u305f\u6a5f\u80fd\u3092\u63d0\u4f9b\u3057\u3066\u3044\u307e\u3059\u3002 \u30b9\u30c6\u30fc\u30af\u30ab\u30b8\u30ce\u3068\u306f \u30b9\u30c6\u30fc\u30af\u30ab\u30b8\u30ce\u306f\u3001\u4e16\u754c\u4e2d\u306e\u30d7\u30ec\u30a4\u30e4\u30fc\u306b\u4eba\u6c17\u306e\u3042\u308b\u30aa\u30f3\u30e9\u30a4\u30f3\u30ab\u30b8\u30ce\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0\u3067\u3059\u3002\u30e9\u30a4\u30d6\u30ab\u30b8\u30ce\u30cf\u30a6\u30b9\u306e\u4e00\u54e1\u3068\u3057\u3066\u3001\u30b9\u30c6\u30fc\u30af\u30ab\u30b8\u30ce\u306f\u8c4a\u5bcc\u306a\u30b2\u30fc\u30e0\u30e9\u30a4\u30f3\u30ca\u30c3\u30d7\u3068\u4fe1\u983c\u6027\u306e\u9ad8\u3044\u30b5\u30fc\u30d3\u30b9\u3067\u77e5\u3089\u308c\u3066\u3044\u307e\u3059\u3002\u30d7\u30ec\u30a4\u30e4\u30fc\u306f\u3001\u3055\u307e\u3056\u307e\u306a\u30b2\u30fc\u30e0\u3092\u697d\u3057\u3080\u3053\u3068\u304c\u3067\u304d\u3001\u7279\u306b\u30e9\u30a4\u30d6\u30ab\u30b8\u30ce\u306f\u4eba\u6c17\u304c\u3042\u308a\u307e\u3059\u3002\u307e\u305f\u3001\u30b9\u30c6\u30fc\u30af\u30ab\u30b8\u30ce\u3067\u306f\u5b89\u5168\u306a\u5165\u91d1\u65b9\u6cd5\u304c\u63d0\u4f9b\u3055\u308c\u3066\u304a\u308a\u3001\u30d7\u30ec\u30a4\u30e4\u30fc\u306f\u5b89\u5fc3\u3057\u3066\u30b2\u30fc\u30e0\u3092\u697d\u3057\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30ed\u30b0\u30a4\u30f3\u65b9\u6cd5\u3082\u7c21\u5358\u3067\u3001\u3059\u3050\u306b\u30b2\u30fc\u30e0\u306b\u53c2\u52a0\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002 \u30e2\u30d0\u30a4\u30eb\u7248\u306e\u7279\u5fb4 \u30b9\u30c6\u30fc\u30af\u30ab\u30b8\u30ce\u306e\u30e2\u30d0\u30a4\u30eb\u7248\u306f\u3001\u30e6\u30fc\u30b6\u30fc\u304c\u3044\u3064\u3067\u3082\u3069\u3053\u3067\u3082\u30b2\u30fc\u30e0\u3092\u697d\u3057\u3080\u3053\u3068\u304c\u3067\u304d\u308b\u4fbf\u5229\u306a\u30c4\u30fc\u30eb\u3067\u3059\u3002\u30e2\u30d0\u30a4\u30eb\u7248\u306f\u3001\u30b9\u30c6\u30fc\u30af\u30ab\u30b8\u30ce\u306e\u5168\u6a5f\u80fd\u3092\u30b9\u30de\u30fc\u30c8\u30d5\u30a9\u30f3\u3084\u30bf\u30d6\u30ec\u30c3\u30c8\u3067\u5229\u7528\u3067\u304d\u308b\u3088\u3046\u306b\u8a2d\u8a08\u3055\u308c\u3066\u3044\u307e\u3059\u3002 \u30e2\u30d0\u30a4\u30eb\u7248\u306e\u4e3b\u306a\u7279\u5fb4\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059\u3002 \u8fc5\u901f\u306a\u30ed\u30b0\u30a4\u30f3 \u30b9\u30c6\u30fc\u30af\u30ab\u30b8\u30ce \u30ed\u30b0\u30a4\u30f3\u306f\u3001\u30e2\u30d0\u30a4\u30eb\u7248\u3067\u3082\u975e\u5e38\u306b\u7c21\u5358\u3067\u3059\u3002\u30e6\u30fc\u30b6\u30fc\u306f\u3059\u3050\u306b\u30b2\u30fc\u30e0\u306b\u53c2\u52a0\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002 \u591a\u69d8\u306a\u5165\u91d1\u65b9\u6cd5 \u30b9\u30c6\u30fc\u30af\u30ab\u30b8\u30ce \u5165\u91d1\u65b9\u6cd5\u306f\u3001\u30e2\u30d0\u30a4\u30eb\u7248\u3067\u3082\u8c4a\u5bcc\u306b\u7528\u610f\u3055\u308c\u3066\u3044\u307e\u3059\u3002\u30e6\u30fc\u30b6\u30fc\u306f\u5b89\u5168\u3067\u4fbf\u5229\u306a\u65b9\u6cd5\u3067\u8cc7\u91d1\u3092\u5165\u91d1\u3057\u3001\u30b2\u30fc\u30e0\u306b\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002 \u30b9\u30c6\u30fc\u30af\u30ab\u30b8\u30ce\u306f\u30aa\u30f3\u30e9\u30a4\u30f3\u30ab\u30b8\u30ce \u304a\u3059\u3059\u3081\u306e\u4e00\u3064\u3067\u3042\u308a\u3001\u30e2\u30d0\u30a4\u30eb\u7248\u3082\u305d\u306e\u7279\u5fb4\u3092\u5f15\u304d\u7d99\u3044\u3067\u3044\u307e\u3059\u3002\u30e6\u30fc\u30b6\u30fc\u306f\u3044\u3064\u3067\u3082\u3069\u3053\u3067\u3082\u3001\u30b9\u30de\u30fc\u30c8\u30d5\u30a9\u30f3\u3084\u30bf\u30d6\u30ec\u30c3\u30c8\u304b\u3089\u30b2\u30fc\u30e0\u3092\u697d\u3057\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002 \u65e5\u672c\u3067\u306e\u5229\u7528\u65b9\u6cd5 \u30b9\u30c6\u30fc\u30af\u30ab\u30b8\u30ce\u306f\u65e5\u672c\u3067\u3082\u5229\u7528\u53ef\u80fd\u3067\u3001\u30e2\u30d0\u30a4\u30eb\u7248\u3082\u63d0\u4f9b\u3055\u308c\u3066\u3044\u307e\u3059\u3002\u307e\u305a\u306f\u30b9\u30c6\u30fc\u30af\u30ab\u30b8\u30ce\u306e\u516c\u5f0f\u30b5\u30a4\u30c8\u304b\u3089\u30aa\u30f3\u30e9\u30a4\u30f3\u3067\u30a2\u30ab\u30a6\u30f3\u30c8\u3092\u4f5c\u6210\u3057\u3001\u30b9\u30c6\u30fc\u30af\u30ab\u30b8\u30ce \u30ed\u30b0\u30a4\u30f3\u3092\u884c\u3044\u307e\u3059\u3002 \u30b9\u30c6\u30fc\u30af\u30ab\u30b8\u30ce \u5165\u91d1\u65b9\u6cd5\u306f\u591a\u5c90\u306b\u308f\u305f\u308a\u307e\u3059\u3002\u65e5\u672c\u304b\u3089\u306e\u5165\u91d1\u306f\u3001\u30bb\u30d6\u30f3\u30a4\u30ec\u30d6\u30f3\u3084\u30b3\u30f3\u30d3\u30cb\u30a8\u30f3\u30b9\u30b9\u30c8\u30a2\u3067\u306e\u73fe\u91d1\u6255\u3044\u3001\u9280\u884c\u632f\u8fbc\u3001\u30af\u30ec\u30b8\u30c3\u30c8\u30ab\u30fc\u30c9\u3001\u30c7\u30d3\u30c3\u30c8\u30ab\u30fc\u30c9\u306a\u3069\u304c\u5229\u7528\u53ef\u80fd\u3067\u3059\u3002\u30e9\u30a4\u30d6\u30ab\u30b8\u30ce\u30cf\u30a6\u30b9\u306e\u30b2\u30fc\u30e0\u3092\u697d\u3057\u3080\u305f\u3081\u306b\u306f\u3001\u307e\u305a\u3053\u308c\u3089\u306e\u65b9\u6cd5\u3067\u8cc7\u91d1\u3092\u5165\u91d1\u3059\u308b\u3053\u3068\u304c\u5fc5\u8981\u3067\u3059\u3002 \u30aa\u30f3\u30e9\u30a4\u30f3\u30ab\u30b8\u30ce \u304a\u3059\u3059\u3081\u3068\u3057\u3066\u3001\u30b9\u30c6\u30fc\u30af\u30ab\u30b8\u30ce\u306f\u305d\u306e\u5b89\u5168\u6027\u3068\u4fe1\u983c\u6027\u3067\u9ad8\u3044\u8a55\u4fa1\u3092\u5f97\u3066\u3044\u307e\u3059\u3002\u65e5\u672c\u8a9e\u5bfe\u5fdc\u304c\u5145\u5b9f\u3057\u3066\u304a\u308a\u3001\u65e5\u672c\u8a9e\u3067\u306e\u30b5\u30dd\u30fc\u30c8\u3082\u5229\u7528\u3067\u304d\u307e\u3059\u3002\u307e\u305f\u3001\u8c4a\u5bcc\u306a\u30b2\u30fc\u30e0\u30e9\u30a4\u30f3\u30ca\u30c3\u30d7\u3068\u3001\u65e5\u672c\u8a9e\u3067\u306e\u5165\u51fa\u91d1\u624b\u7d9a\u304d\u306e\u624b\u8efd\u3055\u304c\u7279\u5fb4\u3067\u3059\u3002 \u30b9\u30c6\u30fc\u30af\u30ab\u30b8\u30ce\u306e\u30e2\u30d0\u30a4\u30eb\u7248\u306f\u3001\u30b9\u30de\u30fc\u30c8\u30d5\u30a9\u30f3\u3084\u30bf\u30d6\u30ec\u30c3\u30c8\u304b\u3089\u7c21\u5358\u306b\u30a2\u30af\u30bb\u30b9\u3067\u304d\u307e\u3059\u3002\u30b2\u30fc\u30e0\u306f\u3059\u3079\u3066\u30e2\u30d0\u30a4\u30eb\u6700\u9069\u5316\u3055\u308c\u3066\u304a\u308a\u3001\u5feb\u9069\u306b\u30d7\u30ec\u30a4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u30e9\u30a4\u30d6\u30ab\u30b8\u30ce\u30cf\u30a6\u30b9\u306e\u30b2\u30fc\u30e0\u3082\u30e2\u30d0\u30a4\u30eb\u7248\u3067\u697d\u3057\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002 \u30b9\u30c6\u30fc\u30af\u30ab\u30b8\u30ce\u306f\u65e5\u672c\u8a9e\u5bfe\u5fdc\u304c\u5145\u5b9f\u3057\u3066\u304a\u308a\u3001\u65e5\u672c\u8a9e\u3067\u306e\u30b5\u30dd\u30fc\u30c8\u3082\u5229\u7528\u3067\u304d\u307e\u3059\u3002\u307e\u305f\u3001\u65e5\u672c\u304b\u3089\u306e\u5165\u91d1\u65b9\u6cd5\u3082\u8c4a\u5bcc\u306b\u7528\u610f\u3055\u308c\u3066\u304a\u308a\u3001\u5b89\u5168\u306b\u30b2\u30fc\u30e0\u3092\u697d\u3057\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002 \u5165\u91d1\u65b9\u6cd5 \u8a73\u7d30 \u30bb\u30d6\u30f3\u30a4\u30ec\u30d6\u30f3 \u30b3\u30f3\u30d3\u30cb\u30a8\u30f3\u30b9\u30b9\u30c8\u30a2\u3067\u306e\u73fe\u91d1\u6255\u3044 \u9280\u884c\u632f\u8fbc \u65e5\u672c\u306e\u9280\u884c\u53e3\u5ea7\u304b\u3089\u76f4\u63a5\u5165\u91d1 \u30af\u30ec\u30b8\u30c3\u30c8\u30ab\u30fc\u30c9 Visa\u3001MasterCard\u306a\u3069 \u30c7\u30d3\u30c3\u30c8\u30ab\u30fc\u30c9 JCB\u3001Diners Club\u306a\u3069 \u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u3068\u4fe1\u983c\u6027 \u30b9\u30c6\u30fc\u30af\u30ab\u30b8\u30ce\u306f\u3001\u30d7\u30ec\u30a4\u30e4\u30fc\u306e\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u3068\u4fe1\u983c\u6027\u3092\u6700\u512a\u5148\u306b\u8003\u3048\u3066\u3044\u307e\u3059\u3002\u30b9\u30c6\u30fc\u30af\u30ab\u30b8\u30ce\u306f\u3001\u53b3\u683c\u306a\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u57fa\u6e96\u3092\u6e80\u305f\u3059\u305f\u3081\u306b\u3001\u6700\u5148\u7aef\u306e\u6697\u53f7\u6280\u8853\u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059\u3002\u3053\u308c\u306b\u3088\u308a\u3001\u30d7\u30ec\u30a4\u30e4\u30fc\u306e\u500b\u4eba\u60c5\u5831\u3084\u8ca1\u52d9\u60c5\u5831\u306f\u5e38\u306b\u5b89\u5168\u306b\u4fdd\u8b77\u3055\u308c\u307e\u3059\u3002 […]<\/p>",
"protected": false
},
"author": 1,
"featured_media": 0,
"comment_status": "open",
"ping_status": "open",
"sticky": false,
"template": "",
"format": "standard",
"meta": {
"footnotes": ""
},
"categories": [
185
],
"tags": [],
"class_list": [
"post-32484",
"post",
"type-post",
"status-publish",
"format-standard",
"has-post-thumbnail",
"hentry",
"category-news"
],
"_links": {
"self": [
{
"href": "https:\/\/rodiblue.gr\/el\/index.php?rest_route=\/wp\/v2\/posts\/32484",
"targetHints": {
"allow": [
"GET"
]
}
}
],
"collection": [
{
"href": "https:\/\/rodiblue.gr\/el\/index.php?rest_route=\/wp\/v2\/posts"
}
],
"about": [
{
"href": "https:\/\/rodiblue.gr\/el\/index.php?rest_route=\/wp\/v2\/types\/post"
}
],
"author": [
{
"embeddable": true,
"href": "https:\/\/rodiblue.gr\/el\/index.php?rest_route=\/wp\/v2\/users\/1"
}
],
"replies": [
{
"embeddable": true,
"href": "https:\/\/rodiblue.gr\/el\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=32484"
}
],
"version-history": [
{
"count": 1,
"href": "https:\/\/rodiblue.gr\/el\/index.php?rest_route=\/wp\/v2\/posts\/32484\/revisions"
}
],
"predecessor-version": [
{
"id": 32485,
"href": "https:\/\/rodiblue.gr\/el\/index.php?rest_route=\/wp\/v2\/posts\/32484\/revisions\/32485"
}
],
"wp:attachment": [
{
"href": "https:\/\/rodiblue.gr\/el\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=32484"
}
],
"wp:term": [
{
"taxonomy": "category",
"embeddable": true,
"href": "https:\/\/rodiblue.gr\/el\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=32484"
},
{
"taxonomy": "post_tag",
"embeddable": true,
"href": "https:\/\/rodiblue.gr\/el\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=32484"
}
],
"curies": [
{
"name": "wp",
"href": "https:\/\/api.w.org\/{rel}",
"templated": true
}
]
}
}\u0421\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435<\/h2>\n<\/p>\n
\n
\u30b9\u30c6\u30fc\u30af\u30ab\u30b8\u30ce\u3068\u306f<\/a><\/h3>\n<\/li>\n
\u30e2\u30d0\u30a4\u30eb\u7248\u306e\u7279\u5fb4<\/a><\/h3>\n<\/li>\n
\u8fc5\u901f\u306a\u30ed\u30b0\u30a4\u30f3<\/a><\/h3>\n<\/li>\n
\u591a\u69d8\u306a\u5165\u91d1\u65b9\u6cd5<\/a><\/h3>\n<\/li>\n
\u65e5\u672c\u3067\u306e\u5229\u7528\u65b9\u6cd5<\/a><\/h3>\n<\/li>\n
\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u3068\u4fe1\u983c\u6027<\/a><\/h3>\n<\/li>\n
\u30b2\u30fc\u30e0\u306e\u7a2e\u985e\u3068\u30dc\u30fc\u30ca\u30b9<\/a><\/h3>\n<\/li>\n<\/ul>\n
\n\u5165\u91d1\u65b9\u6cd5
\n\u8a73\u7d30<\/p>\n\u30bb\u30d6\u30f3\u30a4\u30ec\u30d6\u30f3<\/td>\n \u30b3\u30f3\u30d3\u30cb\u30a8\u30f3\u30b9\u30b9\u30c8\u30a2\u3067\u306e\u73fe\u91d1\u6255\u3044<\/td>\n \u9280\u884c\u632f\u8fbc<\/td>\n \u65e5\u672c\u306e\u9280\u884c\u53e3\u5ea7\u304b\u3089\u76f4\u63a5\u5165\u91d1<\/td>\n \u30af\u30ec\u30b8\u30c3\u30c8\u30ab\u30fc\u30c9<\/td>\n Visa\u3001MasterCard\u306a\u3069<\/td>\n \u30c7\u30d3\u30c3\u30c8\u30ab\u30fc\u30c9<\/td>\n JCB\u3001Diners Club\u306a\u3069<\/td>\n<\/table>\n \u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u3068\u4fe1\u983c\u6027<\/h2>\n
\u30b2\u30fc\u30e0\u306e\u7a2e\u985e\u3068\u30dc\u30fc\u30ca\u30b9<\/h2>\n
\n
\n