{"id":2156,"date":"2023-09-28T17:18:30","date_gmt":"2023-09-28T17:18:30","guid":{"rendered":"https:\/\/exceladvisor.org\/tr\/uyumayi-bekle\/"},"modified":"2023-12-10T06:07:28","modified_gmt":"2023-12-10T06:07:28","slug":"uyumayi-bekle","status":"publish","type":"page","link":"https:\/\/exceladvisor.org\/tr\/uyumayi-bekle\/","title":{"rendered":"Vba&#39;da bekleme ve uyku komutlar\u0131 nas\u0131l kullan\u0131l\u0131r?"},"content":{"rendered":"<div class=\"excel-icerikten-once\" id=\"excel-2316412037\"><script type=\"text\/javascript\">\r\n\tatOptions = {\r\n\t\t'key' : 'c1158f160081d6540a8409e6925dab94',\r\n\t\t'format' : 'iframe',\r\n\t\t'height' : 250,\r\n\t\t'width' : 300,\r\n\t\t'params' : {}\r\n\t};\r\n<\/script>\r\n<script type=\"text\/javascript\" src=\"\/\/www.highperformanceformat.com\/c1158f160081d6540a8409e6925dab94\/invoke.js\"><\/script><\/div> <h2 id=\"0-vba-wait-command\" class=\"wp-block-heading\">VBA bekleme komutu<\/h2><p> VBA&#8217;da WAIT komutu (y\u00f6ntemi), Excel&#8217;de yapt\u0131\u011f\u0131n\u0131z t\u00fcm etkinlikleri belirli bir s\u00fcre veya belirli bir zamana kadar beklemenize yard\u0131mc\u0131 olur. Basit\u00e7e s\u00f6ylemek gerekirse, VBA&#8217;n\u0131n birka\u00e7 saniye, dakika, hatta saatlerce veya sabit bir s\u00fcreye kadar beklemesini sa\u011flayabilirsiniz. Belirtmenizi gerektiren bir arg\u00fcman\u0131 var.<\/p><h2 id=\"1-steps-to-use-vba-wait\" class=\"wp-block-heading\"> VBA Wait&#8217;i kullanma ad\u0131mlar\u0131<\/h2><ol type=\"1\"><li> \u00d6ncelikle &#8220;Uygulama&#8221; anahtar kelimesini kullan\u0131n ve \u00f6zelliklerin ve y\u00f6ntemlerin listesini almak i\u00e7in bir nokta (.) yaz\u0131n.<\/li><li> Bundan sonra \u201cBekle\u201d y\u00f6ntemini se\u00e7in veya dokunun.<\/li><li> \u015eimdi VBA&#8217;ya ne kadar beklemek istedi\u011finizi s\u00f6ylemek i\u00e7in &#8220;Zaman&#8221; ba\u011f\u0131ms\u0131z de\u011fi\u015fkenini belirtin.<\/li><li> Sonunda, Excel&#8217;deki t\u00fcm etkinlikleri s\u0131raya koymak i\u00e7in kodu \u00e7al\u0131\u015ft\u0131r\u0131n. <\/li><\/ol><div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-55797\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/01-commande-dattente-vba.png\" sizes=\"auto, \" srcset=\"\" alt=\"vba-bekleme komutu\" width=\"702\" height=\"311\"><\/figure><\/div><p> Bu kodda, VBA&#8217;ya kodu \u00e7al\u0131\u015ft\u0131rd\u0131\u011f\u0131n\u0131z andan itibaren on saniye beklemesini bildirmek i\u00e7in <a href=\"https:\/\/exceladvisor.org\/tr\/simdi\/\">NOW<\/a> ve <a href=\"https:\/\/exceladvisor.org\/tr\/zaman-degeri\/\">TIMEVALUE<\/a> ( <a href=\"https:\/\/exceladvisor.org\/tr\/islevler\/\">VBA \u0130\u015flevleri<\/a> ) ifadelerini kulland\u0131n\u0131z. B\u00f6ylece, on saniye doldu\u011funda, IF ifadesi durumu test edecek ve size &#8220;Bekle&#8221; mesaj\u0131n\u0131 i\u00e7eren bir mesaj kutusu g\u00f6stererek \u00e7al\u0131\u015facakt\u0131r.<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Sub vba_wait_example() If Application.Wait(Now + TimeValue(\"00:00:10\")) = True Then MsgBox \"Wait Over\" End If End Sub<\/code><\/pre><p> Excel&#8217;in t\u00fcm etkinlikleri belirli bir zamana kadar beklemesine izin vermek i\u00e7in Bekleme y\u00f6ntemini de kullanabilirsiniz. A\u015fa\u011f\u0131daki kod saat 13:00&#8217;e kadar bekliyor. Yani sistemimde \u015fu anda saat 12:52 oldu\u011fundan bu sat\u0131r kodu sonraki 8 dakikay\u0131 bekletecek.<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Application.Wait \"13:00:00\"<\/code><\/pre><p class=\"qt-tip\"> <strong>Not:<\/strong> Bekleme y\u00f6ntemiyle yaln\u0131zca en az bir saniye bekleyebilirsiniz.<\/p><h2 id=\"2-vba-sleep\" class=\"wp-block-heading\"> VBA Uykusu<\/h2><p> Uyku, <a href=\"https:\/\/exceladvisor.org\/tr\/makro-2yi-calistir\/\">makro \u00e7al\u0131\u015ft\u0131r\u0131rken<\/a> duraklatman\u0131za veya gecikme eklemenize yard\u0131mc\u0131 olabilecek bir Windows i\u015flevidir ( <em>Windows DLL dosyalar\u0131 alt\u0131nda; bu i\u015flevi bir kod ifadesi kullanarak i\u00e7e aktarman\u0131z gerekir<\/em> ). Bu fonksiyonda zaman\u0131 milisaniye cinsinden belirtebilirsiniz, ancak her \u015feyi duraklatt\u0131ktan sonra uyku fonksiyonunu durduramazs\u0131n\u0131z.<\/p><h2 id=\"3-use-sleep-function-in-vba\" class=\"wp-block-heading\"> VBA&#8217;da uyku i\u015flevini kullan\u0131n<\/h2><ol type=\"1\"><li> \u00d6ncelikle \u201c <em>kernel32 k\u00fct\u00fcphanesinden<\/em> \u201d uyku fonksiyonunu i\u00e7e aktarmak i\u00e7in code ifadesini kullanman\u0131z gerekmektedir.<\/li><li> Daha sonra e\u011fer 64-bit Excel kullan\u0131yorsan\u0131z \u201cPtrSafe\u201d ifadesini ekledi\u011finizden emin olman\u0131z gerekiyor.<\/li><li> Daha sonra uyku i\u015flevini kodla \u00e7a\u011f\u0131rman\u0131z gerekir.<\/li><li> Sonunda kodu geciktirmek istedi\u011finiz s\u00fcreyi (milisaniye) belirtin. <\/li><\/ol><div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-55798\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/02-fonction-de-veille-dans-vba.png\" sizes=\"auto, \" srcset=\"\" alt=\"\" width=\"891\" height=\"391\"><\/figure><\/div><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">If VBA7 Then ' <code>For 64-Bit versions of Excel<\/code> <code>Public Declare PtrSafe Sub Sleep Lib \"kernel32\" (ByVal dwMilliseconds As LongPtr)<\/code> Else 'For 32-Bit versions of Excel Public Declare Sub Sleep Lib \"kernel32\" (ByVal dwMilliseconds As Long) End If Sub vba_sleep() Sleep (10000) 'add code here MsgBox \"Finished\" End Sub<\/code><\/pre><p> Yukar\u0131daki kodda 10.000 milisaniyeniz var, bu da 10 saniyeye e\u015fittir. Bu kodu \u00e7al\u0131\u015ft\u0131rd\u0131\u011f\u0131n\u0131zda, kodu 10 saniye geciktirecek ve ard\u0131ndan bir mesaj kutusu g\u00f6sterecektir.<\/p><p class=\"qt-tip\"> <strong>Not:<\/strong> Uyku fonksiyonunu kulland\u0131\u011f\u0131n\u0131zda Excel&#8217;deki her \u015feyi ayarlad\u0131\u011f\u0131n\u0131z s\u00fcre boyunca durdurur, hatta bozamazs\u0131n\u0131z. <a href=\"https:\/\/docs.microsoft.com\/en-us\/previous-versions\/office\/developer\/office-2010\/ee691831(v=office.14)?redirectedfrom=MSDN\" target=\"_blank\" rel=\"noreferrer noopener\">32 bit ve 64 bit s\u00fcr\u00fcmler aras\u0131ndaki uyumluluk<\/a> konusunda Microsoft&#8217;un bu ba\u011flant\u0131s\u0131na g\u00f6z atmay\u0131 unutmay\u0131n.<\/p><div class=\"gb-container gb-container-4db6181c gb-container-mt\"> <a class=\"gb-button gb-button-c5897111 gb-button-text gb-button-mt-button\" href=\"https:\/\/exceladvisor.org\/tr\/vba\/\">VBA nedir<\/a><h2 class=\"gb-headline gb-headline-665e5f6b gb-headline-text gb-headline-mt-heading\"> \u0130lgili e\u011fitimler <\/h2><div class=\"gb-grid-wrapper gb-grid-wrapper-a20baf7c gb-grid-wrapper-mt-grid\"><div class=\"gb-grid-column gb-grid-column-65ddf67e\"><div class=\"gb-container gb-container-65ddf67e\"><ul><li> <a href=\"https:\/\/exceladvisor.org\/tr\/yinelenen-degerleri-vurgula\/\">VBA&#8217;y\u0131 kullanarak yinelenen de\u011ferleri vurgulay\u0131n<\/a><\/li><li> <a href=\"https:\/\/exceladvisor.org\/tr\/kopru-baglantisini-cikar\/\">K\u00f6pr\u00fc adresini (URL) VBA&#8217;dan \u00e7\u0131kar\u0131n<\/a><\/li><li> <a href=\"https:\/\/exceladvisor.org\/tr\/giris-alani\/\">VBA&#8217;daki giri\u015f kutusu<\/a><\/li><li> <a href=\"https:\/\/exceladvisor.org\/tr\/metin-dosyalari\/\">VBA bir metin dosyas\u0131 olu\u015fturma ve yazma<\/a><\/li><li> <a href=\"https:\/\/exceladvisor.org\/tr\/ekran-guncellemesi\/\">VBA Ekran G\u00fcncellemesi<\/a> <\/li><\/ul><\/div><\/div><div class=\"gb-grid-column gb-grid-column-50067b57\"><div class=\"gb-container gb-container-50067b57\"><\/div><\/div><\/div><\/div>","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"open","ping_status":"closed","template":"","meta":{"ub_ctt_via":"","footnotes":""},"class_list":["post-2156","page","type-page","status-publish","hentry"],"featured_image_src":null,"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>\u25b7 VBA&#039;da bekleme ve uyku komutlar\u0131 nas\u0131l kullan\u0131l\u0131r?<\/title>\n<meta name=\"description\" content=\"Bu e\u011fitimde, Excel&#039;deki t\u00fcm etkinlikleri beklemeye almak i\u00e7in bekleme ve uyku komutunun nas\u0131l kullan\u0131laca\u011f\u0131n\u0131 \u00f6\u011freneceksiniz.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/exceladvisor.org\/tr\/uyumayi-bekle\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u25b7 VBA&#039;da bekleme ve uyku komutlar\u0131 nas\u0131l kullan\u0131l\u0131r?\" \/>\n<meta property=\"og:description\" content=\"Bu e\u011fitimde, Excel&#039;deki t\u00fcm etkinlikleri beklemeye almak i\u00e7in bekleme ve uyku komutunun nas\u0131l kullan\u0131laca\u011f\u0131n\u0131 \u00f6\u011freneceksiniz.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/exceladvisor.org\/tr\/uyumayi-bekle\/\" \/>\n<meta property=\"og:site_name\" content=\"Excel Advisor\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-10T06:07:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/01-commande-dattente-vba.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Tahmini okuma s\u00fcresi\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 dakika\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/exceladvisor.org\/tr\/uyumayi-bekle\/\",\"url\":\"https:\/\/exceladvisor.org\/tr\/uyumayi-bekle\/\",\"name\":\"\u25b7 VBA&#39;da bekleme ve uyku komutlar\u0131 nas\u0131l kullan\u0131l\u0131r?\",\"isPartOf\":{\"@id\":\"https:\/\/exceladvisor.org\/tr\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/exceladvisor.org\/tr\/uyumayi-bekle\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/exceladvisor.org\/tr\/uyumayi-bekle\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/01-commande-dattente-vba.png\",\"datePublished\":\"2023-09-28T17:18:30+00:00\",\"dateModified\":\"2023-12-10T06:07:28+00:00\",\"description\":\"Bu e\u011fitimde, Excel&#39;deki t\u00fcm etkinlikleri beklemeye almak i\u00e7in bekleme ve uyku komutunun nas\u0131l kullan\u0131laca\u011f\u0131n\u0131 \u00f6\u011freneceksiniz.\",\"breadcrumb\":{\"@id\":\"https:\/\/exceladvisor.org\/tr\/uyumayi-bekle\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/exceladvisor.org\/tr\/uyumayi-bekle\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"tr\",\"@id\":\"https:\/\/exceladvisor.org\/tr\/uyumayi-bekle\/#primaryimage\",\"url\":\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/01-commande-dattente-vba.png\",\"contentUrl\":\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/01-commande-dattente-vba.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/exceladvisor.org\/tr\/uyumayi-bekle\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ev\",\"item\":\"https:\/\/exceladvisor.org\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Vba&#39;da bekleme ve uyku komutlar\u0131 nas\u0131l kullan\u0131l\u0131r?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/exceladvisor.org\/tr\/#website\",\"url\":\"https:\/\/exceladvisor.org\/tr\/\",\"name\":\"Excel Advisor\",\"description\":\"Veri hakimiyetine y\u00f6nelik nihai rehberiniz!\",\"publisher\":{\"@id\":\"https:\/\/exceladvisor.org\/tr\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/exceladvisor.org\/tr\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"tr\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/exceladvisor.org\/tr\/#organization\",\"name\":\"Excel Advisor\",\"url\":\"https:\/\/exceladvisor.org\/tr\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"tr\",\"@id\":\"https:\/\/exceladvisor.org\/tr\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/exceladvisor.org\/tr\/wp-content\/uploads\/2023\/12\/exceladvisor.org_.png\",\"contentUrl\":\"https:\/\/exceladvisor.org\/tr\/wp-content\/uploads\/2023\/12\/exceladvisor.org_.png\",\"width\":105,\"height\":36,\"caption\":\"Excel Advisor\"},\"image\":{\"@id\":\"https:\/\/exceladvisor.org\/tr\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\u25b7 VBA&#39;da bekleme ve uyku komutlar\u0131 nas\u0131l kullan\u0131l\u0131r?","description":"Bu e\u011fitimde, Excel&#39;deki t\u00fcm etkinlikleri beklemeye almak i\u00e7in bekleme ve uyku komutunun nas\u0131l kullan\u0131laca\u011f\u0131n\u0131 \u00f6\u011freneceksiniz.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/exceladvisor.org\/tr\/uyumayi-bekle\/","og_locale":"tr_TR","og_type":"article","og_title":"\u25b7 VBA&#39;da bekleme ve uyku komutlar\u0131 nas\u0131l kullan\u0131l\u0131r?","og_description":"Bu e\u011fitimde, Excel&#39;deki t\u00fcm etkinlikleri beklemeye almak i\u00e7in bekleme ve uyku komutunun nas\u0131l kullan\u0131laca\u011f\u0131n\u0131 \u00f6\u011freneceksiniz.","og_url":"https:\/\/exceladvisor.org\/tr\/uyumayi-bekle\/","og_site_name":"Excel Advisor","article_modified_time":"2023-12-10T06:07:28+00:00","og_image":[{"url":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/01-commande-dattente-vba.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Tahmini okuma s\u00fcresi":"3 dakika"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/exceladvisor.org\/tr\/uyumayi-bekle\/","url":"https:\/\/exceladvisor.org\/tr\/uyumayi-bekle\/","name":"\u25b7 VBA&#39;da bekleme ve uyku komutlar\u0131 nas\u0131l kullan\u0131l\u0131r?","isPartOf":{"@id":"https:\/\/exceladvisor.org\/tr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/exceladvisor.org\/tr\/uyumayi-bekle\/#primaryimage"},"image":{"@id":"https:\/\/exceladvisor.org\/tr\/uyumayi-bekle\/#primaryimage"},"thumbnailUrl":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/01-commande-dattente-vba.png","datePublished":"2023-09-28T17:18:30+00:00","dateModified":"2023-12-10T06:07:28+00:00","description":"Bu e\u011fitimde, Excel&#39;deki t\u00fcm etkinlikleri beklemeye almak i\u00e7in bekleme ve uyku komutunun nas\u0131l kullan\u0131laca\u011f\u0131n\u0131 \u00f6\u011freneceksiniz.","breadcrumb":{"@id":"https:\/\/exceladvisor.org\/tr\/uyumayi-bekle\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/exceladvisor.org\/tr\/uyumayi-bekle\/"]}]},{"@type":"ImageObject","inLanguage":"tr","@id":"https:\/\/exceladvisor.org\/tr\/uyumayi-bekle\/#primaryimage","url":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/01-commande-dattente-vba.png","contentUrl":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/01-commande-dattente-vba.png"},{"@type":"BreadcrumbList","@id":"https:\/\/exceladvisor.org\/tr\/uyumayi-bekle\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ev","item":"https:\/\/exceladvisor.org\/tr\/"},{"@type":"ListItem","position":2,"name":"Vba&#39;da bekleme ve uyku komutlar\u0131 nas\u0131l kullan\u0131l\u0131r?"}]},{"@type":"WebSite","@id":"https:\/\/exceladvisor.org\/tr\/#website","url":"https:\/\/exceladvisor.org\/tr\/","name":"Excel Advisor","description":"Veri hakimiyetine y\u00f6nelik nihai rehberiniz!","publisher":{"@id":"https:\/\/exceladvisor.org\/tr\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/exceladvisor.org\/tr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"tr"},{"@type":"Organization","@id":"https:\/\/exceladvisor.org\/tr\/#organization","name":"Excel Advisor","url":"https:\/\/exceladvisor.org\/tr\/","logo":{"@type":"ImageObject","inLanguage":"tr","@id":"https:\/\/exceladvisor.org\/tr\/#\/schema\/logo\/image\/","url":"https:\/\/exceladvisor.org\/tr\/wp-content\/uploads\/2023\/12\/exceladvisor.org_.png","contentUrl":"https:\/\/exceladvisor.org\/tr\/wp-content\/uploads\/2023\/12\/exceladvisor.org_.png","width":105,"height":36,"caption":"Excel Advisor"},"image":{"@id":"https:\/\/exceladvisor.org\/tr\/#\/schema\/logo\/image\/"}}]}},"yoast_meta":{"yoast_wpseo_title":"","yoast_wpseo_metadesc":"","yoast_wpseo_canonical":""},"_links":{"self":[{"href":"https:\/\/exceladvisor.org\/tr\/wp-json\/wp\/v2\/pages\/2156","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/exceladvisor.org\/tr\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/exceladvisor.org\/tr\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/exceladvisor.org\/tr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/exceladvisor.org\/tr\/wp-json\/wp\/v2\/comments?post=2156"}],"version-history":[{"count":1,"href":"https:\/\/exceladvisor.org\/tr\/wp-json\/wp\/v2\/pages\/2156\/revisions"}],"predecessor-version":[{"id":2932,"href":"https:\/\/exceladvisor.org\/tr\/wp-json\/wp\/v2\/pages\/2156\/revisions\/2932"}],"wp:attachment":[{"href":"https:\/\/exceladvisor.org\/tr\/wp-json\/wp\/v2\/media?parent=2156"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}