id
stringlengths
40
40
text
stringlengths
29
2.03k
original_text
stringlengths
3
154k
subdomain
stringclasses
20 values
metadata
dict
emb
sequencelengths
1.02k
1.02k
662f3eb870ed1d23374386f1d7f06ecd5239ef64
Wordpress Stackexchange Q: Woocommerce: show default variation price is products list? Is there any way to force to show the price of the Product Variation I set as defaul in product page settings, instead of lower and higher prices? I've got this code to show just one price, but the shown price is not the price of the default variation: /******************************* SHOW ONLY ONE PRICE FOR VARIATIONS *********************************/ add_filter('woocommerce_variable_price_html', 'custom_variation_price', 10, 2); function custom_variation_price( $price, $product ) { $price = ''; $price .= woocommerce_price($product->get_price()); return $price; } A: Try this code: add_filter('woocommerce_variable_price_html', 'custom_variation_price', 10, 2); function custom_variation_price( $price, $product ) { $available_variations = $product->get_available_variations(); $selectedPrice = ''; $dump = ''; foreach ( $available_variations as $variation ) { // $dump = $dump . '<pre>' . var_export($variation['attributes'], true) . '</pre>'; $isDefVariation=false; foreach($product->get_default_attributes() as $key=>$val){ // $dump = $dump . '<pre>' . var_export($key, true) . '</pre>'; // $dump = $dump . '<pre>' . var_export($val, true) . '</pre>'; if($variation['attributes']['attribute_'.$key]==$val){ $isDefVariation=true; } } if($isDefVariation){ $price = $variation['display_price']; } } $selectedPrice = wc_price($price); // $dump = $dump . '<pre>' . var_export($available_variations, true) . '</pre>'; return $selectedPrice . $dump; }
Q: Woocommerce: show default variation price is products list? Is there any way to force to show the price of the Product Variation I set as defaul in product page settings, instead of lower and higher prices? I've got this code to show just one price, but the shown price is not the price of the default variation: /******************************* SHOW ONLY ONE PRICE FOR VARIATIONS *********************************/ add_filter('woocommerce_variable_price_html', 'custom_variation_price', 10, 2); function custom_variation_price( $price, $product ) { $price = ''; $price .= woocommerce_price($product->get_price()); return $price; } A: Try this code: add_filter('woocommerce_variable_price_html', 'custom_variation_price', 10, 2); function custom_variation_price( $price, $product ) { $available_variations = $product->get_available_variations(); $selectedPrice = ''; $dump = ''; foreach ( $available_variations as $variation ) { // $dump = $dump . '<pre>' . var_export($variation['attributes'], true) . '</pre>'; $isDefVariation=false; foreach($product->get_default_attributes() as $key=>$val){ // $dump = $dump . '<pre>' . var_export($key, true) . '</pre>'; // $dump = $dump . '<pre>' . var_export($val, true) . '</pre>'; if($variation['attributes']['attribute_'.$key]==$val){ $isDefVariation=true; } } if($isDefVariation){ $price = $variation['display_price']; } } $selectedPrice = wc_price($price); // $dump = $dump . '<pre>' . var_export($available_variations, true) . '</pre>'; return $selectedPrice . $dump; } A: This is solution for the minimal price as default for the variable products: add_filter('woocommerce_variable_price_html','shop_variable_product_price', 10, 2 ); function shop_variable_product_price( $price, $product ){ $variation_min_reg_price = $product->get_variation_regular_price('min', true); if(!empty($variation_min_reg_price)) { $price = woocommerce_price( $variation_min_reg_price ); } else { $price = woocommerce_price( $product->regular_price ); } return $price; } A: Show single variable price add_filter( 'woocommerce_show_variation_price', '__return_true' ); A: upgrading @vivek's code as its code is only working for a single variation add_filter('woocommerce_variable_price_html', 'custom_variation_price', 10, 2); function custom_variation_price($price, $product) { $available_variations = $product->get_available_variations(); $selectedPrice = ''; $dump = ''; $defaultArray = array(); foreach ($available_variations as $variation) { // $dump = $dump . '<pre>' . var_export($variation['attributes'], true) . '</pre>'; $isDefVariation = false; foreach ($product->get_default_attributes() as $key => $val) { // $dump = $dump . '<pre>' . var_export($key, true) . '</pre>'; // $dump = $dump . '<pre>' . var_export($val, true) . '</pre>'; $defaultArray['attribute_' . $key] = $val; } **$result = array_diff($defaultArray, $variation['attributes']);** **if (empty($result)) { $isDefVariation = true; $price = $variation['display_price']; }** } $selectedPrice = wc_price($price); // $dump = $dump . '<pre>' . var_export($available_variations, true) . '</pre>'; return $selectedPrice . $dump; } This will work for multiple variation key A: Upgrading @ Abhinav's code to show minimum price in case there is no default set: /** * Show default variation price * If no default variation, shows min price */ add_filter('woocommerce_variable_price_html', 'custom_variation_price', 10, 2); function custom_variation_price($price, $product) { $available_variations = $product->get_available_variations(); $selectedPrice = ''; $dump = ''; $defaultArray = array(); foreach ($product->get_default_attributes() as $key => $val) { // $dump = $dump . '<pre>' . var_export($key, true) . '</pre>'; // $dump = $dump . '<pre>' . var_export($val, true) . '</pre>'; $defaultArray['attribute_' . $key] = $val; } // $dump = $dump . '<pre>' . var_export($defaultArray, true) . '</pre>'; if (empty($defaultArray)) { $price = $product->get_variation_price( 'min', true ); // no default variation, show min price } else { foreach ($available_variations as $variation) { // $dump = $dump . '<pre>' . var_export($variation['attributes'], true) . '</pre>'; $isDefVariation = false; $result = array_diff($defaultArray, $variation['attributes']); if (empty($result)) { $isDefVariation = true; $price = $variation['display_price']; break; } } } $selectedPrice = wc_price($price); // $dump = $dump . '<pre>' . var_export($available_variations, true) . '</pre>'; return $selectedPrice . $dump; }
wordpress
{ "language": "en", "length": 536, "provenance": "stackexchange_00019.jsonl.gz:481107", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/284381" }
[ 0.0224761962890625, -0.038604736328125, 0.01380157470703125, -0.037933349609375, -0.04022216796875, -0.004512786865234375, 0.0159149169921875, 0.004444122314453125, 0.0145721435546875, 0.01123809814453125, -0.001682281494140625, -0.0262298583984375, -0.035675048828125, -0.0272216796875, -0.03173828125, -0.04278564453125, 0.045745849609375, 0.014984130859375, 0.022552490234375, 0.00951385498046875, -0.029449462890625, 0.040496826171875, 0.006107330322265625, 0.07073974609375, 0.048980712890625, -0.037445068359375, 0.033050537109375, -0.0182342529296875, 0.036773681640625, -0.00699615478515625, 0.041107177734375, -0.034393310546875, 0.0272674560546875, -0.004638671875, 0.0305633544921875, 0.058868408203125, 0.035736083984375, -0.01029205322265625, 0.037353515625, 0.0120849609375, 0.031494140625, -0.00711822509765625, -0.0178375244140625, 0.028594970703125, -0.0163726806640625, -0.024993896484375, 0.0034961700439453125, -0.0283355712890625, 0.015655517578125, 0.041595458984375, -0.0012941360473632812, 0.04351806640625, 0.0006241798400878906, -0.00984954833984375, -0.0068511962890625, -0.0253448486328125, -0.003185272216796875, 0.01209259033203125, 0.0255889892578125, 0.00727081298828125, -0.0261688232421875, -0.0015716552734375, 0.01338958740234375, -0.02734375, 0.0255279541015625, -0.020050048828125, -0.01093292236328125, 0.02789306640625, -0.046173095703125, 0.00516510009765625, 0.04791259765625, -0.021636962890625, 0.0238800048828125, 0.00739288330078125, -0.047271728515625, -0.056121826171875, 0.03192138671875, -0.01099395751953125, 0.0169525146484375, -0.0159454345703125, -0.01032257080078125, -0.0290069580078125, -0.0244903564453125, -0.0270843505859375, 0.0263214111328125, 0.0186309814453125, -0.0006766319274902344, -0.013671875, -0.036468505859375, -0.0341796875, -0.025970458984375, -0.004962921142578125, -0.0634765625, 0.0145111083984375, -0.0277099609375, 0.00850677490234375, 0.0014123916625976562, 0.0028476715087890625, 0.005645751953125, 0.00676727294921875, 0.0030612945556640625, -0.039642333984375, 0.0169525146484375, -0.0187530517578125, -0.0158843994140625, -0.026397705078125, 0.0113525390625, 0.061309814453125, 0.040863037109375, 0.047760009765625, -0.0186004638671875, 0.019561767578125, -0.0195465087890625, -0.0394287109375, -0.0222015380859375, 0.00449371337890625, -0.059783935546875, 0.0130157470703125, 0.0158538818359375, -0.007747650146484375, 0.04217529296875, 0.08770751953125, 0.038818359375, -0.07867431640625, -0.011322021484375, 0.007781982421875, -0.018768310546875, -0.11358642578125, -0.0614013671875, 0.0287933349609375, -0.0238800048828125, -0.0012416839599609375, 0.0877685546875, 0.046295166015625, 0.005100250244140625, -0.01514434814453125, 0.01293182373046875, 0.01198577880859375, -0.0104217529296875, 0.00021350383758544922, -0.00174713134765625, 0.019989013671875, 0.0207672119140625, -0.0234222412109375, 0.01334381103515625, -0.0008640289306640625, 0.01739501953125, 0.037689208984375, 0.0009918212890625, -0.0241546630859375, 0.0467529296875, -0.0003437995910644531, -0.0031604766845703125, 0.01617431640625, 0.0015764236450195312, 0.0364990234375, 0.040374755859375, -0.006038665771484375, -0.039306640625, -0.0165863037109375, -0.028961181640625, -0.0443115234375, -0.00902557373046875, -0.03717041015625, -0.07879638671875, 0.06585693359375, 0.01468658447265625, -0.00939178466796875, 0.017730712890625, 0.04803466796875, 0.01483917236328125, 0.0404052734375, 0.01560211181640625, 0.01113128662109375, -0.01354217529296875, -0.040802001953125, -0.029998779296875, -0.0006866455078125, 0.0745849609375, -0.06390380859375, -0.05743408203125, -0.03485107421875, 0.0654296875, -0.018798828125, -0.04730224609375, 0.0036106109619140625, 0.00412750244140625, 0.04534912109375, 0.025146484375, -0.00449371337890625, 0.04339599609375, 0.00004565715789794922, -0.057861328125, 0.034515380859375, -0.028106689453125, -0.00911712646484375, -0.05126953125, -0.00682830810546875, -0.0341796875, 0.023040771484375, -0.031005859375, -0.0256500244140625, 0.0435791015625, 0.0027713775634765625, 0.01837158203125, -0.00222015380859375, -0.0060577392578125, 0.0224456787109375, -0.06756591796875, 0.0248260498046875, 0.05853271484375, 0.021575927734375, -0.06005859375, 0.0228424072265625, 0.0269622802734375, -0.0303192138671875, -0.031982421875, 0.058380126953125, -0.00783538818359375, 0.0199127197265625, 0.030731201171875, -0.0623779296875, 0.03692626953125, 0.04638671875, 0.05120849609375, 0.038970947265625, -0.0288848876953125, 0.0004787445068359375, 0.0799560546875, 0.015655517578125, 0.0019626617431640625, 0.00513458251953125, 0.0140838623046875, -0.019927978515625, -0.04400634765625, -0.0013484954833984375, -0.0016231536865234375, -0.06427001953125, 0.017547607421875, 0.06640625, 0.034759521484375, 0.0295562744140625, -0.03509521484375, -0.06317138671875, 0.127685546875, -0.019195556640625, -0.0295867919921875, -0.03668212890625, -0.0004925727844238281, -0.004329681396484375, -0.02825927734375, -0.01280975341796875, 0.012969970703125, -0.052032470703125, 0.03692626953125, 0.0150909423828125, -0.02374267578125, 0.004009246826171875, 0.005084991455078125, 0.0032558441162109375, -0.026336669921875, -0.00232696533203125, 0.04534912109375, -0.0261688232421875, 0.025726318359375, -0.0037860870361328125, 0.00675201416015625, 0.0077056884765625, -0.01238250732421875, 0.00545501708984375, -0.0006208419799804688, -0.03125, -0.0166168212890625, -0.0274200439453125, -0.04791259765625, -0.04974365234375, -0.05718994140625, 0.0535888671875, -0.0012378692626953125, -0.047760009765625, 0.024505615234375, 0.04547119140625, -0.0009889602661132812, -0.004695892333984375, 0.0007190704345703125, -0.0780029296875, -0.0171356201171875, 0.033172607421875, -0.0177764892578125, -0.01218414306640625, 0.016754150390625, 0.034515380859375, -0.041107177734375, 0.0399169921875, -0.016265869140625, -0.0015201568603515625, -0.0294036865234375, -0.0443115234375, 0.060699462890625, -0.062408447265625, 0.02056884765625, 0.06939697265625, -0.0234375, 0.031982421875, 0.0046844482421875, -0.006824493408203125, 0.01352691650390625, 0.00004649162292480469, -0.0303802490234375, 0.01226806640625, -0.1064453125, -0.042449951171875, 0.007061004638671875, 0.0246429443359375, -0.01145172119140625, -0.039215087890625, -0.0169219970703125, -0.0015134811401367188, -0.06610107421875, -0.046630859375, 0.006694793701171875, -0.062164306640625, 0.0019407272338867188, -0.03985595703125, -0.031402587890625, -0.00916290283203125, -0.024566650390625, 0.0012998580932617188, -0.00009059906005859375, -0.038848876953125, -0.044097900390625, -0.058868408203125, -0.05413818359375, -0.01212310791015625, 0.0014095306396484375, -0.0059661865234375, -0.00959014892578125, 0.04498291015625, -0.01551055908203125, -0.03253173828125, -0.0089569091796875, 0.031768798828125, 0.0225067138671875, 0.00475311279296875, -0.0013170242309570312, -0.020721435546875, 0.01092529296875, -0.0098114013671875, 0.03839111328125, 0.0154876708984375, -0.00994873046875, -0.006710052490234375, -0.0173492431640625, -0.032562255859375, -0.007457733154296875, 0.0229949951171875, 0.0177154541015625, -0.0138092041015625, 0.0098419189453125, -0.051513671875, -0.038604736328125, 0.0010309219360351562, -0.052642822265625, 0.0186920166015625, -0.000053763389587402344, 0.01049041748046875, -0.00347900390625, 0.0147552490234375, -0.0251922607421875, -0.01444244384765625, 0.062744140625, -0.03826904296875, -0.028228759765625, -0.021728515625, -0.044219970703125, -0.01629638671875, 0.0234222412109375, -0.033233642578125, 0.015869140625, 0.01593017578125, 0.0085296630859375, 0.01380157470703125, -0.0017576217651367188, 0.011627197265625, -0.00925445556640625, 0.040924072265625, 0.01157379150390625, 0.039520263671875, -0.024566650390625, -0.034637451171875, -0.0243377685546875, 0.0738525390625, -0.028289794921875, -0.033721923828125, -0.0037860870361328125, 0.01279449462890625, -0.01068878173828125, 0.01154327392578125, 0.010101318359375, -0.012542724609375, -0.06829833984375, 0.01534271240234375, 0.0013275146484375, -0.0225982666015625, -0.029632568359375, -0.0201873779296875, -0.058441162109375, -0.038330078125, 0.0187225341796875, -0.0201568603515625, 0.005809783935546875, 0.0309295654296875, -0.0102386474609375, 0.0170745849609375, -0.0190277099609375, -0.02423095703125, -0.0224151611328125, -0.024017333984375, 0.04913330078125, 0.01708984375, 0.005340576171875, -0.0372314453125, -0.017852783203125, 0.0276947021484375, 0.0194244384765625, 0.0013704299926757812, 0.010040283203125, 0.01027679443359375, 0.0011663436889648438, -0.043609619140625, -0.0028171539306640625, -0.051513671875, -0.0230865478515625, -0.0304412841796875, -0.018798828125, -0.0204925537109375, -0.001056671142578125, 0.018035888671875, 0.01520538330078125, -0.016510009765625, -0.08282470703125, -0.01215362548828125, 0.025787353515625, -0.0183868408203125, -0.0007081031799316406, 0.00937652587890625, 0.0256500244140625, -0.06317138671875, 0.0261383056640625, -0.01580810546875, -0.03826904296875, 0.0163116455078125, 0.030120849609375, 0.01806640625, -0.0022125244140625, -0.038238525390625, -0.001964569091796875, 0.0167236328125, 0.00012129545211791992, 0.00894927978515625, -0.026611328125, -0.01457977294921875, 0.0496826171875, -0.0161590576171875, 0.0335693359375, -0.0268402099609375, 0.00939178466796875, -0.0198974609375, -0.0194244384765625, 0.0232086181640625, -0.003215789794921875, -0.006664276123046875, -0.0175018310546875, 0.005126953125, -0.00940704345703125, 0.030487060546875, 0.014251708984375, 0.0084686279296875, -0.01190948486328125, -0.0152130126953125, -0.005889892578125, -0.0094146728515625, 0.03460693359375, 0.014312744140625, 0.0231170654296875, 0.0154571533203125, -0.0067291259765625, 0.004283905029296875, 0.0275421142578125, 0.004314422607421875, 0.0634765625, -0.01544952392578125, 0.07196044921875, -0.0182647705078125, 0.01171875, -0.0252838134765625, 0.0002536773681640625, 0.027923583984375, -0.0104217529296875, -0.046875, -0.04266357421875, -0.00982666015625, 0.0164337158203125, 0.0006289482116699219, -0.008880615234375, 0.024505615234375, 0.0268402099609375, -0.0231170654296875, 0.0113067626953125, -0.0296173095703125, 0.00669097900390625, -0.03765869140625, 0.032501220703125, 0.004241943359375, 0.0210723876953125, -0.0050506591796875, 0.100341796875, 0.006809234619140625, 0.050048828125, -0.0160064697265625, 0.02923583984375, 0.0406494140625, 0.0404052734375, 0.031524658203125, -0.0517578125, -0.00727081298828125, -0.005218505859375, -0.022918701171875, -0.0306396484375, -0.019744873046875, 0.033905029296875, 0.0450439453125, -0.00948333740234375, -0.0303802490234375, 0.010284423828125, -0.007091522216796875, -0.0196075439453125, 0.00371551513671875, -0.0267333984375, -0.04571533203125, 0.00679779052734375, 0.032196044921875, -0.0036773681640625, -0.03271484375, -0.004375457763671875, -0.0133514404296875, -0.03387451171875, -0.018585205078125, -0.07049560546875, -0.018096923828125, -0.0093841552734375, 0.0006461143493652344, -0.0205078125, -0.0181884765625, -0.00933074951171875, -0.0322265625, -0.02081298828125, -0.01073455810546875, -0.00550079345703125, 0.0252838134765625, -0.0288848876953125, 0.047576904296875, -0.01309967041015625, -0.037261962890625, -0.017333984375, 0.0257568359375, 0.049530029296875, 0.0384521484375, -0.01226806640625, 0.001857757568359375, -0.06903076171875, -0.036834716796875, 0.0279693603515625, -0.021575927734375, -0.0309906005859375, -0.03125, 0.012298583984375, 0.017242431640625, 0.01953125, -0.023101806640625, -0.0209503173828125, 0.00678253173828125, 0.00611114501953125, 0.0177459716796875, -0.016845703125, -0.004119873046875, 0.01544952392578125, 0.003971099853515625, -0.00502777099609375, -0.01275634765625, -0.00891876220703125, -0.0233001708984375, -0.0079803466796875, 0.02301025390625, -0.0010232925415039062, -0.00443267822265625, 0.00876617431640625, -0.0156097412109375, 0.04052734375, -0.01210784912109375, 0.018768310546875, -0.0032062530517578125, -0.00335693359375, -0.0190582275390625, 0.0103607177734375, -0.019073486328125, -0.0036602020263671875, 0.01715087890625, -0.04461669921875, -0.0252227783203125, 0.007503509521484375, -0.03192138671875, 0.0535888671875, -0.01418304443359375, 0.03302001953125, 0.0167999267578125, -0.06866455078125, 0.05609130859375, 0.054443359375, 0.0179901123046875, 0.0487060546875, -0.01486968994140625, 0.0208740234375, 0.00885009765625, 0.0230255126953125, 0.020965576171875, -0.0411376953125, 0.0445556640625, 0.005603790283203125, -0.0164642333984375, 0.0306243896484375, -0.0250396728515625, 0.030487060546875, 0.06390380859375, 0.07293701171875, -0.1077880859375, 0.014251708984375, 0.0237579345703125, -0.0015401840209960938, 0.0176849365234375, 0.016693115234375, -0.0263671875, -0.05926513671875, 0.01959228515625, -0.041595458984375, -0.0101165771484375, 0.0031147003173828125, -0.01049041748046875, 0.02691650390625, -0.00982666015625, 0.004726409912109375, -0.006809234619140625, -0.09783935546875, 0.0298309326171875, 0.059814453125, -0.021148681640625, -0.007350921630859375, 0.03179931640625, 0.00899505615234375, -0.038909912109375, -0.08013916015625, 0.0019779205322265625, 0.0038051605224609375, -0.038604736328125, 0.006183624267578125, 0.0024776458740234375, 0.01386260986328125, 0.0244293212890625, 0.00885772705078125, -0.0290679931640625, 0.01505279541015625, -0.0455322265625, 0.0194091796875, 0.0007319450378417969, 0.0125885009765625, 0.019073486328125, -0.053253173828125, -0.0036487579345703125, -0.0516357421875, 0.00847625732421875, -0.01166534423828125, 0.033660888671875, 0.08831787109375, 0.01134490966796875, -0.04168701171875, 0.051361083984375, 0.041473388671875, -0.03997802734375, 0.012115478515625, 0.0213775634765625, -0.015838623046875, -0.00119781494140625, 0.00762176513671875, -0.0242462158203125, -0.022796630859375, -0.01029205322265625, -0.035552978515625, 0.046295166015625, -0.0428466796875, 0.021209716796875, -0.005626678466796875, 0.012237548828125, 0.038055419921875, 0.02374267578125, -0.018096923828125, 0.034332275390625, 0.03997802734375, 0.0267333984375, -0.0135345458984375, -0.0243377685546875, 0.019744873046875, 0.042938232421875, 0.014190673828125, 0.00965118408203125, 0.01239776611328125, 0.0426025390625, 0.050384521484375, 0.014373779296875, -0.01512908935546875, 0.00902557373046875, 0.0289459228515625, 0.0081634521484375, 0.06378173828125, -0.0615234375, 0.008941650390625, -0.024505615234375, 0.08056640625, 0.0328369140625, 0.0164947509765625, 0.00922393798828125, -0.037353515625, 0.040313720703125, -0.0107879638671875, -0.0267791748046875, 0.01250457763671875, -0.01523590087890625, 0.03558349609375, -0.00925445556640625, 0.01361083984375, 0.01611328125, 0.042938232421875, -0.01214599609375, 0.046722412109375, 0.0091094970703125, -0.042205810546875, 0.048248291015625, 0.0037384033203125, 0.00148773193359375, -0.0067291259765625, -0.028289794921875, -0.024749755859375, 0.039642333984375, -0.040557861328125, 0.00972747802734375, -0.01470947265625, 0.0123291015625, 0.052337646484375, 0.0386962890625, -0.040618896484375, -0.0215301513671875, -0.0125579833984375, 0.0088958740234375, -0.0166778564453125, -0.0252532958984375, -0.047760009765625, -0.041168212890625, -0.0396728515625, 0.01270294189453125, -0.0447998046875, -0.0019445419311523438, -0.002471923828125, 0.044219970703125, 0.002838134765625, 0.038970947265625, -0.0643310546875, -0.057220458984375, -0.029998779296875, -0.0014066696166992188, -0.0038890838623046875, 0.0792236328125, -0.00203704833984375, 0.10552978515625, -0.044830322265625, -0.043975830078125, -0.001949310302734375, 0.0167236328125, -0.02191162109375, -0.01216888427734375, -0.0269317626953125, -0.0195770263671875, -0.06884765625, 0.047332763671875, 0.01045989990234375, 0.0152587890625, 0.021697998046875, 0.0178680419921875, -0.0203094482421875, -0.0018701553344726562, 0.03729248046875, -0.0215301513671875, -0.015777587890625, -0.0218048095703125, -0.007080078125, -0.032745361328125, -0.015228271484375, -0.01105499267578125, 0.0274200439453125, -0.01971435546875, -0.02667236328125, 0.05029296875, -0.00737762451171875, -0.00545501708984375, -0.006103515625, -0.0007834434509277344, 0.049285888671875, 0.01515960693359375, -0.0303955078125, 0.013702392578125, -0.040252685546875, -0.0247802734375, -0.03753662109375, 0.0037689208984375, -0.00864410400390625, 0.05316162109375, 0.0060882568359375, 0.00341033935546875, 0.035400390625, 0.006656646728515625, -0.0261993408203125, -0.0009360313415527344, 0.045745849609375, -0.006023406982421875, -0.01058197021484375, -0.026123046875, 0.00012803077697753906, 0.036163330078125, 0.01313018798828125, 0.0312042236328125, -0.013092041015625, 0.01537322998046875, 0.01291656494140625, 0.01861572265625, -0.0276947021484375, -0.01390838623046875, 0.0465087890625, -0.03717041015625, -0.0259857177734375, 0.0024852752685546875, -0.003662109375, -0.004848480224609375, 0.036163330078125, -0.007457733154296875, -0.00942230224609375, -0.04815673828125, 0.059051513671875, 0.01554107666015625, 0.06524658203125, -0.007843017578125, -0.059783935546875, -0.05938720703125, 0.01678466796875, 0.0277252197265625, 0.04302978515625, -0.020263671875, -0.005687713623046875, 0.052886962890625, -0.0159454345703125, -0.006786346435546875, 0.0322265625, 0.0033817291259765625, 0.0250244140625, 0.045166015625, -0.01013946533203125, 0.006809234619140625, -0.0146636962890625, 0.02130126953125, 0.0155029296875, 0.0052490234375, 0.031829833984375, 0.0014295578002929688, 0.0172882080078125, 0.01947021484375, 0.033203125, -0.0316162109375, 0.00392913818359375, 0.047882080078125, -0.0009584426879882812, 0.012420654296875, -0.0065155029296875, -0.012481689453125, -0.0092620849609375, 0.003131866455078125, -0.006908416748046875, 0.026397705078125, -0.02093505859375, 0.00963592529296875, 0.019012451171875, 0.025543212890625, -0.00921630859375, -0.025970458984375, -0.01483917236328125, -0.0166778564453125, 0.06671142578125, -0.00850677490234375, -0.013519287109375, 0.0034885406494140625, -0.0178070068359375, -0.021759033203125, 0.0144500732421875, -0.03155517578125, -0.021331787109375, 0.008697509765625, 0.011016845703125, 0.01018524169921875, 0.002819061279296875, -0.00690460205078125, -0.0110931396484375, -0.0037708282470703125, 0.03369140625, -0.00565338134765625, -0.05743408203125, 0.00870513916015625, -0.0191192626953125, 0.020721435546875, -0.053009033203125, 0.00167083740234375, -0.099853515625, 0.0003905296325683594, -0.005764007568359375, -0.0104217529296875, 0.00299072265625, -0.0570068359375, -0.09954833984375, 0.05975341796875, -0.0289459228515625, -0.032440185546875, -0.002811431884765625, -0.01387786865234375, -0.040740966796875, 0.037445068359375, 0.0018634796142578125, -0.02294921875, 0.0013837814331054688, 0.04229736328125, -0.00588226318359375, -0.00112152099609375, 0.0258941650390625, -0.03289794921875, -0.033782958984375, -0.0269622802734375, -0.00949859619140625, -0.01336669921875, 0.0147857666015625, -0.03045654296875, 0.0251922607421875, 0.03814697265625, -0.004001617431640625, -0.03314208984375, 0.007732391357421875, -0.048614501953125, 0.037261962890625, -0.0146331787109375, -0.057373046875, -0.053466796875, 0.0142364501953125, 0.0033321380615234375, 0.009674072265625, 0.03411865234375, 0.00018870830535888672, -0.038665771484375, -0.03179931640625, 0.003276824951171875, 0.0162811279296875, -0.057769775390625, 0.0085296630859375, 0.01800537109375, -0.0189666748046875, 0.01506805419921875, 0.01052093505859375, -0.033233642578125, 0.006984710693359375, 0.02264404296875, -0.005184173583984375, -0.044769287109375, 0.0096893310546875, -0.04400634765625, 0.00409698486328125, -0.0150909423828125, -0.0298919677734375, -0.006591796875, -0.035552978515625, 0.002452850341796875, -0.028106689453125, -0.0012865066528320312, 0.0110931396484375, -0.00860595703125, 0.0107574462890625, 0.011383056640625, 0.0254364013671875, 0.0176544189453125, -0.032470703125, 0.004726409912109375, 0.007114410400390625, -0.01375579833984375, -0.03460693359375, 0.0291595458984375, 0.017974853515625, 0.0634765625, -0.03228759765625, 0.0926513671875, 0.0225830078125, -0.0059051513671875, -0.0192108154296875, 0.0279998779296875, 0.026153564453125, -0.020843505859375, 0.00612640380859375, -0.029327392578125, -0.0035552978515625, -0.0173187255859375, -0.0076446533203125, 0.00836181640625, -0.0295257568359375, 0.02105712890625 ]
6356ac31d409acb7814291e377d600d2cf7296d8
Wordpress Stackexchange Q: How to upload all media to one folder, with no year/month subfolders Prior to version 3.5 (or thereabouts), WP had a checkbox to select if all uploaded media went into sub-folders of /uploads, named by month and year. If checkbox was unchecked, all media ended up in one folder - no subfolders. How can I restore that feature? I.e., I want all my media to go into one folder and NOT be further divided into year and month. Is there some easy programmatic way to achieve that? Or is there some reliable plugin to do the job? Thanks! A: Can you not just un-tick the box in Admin -> Settings -> Media:
Q: How to upload all media to one folder, with no year/month subfolders Prior to version 3.5 (or thereabouts), WP had a checkbox to select if all uploaded media went into sub-folders of /uploads, named by month and year. If checkbox was unchecked, all media ended up in one folder - no subfolders. How can I restore that feature? I.e., I want all my media to go into one folder and NOT be further divided into year and month. Is there some easy programmatic way to achieve that? Or is there some reliable plugin to do the job? Thanks! A: Can you not just un-tick the box in Admin -> Settings -> Media: A: Pop this tiny code snippet into a file located here: wp-content/mu-plugins/upload-dir.php (a must use plugin file). Create the mu-plugins directory if it does not exist already. <?php add_filter( 'pre_option_uploads_use_yearmonth_folders', '__return_zero'); What you're doing here is filtering an option value at runtime, which is picked up internally by _wp_upload_dir() and therefore uploads are no longer nested into date-based subdirectories. A: This is an screenshot from WordPress 6.1.1: I can confirm that even with version 6.1.1, Alexander's solution works perfectly. So there must be some issue on the OP's own settings. WordPress still has this Settings in the admin panel to enable or disable month- and year-based folders.
wordpress
{ "language": "en", "length": 220, "provenance": "stackexchange_00019.jsonl.gz:481278", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/284961" }
[ 0.048736572265625, -0.0450439453125, -0.00934600830078125, -0.037628173828125, -0.032623291015625, -0.039337158203125, 0.023895263671875, -0.00318145751953125, 0.07501220703125, 0.02166748046875, -0.00033354759216308594, -0.04156494140625, 0.03704833984375, -0.049896240234375, -0.035186767578125, 0.0007123947143554688, 0.0208740234375, -0.01444244384765625, -0.002685546875, -0.0169525146484375, -0.004688262939453125, 0.005344390869140625, -0.0081634521484375, 0.0015802383422851562, -0.0071868896484375, 0.036468505859375, -0.01146697998046875, -0.01336669921875, -0.020904541015625, -0.029449462890625, -0.0019044876098632812, 0.033935546875, 0.01548004150390625, 0.005397796630859375, 0.00974273681640625, 0.059600830078125, -0.0086517333984375, 0.01690673828125, 0.038421630859375, -0.0218353271484375, 0.005126953125, -0.00429534912109375, 0.022979736328125, 0.02117919921875, 0.0017938613891601562, -0.03692626953125, 0.0116729736328125, -0.04473876953125, 0.045623779296875, -0.02740478515625, -0.03271484375, -0.01328277587890625, 0.0031795501708984375, -0.06121826171875, -0.052978515625, -0.07379150390625, 0.0308990478515625, -0.00982666015625, 0.0215606689453125, 0.00827789306640625, -0.029541015625, 0.020843505859375, 0.0190887451171875, -0.0278167724609375, -0.00963592529296875, 0.01111602783203125, -0.00952911376953125, -0.0029010772705078125, -0.08038330078125, -0.0232696533203125, 0.051605224609375, -0.0653076171875, 0.050384521484375, -0.061126708984375, 0.055389404296875, 0.04559326171875, -0.060699462890625, 0.01129150390625, 0.07183837890625, -0.03173828125, 0.027862548828125, -0.01031494140625, 0.0011568069458007812, -0.04754638671875, 0.053558349609375, -0.0264129638671875, 0.0207061767578125, -0.0005331039428710938, -0.02349853515625, -0.007602691650390625, -0.0284576416015625, -0.013153076171875, -0.002109527587890625, -0.0104217529296875, -0.0280914306640625, -0.021484375, 0.0340576171875, 0.0841064453125, -0.0321044921875, -0.00926971435546875, -0.0197906494140625, -0.00655364990234375, -0.03387451171875, -0.02191162109375, 0.0171356201171875, 0.0008525848388671875, -0.017791748046875, -0.06072998046875, 0.041900634765625, 0.0271453857421875, -0.01383209228515625, 0.08306884765625, -0.00292205810546875, -0.052001953125, 0.004154205322265625, 0.0570068359375, 0.000020742416381835938, 0.0352783203125, 0.013946533203125, 0.0156402587890625, 0.031890869140625, 0.046478271484375, -0.0440673828125, -0.033782958984375, 0.005039215087890625, -0.0222015380859375, -0.0312347412109375, 0.0246429443359375, -0.004787445068359375, 0.028076171875, -0.0230712890625, 0.03594970703125, 0.038726806640625, -0.022674560546875, -0.032867431640625, -0.0019779205322265625, 0.032806396484375, 0.010040283203125, -0.0106048583984375, 0.033294677734375, -0.00685882568359375, -0.042236328125, -0.01605224609375, 0.020782470703125, -0.00772857666015625, 0.034393310546875, 0.018035888671875, 0.01287078857421875, -0.00962066650390625, -0.059661865234375, -0.032806396484375, 0.0210113525390625, 0.0114593505859375, 0.0028324127197265625, -0.006343841552734375, -0.04388427734375, 0.01305389404296875, -0.033416748046875, 0.041748046875, -0.04351806640625, 0.024658203125, 0.007518768310546875, 0.00482940673828125, -0.035675048828125, -0.039703369140625, -0.025726318359375, -0.0277099609375, 0.00360107421875, 0.0269317626953125, -0.00611114501953125, -0.0297698974609375, -0.008819580078125, 0.035858154296875, 0.0062408447265625, -0.010101318359375, 0.0273895263671875, 0.03350830078125, 0.01360321044921875, -0.0282440185546875, 0.07171630859375, 0.0206451416015625, -0.0302276611328125, 0.028961181640625, -0.0222930908203125, -0.036224365234375, -0.04046630859375, 0.0045928955078125, -0.0260467529296875, 0.029083251953125, 0.01132965087890625, 0.065185546875, 0.03509521484375, -0.056793212890625, -0.00572967529296875, -0.00807952880859375, 0.0298309326171875, -0.029022216796875, 0.016998291015625, -0.00875091552734375, 0.0001468658447265625, 0.012664794921875, 0.01065826416015625, 0.0025997161865234375, 0.02239990234375, 0.0201568603515625, -0.01371002197265625, 0.0181884765625, 0.0034961700439453125, -0.02740478515625, 0.009857177734375, 0.0288848876953125, 0.0273590087890625, -0.01218414306640625, -0.06280517578125, -0.00946044921875, 0.024505615234375, -0.0099945068359375, 0.0092926025390625, -0.01403045654296875, 0.02923583984375, -0.01169586181640625, 0.00768280029296875, -0.0156402587890625, 0.0333251953125, 0.03863525390625, -0.00724029541015625, -0.0230712890625, -0.024932861328125, 0.038116455078125, 0.0062713623046875, -0.04290771484375, 0.029510498046875, -0.0004673004150390625, 0.0026836395263671875, -0.03607177734375, -0.00644683837890625, -0.0207061767578125, -0.04443359375, 0.01085662841796875, 0.05023193359375, 0.0164337158203125, 0.0367431640625, 0.00434112548828125, 0.042877197265625, 0.05828857421875, -0.037322998046875, -0.0093841552734375, 0.0185394287109375, 0.0108489990234375, 0.04718017578125, 0.005218505859375, 0.003215789794921875, 0.00611114501953125, -0.032318115234375, 0.00376129150390625, 0.018218994140625, -0.01385498046875, -0.056793212890625, 0.0086669921875, 0.0186004638671875, 0.0191192626953125, -0.0098114013671875, -0.0311737060546875, -0.0013284683227539062, 0.009246826171875, 0.032379150390625, 0.0292510986328125, 0.033416748046875, -0.0005693435668945312, 0.0166168212890625, 0.00107574462890625, -0.03973388671875, 0.0162506103515625, 0.0653076171875, 0.0699462890625, -0.0150909423828125, -0.0252685546875, -0.043304443359375, 0.03228759765625, 0.052093505859375, -0.0001239776611328125, 0.009033203125, -0.01119232177734375, -0.00605010986328125, 0.01197052001953125, -0.0121002197265625, 0.007549285888671875, -0.003154754638671875, -0.00254058837890625, 0.0150909423828125, 0.039398193359375, 0.0169219970703125, -0.0054931640625, 0.0291290283203125, 0.01092529296875, -0.0093994140625, 0.0016613006591796875, -0.0206146240234375, 0.0216522216796875, -0.0245513916015625, 0.02294921875, 0.046539306640625, 0.01302337646484375, -0.0299224853515625, -0.014312744140625, 0.01406097412109375, 0.0021457672119140625, 0.0165252685546875, -0.01519012451171875, 0.0094451904296875, -0.07843017578125, -0.054412841796875, 0.007808685302734375, -0.018951416015625, 0.0024662017822265625, -0.0016927719116210938, -0.004077911376953125, -0.0019063949584960938, -0.041717529296875, -0.036529541015625, 0.0216827392578125, -0.08343505859375, 0.039947509765625, 0.0193328857421875, -0.040618896484375, -0.06256103515625, 0.08905029296875, 0.0244140625, -0.0074462890625, 0.0010852813720703125, 0.035308837890625, 0.0184783935546875, 0.013397216796875, -0.01074981689453125, -0.0031833648681640625, -0.0257415771484375, 0.0012121200561523438, 0.0455322265625, -0.0077667236328125, -0.06011962890625, -0.02813720703125, 0.0273895263671875, -0.006732940673828125, -0.004116058349609375, 0.05511474609375, -0.045501708984375, -0.0016298294067382812, 0.011322021484375, -0.00751495361328125, 0.034698486328125, -0.03350830078125, -0.0193023681640625, -0.0084228515625, -0.01171112060546875, -0.029754638671875, 0.0572509765625, 0.033538818359375, -0.02874755859375, -0.01517486572265625, -0.052337646484375, 0.0297393798828125, -0.00650787353515625, -0.0167388916015625, -0.002620697021484375, -0.01139068603515625, -0.026153564453125, -0.0001289844512939453, -0.0034942626953125, 0.0015478134155273438, 0.033050537109375, -0.0228271484375, -0.0242767333984375, -0.00415802001953125, 0.019378662109375, 0.029205322265625, 0.0263214111328125, 0.043731689453125, 0.0033359527587890625, -0.012603759765625, 0.0186767578125, 0.007511138916015625, -0.0133819580078125, 0.020599365234375, -0.03204345703125, -0.0341796875, 0.0296173095703125, -0.06829833984375, 0.010406494140625, -0.0792236328125, -0.00836944580078125, -0.041717529296875, 0.05816650390625, -0.06494140625, -0.0122833251953125, 0.00891876220703125, 0.0194854736328125, 0.00624847412109375, -0.04351806640625, -0.044525146484375, -0.025604248046875, 0.0207061767578125, -0.00746917724609375, -0.0035762786865234375, 0.006946563720703125, 0.0015106201171875, -0.0819091796875, 0.00339508056640625, -0.029754638671875, 0.042083740234375, -0.042449951171875, 0.00824737548828125, 0.0012340545654296875, 0.0087738037109375, -0.033111572265625, -0.03009033203125, -0.0211334228515625, -0.08990478515625, -0.030181884765625, 0.0135650634765625, 0.0570068359375, -0.04058837890625, 0.0185699462890625, -0.04705810546875, 0.056976318359375, -0.01427459716796875, 0.0255889892578125, 0.0090179443359375, 0.0095367431640625, 0.039031982421875, 0.03570556640625, 0.020233154296875, 0.002712249755859375, -0.0265960693359375, -0.07489013671875, -0.00081634521484375, -0.012939453125, -0.052337646484375, 0.0210723876953125, -0.08111572265625, 0.03900146484375, -0.0267486572265625, -0.034332275390625, -0.06365966796875, -0.020294189453125, -0.045928955078125, 0.0014448165893554688, -0.0167083740234375, -0.048126220703125, 0.0160980224609375, 0.0189361572265625, -0.0010051727294921875, 0.02349853515625, 0.0738525390625, 0.00556182861328125, -0.0186004638671875, -0.1240234375, 0.01007080078125, 0.03326416015625, -0.01739501953125, 0.024169921875, 0.0182647705078125, -0.0122833251953125, 0.0191802978515625, -0.02532958984375, 0.00037550926208496094, -0.017730712890625, 0.039154052734375, -0.00670623779296875, -0.005107879638671875, 0.003437042236328125, -0.029693603515625, 0.03662109375, 0.004673004150390625, -0.0005946159362792969, -0.0161590576171875, -0.031280517578125, 0.0435791015625, 0.037689208984375, -0.0216827392578125, -0.06011962890625, -0.08966064453125, 0.0195159912109375, -0.01178741455078125, 0.040313720703125, -0.0008244514465332031, 0.004276275634765625, 0.07733154296875, 0.0648193359375, -0.0127105712890625, 0.01384735107421875, 0.03704833984375, -0.0012006759643554688, 0.03375244140625, 0.00839996337890625, -0.00531005859375, -0.03173828125, 0.01204681396484375, -0.035003662109375, 0.022979736328125, -0.00537872314453125, -0.0114898681640625, 0.0196380615234375, -0.005870819091796875, 0.0045928955078125, -0.058990478515625, 0.03558349609375, 0.0555419921875, -0.005397796630859375, 0.01070404052734375, -0.07659912109375, 0.032684326171875, -0.0457763671875, 0.00946044921875, 0.0157470703125, -0.0120697021484375, 0.0157623291015625, -0.0201416015625, -0.0082550048828125, -0.022918701171875, 0.005054473876953125, -0.0169677734375, 0.0244293212890625, 0.01079559326171875, 0.03729248046875, -0.0160369873046875, -0.0164642333984375, -0.0054779052734375, 0.024017333984375, -0.051361083984375, 0.00383758544921875, 0.043914794921875, 0.04852294921875, 0.0285797119140625, -0.01837158203125, -0.0228271484375, -0.02392578125, 0.0022144317626953125, 0.0030384063720703125, -0.0169525146484375, -0.031646728515625, -0.006771087646484375, -0.021575927734375, -0.01058197021484375, -0.017791748046875, 0.0026397705078125, -0.0006937980651855469, -0.0255126953125, -0.019775390625, 0.051788330078125, -0.0660400390625, -0.0026493072509765625, 0.00992584228515625, 0.002368927001953125, 0.00223541259765625, 0.006130218505859375, -0.036224365234375, -0.0156707763671875, -0.03460693359375, -0.035125732421875, 0.11419677734375, -0.0267791748046875, 0.01336669921875, -0.0230865478515625, -0.00476837158203125, 0.0023784637451171875, 0.0229644775390625, 0.044403076171875, 0.01280975341796875, -0.0198822021484375, -0.01349639892578125, -0.034149169921875, -0.043914794921875, -0.00565338134765625, 0.0016193389892578125, -0.058441162109375, 0.00835418701171875, -0.00250244140625, 0.0170745849609375, -0.0215911865234375, -0.0218353271484375, -0.0161590576171875, 0.035247802734375, 0.01137542724609375, 0.0150604248046875, 0.00492095947265625, 0.0196380615234375, -0.01442718505859375, 0.0311279296875, -0.0038661956787109375, -0.01122283935546875, -0.00371551513671875, -0.0206756591796875, -0.00734710693359375, -0.06634521484375, -0.0277099609375, 0.0046539306640625, -0.01678466796875, 0.041107177734375, 0.02679443359375, 0.0012006759643554688, 0.01548004150390625, -0.0189208984375, 0.0006165504455566406, -0.02349853515625, 0.03125, -0.0394287109375, 0.00981903076171875, -0.022247314453125, 0.003658294677734375, 0.0268402099609375, -0.0163726806640625, -0.057861328125, 0.0401611328125, 0.010955810546875, 0.0297088623046875, 0.006359100341796875, 0.0100555419921875, 0.01389312744140625, 0.0141754150390625, -0.0042724609375, 0.022491455078125, 0.013275146484375, 0.0200347900390625, -0.007244110107421875, -0.0306243896484375, 0.06500244140625, 0.0178985595703125, 0.056854248046875, -0.00548553466796875, 0.035980224609375, 0.06817626953125, -0.0119171142578125, 0.02972412109375, 0.051239013671875, 0.042205810546875, -0.0704345703125, 0.00252532958984375, -0.002227783203125, -0.006015777587890625, 0.04632568359375, -0.04296875, 0.0159454345703125, -0.02886962890625, 0.030853271484375, 0.03955078125, -0.03997802734375, -0.024383544921875, -0.0137939453125, 0.002498626708984375, 0.012725830078125, 0.0290374755859375, 0.0125885009765625, -0.0400390625, -0.053497314453125, 0.0283355712890625, -0.042633056640625, 0.005336761474609375, 0.0206146240234375, -0.0487060546875, -0.0084991455078125, -0.050140380859375, -0.038055419921875, -0.020904541015625, -0.018402099609375, -0.00946807861328125, -0.0172119140625, 0.00875091552734375, 0.042999267578125, -0.034332275390625, -0.0019168853759765625, 0.0130462646484375, -0.004241943359375, -0.028289794921875, -0.00974273681640625, 0.01971435546875, 0.01183319091796875, -0.0295562744140625, 0.0203399658203125, -0.0382080078125, -0.012847900390625, 0.0301971435546875, 0.024017333984375, 0.00824737548828125, -0.028900146484375, -0.0183563232421875, 0.028533935546875, -0.0108795166015625, 0.00652313232421875, 0.0168914794921875, 0.042388916015625, -0.036956787109375, -0.039886474609375, 0.0189361572265625, -0.041259765625, -0.00818634033203125, 0.00974273681640625, -0.034393310546875, 0.12890625, -0.03338623046875, 0.019287109375, 0.03082275390625, 0.05535888671875, -0.0211334228515625, 0.034454345703125, -0.0479736328125, 0.004085540771484375, -0.0189971923828125, -0.0036907196044921875, -0.05841064453125, -0.00980377197265625, -0.045501708984375, 0.01314544677734375, 0.0748291015625, -0.0032825469970703125, -0.00749969482421875, 0.0006074905395507812, 0.09002685546875, 0.061737060546875, 0.0169525146484375, 0.01611328125, 0.002880096435546875, -0.0064697265625, 0.045166015625, 0.004291534423828125, 0.016326904296875, 0.04290771484375, -0.030426025390625, 0.043304443359375, 0.01439666748046875, 0.002079010009765625, -0.0039825439453125, 0.005924224853515625, -0.0272979736328125, -0.006927490234375, 0.037261962890625, -0.0100555419921875, 0.042938232421875, 0.0033702850341796875, 0.0237884521484375, -0.0360107421875, 0.01045989990234375, -0.022796630859375, 0.040374755859375, -0.018951416015625, -0.00313568115234375, 0.0272369384765625, 0.01364898681640625, -0.0242462158203125, -0.01308441162109375, -0.007427215576171875, -0.009674072265625, -0.00588226318359375, -0.0166015625, -0.0189971923828125, 0.0046539306640625, -0.0445556640625, -0.0011577606201171875, 0.022430419921875, -0.01174163818359375, -0.01097869873046875, -0.056793212890625, 0.023345947265625, 0.00653839111328125, -0.01708984375, 0.01348876953125, -0.018585205078125, -0.02484130859375, 0.036346435546875, -0.04229736328125, 0.016510009765625, 0.046661376953125, 0.022247314453125, 0.006938934326171875, 0.02996826171875, -0.051239013671875, 0.004364013671875, -0.0390625, 0.06842041015625, 0.0225830078125, 0.00189208984375, -0.044891357421875, 0.07659912109375, 0.01983642578125, 0.0133514404296875, 0.0158233642578125, 0.005481719970703125, 0.0014057159423828125, -0.0218048095703125, -0.04052734375, -0.0709228515625, 0.054168701171875, 0.03680419921875, 0.040985107421875, 0.04156494140625, 0.0574951171875, 0.037261962890625, -0.017608642578125, 0.0041046142578125, 0.03662109375, -0.00963592529296875, -0.01247406005859375, -0.005275726318359375, 0.0298919677734375, 0.049285888671875, 0.01495361328125, -0.005413055419921875, 0.03460693359375, 0.061767578125, -0.0186309814453125, 0.0294342041015625, -0.01605224609375, -0.037322998046875, 0.01153564453125, -0.0303955078125, 0.07257080078125, -0.004253387451171875, 0.002887725830078125, -0.00330352783203125, -0.0206756591796875, -0.030853271484375, -0.01105499267578125, 0.03106689453125, 0.0013790130615234375, 0.0158538818359375, -0.00582122802734375, -0.0012559890747070312, -0.0169677734375, -0.006832122802734375, 0.0165252685546875, 0.015655517578125, 0.01099395751953125, 0.00926971435546875, -0.058624267578125, -0.018402099609375, -0.048187255859375, 0.0167694091796875, 0.035858154296875, 0.0831298828125, -0.01197052001953125, 0.0291748046875, 0.0248870849609375, 0.0146484375, -0.01068115234375, -0.0028247833251953125, 0.037872314453125, -0.0257415771484375, 0.0247344970703125, -0.00970458984375, 0.0283050537109375, -0.01381683349609375, 0.034515380859375, -0.064453125, -0.01727294921875, -0.0281524658203125, 0.0199432373046875, -0.002048492431640625, 0.0279083251953125, -0.0250244140625, -0.025909423828125, -0.02899169921875, -0.01273345947265625, 0.0214080810546875, 0.041107177734375, 0.0191192626953125, 0.041717529296875, -0.003086090087890625, -0.0338134765625, 0.023406982421875, -0.037017822265625, 0.016082763671875, 0.0260467529296875, 0.019012451171875, -0.031829833984375, -0.0016183853149414062, -0.0159149169921875, 0.00492095947265625, 0.006885528564453125, 0.016357421875, 0.01367950439453125, -0.0306396484375, -0.01258087158203125, 0.026611328125, -0.01380157470703125, -0.0295257568359375, -0.005954742431640625, 0.047119140625, -0.0382080078125, -0.041168212890625, -0.0184783935546875, -0.017791748046875, -0.046295166015625, -0.02313232421875, 0.0165252685546875, -0.03448486328125, -0.0325927734375, -0.029052734375, -0.006298065185546875, 0.03887939453125, 0.0107421875, -0.029632568359375, 0.0157623291015625, -0.00804901123046875, 0.044891357421875, 0.0011444091796875, 0.044525146484375, -0.0266571044921875, -0.0099029541015625, -0.0474853515625, -0.0477294921875, -0.02630615234375, 0.061370849609375, -0.00917816162109375, -0.0097503662109375, -0.0238800048828125, -0.00707244873046875, 0.0545654296875, 0.03125, 0.0119171142578125, 0.06951904296875, -0.007518768310546875, -0.0190277099609375, -0.0227813720703125, 0.0219268798828125, 0.0171051025390625, -0.0341796875, -0.005523681640625, -0.027130126953125, -0.00797271728515625, 0.00452423095703125, -0.03619384765625, -0.02093505859375, -0.053619384765625, -0.07757568359375, 0.01538848876953125, 0.00732421875, -0.042724609375, -0.0274200439453125, 0.0229644775390625, -0.0154571533203125, 0.045745849609375, -0.0018329620361328125, -0.00617218017578125, 0.019622802734375, 0.03521728515625, 0.005832672119140625, 0.01312255859375, -0.0033473968505859375, 0.0089569091796875, -0.032684326171875, 0.0200042724609375, 0.01044464111328125, -0.003879547119140625, 0.050323486328125, -0.03289794921875, 0.06378173828125, 0.053558349609375, -0.043548583984375, -0.01206207275390625, -0.0176849365234375, -0.01434326171875, -0.01187896728515625, -0.01235198974609375, -0.053924560546875, -0.041046142578125, 0.050628662109375, 0.07965087890625, 0.0089874267578125, -0.014892578125, -0.00495147705078125, -0.04571533203125, -0.01422119140625, 0.00833892822265625, -0.001049041748046875, -0.04400634765625, 0.0242919921875, 0.037750244140625, -0.010101318359375, -0.04071044921875, 0.0264739990234375, -0.0287933349609375, -0.01459503173828125, 0.00878143310546875, -0.0017576217651367188, -0.009796142578125, 0.0460205078125, -0.00511932373046875, -0.018524169921875, -0.0165252685546875, -0.02484130859375, -0.0213775634765625, -0.02703857421875, -0.0158538818359375, 0.02899169921875, 0.061126708984375, -0.055877685546875, -0.011688232421875, 0.0272216796875, -0.014984130859375, -0.0240020751953125, 0.0014162063598632812, 0.012054443359375, -0.01824951171875, -0.0035305023193359375, -0.019927978515625, 0.0117340087890625, -0.016357421875, -0.045257568359375, 0.05194091796875, -0.0032501220703125, 0.00823974609375, -0.02703857421875, 0.04730224609375, -0.0224151611328125, -0.01885986328125, 0.01332855224609375, -0.056365966796875, 0.01074981689453125, 0.0148468017578125, 0.0186004638671875, -0.050933837890625, 0.01001739501953125, -0.035491943359375, 0.01593017578125, 0.00743865966796875 ]
7dd066bf6210739d827ecf6f91f8f82c6d227c6b
Wordpress Stackexchange Q: Problem with Woocommerce REST API Authentication I am using the postman for the check the REST API Call in WooCommerce. When I call the Woocommerce Defaults API. It displays the error like. { "code": "woocommerce_rest_cannot_create", "message": "Sorry, you are not allowed to create resources.", "data": { "status": 401 } } The above error displays when the Basic Authentication and POST method of Create Customers API. And when I am Trying to Call the Display products API with the cURL http://example.com/wp-json/wc/v2/products Using the GET Methods from postman it will display the following error. { "code": "woocommerce_rest_cannot_view", "message": "Sorry, you cannot list resources.", "data": { "status": 401 } } It would be great if anyone saving me from this headache. Thanks.. A: I got the solution for it. Use the Basic Authentication from the Postman. Thanks
Q: Problem with Woocommerce REST API Authentication I am using the postman for the check the REST API Call in WooCommerce. When I call the Woocommerce Defaults API. It displays the error like. { "code": "woocommerce_rest_cannot_create", "message": "Sorry, you are not allowed to create resources.", "data": { "status": 401 } } The above error displays when the Basic Authentication and POST method of Create Customers API. And when I am Trying to Call the Display products API with the cURL http://example.com/wp-json/wc/v2/products Using the GET Methods from postman it will display the following error. { "code": "woocommerce_rest_cannot_view", "message": "Sorry, you cannot list resources.", "data": { "status": 401 } } It would be great if anyone saving me from this headache. Thanks.. A: I got the solution for it. Use the Basic Authentication from the Postman. Thanks A: I also faced same issue, i tried in Postman, PHP, NodeJs everthing, almost spend 2 days but no output, finally started getting response after putting a slash at the end of the URL, I mean, Initially i was using https://example.com/wp-json/wc/v3/products?consumer_key=ck_XXXX&consumer_secret=cs_XXXX but change it to like this https://example.com/wp-json/wc/v3/products/?consumer_key=ck_XXXX&consumer_secret=cs_XXXX (Just put a slash before question mark in the start of query string). In Postman even without set any Authorization settings(Type = No Auth), i started getting responses. It may be somehow related to my .htaccess, but i feel it would good if i post this solution also here. A: For me, it was an authentication issue. I was using Basic auth for the postman Just select OAuth 1.0 for authentication type and put the consumer and secret key on the field Screenshot: A: if you are using basic auth, be sure that apache is return header authorization, in you http.conf put this SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1 A: Make sure you have given Read/Write Access to the user and also check the .htaccess. Try to paste this code in your .htaccess and check again # BEGIN WordPress # The directives (lines) between `BEGIN WordPress` and `END WordPress` are # dynamically generated, and should only be modified via WordPress filters. # Any changes to the directives between these markers will be overwritten. <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
wordpress
{ "language": "en", "length": 378, "provenance": "stackexchange_00019.jsonl.gz:481304", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/285068" }
[ 0.0289154052734375, -0.016845703125, -0.0222320556640625, -0.01227569580078125, -0.0008220672607421875, -0.0242462158203125, 0.041229248046875, 0.00464630126953125, -0.00545501708984375, 0.02392578125, -0.040924072265625, 0.01546478271484375, -0.0206298828125, -0.0004775524139404297, -0.0221405029296875, -0.03424072265625, 0.01177215576171875, 0.03961181640625, 0.03814697265625, -0.006084442138671875, -0.0106353759765625, 0.00888824462890625, 0.021728515625, 0.052337646484375, 0.00897979736328125, 0.0184783935546875, 0.08599853515625, -0.047943115234375, 0.0311737060546875, -0.008453369140625, 0.01297760009765625, -0.0457763671875, -0.0017728805541992188, 0.0182037353515625, -0.005947113037109375, -0.005443572998046875, 0.01354217529296875, 0.00923919677734375, 0.0035915374755859375, 0.0228271484375, 0.021453857421875, -0.00945281982421875, 0.021942138671875, 0.006145477294921875, -0.00824737548828125, -0.0218048095703125, 0.0026092529296875, -0.043060302734375, 0.0183563232421875, 0.06658935546875, -0.01873779296875, 0.046295166015625, -0.0308990478515625, 0.044342041015625, 0.0069732666015625, -0.020416259765625, -0.0079193115234375, -0.0175323486328125, 0.037384033203125, -0.0301055908203125, -0.029571533203125, -0.02923583984375, 0.0338134765625, 0.00888824462890625, 0.037017822265625, 0.0025348663330078125, 0.0267181396484375, 0.034576416015625, 0.001178741455078125, 0.044952392578125, -0.0075531005859375, -0.020843505859375, 0.010467529296875, 0.009124755859375, -0.0249786376953125, -0.049346923828125, 0.01056671142578125, -0.0260162353515625, 0.02960205078125, -0.00616455078125, 0.041717529296875, -0.00922393798828125, 0.0157623291015625, -0.0394287109375, 0.0178070068359375, -0.0240936279296875, 0.005924224853515625, -0.004093170166015625, -0.0207366943359375, -0.0303497314453125, -0.01369476318359375, -0.07855224609375, -0.01517486572265625, 0.024871826171875, -0.007373809814453125, -0.0116119384765625, -0.01331329345703125, -0.0208282470703125, 0.0167999267578125, 0.0411376953125, 0.0271148681640625, -0.06878662109375, 0.07177734375, -0.0295562744140625, -0.0030269622802734375, -0.0081634521484375, 0.01009368896484375, 0.004047393798828125, 0.0273590087890625, 0.0272369384765625, -0.0296783447265625, 0.051605224609375, 0.007198333740234375, -0.04248046875, 0.008331298828125, -0.005054473876953125, -0.016571044921875, 0.0128631591796875, 0.003231048583984375, -0.046722412109375, -0.0177001953125, 0.014434814453125, 0.0191650390625, 0.0182952880859375, -0.005031585693359375, 0.025390625, 0.001186370849609375, -0.04632568359375, -0.003948211669921875, 0.02069091796875, -0.025115966796875, 0.00505828857421875, 0.030181884765625, 0.042572021484375, 0.0227508544921875, -0.01531982421875, 0.0279693603515625, 0.04632568359375, 0.00902557373046875, -0.007579803466796875, 0.0178070068359375, 0.01105499267578125, 0.0012998580932617188, -0.003170013427734375, 0.03369140625, 0.0029125213623046875, 0.00484466552734375, 0.0162506103515625, 0.0310516357421875, 0.006687164306640625, -0.02532958984375, 0.023834228515625, -0.0194549560546875, 0.020172119140625, 0.111083984375, 0.044708251953125, 0.10711669921875, -0.0196380615234375, -0.023345947265625, 0.01617431640625, -0.018463134765625, -0.025238037109375, 0.02349853515625, -0.04443359375, -0.048187255859375, 0.0292205810546875, -0.05621337890625, -0.005931854248046875, 0.028167724609375, 0.058380126953125, 0.0051727294921875, -0.049774169921875, -0.0213470458984375, 0.005420684814453125, -0.0189208984375, 0.019195556640625, -0.00630950927734375, 0.026123046875, 0.041839599609375, 0.005771636962890625, 0.0038471221923828125, -0.0220184326171875, 0.10626220703125, -0.0168914794921875, -0.0299835205078125, 0.071533203125, 0.02166748046875, 0.05780029296875, -0.047698974609375, 0.0218048095703125, 0.0169830322265625, 0.07696533203125, -0.0149078369140625, 0.022186279296875, -0.03790283203125, -0.06732177734375, 0.050506591796875, -0.007396697998046875, -0.0181427001953125, 0.044158935546875, 0.0180816650390625, 0.013397216796875, 0.005268096923828125, -0.0265350341796875, -0.01776123046875, -0.005496978759765625, 0.000052094459533691406, 0.028289794921875, -0.06622314453125, 0.0157928466796875, 0.0484619140625, 0.0144805908203125, -0.054046630859375, -0.0026531219482421875, 0.026885986328125, -0.01076507568359375, -0.0287017822265625, 0.08026123046875, -0.006748199462890625, 0.0682373046875, -0.0196990966796875, -0.056304931640625, 0.005138397216796875, -0.0187225341796875, 0.02569580078125, -0.0017957687377929688, 0.0026035308837890625, -0.0110321044921875, 0.0870361328125, 0.00272369384765625, 0.044097900390625, -0.029449462890625, 0.0452880859375, 0.02264404296875, -0.033294677734375, -0.0021343231201171875, -0.0108795166015625, -0.052642822265625, 0.006954193115234375, 0.053955078125, 0.036102294921875, 0.01898193359375, -0.010467529296875, -0.0038814544677734375, 0.057098388671875, -0.041717529296875, 0.003086090087890625, -0.018157958984375, -0.001834869384765625, 0.01445770263671875, 0.006328582763671875, 0.0013265609741210938, 0.0135040283203125, -0.041229248046875, -0.01378631591796875, 0.03216552734375, -0.03143310546875, -0.0225372314453125, -0.001064300537109375, -0.0220489501953125, 0.0175933837890625, -0.06280517578125, -0.0250396728515625, -0.0260772705078125, -0.0088348388671875, 0.002796173095703125, 0.00838470458984375, 0.00627899169921875, -0.02197265625, -0.006641387939453125, 0.0255279541015625, 0.01216888427734375, -0.006061553955078125, 0.0306396484375, 0.06182861328125, -0.005847930908203125, -0.04473876953125, -0.007564544677734375, 0.0236053466796875, 0.0274200439453125, 0.0078887939453125, 0.0311431884765625, -0.00797271728515625, -0.002414703369140625, -0.006946563720703125, -0.056304931640625, 0.003543853759765625, 0.04083251953125, 0.041748046875, 0.014251708984375, 0.02935791015625, 0.0196685791015625, -0.010833740234375, 0.0386962890625, -0.00919342041015625, -0.0166015625, 0.04718017578125, -0.00838470458984375, 0.043853759765625, -0.043212890625, 0.0041656494140625, 0.03759765625, -0.02545166015625, -0.0026683807373046875, 0.005229949951171875, -0.007175445556640625, -0.017608642578125, 0.027587890625, 0.007778167724609375, -0.031463623046875, -0.01276397705078125, 0.0310821533203125, 0.0418701171875, 0.048126220703125, 0.025787353515625, -0.0202789306640625, -0.0014667510986328125, 0.054901123046875, -0.040863037109375, -0.09173583984375, 0.007488250732421875, -0.007396697998046875, 0.0031280517578125, -0.0321044921875, 0.0012521743774414062, -0.002834320068359375, -0.040313720703125, -0.0013790130615234375, -0.01526641845703125, -0.01557159423828125, -0.0267181396484375, -0.040374755859375, -0.06439208984375, -0.0293426513671875, -0.00405120849609375, 0.0064239501953125, 0.0053253173828125, 0.018951416015625, -0.0175628662109375, -0.01230621337890625, -0.003387451171875, 0.0173187255859375, 0.0066070556640625, -0.034271240234375, -0.004291534423828125, 0.01239013671875, -0.0121307373046875, 0.005573272705078125, 0.0229949951171875, 0.0305328369140625, -0.022186279296875, 0.00038242340087890625, 0.004459381103515625, -0.0140380859375, -0.0123138427734375, 0.039459228515625, -0.0007863044738769531, -0.049530029296875, -0.0107269287109375, -0.06707763671875, -0.05230712890625, -0.0230865478515625, -0.054229736328125, 0.054351806640625, 0.050689697265625, 0.0022144317626953125, -0.00799560546875, 0.0211639404296875, 0.006801605224609375, 0.00548553466796875, 0.0271453857421875, -0.032440185546875, 0.0140228271484375, -0.00850677490234375, -0.0170440673828125, -0.0246429443359375, 0.09210205078125, 0.00897979736328125, -0.0361328125, 0.039947509765625, -0.0004589557647705078, -0.003009796142578125, -0.01052093505859375, -0.024444580078125, -0.05255126953125, 0.052703857421875, -0.029876708984375, -0.006137847900390625, -0.04339599609375, -0.01129150390625, -0.015380859375, 0.0728759765625, 0.0230865478515625, -0.038238525390625, 0.01555633544921875, 0.0233612060546875, -0.043121337890625, -0.0014181137084960938, 0.005615234375, -0.0119476318359375, 0.0308990478515625, 0.00325775146484375, -0.016021728515625, -0.00006431341171264648, 0.0214080810546875, -0.08160400390625, 0.03521728515625, -0.03765869140625, 0.015655517578125, -0.037017822265625, 0.0255279541015625, -0.00521087646484375, 0.030670166015625, -0.049163818359375, -0.0023193359375, -0.031646728515625, -0.07965087890625, -0.0255279541015625, 0.0245513916015625, 0.06573486328125, -0.018829345703125, -0.00386810302734375, -0.026092529296875, 0.050018310546875, -0.005615234375, 0.03436279296875, -0.0247802734375, 0.0010480880737304688, 0.002681732177734375, 0.0055694580078125, -0.00333404541015625, -0.0083465576171875, -0.02716064453125, -0.01012420654296875, -0.01052093505859375, -0.01338958740234375, -0.00870513916015625, -0.047882080078125, 0.0280609130859375, -0.031524658203125, -0.0889892578125, -0.054351806640625, -0.00360870361328125, 0.01727294921875, -0.03619384765625, 0.0309295654296875, -0.050811767578125, -0.07696533203125, 0.029937744140625, -0.030670166015625, -0.027862548828125, 0.014251708984375, 0.0673828125, 0.0209808349609375, 0.0025272369384765625, -0.03826904296875, -0.004608154296875, 0.016326904296875, -0.020111083984375, 0.0310821533203125, -0.018768310546875, -0.0113067626953125, 0.0670166015625, -0.0244140625, 0.005809783935546875, 0.0286102294921875, 0.0014677047729492188, 0.01387786865234375, -0.0374755859375, 0.0195159912109375, 0.01139068603515625, -0.05828857421875, 0.0145111083984375, -0.0118865966796875, 0.007534027099609375, -0.0015621185302734375, 0.0026721954345703125, -0.0176849365234375, 0.00818634033203125, 0.006500244140625, -0.04559326171875, 0.0270538330078125, -0.06231689453125, 0.0028533935546875, 0.003276824951171875, 0.0089111328125, -0.011383056640625, -0.017425537109375, 0.008514404296875, -0.0673828125, -0.037139892578125, -0.037445068359375, 0.022918701171875, -0.04443359375, 0.0113067626953125, -0.019073486328125, -0.0243988037109375, 0.07318115234375, -0.015777587890625, -0.0755615234375, 0.02435302734375, -0.047607421875, 0.023590087890625, 0.0408935546875, -0.0160675048828125, 0.0499267578125, 0.012664794921875, -0.00969696044921875, -0.0050506591796875, -0.059112548828125, -0.009307861328125, -0.06170654296875, 0.056365966796875, 0.0187530517578125, -0.001842498779296875, -0.011505126953125, 0.06292724609375, 0.0240631103515625, 0.020965576171875, -0.01053619384765625, 0.0136260986328125, -0.016632080078125, 0.05780029296875, 0.0270843505859375, -0.03912353515625, 0.0019683837890625, 0.020355224609375, -0.02825927734375, -0.045318603515625, -0.03485107421875, 0.03533935546875, 0.043182373046875, -0.0325927734375, -0.03411865234375, 0.0203857421875, -0.0028820037841796875, -0.01165771484375, -0.022857666015625, -0.057952880859375, -0.01558685302734375, -0.0311279296875, -0.021514892578125, 0.0187225341796875, 0.000232696533203125, 0.0009937286376953125, -0.00923919677734375, 0.0009465217590332031, 0.038970947265625, 0.00748443603515625, 0.01181793212890625, 0.0038623809814453125, -0.01556396484375, -0.009918212890625, -0.05810546875, -0.0207366943359375, 0.023712158203125, 0.05902099609375, -0.04248046875, -0.043609619140625, 0.03668212890625, -0.020263671875, 0.00586700439453125, -0.017120361328125, 0.00959014892578125, -0.003658294677734375, 0.003269195556640625, 0.03826904296875, 0.00769805908203125, -0.0007081031799316406, -0.023345947265625, -0.0132598876953125, -0.036346435546875, 0.07110595703125, 0.038330078125, -0.01421356201171875, -0.00879669189453125, -0.01351165771484375, 0.0198974609375, -0.0010013580322265625, -0.002483367919921875, -0.0144805908203125, 0.0091552734375, -0.0004858970642089844, 0.0284881591796875, -0.035247802734375, 0.057891845703125, 0.0019464492797851562, 0.0294189453125, 0.0002682209014892578, 0.0202178955078125, 0.0019683837890625, -0.0146026611328125, -0.0234375, -0.0399169921875, -0.006046295166015625, -0.00914764404296875, -0.0201873779296875, 0.082763671875, 0.10321044921875, 0.009063720703125, -0.002521514892578125, -0.0338134765625, -0.01023101806640625, -0.0193023681640625, 0.07977294921875, -0.0301513671875, -0.01351165771484375, 0.0123291015625, 0.0009813308715820312, 0.055145263671875, -0.0208282470703125, -0.0226287841796875, 0.03277587890625, -0.00689697265625, 0.048187255859375, 0.0058746337890625, -0.021697998046875, 0.0491943359375, 0.08795166015625, -0.019195556640625, 0.04132080078125, 0.0038585662841796875, -0.013519287109375, 0.03704833984375, 0.0634765625, -0.0152130126953125, -0.038787841796875, -0.005401611328125, -0.004558563232421875, -0.0181732177734375, -0.0225830078125, -0.0256195068359375, 0.040252685546875, 0.062103271484375, 0.0860595703125, -0.12298583984375, 0.0191802978515625, 0.013641357421875, -0.003726959228515625, 0.034454345703125, -0.01666259765625, -0.0017671585083007812, -0.06243896484375, 0.06591796875, -0.0210113525390625, -0.0029735565185546875, 0.004791259765625, -0.036346435546875, -0.0090484619140625, 0.0310211181640625, 0.01078033447265625, 0.0102386474609375, -0.01483154296875, -0.0164947509765625, -0.00017964839935302734, 0.0133514404296875, 0.0063629150390625, 0.01233673095703125, -0.0153350830078125, -0.0281829833984375, -0.0426025390625, -0.00014722347259521484, -0.0313720703125, -0.003917694091796875, 0.01270294189453125, 0.01529693603515625, -0.0010480880737304688, 0.041778564453125, -0.020904541015625, 0.022186279296875, 0.01061248779296875, 0.003475189208984375, 0.0082244873046875, -0.027740478515625, 0.0013837814331054688, 0.04534912109375, -0.06793212890625, 0.01837158203125, -0.0209197998046875, 0.0210723876953125, 0.0089111328125, 0.0088348388671875, 0.035980224609375, -0.034820556640625, -0.010162353515625, 0.03466796875, 0.02349853515625, -0.00146484375, -0.0164031982421875, 0.055023193359375, -0.050262451171875, 0.019561767578125, 0.034637451171875, 0.044281005859375, -0.01534271240234375, 0.027496337890625, -0.04180908203125, 0.04339599609375, -0.025360107421875, -0.0110015869140625, 0.027984619140625, 0.016510009765625, -0.0184478759765625, -0.0113525390625, -0.046966552734375, 0.05352783203125, -0.0020885467529296875, 0.043914794921875, -0.03289794921875, 0.003490447998046875, 0.013916015625, -0.0191650390625, 0.039825439453125, 0.005207061767578125, -0.00006288290023803711, -0.00432586669921875, 0.017578125, -0.016845703125, -0.04217529296875, 0.038665771484375, 0.0228729248046875, -0.02423095703125, 0.0426025390625, -0.024993896484375, 0.0162506103515625, -0.02783203125, 0.05010986328125, 0.023040771484375, -0.007137298583984375, -0.0264129638671875, 0.0049591064453125, 0.0567626953125, -0.01568603515625, -0.0011529922485351562, 0.014312744140625, -0.0247650146484375, -0.027557373046875, 0.0533447265625, 0.0050201416015625, 0.053253173828125, 0.01678466796875, -0.0283355712890625, 0.034423828125, 0.0178680419921875, 0.042327880859375, 0.03570556640625, 0.0218353271484375, 0.0667724609375, -0.004619598388671875, 0.03167724609375, 0.01520538330078125, -0.037445068359375, 0.03204345703125, 0.0157318115234375, 0.021575927734375, -0.026214599609375, 0.0015611648559570312, 0.029449462890625, 0.03692626953125, -0.0281219482421875, -0.0014524459838867188, -0.00011914968490600586, 0.01519775390625, 0.05450439453125, -0.0206146240234375, 0.0843505859375, -0.01898193359375, -0.0231170654296875, -0.0474853515625, 0.0355224609375, 0.0340576171875, 0.029327392578125, 0.003143310546875, 0.0196380615234375, -0.0811767578125, 0.00424957275390625, -0.01210784912109375, -0.007663726806640625, -0.01483917236328125, 0.0548095703125, 0.00620269775390625, 0.042938232421875, -0.0706787109375, -0.0230865478515625, 0.0253448486328125, 0.01255035400390625, -0.01236724853515625, -0.0440673828125, 0.0165863037109375, -0.042694091796875, 0.0022430419921875, 0.01194000244140625, -0.01898193359375, 0.036285400390625, 0.024078369140625, 0.033538818359375, 0.01506805419921875, -0.0213165283203125, 0.03515625, -0.02362060546875, -0.037689208984375, -0.0092926025390625, -0.058349609375, -0.0233001708984375, -0.036224365234375, -0.0027179718017578125, -0.00800323486328125, -0.006103515625, -0.0281829833984375, 0.04522705078125, -0.0159454345703125, -0.030364990234375, 0.048980712890625, -0.03167724609375, 0.0869140625, -0.0239715576171875, -0.037384033203125, 0.0144500732421875, -0.049591064453125, -0.002841949462890625, -0.0278472900390625, 0.00714874267578125, -0.031036376953125, 0.07720947265625, -0.0007987022399902344, -0.0034618377685546875, 0.0183563232421875, -0.0174560546875, 0.00948333740234375, -0.040008544921875, 0.00518798828125, -0.017852783203125, -0.05279541015625, -0.024932861328125, -0.03619384765625, 0.035614013671875, 0.005157470703125, 0.0792236328125, -0.0168304443359375, 0.0209197998046875, -0.050048828125, -0.005886077880859375, -0.01444244384765625, -0.03802490234375, 0.0122833251953125, 0.0222930908203125, -0.006237030029296875, 0.00852203369140625, -0.02447509765625, 0.03302001953125, 0.01177215576171875, 0.00595855712890625, 0.03662109375, -0.03704833984375, 0.026336669921875, 0.00609588623046875, 0.0313720703125, -0.036651611328125, -0.0655517578125, -0.06243896484375, 0.030609130859375, -0.0092926025390625, -0.001934051513671875, -0.0193023681640625, 0.025726318359375, -0.02410888671875, -0.0297393798828125, 0.0034999847412109375, -0.04248046875, 0.003387451171875, 0.0172271728515625, -0.01323699951171875, 0.047088623046875, -0.037567138671875, -0.0267486572265625, 0.00652313232421875, -0.001224517822265625, -0.051483154296875, -0.008758544921875, -0.01898193359375, -0.0017719268798828125, 0.05596923828125, 0.017669677734375, -0.007770538330078125, -0.0063018798828125, 0.039276123046875, -0.052764892578125, -0.01224517822265625, -0.00896453857421875, -0.01363372802734375, -0.036102294921875, 0.0169677734375, 0.01678466796875, 0.01953125, 0.0164642333984375, 0.0149078369140625, 0.012725830078125, 0.01334381103515625, -0.0197601318359375, -0.01132965087890625, 0.00829315185546875, -0.011322021484375, 0.02313232421875, 0.003948211669921875, -0.0200347900390625, 0.0070648193359375, 0.0029392242431640625, -0.0223541259765625, 0.0169219970703125, -0.0322265625, -0.0205535888671875, -0.01120758056640625, -0.00986480712890625, 0.0037841796875, 0.00768280029296875, -0.039031982421875, -0.033905029296875, -0.03411865234375, 0.00909423828125, -0.0010509490966796875, -0.0192413330078125, -0.01177215576171875, -0.01038360595703125, -0.0141754150390625, -0.0206146240234375, 0.02447509765625, -0.08782958984375, -0.035369873046875, -0.0285491943359375, 0.0286407470703125, 0.04473876953125, -0.025421142578125, -0.0533447265625, 0.041229248046875, -0.0172576904296875, -0.015838623046875, -0.06500244140625, -0.01421356201171875, -0.0243072509765625, 0.07781982421875, -0.0270843505859375, 0.0003826618194580078, -0.0222625732421875, 0.0570068359375, -0.01189422607421875, -0.0169525146484375, 0.0273284912109375, -0.043243408203125, 0.0028514862060546875, 0.0245513916015625, 0.048065185546875, -0.0186309814453125, 0.0223236083984375, -0.007465362548828125, 0.0203704833984375, 0.0202789306640625, -0.037811279296875, 0.0139312744140625, -0.0167236328125, 0.00396728515625, -0.0015344619750976562, -0.027130126953125, 0.0163421630859375, -0.020355224609375, 0.01227569580078125, 0.0018911361694335938, -0.00463104248046875, 0.0008740425109863281, 0.004123687744140625, -0.0252532958984375, -0.006710052490234375, -0.0082244873046875, -0.0038204193115234375, -0.041107177734375, -0.0031604766845703125, 0.0030307769775390625, 0.029052734375, 0.024658203125, -0.0110015869140625, -0.0014314651489257812, -0.0206298828125, 0.0207366943359375, -0.008544921875, -0.035552978515625, -0.00508880615234375, 0.0209503173828125, -0.0233154296875, -0.003551483154296875, -0.01268768310546875, 0.0214385986328125, -0.01018524169921875, -0.0186920166015625, -0.0167083740234375, -0.021881103515625, -0.0011758804321289062, 0.00841522216796875, -0.003345489501953125, 0.0218963623046875, -0.00012421607971191406, -0.01056671142578125, -0.0284271240234375, 0.0087738037109375, 0.0020046234130859375, 0.01824951171875, 0.0156707763671875, 0.0140838623046875, 0.02569580078125, 0.035186767578125, -0.0312042236328125, 0.0193634033203125, -0.021697998046875, 0.031097412109375, -0.015411376953125, 0.018829345703125, 0.0325927734375, -0.019744873046875, 0.0017042160034179688, 0.0243988037109375, -0.011993408203125, -0.052978515625, 0.036956787109375, 0.025238037109375, 0.01947021484375, 0.0240325927734375 ]
058ba7d860ee71a212f294520beeb92db38787d7
Wordpress Stackexchange Q: What is This esc_html_e() i wordpress php? why do developers use <?php esc_html_e() >? in 404 pages, what does it mean, how does it works? A: It's a combination of _e(), which echoes a translatable string, and esc_html() which is for outputting text so that the text is not interpreted as HTML. You would use it to prevent HTML being smuggled into a translation and breaking your markup or causing security issues. For example, if your theme had: _e( 'My translatable string', 'my-text-domain' ); Then it's possible for a translation for 'My translatable string' to be something like '<script>alert('Bad!');</script>'. If you don't use esc_html_e() then that script will be executed. If you use esc_html_e() then it won't be, because the < & > characters will be escaped as &lt; & &gt;, which out output as < and > and not interpreted as HTML tags.
Q: What is This esc_html_e() i wordpress php? why do developers use <?php esc_html_e() >? in 404 pages, what does it mean, how does it works? A: It's a combination of _e(), which echoes a translatable string, and esc_html() which is for outputting text so that the text is not interpreted as HTML. You would use it to prevent HTML being smuggled into a translation and breaking your markup or causing security issues. For example, if your theme had: _e( 'My translatable string', 'my-text-domain' ); Then it's possible for a translation for 'My translatable string' to be something like '<script>alert('Bad!');</script>'. If you don't use esc_html_e() then that script will be executed. If you use esc_html_e() then it won't be, because the < & > characters will be escaped as &lt; & &gt;, which out output as < and > and not interpreted as HTML tags.
wordpress
{ "language": "en", "length": 145, "provenance": "stackexchange_00019.jsonl.gz:481455", "question_score": "11", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/285657" }
[ 0.035858154296875, -0.01396942138671875, -0.0082855224609375, -0.00011819601058959961, 0.00720977783203125, -0.0177459716796875, 0.027069091796875, -0.0299835205078125, 0.031524658203125, 0.04742431640625, 0.01934814453125, 0.014373779296875, 0.0173492431640625, -0.03033447265625, -0.0302886962890625, 0.0284271240234375, 0.013397216796875, -0.0033702850341796875, 0.0290069580078125, 0.0011053085327148438, 0.0011425018310546875, 0.01654052734375, 0.0186309814453125, -0.0626220703125, -0.006732940673828125, -0.03704833984375, 0.060455322265625, -0.03851318359375, -0.0016679763793945312, -0.0293426513671875, -0.00616455078125, 0.0257415771484375, 0.021636962890625, 0.0423583984375, -0.06561279296875, -0.0287933349609375, -0.022216796875, 0.023895263671875, -0.030609130859375, 0.039581298828125, 0.0253143310546875, -0.01812744140625, 0.041473388671875, -0.025360107421875, 0.00577545166015625, -0.001220703125, 0.03631591796875, -0.00623321533203125, 0.0012788772583007812, -0.000045180320739746094, 0.00009107589721679688, -0.014251708984375, 0.0117034912109375, -0.020477294921875, 0.004390716552734375, 0.011566162109375, 0.002712249755859375, 0.01345062255859375, -0.0018138885498046875, 0.0394287109375, -0.003391265869140625, 0.05035400390625, -0.01157379150390625, -0.03509521484375, 0.00036716461181640625, 0.0199127197265625, 0.0146942138671875, 0.01526641845703125, -0.033905029296875, -0.039581298828125, -0.01470947265625, -0.0249176025390625, 0.01554107666015625, -0.06378173828125, 0.0135955810546875, 0.0760498046875, -0.038177490234375, 0.0083770751953125, 0.0196990966796875, -0.0177001953125, 0.030731201171875, 0.0202789306640625, 0.00905609130859375, -0.053985595703125, 0.032562255859375, -0.0313720703125, -0.005313873291015625, -0.019927978515625, -0.02142333984375, -0.03985595703125, -0.0213470458984375, 0.014190673828125, -0.0221099853515625, -0.036712646484375, -0.0212249755859375, -0.032745361328125, 0.003215789794921875, 0.01070404052734375, -0.01995849609375, 0.007137298583984375, 0.046966552734375, -0.052032470703125, 0.056121826171875, -0.034881591796875, -0.0002932548522949219, 0.05340576171875, -0.00572967529296875, -0.018524169921875, 0.033935546875, 0.0116424560546875, 0.0162353515625, 0.023712158203125, -0.05108642578125, -0.044586181640625, 0.024993896484375, 0.07135009765625, -0.040802001953125, 0.037994384765625, -0.0050201416015625, 0.052520751953125, -0.006603240966796875, 0.007110595703125, 0.0340576171875, -0.034759521484375, 0.0128173828125, -0.015625, -0.0184783935546875, -0.0263519287109375, 0.059173583984375, -0.00299835205078125, -0.0055694580078125, 0.00921630859375, 0.0236968994140625, -0.001697540283203125, -0.00843048095703125, -0.004383087158203125, -0.0236663818359375, -0.04327392578125, -0.004856109619140625, 0.0187225341796875, 0.003055572509765625, -0.023681640625, 0.04119873046875, 0.00843048095703125, -0.06964111328125, -0.014617919921875, 0.00618743896484375, 0.0283355712890625, -0.0179595947265625, -0.06488037109375, -0.005268096923828125, -0.01342010498046875, 0.03448486328125, -0.0049896240234375, -0.0297698974609375, -0.035308837890625, 0.01465606689453125, -0.03985595703125, -0.00795745849609375, -0.058197021484375, -0.004581451416015625, -0.0206146240234375, 0.0168609619140625, -0.0016298294067382812, -0.021484375, 0.01306915283203125, -0.026458740234375, 0.0094146728515625, 0.01384735107421875, 0.01505279541015625, -0.02740478515625, 0.001911163330078125, 0.0172271728515625, 0.004405975341796875, -0.0172271728515625, 0.0289459228515625, -0.021881103515625, 0.0277557373046875, 0.03387451171875, 0.007190704345703125, 0.0084075927734375, -0.025848388671875, 0.0570068359375, -0.0057525634765625, -0.085693359375, 0.0599365234375, 0.0082855224609375, 0.0926513671875, 0.0237884521484375, 0.00417327880859375, 0.047698974609375, 0.00506591796875, 0.009979248046875, -0.002704620361328125, -0.010528564453125, -0.0203399658203125, -0.026763916015625, 0.01160430908203125, -0.0157928466796875, -0.01261138916015625, 0.08782958984375, -0.031494140625, 0.04754638671875, -0.0285797119140625, -0.04888916015625, 0.0032806396484375, -0.0204010009765625, 0.024871826171875, 0.058563232421875, 0.041412353515625, -0.006702423095703125, 0.0213470458984375, -0.03173828125, 0.02020263671875, -0.0280609130859375, 0.003482818603515625, -0.0198211669921875, 0.048187255859375, -0.019805908203125, 0.005329132080078125, -0.01183319091796875, -0.052734375, -0.00489044189453125, 0.026885986328125, 0.0291900634765625, -0.0275726318359375, 0.0018815994262695312, -0.0173797607421875, 0.061187744140625, -0.00843048095703125, 0.05517578125, 0.0143890380859375, 0.0673828125, 0.044647216796875, -0.021148681640625, -0.01450347900390625, -0.01226043701171875, -0.0736083984375, -0.0135345458984375, 0.06634521484375, 0.050933837890625, 0.07977294921875, 0.001728057861328125, -0.06842041015625, 0.054473876953125, -0.06842041015625, 0.012969970703125, -0.061248779296875, -0.01531982421875, -0.02337646484375, 0.015899658203125, -0.034423828125, 0.0247955322265625, -0.080078125, -0.004425048828125, 0.03851318359375, -0.03436279296875, -0.0136566162109375, -0.048004150390625, 0.02239990234375, 0.00916290283203125, -0.0228424072265625, 0.0030994415283203125, -0.0170440673828125, 0.0294342041015625, 0.0007486343383789062, 0.029815673828125, 0.013885498046875, -0.018096923828125, -0.01415252685546875, 0.0102386474609375, 0.02545166015625, -0.00244903564453125, 0.033660888671875, -0.035003662109375, 0.043212890625, -0.0195465087890625, 0.00170135498046875, 0.00728607177734375, 0.02130126953125, -0.00997161865234375, 0.055999755859375, -0.010345458984375, -0.037933349609375, -0.0227203369140625, -0.040740966796875, -0.017974853515625, -0.042144775390625, 0.0338134765625, -0.015411376953125, 0.0072784423828125, 0.04217529296875, 0.01490020751953125, 0.041839599609375, 0.02178955078125, -0.01325225830078125, -0.005840301513671875, -0.0675048828125, 0.03485107421875, -0.037628173828125, 0.03326416015625, 0.0548095703125, 0.020416259765625, -0.027496337890625, -0.0014276504516601562, -0.0208892822265625, 0.00780487060546875, -0.00942230224609375, -0.0323486328125, 0.004123687744140625, -0.11041259765625, -0.0234832763671875, 0.0185394287109375, 0.00609588623046875, -0.0106048583984375, -0.029083251953125, -0.029296875, 0.0050201416015625, -0.08270263671875, -0.0633544921875, 0.03717041015625, -0.047210693359375, 0.004673004150390625, -0.02154541015625, -0.0132904052734375, -0.01129150390625, 0.0016717910766601562, -0.007671356201171875, -0.0013208389282226562, -0.0115966796875, -0.031494140625, -0.025665283203125, -0.0443115234375, 0.05999755859375, 0.007564544677734375, 0.033294677734375, 0.0009427070617675781, -0.0123748779296875, -0.003360748291015625, 0.0074920654296875, 0.0211029052734375, 0.0252838134765625, 0.0172119140625, 0.0024280548095703125, -0.01059722900390625, -0.0513916015625, -0.030181884765625, 0.00215911865234375, -0.06396484375, -0.0726318359375, 0.07928466796875, -0.0296630859375, -0.01087188720703125, 0.01470947265625, 0.00914764404296875, -0.031585693359375, 0.002819061279296875, 0.0124664306640625, -0.0165252685546875, -0.04608154296875, -0.01016998291015625, -0.04388427734375, -0.058685302734375, 0.02349853515625, 0.04937744140625, 0.024139404296875, -0.020660400390625, -0.009765625, 0.022308349609375, 0.01126861572265625, 0.040924072265625, 0.0078582763671875, -0.0093994140625, -0.01105499267578125, -0.0008130073547363281, -0.04156494140625, 0.022247314453125, 0.007293701171875, 0.0025463104248046875, 0.01514434814453125, 0.03485107421875, 0.00882720947265625, -0.007549285888671875, -0.0281524658203125, -0.02301025390625, 0.04547119140625, 0.038299560546875, 0.036712646484375, -0.0004622936248779297, -0.05010986328125, -0.0142822265625, 0.050689697265625, -0.0213165283203125, -0.0224609375, 0.0189208984375, -0.00585174560546875, 0.01043701171875, 0.0286865234375, -0.033447265625, -0.00876617431640625, -0.0038051605224609375, 0.048095703125, 0.026641845703125, 0.00470733642578125, -0.038818359375, 0.041351318359375, -0.0220794677734375, 0.0126800537109375, 0.020599365234375, -0.0118865966796875, 0.01447296142578125, -0.0240936279296875, 0.0221099853515625, -0.054107666015625, 0.01230621337890625, -0.034332275390625, -0.039459228515625, -0.01055145263671875, -0.021759033203125, 0.0236053466796875, 0.022216796875, -0.03515625, -0.0382080078125, 0.01207733154296875, 0.03955078125, 0.06439208984375, 0.0113525390625, -0.0183868408203125, 0.028594970703125, 0.0126800537109375, 0.05059814453125, -0.0179290771484375, 0.027374267578125, 0.04669189453125, -0.061187744140625, 0.0287017822265625, 0.0126800537109375, -0.047454833984375, 0.064208984375, -0.08056640625, -0.043792724609375, -0.026153564453125, -0.00926971435546875, 0.0216064453125, 0.018646240234375, -0.022369384765625, -0.033203125, -0.050262451171875, 0.06085205078125, 0.02996826171875, 0.0010614395141601562, -0.021881103515625, 0.0296630859375, 0.01082611083984375, -0.054412841796875, 0.0277099609375, -0.015167236328125, 0.02410888671875, 0.02166748046875, 0.032135009765625, 0.0111083984375, -0.0255889892578125, 0.04364013671875, -0.00498199462890625, 0.0235137939453125, -0.018890380859375, 0.0294036865234375, -0.010589599609375, -0.00027060508728027344, -0.000644683837890625, -0.0263214111328125, -0.01312255859375, 0.0653076171875, 0.0217437744140625, -0.0174102783203125, 0.0180816650390625, -0.00884246826171875, -0.030181884765625, 0.0019931793212890625, 0.0131683349609375, -0.01003265380859375, -0.00665283203125, 0.031097412109375, 0.030303955078125, 0.06793212890625, -0.0043792724609375, 0.0213165283203125, 0.01727294921875, -0.00815582275390625, -0.01364898681640625, -0.0082244873046875, -0.0268402099609375, 0.007411956787109375, -0.0007300376892089844, -0.046142578125, 0.0010557174682617188, -0.0088653564453125, 0.037628173828125, -0.00009751319885253906, -0.0218048095703125, -0.03839111328125, 0.01995849609375, 0.00478363037109375, -0.00799560546875, 0.01995849609375, 0.006664276123046875, -0.0035305023193359375, 0.004199981689453125, 0.01250457763671875, 0.03118896484375, -0.0380859375, -0.0010576248168945312, -0.01343536376953125, 0.00797271728515625, -0.00330352783203125, -0.0145416259765625, 0.03363037109375, 0.03289794921875, -0.0144500732421875, -0.03814697265625, 0.021514892578125, 0.0157470703125, 0.05450439453125, 0.016815185546875, -0.08148193359375, 0.03179931640625, 0.0192413330078125, 0.0175018310546875, -0.06427001953125, -0.040740966796875, 0.045074462890625, 0.0770263671875, -0.0458984375, -0.0193328857421875, 0.01012420654296875, 0.01038360595703125, -0.00974273681640625, 0.08319091796875, 0.0114593505859375, -0.046905517578125, -0.07666015625, -0.035400390625, 0.06280517578125, -0.0274200439453125, 0.0008969306945800781, 0.015869140625, -0.007030487060546875, 0.01488494873046875, -0.0240631103515625, -0.00647735595703125, -0.02020263671875, 0.00009369850158691406, -0.0169219970703125, -0.01027679443359375, -0.00787353515625, -0.039031982421875, -0.0194854736328125, -0.0105438232421875, -0.0175933837890625, 0.06622314453125, -0.00482940673828125, 0.01116180419921875, -0.02545166015625, -0.0127105712890625, 0.0079803466796875, 0.0065460205078125, 0.042572021484375, -0.0042572021484375, -0.0355224609375, 0.00986480712890625, -0.05474853515625, -0.0187835693359375, -0.05810546875, -0.05615234375, -0.05535888671875, -0.0016498565673828125, 0.000362396240234375, 0.02593994140625, 0.0007801055908203125, 0.023834228515625, 0.01229095458984375, 0.0263214111328125, -0.028472900390625, 0.079345703125, -0.031219482421875, 0.055572509765625, 0.0086517333984375, 0.0060272216796875, -0.00305938720703125, 0.046875, 0.020721435546875, -0.01036834716796875, 0.0193023681640625, 0.0082550048828125, -0.0367431640625, -0.0357666015625, 0.03118896484375, 0.004405975341796875, 0.055999755859375, -0.024505615234375, 0.028900146484375, 0.0141754150390625, 0.003414154052734375, -0.0081024169921875, -0.020751953125, 0.0202484130859375, 0.0187835693359375, 0.045074462890625, -0.062744140625, -0.04388427734375, 0.02496337890625, 0.018768310546875, 0.043701171875, -0.0289459228515625, 0.01336669921875, 0.03125, -0.0045166015625, -0.00759124755859375, 0.045867919921875, 0.0226287841796875, 0.048065185546875, 0.007633209228515625, 0.0242767333984375, 0.020294189453125, -0.0031280517578125, 0.0033702850341796875, 0.009796142578125, -0.01131439208984375, -0.0288543701171875, 0.015869140625, -0.035064697265625, -0.005046844482421875, 0.019927978515625, 0.08990478515625, 0.093994140625, -0.097412109375, -0.003936767578125, 0.033905029296875, -0.04290771484375, -0.0439453125, -0.01239013671875, -0.0214996337890625, -0.072998046875, 0.03900146484375, -0.031097412109375, -0.030181884765625, -0.0200653076171875, -0.035797119140625, -0.0222015380859375, 0.0079498291015625, 0.039459228515625, 0.0235443115234375, -0.032958984375, 0.01103973388671875, 0.0032958984375, -0.005126953125, -0.0271759033203125, -0.0000368952751159668, 0.011260986328125, -0.0203094482421875, -0.056854248046875, -0.01456451416015625, -0.005764007568359375, -0.0192718505859375, -0.0294952392578125, 0.012969970703125, 0.00934600830078125, 0.047760009765625, -0.038787841796875, 0.030975341796875, 0.0203094482421875, 0.0185394287109375, -0.006916046142578125, -0.017578125, -0.01459503173828125, -0.00537109375, 0.0147552490234375, 0.00963592529296875, -0.0125274658203125, -0.0282135009765625, -0.001438140869140625, 0.00022840499877929688, 0.024322509765625, 0.026702880859375, -0.0535888671875, -0.00222015380859375, 0.0091705322265625, 0.01479339599609375, -0.032470703125, -0.019744873046875, -0.05865478515625, -0.015960693359375, -0.050506591796875, -0.037384033203125, 0.052825927734375, -0.0401611328125, -0.057586669921875, 0.0628662109375, 0.02349853515625, 0.01424407958984375, -0.00806427001953125, 0.020538330078125, -0.037872314453125, -0.01184844970703125, -0.03533935546875, 0.017791748046875, 0.00942230224609375, 0.046539306640625, -0.028717041015625, -0.002681732177734375, 0.01971435546875, 0.026458740234375, 0.0275726318359375, -0.003971099853515625, -0.0261383056640625, 0.034149169921875, 0.1016845703125, 0.01480865478515625, -0.0007152557373046875, 0.029205322265625, 0.0199432373046875, 0.049285888671875, 0.03863525390625, -0.06011962890625, 0.016448974609375, -0.02935791015625, 0.0087432861328125, 0.032318115234375, -0.00246429443359375, -0.04168701171875, 0.007663726806640625, 0.01027679443359375, -0.04888916015625, 0.0194091796875, -0.0106964111328125, 0.044158935546875, -0.03857421875, 0.01812744140625, 0.036834716796875, -0.06512451171875, 0.00804901123046875, -0.046295166015625, 0.04833984375, 0.042236328125, 0.0287017822265625, 0.041778564453125, 0.0246734619140625, 0.0173797607421875, 0.002742767333984375, 0.0235595703125, 0.01030731201171875, -0.016387939453125, 0.005802154541015625, 0.0101776123046875, 0.019378662109375, -0.025360107421875, -0.004734039306640625, 0.041015625, 0.0214691162109375, -0.0084991455078125, -0.0183563232421875, 0.0014324188232421875, 0.006923675537109375, 0.0181121826171875, 0.0016832351684570312, 0.026947021484375, 0.0013456344604492188, 0.01413726806640625, -0.00739288330078125, -0.00826263427734375, -0.0069427490234375, -0.00971221923828125, -0.00957489013671875, 0.0024509429931640625, 0.020965576171875, 0.0024280548095703125, -0.038177490234375, -0.02423095703125, -0.017181396484375, 0.043487548828125, 0.051300048828125, 0.0191650390625, 0.0035572052001953125, -0.033050537109375, -0.0271759033203125, -0.0001342296600341797, -0.01555633544921875, 0.029510498046875, -0.0333251953125, 0.03143310546875, -0.002376556396484375, 0.03607177734375, 0.01154327392578125, -0.023681640625, 0.03662109375, 0.045684814453125, -0.040008544921875, -0.01216888427734375, 0.041046142578125, -0.00899505615234375, 0.0247650146484375, -0.040313720703125, 0.0482177734375, 0.014251708984375, 0.0190582275390625, -0.031829833984375, 0.0170135498046875, 0.040740966796875, -0.01120758056640625, 0.03204345703125, -0.020751953125, -0.049652099609375, -0.02362060546875, -0.0218963623046875, 0.09765625, 0.0081329345703125, -0.0237884521484375, 0.00830841064453125, 0.0059051513671875, -0.05816650390625, 0.0288543701171875, 0.053497314453125, -0.006374359130859375, -0.007232666015625, 0.0196533203125, -0.02911376953125, 0.0233612060546875, 0.019866943359375, -0.005344390869140625, 0.01097869873046875, 0.02105712890625, 0.00249481201171875, -0.01125335693359375, -0.031951904296875, 0.01314544677734375, 0.05078125, -0.0133819580078125, 0.03143310546875, -0.022369384765625, 0.020843505859375, 0.0238037109375, 0.0178680419921875, -0.00021910667419433594, 0.003910064697265625, 0.039215087890625, 0.019989013671875, 0.0231170654296875, -0.04510498046875, -0.054595947265625, 0.0236663818359375, 0.003086090087890625, 0.004634857177734375, -0.00814056396484375, 0.01030731201171875, 0.027374267578125, 0.046539306640625, 0.01233673095703125, -0.029327392578125, -0.040740966796875, -0.0126495361328125, 0.015228271484375, 0.0018110275268554688, 0.0211334228515625, 0.01922607421875, 0.0142059326171875, -0.00038814544677734375, -0.037384033203125, 0.036407470703125, -0.0400390625, 0.00731658935546875, 0.01001739501953125, 0.04083251953125, 0.0239410400390625, 0.038055419921875, -0.0156097412109375, 0.0069580078125, 0.00936126708984375, 0.0191650390625, -0.009918212890625, 0.0069580078125, -0.0260009765625, -0.0296630859375, 0.01364898681640625, -0.006008148193359375, -0.011932373046875, -0.01654052734375, -0.00838470458984375, 0.0190887451171875, 0.0064239501953125, 0.0017108917236328125, -0.0060882568359375, -0.0030765533447265625, 0.0006403923034667969, 0.03082275390625, -0.01500701904296875, 0.004512786865234375, -0.039581298828125, 0.0035724639892578125, 0.0098419189453125, -0.004917144775390625, -0.035186767578125, 0.0198211669921875, -0.00702667236328125, 0.001087188720703125, 0.0269317626953125, -0.02362060546875, -0.017547607421875, -0.05706787109375, -0.018798828125, -0.053985595703125, 0.023284912109375, -0.035064697265625, 0.006458282470703125, 0.02996826171875, -0.0126953125, 0.003475189208984375, 0.01361846923828125, -0.00445556640625, 0.054656982421875, -0.0297393798828125, -0.029754638671875, -0.005603790283203125, 0.016815185546875, -0.004787445068359375, -0.0212249755859375, 0.0004830360412597656, -0.028167724609375, 0.0009465217590332031, 0.0131988525390625, -0.01275634765625, 0.0106964111328125, -0.045562744140625, -0.1015625, 0.042633056640625, -0.0142974853515625, -0.03424072265625, -0.017242431640625, -0.01617431640625, -0.00038313865661621094, 0.017791748046875, -0.02044677734375, 0.00804901123046875, -0.038726806640625, 0.007289886474609375, 0.0283050537109375, -0.01169586181640625, 0.0648193359375, -0.011138916015625, -0.05810546875, -0.005290985107421875, -0.0100860595703125, -0.0008082389831542969, -0.0283660888671875, 0.0111236572265625, 0.014312744140625, 0.038116455078125, -0.0267486572265625, 0.00771331787109375, -0.00785064697265625, 0.005496978759765625, -0.0151824951171875, -0.054351806640625, 0.0142822265625, 0.00818634033203125, 0.058990478515625, -0.0018768310546875, 0.0018634796142578125, -0.042144775390625, -0.029937744140625, -0.04901123046875, -0.01256561279296875, -0.03887939453125, 0.01322174072265625, -0.09454345703125, -0.0166015625, 0.0200958251953125, -0.01294708251953125, 0.048980712890625, -0.045989990234375, -0.0192718505859375, 0.00977325439453125, -0.0195159912109375, 0.00634765625, -0.0169677734375, -0.07281494140625, 0.1016845703125, -0.0528564453125, 0.00928497314453125, 0.0262603759765625, 0.038330078125, 0.043304443359375, 0.0216064453125, -0.029754638671875, 0.012664794921875, -0.01084136962890625, -0.00836181640625, -0.019866943359375, -0.005939483642578125, -0.004886627197265625, 0.0219879150390625, 0.005420684814453125, 0.028533935546875, -0.01312255859375, 0.045379638671875, -0.013427734375, 0.055572509765625, 0.0016651153564453125, 0.025665283203125, -0.05511474609375, 0.012908935546875, -0.01873779296875, -0.00034332275390625, -0.035614013671875, 0.039581298828125, 0.024169921875, -0.0223541259765625, 0.04119873046875, -0.028350830078125, 0.023590087890625, 0.0215606689453125, -0.0165863037109375, -0.04296875, -0.041259765625, 0.007541656494140625 ]
9c7e1bca93e8506f46c20ce5588245f2c9e541f5
Wordpress Stackexchange Q: Disable text tab on WordPress text-editor I'm looking for a way to disable text tab on wordpress text-edito (red square on the pic) for all my users roles except ADMINISTRATOR because i don't want them to have the possibility to add javascript code on the pages. I also looking for a way to add justify icon to the text-editor (like you see on the pic in red too). now i found a way to hide text tab for all users with the code bellow function my_editor_settings($settings) { $settings['quicktags'] = false; return $settings; } add_filter('wp_editor_settings', 'my_editor_settings'); How can add an exception for ADMINISTRATOR role? A: For disabling the text tab for all users except administrators, you can add the following: function my_editor_settings($settings) { if ( ! current_user_can('administrator') ) { $settings['quicktags'] = false; return $settings; } else { $settings['quicktags'] = true; return $settings; } } add_filter('wp_editor_settings', 'my_editor_settings');
Q: Disable text tab on WordPress text-editor I'm looking for a way to disable text tab on wordpress text-edito (red square on the pic) for all my users roles except ADMINISTRATOR because i don't want them to have the possibility to add javascript code on the pages. I also looking for a way to add justify icon to the text-editor (like you see on the pic in red too). now i found a way to hide text tab for all users with the code bellow function my_editor_settings($settings) { $settings['quicktags'] = false; return $settings; } add_filter('wp_editor_settings', 'my_editor_settings'); How can add an exception for ADMINISTRATOR role? A: For disabling the text tab for all users except administrators, you can add the following: function my_editor_settings($settings) { if ( ! current_user_can('administrator') ) { $settings['quicktags'] = false; return $settings; } else { $settings['quicktags'] = true; return $settings; } } add_filter('wp_editor_settings', 'my_editor_settings');
wordpress
{ "language": "en", "length": 146, "provenance": "stackexchange_00019.jsonl.gz:481459", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/285670" }
[ 0.04443359375, -0.031890869140625, 0.03192138671875, 0.01529693603515625, -0.01416015625, -0.02642822265625, 0.048583984375, -0.034637451171875, 0.050262451171875, 0.045166015625, 0.02081298828125, -0.052459716796875, 0.03857421875, -0.045623779296875, -0.040863037109375, -0.003978729248046875, -0.004779815673828125, 0.0034656524658203125, -0.015838623046875, -0.029266357421875, 0.001430511474609375, -0.0460205078125, 0.006175994873046875, -0.00672149658203125, -0.009368896484375, 0.02459716796875, 0.08062744140625, -0.0257415771484375, 0.001247406005859375, -0.01111602783203125, 0.0168304443359375, -0.037872314453125, -0.01483917236328125, 0.08642578125, -0.06866455078125, -0.0005936622619628906, -0.0027332305908203125, 0.03314208984375, 0.0266876220703125, 0.0020275115966796875, 0.035888671875, -0.0036640167236328125, -0.031768798828125, 0.0391845703125, -0.0222930908203125, -0.06561279296875, 0.058868408203125, -0.0251922607421875, 0.03631591796875, -0.0189971923828125, -0.009796142578125, 0.024932861328125, 0.0163116455078125, -0.0570068359375, -0.0058135986328125, 0.016357421875, -0.0147857666015625, 0.0094451904296875, -0.00611114501953125, 0.050201416015625, 0.003833770751953125, 0.042755126953125, -0.0184478759765625, -0.0143585205078125, -0.0004925727844238281, -0.016571044921875, -0.00640106201171875, 0.0229644775390625, -0.0667724609375, 0.00627899169921875, 0.038421630859375, -0.04827880859375, 0.028533935546875, -0.031951904296875, 0.025299072265625, 0.00542449951171875, -0.0282440185546875, -0.014617919921875, 0.03570556640625, -0.0120849609375, -0.0023365020751953125, -0.01087188720703125, -0.032501220703125, -0.0035724639892578125, 0.0164337158203125, 0.036102294921875, -0.0216522216796875, -0.0167236328125, -0.006999969482421875, 0.0009202957153320312, -0.00795745849609375, 0.013031005859375, -0.042999267578125, 0.061920166015625, 0.003490447998046875, -0.015777587890625, 0.04205322265625, 0.030242919921875, -0.01313018798828125, -0.0172882080078125, 0.0579833984375, -0.07476806640625, 0.0303802490234375, -0.0196685791015625, 0.013336181640625, 0.041015625, -0.0199432373046875, -0.06488037109375, -0.004360198974609375, 0.01340484619140625, 0.0007519721984863281, -0.04736328125, -0.0018682479858398438, -0.0051727294921875, -0.002960205078125, -0.01004791259765625, -0.041717529296875, 0.0244598388671875, -0.0137939453125, 0.004810333251953125, -0.0259246826171875, 0.017364501953125, -0.05218505859375, -0.01459503173828125, 0.0023632049560546875, -0.0494384765625, 0.009124755859375, 0.033447265625, 0.046783447265625, -0.0380859375, -0.034271240234375, 0.0139312744140625, 0.0440673828125, 0.06964111328125, 0.05364990234375, 0.005023956298828125, 0.0006108283996582031, -0.035736083984375, -0.0032367706298828125, 0.03265380859375, -0.0258331298828125, -0.01273345947265625, 0.037322998046875, -0.022613525390625, -0.0243682861328125, 0.031280517578125, 0.016693115234375, -0.0129852294921875, -0.0085296630859375, -0.031890869140625, -0.046630859375, -0.015380859375, 0.04095458984375, 0.007808685302734375, -0.007549285888671875, -0.007110595703125, 0.030303955078125, -0.016448974609375, -0.029449462890625, -0.0255126953125, 0.006954193115234375, 0.00799560546875, 0.04998779296875, 0.0159912109375, -0.006710052490234375, -0.011566162109375, -0.0255889892578125, -0.001354217529296875, 0.02294921875, -0.00811004638671875, 0.0046844482421875, 0.00513458251953125, 0.05364990234375, -0.021575927734375, -0.0055999755859375, 0.007167816162109375, -0.00911712646484375, -0.013885498046875, 0.03314208984375, 0.01259613037109375, -0.0223388671875, -0.0279083251953125, 0.036163330078125, -0.0226898193359375, -0.048583984375, 0.0160369873046875, -0.01849365234375, 0.0263519287109375, 0.048187255859375, 0.00594329833984375, 0.004497528076171875, -0.00644683837890625, -0.015716552734375, -0.04345703125, 0.007411956787109375, -0.0254058837890625, 0.0019893646240234375, -0.03070068359375, -0.0002770423889160156, 0.04913330078125, 0.051239013671875, -0.031341552734375, -0.0052642822265625, -0.05859375, -0.11419677734375, -0.041290283203125, -0.0197601318359375, 0.03424072265625, 0.01036834716796875, 0.01024627685546875, 0.00928497314453125, -0.0063934326171875, -0.03338623046875, 0.0235748291015625, -0.01116180419921875, 0.00782012939453125, -0.00534820556640625, 0.07318115234375, 0.03668212890625, 0.0302886962890625, 0.064208984375, -0.0123291015625, 0.08062744140625, -0.0140533447265625, -0.03839111328125, -0.033782958984375, 0.0015821456909179688, 0.00785064697265625, 0.039031982421875, -0.0260009765625, 0.09674072265625, -0.005947113037109375, 0.03729248046875, 0.0176544189453125, -0.0296630859375, 0.00786590576171875, -0.015716552734375, -0.05865478515625, -0.02215576171875, 0.05572509765625, 0.047943115234375, 0.04315185546875, -0.048736572265625, -0.066650390625, 0.043365478515625, -0.04254150390625, -0.00921630859375, -0.0294189453125, 0.005413055419921875, 0.029266357421875, 0.01375579833984375, 0.0028934478759765625, 0.03033447265625, -0.0012950897216796875, 0.041259765625, 0.02593994140625, -0.0171966552734375, 0.00424957275390625, 0.00940704345703125, -0.0103302001953125, 0.0017852783203125, 0.016845703125, 0.01568603515625, -0.0189208984375, 0.0187835693359375, 0.013916015625, 0.01800537109375, 0.02130126953125, -0.0482177734375, 0.021209716796875, 0.0287322998046875, 0.007717132568359375, -0.01007080078125, -0.006351470947265625, 0.038421630859375, -0.021209716796875, -0.035247802734375, 0.004009246826171875, 0.0200042724609375, 0.00677490234375, -0.01113128662109375, -0.032623291015625, 0.005237579345703125, -0.005168914794921875, 0.04608154296875, -0.037200927734375, 0.033416748046875, -0.0262451171875, -0.02020263671875, -0.036376953125, -0.01207733154296875, 0.020294189453125, -0.00809478759765625, 0.0026187896728515625, 0.00885772705078125, -0.0253143310546875, 0.036407470703125, -0.0296783447265625, 0.0198974609375, -0.0008788108825683594, 0.06103515625, 0.06964111328125, 0.0017642974853515625, 0.0078582763671875, 0.04345703125, -0.06707763671875, 0.02239990234375, 0.0347900390625, 0.032470703125, 0.054229736328125, -0.075927734375, 0.052978515625, 0.00821685791015625, 0.0056304931640625, -0.020782470703125, -0.03717041015625, -0.013916015625, 0.001049041748046875, -0.032257080078125, 0.0021266937255859375, 0.0161285400390625, -0.061309814453125, -0.026336669921875, 0.0197296142578125, -0.0377197265625, -0.01113128662109375, 0.057952880859375, -0.0020503997802734375, -0.0310211181640625, -0.00687408447265625, 0.00457763671875, -0.00555419921875, -0.01470947265625, -0.0220947265625, -0.0035858154296875, -0.0027751922607421875, 0.0164031982421875, 0.05224609375, 0.0046844482421875, -0.030181884765625, 0.02850341796875, -0.058258056640625, -0.01155853271484375, 0.036865234375, 0.0127410888671875, -0.023162841796875, 0.000881195068359375, 0.006778717041015625, 0.002559661865234375, -0.0024890899658203125, 0.00955963134765625, -0.02001953125, 0.0279693603515625, 0.00170135498046875, 0.04278564453125, 0.00162506103515625, -0.04425048828125, 0.00897979736328125, 0.019012451171875, -0.033782958984375, -0.005126953125, -0.01355743408203125, -0.0246124267578125, 0.02484130859375, -0.0240020751953125, 0.00653076171875, 0.000988006591796875, 0.033172607421875, 0.03826904296875, 0.037139892578125, 0.0035572052001953125, 0.0184326171875, 0.0174407958984375, 0.00926971435546875, 0.019287109375, -0.0362548828125, 0.00632476806640625, -0.0452880859375, 0.0274658203125, -0.0108795166015625, -0.03192138671875, -0.031585693359375, 0.0008635520935058594, -0.004032135009765625, -0.019622802734375, 0.03729248046875, -0.03814697265625, -0.025726318359375, -0.01074981689453125, -0.0182647705078125, -0.00383758544921875, 0.029144287109375, -0.0528564453125, 0.0001920461654663086, -0.01529693603515625, 0.0174560546875, -0.03826904296875, -0.06396484375, -0.0386962890625, 0.01029205322265625, -0.05633544921875, 0.0304718017578125, -0.000835418701171875, -0.006374359130859375, -0.05267333984375, 0.00339508056640625, -0.054290771484375, -0.01474761962890625, 0.032196044921875, -0.0285797119140625, 0.01029205322265625, 0.03472900390625, 0.0020656585693359375, -0.0020046234130859375, -0.02490234375, -0.02435302734375, -0.0968017578125, -0.007305145263671875, -0.05462646484375, 0.0667724609375, 0.0227203369140625, -0.01093292236328125, -0.017852783203125, 0.039337158203125, 0.0264739990234375, 0.0008320808410644531, 0.0401611328125, 0.005664825439453125, 0.020538330078125, 0.005924224853515625, 0.035552978515625, -0.030426025390625, 0.022918701171875, 0.0328369140625, -0.0279693603515625, 0.0399169921875, -0.04510498046875, -0.0360107421875, 0.024627685546875, -0.057525634765625, -0.045806884765625, -0.029876708984375, -0.057647705078125, -0.01094818115234375, -0.0256195068359375, -0.0303192138671875, -0.01332855224609375, -0.04864501953125, 0.05938720703125, 0.021453857421875, -0.02630615234375, 0.004047393798828125, 0.05029296875, 0.00955963134765625, -0.04156494140625, -0.031829833984375, 0.01153564453125, 0.060882568359375, 0.04547119140625, -0.042266845703125, -0.0266571044921875, -0.06536865234375, 0.041015625, 0.0303192138671875, -0.0002624988555908203, -0.03448486328125, 0.05279541015625, -0.0211944580078125, -0.04022216796875, 0.0167083740234375, -0.040802001953125, 0.0266876220703125, 0.006015777587890625, 0.002166748046875, 0.003719329833984375, 0.024139404296875, 0.01242828369140625, -0.00930023193359375, 0.006473541259765625, -0.0121307373046875, -0.024749755859375, -0.00772857666015625, 0.050750732421875, 0.0235443115234375, 0.020477294921875, 0.012298583984375, 0.0178680419921875, 0.042236328125, -0.00920867919921875, 0.0292510986328125, 0.01445770263671875, -0.02386474609375, 0.0234375, -0.00848388671875, -0.03607177734375, 0.0016870498657226562, -0.0015659332275390625, 0.02655029296875, -0.0168304443359375, -0.0545654296875, -0.0290679931640625, -0.011871337890625, 0.033599853515625, 0.03192138671875, -0.020721435546875, 0.0305938720703125, 0.0167388916015625, -0.00323486328125, 0.018402099609375, 0.016754150390625, -0.0333251953125, -0.0202789306640625, -0.05010986328125, -0.007686614990234375, -0.0232086181640625, 0.01953125, 0.0206756591796875, -0.041473388671875, 0.0188446044921875, -0.0033779144287109375, 0.01148223876953125, 0.01093292236328125, -0.0196990966796875, 0.018646240234375, 0.0443115234375, -0.0012636184692382812, -0.048919677734375, 0.031005859375, -0.038787841796875, 0.00601959228515625, 0.04522705078125, 0.05865478515625, 0.0165252685546875, -0.044219970703125, -0.012939453125, -0.06182861328125, 0.0038127899169921875, 0.0252838134765625, -0.0023250579833984375, -0.0443115234375, -0.0013208389282226562, 0.006168365478515625, -0.00843048095703125, -0.043060302734375, 0.00885772705078125, 0.0087890625, -0.00732421875, -0.0007710456848144531, 0.04833984375, -0.0352783203125, -0.022857666015625, -0.0106964111328125, -0.005008697509765625, 0.00035834312438964844, -0.025634765625, -0.0556640625, -0.054168701171875, 0.0159149169921875, 0.01006317138671875, 0.00041747093200683594, -0.023590087890625, 0.0389404296875, -0.05126953125, 0.009613037109375, -0.057403564453125, 0.0105438232421875, 0.057525634765625, 0.037384033203125, -0.05889892578125, 0.02081298828125, -0.0450439453125, -0.01226043701171875, -0.072998046875, -0.07183837890625, -0.050750732421875, -0.014801025390625, 0.0274200439453125, 0.01224517822265625, 0.007232666015625, -0.046661376953125, -0.008819580078125, 0.048553466796875, 0.02685546875, 0.05389404296875, -0.0184173583984375, 0.059478759765625, -0.02789306640625, 0.050140380859375, -0.01788330078125, 0.01995849609375, -0.00031876564025878906, -0.01427459716796875, 0.029052734375, -0.03399658203125, -0.03472900390625, -0.0273895263671875, -0.0102691650390625, -0.0153350830078125, 0.01403045654296875, -0.02349853515625, 0.006450653076171875, 0.0009188652038574219, 0.0106964111328125, -0.02691650390625, -0.00850677490234375, 0.0022563934326171875, 0.036468505859375, -0.036956787109375, -0.0307769775390625, 0.0606689453125, -0.01012420654296875, -0.0273284912109375, 0.036834716796875, -0.0292205810546875, 0.04412841796875, 0.042694091796875, -0.00936126708984375, 0.02288818359375, 0.05859375, -0.0171051025390625, 0.049560546875, 0.034820556640625, 0.017974853515625, 0.0458984375, 0.00962066650390625, -0.03656005859375, 0.007770538330078125, 0.01094818115234375, 0.004245758056640625, -0.0030689239501953125, 0.01708984375, -0.00698089599609375, 0.003917694091796875, 0.09405517578125, 0.082763671875, -0.11871337890625, -0.01277923583984375, 0.0112152099609375, -0.01033782958984375, 0.0159149169921875, -0.037567138671875, -0.005260467529296875, -0.0618896484375, 0.07183837890625, -0.0350341796875, -0.029541015625, 0.0003781318664550781, -0.044830322265625, -0.0194549560546875, -0.01641845703125, 0.0577392578125, 0.01556396484375, 0.020721435546875, -0.0142669677734375, -0.0096282958984375, 0.0036945343017578125, -0.0052490234375, 0.01953125, -0.0225067138671875, -0.020660400390625, -0.06304931640625, -0.0325927734375, 0.006969451904296875, -0.044281005859375, 0.024139404296875, -0.0229339599609375, -0.00522613525390625, 0.042999267578125, -0.0428466796875, 0.03485107421875, 0.01184844970703125, -0.04901123046875, 0.00152587890625, -0.0281829833984375, -0.039398193359375, 0.022735595703125, -0.019195556640625, 0.0121002197265625, -0.006500244140625, 0.01605224609375, -0.007843017578125, 0.00884246826171875, 0.033172607421875, 0.021759033203125, -0.039581298828125, 0.0272979736328125, -0.00757598876953125, -0.006015777587890625, -0.025848388671875, -0.012725830078125, -0.018035888671875, 0.0133819580078125, -0.0411376953125, -0.0430908203125, 0.017608642578125, -0.055755615234375, -0.03369140625, 0.0919189453125, -0.032470703125, 0.0032253265380859375, 0.011993408203125, 0.036651611328125, -0.0034542083740234375, 0.033294677734375, 0.001903533935546875, 0.006256103515625, -0.0184326171875, 0.04180908203125, 0.022003173828125, 0.003589630126953125, 0.035125732421875, 0.040496826171875, 0.041259765625, 0.00760650634765625, -0.03680419921875, -0.01456451416015625, 0.0270843505859375, 0.0408935546875, -0.00774383544921875, 0.034576416015625, 0.007808685302734375, 0.0018310546875, 0.02227783203125, -0.0372314453125, 0.02520751953125, -0.0374755859375, -0.0228118896484375, 0.033447265625, 0.0192108154296875, 0.0221099853515625, -0.00917816162109375, 0.03192138671875, -0.01201629638671875, -0.0004241466522216797, 0.01206207275390625, -0.047760009765625, -0.0228118896484375, 0.021820068359375, 0.044342041015625, -0.07940673828125, -0.03515625, -0.037353515625, 0.051727294921875, 0.044464111328125, -0.03863525390625, 0.01180267333984375, 0.0170745849609375, -0.068115234375, -0.0100250244140625, -0.0180511474609375, 0.021820068359375, -0.01910400390625, -0.04449462890625, -0.012542724609375, -0.01357269287109375, -0.0291748046875, 0.037109375, 0.035552978515625, -0.03387451171875, -0.01024627685546875, -0.029388427734375, 0.007537841796875, 0.01177215576171875, -0.00041365623474121094, -0.005741119384765625, 0.0078277587890625, 0.006053924560546875, 0.05426025390625, -0.0024738311767578125, 0.00824737548828125, 0.003543853759765625, 0.01129913330078125, -0.00695037841796875, 0.023773193359375, -0.0199127197265625, 0.01044464111328125, -0.03936767578125, -0.03179931640625, -0.0199127197265625, 0.00801849365234375, 0.07208251953125, 0.0118255615234375, 0.08282470703125, -0.0232086181640625, -0.021820068359375, 0.0052032470703125, 0.01123809814453125, 0.010101318359375, -0.032073974609375, -0.01131439208984375, 0.004810333251953125, 0.0350341796875, 0.023590087890625, 0.02813720703125, 0.020599365234375, 0.034820556640625, 0.01953125, 0.0002627372741699219, 0.03961181640625, -0.00799560546875, -0.0253448486328125, -0.01512908935546875, 0.024017333984375, 0.0394287109375, 0.0234527587890625, -0.0045318603515625, 0.056549072265625, 0.029510498046875, -0.0008335113525390625, 0.0208892822265625, -0.00734710693359375, -0.0080108642578125, -0.02044677734375, 0.007793426513671875, -0.045379638671875, 0.015899658203125, -0.04815673828125, 0.0013914108276367188, -0.0218963623046875, -0.038726806640625, 0.01690673828125, 0.038177490234375, -0.0111541748046875, 0.01953125, 0.0191802978515625, -0.0127716064453125, -0.01200103759765625, -0.01561737060546875, 0.044219970703125, -0.00891876220703125, -0.02789306640625, 0.01324462890625, -0.006191253662109375, -0.0034961700439453125, 0.0164947509765625, 0.0251312255859375, 0.0012874603271484375, 0.060577392578125, -0.0027332305908203125, 0.002864837646484375, -0.004627227783203125, 0.043609619140625, -0.048797607421875, -0.025115966796875, 0.042205810546875, -0.004669189453125, 0.0172119140625, -0.01346588134765625, -0.06683349609375, 0.0574951171875, 0.0040283203125, 0.011871337890625, 0.046051025390625, 0.0125274658203125, -0.004558563232421875, -0.01522064208984375, -0.00151824951171875, -0.02239990234375, -0.03369140625, -0.045654296875, -0.01035308837890625, 0.00830841064453125, -0.004146575927734375, -0.00952911376953125, 0.01480865478515625, 0.014251708984375, -0.01192474365234375, -0.0133209228515625, 0.0251617431640625, -0.0418701171875, 0.0110626220703125, 0.0018167495727539062, -0.02569580078125, 0.0004935264587402344, -0.0071258544921875, -0.00641632080078125, 0.0163116455078125, -0.00714111328125, 0.0269317626953125, -0.05804443359375, -0.01395416259765625, 0.0105743408203125, 0.040985107421875, 0.0218505859375, 0.015960693359375, 0.0010128021240234375, -0.0150909423828125, -0.03125, -0.01448822021484375, -0.01236724853515625, -0.0303192138671875, -0.0007739067077636719, 0.036590576171875, -0.0297088623046875, -0.035308837890625, -0.07891845703125, -0.0038127899169921875, 0.009857177734375, -0.001636505126953125, -0.05389404296875, 0.032562255859375, -0.017181396484375, 0.04681396484375, -0.036407470703125, 0.0244598388671875, -0.012908935546875, -0.01160430908203125, -0.032196044921875, -0.061248779296875, -0.023223876953125, 0.069091796875, -0.03271484375, 0.0111236572265625, 0.0474853515625, -0.01534271240234375, -0.041412353515625, 0.019287109375, 0.0006566047668457031, 0.054534912109375, -0.058013916015625, -0.0124359130859375, -0.0049896240234375, 0.033477783203125, -0.018890380859375, -0.0572509765625, -0.01067352294921875, 0.01708984375, 0.0166778564453125, -0.02252197265625, -0.00875091552734375, -0.0032176971435546875, -0.053497314453125, -0.0595703125, -0.007190704345703125, 0.0065460205078125, -0.040802001953125, 0.013214111328125, -0.01258087158203125, -0.03973388671875, 0.026214599609375, 0.026641845703125, -0.038909912109375, 0.0219268798828125, 0.0287017822265625, 0.01306915283203125, 0.04437255859375, 0.00919342041015625, 0.0142364501953125, -0.0262451171875, 0.00704193115234375, -0.01328277587890625, -0.00789642333984375, 0.0111846923828125, -0.016693115234375, 0.023529052734375, 0.033599853515625, -0.042236328125, -0.030609130859375, -0.01204681396484375, -0.00408172607421875, -0.034912109375, -0.0308990478515625, -0.01203155517578125, -0.0200958251953125, 0.0528564453125, 0.07550048828125, 0.00884246826171875, -0.0260009765625, -0.03460693359375, -0.0238037109375, -0.0038299560546875, 0.0167083740234375, 0.01153564453125, -0.06048583984375, 0.0108642578125, 0.02362060546875, -0.004848480224609375, 0.0300750732421875, 0.0024967193603515625, -0.019195556640625, -0.0152130126953125, 0.0181121826171875, 0.01494598388671875, -0.0772705078125, 0.00460052490234375, 0.0175933837890625, -0.03460693359375, -0.02960205078125, -0.00911712646484375, 0.0087432861328125, -0.02093505859375, -0.0246124267578125, -0.0273284912109375, -0.0160064697265625, -0.043121337890625, 0.06591796875, -0.04656982421875, 0.07489013671875, -0.096435546875, -0.004039764404296875, -0.007251739501953125, -0.004730224609375, 0.0006937980651855469, -0.005092620849609375, -0.00955963134765625, 0.0014352798461914062, -0.006072998046875, 0.0265350341796875, -0.01357269287109375, 0.02239990234375, -0.031036376953125, 0.031005859375, 0.00992584228515625, -0.0096435546875, 0.0177459716796875, 0.006549835205078125, 0.0191497802734375, 0.031402587890625, 0.0491943359375, -0.006988525390625, 0.0161590576171875, -0.003948211669921875, 0.027252197265625, 0.0007305145263671875 ]
44143c5bc6f99025925072fe9d405a6732989bd0
Wordpress Stackexchange Q: Why is WordPress redirecting from http to https on a local environment? I recently set up a live WordPress site on my local environment through Duplicator. I can access the wp-admin but I cannot access the main site as wp redirects the site from http to https automatically. I checked the .htaccess, but no luck. I checked the wp_options table and it has an entry of the site with http not https. Can you tell what seems to be the problem and what files should I be looking at? Thanks. Edit: I cleaned the browser cache (even ran it on incognito), still no luck. A: Well, at my situation... I downloaded the company website from production to localhost because I was needed to prepare a development environment for some developers. The production is using https:// and at localhost http://, and when I ran it the first time on localhost, it always redirected me to the https://. And, I have managed to made this working on my localhost simply by adding the following lines in the wp-config.php (my wp version was 4.9.8): define('FORCE_SSL', false); define('FORCE_SSL_ADMIN', false); Good luck!
Q: Why is WordPress redirecting from http to https on a local environment? I recently set up a live WordPress site on my local environment through Duplicator. I can access the wp-admin but I cannot access the main site as wp redirects the site from http to https automatically. I checked the .htaccess, but no luck. I checked the wp_options table and it has an entry of the site with http not https. Can you tell what seems to be the problem and what files should I be looking at? Thanks. Edit: I cleaned the browser cache (even ran it on incognito), still no luck. A: Well, at my situation... I downloaded the company website from production to localhost because I was needed to prepare a development environment for some developers. The production is using https:// and at localhost http://, and when I ran it the first time on localhost, it always redirected me to the https://. And, I have managed to made this working on my localhost simply by adding the following lines in the wp-config.php (my wp version was 4.9.8): define('FORCE_SSL', false); define('FORCE_SSL_ADMIN', false); Good luck! A: Make sure you don't have installed and activated a plugin that forces a redirection to HTTPS, for example, the Really Simple SSL. If you have one, deactivate it on the localhost by renaming the plugin folder name, e.g. rename it from "really-simple-ssl" to "really-simple-ssl_deactivated". Now you should be able to access your wp-admin URL. A: Well, if you can access /wp-admin/, the solution is pretty simple - clean your browser cache or try to open your website in incognito tab. A: You should comment out these lines in .htaccess file #RewriteCond %{ENV:HTTPS} !=on #RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [R,L] A: You can easily do it with wp cli. * *Install wp-cli using the instruction here *run wp plugin deactivate really-simple-ssl from terminal. You can also add autocomplete to your bash terminal so you can easily see suggestion of plugins you have installed.
wordpress
{ "language": "en", "length": 329, "provenance": "stackexchange_00019.jsonl.gz:481461", "question_score": "9", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/285676" }
[ 0.0193634033203125, 0.0015172958374023438, -0.006938934326171875, -0.01535797119140625, -0.001102447509765625, -0.0201873779296875, 0.0195465087890625, -0.0247650146484375, 0.0115509033203125, 0.0019216537475585938, 0.0157928466796875, -0.006534576416015625, -0.0185699462890625, -0.048919677734375, 0.01535797119140625, -0.00821685791015625, 0.0284271240234375, -0.02838134765625, 0.00356292724609375, -0.014007568359375, 0.000865936279296875, 0.0030384063720703125, 0.01470184326171875, -0.01294708251953125, 0.0017900466918945312, -0.00689697265625, 0.09375, -0.0232086181640625, -0.00487518310546875, -0.03802490234375, 0.01715087890625, -0.0017862319946289062, -0.0082855224609375, 0.05767822265625, -0.049835205078125, -0.07257080078125, -0.021636962890625, 0.028594970703125, -0.0256195068359375, 0.0560302734375, -0.01165771484375, 0.0009832382202148438, 0.0701904296875, 0.047027587890625, -0.00518798828125, -0.0229644775390625, 0.01422119140625, -0.027984619140625, -0.0182952880859375, 0.0162811279296875, 0.0014505386352539062, 0.0150299072265625, 0.01511383056640625, -0.03253173828125, -0.0013217926025390625, -0.00447845458984375, -0.01409149169921875, 0.004299163818359375, 0.0235595703125, -0.00446319580078125, -0.0189971923828125, -0.00830841064453125, 0.01067352294921875, -0.015838623046875, -0.02783203125, -0.00384521484375, 0.043182373046875, -0.00881195068359375, -0.047210693359375, -0.02978515625, 0.03179931640625, 0.0007753372192382812, 0.0029659271240234375, -0.01549530029296875, 0.0195770263671875, -0.0089874267578125, 0.0183563232421875, 0.0156402587890625, 0.004596710205078125, 0.0094146728515625, 0.0285797119140625, 0.02105712890625, -0.027618408203125, -0.0288848876953125, 0.044097900390625, 0.030120849609375, 0.00452423095703125, -0.038238525390625, -0.005275726318359375, -0.01517486572265625, -0.0271148681640625, -0.0054779052734375, 0.0213470458984375, -0.01210784912109375, -0.03497314453125, -0.024383544921875, 0.01261138916015625, 0.02337646484375, 0.0099945068359375, 0.011566162109375, -0.0147552490234375, -0.034149169921875, 0.00479888916015625, -0.01165008544921875, -0.00594329833984375, 0.0225982666015625, 0.0005326271057128906, 0.0584716796875, 0.038360595703125, 0.0301513671875, 0.00799560546875, -0.01328277587890625, -0.064453125, -0.035064697265625, -0.01934814453125, 0.058197021484375, -0.040771484375, -0.006656646728515625, -0.015960693359375, 0.0169830322265625, -0.003589630126953125, 0.025634765625, -0.02203369140625, 0.01427459716796875, -0.0003151893615722656, -0.00969696044921875, 0.0036468505859375, -0.02508544921875, -0.005527496337890625, 0.032928466796875, -0.03680419921875, -0.0151824951171875, 0.061920166015625, 0.05535888671875, 0.0223388671875, -0.0297393798828125, 0.059967041015625, -0.01458740234375, -0.01470947265625, 0.045135498046875, -0.0148468017578125, -0.05010986328125, -0.0202178955078125, -0.0006775856018066406, 0.048431396484375, 0.0207672119140625, 0.0197296142578125, 0.00920867919921875, 0.0016183853149414062, -0.0216217041015625, 0.0292205810546875, -0.018096923828125, 0.0301055908203125, 0.01529693603515625, 0.016937255859375, -0.0211029052734375, 0.055023193359375, -0.03564453125, -0.018707275390625, -0.04766845703125, 0.01015472412109375, 0.0214691162109375, 0.0221405029296875, -0.0223846435546875, -0.0267791748046875, -0.034454345703125, -0.04217529296875, -0.008697509765625, 0.0275421142578125, 0.00511932373046875, 0.027587890625, -0.00836944580078125, -0.0129241943359375, -0.0026226043701171875, 0.00208282470703125, -0.0008449554443359375, -0.0018367767333984375, 0.026153564453125, 0.025238037109375, 0.0419921875, 0.032562255859375, -0.01044464111328125, 0.09210205078125, -0.007038116455078125, -0.0272674560546875, 0.048980712890625, -0.024688720703125, 0.03643798828125, 0.0275726318359375, 0.00104522705078125, -0.04107666015625, 0.01395416259765625, -0.0086669921875, 0.034454345703125, -0.03076171875, -0.058441162109375, -0.0018892288208007812, -0.00977325439453125, -0.015106201171875, 0.0030975341796875, -0.0235443115234375, 0.00241851806640625, -0.022064208984375, 0.0076904296875, 0.00732421875, -0.03460693359375, 0.016265869140625, 0.00191497802734375, 0.0253753662109375, 0.005832672119140625, -0.00823211669921875, -0.01015472412109375, -0.0010461807250976562, -0.058868408203125, -0.045257568359375, 0.00582122802734375, -0.050933837890625, 0.02899169921875, 0.0009889602661132812, 0.03057861328125, 0.0157928466796875, -0.04791259765625, 0.0001519918441772461, -0.04669189453125, 0.037078857421875, 0.00493621826171875, -0.0203704833984375, 0.00022745132446289062, 0.04156494140625, 0.008636474609375, -0.0120849609375, 0.025421142578125, 0.01861572265625, 0.0263519287109375, -0.041046142578125, 0.00010538101196289062, -0.022125244140625, -0.0303497314453125, -0.00931549072265625, 0.040863037109375, 0.038665771484375, 0.02001953125, -0.0244293212890625, -0.030517578125, 0.0277862548828125, -0.084228515625, -0.0105133056640625, -0.013641357421875, 0.01540374755859375, -0.007244110107421875, -0.0199432373046875, -0.02960205078125, 0.043670654296875, -0.05523681640625, 0.00936126708984375, 0.061126708984375, -0.0006203651428222656, 0.0018253326416015625, -0.0044403076171875, -0.02337646484375, 0.0252685546875, -0.0421142578125, -0.06512451171875, -0.0027294158935546875, -0.033721923828125, -0.00833892822265625, -0.0237884521484375, -0.0177001953125, -0.0228271484375, -0.0190277099609375, 0.032958984375, -0.0322265625, 0.002948760986328125, 0.04559326171875, 0.06512451171875, -0.0213470458984375, -0.042938232421875, -0.01337432861328125, 0.04217529296875, 0.035675048828125, -0.004589080810546875, 0.023651123046875, -0.0259552001953125, -0.0069580078125, -0.0007071495056152344, -0.0301513671875, 0.00030112266540527344, 0.018280029296875, 0.040313720703125, 0.0218048095703125, 0.05657958984375, -0.01332855224609375, -0.00614166259765625, 0.02008056640625, -0.00499725341796875, -0.028045654296875, 0.08026123046875, -0.03424072265625, 0.01384735107421875, -0.00506591796875, 0.1195068359375, 0.054046630859375, -0.04119873046875, 0.050537109375, -0.0028438568115234375, -0.00435638427734375, 0.0223541259765625, -0.0540771484375, -0.05279541015625, 0.00439453125, -0.077392578125, -0.021820068359375, 0.0264892578125, -0.05804443359375, 0.03717041015625, -0.01513671875, 0.0025730133056640625, -0.001007080078125, -0.07421875, -0.0662841796875, -0.09564208984375, -0.031463623046875, 0.0284576416015625, 0.044281005859375, 0.0094146728515625, -0.01174163818359375, 0.06427001953125, 0.04425048828125, 0.0211944580078125, -0.018798828125, -0.05535888671875, -0.0506591796875, -0.08087158203125, 0.005580902099609375, -0.00839996337890625, 0.0157318115234375, 0.00479888916015625, 0.02081298828125, 0.00022125244140625, -0.0163116455078125, 0.0213165283203125, 0.0237579345703125, -0.01303863525390625, -0.005619049072265625, -0.043853759765625, -0.0026569366455078125, 0.0384521484375, 0.004673004150390625, 0.0386962890625, -0.0146942138671875, 0.026763916015625, -0.0406494140625, -0.0017614364624023438, -0.0273895263671875, -0.006526947021484375, -0.06689453125, -0.0146026611328125, -0.027862548828125, -0.04315185546875, -0.053436279296875, -0.00200653076171875, -0.00244903564453125, -0.024169921875, -0.0043182373046875, 0.004474639892578125, -0.029541015625, -0.00249481201171875, -0.0153045654296875, 0.0157623291015625, 0.02044677734375, 0.0306549072265625, -0.0135498046875, 0.046661376953125, -0.005985260009765625, -0.00931549072265625, -0.0740966796875, 0.061492919921875, -0.0026645660400390625, -0.0328369140625, 0.003780364990234375, -0.0458984375, -0.04693603515625, -0.01323699951171875, -0.0628662109375, -0.06134033203125, 0.037445068359375, -0.040069580078125, -0.00665283203125, -0.0253448486328125, -0.017913818359375, -0.01207733154296875, 0.09490966796875, -0.01837158203125, 0.00952911376953125, 0.011505126953125, 0.0219573974609375, -0.03070068359375, -0.0241851806640625, -0.0540771484375, 0.004669189453125, -0.07391357421875, -0.013885498046875, -0.027587890625, -0.0192718505859375, 0.0135955810546875, -0.04205322265625, -0.012786865234375, -0.053131103515625, 0.03314208984375, -0.0196685791015625, 0.006053924560546875, -0.0273895263671875, -0.0208587646484375, -0.041290283203125, -0.0090789794921875, -0.023712158203125, -0.069091796875, -0.0279998779296875, 0.006153106689453125, 0.06097412109375, -0.0081787109375, 0.0015573501586914062, -0.01142120361328125, 0.06011962890625, 0.01367950439453125, 0.007415771484375, -0.01727294921875, -0.025054931640625, 0.0125579833984375, 0.0186767578125, -0.01419830322265625, 0.0149688720703125, -0.023773193359375, -0.036529541015625, -0.05548095703125, -0.0068511962890625, 0.014434814453125, 0.01800537109375, 0.04010009765625, -0.031280517578125, -0.03326416015625, -0.0110626220703125, -0.0233001708984375, 0.0103912353515625, -0.034271240234375, 0.0023555755615234375, -0.00647735595703125, -0.04351806640625, 0.057525634765625, -0.01227569580078125, -0.0086822509765625, 0.006420135498046875, 0.051025390625, -0.004611968994140625, -0.03680419921875, -0.024444580078125, 0.0177001953125, 0.031402587890625, -0.00704193115234375, 0.06494140625, 0.041473388671875, 0.02056884765625, 0.048614501953125, 0.0011434555053710938, 0.01324462890625, -0.0117034912109375, 0.017608642578125, -0.01139068603515625, -0.0124359130859375, 0.010467529296875, -0.0094451904296875, -0.013946533203125, 0.033416748046875, 0.045074462890625, -0.035430908203125, 0.03173828125, 0.0011301040649414062, 0.0230865478515625, -0.02886962890625, 0.00988006591796875, -0.035614013671875, 0.0223236083984375, -0.04766845703125, 0.053619384765625, 0.01031494140625, 0.006145477294921875, 0.04034423828125, 0.04901123046875, 0.015594482421875, -0.0440673828125, -0.02398681640625, -0.0273284912109375, 0.03973388671875, -0.040618896484375, 0.0020046234130859375, 0.0028018951416015625, -0.0264434814453125, 0.09814453125, 0.0192718505859375, -0.06964111328125, 0.042449951171875, -0.002513885498046875, -0.031158447265625, 0.0400390625, -0.03369140625, 0.0161895751953125, -0.021148681640625, -0.006473541259765625, -0.0166473388671875, -0.028656005859375, -0.0592041015625, -0.040618896484375, 0.024444580078125, -0.014984130859375, 0.0162353515625, 0.0279083251953125, 0.06134033203125, 0.048370361328125, 0.0394287109375, -0.036529541015625, -0.0034389495849609375, -0.010833740234375, 0.006381988525390625, 0.01383209228515625, 0.0015964508056640625, 0.047210693359375, -0.0443115234375, 0.043914794921875, -0.043304443359375, -0.04998779296875, 0.032501220703125, 0.046630859375, 0.01419830322265625, 0.0030117034912109375, 0.01384735107421875, 0.0282745361328125, -0.0299072265625, 0.055877685546875, -0.00432586669921875, -0.06243896484375, -0.035186767578125, -0.022552490234375, 0.032470703125, -0.01290130615234375, -0.02886962890625, 0.04827880859375, 0.004459381103515625, 0.03167724609375, 0.0271759033203125, -0.039093017578125, 0.00942230224609375, 0.02056884765625, 0.004230499267578125, -0.040771484375, -0.025634765625, 0.007724761962890625, 0.036041259765625, -0.03466796875, -0.005901336669921875, 0.02001953125, -0.0283050537109375, 0.006320953369140625, -0.003265380859375, -0.0109405517578125, 0.0227508544921875, 0.0255889892578125, 0.0297393798828125, -0.004535675048828125, -0.01139068603515625, -0.01479339599609375, -0.039886474609375, -0.00923919677734375, 0.041839599609375, 0.0044097900390625, -0.01140594482421875, 0.003086090087890625, 0.045684814453125, 0.0164947509765625, -0.01374053955078125, -0.07415771484375, -0.03277587890625, 0.006591796875, 0.05999755859375, 0.01480865478515625, -0.01383209228515625, 0.04815673828125, -0.003231048583984375, 0.042205810546875, 0.002704620361328125, 0.0132293701171875, -0.0285797119140625, -0.019012451171875, 0.04156494140625, -0.04229736328125, -0.06512451171875, -0.0311431884765625, -0.039154052734375, 0.006866455078125, 0.0540771484375, -0.0250091552734375, -0.0038776397705078125, 0.009735107421875, 0.015228271484375, -0.007602691650390625, -0.016448974609375, 0.0253753662109375, 0.0196380615234375, -0.007476806640625, 0.01090240478515625, 0.0174560546875, -0.036956787109375, -0.050628662109375, -0.0013780593872070312, 0.0228729248046875, -0.0172882080078125, 0.02978515625, -0.0092926025390625, 0.0028934478759765625, 0.09381103515625, 0.020172119140625, 0.07159423828125, 0.026824951171875, 0.016815185546875, 0.056121826171875, 0.01216888427734375, -0.0237579345703125, -0.034881591796875, -0.0164947509765625, -0.0032825469970703125, 0.007152557373046875, -0.0159912109375, -0.0002663135528564453, -0.006435394287109375, 0.076904296875, 0.083251953125, -0.09185791015625, 0.0084381103515625, 0.043060302734375, -0.02435302734375, -0.0386962890625, -0.00988006591796875, -0.02313232421875, -0.030853271484375, 0.00772857666015625, 0.0155181884765625, -0.0297088623046875, 0.0004801750183105469, 0.041900634765625, -0.01151275634765625, -0.007266998291015625, 0.056121826171875, 0.00856781005859375, -0.040313720703125, -0.00629425048828125, 0.025604248046875, -0.0083770751953125, 0.02154541015625, 0.00908660888671875, -0.0006322860717773438, -0.0285797119140625, -0.052093505859375, -0.048431396484375, -0.029296875, -0.031494140625, 0.038909912109375, 0.00756072998046875, 0.00843048095703125, 0.058868408203125, -0.01009368896484375, 0.0149383544921875, 0.02435302734375, 0.00211334228515625, 0.01910400390625, -0.03662109375, -0.0226287841796875, 0.0005736351013183594, -0.047607421875, 0.0032806396484375, -0.014007568359375, -0.0081634521484375, -0.0066986083984375, -0.0039520263671875, 0.06573486328125, -0.01035308837890625, -0.0235595703125, 0.03411865234375, 0.026153564453125, -0.023773193359375, -0.0146484375, 0.033111572265625, -0.03155517578125, 0.00843048095703125, -0.010589599609375, -0.004947662353515625, -0.0011920928955078125, -0.0288543701171875, -0.0208892822265625, 0.05059814453125, 0.00010830163955688477, -0.0064697265625, 0.0220489501953125, 0.022796630859375, -0.0276031494140625, 0.0299224853515625, 0.004985809326171875, 0.03656005859375, 0.02587890625, -0.0225372314453125, -0.02850341796875, -0.009368896484375, -0.01332855224609375, 0.049163818359375, 0.053009033203125, 0.01617431640625, -0.066162109375, 0.0163421630859375, 0.08306884765625, 0.04168701171875, 0.027923583984375, 0.058441162109375, -0.012603759765625, 0.0259857177734375, 0.0293426513671875, -0.04864501953125, 0.0223388671875, 0.00394439697265625, -0.0178375244140625, 0.006732940673828125, 0.0285186767578125, 0.02435302734375, 0.0187835693359375, 0.02740478515625, -0.04681396484375, 0.027435302734375, 0.05072021484375, -0.001255035400390625, 0.018524169921875, -0.0209808349609375, -0.01209259033203125, -0.04522705078125, 0.0217437744140625, -0.036651611328125, 0.0234222412109375, -0.00997161865234375, -0.026458740234375, -0.01529693603515625, 0.0017337799072265625, -0.011566162109375, 0.0222320556640625, -0.0139923095703125, 0.041717529296875, -0.0031337738037109375, 0.01207733154296875, 0.006610870361328125, 0.035308837890625, -0.0003838539123535156, 0.057220458984375, 0.0225067138671875, 0.01497650146484375, -0.032806396484375, -0.027435302734375, -0.016326904296875, -0.0210418701171875, 0.0234222412109375, -0.0170745849609375, 0.0165252685546875, 0.0149383544921875, 0.00731658935546875, -0.0015239715576171875, -0.0020465850830078125, 0.0182037353515625, -0.0218505859375, 0.0250244140625, 0.08013916015625, -0.0291900634765625, 0.02392578125, -0.024444580078125, -0.043792724609375, 0.026763916015625, 0.02935791015625, 0.01511383056640625, 0.02642822265625, 0.0249481201171875, -0.014984130859375, 0.0031871795654296875, 0.0044708251953125, -0.007175445556640625, -0.00933837890625, -0.04180908203125, -0.04241943359375, 0.0204315185546875, 0.04913330078125, 0.0323486328125, -0.02069091796875, 0.045379638671875, 0.052276611328125, 0.0093536376953125, -0.0200347900390625, 0.00659942626953125, 0.0007991790771484375, -0.0038967132568359375, -0.06292724609375, -0.015533447265625, -0.01473236083984375, -0.0121612548828125, 0.018310546875, -0.01525115966796875, 0.0189208984375, -0.00029540061950683594, 0.055419921875, -0.01413726806640625, -0.00901031494140625, 0.002071380615234375, -0.048828125, 0.04327392578125, 0.012908935546875, -0.031494140625, 0.0030059814453125, 0.0282745361328125, -0.043670654296875, -0.0150299072265625, 0.0208587646484375, -0.01067352294921875, 0.01512908935546875, -0.024749755859375, -0.0234527587890625, 0.0291900634765625, 0.00394439697265625, 0.01561737060546875, 0.00774383544921875, -0.01067352294921875, -0.02178955078125, -0.0192413330078125, 0.0088958740234375, 0.0029582977294921875, 0.027557373046875, -0.05633544921875, 0.1405029296875, -0.06219482421875, -0.0093841552734375, 0.0006995201110839844, -0.00821685791015625, -0.00708770751953125, 0.006565093994140625, -0.0114288330078125, -0.0033702850341796875, 0.0191650390625, -0.00263214111328125, -0.09490966796875, -0.0034008026123046875, 0.016326904296875, -0.00977325439453125, -0.0007205009460449219, 0.0088348388671875, 0.023193359375, -0.0199432373046875, 0.0028133392333984375, -0.0386962890625, -0.07720947265625, -0.042236328125, 0.032958984375, -0.0224761962890625, 0.033905029296875, 0.00977325439453125, 0.0258026123046875, -0.0511474609375, -0.0240478515625, 0.0113067626953125, -0.060394287109375, -0.032684326171875, 0.0037384033203125, -0.0093231201171875, -0.00939178466796875, 0.034210205078125, -0.00909423828125, 0.0264892578125, -0.0074615478515625, 0.045684814453125, -0.014556884765625, 0.01453399658203125, -0.02703857421875, -0.0086212158203125, -0.019012451171875, -0.005764007568359375, -0.0134735107421875, 0.018707275390625, -0.0240936279296875, -0.041595458984375, -0.0216064453125, -0.010589599609375, -0.01197052001953125, -0.015594482421875, 0.0184783935546875, -0.00261688232421875, -0.034454345703125, -0.037841796875, -0.005184173583984375, 0.025604248046875, -0.0153045654296875, 0.010009765625, -0.0228271484375, -0.05462646484375, 0.05535888671875, -0.0117340087890625, 0.0404052734375, 0.00591278076171875, 0.036529541015625, -0.06158447265625, -0.00806427001953125, -0.015228271484375, -0.01183319091796875, -0.03741455078125, 0.0036067962646484375, 0.03521728515625, -0.0069580078125, -0.023040771484375, -0.0278778076171875, -0.0185394287109375, 0.01390838623046875, -0.04901123046875, 0.0027618408203125, 0.01027679443359375, 0.0091552734375, -0.038970947265625, -0.040863037109375, 0.02587890625, -0.0245208740234375, -0.0165863037109375, 0.0150909423828125, 0.006855010986328125, 0.0169219970703125, -0.041595458984375, -0.06549072265625, 0.027130126953125, 0.003387451171875, -0.0294342041015625, -0.042205810546875, 0.0019435882568359375, -0.024200439453125, 0.0230560302734375, -0.0079803466796875, -0.0258636474609375, -0.0003006458282470703, 0.046295166015625, -0.002651214599609375, 0.035552978515625, -0.036773681640625, 0.026123046875, -0.0012493133544921875, 0.06683349609375, 0.053558349609375, -0.03070068359375, -0.0189208984375, 0.0247802734375, 0.02618408203125, 0.0657958984375, -0.004932403564453125, 0.0352783203125, 0.013092041015625, -0.0178375244140625, 0.0258331298828125, 0.006622314453125, -0.021209716796875, -0.041900634765625, -0.053497314453125, 0.039947509765625, -0.01030731201171875, 0.0211029052734375, -0.08929443359375, -0.037567138671875, 0.0075836181640625, -0.01398468017578125, 0.01413726806640625, -0.0614013671875, 0.03521728515625, -0.0084991455078125, 0.007686614990234375, 0.025634765625, 0.004528045654296875, -0.00441741943359375, -0.007556915283203125, -0.0045318603515625, -0.036346435546875, -0.0227813720703125, -0.022125244140625, 0.08221435546875, -0.055999755859375, -0.03900146484375, 0.0164337158203125, 0.0300750732421875, -0.005344390869140625, -0.011871337890625, 0.0251922607421875, 0.0264739990234375, -0.0017938613891601562, -0.0068817138671875, 0.028533935546875, -0.01371002197265625, -0.01235198974609375, -0.017730712890625, -0.0261383056640625, 0.0167236328125, -0.000244140625, 0.01435089111328125, 0.01349639892578125, -0.004344940185546875, 0.01371002197265625, 0.033843994140625, 0.005462646484375, -0.01715087890625, -0.00726318359375, 0.05206298828125, -0.01885986328125, -0.0308074951171875, -0.01013946533203125, -0.052154541015625, 0.0161895751953125, 0.047821044921875, 0.006168365478515625, 0.02093505859375, -0.004062652587890625, -0.02593994140625, 0.00934600830078125, -0.00475311279296875 ]
f07c2ab4329b7ee7e05513fb3f0c80f1c1e1063d
Wordpress Stackexchange Q: Wordpress showing install screen after max_questions error I am working in a PHO environment in Heroku with ClearDB. At some point (really low), I get this error: WordPress database error User 'XX' has exceeded the 'max_questions' resource (current value: 3600) for query SHOW TABLES LIKE 'wp\\_users' made by display_setup_form. I guess this is an error due to use the free database plan of ClearDB. However, after getting that error (spotted in the server logs), the server is redirecting to the install screen. Is there any way to catch that error, and avoid showing the install screen? A: You may install WordPress for postgres. I am the maintainer of the project. The repository here: https://github.com/php4dev/heroku-wordpress
Q: Wordpress showing install screen after max_questions error I am working in a PHO environment in Heroku with ClearDB. At some point (really low), I get this error: WordPress database error User 'XX' has exceeded the 'max_questions' resource (current value: 3600) for query SHOW TABLES LIKE 'wp\\_users' made by display_setup_form. I guess this is an error due to use the free database plan of ClearDB. However, after getting that error (spotted in the server logs), the server is redirecting to the install screen. Is there any way to catch that error, and avoid showing the install screen? A: You may install WordPress for postgres. I am the maintainer of the project. The repository here: https://github.com/php4dev/heroku-wordpress
wordpress
{ "language": "en", "length": 115, "provenance": "stackexchange_00019.jsonl.gz:481488", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/285768" }
[ 0.0478515625, -0.00446319580078125, 0.0157318115234375, -0.036773681640625, -0.0007343292236328125, -0.0138092041015625, 0.005985260009765625, -0.0377197265625, 0.0859375, -0.0029582977294921875, -0.050018310546875, -0.0069732666015625, -0.0301055908203125, -0.0308074951171875, -0.031707763671875, -0.0183868408203125, 0.037994384765625, -0.00479888916015625, 0.0188751220703125, 0.00727081298828125, -0.0013284683227539062, 0.031463623046875, 0.0240325927734375, 0.0110626220703125, -0.0039825439453125, 0.02099609375, 0.0140838623046875, -0.04150390625, -0.028411865234375, -0.036651611328125, -0.00640106201171875, 0.045684814453125, 0.00565338134765625, 0.006587982177734375, -0.0110321044921875, -0.033477783203125, 0.0098876953125, 0.00970458984375, -0.00962066650390625, 0.0298614501953125, 0.01171112060546875, -0.0151519775390625, 0.0234832763671875, -0.03265380859375, 0.0018129348754882812, -0.039642333984375, 0.044647216796875, -0.036895751953125, 0.01067352294921875, -0.031341552734375, 0.0019321441650390625, 0.040252685546875, 0.02264404296875, -0.01424407958984375, -0.012908935546875, -0.004222869873046875, 0.02154541015625, -0.0017824172973632812, 0.036529541015625, 0.0006585121154785156, -0.040985107421875, -0.0085296630859375, 0.00855255126953125, -0.05084228515625, 0.0266571044921875, -0.01102447509765625, 0.01218414306640625, 0.046478271484375, -0.0012159347534179688, 0.027313232421875, -0.0143890380859375, 0.005306243896484375, -0.01366424560546875, 0.00872039794921875, -0.0145416259765625, 0.00930023193359375, 0.0211181640625, 0.0034236907958984375, 0.022613525390625, 0.0154266357421875, -0.0216827392578125, -0.0258636474609375, 0.0032253265380859375, 0.00423431396484375, -0.023040771484375, 0.03607177734375, -0.0181427001953125, 0.0023899078369140625, 0.0021152496337890625, -0.06512451171875, -0.0089111328125, -0.099853515625, -0.007099151611328125, 0.0134124755859375, -0.00887298583984375, -0.0662841796875, 0.0168914794921875, 0.007099151611328125, 0.006988525390625, 0.0042266845703125, 0.0299530029296875, -0.054931640625, 0.042236328125, -0.01480865478515625, 0.01184844970703125, 0.03179931640625, -0.04791259765625, -0.0237884521484375, 0.027374267578125, 0.04205322265625, 0.01416015625, -0.07427978515625, -0.0570068359375, -0.0545654296875, -0.006496429443359375, 0.048828125, -0.043243408203125, 0.001300811767578125, 0.0250396728515625, 0.0017232894897460938, -0.01837158203125, 0.027496337890625, -0.035614013671875, -0.0287628173828125, -0.0272064208984375, -0.0254058837890625, 0.01049041748046875, -0.006320953369140625, -0.07342529296875, 0.035736083984375, 0.0167236328125, -0.00914764404296875, -0.03765869140625, 0.061859130859375, -0.01148223876953125, -0.0014467239379882812, 0.0182647705078125, -0.0225067138671875, -0.0251007080078125, 0.05224609375, -0.037445068359375, -0.04840087890625, -0.005954742431640625, -0.0496826171875, -0.0035419464111328125, 0.041778564453125, 0.040130615234375, -0.016571044921875, -0.0328369140625, -0.03997802734375, -0.055023193359375, 0.0291900634765625, 0.0125579833984375, 0.0292510986328125, -0.0145263671875, 0.0104522705078125, 0.0238800048828125, -0.018829345703125, -0.017578125, -0.02716064453125, 0.0014057159423828125, 0.012939453125, 0.049774169921875, -0.02215576171875, -0.0298614501953125, -0.03826904296875, -0.049530029296875, -0.0046844482421875, 0.031890869140625, 0.00658416748046875, -0.0032863616943359375, 0.01448822021484375, 0.077392578125, -0.003753662109375, -0.01053619384765625, 0.01702880859375, 0.006694793701171875, 0.010162353515625, 0.020355224609375, 0.0284271240234375, -0.0006308555603027344, -0.034332275390625, 0.06402587890625, -0.020416259765625, -0.0265045166015625, -0.02386474609375, 0.007526397705078125, 0.035308837890625, 0.035369873046875, 0.031768798828125, 0.02685546875, -0.0234375, 0.0245208740234375, -0.0015764236450195312, -0.0024738311767578125, -0.07568359375, 0.0279388427734375, -0.0193023681640625, -0.0170440673828125, 0.0268096923828125, -0.0185394287109375, 0.0232086181640625, -0.01617431640625, 0.0235748291015625, -0.0771484375, 0.0369873046875, -0.0390625, 0.043487548828125, -0.044403076171875, -0.001247406005859375, 0.02728271484375, 0.0009765625, -0.0313720703125, 0.01328277587890625, 0.0154876708984375, 0.0101776123046875, -0.043182373046875, 0.08441162109375, -0.00431060791015625, 0.0654296875, -0.016815185546875, -0.056854248046875, 0.0176544189453125, -0.048065185546875, 0.0204010009765625, -0.01525115966796875, 0.005641937255859375, -0.00482177734375, 0.04241943359375, 0.0036334991455078125, 0.02569580078125, -0.023895263671875, 0.03814697265625, 0.023468017578125, -0.02301025390625, 0.00783538818359375, -0.008026123046875, -0.07232666015625, -0.0000737905502319336, 0.047119140625, 0.04400634765625, -0.03167724609375, -0.01324462890625, -0.0034389495849609375, -0.0006608963012695312, -0.0440673828125, 0.0185394287109375, 0.0010929107666015625, -0.0164947509765625, 0.0307769775390625, 0.020660400390625, 0.020172119140625, -0.00016117095947265625, 0.0260162353515625, -0.011962890625, 0.022796630859375, -0.01212310791015625, 0.00567626953125, -0.004558563232421875, -0.019073486328125, 0.0078887939453125, -0.056304931640625, -0.0301666259765625, -0.016815185546875, -0.054779052734375, 0.0274658203125, 0.011260986328125, 0.033721923828125, 0.0032978057861328125, -0.0079193115234375, 0.0237274169921875, 0.0201263427734375, 0.01052093505859375, -0.040985107421875, -0.018524169921875, 0.0290069580078125, -0.027008056640625, 0.017425537109375, 0.0232391357421875, -0.0184326171875, -0.0301666259765625, -0.0169525146484375, -0.034454345703125, -0.0022029876708984375, 0.000911712646484375, -0.00811767578125, 0.0145416259765625, 0.0290679931640625, -0.0288238525390625, -0.0008082389831542969, 0.018218994140625, 0.0312042236328125, 0.003208160400390625, 0.0010395050048828125, 0.01922607421875, -0.0025539398193359375, 0.02386474609375, -0.06402587890625, 0.04547119140625, -0.02410888671875, 0.06146240234375, 0.07061767578125, -0.00872039794921875, 0.0157470703125, 0.0045013427734375, -0.0029087066650390625, 0.005340576171875, 0.02398681640625, -0.004131317138671875, -0.0291290283203125, -0.03692626953125, -0.008697509765625, 0.043212890625, 0.031494140625, 0.0274810791015625, -0.018280029296875, -0.0159912109375, 0.0447998046875, -0.0154266357421875, -0.0517578125, -0.007045745849609375, -0.01522064208984375, -0.005794525146484375, -0.0154571533203125, 0.004199981689453125, 0.0028667449951171875, -0.0190582275390625, -0.0030670166015625, 0.006977081298828125, -0.043121337890625, -0.027099609375, -0.077880859375, -0.06402587890625, -0.06549072265625, 0.001392364501953125, -0.015838623046875, -0.011962890625, 0.07220458984375, -0.01480865478515625, -0.0845947265625, -0.0692138671875, 0.016448974609375, -0.01039886474609375, -0.0204925537109375, 0.01580810546875, -0.0127716064453125, 0.0257720947265625, 0.00972747802734375, -0.0206146240234375, 0.0386962890625, -0.01129913330078125, -0.04376220703125, 0.0031890869140625, -0.03912353515625, 0.0113067626953125, -0.0254669189453125, -0.0180816650390625, -0.030487060546875, -0.0016832351684570312, -0.06610107421875, -0.0276641845703125, 0.0165863037109375, -0.055755615234375, -0.048095703125, 0.0615234375, -0.03704833984375, -0.02313232421875, -0.051422119140625, 0.0014104843139648438, 0.0141754150390625, 0.052978515625, -0.0167236328125, -0.01177978515625, -0.0290985107421875, -0.0260467529296875, -0.036529541015625, 0.02374267578125, -0.0244598388671875, 0.0227813720703125, 0.00922393798828125, -0.018798828125, -0.015777587890625, 0.0073394775390625, -0.03759765625, -0.031097412109375, 0.041412353515625, 0.0152435302734375, 0.058990478515625, -0.0543212890625, -0.054107666015625, -0.02581787109375, 0.11328125, -0.03460693359375, -0.0200347900390625, 0.002140045166015625, 0.004718780517578125, -0.0340576171875, 0.0203857421875, -0.044647216796875, -0.00380706787109375, -0.01279449462890625, 0.006420135498046875, -0.007354736328125, -0.0203857421875, -0.00560760498046875, -0.01485443115234375, -0.003505706787109375, -0.025482177734375, 0.046966552734375, -0.032440185546875, 0.057342529296875, -0.0092315673828125, 0.0615234375, -0.039215087890625, -0.002231597900390625, -0.03558349609375, -0.11993408203125, -0.0262908935546875, -0.0022029876708984375, 0.0780029296875, -0.0247955322265625, 0.037689208984375, -0.0311737060546875, 0.055389404296875, -0.01261138916015625, 0.06939697265625, 0.00775909423828125, 0.0209808349609375, 0.017120361328125, -0.0308380126953125, 0.028045654296875, -0.024871826171875, -0.00237274169921875, -0.042877197265625, -0.02392578125, -0.00199127197265625, -0.03717041015625, 0.01253509521484375, -0.023345947265625, -0.0016107559204101562, -0.039031982421875, -0.0426025390625, 0.01015472412109375, 0.02227783203125, -0.0028171539306640625, 0.01064300537109375, -0.05633544921875, -0.0140228271484375, 0.01351165771484375, -0.05291748046875, -0.01245880126953125, 0.006778717041015625, 0.08074951171875, 0.020111083984375, 0.00948333740234375, -0.00923919677734375, -0.00504302978515625, 0.03204345703125, 0.038665771484375, 0.03814697265625, 0.01087188720703125, -0.02703857421875, 0.051422119140625, 0.017425537109375, 0.0013751983642578125, 0.0362548828125, -0.004886627197265625, 0.0230560302734375, -0.0266265869140625, 0.00646209716796875, 0.027679443359375, -0.0350341796875, 0.01036834716796875, 0.01171875, 0.001373291015625, 0.0217132568359375, -0.004852294921875, -0.02325439453125, 0.0293426513671875, 0.0249481201171875, -0.06201171875, 0.041748046875, -0.01161956787109375, -0.0247650146484375, -0.0103912353515625, 0.0113372802734375, 0.005924224853515625, -0.02166748046875, -0.0286102294921875, 0.038543701171875, 0.031890869140625, 0.0102996826171875, 0.03961181640625, -0.0047454833984375, -0.0303955078125, -0.0023899078369140625, 0.0097198486328125, 0.01514434814453125, -0.023681640625, -0.06903076171875, -0.005893707275390625, 0.00141143798828125, -0.0156707763671875, 0.035675048828125, 0.03546142578125, 0.0411376953125, -0.021636962890625, 0.0023212432861328125, -0.0174713134765625, 0.01415252685546875, -0.0191802978515625, -0.032257080078125, 0.00908660888671875, -0.026824951171875, -0.00028896331787109375, 0.01088714599609375, 0.0184783935546875, -0.01029205322265625, 0.01505279541015625, -0.009979248046875, 0.00978851318359375, 0.028472900390625, 0.01480865478515625, 0.005908966064453125, 0.02044677734375, -0.007518768310546875, 0.004810333251953125, 0.0277862548828125, -0.0190277099609375, -0.01013946533203125, -0.01238250732421875, 0.0194549560546875, -0.018585205078125, -0.0164337158203125, 0.04241943359375, -0.019287109375, 0.004917144775390625, 0.02752685546875, -0.01395416259765625, -0.05218505859375, -0.002887725830078125, 0.010467529296875, 0.016265869140625, -0.05145263671875, 0.00133514404296875, 0.0150146484375, 0.030548095703125, 0.0526123046875, 0.042205810546875, -0.01325225830078125, -0.00002962350845336914, -0.00043892860412597656, -0.02203369140625, -0.035614013671875, -0.037261962890625, 0.0004987716674804688, 0.040863037109375, -0.02056884765625, -0.0271148681640625, 0.017578125, -0.0139007568359375, -0.0009579658508300781, -0.0012454986572265625, -0.0013580322265625, -0.03399658203125, 0.0222930908203125, -0.002033233642578125, -0.0227813720703125, -0.005992889404296875, -0.00785064697265625, -0.022979736328125, -0.037567138671875, 0.046905517578125, 0.00423431396484375, -0.0295257568359375, -0.029449462890625, 0.0194854736328125, 0.0115203857421875, -0.004283905029296875, -0.03204345703125, -0.069580078125, 0.0019817352294921875, 0.03839111328125, 0.01136016845703125, -0.038177490234375, 0.017059326171875, 0.0025634765625, 0.005992889404296875, -0.00978851318359375, 0.022705078125, 0.06298828125, -0.0106658935546875, 0.0107269287109375, -0.018280029296875, -0.0128936767578125, 0.0176239013671875, 0.032867431640625, -0.0277099609375, -0.0204925537109375, -0.0197601318359375, 0.04205322265625, 0.00814056396484375, 0.0179901123046875, -0.0022411346435546875, -0.03668212890625, -0.00041604042053222656, 0.0106658935546875, 0.06585693359375, -0.043731689453125, 0.017852783203125, 0.0122222900390625, 0.057464599609375, -0.010284423828125, -0.062408447265625, 0.004146575927734375, 0.02496337890625, -0.005641937255859375, 0.044281005859375, 0.07257080078125, -0.02069091796875, 0.037506103515625, 0.031494140625, -0.0032100677490234375, 0.01267242431640625, 0.04766845703125, -0.08380126953125, -0.03948974609375, 0.00859832763671875, 0.0097198486328125, -0.01544952392578125, -0.0026264190673828125, -0.007129669189453125, 0.006961822509765625, 0.031005859375, 0.05255126953125, -0.062255859375, 0.01055908203125, 0.0135650634765625, -0.008270263671875, 0.028594970703125, -0.00536346435546875, 0.027587890625, 0.015838623046875, 0.009521484375, -0.031707763671875, -0.015167236328125, -0.0009708404541015625, -0.03729248046875, -0.00202178955078125, -0.01358795166015625, 0.03436279296875, 0.003414154052734375, -0.0162811279296875, -0.0118560791015625, 0.034576416015625, -0.0010166168212890625, 0.0017852783203125, 0.01483917236328125, 0.007354736328125, -0.0299224853515625, -0.06903076171875, -0.026458740234375, -0.0301971435546875, -0.05938720703125, -0.00995635986328125, -0.003582000732421875, -0.0270233154296875, 0.05157470703125, -0.057342529296875, 0.0244140625, 0.02081298828125, -0.0239105224609375, 0.051239013671875, -0.0015583038330078125, 0.0031871795654296875, -0.0026187896728515625, -0.0595703125, -0.003376007080078125, -0.031036376953125, 0.00884246826171875, -0.020263671875, -0.0267181396484375, 0.06268310546875, 0.0011930465698242188, -0.0259857177734375, 0.040252685546875, 0.01041412353515625, -0.035736083984375, 0.02545166015625, 0.047088623046875, -0.03802490234375, -0.0270233154296875, 0.042449951171875, -0.0222930908203125, -0.040191650390625, 0.0214080810546875, -0.00464630126953125, 0.0270843505859375, 0.01227569580078125, -0.0465087890625, 0.02801513671875, 0.0270538330078125, -0.046356201171875, 0.0128326416015625, -0.024078369140625, 0.054595947265625, 0.055572509765625, 0.0083770751953125, -0.033538818359375, -0.005970001220703125, 0.00015819072723388672, 0.02435302734375, 0.007781982421875, 0.00643157958984375, -0.029541015625, -0.01070404052734375, 0.033782958984375, 0.00742340087890625, 0.007232666015625, 0.024871826171875, 0.01457977294921875, 0.03936767578125, 0.08026123046875, -0.041656494140625, 0.0294189453125, -0.0153350830078125, 0.01513671875, 0.0025577545166015625, 0.0122528076171875, 0.00013720989227294922, 0.00701141357421875, 0.057891845703125, -0.02471923828125, -0.00018739700317382812, 0.0322265625, -0.04718017578125, -0.01061248779296875, 0.0660400390625, 0.0281524658203125, -0.003353118896484375, 0.02911376953125, -0.05010986328125, 0.05572509765625, -0.0003464221954345703, -0.01444244384765625, 0.024688720703125, 0.005054473876953125, 0.001445770263671875, 0.007232666015625, -0.01338958740234375, 0.0038604736328125, 0.00736236572265625, 0.06640625, 0.037200927734375, 0.029876708984375, -0.0103607177734375, 0.003307342529296875, 0.04547119140625, 0.0814208984375, -0.044219970703125, -0.049957275390625, 0.00551605224609375, 0.02606201171875, 0.01168060302734375, 0.01071929931640625, -0.01378631591796875, 0.04364013671875, 0.1055908203125, -0.038330078125, 0.01495361328125, 0.026763916015625, -0.013458251953125, -0.01812744140625, -0.007537841796875, -0.00839996337890625, 0.023223876953125, 0.0018558502197265625, -0.03363037109375, 0.0093994140625, 0.021484375, 0.007106781005859375, 0.01386260986328125, -0.006366729736328125, 0.0017271041870117188, -0.045379638671875, 0.017333984375, -0.002223968505859375, 0.03912353515625, -0.062286376953125, -0.017608642578125, 0.0233154296875, 0.042877197265625, -0.03778076171875, -0.0025691986083984375, 0.0159149169921875, 0.055511474609375, 0.0132904052734375, -0.028472900390625, 0.0467529296875, -0.01065826416015625, -0.03912353515625, -0.043548583984375, -0.01552581787109375, -0.023193359375, -0.006603240966796875, 0.0019989013671875, 0.04559326171875, -0.03521728515625, 0.0184173583984375, 0.047760009765625, 0.009307861328125, 0.0102081298828125, 0.029541015625, -0.0011234283447265625, 0.055755615234375, 0.041015625, -0.09344482421875, -0.0300140380859375, -0.0228271484375, 0.039031982421875, 0.0016937255859375, 0.0163116455078125, -0.007190704345703125, 0.03863525390625, 0.0219268798828125, -0.0253753662109375, 0.00908660888671875, 0.0125732421875, 0.01617431640625, 0.0118560791015625, 0.002597808837890625, -0.005767822265625, -0.03057861328125, 0.00323486328125, -0.003009796142578125, 0.00739288330078125, -0.007511138916015625, 0.08740234375, -0.006465911865234375, -0.01248931884765625, -0.001556396484375, -0.0089111328125, 0.029754638671875, -0.01226806640625, 0.021759033203125, 0.03948974609375, 0.01140594482421875, -0.0279998779296875, -0.052093505859375, 0.05181884765625, 0.0240325927734375, 0.004222869873046875, 0.040924072265625, -0.01102447509765625, 0.006732940673828125, -0.0196533203125, -0.0008578300476074219, -0.0364990234375, -0.03057861328125, -0.00585174560546875, 0.020294189453125, -0.006664276123046875, -0.01285552978515625, -0.0019235610961914062, 0.0217437744140625, 0.0443115234375, 0.028076171875, 0.029998779296875, 0.027252197265625, 0.042816162109375, 0.0237579345703125, -0.027984619140625, -0.01861572265625, -0.0104827880859375, -0.01552581787109375, -0.0178985595703125, 0.012176513671875, -0.0142364501953125, 0.00547027587890625, -0.061492919921875, 0.048858642578125, 0.00807952880859375, 0.0462646484375, 0.0204620361328125, -0.00901031494140625, -0.0002682209014892578, -0.00980377197265625, -0.0230560302734375, 0.032684326171875, -0.015350341796875, -0.0015726089477539062, 0.0007548332214355469, -0.0025691986083984375, 0.00823974609375, -0.00847625732421875, -0.03851318359375, 0.00853729248046875, 0.031402587890625, 0.00585174560546875, -0.044708251953125, 0.032470703125, -0.041656494140625, 0.01450347900390625, -0.004154205322265625, -0.026947021484375, -0.004436492919921875, -0.004100799560546875, -0.0158538818359375, -0.0244293212890625, -0.03546142578125, 0.0288238525390625, -0.00533294677734375, 0.01381683349609375, 0.01284027099609375, -0.00966644287109375, -0.002529144287109375, -0.0044708251953125, 0.005481719970703125, 0.04388427734375, 0.001983642578125, -0.006435394287109375, 0.00490570068359375, 0.031829833984375, -0.017913818359375, -0.12939453125, -0.011444091796875, -0.07232666015625, 0.047821044921875, -0.0217437744140625, 0.01690673828125, 0.0194854736328125, -0.03955078125, -0.0556640625, 0.031219482421875, -0.0092010498046875, -0.026947021484375, -0.0016117095947265625, -0.031585693359375, -0.0279693603515625, 0.0560302734375, 0.017669677734375, -0.041290283203125, -0.0251922607421875, 0.02105712890625, 0.00818634033203125, -0.03106689453125, 0.042816162109375, 0.00508880615234375, -0.039703369140625, 0.006816864013671875, 0.00482940673828125, -0.036590576171875, 0.03662109375, 0.002960205078125, 0.038909912109375, 0.07879638671875, -0.0017366409301757812, -0.00667572021484375, -0.014434814453125, -0.07177734375, -0.023956298828125, -0.0017375946044921875, -0.01580810546875, -0.01415252685546875, 0.04217529296875, 0.053863525390625, 0.01183319091796875, -0.01515960693359375, -0.05609130859375, -0.032684326171875, 0.0289764404296875, 0.0019550323486328125, 0.0018606185913085938, -0.045135498046875, 0.021026611328125, 0.00788116455078125, -0.02191162109375, 0.027374267578125, 0.0187225341796875, -0.024078369140625, -0.0012865066528320312, 0.004184722900390625, -0.028045654296875, -0.050628662109375, 0.0172576904296875, 0.038909912109375, -0.053070068359375, -0.07196044921875, 0.0216827392578125, -0.00970458984375, -0.036041259765625, -0.020416259765625, -0.023101806640625, -0.0256805419921875, -0.0328369140625, 0.04840087890625, -0.02947998046875, 0.033660888671875, -0.08123779296875, -0.0078277587890625, 0.046539306640625, 0.009490966796875, -0.047943115234375, 0.00782012939453125, 0.036102294921875, 0.01430511474609375, -0.071533203125, 0.051483154296875, -0.037750244140625, 0.01148223876953125, -0.000644683837890625, 0.0164947509765625, -0.046630859375, 0.01023101806640625, 0.0203857421875, -0.04449462890625, -0.0119171142578125, 0.006343841552734375, -0.0088043212890625, -0.052398681640625, 0.03558349609375, 0.06463623046875, 0.006336212158203125, 0.0311126708984375 ]
0f0137b40b4638dce3b23fbc6079b91bf516be47
Wordpress Stackexchange Q: PDF download - use wordpress functions I'm creating a plugin where user can download files. Currently I display download links like: <a href="plugin/directory/some/path/download.php?file_to_download_id=1">Some Download</a> Problem: I need to use wordpress core functionality like is_user_logged_in() or get_current_user_id() in the download.php . How am I able to use these functions in this php file? (PS: I do not want to include wp-load in download.php) A: You should create a function in your plugin where you listen to a specific URL or watch for specific parameters. For example to generate the download link: <?php $nonce = wp_create_nonce( 'download-' . $filename ); echo '<a href="/?_wp_nonce="' . $nonce . '&download=' . $filename . '">Some Download</a>'; ?> And to download the file: if ( ! empty( $_GET['_wp_nonce'] ) && ! empty( $_GET['download'] ) && wp_verify_nonce( $_GET['_wp_nonce'], 'download-' . $_GET['download'] ) ) { /* * Check if file exists and then output the right headers and the content of the file */ exit; }
Q: PDF download - use wordpress functions I'm creating a plugin where user can download files. Currently I display download links like: <a href="plugin/directory/some/path/download.php?file_to_download_id=1">Some Download</a> Problem: I need to use wordpress core functionality like is_user_logged_in() or get_current_user_id() in the download.php . How am I able to use these functions in this php file? (PS: I do not want to include wp-load in download.php) A: You should create a function in your plugin where you listen to a specific URL or watch for specific parameters. For example to generate the download link: <?php $nonce = wp_create_nonce( 'download-' . $filename ); echo '<a href="/?_wp_nonce="' . $nonce . '&download=' . $filename . '">Some Download</a>'; ?> And to download the file: if ( ! empty( $_GET['_wp_nonce'] ) && ! empty( $_GET['download'] ) && wp_verify_nonce( $_GET['_wp_nonce'], 'download-' . $_GET['download'] ) ) { /* * Check if file exists and then output the right headers and the content of the file */ exit; } A: WordPress provides a couple cookies that track whether the user is logged in and what their user ID is. These are described on this page in the Codex: After login, wordpress sets the wordpress_logged_in_[hash] cookie, which indicates when you're logged in, and who you are, for most interface use. WordPress also sets a few wp-settings-{time}-[UID] cookies. The number on the end is your individual user ID from the users database table. This is used to customize your view of admin interface, and possibly also the main site interface. If you absolutely must avoid loading wp-load.php in your download.php file, you could check for the existence of these cookies in your file using the $_COOKIE global and parse the wp-settings-{time}-[UID] cookie to get the user ID ("UID"). In my honest opinion, I think this is a waste compared to just including the following two lines at the top of your download.php file: define( 'WP_USE_THEMES', false ); require( './wp-load.php' ); This won't load any theme files or template functions, but will instantly give you access to the core WordPress functions you are looking for. I would encourage you to try it both ways (if you are so inclined) and see the performance difference... it won't be much, especially on a server running PHP7. A: As you have mentioned the file is located in your plugins folder you do not need to add the wp-load.php file here in case if you are not able to use the default WordPress functions. You need to include the file from your plugin's main PHP file. Hope this solves your query.
wordpress
{ "language": "en", "length": 423, "provenance": "stackexchange_00019.jsonl.gz:481504", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/285807" }
[ 0.07928466796875, 0.0062103271484375, -0.008880615234375, -0.023345947265625, 0.03289794921875, -0.048370361328125, 0.069091796875, -0.01104736328125, -0.00881195068359375, 0.04833984375, 0.009490966796875, 0.0294036865234375, -0.008270263671875, -0.0083465576171875, -0.0298004150390625, -0.01171112060546875, 0.03936767578125, -0.0035552978515625, 0.06024169921875, 0.016510009765625, 0.0134735107421875, 0.06756591796875, 0.0361328125, -0.0243988037109375, 0.0078277587890625, 0.001087188720703125, 0.089111328125, -0.03717041015625, 0.01375579833984375, -0.0311279296875, 0.01513671875, -0.01666259765625, 0.0203094482421875, 0.0308990478515625, -0.0625, -0.0279693603515625, -0.0033893585205078125, 0.0103607177734375, -0.03155517578125, 0.053497314453125, 0.034027099609375, -0.0021724700927734375, -0.038909912109375, 0.0219573974609375, -0.041046142578125, -0.056488037109375, 0.054229736328125, 0.0214385986328125, -0.00968170166015625, 0.0894775390625, 0.0269012451171875, 0.01166534423828125, 0.0140228271484375, 0.037994384765625, 0.01229095458984375, 0.005390167236328125, -0.036529541015625, 0.0517578125, 0.0278778076171875, -0.028228759765625, -0.028533935546875, -0.01033782958984375, 0.0178375244140625, 0.016448974609375, 0.005329132080078125, -0.0186920166015625, -0.030670166015625, 0.021331787109375, -0.05157470703125, 0.0032863616943359375, 0.037078857421875, -0.0357666015625, 0.003452301025390625, -0.0255584716796875, 0.0019969940185546875, 0.0105133056640625, -0.00009489059448242188, -0.01239776611328125, -0.00295257568359375, 0.00887298583984375, 0.0017261505126953125, -0.01364898681640625, -0.0294952392578125, 0.00960540771484375, 0.0132293701171875, 0.06036376953125, -0.01035308837890625, -0.035858154296875, -0.026336669921875, -0.004741668701171875, -0.03790283203125, -0.00832366943359375, 0.039459228515625, -0.039581298828125, -0.0535888671875, -0.0192108154296875, -0.0068206787109375, 0.00960540771484375, 0.009063720703125, 0.0191650390625, 0.016571044921875, -0.036041259765625, 0.0129852294921875, -0.0185699462890625, -0.000024199485778808594, 0.11578369140625, 0.0159759521484375, -0.00991058349609375, -0.002201080322265625, -0.015533447265625, 0.02850341796875, 0.013885498046875, -0.0220947265625, -0.057159423828125, 0.0009164810180664062, 0.039306640625, -0.031707763671875, 0.00925445556640625, 0.016754150390625, -0.0119781494140625, -0.00864410400390625, -0.0108642578125, 0.01102447509765625, 0.039947509765625, 0.0042266845703125, 0.00844573974609375, -0.0177154541015625, -0.02056884765625, -0.04327392578125, 0.050994873046875, -0.0234832763671875, 0.032928466796875, 0.053192138671875, -0.0279693603515625, -0.043701171875, -0.025634765625, 0.0241241455078125, 0.034759521484375, 0.0174713134765625, -0.00983428955078125, 0.0284576416015625, -0.031829833984375, -0.0099639892578125, 0.021942138671875, 0.01399993896484375, -0.0189971923828125, 0.0172882080078125, 0.039154052734375, -0.0006475448608398438, -0.01500701904296875, 0.03875732421875, -0.0252838134765625, 0.0251617431640625, -0.0239715576171875, 0.006038665771484375, -0.01763916015625, 0.00926971435546875, -0.022247314453125, 0.0028667449951171875, -0.011871337890625, 0.04345703125, -0.01305389404296875, -0.035430908203125, -0.000675201416015625, -0.0019254684448242188, -0.00173187255859375, -0.0309906005859375, 0.017333984375, 0.01904296875, 0.00628662109375, 0.004383087158203125, -0.053436279296875, 0.005466461181640625, 0.019378662109375, -0.00121307373046875, 0.043365478515625, 0.00540924072265625, 0.036468505859375, 0.0293426513671875, 0.0236053466796875, -0.0088653564453125, -0.0296478271484375, 0.09307861328125, -0.03143310546875, -0.056732177734375, 0.03887939453125, -0.00037932395935058594, 0.06451416015625, 0.030670166015625, 0.005767822265625, 0.0218353271484375, -0.00926971435546875, -0.01398468017578125, -0.00044155120849609375, -0.04351806640625, -0.054046630859375, 0.050811767578125, 0.0026988983154296875, -0.0202789306640625, 0.04156494140625, -0.004261016845703125, -0.03350830078125, 0.0232391357421875, -0.005615234375, -0.0221405029296875, -0.01039886474609375, -0.0094757080078125, 0.010955810546875, -0.0007205009460449219, 0.0234375, 0.00878143310546875, 0.01366424560546875, -0.0196380615234375, -0.01215362548828125, -0.0024261474609375, -0.00739288330078125, 0.0002446174621582031, 0.01239776611328125, 0.00441741943359375, 0.0325927734375, 0.0020198822021484375, 0.0174407958984375, -0.015533447265625, -0.00437164306640625, -0.005290985107421875, 0.0103759765625, -0.0198974609375, 0.0081024169921875, 0.0134124755859375, 0.01129150390625, 0.05267333984375, 0.0097808837890625, 0.0689697265625, 0.05059814453125, -0.0355224609375, -0.02447509765625, -0.0134735107421875, -0.078125, 0.01104736328125, 0.0606689453125, 0.0401611328125, 0.02984619140625, -0.01450347900390625, -0.040374755859375, 0.035888671875, -0.050201416015625, 0.00946044921875, -0.0271759033203125, -0.01345062255859375, -0.0170440673828125, 0.036712646484375, 0.0081939697265625, 0.028106689453125, -0.0152130126953125, 0.0211639404296875, 0.0411376953125, -0.033477783203125, -0.005184173583984375, 0.0157012939453125, 0.0114898681640625, -0.011871337890625, 0.00772857666015625, 0.044708251953125, -0.0181884765625, -0.0197601318359375, -0.0267181396484375, -0.004730224609375, 0.00449371337890625, 0.00301361083984375, -0.037200927734375, 0.0180206298828125, 0.025726318359375, -0.0036754608154296875, 0.049774169921875, 0.041229248046875, -0.007965087890625, -0.019073486328125, -0.0260009765625, 0.00008147954940795898, 0.021728515625, -0.008331298828125, -0.01538848876953125, -0.0261383056640625, -0.00007790327072143555, 0.01250457763671875, 0.00475311279296875, 0.0099945068359375, 0.0322265625, 0.037841796875, 0.01226806640625, 0.0419921875, 0.001163482666015625, -0.03668212890625, 0.06268310546875, 0.00963592529296875, -0.03350830078125, 0.0242462158203125, -0.04168701171875, 0.036712646484375, -0.04803466796875, 0.05419921875, 0.052886962890625, -0.01000213623046875, -0.0024814605712890625, 0.00738525390625, 0.0125274658203125, 0.033172607421875, -0.00860595703125, -0.0238800048828125, 0.0014743804931640625, -0.050140380859375, -0.036285400390625, -0.001468658447265625, 0.0012865066528320312, -0.02685546875, -0.05377197265625, -0.052886962890625, -0.01294708251953125, -0.138671875, -0.08782958984375, -0.0157470703125, -0.067626953125, 0.0701904296875, -0.0225067138671875, -0.01200103759765625, -0.03228759765625, 0.0259246826171875, 0.022674560546875, 0.006267547607421875, -0.01018524169921875, -0.040740966796875, -0.0244140625, -0.06640625, 0.018768310546875, -0.0012960433959960938, 0.001285552978515625, -0.015594482421875, 0.055389404296875, -0.0125732421875, -0.044891357421875, -0.042236328125, 0.037506103515625, 0.004913330078125, -0.038177490234375, 0.00353240966796875, -0.0085906982421875, -0.003997802734375, -0.00667572021484375, 0.04925537109375, 0.01544952392578125, -0.0242156982421875, 0.01126861572265625, 0.0026760101318359375, -0.0205078125, -0.00627899169921875, 0.0199432373046875, -0.01435089111328125, -0.0115509033203125, 0.00518035888671875, -0.059326171875, 0.038116455078125, -0.006305694580078125, -0.01076507568359375, 0.0364990234375, -0.00949859619140625, -0.033355712890625, 0.031829833984375, -0.00566864013671875, 0.003582000732421875, 0.0149688720703125, -0.00876617431640625, -0.003978729248046875, -0.00016379356384277344, -0.003971099853515625, 0.020172119140625, -0.007152557373046875, 0.04608154296875, 0.00039649009704589844, -0.0134124755859375, 0.01377105712890625, 0.015625, 0.003993988037109375, -0.024169921875, -0.038177490234375, -0.040252685546875, 0.06756591796875, 0.01534271240234375, 0.0006756782531738281, -0.0168609619140625, -0.027801513671875, -0.0083465576171875, 0.078857421875, 0.02764892578125, -0.0143585205078125, 0.0265350341796875, 0.034210205078125, -0.08648681640625, -0.04541015625, -0.0271453857421875, 0.007381439208984375, -0.034423828125, -0.01313018798828125, -0.0254058837890625, -0.0159149169921875, 0.03802490234375, -0.04901123046875, 0.01140594482421875, -0.049530029296875, -0.00659942626953125, 0.054046630859375, 0.00891876220703125, 0.013946533203125, -0.00494384765625, 0.0160369873046875, 0.0146942138671875, -0.009368896484375, -0.006587982177734375, -0.004016876220703125, -0.0426025390625, 0.0411376953125, 0.04498291015625, -0.007511138916015625, 0.005336761474609375, 0.0228424072265625, 0.0017747879028320312, -0.021514892578125, 0.01239776611328125, 0.0024204254150390625, -0.030731201171875, 0.020965576171875, 0.019989013671875, -0.0187835693359375, -0.007648468017578125, -0.019927978515625, -0.040740966796875, -0.0146484375, -0.0272674560546875, -0.0152587890625, 0.018035888671875, -0.032928466796875, -0.051116943359375, -0.024169921875, 0.00005131959915161133, 0.0004620552062988281, -0.0192108154296875, 0.013397216796875, -0.01537322998046875, -0.047454833984375, 0.04150390625, -0.004085540771484375, -0.003910064697265625, -0.00543212890625, 0.06683349609375, 0.01190948486328125, -0.006015777587890625, -0.0253753662109375, 0.01922607421875, 0.017578125, -0.028076171875, 0.04327392578125, 0.0245208740234375, -0.001544952392578125, 0.01727294921875, -0.0167236328125, 0.0005660057067871094, 0.0175323486328125, 0.01190185546875, -0.00498199462890625, -0.0560302734375, 0.04217529296875, 0.0036220550537109375, -0.0241241455078125, 0.0104217529296875, 0.006290435791015625, -0.007602691650390625, 0.0192108154296875, -0.0161590576171875, -0.0036258697509765625, 0.0032634735107421875, 0.0278167724609375, -0.046600341796875, 0.00324249267578125, -0.042694091796875, 0.022216796875, 0.058563232421875, -0.028076171875, 0.035797119140625, 0.019561767578125, -0.0135345458984375, 0.01050567626953125, 0.00580596923828125, 0.0041961669921875, 0.020477294921875, 0.00743865966796875, -0.0216827392578125, -0.002956390380859375, -0.007511138916015625, 0.042083740234375, -0.00885009765625, -0.0447998046875, -0.01171112060546875, -0.0033588409423828125, -0.00836944580078125, 0.0262908935546875, -0.0031795501708984375, 0.03564453125, -0.02642822265625, -0.0292510986328125, 0.0031070709228515625, -0.035003662109375, -0.042266845703125, -0.04193115234375, 0.0187225341796875, 0.005462646484375, -0.004596710205078125, -0.00963592529296875, 0.07177734375, 0.005199432373046875, 0.0293121337890625, -0.013641357421875, 0.0406494140625, 0.07940673828125, -0.0205841064453125, 0.026458740234375, 0.00875091552734375, -0.0278472900390625, -0.0229339599609375, -0.013427734375, -0.04302978515625, -0.030914306640625, -0.005767822265625, 0.03948974609375, -0.0287628173828125, -0.0006456375122070312, 0.05023193359375, 0.004192352294921875, 0.004688262939453125, 0.00966644287109375, 0.0023326873779296875, -0.00921630859375, -0.0112762451171875, 0.0151214599609375, 0.0247650146484375, 0.0009288787841796875, -0.01352691650390625, 0.01216888427734375, -0.00797271728515625, 0.0218353271484375, 0.0087890625, -0.0263671875, 0.03179931640625, 0.02508544921875, -0.003879547119140625, -0.0246124267578125, -0.01313018798828125, 0.04876708984375, 0.03564453125, -0.048309326171875, -0.039825439453125, 0.07562255859375, -0.0018301010131835938, -0.0020313262939453125, -0.05914306640625, 0.035919189453125, -0.0750732421875, -0.01702880859375, 0.052093505859375, 0.0175018310546875, -0.040283203125, -0.00827789306640625, -0.015228271484375, -0.01438140869140625, -0.0037364959716796875, -0.032318115234375, -0.038330078125, -0.011138916015625, -0.0177154541015625, 0.0222320556640625, -0.015838623046875, 0.0013437271118164062, 0.01476287841796875, -0.00704193115234375, -0.02252197265625, 0.01042938232421875, 0.0033473968505859375, 0.052337646484375, 0.0183563232421875, 0.042236328125, 0.025482177734375, 0.0081329345703125, -0.044677734375, -0.003391265869140625, -0.006866455078125, 0.0205841064453125, 0.0106658935546875, -0.0193634033203125, 0.044830322265625, -0.01666259765625, 0.046783447265625, -0.00208282470703125, -0.0049591064453125, 0.008270263671875, -0.0028514862060546875, -0.019927978515625, -0.0014944076538085938, 0.03924560546875, -0.007659912109375, -0.00006705522537231445, -0.05108642578125, -0.06005859375, 0.00466156005859375, 0.020233154296875, 0.019134521484375, -0.01512908935546875, -0.0196685791015625, 0.0236053466796875, -0.0078277587890625, 0.0291748046875, 0.060638427734375, -0.0071563720703125, 0.033203125, 0.0269927978515625, 0.005435943603515625, 0.0237274169921875, -0.0211029052734375, 0.0272216796875, 0.014617919921875, 0.06085205078125, -0.01207733154296875, -0.0022640228271484375, 0.0400390625, -0.0225372314453125, 0.0343017578125, 0.0261383056640625, 0.0413818359375, -0.06524658203125, 0.033233642578125, -0.00024235248565673828, -0.0015888214111328125, 0.0565185546875, -0.008331298828125, -0.00971221923828125, -0.048370361328125, 0.07830810546875, -0.0278472900390625, -0.00762176513671875, 0.0235595703125, -0.01898193359375, -0.0033054351806640625, -0.0227813720703125, 0.006870269775390625, -0.0012569427490234375, -0.08892822265625, 0.007289886474609375, 0.0372314453125, -0.037841796875, 0.01485443115234375, 0.0203857421875, -0.0181884765625, -0.0233612060546875, -0.0179901123046875, 0.018951416015625, -0.004665374755859375, -0.020721435546875, 0.0116424560546875, 0.0242919921875, 0.0499267578125, 0.059906005859375, 0.011260986328125, -0.03497314453125, 0.0577392578125, -0.005950927734375, -0.00689697265625, -0.032470703125, -0.0252532958984375, 0.0477294921875, -0.035736083984375, 0.0234375, -0.00859832763671875, -0.003482818603515625, -0.01100921630859375, 0.00931549072265625, 0.0872802734375, -0.037139892578125, -0.01049041748046875, 0.05938720703125, -0.004852294921875, -0.046630859375, 0.015655517578125, 0.04937744140625, -0.04302978515625, -0.0215911865234375, 0.023406982421875, -0.0186004638671875, -0.018951416015625, 0.031585693359375, -0.0626220703125, 0.09844970703125, 0.0019855499267578125, 0.0112762451171875, -0.01296234130859375, 0.0325927734375, -0.006076812744140625, 0.0164947509765625, -0.05328369140625, 0.055023193359375, 0.00205230712890625, 0.037200927734375, -0.056427001953125, -0.00844573974609375, -0.003231048583984375, 0.0208587646484375, 0.03887939453125, 0.022979736328125, -0.035736083984375, -0.0015316009521484375, 0.032257080078125, 0.00040268898010253906, -0.0208892822265625, 0.050628662109375, 0.0205841064453125, -0.007701873779296875, 0.008056640625, -0.0005745887756347656, 0.023895263671875, -0.0341796875, -0.00795745849609375, 0.05047607421875, 0.00021374225616455078, -0.03143310546875, -0.0153045654296875, 0.049346923828125, -0.0791015625, 0.00568389892578125, 0.035247802734375, 0.028350830078125, 0.0172271728515625, 0.016815185546875, 0.05621337890625, -0.030364990234375, 0.034454345703125, -0.034271240234375, 0.059295654296875, 0.00011146068572998047, 0.014678955078125, 0.024078369140625, 0.003696441650390625, 0.031646728515625, -0.0029449462890625, 0.00439453125, -0.00016999244689941406, 0.0218505859375, 0.039703369140625, 0.014007568359375, 0.01459503173828125, -0.03472900390625, 0.010345458984375, 0.051055908203125, 0.06280517578125, -0.0457763671875, -0.02874755859375, -0.0032825469970703125, 0.00882720947265625, 0.029083251953125, 0.002796173095703125, 0.059112548828125, -0.0189056396484375, 0.01079559326171875, -0.00574493408203125, -0.017364501953125, 0.022125244140625, 0.01180267333984375, 0.0228729248046875, -0.0039215087890625, -0.017791748046875, -0.002681732177734375, -0.007358551025390625, 0.0189208984375, 0.0036907196044921875, -0.03765869140625, -0.0312347412109375, 0.026641845703125, 0.060272216796875, 0.032867431640625, 0.01557159423828125, 0.03131103515625, -0.01251220703125, -0.01560211181640625, -0.00890350341796875, -0.05584716796875, 0.00220489501953125, 0.036712646484375, 0.008026123046875, 0.00809478759765625, 0.0176544189453125, 0.017730712890625, -0.032684326171875, -0.0004849433898925781, 0.0321044921875, -0.02227783203125, 0.00969696044921875, -0.0174407958984375, -0.0013265609741210938, 0.0037860870361328125, -0.018524169921875, 0.007289886474609375, -0.02313232421875, 0.037200927734375, -0.036712646484375, 0.08184814453125, -0.015869140625, -0.00951385498046875, 0.0196533203125, -0.0181884765625, 0.1033935546875, -0.006549835205078125, -0.11871337890625, -0.01751708984375, -0.0293426513671875, -0.0265350341796875, 0.0295867919921875, 0.032440185546875, -0.03515625, 0.036376953125, 0.0389404296875, 0.00749969482421875, 0.0172576904296875, -0.01454925537109375, 0.020751953125, 0.0023059844970703125, 0.034271240234375, 0.0249481201171875, -0.0679931640625, -0.0278472900390625, -0.050537109375, 0.029693603515625, 0.021270751953125, 0.056854248046875, -0.016571044921875, 0.0273895263671875, -0.005702972412109375, 0.033538818359375, -0.0496826171875, -0.0136871337890625, 0.0377197265625, -0.0189056396484375, -0.0150604248046875, 0.00478363037109375, -0.00991058349609375, 0.032470703125, 0.001708984375, -0.01302337646484375, -0.0034236907958984375, -0.0201416015625, 0.02276611328125, 0.0262603759765625, 0.036407470703125, -0.0104827880859375, -0.04412841796875, -0.01418304443359375, 0.0291595458984375, 0.017303466796875, 0.055419921875, -0.007678985595703125, 0.027862548828125, 0.0232696533203125, 0.0233612060546875, 0.004497528076171875, 0.01580810546875, 0.01085662841796875, 0.0198516845703125, -0.036285400390625, -0.0275421142578125, -0.041290283203125, -0.029632568359375, -0.0130157470703125, -0.0142822265625, 0.03607177734375, -0.04119873046875, 0.00537872314453125, 0.0214691162109375, 0.0278472900390625, 0.0269317626953125, -0.0239105224609375, 0.016326904296875, 0.0305633544921875, 0.0002808570861816406, 0.00415802001953125, -0.0242767333984375, 0.0007944107055664062, -0.03173828125, -0.0216064453125, -0.015838623046875, -0.0009317398071289062, -0.02362060546875, 0.03472900390625, 0.0137939453125, 0.0322265625, 0.0020694732666015625, -0.059722900390625, 0.0167999267578125, -0.0022144317626953125, 0.07366943359375, -0.01641845703125, 0.06744384765625, -0.043548583984375, -0.0172882080078125, -0.023101806640625, -0.0284423828125, -0.03192138671875, 0.08154296875, 0.0009756088256835938, 0.0304107666015625, 0.0382080078125, -0.04241943359375, -0.0268402099609375, 0.03814697265625, 0.03204345703125, 0.07086181640625, 0.0225982666015625, -0.04034423828125, -0.0097198486328125, -0.030487060546875, 0.021240234375, -0.02532958984375, 0.0156707763671875, -0.09637451171875, -0.039154052734375, -0.0160369873046875, 0.01351165771484375, 0.031585693359375, -0.0343017578125, -0.06915283203125, 0.08013916015625, -0.0254058837890625, -0.0341796875, -0.04254150390625, 0.004840850830078125, 0.02813720703125, -0.0211181640625, -0.01318359375, -0.02044677734375, -0.04840087890625, 0.0096435546875, 0.0189208984375, -0.04400634765625, 0.027008056640625, 0.049591064453125, -0.040191650390625, 0.0396728515625, 0.0297088623046875, -0.042633056640625, 0.00354766845703125, 0.004863739013671875, 0.032928466796875, 0.0389404296875, -0.0014810562133789062, 0.01293182373046875, 0.00701141357421875, -0.04168701171875, -0.0240325927734375, 0.004291534423828125, 0.00930023193359375, 0.0299072265625, 0.019317626953125, 0.046356201171875, -0.00710296630859375, -0.03363037109375, -0.0176239013671875, -0.0460205078125, -0.04730224609375, -0.0113983154296875, 0.022979736328125, -0.054962158203125, 0.01081085205078125, 0.0014095306396484375, -0.0249786376953125, -0.03076171875, 0.03253173828125, -0.05633544921875, -0.0046234130859375, 0.0035877227783203125, -0.010284423828125, -0.035308837890625, -0.06463623046875, 0.0784912109375, -0.039154052734375, 0.004711151123046875, 0.02532958984375, 0.025360107421875, 0.045562744140625, 0.035675048828125, 0.0182952880859375, 0.05303955078125, -0.033599853515625, -0.01094818115234375, 0.0355224609375, -0.0304107666015625, -0.0083770751953125, 0.00435638427734375, -0.005645751953125, 0.0260162353515625, -0.0005793571472167969, 0.0386962890625, 0.00261688232421875, -0.0088348388671875, -0.006244659423828125, 0.016754150390625, -0.030853271484375, -0.03497314453125, -0.0253753662109375, -0.0015554428100585938, 0.02874755859375, -0.005706787109375, 0.08123779296875, -0.03131103515625, 0.004528045654296875, 0.01024627685546875, -0.00920867919921875, -0.0177459716796875, 0.0094757080078125, -0.053955078125, -0.0116119384765625, 0.01016998291015625 ]
3b75f5d58daf9bb232684b5191e288050c9a8183
Wordpress Stackexchange Q: Is there any filter to disable the total fronted in WordPress I got a requirement (CRM system) and it can be developed using WordPress back-end. So I don't need front-end 100%. Is there way to disable the front-end 100%? A: By Killing WP on non-admin Pages The below code will determine whether you are on a front-end page or not, and kill WP if you are. add_action( 'init', 'my_function' ); function my_function(){ if ( ! is_admin() ) wp_die(); } Note that this might also affect AJAX requests ( untested ) so you might want to add wp_doing_ajax() to your conditional too. By Redirecting the Users to Dashboard Same as above, you can check if you are on admin and redirect the users to back-end from front-end. add_action( 'init', 'my_function' ); function my_function(){ if ( ! is_admin() ) { wp_safe_redirect( admin_url() ); exit(); } } By Creating an Empty Theme Create a blank theme, and only add index.php and style.css as its content. Now you can activate the theme, and everyone visiting the front-end will be getting a white page.
Q: Is there any filter to disable the total fronted in WordPress I got a requirement (CRM system) and it can be developed using WordPress back-end. So I don't need front-end 100%. Is there way to disable the front-end 100%? A: By Killing WP on non-admin Pages The below code will determine whether you are on a front-end page or not, and kill WP if you are. add_action( 'init', 'my_function' ); function my_function(){ if ( ! is_admin() ) wp_die(); } Note that this might also affect AJAX requests ( untested ) so you might want to add wp_doing_ajax() to your conditional too. By Redirecting the Users to Dashboard Same as above, you can check if you are on admin and redirect the users to back-end from front-end. add_action( 'init', 'my_function' ); function my_function(){ if ( ! is_admin() ) { wp_safe_redirect( admin_url() ); exit(); } } By Creating an Empty Theme Create a blank theme, and only add index.php and style.css as its content. Now you can activate the theme, and everyone visiting the front-end will be getting a white page.
wordpress
{ "language": "en", "length": 180, "provenance": "stackexchange_00019.jsonl.gz:481511", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/285839" }
[ 0.08984375, 0.01154327392578125, -0.024810791015625, -0.09857177734375, 0.0498046875, -0.038726806640625, 0.0056304931640625, 0.0031490325927734375, 0.00632476806640625, -0.005870819091796875, -0.0209503173828125, -0.02008056640625, 0.0035800933837890625, -0.039581298828125, 0.024322509765625, -0.044403076171875, 0.01378631591796875, 0.0108489990234375, 0.028717041015625, -0.004177093505859375, 0.01123046875, 0.004833221435546875, 0.01247406005859375, 0.0110626220703125, 0.003875732421875, -0.018585205078125, 0.039276123046875, -0.005657196044921875, -0.01947021484375, -0.0236053466796875, 0.01406097412109375, 0.0176544189453125, -0.00969696044921875, 0.044677734375, -0.0210418701171875, -0.01293182373046875, 0.006603240966796875, 0.0220947265625, 0.021026611328125, -0.00846099853515625, 0.02801513671875, -0.0064239501953125, -0.0082244873046875, 0.05267333984375, -0.01153564453125, -0.0682373046875, 0.0526123046875, -0.0426025390625, 0.02642822265625, -0.002681732177734375, -0.0005197525024414062, -0.0211639404296875, 0.007770538330078125, 0.0021228790283203125, -0.0259246826171875, -0.0160980224609375, -0.0050048828125, -0.01580810546875, 0.04046630859375, 0.0191802978515625, -0.0211944580078125, -0.03094482421875, 0.005413055419921875, -0.056671142578125, 0.0401611328125, -0.027557373046875, -0.056396484375, 0.058563232421875, -0.037750244140625, 0.043365478515625, 0.040069580078125, -0.06085205078125, 0.0289764404296875, -0.004199981689453125, -0.00861358642578125, -0.03558349609375, -0.0033512115478515625, -0.002056121826171875, 0.032073974609375, -0.016143798828125, 0.001430511474609375, 0.0111236572265625, -0.0736083984375, -0.015960693359375, 0.01224517822265625, 0.01282501220703125, -0.0182647705078125, -0.0019073486328125, -0.03802490234375, 0.007122039794921875, -0.0330810546875, 0.001476287841796875, -0.05609130859375, 0.015106201171875, 0.0140838623046875, -0.005115509033203125, 0.051788330078125, 0.042449951171875, -0.021148681640625, -0.0239715576171875, 0.01390838623046875, -0.04766845703125, 0.0308837890625, -0.0198211669921875, -0.00020456314086914062, 0.056549072265625, -0.00484466552734375, 0.02447509765625, 0.0270233154296875, 0.01139068603515625, 0.0167083740234375, 0.0169525146484375, -0.0257110595703125, 0.01483154296875, -0.03558349609375, 0.0061492919921875, -0.059326171875, 0.01493072509765625, -0.02032470703125, 0.038360595703125, -0.036468505859375, -0.0195465087890625, 0.01474761962890625, 0.016510009765625, 0.00887298583984375, -0.0022869110107421875, -0.007007598876953125, 0.005847930908203125, 0.031768798828125, 0.0121612548828125, -0.06884765625, 0.0030384063720703125, 0.0927734375, 0.0238494873046875, 0.03692626953125, -0.0206451416015625, -0.0003650188446044922, 0.00847625732421875, 0.00016939640045166016, 0.01739501953125, 0.047271728515625, -0.087646484375, -0.04534912109375, 0.040802001953125, 0.017059326171875, 0.0084686279296875, 0.02813720703125, 0.01409149169921875, -0.0196533203125, -0.0181884765625, 0.0277862548828125, -0.020111083984375, 0.0179290771484375, 0.02630615234375, -0.0113525390625, 0.03277587890625, 0.0142059326171875, 0.012420654296875, -0.04644775390625, 0.0000743865966796875, 0.039031982421875, 0.01476287841796875, 0.01096343994140625, 0.010009765625, -0.02227783203125, -0.0130462646484375, -0.0204010009765625, -0.00141143798828125, 0.021148681640625, 0.027587890625, -0.0138397216796875, 0.003429412841796875, 0.022308349609375, -0.0049896240234375, -0.0161285400390625, 0.00873565673828125, 0.0102386474609375, 0.0193328857421875, 0.0193634033203125, 0.006134033203125, -0.01174163818359375, -0.040313720703125, 0.0760498046875, -0.0224456787109375, -0.0665283203125, 0.0157928466796875, 0.02081298828125, 0.0489501953125, 0.0108489990234375, 0.00888824462890625, 0.060821533203125, -0.009857177734375, 0.0028705596923828125, 0.021728515625, 0.005489349365234375, -0.04583740234375, -0.045318603515625, -0.030914306640625, -0.0191650390625, 0.035430908203125, 0.07366943359375, 0.0275115966796875, -0.006580352783203125, -0.044586181640625, -0.046600341796875, -0.004970550537109375, 0.003826141357421875, 0.0198974609375, -0.0016717910766601562, 0.0301971435546875, 0.0161590576171875, 0.01497650146484375, -0.038787841796875, -0.01250457763671875, -0.0172576904296875, -0.031768798828125, -0.01222991943359375, 0.04290771484375, 0.00946807861328125, 0.0079803466796875, 0.0257110595703125, -0.020233154296875, 0.046051025390625, 0.0085601806640625, 0.042205810546875, -0.02325439453125, 0.0071258544921875, -0.0260467529296875, 0.052947998046875, -0.0213623046875, 0.040924072265625, 0.0208282470703125, 0.054351806640625, 0.00791168212890625, -0.0267486572265625, 0.0357666015625, 0.0202789306640625, -0.062164306640625, -0.037567138671875, 0.04498291015625, 0.0220184326171875, 0.01629638671875, -0.0171051025390625, 0.0164947509765625, 0.045257568359375, -0.068359375, -0.0258941650390625, 0.033843994140625, 0.01018524169921875, -0.013824462890625, -0.04364013671875, -0.03448486328125, 0.0657958984375, -0.052886962890625, 0.01004791259765625, 0.049285888671875, 0.00566864013671875, -0.0142669677734375, 0.0155487060546875, -0.00794219970703125, -0.01013946533203125, -0.0306243896484375, -0.0251617431640625, -0.0161590576171875, -0.007678985595703125, -0.0258331298828125, 0.0005693435668945312, -0.01300048828125, -0.002521514892578125, -0.021575927734375, 0.035400390625, -0.00855255126953125, 0.004459381103515625, 0.0191192626953125, 0.0758056640625, -0.029998779296875, -0.025177001953125, -0.030303955078125, 0.0513916015625, 0.001621246337890625, -0.025238037109375, -0.01983642578125, -0.034271240234375, -0.009185791015625, 0.0095977783203125, -0.08172607421875, 0.00986480712890625, 0.01221466064453125, -0.01165008544921875, 0.01129913330078125, 0.006999969482421875, 0.00453948974609375, -0.0217132568359375, 0.009124755859375, -0.016387939453125, -0.0163726806640625, -0.010711669921875, -0.051910400390625, 0.038604736328125, -0.02154541015625, 0.0494384765625, 0.0810546875, 0.019317626953125, 0.0005664825439453125, 0.00533294677734375, -0.00769805908203125, 0.006206512451171875, 0.0269927978515625, -0.0006532669067382812, -0.00806427001953125, -0.0482177734375, -0.0116119384765625, 0.0153961181640625, 0.03717041015625, -0.0106201171875, -0.038543701171875, -0.0006055831909179688, 0.0293426513671875, -0.0007333755493164062, 0.006877899169921875, -0.004787445068359375, -0.027313232421875, -0.0013513565063476562, -0.01355743408203125, -0.0090179443359375, -0.003398895263671875, -0.0119781494140625, 0.010345458984375, 0.023223876953125, -0.049041748046875, -0.0283966064453125, -0.05499267578125, -0.0477294921875, -0.031524658203125, -0.0010700225830078125, -0.02655029296875, 0.01215362548828125, 0.05322265625, 0.01274871826171875, -0.062103271484375, -0.00257110595703125, 0.021087646484375, -0.041595458984375, -0.00824737548828125, -0.023529052734375, -0.0386962890625, -0.0031719207763671875, 0.0055999755859375, -0.0204010009765625, -0.049072265625, 0.044891357421875, -0.0338134765625, 0.003940582275390625, -0.0301513671875, -0.045684814453125, 0.07672119140625, 0.0231781005859375, -0.0784912109375, -0.01236724853515625, -0.07958984375, -0.05096435546875, -0.02239990234375, -0.05340576171875, -0.03106689453125, 0.04998779296875, -0.004123687744140625, -0.03485107421875, -0.0032596588134765625, 0.0528564453125, 0.0204620361328125, -0.00414276123046875, 0.0181427001953125, 0.008880615234375, 0.010650634765625, 0.049896240234375, -0.04681396484375, 0.011505126953125, -0.0292205810546875, 0.03741455078125, 0.0032291412353515625, -0.00388336181640625, -0.022613525390625, -0.0114593505859375, -0.0335693359375, -0.02978515625, 0.027008056640625, -0.04473876953125, 0.006717681884765625, -0.01220703125, -0.006763458251953125, 0.0108642578125, 0.06866455078125, -0.0626220703125, 0.01459503173828125, 0.0009784698486328125, 0.00765228271484375, -0.0302886962890625, -0.031494140625, -0.05419921875, -0.0018014907836914062, -0.10382080078125, 0.0171051025390625, -0.01532745361328125, -0.0238494873046875, 0.00481414794921875, -0.052154541015625, -0.054443359375, -0.053070068359375, 0.031341552734375, -0.0128631591796875, -0.01165771484375, 0.00437164306640625, -0.048858642578125, 0.006744384765625, -0.021636962890625, -0.01105499267578125, -0.0202484130859375, 0.001739501953125, 0.018280029296875, -0.00548553466796875, -0.01261138916015625, 0.0029735565185546875, 0.01093292236328125, 0.0277252197265625, 0.025604248046875, -0.0096893310546875, 0.01166534423828125, -0.0027904510498046875, 0.008209228515625, -0.03167724609375, -0.002105712890625, -0.032745361328125, -0.0254058837890625, -0.01158905029296875, -0.0257415771484375, 0.0114288330078125, -0.01396942138671875, -0.018829345703125, 0.03863525390625, -0.027252197265625, -0.0386962890625, -0.04901123046875, -0.051300048828125, -0.0001583099365234375, -0.01358795166015625, -0.0221405029296875, -0.0474853515625, -0.0262603759765625, 0.02130126953125, -0.0360107421875, -0.018310546875, 0.01983642578125, 0.048553466796875, 0.019134521484375, -0.0050048828125, -0.005519866943359375, -0.014617919921875, 0.05914306640625, 0.01189422607421875, -0.0210113525390625, -0.0170745849609375, -0.059326171875, 0.08111572265625, 0.0225830078125, -0.003582000732421875, -0.0216827392578125, 0.07110595703125, -0.01070404052734375, -0.031341552734375, 0.026458740234375, -0.0261383056640625, -0.0026378631591796875, 0.022491455078125, -0.0105438232421875, 0.0312042236328125, 0.004871368408203125, -0.006313323974609375, -0.0019025802612304688, -0.0428466796875, -0.0211944580078125, 0.005260467529296875, 0.00336456298828125, 0.030364990234375, 0.059356689453125, 0.03155517578125, 0.01363372802734375, 0.00902557373046875, 0.0207672119140625, -0.005687713623046875, 0.0246124267578125, 0.0287322998046875, -0.025604248046875, 0.03131103515625, 0.01309967041015625, -0.031890869140625, 0.003925323486328125, -0.00641632080078125, 0.04534912109375, -0.016357421875, -0.0736083984375, -0.03289794921875, 0.00714111328125, -0.00015592575073242188, 0.043304443359375, -0.0108642578125, 0.07781982421875, 0.02294921875, -0.033477783203125, -0.036346435546875, 0.0101165771484375, -0.049957275390625, -0.07220458984375, -0.00323486328125, 0.01480865478515625, -0.0181884765625, -0.0009737014770507812, 0.05926513671875, 0.044586181640625, 0.01122283935546875, -0.0263519287109375, 0.0260467529296875, -0.00406646728515625, 0.028656005859375, -0.010223388671875, 0.01434326171875, 0.022735595703125, -0.00835418701171875, 0.0295257568359375, -0.0428466796875, -0.01270294189453125, 0.05108642578125, 0.033935546875, 0.057037353515625, 0.00910186767578125, -0.0235748291015625, 0.022430419921875, -0.00989532470703125, 0.04736328125, 0.00724029541015625, -0.045074462890625, -0.0318603515625, 0.00946044921875, 0.038482666015625, -0.0189361572265625, -0.01187896728515625, 0.0104827880859375, -0.010467529296875, -0.006748199462890625, 0.059906005859375, -0.047454833984375, 0.0011539459228515625, 0.0130462646484375, -0.0234527587890625, -0.0203094482421875, 0.0083770751953125, -0.041046142578125, -0.0038318634033203125, -0.026153564453125, -0.003810882568359375, 0.0287628173828125, -0.00627899169921875, 0.0012836456298828125, 0.00893402099609375, -0.013671875, 0.01727294921875, 0.009979248046875, 0.054718017578125, 0.01134490966796875, -0.06854248046875, -0.00795745849609375, -0.04827880859375, -0.01204681396484375, -0.02655029296875, -0.0006322860717773438, -0.0254974365234375, 0.0189666748046875, 0.01299285888671875, 0.0276031494140625, -0.046356201171875, -0.0631103515625, -0.0182037353515625, 0.005413055419921875, 0.04229736328125, 0.037506103515625, -0.018524169921875, 0.054443359375, -0.0396728515625, 0.0279693603515625, -0.007415771484375, 0.0153961181640625, 0.002651214599609375, -0.00917816162109375, 0.01514434814453125, -0.01934814453125, -0.0295257568359375, -0.0178680419921875, -0.01519775390625, 0.0138702392578125, 0.055999755859375, -0.006092071533203125, 0.007396697998046875, 0.023651123046875, 0.0239410400390625, -0.03289794921875, -0.03363037109375, -0.00678253173828125, 0.025360107421875, -0.04095458984375, -0.00262451171875, -0.005329132080078125, -0.01092529296875, -0.041961669921875, 0.0235748291015625, 0.0223236083984375, 0.00897216796875, -0.00205230712890625, -0.064697265625, 0.061187744140625, 0.11572265625, 0.0160980224609375, 0.063232421875, 0.0225830078125, 0.01158905029296875, 0.03662109375, 0.058868408203125, -0.074951171875, -0.033233642578125, 0.0157470703125, 0.0200347900390625, -0.03369140625, -0.0020542144775390625, -0.01285552978515625, -0.001438140869140625, 0.07403564453125, 0.072265625, -0.09063720703125, 0.001712799072265625, 0.0167083740234375, -0.0297393798828125, -0.0192718505859375, -0.050384521484375, -0.00034689903259277344, -0.04498291015625, 0.062164306640625, 0.03619384765625, -0.0177459716796875, -0.0007333755493164062, -0.01506805419921875, -0.006084442138671875, -0.004405975341796875, 0.0301666259765625, 0.00980377197265625, -0.0038394927978515625, -0.048553466796875, 0.0088043212890625, -0.0216522216796875, -0.0189666748046875, 0.005584716796875, -0.0209808349609375, -0.0289764404296875, -0.067138671875, -0.0291748046875, 0.016326904296875, -0.0117340087890625, 0.067138671875, 0.0124359130859375, -0.0169219970703125, 0.048095703125, -0.03564453125, 0.06890869140625, 0.007602691650390625, -0.017303466796875, -0.006511688232421875, -0.0193328857421875, 0.01361083984375, 0.004192352294921875, -0.051025390625, 0.019622802734375, -0.01983642578125, -0.0183258056640625, -0.01047515869140625, 0.0008301734924316406, 0.05096435546875, 0.0213623046875, -0.034515380859375, 0.04095458984375, 0.0010738372802734375, -0.03546142578125, -0.0238494873046875, 0.01515960693359375, -0.020660400390625, 0.0170135498046875, -0.01523590087890625, -0.00299072265625, -0.0062408447265625, -0.01128387451171875, -0.050140380859375, 0.10882568359375, -0.052642822265625, 0.0113983154296875, 0.0301361083984375, 0.0496826171875, -0.0296783447265625, 0.0190582275390625, -0.014617919921875, 0.048919677734375, 0.005809783935546875, 0.07080078125, -0.01293182373046875, -0.01568603515625, 0.04931640625, 0.03363037109375, 0.00537872314453125, 0.00312042236328125, 0.03692626953125, -0.0185546875, 0.0005273818969726562, -0.00846099853515625, -0.032196044921875, 0.01306915283203125, -0.049774169921875, 0.050018310546875, 0.01287078857421875, -0.06689453125, 0.01551055908203125, -0.0160675048828125, -0.06549072265625, -0.0170440673828125, 0.0166778564453125, 0.0028839111328125, 0.03070068359375, 0.0256500244140625, -0.0310516357421875, 0.0027484893798828125, 0.032684326171875, -0.057525634765625, -0.033416748046875, 0.0301513671875, 0.01154327392578125, -0.07666015625, 0.02471923828125, -0.05096435546875, 0.0364990234375, 0.00690460205078125, -0.01546478271484375, 0.0029277801513671875, 0.0207366943359375, -0.0164794921875, -0.04193115234375, -0.00774383544921875, 0.01104736328125, -0.036376953125, 0.0025920867919921875, 0.0310516357421875, 0.0596923828125, 0.00244903564453125, -0.02984619140625, -0.003604888916015625, 0.0230560302734375, -0.0006527900695800781, -0.042877197265625, 0.0026950836181640625, -0.0016422271728515625, 0.0199127197265625, 0.0046539306640625, 0.045196533203125, 0.0149078369140625, 0.0131988525390625, -0.0124359130859375, 0.01137542724609375, 0.01343536376953125, 0.0225067138671875, -0.01605224609375, 0.01033782958984375, -0.01441192626953125, 0.0168914794921875, -0.0159759521484375, -0.021026611328125, 0.000209808349609375, 0.0254058837890625, 0.0213165283203125, 0.0016498565673828125, 0.0008869171142578125, -0.0121307373046875, -0.0271453857421875, 0.035888671875, 0.007068634033203125, 0.047607421875, -0.05902099609375, -0.00937652587890625, 0.006999969482421875, 0.031707763671875, 0.007598876953125, 0.0309906005859375, 0.06890869140625, 0.056671142578125, -0.01605224609375, -0.015716552734375, 0.0278472900390625, -0.01091766357421875, -0.015716552734375, 0.007251739501953125, 0.00859832763671875, 0.01355743408203125, 0.005390167236328125, -0.01727294921875, 0.07794189453125, -0.007595062255859375, -0.002391815185546875, -0.002918243408203125, 0.006473541259765625, -0.007198333740234375, 0.031951904296875, 0.025360107421875, -0.003185272216796875, 0.029144287109375, -0.056549072265625, -0.01267242431640625, -0.0247802734375, 0.0036678314208984375, -0.0025482177734375, 0.01476287841796875, -0.03436279296875, 0.058868408203125, 0.005115509033203125, 0.0162506103515625, -0.00261688232421875, -0.0017414093017578125, -0.006744384765625, -0.003826141357421875, 0.042449951171875, 0.00827789306640625, -0.03692626953125, -0.0282745361328125, -0.00847625732421875, 0.050323486328125, -0.00008791685104370117, 0.09893798828125, -0.034912109375, 0.022796630859375, 0.01461029052734375, -0.011505126953125, 0.004589080810546875, 0.0163726806640625, -0.046844482421875, 0.00048613548278808594, 0.03125, -0.0003619194030761719, -0.08856201171875, -0.020538330078125, 0.027923583984375, -0.0275115966796875, 0.01702880859375, -0.0174102783203125, 0.0176544189453125, -0.0277252197265625, -0.01555633544921875, -0.0292816162109375, -0.03680419921875, -0.035552978515625, 0.0114593505859375, 0.00522613525390625, -0.020050048828125, -0.056365966796875, -0.0013713836669921875, 0.01149749755859375, -0.023834228515625, 0.01522064208984375, -0.0134735107421875, 0.009765625, 0.0272979736328125, -0.01052093505859375, 0.00868988037109375, 0.0138397216796875, 0.0008149147033691406, 0.016510009765625, 0.0293426513671875, -0.01450347900390625, 0.049346923828125, -0.02044677734375, 0.00925445556640625, 0.0175323486328125, 0.028839111328125, -0.0289459228515625, 0.017486572265625, 0.053497314453125, -0.006313323974609375, -0.01059722900390625, -0.006847381591796875, 0.0123291015625, 0.0256805419921875, -0.04766845703125, 0.0247802734375, -0.0030155181884765625, -0.029541015625, -0.0279388427734375, 0.01232147216796875, 0.06500244140625, -0.0010967254638671875, -0.052764892578125, 0.0269775390625, -0.050811767578125, 0.0692138671875, 0.003978729248046875, 0.0283203125, -0.0270538330078125, -0.041748046875, -0.0230560302734375, -0.01374053955078125, -0.043731689453125, 0.035064697265625, -0.0028743743896484375, -0.0157318115234375, 0.045989990234375, 0.013031005859375, 0.000820159912109375, -0.07177734375, -0.045257568359375, -0.0151214599609375, -0.06732177734375, -0.0023403167724609375, 0.00048661231994628906, 0.0283050537109375, 0.008575439453125, -0.032989501953125, -0.02642822265625, 0.0296630859375, 0.01123809814453125, -0.01031494140625, -0.032928466796875, -0.01172637939453125, -0.048858642578125, -0.051727294921875, -0.0224456787109375, 0.030364990234375, -0.03662109375, -0.033294677734375, 0.0054473876953125, -0.00870513916015625, -0.0029449462890625, -0.007198333740234375, -0.018157958984375, 0.00482177734375, 0.052886962890625, 0.010650634765625, 0.01242828369140625, 0.0158233642578125, 0.00786590576171875, -0.02459716796875, 0.033416748046875, 0.019287109375, 0.01009368896484375, -0.0450439453125, 0.0296630859375, 0.006622314453125, 0.0256195068359375, -0.02496337890625, 0.05572509765625, 0.01641845703125, 0.0234832763671875, -0.007564544677734375, -0.04266357421875, 0.00797271728515625, -0.0234832763671875, 0.034515380859375, 0.01146697998046875, 0.00324249267578125, 0.002162933349609375, -0.034942626953125, -0.0306396484375, 0.0235595703125, -0.0185699462890625, 0.0008287429809570312, -0.088623046875, -0.0103759765625, 0.0201873779296875, -0.0183563232421875, -0.0019178390502929688, 0.03253173828125, -0.035369873046875, 0.0026569366455078125, 0.0035076141357421875, -0.0253143310546875, -0.0312347412109375, 0.0012788772583007812, 0.031524658203125, -0.038604736328125, -0.040771484375, -0.01554107666015625, 0.0131378173828125, -0.009124755859375, -0.043243408203125, -0.0272674560546875, -0.0009746551513671875, -0.0301055908203125, 0.0253753662109375, -0.0192413330078125, 0.050750732421875, -0.0579833984375, 0.01422882080078125, -0.01055908203125, 0.02093505859375, 0.0016241073608398438, 0.030731201171875, -0.002201080322265625, 0.0020618438720703125, 0.0146484375, 0.0143585205078125, -0.01470947265625, 0.052337646484375, -0.01038360595703125, 0.0404052734375, 0.006175994873046875, -0.01372528076171875, 0.0419921875, -0.02239990234375, 0.00936126708984375, 0.0160064697265625, 0.0246429443359375, -0.03277587890625, 0.021087646484375, -0.005870819091796875, 0.039764404296875, 0.009735107421875 ]
6bc61776f0c892483ca9f8a97694187bffebea16
Wordpress Stackexchange Q: custom admin menu with custom filed i am not so expert on WordPress yet. I want to create custom admin menu section for my project. For example see the attached image marked red area, there i want to add one section name Project under there two sub-menu. like All Project, and ADD NEW Now whenever go to all project page it will show all project list same like all post, whenever go to ADD NEW it will have Title, Description, Date (Date Picture), Attached File (file), Project Type (radio group). filed. Can anyone suggestion me how can do that. i know i have to do something on function.php page. A: there are many free portfolio plugin avaliable, simply install and activates that makes your work too easy: https://wordpress.org/plugins/tags/wordpress-portfolio-plugin/
Q: custom admin menu with custom filed i am not so expert on WordPress yet. I want to create custom admin menu section for my project. For example see the attached image marked red area, there i want to add one section name Project under there two sub-menu. like All Project, and ADD NEW Now whenever go to all project page it will show all project list same like all post, whenever go to ADD NEW it will have Title, Description, Date (Date Picture), Attached File (file), Project Type (radio group). filed. Can anyone suggestion me how can do that. i know i have to do something on function.php page. A: there are many free portfolio plugin avaliable, simply install and activates that makes your work too easy: https://wordpress.org/plugins/tags/wordpress-portfolio-plugin/ A: I believe what you need is a custom post type rather than adding a menu item. You can use the register_post_type action hook to register your own post type. To create a basic post type, simply use this piece of code in your plugin or theme's functions.php file: function my_custom_post_type() { $args = array( 'public' => true, 'label' => 'Projects' ); register_post_type( 'projects', $args ); } add_action( 'init', 'my_custom_post_type' ); More advanced examples are provided in the above link. However, adding a menu item is done by using add_menu_page, as follows: add_action( 'admin_menu', 'register_my_menu_item' ); function register_my_menu_item() { add_menu_page( 'Page Title', 'Menu title', 'manage_options', // Capability 'custom.php', // Menu slug '', // Callback function to output content 'dashicons-icon', // Menu's icon 90 // Menu's position, 20 will work for you ); } But this is not enough. You have to fill it with content too.
wordpress
{ "language": "en", "length": 275, "provenance": "stackexchange_00019.jsonl.gz:481654", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/286347" }
[ 0.031982421875, 0.00400543212890625, 0.016998291015625, -0.0018110275268554688, -0.004711151123046875, -0.0127410888671875, 0.0213165283203125, -0.044921875, -0.061187744140625, -0.01458740234375, -0.0019893646240234375, 0.02093505859375, -0.08453369140625, -0.043182373046875, 0.0357666015625, -0.06500244140625, 0.02178955078125, 0.00957489013671875, 0.03717041015625, -0.0016031265258789062, 0.0168304443359375, 0.017913818359375, -0.0166778564453125, -0.01274871826171875, 0.03448486328125, -0.034210205078125, 0.007274627685546875, 0.0134735107421875, 0.01235198974609375, 0.007770538330078125, 0.01465606689453125, -0.028594970703125, -0.0163421630859375, 0.0242156982421875, 0.04986572265625, 0.039886474609375, 0.03350830078125, 0.0128936767578125, 0.050750732421875, 0.00829315185546875, 0.047515869140625, -0.0291748046875, 0.0183258056640625, 0.055908203125, 0.003681182861328125, -0.05816650390625, 0.06005859375, -0.041778564453125, 0.011474609375, -0.034881591796875, -0.01355743408203125, -0.01702880859375, 0.016998291015625, -0.0447998046875, -0.026275634765625, -0.03436279296875, 0.0013179779052734375, -0.004154205322265625, 0.033935546875, 0.0202484130859375, -0.0216064453125, -0.0124969482421875, 0.00843048095703125, -0.041778564453125, -0.004329681396484375, -0.01235198974609375, -0.01776123046875, 0.00603485107421875, -0.0609130859375, -0.01226043701171875, 0.047210693359375, -0.03765869140625, 0.01702880859375, 0.004238128662109375, -0.01366424560546875, -0.04217529296875, 0.01049041748046875, -0.03216552734375, 0.02337646484375, 0.0030651092529296875, 0.003971099853515625, 0.0045623779296875, 0.0136566162109375, -0.006443023681640625, -0.01480865478515625, 0.01210784912109375, -0.0157470703125, -0.0104217529296875, -0.0133514404296875, 0.0012960433959960938, -0.012298583984375, -0.0309906005859375, -0.0236663818359375, 0.0333251953125, -0.0034694671630859375, -0.0032138824462890625, 0.003940582275390625, 0.020416259765625, 0.0236053466796875, 0.05535888671875, -0.0030117034912109375, -0.03558349609375, 0.05816650390625, -0.05364990234375, -0.008697509765625, 0.0125732421875, 0.01110076904296875, -0.010498046875, 0.0203094482421875, 0.0073089599609375, -0.019866943359375, 0.025390625, -0.0265350341796875, -0.03619384765625, -0.0031299591064453125, 0.036651611328125, -0.00855255126953125, -0.0225677490234375, 0.006488800048828125, -0.026397705078125, -0.0028209686279296875, 0.0081787109375, 0.0064849853515625, -0.01113128662109375, 0.0081329345703125, -0.001007080078125, -0.018310546875, -0.0191497802734375, -0.003711700439453125, 0.016387939453125, -0.0225830078125, 0.0008020401000976562, 0.0694580078125, 0.0643310546875, 0.023651123046875, -0.0147552490234375, 0.017333984375, 0.0038661956787109375, -0.0027027130126953125, 0.00433349609375, -0.0126190185546875, 0.002254486083984375, 0.0037593841552734375, -0.027099609375, -0.03680419921875, 0.0262298583984375, 0.00010877847671508789, 0.0034542083740234375, -0.003849029541015625, -0.07720947265625, 0.005130767822265625, -0.038726806640625, 0.0115814208984375, 0.0322265625, -0.01119232177734375, 0.015655517578125, 0.0418701171875, -0.010894775390625, -0.009124755859375, -0.0157928466796875, 0.00032782554626464844, 0.00684356689453125, 0.00507354736328125, -0.047821044921875, -0.0311279296875, -0.010986328125, -0.0139617919921875, 0.01030731201171875, 0.01873779296875, -0.0168914794921875, 0.05126953125, -0.0089874267578125, 0.01494598388671875, -0.01513671875, 0.0018596649169921875, -0.00420379638671875, 0.030731201171875, -0.034576416015625, 0.00955963134765625, 0.09112548828125, 0.005863189697265625, -0.0217437744140625, 0.038177490234375, -0.0426025390625, -0.0645751953125, -0.012847900390625, 0.00926971435546875, 0.04046630859375, 0.045654296875, 0.0180206298828125, 0.049713134765625, -0.0260009765625, -0.01183319091796875, 0.0175933837890625, -0.0072479248046875, -0.0165557861328125, -0.007221221923828125, 0.0164947509765625, -0.01541900634765625, -0.01666259765625, -0.07940673828125, 0.018463134765625, -0.01183319091796875, 0.041107177734375, 0.00196075439453125, 0.0156402587890625, -0.006317138671875, 0.03961181640625, 0.011810302734375, 0.00484466552734375, -0.0093994140625, -0.015716552734375, -0.0010480880737304688, -0.049285888671875, -0.02838134765625, -0.0030574798583984375, -0.0221710205078125, 0.006641387939453125, 0.001422882080078125, 0.007617950439453125, 0.0168914794921875, -0.006336212158203125, 0.01161956787109375, 0.0289764404296875, 0.05010986328125, -0.00867462158203125, -0.0141448974609375, -0.021942138671875, 0.041839599609375, 0.0120697021484375, -0.037933349609375, 0.01534271240234375, 0.0271453857421875, 0.0234375, -0.02984619140625, -0.009857177734375, -0.0174713134765625, -0.045989990234375, -0.00652313232421875, 0.039642333984375, 0.0271148681640625, 0.049652099609375, -0.003276824951171875, 0.0141754150390625, 0.1016845703125, -0.008514404296875, -0.00824737548828125, 0.0136871337890625, -0.03778076171875, -0.019195556640625, 0.04742431640625, 0.0141143798828125, 0.020172119140625, -0.00009828805923461914, 0.0179443359375, 0.037811279296875, -0.0309600830078125, -0.057861328125, 0.01558685302734375, -0.018890380859375, 0.03253173828125, -0.0135040283203125, -0.036224365234375, 0.00913238525390625, 0.021026611328125, 0.03759765625, 0.0457763671875, 0.050811767578125, -0.043548583984375, 0.0012350082397460938, 0.0166168212890625, 0.054595947265625, -0.006885528564453125, 0.01751708984375, 0.04010009765625, -0.006195068359375, -0.0440673828125, -0.0030117034912109375, 0.0298004150390625, -0.00316619873046875, -0.014434814453125, 0.025238037109375, -0.0296630859375, -0.01480865478515625, -0.002918243408203125, -0.0615234375, -0.004268646240234375, 0.005184173583984375, -0.00272369384765625, -0.055206298828125, -0.002025604248046875, -0.0223846435546875, -0.042877197265625, 0.01551055908203125, 0.0186767578125, -0.055206298828125, 0.0018301010131835938, -0.0310211181640625, 0.04510498046875, -0.026580810546875, 0.04095458984375, 0.07879638671875, -0.02301025390625, 0.03179931640625, -0.00859832763671875, -0.0014667510986328125, -0.02880859375, 0.015899658203125, -0.004138946533203125, -0.0294342041015625, -0.00873565673828125, 0.029541015625, 0.026824951171875, 0.035064697265625, 0.007965087890625, -0.0369873046875, -0.01003265380859375, 0.038238525390625, -0.045562744140625, -0.0262908935546875, 0.0093536376953125, -0.08978271484375, 0.0199737548828125, 0.00263214111328125, -0.0531005859375, -0.0138397216796875, 0.058441162109375, 0.01666259765625, -0.0029010772705078125, -0.034759521484375, -0.0161285400390625, -0.04632568359375, -0.052703857421875, 0.003070831298828125, 0.01403045654296875, 0.002033233642578125, -0.0005922317504882812, 0.06439208984375, -0.004669189453125, -0.060455322265625, 0.000021159648895263672, -0.01343536376953125, 0.01300048828125, 0.048187255859375, 0.03436279296875, -0.04852294921875, 0.0308837890625, 0.005725860595703125, 0.0224151611328125, 0.0372314453125, -0.023590087890625, -0.0155181884765625, -0.0168304443359375, -0.0031490325927734375, 0.0053863525390625, -0.0233306884765625, 0.025909423828125, 0.0108489990234375, -0.0133514404296875, -0.050445556640625, -0.0099639892578125, 0.00823974609375, -0.01812744140625, 0.0036373138427734375, -0.0026645660400390625, -0.0297698974609375, -0.0023174285888671875, 0.0110015869140625, -0.0179595947265625, 0.01151275634765625, -0.007068634033203125, -0.032928466796875, 0.016357421875, -0.0014905929565429688, 0.01300048828125, -0.001789093017578125, 0.0132904052734375, -0.02923583984375, 0.0158538818359375, 0.012298583984375, 0.00235748291015625, 0.00933074951171875, -0.00009757280349731445, 0.01861572265625, -0.0751953125, 0.0372314453125, -0.050140380859375, 0.0423583984375, -0.07220458984375, -0.0247344970703125, -0.01004791259765625, 0.1187744140625, -0.0223541259765625, -0.0067596435546875, 0.031646728515625, -0.0039825439453125, 0.0343017578125, 0.00560760498046875, -0.053558349609375, -0.04315185546875, -0.1090087890625, 0.00925445556640625, -0.0019550323486328125, -0.035430908203125, -0.017242431640625, 0.022705078125, -0.076904296875, -0.0413818359375, 0.035736083984375, -0.08599853515625, 0.032684326171875, 0.00014340877532958984, 0.01409149169921875, -0.044647216796875, -0.02630615234375, -0.04376220703125, -0.06707763671875, -0.002773284912109375, -0.046600341796875, 0.0474853515625, 0.0260009765625, -0.0023593902587890625, -0.013916015625, 0.040740966796875, 0.0341796875, 0.04241943359375, 0.004283905029296875, -0.0165863037109375, 0.0093536376953125, -0.032501220703125, 0.009246826171875, -0.03277587890625, 0.0024623870849609375, -0.0136566162109375, -0.01904296875, -0.00933074951171875, -0.0188140869140625, -0.009063720703125, 0.0162811279296875, -0.0290374755859375, -0.026123046875, 0.0043487548828125, -0.01061248779296875, -0.01549530029296875, -0.0013341903686523438, -0.033660888671875, 0.019927978515625, -0.00472259521484375, -0.014892578125, -0.027557373046875, -0.0200347900390625, 0.03515625, 0.07037353515625, 0.0265350341796875, 0.0146484375, -0.064208984375, 0.0294952392578125, 0.05389404296875, -0.01308441162109375, 0.053192138671875, 0.023681640625, -0.0369873046875, 0.07879638671875, 0.0111846923828125, 0.01212310791015625, -0.0013513565063476562, 0.00998687744140625, 0.00655364990234375, -0.007175445556640625, 0.005718231201171875, 0.01189422607421875, -0.0164031982421875, 0.0171661376953125, -0.01410675048828125, -0.00597381591796875, -0.048797607421875, 0.043609619140625, 0.019134521484375, -0.01332855224609375, -0.0418701171875, -0.01461029052734375, -0.0011577606201171875, -0.00988006591796875, 0.05120849609375, 0.0290069580078125, -0.01300048828125, 0.00780487060546875, 0.025543212890625, -0.004596710205078125, 0.0007166862487792969, 0.0034027099609375, -0.0029735565185546875, 0.01025390625, 0.01110076904296875, -0.0006122589111328125, -0.002498626708984375, -0.0004639625549316406, 0.0312347412109375, 0.0183563232421875, -0.00042128562927246094, -0.0223236083984375, -0.0015869140625, 0.02728271484375, -0.004974365234375, 0.0146026611328125, 0.0166778564453125, 0.0384521484375, 0.0072021484375, -0.00888824462890625, 0.00980377197265625, 0.036651611328125, -0.0251617431640625, 0.03314208984375, 0.0215911865234375, -0.01081085205078125, -0.0017499923706054688, 0.08050537109375, 0.046051025390625, 0.0154266357421875, -0.0269317626953125, 0.0675048828125, 0.041717529296875, 0.0164642333984375, -0.00850677490234375, 0.021209716796875, 0.0068359375, -0.005573272705078125, -0.020355224609375, -0.033935546875, 0.054779052734375, -0.01074981689453125, 0.0219268798828125, 0.01352691650390625, -0.059112548828125, 0.040740966796875, -0.06402587890625, -0.0211639404296875, 0.0067596435546875, 0.0005602836608886719, -0.0299224853515625, -0.025299072265625, 0.0086669921875, 0.030517578125, 0.0023326873779296875, -0.01904296875, 0.031463623046875, -0.03472900390625, 0.01329803466796875, 0.0228118896484375, -0.0290069580078125, -0.00380706787109375, 0.009033203125, -0.01019287109375, 0.017059326171875, 0.031585693359375, -0.08612060546875, -0.0634765625, -0.0032215118408203125, 0.021636962890625, 0.043548583984375, -0.046722412109375, 0.0192718505859375, -0.0222015380859375, 0.01157379150390625, -0.0245819091796875, 0.01390838623046875, 0.041046142578125, 0.03753662109375, -0.021148681640625, -0.0274658203125, -0.026031494140625, -0.0177154541015625, -0.03271484375, -0.014068603515625, -0.041168212890625, 0.008941650390625, 0.0167388916015625, 0.007373809814453125, 0.01174163818359375, -0.017852783203125, -0.0310821533203125, 0.03741455078125, 0.0517578125, 0.0528564453125, -0.00986480712890625, 0.05596923828125, -0.00803375244140625, 0.054443359375, -0.00479888916015625, -0.00023174285888671875, -0.026947021484375, -0.0079345703125, 0.0239105224609375, -0.034027099609375, -0.035675048828125, -0.0309295654296875, -0.0264129638671875, 0.0253143310546875, 0.030029296875, -0.00466156005859375, 0.034820556640625, 0.00421905517578125, 0.01116943359375, -0.011688232421875, -0.0018329620361328125, -0.022125244140625, 0.0084381103515625, 0.042938232421875, -0.0280609130859375, 0.053070068359375, 0.0042877197265625, -0.021087646484375, 0.032806396484375, -0.03533935546875, 0.0494384765625, 0.03594970703125, -0.048797607421875, 0.03631591796875, 0.0252685546875, 0.00033164024353027344, 0.01074981689453125, -0.0165252685546875, 0.003452301025390625, -0.00934600830078125, -0.031097412109375, 0.00832366943359375, 0.050567626953125, 0.08056640625, -0.007671356201171875, -0.0111236572265625, 0.052581787109375, -0.026611328125, 0.0097808837890625, 0.05560302734375, 0.042144775390625, -0.095947265625, 0.0193634033203125, -0.01343536376953125, 0.0133056640625, 0.063232421875, 0.0113525390625, -0.0004546642303466797, -0.0465087890625, 0.0163116455078125, -0.007030487060546875, -0.01100921630859375, -0.01337432861328125, 0.0033626556396484375, 0.00927734375, 0.00720977783203125, 0.0279083251953125, -0.013427734375, 0.003528594970703125, -0.055450439453125, -0.023468017578125, -0.004657745361328125, -0.00479888916015625, 0.003299713134765625, 0.009368896484375, -0.0065765380859375, -0.016845703125, 0.03411865234375, -0.0498046875, 0.0162811279296875, 0.0743408203125, 0.035919189453125, 0.005550384521484375, 0.051513671875, -0.0152587890625, 0.06195068359375, -0.0053863525390625, 0.01528167724609375, -0.006927490234375, -0.008880615234375, 0.001522064208984375, 0.022430419921875, -0.0019683837890625, 0.01020050048828125, -0.0148773193359375, -0.01497650146484375, -0.005466461181640625, 0.01351165771484375, 0.12249755859375, -0.034454345703125, -0.0394287109375, 0.0213470458984375, -0.0276641845703125, -0.0205841064453125, -0.0015497207641601562, 0.017791748046875, -0.031951904296875, 0.0032024383544921875, 0.004283905029296875, -0.01153564453125, -0.000045359134674072266, 0.00396728515625, -0.02935791015625, 0.10546875, -0.0333251953125, -0.0116729736328125, 0.025177001953125, 0.06378173828125, -0.0152587890625, 0.044891357421875, -0.042999267578125, 0.0151519775390625, 0.024932861328125, 0.042449951171875, -0.05059814453125, -0.0160675048828125, 0.0047607421875, 0.049560546875, 0.03045654296875, 0.011383056640625, -0.0281982421875, 0.01486968994140625, 0.06439208984375, 0.031768798828125, 0.0138397216796875, 0.035980224609375, -0.004352569580078125, -0.01094818115234375, -0.005886077880859375, 0.01280975341796875, 0.043212890625, -0.038604736328125, -0.042877197265625, 0.01311492919921875, -0.0041046142578125, -0.0121917724609375, -0.0272674560546875, -0.004119873046875, -0.0041046142578125, -0.028778076171875, -0.0097503662109375, -0.00411224365234375, 0.004962921142578125, -0.024200439453125, -0.005596160888671875, -0.0265350341796875, -0.002689361572265625, -0.00907135009765625, 0.01947021484375, 0.0076904296875, 0.02880859375, 0.0132293701171875, 0.02813720703125, -0.0355224609375, -0.01593017578125, 0.02703857421875, 0.038360595703125, -0.07110595703125, 0.0188140869140625, -0.00701141357421875, 0.019378662109375, -0.02874755859375, -0.0198211669921875, 0.020355224609375, 0.0239715576171875, -0.0129852294921875, -0.0323486328125, 0.01151275634765625, 0.02435302734375, 0.021820068359375, 0.0243682861328125, 0.0477294921875, 0.044281005859375, 0.0594482421875, -0.0284576416015625, 0.0064849853515625, 0.02484130859375, -0.0189361572265625, -0.0143585205078125, -0.018829345703125, 0.0232391357421875, 0.033477783203125, -0.0570068359375, 0.045135498046875, 0.01611328125, 0.031524658203125, 0.0141143798828125, 0.0247802734375, 0.0111083984375, -0.00665283203125, 0.02569580078125, 0.0066986083984375, -0.01540374755859375, -0.02264404296875, -0.051849365234375, -0.078857421875, 0.024261474609375, 0.050689697265625, 0.005329132080078125, 0.0165252685546875, 0.0277252197265625, 0.021026611328125, 0.00439453125, -0.015472412109375, 0.002582550048828125, -0.0201416015625, -0.05999755859375, -0.035919189453125, 0.00823211669921875, 0.04412841796875, 0.0147247314453125, 0.0148468017578125, 0.0005340576171875, 0.050048828125, -0.02447509765625, 0.00640869140625, -0.01071929931640625, -0.035675048828125, 0.00994110107421875, -0.04071044921875, 0.04168701171875, -0.0133514404296875, -0.080810546875, -0.00482940673828125, -0.0301971435546875, -0.05926513671875, 0.031646728515625, 0.039581298828125, -0.037109375, 0.0293731689453125, 0.024383544921875, 0.001476287841796875, -0.0037364959716796875, -0.01131439208984375, 0.0155792236328125, 0.03424072265625, 0.0400390625, 0.0328369140625, -0.0450439453125, -0.045196533203125, -0.0256805419921875, 0.035614013671875, 0.01409149169921875, 0.067138671875, -0.002788543701171875, 0.024810791015625, -0.058837890625, -0.0226593017578125, -0.0284576416015625, -0.03631591796875, -0.022369384765625, 0.024749755859375, -0.01081085205078125, 0.002330780029296875, -0.02972412109375, -0.0260162353515625, 0.067138671875, -0.09014892578125, -0.031768798828125, 0.02001953125, 0.01259613037109375, -0.068359375, -0.004337310791015625, -0.02557373046875, -0.0287628173828125, -0.003887176513671875, -0.0077667236328125, 0.0029544830322265625, 0.00975799560546875, 0.002193450927734375, -0.00925445556640625, -0.0203704833984375, -0.0175933837890625, 0.0199737548828125, -0.0141754150390625, 0.042327880859375, 0.05029296875, -0.056884765625, -0.043701171875, -0.02288818359375, -0.012298583984375, -0.015106201171875, 0.0059661865234375, 0.032318115234375, -0.0159912109375, 0.002658843994140625, 0.0293731689453125, 0.033172607421875, 0.06988525390625, -0.0204315185546875, 0.032806396484375, 0.002635955810546875, 0.0027675628662109375, 0.01473236083984375, -0.0194091796875, -0.03680419921875, -0.062042236328125, 0.03729248046875, 0.03692626953125, -0.01380157470703125, -0.01316070556640625, -0.10565185546875, -0.00693511962890625, 0.050872802734375, 0.014068603515625, -0.058074951171875, 0.02825927734375, -0.0308074951171875, 0.00958251953125, 0.020660400390625, -0.005046844482421875, 0.005527496337890625, 0.04010009765625, 0.01474761962890625, -0.0309295654296875, -0.02142333984375, 0.04022216796875, -0.01800537109375, 0.025177001953125, 0.031585693359375, -0.01971435546875, 0.014984130859375, 0.016815185546875, 0.034454345703125, 0.078369140625, 0.01136016845703125, -0.0145416259765625, -0.01336669921875, -0.0025043487548828125, -0.0169219970703125, -0.0262908935546875, 0.0238494873046875, -0.052490234375, -0.046844482421875, 0.0026702880859375, -0.00867462158203125, 0.01236724853515625, -0.045318603515625, -0.097412109375, 0.043731689453125, -0.0179443359375, -0.042022705078125, -0.028900146484375, 0.01468658447265625, -0.01413726806640625, -0.004528045654296875, -0.004772186279296875, -0.036590576171875, 0.0026569366455078125, 0.0217132568359375, -0.0014696121215820312, 0.035980224609375, 0.001434326171875, 0.005168914794921875, -0.0352783203125, 0.0027313232421875, -0.01210784912109375, -0.0108184814453125, 0.01483917236328125, -0.00321197509765625, 0.01267242431640625, 0.0200347900390625, -0.035888671875, -0.042816162109375, -0.0321044921875, -0.02056884765625, -0.01215362548828125, -0.014892578125, -0.0289154052734375, -0.017608642578125, 0.041748046875, 0.07330322265625, 0.01311492919921875, -0.0291900634765625, 0.0240631103515625, -0.02874755859375, -0.018402099609375, -0.0233917236328125, 0.0029697418212890625, -0.038665771484375, -0.0147247314453125, 0.0026226043701171875, -0.006160736083984375, -0.0153961181640625, 0.04034423828125, -0.017669677734375, -0.00039649009704589844, 0.05108642578125, -0.00966644287109375, -0.034881591796875, -0.0284881591796875, 0.056243896484375, -0.04974365234375, -0.050048828125, 0.0301055908203125, 0.0086822509765625, -0.0100860595703125, 0.005474090576171875, -0.033416748046875, 0.02142333984375, -0.05072021484375, 0.0355224609375, -0.02886962890625, 0.023712158203125, -0.06683349609375, 0.02447509765625, -0.01221466064453125, 0.01412200927734375, 0.0006489753723144531, 0.01293182373046875, -0.024078369140625, 0.042022705078125, 0.00597381591796875, 0.05657958984375, 0.03216552734375, 0.01123809814453125, -0.01529693603515625, 0.07574462890625, -0.00795745849609375, -0.059600830078125, -0.007457733154296875, -0.07196044921875, 0.0031604766845703125, 0.001003265380859375, -0.026702880859375, -0.06072998046875, 0.0157318115234375, -0.0007567405700683594, 0.009368896484375, 0.0279083251953125 ]
429262a7df04ec9da6ca1afcd9925862134b0352
Wordpress Stackexchange Q: Woocommerce: How to remove page-title at the home/shop page but not category pages I have set the "shop" page as my front page and I want to remove the default woocommerce title from the home page of the site. I have emptied the title but I still get an empty tag like this on the home page: <h1 class="woocommerce-products-header__title page-title"></h1> This creates an empty area above the content which is annoying. I have tried the following solutions and they work BUT the title page for category pages would be removed too. I want the title only at the home page be removed. * *First solution: I added the following code to my style: .woocommerce-page .page-title { display: none; } *Added the following to function.php add_filter('woocommerce_show_page_title', '__return_false'); I repeat, these solutions do what they are supposed to but I want the page-title for categories remain and only the title for the home page be removed. A: Instead of hacking templates, you can put this in functions.php of your child theme: add_filter( 'woocommerce_show_page_title', 'not_a_shop_page' ); function not_a_shop_page() { return boolval(!is_shop()); }
Q: Woocommerce: How to remove page-title at the home/shop page but not category pages I have set the "shop" page as my front page and I want to remove the default woocommerce title from the home page of the site. I have emptied the title but I still get an empty tag like this on the home page: <h1 class="woocommerce-products-header__title page-title"></h1> This creates an empty area above the content which is annoying. I have tried the following solutions and they work BUT the title page for category pages would be removed too. I want the title only at the home page be removed. * *First solution: I added the following code to my style: .woocommerce-page .page-title { display: none; } *Added the following to function.php add_filter('woocommerce_show_page_title', '__return_false'); I repeat, these solutions do what they are supposed to but I want the page-title for categories remain and only the title for the home page be removed. A: Instead of hacking templates, you can put this in functions.php of your child theme: add_filter( 'woocommerce_show_page_title', 'not_a_shop_page' ); function not_a_shop_page() { return boolval(!is_shop()); } A: Hello you can do this thing and i hope this work for you also <?php if (!is_shop()) { if ( apply_filters( 'woocommerce_show_page_title', true ) ) { ?> <h1 class="page-title"><?php woocommerce_page_title(); ?></h1> <?php }else{ ?> <h1 class="page-title"><?php echo ''; ?> } } ?> For More Prefer this link A: Few alternate ways to do so: * *Remove title code from your theme's home.php *Create a template for products page *For homepage, if you are using frontpage.php then it is quite easy to remove it from there. Else, you can use the last point mentioned below *Go to your page.php and write a simple conditional statement to check if it is a homepage or not. A reference of this conditional statement from WP codex is here https://developer.wordpress.org/reference/functions/is_home/ A: you can overwrite woocommerce template of "archive-product.php" into your current theme and replace with this code. <?php if ( apply_filters( 'woocommerce_show_page_title', true ) ) : ?> <?php if(!is_shop()) { ?> <h1 class="page-title"><?php woocommerce_page_title(); ?></h1> <?php } ?> <?php endif; ?> For reference conditional tag of woocommerce OR <?php if ( apply_filters( 'woocommerce_show_page_title', true ) ) : ?> <?php if(is_product_category()) { ?> <h1 class="page-title"><?php woocommerce_page_title(); ?></h1> <?php } ?> <?php endif; ?> A: To remove the title only from the product page you need to add this code to your css styles .product-template-default .woocommerce-products-header { display: none; } A: I just did this for my website, but in a more round about way. * *I edited my archive-product.php file in the theme file editor and changed: <h1 class="entry-title"><?php woocommerce_page_title(); ?></h1> To: <h6 class="entry-title"><?php woocommerce_page_title(); ?></h6> *I then edited the stylesheet page and added: h6 {display: none;} Obviously you shouldn't use this solution if you have h6 titles in your code, but for a simple solution, it does the trick.
wordpress
{ "language": "en", "length": 475, "provenance": "stackexchange_00019.jsonl.gz:481770", "question_score": "7", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/286726" }
[ -0.01006317138671875, 0.0098114013671875, -0.0243682861328125, 0.00597381591796875, -0.0008387565612792969, -0.03515625, 0.0262908935546875, -0.03369140625, 0.0037059783935546875, 0.0093841552734375, -0.0206451416015625, 0.0027866363525390625, -0.01557159423828125, -0.0260162353515625, 0.007694244384765625, -0.0264892578125, 0.0114898681640625, 0.014068603515625, 0.04315185546875, 0.0158538818359375, -0.037445068359375, 0.0305328369140625, 0.03497314453125, -0.002529144287109375, 0.0190582275390625, -0.052337646484375, 0.110107421875, -0.0401611328125, 0.040435791015625, -0.032135009765625, 0.030731201171875, -0.0030689239501953125, 0.0179290771484375, -0.01328277587890625, 0.0099334716796875, 0.02655029296875, -0.035919189453125, 0.0170440673828125, 0.0142822265625, -0.00830078125, 0.01425933837890625, 0.01166534423828125, -0.0145416259765625, 0.00223541259765625, -0.0254364013671875, -0.04638671875, 0.00799560546875, -0.031341552734375, 0.01531982421875, -0.0263519287109375, -0.00016188621520996094, 0.0272674560546875, 0.0251312255859375, -0.0226287841796875, -0.0183258056640625, -0.0111083984375, -0.040283203125, 0.0033817291259765625, 0.02752685546875, 0.0273590087890625, 0.0038299560546875, -0.01153564453125, 0.0016460418701171875, -0.038299560546875, 0.0244598388671875, 0.016632080078125, 0.013275146484375, 0.0225067138671875, -0.040069580078125, 0.0269775390625, 0.025482177734375, -0.040313720703125, 0.0044097900390625, 0.00814056396484375, -0.07830810546875, -0.003997802734375, -0.01531982421875, -0.04949951171875, 0.05780029296875, -0.0259857177734375, -0.01187896728515625, -0.043548583984375, -0.0240936279296875, -0.0159912109375, 0.0190887451171875, 0.016143798828125, -0.0025386810302734375, 0.00540924072265625, -0.0143890380859375, 0.00035119056701660156, -0.01047515869140625, -0.016815185546875, -0.0169830322265625, 0.01120758056640625, -0.00891876220703125, -0.01126861572265625, 0.014862060546875, 0.035614013671875, -0.0253448486328125, 0.006412506103515625, 0.026397705078125, -0.036895751953125, 0.0267791748046875, -0.037353515625, 0.0272979736328125, 0.024139404296875, -0.03668212890625, -0.00888824462890625, 0.043243408203125, 0.031646728515625, 0.003940582275390625, -0.003566741943359375, -0.02496337890625, -0.032928466796875, -0.01534271240234375, 0.044219970703125, -0.04345703125, -0.01103973388671875, -0.007049560546875, 0.0037136077880859375, -0.0119171142578125, 0.0298309326171875, 0.0322265625, -0.041656494140625, 0.0289459228515625, 0.0100860595703125, -0.0194549560546875, -0.041015625, 0.01953125, -0.0205535888671875, -0.031463623046875, 0.004154205322265625, 0.0416259765625, 0.039886474609375, 0.0153656005859375, -0.011810302734375, 0.0177764892578125, -0.004070281982421875, 0.01456451416015625, -0.00933837890625, 0.034820556640625, 0.0077972412109375, 0.01206207275390625, 0.0093231201171875, 0.036163330078125, 0.0011987686157226562, -0.0075531005859375, 0.0223541259765625, 0.037109375, 0.01279449462890625, 0.0206451416015625, -0.051788330078125, 0.0141754150390625, 0.0269622802734375, -0.0024967193603515625, 0.0167236328125, 0.033966064453125, -0.005672454833984375, -0.0228424072265625, -0.036041259765625, 0.00811004638671875, -0.01352691650390625, -0.0209808349609375, -0.05645751953125, -0.0819091796875, 0.01332855224609375, -0.01305389404296875, -0.005367279052734375, 0.0145263671875, 0.004421234130859375, 0.0096893310546875, -0.0127716064453125, -0.03961181640625, -0.0215606689453125, -0.006496429443359375, 0.003948211669921875, -0.0191650390625, 0.0086212158203125, 0.035980224609375, 0.027130126953125, -0.010955810546875, -0.0198822021484375, 0.050079345703125, -0.00968170166015625, -0.052154541015625, -0.04266357421875, 0.0361328125, 0.00901031494140625, 0.002285003662109375, 0.02703857421875, 0.09136962890625, 0.006450653076171875, -0.05224609375, -0.0178985595703125, -0.003765106201171875, -0.0104217529296875, 0.0166015625, -0.0133514404296875, 0.005535125732421875, 0.0318603515625, 0.007068634033203125, -0.00653839111328125, 0.0257110595703125, 0.0184173583984375, 0.005523681640625, 0.0010089874267578125, -0.0034465789794921875, 0.0152435302734375, -0.060272216796875, 0.038421630859375, 0.040985107421875, 0.0302734375, -0.0543212890625, -0.0259552001953125, -0.00104522705078125, -0.04681396484375, -0.01055908203125, 0.049835205078125, -0.0030193328857421875, 0.025848388671875, 0.0001239776611328125, -0.036468505859375, 0.007396697998046875, 0.018768310546875, 0.0745849609375, 0.0093231201171875, -0.0160369873046875, -0.03369140625, 0.0638427734375, 0.0089111328125, -0.069091796875, 0.027557373046875, 0.0753173828125, 0.0258941650390625, -0.06756591796875, 0.00357818603515625, -0.027435302734375, -0.062225341796875, -0.01800537109375, 0.06982421875, 0.0205535888671875, 0.010589599609375, -0.0310821533203125, 0.0042724609375, 0.05499267578125, -0.036407470703125, -0.01071929931640625, 0.01392364501953125, 0.013427734375, 0.022125244140625, -0.003162384033203125, -0.0006017684936523438, 0.01446533203125, -0.04913330078125, 0.0227508544921875, 0.0343017578125, -0.025299072265625, -0.052032470703125, 0.018218994140625, -0.03021240234375, 0.0243377685546875, -0.0239105224609375, -0.036865234375, 0.013763427734375, 0.04364013671875, 0.0224761962890625, 0.0198974609375, 0.01554107666015625, -0.039306640625, 0.0276336669921875, 0.019744873046875, -0.023834228515625, 0.00043129920959472656, 0.0341796875, 0.057708740234375, -0.04766845703125, -0.031585693359375, -0.029022216796875, 0.00984954833984375, 0.0035343170166015625, 0.00821685791015625, 0.0350341796875, 0.0174407958984375, -0.00768280029296875, -0.01232147216796875, -0.0623779296875, 0.01540374755859375, 0.037109375, 0.034454345703125, 0.002368927001953125, -0.0012578964233398438, 0.0101470947265625, -0.032623291015625, 0.054290771484375, 0.00511932373046875, -0.034881591796875, 0.0287933349609375, -0.01953125, 0.034637451171875, -0.031982421875, 0.04168701171875, 0.05010986328125, -0.03192138671875, 0.01227569580078125, 0.0255584716796875, -0.010833740234375, 0.046356201171875, -0.01016998291015625, -0.0221405029296875, 0.072265625, -0.11431884765625, 0.005367279052734375, 0.021453857421875, 0.05517578125, -0.01361846923828125, -0.039337158203125, 0.022979736328125, 0.0277099609375, -0.048004150390625, -0.072509765625, 0.0140380859375, 0.0186920166015625, 0.000324249267578125, 0.01151275634765625, 0.0170440673828125, -0.010101318359375, 0.0081329345703125, -0.005626678466796875, 0.0199432373046875, -0.04327392578125, -0.0294647216796875, -0.039306640625, -0.0469970703125, -0.0343017578125, -0.0020198822021484375, -0.0195465087890625, -0.0117340087890625, 0.0312042236328125, -0.0027637481689453125, 0.006317138671875, 0.020111083984375, 0.0245361328125, 0.0197296142578125, -0.00849151611328125, -0.002918243408203125, -0.0211334228515625, -0.00316619873046875, 0.030975341796875, -0.030853271484375, -0.00975799560546875, 0.01316070556640625, -0.044189453125, -0.0301971435546875, 0.004032135009765625, -0.014678955078125, 0.00152587890625, 0.04632568359375, 0.0035343170166015625, -0.014984130859375, -0.033843994140625, -0.10003662109375, 0.00016677379608154297, -0.0894775390625, 0.06787109375, 0.053466796875, 0.01184844970703125, 0.0132598876953125, 0.032440185546875, 0.0278472900390625, 0.010833740234375, 0.00754547119140625, -0.0277557373046875, 0.0011472702026367188, 0.007720947265625, 0.0156097412109375, -0.0212860107421875, 0.06719970703125, 0.0030117034912109375, -0.0058746337890625, 0.031494140625, 0.0108489990234375, 0.027130126953125, -0.0174102783203125, 0.00434112548828125, -0.03729248046875, 0.032928466796875, -0.0223388671875, 0.031280517578125, -0.036346435546875, -0.0218658447265625, -0.0151214599609375, 0.0859375, -0.07855224609375, -0.043212890625, 0.0268096923828125, 0.036651611328125, 0.0022487640380859375, -0.008575439453125, 0.0011072158813476562, -0.037841796875, -0.109619140625, 0.025665283203125, -0.013671875, -0.01007080078125, -0.0250244140625, 0.01294708251953125, -0.0576171875, -0.0565185546875, 0.02410888671875, -0.0025730133056640625, -0.014312744140625, 0.051116943359375, -0.058746337890625, 0.034454345703125, -0.0283355712890625, -0.025482177734375, -0.01287078857421875, -0.00556182861328125, 0.0247344970703125, 0.0111846923828125, -0.0170745849609375, 0.0272979736328125, -0.038787841796875, 0.012939453125, 0.0029201507568359375, 0.046234130859375, -0.0213775634765625, -0.01552581787109375, 0.0031890869140625, 0.004146575927734375, -0.005184173583984375, -0.01104736328125, 0.0138092041015625, 0.0030517578125, -0.042266845703125, 0.01319122314453125, -0.025177001953125, 0.0246429443359375, 0.035736083984375, -0.041107177734375, -0.086669921875, -0.0560302734375, 0.0169830322265625, -0.0303802490234375, 0.027130126953125, -0.0159912109375, -0.04315185546875, -0.032257080078125, 0.043548583984375, -0.0163116455078125, -0.02099609375, 0.007228851318359375, 0.028472900390625, 0.00543975830078125, -0.0295562744140625, 0.018646240234375, 0.0213775634765625, 0.0177154541015625, 0.017578125, 0.0303497314453125, -0.0479736328125, -0.01654052734375, 0.0693359375, -0.021881103515625, 0.0031890869140625, -0.0121307373046875, 0.048675537109375, -0.0163421630859375, -0.05584716796875, 0.044677734375, -0.0261688232421875, -0.0031681060791015625, 0.00986480712890625, -0.00188446044921875, 0.0023441314697265625, 0.01245880126953125, -0.0196990966796875, -0.013275146484375, 0.0197296142578125, 0.0295257568359375, 0.0191497802734375, -0.006732940673828125, 0.07403564453125, 0.0237579345703125, 0.01666259765625, 0.00882720947265625, -0.03875732421875, -0.0280609130859375, 0.004547119140625, -0.05780029296875, -0.03326416015625, -0.05401611328125, 0.0197296142578125, -0.040740966796875, -0.00879669189453125, -0.001712799072265625, 0.0017871856689453125, -0.005664825439453125, -0.006465911865234375, -0.0141143798828125, -0.0498046875, -0.0204925537109375, 0.007122039794921875, -0.0061798095703125, 0.01309967041015625, 0.0418701171875, -0.0082855224609375, -0.005191802978515625, -0.0222015380859375, -0.042633056640625, -0.0021762847900390625, -0.043304443359375, -0.005741119384765625, 0.00383758544921875, -0.01320648193359375, 0.03656005859375, 0.043365478515625, 0.017608642578125, 0.0367431640625, -0.030059814453125, -0.002216339111328125, -0.0247650146484375, 0.047393798828125, 0.01050567626953125, -0.0372314453125, 0.01334381103515625, 0.020050048828125, 0.0258331298828125, -0.01486968994140625, -0.035400390625, 0.03948974609375, 0.0206756591796875, -0.00696563720703125, 0.00705718994140625, -0.021240234375, 0.00045418739318847656, -0.002086639404296875, 0.035400390625, -0.0352783203125, -0.059295654296875, -0.01861572265625, -0.01458740234375, -0.00009131431579589844, -0.030364990234375, -0.03057861328125, -0.0008893013000488281, -0.0382080078125, -0.0031375885009765625, 0.01202392578125, -0.05841064453125, 0.0250091552734375, 0.0273895263671875, -0.031005859375, -0.009918212890625, 0.03839111328125, -0.0535888671875, 0.01078033447265625, -0.04071044921875, -0.0303192138671875, 0.021331787109375, -0.01198577880859375, 0.0797119140625, -0.030517578125, -0.05340576171875, -0.0095977783203125, 0.0033054351806640625, 0.04705810546875, 0.041656494140625, -0.04473876953125, -0.02203369140625, -0.06427001953125, -0.0295867919921875, -0.0662841796875, -0.039215087890625, -0.038665771484375, 0.01303863525390625, 0.016082763671875, 0.01010894775390625, -0.0024394989013671875, -0.04302978515625, -0.0308074951171875, 0.0171661376953125, 0.03955078125, 0.0498046875, -0.057159423828125, 0.06982421875, 0.044769287109375, 0.0303497314453125, -0.0038776397705078125, 0.0229339599609375, 0.01216888427734375, -0.0264129638671875, 0.0184478759765625, -0.014801025390625, -0.02166748046875, -0.0214691162109375, -0.0308837890625, 0.01287078857421875, 0.05792236328125, 0.0005555152893066406, -0.0014066696166992188, 0.0131072998046875, 0.00331878662109375, -0.032806396484375, -0.00007814168930053711, 0.00508880615234375, -0.0207977294921875, 0.019012451171875, -0.00688934326171875, 0.032928466796875, -0.006488800048828125, 0.00823211669921875, 0.0021800994873046875, -0.04205322265625, 0.024139404296875, 0.017730712890625, -0.04095458984375, 0.051666259765625, 0.06060791015625, -0.0298004150390625, 0.0281829833984375, -0.0036907196044921875, -0.009552001953125, 0.03131103515625, 0.0172119140625, -0.017913818359375, -0.01096343994140625, 0.0689697265625, 0.01226043701171875, -0.0274810791015625, 0.058258056640625, -0.016571044921875, 0.0031909942626953125, 0.05328369140625, 0.060150146484375, -0.077880859375, -0.0110015869140625, 0.029449462890625, 0.0172882080078125, 0.03057861328125, 0.0105438232421875, 0.0312042236328125, -0.008331298828125, 0.017303466796875, 0.01506805419921875, 0.0012569427490234375, 0.00882720947265625, -0.0106964111328125, 0.0038623809814453125, 0.018646240234375, 0.04193115234375, 0.01102447509765625, -0.07269287109375, -0.014678955078125, 0.051971435546875, -0.034942626953125, -0.044830322265625, 0.03192138671875, 0.030029296875, -0.0093231201171875, -0.07501220703125, 0.03759765625, 0.045318603515625, -0.01100921630859375, 0.040008544921875, 0.0170440673828125, -0.038604736328125, 0.029327392578125, -0.035430908203125, 0.04144287109375, -0.00550079345703125, -0.06201171875, -0.0188751220703125, -0.0124969482421875, 0.041290283203125, -0.0110015869140625, -0.09857177734375, 0.0171966552734375, -0.07366943359375, 0.0070953369140625, -0.009246826171875, -0.028289794921875, 0.054168701171875, 0.00183868408203125, -0.038726806640625, -0.003093719482421875, 0.00870513916015625, 0.0141448974609375, 0.003917694091796875, 0.060546875, -0.01070404052734375, 0.01093292236328125, 0.0340576171875, 0.020294189453125, -0.042633056640625, 0.0198211669921875, -0.086181640625, 0.0531005859375, -0.0229644775390625, 0.07379150390625, 0.01255035400390625, 0.0017604827880859375, 0.002758026123046875, -0.0206298828125, -0.02581787109375, 0.0584716796875, 0.03228759765625, 0.0288543701171875, 0.0074920654296875, 0.0028171539306640625, 0.029541015625, 0.00836944580078125, 0.0164031982421875, -0.0019626617431640625, 0.021392822265625, 0.0035037994384765625, 0.046173095703125, 0.01262664794921875, -0.0129241943359375, 0.0179595947265625, -0.02520751953125, -0.04522705078125, 0.0057373046875, -0.0239715576171875, 0.031951904296875, -0.0467529296875, -0.0021305084228515625, -0.016998291015625, 0.025726318359375, 0.0196533203125, 0.0179595947265625, -0.0104827880859375, -0.005401611328125, 0.00240325927734375, 0.01477813720703125, 0.007091522216796875, -0.01345062255859375, 0.038421630859375, 0.0164337158203125, -0.01010894775390625, -0.0072021484375, -0.0205230712890625, 0.0443115234375, 0.0142364501953125, 0.039520263671875, 0.0394287109375, 0.025604248046875, 0.05035400390625, -0.0211181640625, 0.0260162353515625, 0.00914764404296875, -0.028594970703125, 0.044281005859375, 0.026123046875, 0.0178680419921875, -0.00588226318359375, 0.049224853515625, 0.034820556640625, 0.033447265625, -0.04022216796875, -0.0184326171875, 0.006870269775390625, -0.0265960693359375, -0.01280975341796875, -0.037078857421875, -0.053192138671875, -0.041778564453125, 0.003662109375, -0.033599853515625, 0.018402099609375, 0.0289459228515625, 0.0241851806640625, -0.0052642822265625, -0.00554656982421875, -0.0611572265625, 0.0077362060546875, -0.040252685546875, 0.0158233642578125, -0.0303955078125, 0.05474853515625, 0.0312347412109375, 0.0411376953125, -0.048614501953125, -0.03497314453125, 0.0157928466796875, 0.011260986328125, -0.0296478271484375, -0.01309967041015625, -0.052886962890625, -0.06329345703125, -0.0088043212890625, 0.047698974609375, 0.037872314453125, 0.007785797119140625, 0.035552978515625, 0.03985595703125, 0.04449462890625, -0.006832122802734375, -0.03948974609375, -0.0025272369384765625, 0.034820556640625, 0.01629638671875, 0.01788330078125, -0.00499725341796875, -0.0209503173828125, -0.031829833984375, 0.08575439453125, -0.01110076904296875, -0.02197265625, -0.006191253662109375, 0.01006317138671875, -0.06695556640625, 0.034454345703125, -0.002056121826171875, 0.07537841796875, 0.003658294677734375, -0.05633544921875, -0.0155181884765625, -0.051971435546875, 0.01491546630859375, 0.0016279220581054688, 0.0198974609375, -0.0193634033203125, 0.0517578125, 0.0128936767578125, -0.0056304931640625, 0.007160186767578125, -0.0240325927734375, -0.0024318695068359375, -0.0240631103515625, 0.0187835693359375, -0.00250244140625, -0.00815582275390625, -0.0186614990234375, 0.008209228515625, 0.02935791015625, 0.01934814453125, 0.0264739990234375, 0.0033664703369140625, 0.031463623046875, -0.022857666015625, 0.0433349609375, -0.038787841796875, -0.04058837890625, 0.06146240234375, 0.0169677734375, -0.0007886886596679688, -0.01259613037109375, -0.042266845703125, -0.01715087890625, 0.05438232421875, -0.031402587890625, 0.042724609375, -0.025634765625, 0.01129150390625, -0.054779052734375, 0.016632080078125, -0.0025272369384765625, 0.0210723876953125, -0.013427734375, -0.0164031982421875, 0.0546875, 0.01318359375, -0.01364898681640625, 0.04425048828125, 0.004650115966796875, -0.017578125, 0.0312042236328125, -0.0426025390625, 0.06842041015625, 0.03900146484375, -0.0362548828125, -0.0103912353515625, 0.0202178955078125, 0.0045623779296875, 0.0118408203125, 0.0300750732421875, 0.003936767578125, 0.03289794921875, -0.03564453125, -0.031707763671875, -0.0191192626953125, -0.00885772705078125, -0.012664794921875, -0.003368377685546875, -0.0145721435546875, -0.01396942138671875, -0.0162200927734375, -0.00217437744140625, -0.0161590576171875, -0.026214599609375, -0.016998291015625, 0.0024890899658203125, -0.00930023193359375, -0.0201416015625, -0.0259552001953125, 0.006641387939453125, -0.018707275390625, -0.007720947265625, -0.01288604736328125, 0.0177001953125, -0.00444793701171875, 0.01117706298828125, -0.034881591796875, -0.01551055908203125, -0.0204315185546875, -0.034881591796875, -0.039459228515625, 0.016845703125, -0.07464599609375, -0.034423828125, -0.042999267578125, -0.00112152099609375, 0.040374755859375, -0.0186004638671875, -0.031219482421875, -0.046844482421875, -0.00882720947265625, 0.006824493408203125, -0.0174713134765625, -0.03741455078125, 0.0021820068359375, -0.0168914794921875, 0.03387451171875, -0.02313232421875, -0.007720947265625, -0.04132080078125, -0.0195770263671875, 0.003917694091796875, -0.035797119140625, -0.02691650390625, -0.0484619140625, -0.022369384765625, 0.053497314453125, 0.0087738037109375, -0.01824951171875, 0.0335693359375, 0.0239105224609375, -0.028778076171875, 0.0208282470703125, 0.0218353271484375, -0.040130615234375, 0.0233917236328125, 0.0164337158203125, 0.0188751220703125, 0.01361846923828125, 0.02801513671875, 0.007648468017578125, -0.0025768280029296875, 0.0179443359375, 0.017181396484375, 0.00516510009765625, 0.0183258056640625, -0.020233154296875, 0.01372528076171875, 0.0096893310546875, -0.052886962890625, -0.0139007568359375, -0.0089111328125, 0.0211334228515625, 0.02398681640625, 0.016937255859375, -0.0298309326171875, -0.04571533203125, 0.01406097412109375, -0.00433349609375, 0.005977630615234375, 0.041473388671875, -0.0439453125, -0.0162353515625, -0.004543304443359375, 0.00927734375, 0.0166473388671875, -0.044281005859375, 0.02294921875, 0.0120849609375, -0.04949951171875, -0.0214691162109375, 0.01285552978515625, -0.09588623046875, 0.011016845703125, -0.026519775390625, 0.0218963623046875, -0.08441162109375, -0.00984954833984375, -0.0054779052734375, -0.0235443115234375, -0.0445556640625, 0.0080413818359375, 0.01500701904296875, -0.036590576171875, -0.0186614990234375, -0.0199737548828125, 0.0038089752197265625, -0.048736572265625, 0.004962921142578125, -0.01140594482421875, 0.0260467529296875, -0.04266357421875, -0.0016002655029296875, -0.02398681640625, 0.038848876953125, 0.00750732421875, 0.038299560546875, -0.005199432373046875, 0.0253448486328125, 0.032745361328125, 0.040557861328125, 0.0247802734375, -0.020233154296875, -0.003936767578125, 0.048583984375, 0.0184326171875, -0.040191650390625, 0.029327392578125, -0.038360595703125, -0.01470184326171875, -0.00576019287109375, -0.005168914794921875, -0.06304931640625, 0.0188140869140625, -0.03692626953125, 0.01140594482421875, 0.0192108154296875 ]
51dce68dbc64f093dc0aea88e36fc2d7444bfbf1
Wordpress Stackexchange Q: My 'post attributes' is missing from my WordPress install I have about 100 blog posts and I've been successfully creating 'Page Templates' with ease - and when I create a page I can select the Page Template from the 'Page Attributes' which is all very nice and easy. I thought the same would be possible for posts... So I created a post template and saved it as 'single-template-1.php' Having uploaded the Post Template I notice that there 'Post Attributes' dropdown isn't there so I cant select that template. Any idea what I could do to fix that? Thanks! A: You have to add the following lines at the top of your post template file: <?php /* * Template Name: Featured Article * Template Post Type: post, page, product */ get_header(); ?> Of course replace "Featured Article" with your desired template name and the list of post types with the post types you want to use the template for.
Q: My 'post attributes' is missing from my WordPress install I have about 100 blog posts and I've been successfully creating 'Page Templates' with ease - and when I create a page I can select the Page Template from the 'Page Attributes' which is all very nice and easy. I thought the same would be possible for posts... So I created a post template and saved it as 'single-template-1.php' Having uploaded the Post Template I notice that there 'Post Attributes' dropdown isn't there so I cant select that template. Any idea what I could do to fix that? Thanks! A: You have to add the following lines at the top of your post template file: <?php /* * Template Name: Featured Article * Template Post Type: post, page, product */ get_header(); ?> Of course replace "Featured Article" with your desired template name and the list of post types with the post types you want to use the template for. A: If it not works, try to delete * before words like that <?php /* Template Name: Featured Article Template Post Type: post, page, product */ get_header(); ?>
wordpress
{ "language": "en", "length": 187, "provenance": "stackexchange_00019.jsonl.gz:481776", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/286746" }
[ -0.00823211669921875, -0.019256591796875, 0.0114593505859375, 0.06243896484375, -0.0193328857421875, -0.0234222412109375, 0.058258056640625, -0.052490234375, -0.005039215087890625, 0.0213470458984375, -0.0030040740966796875, 0.0047760009765625, -0.0023822784423828125, -0.036163330078125, 0.0162506103515625, -0.0186004638671875, 0.04132080078125, -0.032928466796875, 0.00902557373046875, -0.016754150390625, 0.01477813720703125, 0.005535125732421875, 0.00518035888671875, 0.0775146484375, 0.0228271484375, 0.007640838623046875, 0.039031982421875, -0.033233642578125, 0.0178070068359375, -0.01947021484375, 0.025787353515625, 0.0014514923095703125, 0.032135009765625, 0.0020923614501953125, -0.02459716796875, -0.00005322694778442383, -0.0242156982421875, -0.0005245208740234375, -0.01409149169921875, -0.00801849365234375, -0.0222625732421875, 0.0268402099609375, 0.059417724609375, 0.0268402099609375, 0.00707244873046875, -0.0341796875, -0.00910186767578125, -0.063720703125, 0.031463623046875, -0.032318115234375, -0.007411956787109375, -0.01045989990234375, 0.01800537109375, -0.07757568359375, -0.020355224609375, -0.0196990966796875, 0.01136016845703125, 0.016448974609375, 0.039794921875, -0.02703857421875, -0.060760498046875, -0.010833740234375, 0.0259246826171875, -0.0272216796875, 0.0101318359375, 0.0177001953125, 0.01300048828125, 0.00787353515625, -0.040924072265625, 0.01346588134765625, 0.0144195556640625, -0.04644775390625, 0.01451873779296875, -0.00963592529296875, 0.013214111328125, -0.0241851806640625, -0.0026378631591796875, -0.014007568359375, 0.0011615753173828125, 0.02972412109375, 0.00873565673828125, 0.0278472900390625, -0.005100250244140625, -0.03594970703125, 0.0080718994140625, -0.018463134765625, -0.00762939453125, -0.0149993896484375, -0.03033447265625, -0.0017805099487304688, -0.0209503173828125, -0.03009033203125, -0.05096435546875, 0.0635986328125, 0.0171661376953125, 0.0004780292510986328, 0.0277557373046875, 0.0394287109375, 0.0168609619140625, 0.032684326171875, -0.0246429443359375, -0.053253173828125, 0.05352783203125, -0.04461669921875, 0.0012578964233398438, 0.0083770751953125, -0.005504608154296875, 0.005931854248046875, 0.04180908203125, 0.05096435546875, -0.006252288818359375, 0.0008397102355957031, -0.004241943359375, 0.00482940673828125, -0.06494140625, 0.003131866455078125, -0.0174560546875, -0.0340576171875, 0.00943756103515625, -0.016082763671875, 0.018768310546875, 0.046661376953125, 0.0020580291748046875, -0.031280517578125, -0.006572723388671875, -0.011810302734375, -0.007503509521484375, -0.049041748046875, 0.04248046875, 0.028900146484375, -0.0372314453125, 0.00800323486328125, 0.0203399658203125, -0.01058197021484375, -0.021209716796875, -0.0305633544921875, -0.0156402587890625, -0.0008521080017089844, -0.0106048583984375, 0.00806427001953125, -0.035247802734375, -0.016815185546875, 0.0275726318359375, -0.0289459228515625, 0.017669677734375, -0.006519317626953125, 0.0213165283203125, 0.03912353515625, 0.01129913330078125, 0.00408172607421875, 0.0080413818359375, 0.00495147705078125, 0.00470733642578125, 0.0205078125, 0.032440185546875, -0.0496826171875, 0.0279693603515625, -0.05047607421875, 0.0389404296875, -0.03155517578125, 0.032958984375, -0.005706787109375, 0.0019388198852539062, -0.002223968505859375, -0.035400390625, 0.00887298583984375, -0.011444091796875, -0.017730712890625, 0.0180816650390625, 0.0167694091796875, -0.0030059814453125, -0.040283203125, 0.0382080078125, 0.004360198974609375, -0.023406982421875, 0.033660888671875, 0.0019130706787109375, -0.01514434814453125, 0.022064208984375, 0.02294921875, -0.008148193359375, -0.0172271728515625, 0.03179931640625, 0.0013952255249023438, -0.06842041015625, 0.056854248046875, 0.0110626220703125, 0.06549072265625, 0.004291534423828125, 0.0174102783203125, 0.03656005859375, 0.0193939208984375, -0.055999755859375, 0.0164031982421875, 0.033905029296875, -0.0099334716796875, -0.037689208984375, -0.0189361572265625, 0.0135345458984375, -0.0233917236328125, 0.00759124755859375, 0.00968170166015625, 0.0035552978515625, 0.0207061767578125, 0.010589599609375, -0.008514404296875, 0.0038547515869140625, 0.0015707015991210938, -0.06646728515625, -0.0004925727844238281, 0.044921875, -0.0256500244140625, -0.00946807861328125, -0.0252838134765625, 0.0025386810302734375, 0.02734375, -0.0079345703125, 0.00402069091796875, -0.001277923583984375, -0.00847625732421875, 0.015777587890625, -0.0252838134765625, -0.0030460357666015625, 0.0328369140625, 0.05224609375, 0.034271240234375, -0.03955078125, -0.0056610107421875, -0.007122039794921875, 0.03289794921875, -0.069580078125, 0.03338623046875, -0.0291595458984375, -0.00844573974609375, -0.04364013671875, -0.0214691162109375, -0.01216888427734375, -0.0049285888671875, 0.02838134765625, 0.0450439453125, 0.0071258544921875, 0.039215087890625, -0.00469207763671875, 0.026947021484375, 0.038665771484375, 0.00978851318359375, 0.0162506103515625, 0.0034542083740234375, 0.0244903564453125, 0.022308349609375, 0.05206298828125, -0.023345947265625, 0.014862060546875, -0.05010986328125, 0.03997802734375, 0.0062103271484375, -0.0241241455078125, 0.0286712646484375, -0.0244140625, 0.0221099853515625, -0.0219879150390625, -0.004913330078125, 0.032470703125, -0.03955078125, 0.0845947265625, 0.03155517578125, 0.0582275390625, 0.036956787109375, -0.056488037109375, 0.039398193359375, 0.0018367767333984375, -0.0029354095458984375, 0.006946563720703125, 0.04541015625, 0.0026874542236328125, 0.0252227783203125, -0.036102294921875, -0.02056884765625, 0.00493621826171875, 0.0239715576171875, -0.0014638900756835938, 0.0384521484375, -0.028106689453125, -0.0034313201904296875, -0.01511383056640625, -0.0721435546875, -0.003620147705078125, 0.0391845703125, 0.001682281494140625, 0.004886627197265625, 0.01194000244140625, 0.02081298828125, -0.01416015625, 0.03814697265625, 0.0069580078125, -0.0016088485717773438, -0.0081024169921875, -0.06646728515625, 0.044708251953125, -0.031768798828125, 0.048736572265625, 0.0775146484375, 0.0023899078369140625, 0.03076171875, 0.01242828369140625, 0.0123138427734375, 0.033050537109375, 0.00821685791015625, 0.01035308837890625, -0.024383544921875, -0.006458282470703125, 0.006717681884765625, 0.0126190185546875, 0.035552978515625, -0.0165557861328125, -0.02386474609375, -0.0009679794311523438, 0.009521484375, -0.045623779296875, -0.04052734375, 0.01546478271484375, -0.07952880859375, 0.006389617919921875, -0.038055419921875, -0.03924560546875, -0.029937744140625, -0.0013322830200195312, -0.0016145706176757812, -0.001842498779296875, -0.01537322998046875, -0.07403564453125, -0.058685302734375, -0.0791015625, -0.020599365234375, -0.01244354248046875, -0.00001537799835205078, 0.005161285400390625, 0.0390625, -0.019805908203125, -0.0740966796875, -0.02880859375, -0.029144287109375, -0.0328369140625, 0.0037059783935546875, 0.0203857421875, -0.017181396484375, 0.0160064697265625, 0.00844573974609375, -0.01142120361328125, 0.042816162109375, -0.0290679931640625, -0.012939453125, -0.04180908203125, -0.0250396728515625, -0.01082611083984375, 0.00791168212890625, 0.05450439453125, 0.001224517822265625, 0.0283966064453125, -0.0261993408203125, -0.045806884765625, -0.03778076171875, -0.06854248046875, 0.0279541015625, 0.048095703125, 0.021087646484375, -0.035064697265625, 0.048065185546875, -0.0273284912109375, -0.007450103759765625, 0.01496124267578125, -0.0258941650390625, 0.01181793212890625, -0.0109100341796875, -0.0302886962890625, 0.00617218017578125, 0.008331298828125, -0.0210723876953125, 0.0273284912109375, 0.01470184326171875, 0.0173797607421875, 0.0242767333984375, -0.0095367431640625, 0.019775390625, -0.06396484375, 0.072509765625, 0.0002149343490600586, -0.006862640380859375, -0.018585205078125, -0.045440673828125, 0.034210205078125, 0.1064453125, -0.02813720703125, -0.031494140625, -0.025421142578125, 0.0008611679077148438, -0.012664794921875, -0.03155517578125, 0.0090789794921875, -0.016021728515625, -0.055389404296875, 0.013763427734375, 0.01617431640625, -0.029815673828125, -0.006244659423828125, -0.003795623779296875, -0.037078857421875, -0.024169921875, 0.03619384765625, -0.0114593505859375, 0.004058837890625, 0.038330078125, -0.0243072509765625, 0.0281982421875, -0.034881591796875, -0.00551605224609375, -0.0780029296875, -0.0092926025390625, -0.012115478515625, 0.03302001953125, -0.00896453857421875, 0.0196990966796875, -0.029937744140625, 0.01107025146484375, -0.00627899169921875, -0.03997802734375, 0.0037593841552734375, 0.029876708984375, -0.0328369140625, -0.0276641845703125, -0.0236053466796875, -0.048858642578125, -0.0019140243530273438, -0.026153564453125, -0.03350830078125, 0.0165252685546875, -0.019744873046875, 0.0215911865234375, -0.004459381103515625, -0.01226043701171875, -0.0159454345703125, -0.00894927978515625, 0.01605224609375, 0.053924560546875, 0.00836944580078125, 0.0172271728515625, -0.04327392578125, -0.033355712890625, 0.0416259765625, -0.0211944580078125, -0.0202178955078125, 0.0013456344604492188, 0.05938720703125, 0.01873779296875, -0.0286712646484375, -0.005619049072265625, -0.0008401870727539062, 0.041473388671875, 0.026275634765625, 0.02734375, 0.0241851806640625, -0.01454925537109375, 0.00707244873046875, 0.0233306884765625, -0.02581787109375, -0.040740966796875, 0.03521728515625, 0.00969696044921875, -0.0106658935546875, -0.006336212158203125, -0.01038360595703125, 0.06292724609375, 0.0218353271484375, -0.00774383544921875, -0.040740966796875, 0.007678985595703125, 0.060028076171875, -0.016632080078125, 0.030242919921875, -0.030853271484375, -0.0236663818359375, 0.00070953369140625, 0.007068634033203125, 0.0005621910095214844, 0.01800537109375, 0.0006871223449707031, -0.0135650634765625, -0.035736083984375, 0.00045990943908691406, 0.00189971923828125, 0.0175323486328125, 0.0021953582763671875, 0.02581787109375, -0.00286865234375, -0.01126861572265625, -0.0177154541015625, -0.01416778564453125, 0.0587158203125, 0.005550384521484375, -0.053802490234375, 0.0271759033203125, -0.012115478515625, 0.0248565673828125, 0.0220489501953125, -0.0261077880859375, 0.0122833251953125, 0.057098388671875, -0.002841949462890625, 0.0013055801391601562, -0.03814697265625, 0.022796630859375, -0.03778076171875, -0.03961181640625, -0.0037593841552734375, -0.00787353515625, 0.01261138916015625, 0.0377197265625, 0.0004203319549560547, 0.010162353515625, -0.0189971923828125, -0.0052642822265625, -0.0178375244140625, 0.04803466796875, 0.0112457275390625, -0.007843017578125, -0.007389068603515625, 0.025543212890625, 0.01148223876953125, -0.060882568359375, -0.0154266357421875, -0.023681640625, 0.0799560546875, -0.0181427001953125, -0.047637939453125, 0.0479736328125, -0.052459716796875, 0.005702972412109375, 0.01428985595703125, -0.038421630859375, -0.0872802734375, 0.007030487060546875, 0.0477294921875, 0.0197296142578125, -0.0433349609375, -0.0276641845703125, 0.0031795501708984375, -0.03179931640625, -0.00911712646484375, 0.0149688720703125, -0.048370361328125, 0.0127410888671875, -0.000023603439331054688, -0.0274810791015625, -0.0256195068359375, -0.02191162109375, -0.0186309814453125, -0.01690673828125, -0.004634857177734375, -0.0142822265625, 0.035614013671875, -0.018524169921875, 0.03106689453125, 0.00457763671875, -0.037353515625, -0.005649566650390625, 0.0258941650390625, 0.00746917724609375, -0.00991058349609375, -0.03948974609375, 0.016326904296875, -0.056427001953125, -0.042694091796875, -0.03131103515625, -0.0037708282470703125, -0.07342529296875, 0.0031375885009765625, 0.00865936279296875, 0.037109375, -0.01082611083984375, -0.01476287841796875, 0.0021572113037109375, 0.01983642578125, -0.011322021484375, 0.068359375, -0.0133056640625, 0.05224609375, -0.00887298583984375, 0.03692626953125, -0.0031108856201171875, 0.0201568603515625, -0.00626373291015625, -0.01403045654296875, 0.01459503173828125, -0.0496826171875, -0.02313232421875, -0.01177978515625, -0.0413818359375, 0.0435791015625, 0.0802001953125, -0.00234222412109375, -0.01306915283203125, -0.0283050537109375, 0.004360198974609375, -0.030426025390625, 0.053558349609375, -0.035003662109375, -0.053375244140625, 0.0391845703125, -0.03240966796875, -0.029083251953125, 0.001293182373046875, -0.032745361328125, 0.0268402099609375, 0.00201416015625, -0.0035343170166015625, 0.0279693603515625, -0.0215911865234375, 0.028533935546875, 0.061492919921875, 0.00878143310546875, 0.03802490234375, 0.0021953582763671875, 0.00919342041015625, 0.00390625, 0.0206451416015625, -0.05169677734375, -0.044464111328125, 0.072021484375, 0.0271148681640625, -0.03607177734375, 0.073974609375, -0.0377197265625, 0.0131988525390625, 0.047271728515625, 0.049102783203125, -0.0765380859375, 0.0098876953125, 0.01073455810546875, 0.0012502670288085938, 0.03570556640625, -0.025543212890625, -0.0010824203491210938, -0.036285400390625, -0.006389617919921875, 0.04754638671875, -0.0333251953125, -0.02471923828125, 0.004199981689453125, -0.00861358642578125, -0.01222991943359375, 0.036407470703125, 0.01390838623046875, -0.0249481201171875, -0.005626678466796875, 0.0077667236328125, 0.006710052490234375, -0.0258941650390625, 0.01812744140625, -0.0262908935546875, -0.00485992431640625, -0.05133056640625, -0.003387451171875, -0.031585693359375, -0.004425048828125, -0.005931854248046875, 0.0145263671875, 0.0011653900146484375, 0.0291595458984375, -0.0035419464111328125, -0.00785064697265625, 0.0008597373962402344, -0.013031005859375, -0.001399993896484375, -0.025146484375, 0.0241241455078125, -0.0153656005859375, 0.003864288330078125, 0.023529052734375, 0.005741119384765625, -0.0787353515625, -0.0036773681640625, 0.0302276611328125, 0.037872314453125, 0.0062103271484375, -0.0295867919921875, 0.05426025390625, 0.0173797607421875, -0.0263214111328125, 0.01009368896484375, 0.010986328125, 0.0022068023681640625, 0.019622802734375, -0.01038360595703125, -0.00222015380859375, 0.0099334716796875, -0.00008296966552734375, -0.09283447265625, 0.12078857421875, 0.01036834716796875, 0.0270843505859375, 0.00064849853515625, 0.04876708984375, -0.056365966796875, 0.004428863525390625, -0.0284271240234375, 0.053466796875, -0.000766754150390625, 0.063720703125, -0.0218048095703125, 0.009735107421875, 0.0212249755859375, 0.03955078125, 0.0853271484375, 0.002414703369140625, 0.01313018798828125, -0.013397216796875, 0.08251953125, 0.06707763671875, -0.00746917724609375, -0.00893402099609375, -0.0198516845703125, 0.053863525390625, 0.00830841064453125, -0.0706787109375, 0.0158843994140625, -0.0155792236328125, -0.0323486328125, 0.0132293701171875, 0.002635955810546875, 0.00424957275390625, 0.0266876220703125, -0.0259857177734375, -0.0247344970703125, 0.006992340087890625, 0.0237274169921875, -0.0341796875, 0.01534271240234375, 0.0284423828125, 0.03271484375, -0.034820556640625, -0.019744873046875, -0.018524169921875, 0.035308837890625, 0.0176544189453125, 0.004222869873046875, 0.0030574798583984375, 0.0185394287109375, 0.0160675048828125, -0.04986572265625, -0.0140228271484375, 0.0220184326171875, -0.0298309326171875, 0.041778564453125, -0.00341796875, 0.014617919921875, -0.04730224609375, 0.01381683349609375, 0.0216827392578125, 0.035003662109375, -0.03466796875, 0.000446319580078125, 0.02484130859375, 0.0228271484375, -0.0272064208984375, -0.0484619140625, -0.0174560546875, -0.005115509033203125, 0.0287017822265625, -0.021026611328125, -0.0263519287109375, 0.01143646240234375, 0.0301971435546875, -0.01548004150390625, -0.01116943359375, 0.01131439208984375, -0.0214385986328125, -0.024200439453125, -0.0105743408203125, 0.0276641845703125, 0.051605224609375, 0.01439666748046875, 0.0384521484375, -0.034942626953125, -0.0213623046875, 0.0026836395263671875, -0.0156097412109375, -0.0191802978515625, 0.0015916824340820312, -0.017425537109375, -0.032318115234375, 0.0025196075439453125, 0.02813720703125, 0.0034122467041015625, -0.0153045654296875, 0.0360107421875, 0.0019168853759765625, -0.08587646484375, -0.0221099853515625, 0.022064208984375, -0.037872314453125, -0.029937744140625, -0.0003197193145751953, -0.0201263427734375, 0.01983642578125, -0.033599853515625, 0.01131439208984375, 0.01403045654296875, 0.0198516845703125, -0.01477813720703125, 0.0384521484375, 0.0012960433959960938, 0.006168365478515625, 0.0269317626953125, 0.0091552734375, 0.0179901123046875, 0.0113677978515625, -0.05963134765625, -0.0015554428100585938, -0.07122802734375, -0.062255859375, 0.049530029296875, 0.047027587890625, -0.02490234375, 0.00830078125, -0.016815185546875, 0.00836181640625, 0.01209259033203125, -0.021240234375, 0.01641845703125, 0.057952880859375, 0.0285491943359375, 0.0273895263671875, -0.062286376953125, -0.038818359375, -0.01059722900390625, 0.039825439453125, -0.0166015625, 0.0970458984375, -0.0271453857421875, -0.00981903076171875, -0.018280029296875, 0.070556640625, -0.0838623046875, -0.0253143310546875, 0.0246734619140625, -0.0181884765625, 0.021484375, -0.0000769495964050293, -0.04638671875, 0.033599853515625, 0.0300750732421875, -0.021697998046875, 0.01483154296875, -0.007686614990234375, -0.003208160400390625, -0.0165863037109375, 0.046417236328125, -0.0273895263671875, -0.05548095703125, -0.055206298828125, 0.0031757354736328125, 0.01282501220703125, 0.04254150390625, -0.0084228515625, 0.01187896728515625, 0.0157470703125, -0.02813720703125, 0.00036025047302246094, -0.006481170654296875, 0.0158843994140625, 0.0287017822265625, 0.0185699462890625, -0.037628173828125, 0.06195068359375, -0.005634307861328125, 0.02911376953125, 0.01763916015625, 0.07366943359375, 0.031402587890625, -0.0222015380859375, 0.048583984375, -0.0127410888671875, 0.021820068359375, -0.04510498046875, -0.01123046875, 0.04351806640625, 0.01375579833984375, -0.0033206939697265625, 0.004810333251953125, -0.0252227783203125, -0.034637451171875, -0.006214141845703125, 0.0179595947265625, -0.0232391357421875, -0.015838623046875, -0.058563232421875, -0.0328369140625, 0.01910400390625, -0.0179901123046875, 0.008880615234375, -0.012115478515625, -0.00304412841796875, -0.002655029296875, -0.01399993896484375, -0.055328369140625, 0.03759765625, 0.05609130859375, -0.01403045654296875, 0.031585693359375, -0.01279449462890625, -0.052978515625, 0.00644683837890625, 0.0467529296875, 0.051605224609375, -0.0418701171875, -0.016357421875, 0.0474853515625, 0.0204925537109375, 0.0882568359375, 0.0131683349609375, 0.00002181529998779297, 0.01036834716796875, 0.003772735595703125, -0.036041259765625, -0.07574462890625, 0.0214385986328125, -0.082275390625, -0.021270751953125, -0.041290283203125, 0.020721435546875, 0.02911376953125, -0.03692626953125, -0.08203125, 0.08349609375, -0.0400390625, -0.02386474609375, -0.01084136962890625, -0.007480621337890625, -0.00650787353515625, 0.00774383544921875, -0.00235748291015625, -0.0092620849609375, -0.00763702392578125, 0.030975341796875, 0.028717041015625, 0.0021820068359375, 0.060455322265625, -0.0258636474609375, -0.026611328125, -0.021636962890625, -0.021514892578125, 0.01507568359375, 0.0229644775390625, -0.0195770263671875, 0.028839111328125, 0.05987548828125, -0.057037353515625, -0.055084228515625, -0.03369140625, 0.006488800048828125, 0.030426025390625, 0.0175628662109375, -0.069580078125, -0.02880859375, 0.041290283203125, 0.041717529296875, 0.02581787109375, -0.007114410400390625, 0.025726318359375, -0.040069580078125, -0.09185791015625, -0.007122039794921875, 0.038970947265625, -0.05718994140625, -0.0038509368896484375, 0.026153564453125, -0.0160675048828125, 0.00262451171875, -0.022674560546875, -0.0274200439453125, 0.004238128662109375, -0.02294921875, 0.010894775390625, -0.031768798828125, 0.0247802734375, -0.0255584716796875, -0.0012950897216796875, 0.00502777099609375, -0.034637451171875, -0.00008809566497802734, -0.01531219482421875, -0.006595611572265625, 0.0163726806640625, 0.0310516357421875, -0.034637451171875, 0.003192901611328125, 0.0146636962890625, 0.021697998046875, -0.0350341796875, 0.002155303955078125, 0.007740020751953125, 0.0212249755859375, -0.0203857421875, 0.0187835693359375, 0.00437164306640625, 0.052154541015625, -0.0297393798828125, 0.0787353515625, -0.008270263671875, 0.0265960693359375, -0.0190277099609375, 0.040924072265625, -0.0264892578125, -0.01122283935546875, -0.0080718994140625, -0.00989532470703125, 0.0029544830322265625, -0.0023708343505859375, 0.009246826171875, -0.0188140869140625, 0.0239715576171875, 0.039764404296875, -0.0211639404296875, 0.017852783203125 ]
893c9fd474fddd537fb63a05dfd9503208775942
Wordpress Stackexchange Q: How do I check what plugins are enabled via the database? I'd like to query the database directly, and determine which plugins are enabled. How can I do this? A: You can do it like this: SQL SELECT * FROM wp_options WHERE option_name = 'active_plugins'; But for better approach will be the WordPress way: Wordpress if ( ! function_exists( 'get_plugins' ) ) { require_once ABSPATH . 'wp-admin/includes/plugin.php'; } $active_plugins = get_option('active_plugins'); $all_plugins = get_plugins(); $activated_plugins = array(); foreach ($active_plugins as $plugin){ if(isset($all_plugins[$plugin])){ array_push($activated_plugins, $all_plugins[$plugin]); } }
Q: How do I check what plugins are enabled via the database? I'd like to query the database directly, and determine which plugins are enabled. How can I do this? A: You can do it like this: SQL SELECT * FROM wp_options WHERE option_name = 'active_plugins'; But for better approach will be the WordPress way: Wordpress if ( ! function_exists( 'get_plugins' ) ) { require_once ABSPATH . 'wp-admin/includes/plugin.php'; } $active_plugins = get_option('active_plugins'); $all_plugins = get_plugins(); $activated_plugins = array(); foreach ($active_plugins as $plugin){ if(isset($all_plugins[$plugin])){ array_push($activated_plugins, $all_plugins[$plugin]); } } A: Here is a solution that outputs the values in a human readable format: mysql -h 127.0.0.1 -u wordpress -p wordpress -ss --raw -N -e 'SELECT option_value FROM wp_options WHERE option_name="active_plugins"' | php -r "var_dump(unserialize(stream_get_contents(STDIN)));" A: You can use get_options('active_plugins') to retrieve all active plugins. For checking against one plugin active or not you can use it like this : if (in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) )) { //Woocommerce Active } else{ //Woocommerce Deactive }
wordpress
{ "language": "en", "length": 165, "provenance": "stackexchange_00019.jsonl.gz:481782", "question_score": "4", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/286759" }
[ 0.07574462890625, 0.0184783935546875, 0.001346588134765625, -0.032379150390625, 0.033416748046875, -0.03936767578125, 0.060546875, -0.0155487060546875, 0.0277252197265625, 0.018035888671875, -0.03851318359375, 0.0031642913818359375, -0.0278472900390625, -0.0207672119140625, -0.01433563232421875, -0.036224365234375, 0.0221405029296875, -0.0038890838623046875, -0.00614166259765625, -0.01171875, 0.0278472900390625, 0.01177215576171875, -0.05340576171875, 0.087890625, 0.02838134765625, -0.0249481201171875, 0.0986328125, -0.034515380859375, 0.058258056640625, -0.0084228515625, 0.03948974609375, -0.051025390625, -0.01248931884765625, 0.0184783935546875, 0.033782958984375, -0.04541015625, 0.026519775390625, 0.00574493408203125, 0.02081298828125, 0.00896453857421875, 0.05322265625, -0.043060302734375, -0.01013946533203125, 0.027313232421875, 0.00262451171875, -0.057464599609375, 0.06573486328125, -0.030059814453125, 0.0156707763671875, -0.0233001708984375, 0.00720977783203125, 0.024627685546875, 0.0310821533203125, -0.044769287109375, -0.00913238525390625, -0.000732421875, -0.0114898681640625, 0.019744873046875, 0.035736083984375, 0.017822265625, -0.0256195068359375, -0.006381988525390625, 0.0027637481689453125, -0.0286102294921875, -0.006481170654296875, -0.01294708251953125, 0.0305023193359375, 0.027801513671875, -0.01380157470703125, -0.01763916015625, 0.01690673828125, -0.01025390625, -0.0032749176025390625, 0.0281829833984375, -0.0257415771484375, -0.032196044921875, 0.01483154296875, -0.01085662841796875, 0.019622802734375, 0.014373779296875, 0.0533447265625, 0.04437255859375, 0.020111083984375, 0.013580322265625, -0.000629425048828125, 0.026885986328125, -0.0010194778442382812, -0.035186767578125, -0.01448822021484375, 0.00878143310546875, -0.01416778564453125, 0.01461029052734375, -0.020172119140625, 0.01163482666015625, -0.0121917724609375, -0.00746917724609375, 0.0648193359375, 0.05926513671875, -0.0198211669921875, -0.042205810546875, 0.0163726806640625, -0.051666259765625, -0.006160736083984375, -0.01299285888671875, -0.0003445148468017578, 0.036468505859375, 0.0017423629760742188, 0.00002771615982055664, 0.0174407958984375, 0.025054931640625, 0.01177215576171875, 0.007328033447265625, -0.0226593017578125, -0.01427459716796875, -0.0157012939453125, -0.004276275634765625, -0.053985595703125, 0.01473236083984375, -0.005962371826171875, -0.0179901123046875, 0.010406494140625, 0.05029296875, -0.042236328125, -0.039031982421875, -0.036407470703125, -0.0504150390625, -0.006168365478515625, 0.002735137939453125, -0.049530029296875, 0.03143310546875, -0.00553131103515625, 0.0061492919921875, 0.043426513671875, 0.033050537109375, -0.009185791015625, -0.0182952880859375, 0.0260772705078125, 0.051727294921875, 0.032440185546875, -0.01084136962890625, 0.033935546875, -0.0266265869140625, 0.0045166015625, 0.02520751953125, 0.0086517333984375, 0.00839996337890625, 0.017486572265625, 0.01479339599609375, -0.01543426513671875, 0.0004875659942626953, -0.006011962890625, 0.0131988525390625, 0.0006823539733886719, 0.013946533203125, 0.0283660888671875, 0.019012451171875, 0.037841796875, -0.01195526123046875, -0.01971435546875, -0.01251220703125, -0.007244110107421875, 0.01483917236328125, 0.041473388671875, -0.013885498046875, -0.002864837646484375, -0.0297088623046875, -0.0291748046875, 0.004619598388671875, 0.0289764404296875, 0.02032470703125, -0.0002925395965576172, -0.02264404296875, 0.06341552734375, 0.006221771240234375, -0.01702880859375, 0.032806396484375, -0.0306549072265625, -0.013519287109375, 0.046478271484375, 0.021759033203125, -0.0149383544921875, -0.006046295166015625, 0.06121826171875, -0.0084228515625, -0.04473876953125, 0.044891357421875, -0.0009379386901855469, 0.022430419921875, 0.01238250732421875, 0.00008976459503173828, 0.0181884765625, 0.025787353515625, -0.006664276123046875, 0.0277099609375, 0.0014162063598632812, -0.031280517578125, -0.034637451171875, 0.003345489501953125, -0.01788330078125, -0.019439697265625, 0.05517578125, 0.01328277587890625, -0.0295867919921875, -0.0297393798828125, -0.1043701171875, -0.0239410400390625, -0.009613037109375, 0.032928466796875, 0.0162506103515625, 0.019256591796875, 0.0031890869140625, 0.01207733154296875, -0.0183258056640625, -0.015960693359375, -0.0333251953125, 0.0208282470703125, -0.0251312255859375, 0.021453857421875, 0.0007677078247070312, 0.02392578125, 0.012298583984375, -0.031951904296875, 0.0035419464111328125, 0.0098876953125, 0.007442474365234375, 0.006755828857421875, 0.0009822845458984375, 0.01514434814453125, 0.0245513916015625, 0.0182037353515625, 0.0404052734375, -0.0217437744140625, 0.018707275390625, 0.035430908203125, 0.01357269287109375, -0.0020236968994140625, 0.04180908203125, -0.08258056640625, 0.0175018310546875, 0.032196044921875, 0.042083740234375, 0.006282806396484375, -0.01690673828125, -0.02593994140625, 0.01497650146484375, -0.09686279296875, -0.005817413330078125, -0.0034389495849609375, 0.05059814453125, 0.06829833984375, -0.06707763671875, 0.00921630859375, 0.045135498046875, 0.0921630859375, 0.0099945068359375, 0.041778564453125, -0.021484375, -0.00007915496826171875, -0.0109405517578125, 0.0033416748046875, 0.00470733642578125, 0.00643157958984375, 0.00396728515625, -0.0081787109375, 0.05218505859375, 0.0202789306640625, 0.044830322265625, 0.03619384765625, -0.01434326171875, 0.041229248046875, -0.00778961181640625, -0.0440673828125, 0.00606536865234375, 0.0258026123046875, 0.0223236083984375, 0.00882720947265625, -0.0265045166015625, -0.0211639404296875, 0.01544189453125, 0.01016998291015625, -0.0201263427734375, -0.011260986328125, -0.04412841796875, -0.008575439453125, -0.01142120361328125, -0.03228759765625, 0.0192108154296875, 0.0302886962890625, -0.059051513671875, -0.01068878173828125, 0.02764892578125, 0.0204315185546875, -0.0361328125, 0.01262664794921875, -0.03753662109375, 0.0023136138916015625, 0.0038242340087890625, -0.051483154296875, 0.049102783203125, -0.04254150390625, 0.02801513671875, 0.0675048828125, -0.00656890869140625, -0.0022296905517578125, -0.0007328987121582031, -0.034027099609375, 0.0140380859375, -0.004009246826171875, -0.0227508544921875, 0.008758544921875, -0.092529296875, 0.0028781890869140625, 0.00925445556640625, 0.037017822265625, -0.0192413330078125, -0.048065185546875, -0.031005859375, 0.01006317138671875, -0.077880859375, -0.034820556640625, -0.03985595703125, -0.045623779296875, 0.023681640625, -0.0225830078125, -0.00893402099609375, -0.00351715087890625, -0.01044464111328125, 0.026153564453125, -0.0148773193359375, -0.033477783203125, -0.02813720703125, -0.047149658203125, -0.06170654296875, 0.00896453857421875, 0.0070648193359375, 0.021514892578125, 0.0163116455078125, 0.0413818359375, 0.0044403076171875, -0.05712890625, -0.006153106689453125, -0.0277252197265625, -0.0227203369140625, 0.0113525390625, 0.010345458984375, 0.00567626953125, -0.0078277587890625, 0.0191802978515625, -0.0020847320556640625, 0.0166015625, -0.022064208984375, -0.0263671875, 0.03125, 0.03656005859375, 0.041778564453125, -0.024627685546875, -0.03851318359375, 0.035064697265625, -0.01334381103515625, -0.03765869140625, 0.007221221923828125, -0.0322265625, -0.034515380859375, 0.0377197265625, 0.0009322166442871094, 0.00868988037109375, 0.0164031982421875, -0.01085662841796875, 0.0318603515625, 0.01110076904296875, -0.00605010986328125, -0.0284423828125, 0.0321044921875, 0.0277099609375, 0.041778564453125, 0.0017251968383789062, 0.01262664794921875, -0.0159912109375, 0.0110015869140625, 0.0016565322875976562, 0.0033111572265625, -0.03680419921875, 0.02142333984375, -0.05450439453125, -0.017608642578125, 0.034912109375, -0.0160064697265625, 0.0024166107177734375, -0.00862884521484375, -0.01470947265625, 0.002628326416015625, 0.057830810546875, -0.05047607421875, -0.0159759521484375, -0.0014276504516601562, 0.0022449493408203125, -0.0018415451049804688, 0.0013494491577148438, -0.05029296875, -0.0085906982421875, -0.10333251953125, -0.010894775390625, -0.0238037109375, -0.0628662109375, 0.0155181884765625, -0.07269287109375, -0.052581787109375, -0.045684814453125, 0.0267486572265625, -0.055389404296875, -0.01233673095703125, 0.02386474609375, -0.044921875, -0.0029697418212890625, -0.021453857421875, -0.032623291015625, -0.0955810546875, 0.0006723403930664062, -0.050018310546875, 0.04608154296875, 0.0309295654296875, -0.034423828125, -0.02288818359375, 0.0223236083984375, 0.00007891654968261719, 0.0097808837890625, 0.0271148681640625, 0.034271240234375, -0.0177459716796875, -0.01385498046875, 0.0224609375, -0.0435791015625, -0.00853729248046875, -0.015411376953125, 0.005645751953125, 0.01099395751953125, -0.024658203125, -0.01284027099609375, -0.00920867919921875, -0.0166015625, -0.0020236968994140625, 0.0013341903686523438, -0.06280517578125, 0.002063751220703125, -0.03668212890625, -0.00888824462890625, 0.01366424560546875, -0.03692626953125, 0.08203125, -0.0308074951171875, 0.00914764404296875, -0.0160675048828125, 0.1317138671875, 0.0146636962890625, -0.01641845703125, -0.027587890625, 0.0160675048828125, 0.049102783203125, 0.053741455078125, -0.007793426513671875, 0.0017671585083007812, -0.048065185546875, 0.031280517578125, 0.043365478515625, -0.01479339599609375, -0.029449462890625, 0.04888916015625, 0.004077911376953125, -0.0127410888671875, 0.0018072128295898438, -0.00951385498046875, 0.034027099609375, 0.016876220703125, -0.0181732177734375, -0.0238494873046875, 0.01375579833984375, 0.0340576171875, -0.0396728515625, 0.0364990234375, -0.0200347900390625, -0.037017822265625, 0.0216217041015625, 0.00959014892578125, 0.030517578125, 0.04534912109375, -0.01436614990234375, 0.040130615234375, -0.0007686614990234375, 0.0013971328735351562, 0.038177490234375, 0.07476806640625, -0.021728515625, 0.0347900390625, 0.0257110595703125, -0.035858154296875, -0.00965118408203125, -0.023468017578125, 0.0767822265625, -0.021087646484375, -0.09222412109375, 0.032501220703125, -0.030181884765625, 0.0374755859375, 0.06829833984375, -0.005626678466796875, 0.04296875, 0.00868988037109375, -0.021514892578125, 0.000835418701171875, -0.03839111328125, 0.006031036376953125, -0.03851318359375, -0.034271240234375, -0.022918701171875, -0.0084228515625, 0.0047760009765625, 0.0300445556640625, -0.02081298828125, 0.02520751953125, -0.00580596923828125, 0.0265350341796875, 0.0289306640625, 0.0172119140625, 0.0212860107421875, -0.0164031982421875, -0.023651123046875, -0.00547027587890625, -0.007205963134765625, -0.055694580078125, -0.033843994140625, -0.008697509765625, 0.03472900390625, -0.01364898681640625, -0.0097198486328125, 0.054779052734375, 0.0306396484375, -0.020263671875, 0.046600341796875, 0.0270538330078125, -0.024139404296875, -0.05401611328125, 0.01374053955078125, 0.06903076171875, 0.02001953125, -0.0249481201171875, 0.02471923828125, -0.0241546630859375, 0.01142120361328125, 0.030059814453125, -0.0487060546875, 0.0217437744140625, 0.045166015625, -0.029876708984375, -0.03973388671875, -0.004665374755859375, -0.0243377685546875, 0.01427459716796875, -0.01195526123046875, -0.0164337158203125, 0.005527496337890625, -0.012542724609375, 0.0287322998046875, -0.01181793212890625, -0.027618408203125, 0.032012939453125, 0.0015888214111328125, 0.046234130859375, 0.01239013671875, -0.05987548828125, -0.0037441253662109375, -0.03778076171875, -0.01739501953125, -0.0020198822021484375, -0.007457733154296875, -0.040863037109375, -0.00804901123046875, -0.0013484954833984375, 0.0169677734375, -0.01021575927734375, -0.0016012191772460938, 0.0238494873046875, 0.0174102783203125, -0.01488494873046875, 0.015838623046875, 0.00926971435546875, 0.0672607421875, 0.0017032623291015625, 0.054595947265625, 0.03692626953125, 0.03936767578125, -0.0472412109375, -0.0308380126953125, 0.0129547119140625, 0.0096282958984375, -0.0167999267578125, -0.0357666015625, 0.015228271484375, -0.02374267578125, 0.033782958984375, -0.004978179931640625, -0.004467010498046875, -0.0149688720703125, 0.008514404296875, -0.01169586181640625, 0.022186279296875, 0.0103607177734375, -0.00203704833984375, 0.020172119140625, -0.03839111328125, -0.01385498046875, -0.0110015869140625, -0.02911376953125, 0.030670166015625, 0.003337860107421875, -0.0060577392578125, 0.02734375, -0.03387451171875, 0.077880859375, 0.031951904296875, -0.002780914306640625, 0.0263824462890625, 0.024932861328125, 0.01119232177734375, -0.037933349609375, -0.01410675048828125, 0.0205841064453125, 0.01007843017578125, 0.04608154296875, -0.00951385498046875, 0.002964019775390625, 0.037322998046875, -0.0225677490234375, 0.011199951171875, 0.0278472900390625, 0.04632568359375, -0.06146240234375, 0.0220489501953125, 0.00800323486328125, -0.0073699951171875, 0.0171051025390625, -0.01690673828125, -0.006351470947265625, -0.037384033203125, 0.03619384765625, 0.0130615234375, -0.02264404296875, 0.0008873939514160156, -0.01611328125, -0.007694244384765625, 0.0092010498046875, 0.05035400390625, 0.01336669921875, -0.0002999305725097656, -0.01461029052734375, -0.004608154296875, 0.004192352294921875, 0.01114654541015625, -0.0015783309936523438, 0.01293182373046875, -0.001262664794921875, -0.0338134765625, 0.026336669921875, -0.040130615234375, -0.0098114013671875, 0.038543701171875, -0.0024433135986328125, 0.035858154296875, 0.076904296875, -0.01180267333984375, 0.017822265625, 0.04473876953125, -0.0276641845703125, -0.032867431640625, -0.0083770751953125, 0.01001739501953125, 0.0570068359375, -0.036163330078125, 0.0197906494140625, -0.0197296142578125, 0.008148193359375, -0.0098876953125, -0.0262298583984375, 0.04656982421875, 0.0021228790283203125, -0.020751953125, 0.0263214111328125, 0.0123748779296875, -0.016815185546875, -0.0243072509765625, 0.022369384765625, -0.046417236328125, 0.0142364501953125, -0.0031948089599609375, 0.0159454345703125, -0.001987457275390625, -0.01299285888671875, -0.044769287109375, 0.07720947265625, -0.01117706298828125, 0.00353240966796875, 0.0226287841796875, 0.031097412109375, -0.040008544921875, 0.004791259765625, -0.048553466796875, 0.053619384765625, -0.039154052734375, 0.060882568359375, -0.04107666015625, 0.0092315673828125, 0.0258636474609375, 0.0016489028930664062, 0.0499267578125, 0.0006384849548339844, -0.003040313720703125, -0.0197601318359375, 0.0311737060546875, 0.0194854736328125, -0.01297760009765625, 0.02313232421875, 0.005702972412109375, 0.0560302734375, 0.06414794921875, -0.039642333984375, 0.0323486328125, -0.01194000244140625, -0.00876617431640625, 0.027496337890625, -0.00042939186096191406, 0.0054779052734375, -0.0311431884765625, 0.01126861572265625, 0.04486083984375, -0.04449462890625, -0.030853271484375, -0.042083740234375, 0.00516510009765625, 0.0390625, 0.035858154296875, -0.07025146484375, -0.040313720703125, -0.021026611328125, 0.035675048828125, -0.00566864013671875, 0.007373809814453125, -0.0010671615600585938, 0.01104736328125, 0.0015478134155273438, -0.0244598388671875, -0.00273895263671875, 0.025848388671875, -0.028961181640625, 0.03271484375, 0.0253448486328125, 0.0166168212890625, -0.0175628662109375, 0.01482391357421875, 0.004032135009765625, 0.0301055908203125, -0.038543701171875, -0.0860595703125, 0.0160675048828125, 0.038360595703125, 0.01153564453125, 0.05364990234375, 0.00843048095703125, 0.0195159912109375, 0.12115478515625, -0.0017633438110351562, -0.02197265625, 0.03173828125, 0.001522064208984375, 0.01611328125, 0.003757476806640625, -0.00787353515625, -0.01558685302734375, -0.01102447509765625, -0.0004100799560546875, 0.01224517822265625, 0.0101318359375, -0.01088714599609375, 0.01104736328125, 0.016937255859375, 0.0035839080810546875, -0.0206756591796875, 0.048004150390625, -0.0361328125, 0.048614501953125, -0.07659912109375, -0.0592041015625, -0.0238037109375, 0.055633544921875, 0.0059661865234375, 0.0184173583984375, 0.02972412109375, 0.035003662109375, 0.006015777587890625, -0.001987457275390625, 0.06414794921875, 0.0008897781372070312, -0.05133056640625, -0.0311126708984375, 0.0206146240234375, 0.0560302734375, 0.034271240234375, 0.00809478759765625, 0.0245819091796875, 0.042633056640625, -0.0102996826171875, 0.02984619140625, 0.00914764404296875, 0.0058441162109375, 0.034942626953125, 0.010162353515625, -0.00543212890625, 0.0143585205078125, -0.0992431640625, -0.0235137939453125, -0.027496337890625, -0.0287322998046875, 0.0263214111328125, 0.045379638671875, -0.01280975341796875, 0.0227508544921875, 0.011932373046875, -0.0204315185546875, 0.0253448486328125, 0.00902557373046875, -0.00445556640625, 0.027008056640625, 0.0160980224609375, -0.00788116455078125, -0.036956787109375, -0.006458282470703125, -0.0215301513671875, 0.0190582275390625, 0.01922607421875, 0.01629638671875, 0.002902984619140625, 0.035125732421875, 0.014007568359375, -0.02410888671875, 0.01139068603515625, 0.0174102783203125, -0.0178070068359375, -0.0272064208984375, -0.025787353515625, -0.0020084381103515625, -0.03619384765625, 0.040679931640625, 0.0092010498046875, 0.017578125, 0.031646728515625, -0.03411865234375, 0.016204833984375, 0.0169525146484375, 0.022613525390625, -0.031982421875, -0.052703857421875, -0.01434326171875, 0.00551605224609375, -0.004970550537109375, 0.017120361328125, 0.0196685791015625, -0.01157379150390625, 0.00789642333984375, -0.0139312744140625, -0.0225677490234375, 0.039794921875, -0.03497314453125, 0.03619384765625, -0.0243988037109375, -0.01806640625, 0.0128326416015625, -0.010650634765625, 0.02032470703125, 0.0092620849609375, 0.02239990234375, 0.030517578125, -0.035430908203125, 0.0111846923828125, 0.020599365234375, 0.04461669921875, -0.00856781005859375, 0.0242462158203125, 0.01023101806640625, 0.0126953125, 0.018463134765625, -0.03533935546875, -0.0176849365234375, -0.059539794921875, -0.0094451904296875, 0.02154541015625, -0.050811767578125, -0.02838134765625, -0.035919189453125, -0.00396728515625, 0.0185394287109375, -0.01093292236328125, -0.03271484375, -0.00867462158203125, -0.032989501953125, 0.050384521484375, -0.0293426513671875, -0.00621795654296875, 0.0158843994140625, 0.049102783203125, 0.0106964111328125, -0.0014886856079101562, 0.0089569091796875, 0.0119171142578125, 0.027557373046875, 0.0386962890625, 0.042694091796875, -0.052886962890625, -0.033599853515625, 0.0560302734375, 0.053009033203125, 0.0941162109375, 0.0291748046875, -0.0015649795532226562, 0.02740478515625, -0.025634765625, -0.0291748046875, -0.047119140625, 0.0247344970703125, -0.08917236328125, -0.03594970703125, -0.06475830078125, 0.03515625, 0.032257080078125, -0.03826904296875, -0.074951171875, 0.037628173828125, -0.034881591796875, -0.022216796875, -0.04022216796875, 0.04327392578125, 0.0179443359375, -0.046234130859375, -0.01471710205078125, -0.01073455810546875, -0.019439697265625, 0.005771636962890625, 0.0242767333984375, 0.014404296875, 0.023773193359375, -0.00930023193359375, -0.03314208984375, 0.0159759521484375, 0.007633209228515625, 0.0276641845703125, -0.0083160400390625, -0.005889892578125, 0.027313232421875, 0.03912353515625, -0.027587890625, 0.035858154296875, 0.01218414306640625, 0.0028743743896484375, -0.0205230712890625, -0.052215576171875, 0.00008171796798706055, 0.01548004150390625, 0.047607421875, 0.07012939453125, 0.01052093505859375, -0.06500244140625, -0.0333251953125, -0.01419830322265625, 0.0020751953125, 0.0002351999282836914, 0.01526641845703125, -0.047607421875, 0.017486572265625, 0.003620147705078125, -0.004520416259765625, -0.033050537109375, 0.042724609375, -0.016326904296875, -0.0262451171875, 0.0010728836059570312, -0.03338623046875, -0.01076507568359375, -0.0029430389404296875, 0.0284423828125, -0.0306549072265625, -0.036529541015625, -0.0208282470703125, 0.010040283203125, -0.0180816650390625, -0.0384521484375, 0.0035762786865234375, 0.0023937225341796875, 0.0120086669921875, 0.026641845703125, 0.0079345703125, -0.010223388671875, 0.00525665283203125, -0.0027599334716796875, -0.0025272369384765625, 0.0198211669921875, -0.005901336669921875, -0.0021495819091796875, -0.01898193359375, 0.05303955078125, 0.006351470947265625, 0.06854248046875, 0.048553466796875, 0.0226898193359375, -0.00783538818359375, 0.07489013671875, 0.01361846923828125, -0.07891845703125, 0.008697509765625, -0.05267333984375, 0.006473541259765625, 0.023468017578125, -0.0261993408203125, -0.042938232421875, 0.041168212890625, 0.0101165771484375, 0.00240325927734375, 0.0265960693359375 ]
6f35d5b4dfe20a279ff488ade86f90ef10b300cf
Wordpress Stackexchange Q: WPCLI - update plugins, themes, and core, all in one row, instead 3 rows? Is there a way to update plugins, themes, and core, all in one row, instead 3 rows, in WPCLI? This is the current code I use in the crontab and that I'd like to improve: 0 0 * * * for dir in /var/www/html/*/; do cd "$dir" && /usr/local/bin/wp plugin update --all --allow-root; done 0 0 * * * for dir in /var/www/html/*/; do cd "$dir" && /usr/local/bin/wp core update --allow-root; done 0 0 * * * for dir in /var/www/html/*/; do cd "$dir" && /usr/local/bin/wp theme update --all --allow-root; done A: Run a script instead: 0 0 * * * for dir in /var/www/html/*/; do cd "$dir" && ./updatewp.sh; done In updatewp.sh: wp core update --all --allow-root wp plugin update --all --allow-root wp theme update --all --allow-root
Q: WPCLI - update plugins, themes, and core, all in one row, instead 3 rows? Is there a way to update plugins, themes, and core, all in one row, instead 3 rows, in WPCLI? This is the current code I use in the crontab and that I'd like to improve: 0 0 * * * for dir in /var/www/html/*/; do cd "$dir" && /usr/local/bin/wp plugin update --all --allow-root; done 0 0 * * * for dir in /var/www/html/*/; do cd "$dir" && /usr/local/bin/wp core update --allow-root; done 0 0 * * * for dir in /var/www/html/*/; do cd "$dir" && /usr/local/bin/wp theme update --all --allow-root; done A: Run a script instead: 0 0 * * * for dir in /var/www/html/*/; do cd "$dir" && ./updatewp.sh; done In updatewp.sh: wp core update --all --allow-root wp plugin update --all --allow-root wp theme update --all --allow-root A: I'd do something like this: 0 0 * * * for dir in /var/www/html/*/; do cd "$dir" && \ ( \ /usr/local/bin/wp core update --allow-root && \ /usr/local/bin/wp plugin update --all --allow-root && \ /usr/local/bin/wp theme update --all --allow-root \ ); \ done \ used to break lines up for readability; this should probably be a single line in your crontab, like so: 0 0 * * * for dir in /var/www/html/*/; do cd "$dir" && ( /usr/local/bin/wp core update --allow-root && /usr/local/bin/wp plugin update --all --allow-root && /usr/local/bin/wp theme update --all --allow-root ); done I haven't tested this. However, I regularly do this from the command line (ie, not in crontab).
wordpress
{ "language": "en", "length": 256, "provenance": "stackexchange_00019.jsonl.gz:481793", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/286788" }
[ 0.022247314453125, -0.005222320556640625, -0.01056671142578125, -0.04571533203125, 0.0216827392578125, -0.031585693359375, 0.0372314453125, 0.0183258056640625, -0.0081787109375, 0.049346923828125, 0.0026493072509765625, -0.0016717910766601562, 0.04168701171875, -0.01546478271484375, -0.01727294921875, -0.003223419189453125, 0.036468505859375, -0.047515869140625, -0.009979248046875, -0.0302276611328125, 0.01485443115234375, -0.0015735626220703125, -0.00136566162109375, 0.09649658203125, -0.00357818603515625, 0.002780914306640625, 0.103515625, -0.01000213623046875, 0.00627899169921875, -0.0173797607421875, 0.014068603515625, -0.003772735595703125, 0.01629638671875, 0.032928466796875, -0.0546875, -0.033599853515625, -0.005161285400390625, 0.0076751708984375, -0.036376953125, 0.04931640625, 0.003055572509765625, 0.01189422607421875, 0.004573822021484375, 0.064208984375, -0.0308380126953125, -0.040496826171875, 0.0161895751953125, -0.01554107666015625, 0.00797271728515625, 0.01297760009765625, -0.00672149658203125, 0.03082275390625, 0.0185089111328125, -0.0235748291015625, 0.0009484291076660156, 0.005123138427734375, -0.00586700439453125, 0.00862884521484375, 0.0247344970703125, -0.0018444061279296875, -0.038543701171875, -0.0146636962890625, 0.01495361328125, -0.032867431640625, 0.01058197021484375, -0.0270233154296875, -0.0018987655639648438, 0.01409149169921875, -0.052337646484375, 0.0063629150390625, 0.06170654296875, -0.02294921875, 0.004730224609375, -0.02569580078125, 0.0260772705078125, -0.005619049072265625, -0.00783538818359375, -0.0251922607421875, 0.0282135009765625, 0.02069091796875, 0.0192108154296875, -0.0178375244140625, 0.020263671875, -0.0273895263671875, 0.0011663436889648438, -0.0129852294921875, 0.0007925033569335938, 0.00780487060546875, -0.033538818359375, -0.0304718017578125, -0.031341552734375, -0.006031036376953125, -0.060333251953125, -0.0022411346435546875, 0.0139312744140625, -0.0268096923828125, 0.0045623779296875, 0.035675048828125, -0.03607177734375, 0.022552490234375, 0.01580810546875, -0.0535888671875, 0.06658935546875, -0.0416259765625, -0.004901885986328125, 0.0499267578125, 0.017547607421875, 0.0254974365234375, 0.0299835205078125, 0.00959014892578125, 0.007293701171875, 0.031341552734375, 0.01016998291015625, -0.0101776123046875, -0.0099029541015625, -0.018157958984375, -0.04248046875, 0.03363037109375, 0.003231048583984375, 0.0103302001953125, -0.013946533203125, 0.018096923828125, -0.03765869140625, -0.022216796875, 0.0212249755859375, -0.00235748291015625, -0.005893707275390625, 0.0070037841796875, -0.035430908203125, 0.031524658203125, -0.008880615234375, 0.0017023086547851562, 0.021392822265625, 0.048980712890625, 0.0013303756713867188, -0.0158233642578125, 0.0260009765625, 0.033172607421875, 0.01517486572265625, 0.014495849609375, 0.002048492431640625, -0.036468505859375, -0.030853271484375, 0.01378631591796875, 0.01617431640625, 0.005580902099609375, 0.009246826171875, 0.02606201171875, 0.031341552734375, -0.0438232421875, 0.004459381103515625, 0.00858306884765625, 0.034027099609375, 0.00746917724609375, 0.0237884521484375, -0.034912109375, 0.07403564453125, -0.041015625, -0.00014698505401611328, -0.04632568359375, -0.035430908203125, 0.0008411407470703125, 0.05694580078125, -0.034454345703125, -0.028472900390625, -0.01068878173828125, -0.04779052734375, 0.00844573974609375, 0.01983642578125, -0.00788116455078125, -0.0223846435546875, -0.001979827880859375, 0.06121826171875, 0.02490234375, 0.0013523101806640625, 0.04913330078125, -0.036102294921875, -0.01035308837890625, 0.0328369140625, 0.02191162109375, 0.01345062255859375, -0.028167724609375, -0.001987457275390625, 0.0292205810546875, -0.032379150390625, -0.00861358642578125, 0.01336669921875, 0.04180908203125, 0.0254058837890625, 0.00945281982421875, 0.04217529296875, -0.036224365234375, -0.033721923828125, 0.05987548828125, 0.003383636474609375, -0.01548004150390625, -0.05126953125, 0.0184326171875, -0.0254974365234375, -0.047698974609375, 0.01442718505859375, 0.02447509765625, -0.0200347900390625, -0.00586700439453125, -0.028228759765625, -0.0052947998046875, -0.002140045166015625, 0.02606201171875, 0.0128631591796875, 0.022613525390625, 0.016876220703125, 0.03668212890625, -0.0163726806640625, -0.0919189453125, -0.05596923828125, -0.0032978057861328125, -0.031280517578125, 0.05023193359375, 0.0014743804931640625, 0.0718994140625, 0.03076171875, -0.055206298828125, 0.0256195068359375, 0.0031585693359375, 0.01464080810546875, -0.0009016990661621094, -0.0031604766845703125, 0.007049560546875, 0.00745391845703125, 0.02105712890625, -0.006290435791015625, 0.0012598037719726562, 0.0390625, 0.032196044921875, -0.0230865478515625, -0.0147705078125, -0.01348114013671875, -0.0308380126953125, 0.01204681396484375, 0.045684814453125, 0.0258636474609375, 0.02734375, -0.0240631103515625, -0.0304107666015625, 0.035186767578125, -0.06805419921875, -0.01800537109375, 0.00008064508438110352, -0.0006685256958007812, 0.0165252685546875, -0.0078277587890625, 0.004909515380859375, 0.050079345703125, 0.007335662841796875, -0.00798797607421875, 0.053985595703125, -0.006160736083984375, 0.0247344970703125, -0.07177734375, 0.01023101806640625, 0.001926422119140625, -0.035552978515625, -0.019622802734375, -0.01384735107421875, -0.0020122528076171875, -0.00321197509765625, 0.0087890625, 0.01319122314453125, -0.040802001953125, -0.01287841796875, 0.041748046875, 0.029876708984375, 0.004241943359375, 0.016845703125, -0.0458984375, -0.0155792236328125, -0.007106781005859375, 0.014190673828125, -0.023101806640625, -0.0147857666015625, -0.0179595947265625, -0.006500244140625, -0.0215911865234375, -0.01947021484375, 0.00637054443359375, -0.038360595703125, 0.01421356201171875, 0.00545501708984375, -0.0188140869140625, -0.01378631591796875, 0.002628326416015625, 0.03961181640625, -0.0117950439453125, 0.0311279296875, -0.0022716522216796875, -0.00882720947265625, 0.0040130615234375, -0.0247344970703125, 0.033843994140625, -0.03448486328125, 0.00373077392578125, 0.037689208984375, 0.0009026527404785156, -0.02117919921875, 0.0173492431640625, -0.01113128662109375, 0.0264739990234375, 0.00243377685546875, -0.00972747802734375, 0.007701873779296875, -0.044525146484375, 0.01342010498046875, 0.02239990234375, 0.04638671875, 0.0094451904296875, -0.051727294921875, 0.0012226104736328125, 0.0318603515625, -0.08251953125, -0.098388671875, -0.0123291015625, -0.07049560546875, 0.0259246826171875, -0.04754638671875, -0.03717041015625, -0.0048370361328125, -0.022003173828125, 0.01195526123046875, -0.039154052734375, 0.01483154296875, -0.053253173828125, -0.057861328125, -0.058868408203125, -0.0302734375, -0.0211181640625, 0.01134490966796875, 0.00022017955780029297, 0.06982421875, 0.0004172325134277344, -0.069580078125, -0.036590576171875, 0.037750244140625, -0.02874755859375, -0.0196990966796875, -0.0014295578002929688, -0.01309967041015625, -0.00531005859375, 0.00679779052734375, -0.04156494140625, 0.0037899017333984375, 0.005069732666015625, -0.0228729248046875, -0.00492095947265625, -0.034454345703125, -0.00876617431640625, -0.01715087890625, -0.0017452239990234375, -0.052215576171875, -0.0299835205078125, -0.087646484375, -0.0299072265625, 0.01311492919921875, -0.0218353271484375, 0.04510498046875, -0.01049041748046875, -0.011627197265625, 0.0264892578125, 0.0157928466796875, -0.0028533935546875, 0.0015764236450195312, 0.0394287109375, -0.039947509765625, 0.04217529296875, -0.003574371337890625, 0.0148468017578125, -0.04229736328125, 0.0012559890747070312, -0.02667236328125, -0.00714874267578125, -0.0240325927734375, -0.01482391357421875, -0.04437255859375, 0.032379150390625, -0.049072265625, 0.00873565673828125, 0.046173095703125, -0.0183258056640625, 0.00934600830078125, -0.0219879150390625, -0.01910400390625, -0.0268707275390625, 0.04730224609375, -0.058685302734375, -0.0269012451171875, 0.0009088516235351562, 0.0467529296875, -0.035186767578125, -0.063232421875, 0.001087188720703125, -0.0284576416015625, -0.051361083984375, 0.011566162109375, -0.019012451171875, -0.017913818359375, 0.0197906494140625, -0.06787109375, -0.00830078125, -0.0430908203125, 0.04632568359375, -0.00119781494140625, 0.00038242340087890625, 0.0210113525390625, -0.0025386810302734375, -0.01739501953125, -0.04132080078125, 0.0296783447265625, -0.140625, -0.01885986328125, 0.008209228515625, 0.078125, -0.00946044921875, -0.015655517578125, -0.0216827392578125, 0.074951171875, -0.0467529296875, 0.00225830078125, -0.00791168212890625, 0.0736083984375, -0.07073974609375, -0.039764404296875, 0.0016946792602539062, -0.051605224609375, -0.010772705078125, -0.0421142578125, -0.002849578857421875, -0.0088348388671875, -0.0229644775390625, 0.0003514289855957031, -0.016448974609375, -0.0043792724609375, 0.028594970703125, -0.0233001708984375, -0.06976318359375, 0.01032257080078125, -0.035003662109375, -0.0063934326171875, -0.038665771484375, -0.01436614990234375, 0.058135986328125, -0.01549530029296875, 0.00011724233627319336, 0.00016236305236816406, 0.109130859375, 0.0184326171875, -0.0243988037109375, -0.0640869140625, -0.0037021636962890625, 0.0261688232421875, 0.0255889892578125, 0.04412841796875, 0.037811279296875, -0.01387786865234375, 0.00933837890625, 0.0277557373046875, -0.0143280029296875, 0.033935546875, 0.0004868507385253906, 0.03125, -0.00441741943359375, -0.0247344970703125, 0.0194091796875, 0.0011873245239257812, 0.0145111083984375, -0.0113525390625, -0.002178192138671875, -0.043182373046875, 0.01397705078125, 0.059478759765625, -0.044036865234375, -0.049072265625, -0.0772705078125, 0.01806640625, -0.0041656494140625, 0.0350341796875, 0.0010051727294921875, -0.00016808509826660156, 0.050140380859375, 0.0202484130859375, 0.002155303955078125, -0.0046844482421875, 0.0200653076171875, -0.002437591552734375, 0.038360595703125, -0.00315093994140625, -0.0008349418640136719, -0.0258026123046875, -0.01415252685546875, 0.0621337890625, 0.0050811767578125, -0.027069091796875, -0.016510009765625, -0.00424957275390625, 0.055572509765625, 0.0111541748046875, 0.00785064697265625, 0.0216827392578125, 0.01593017578125, -0.0218048095703125, -0.0227813720703125, -0.0176544189453125, -0.0031452178955078125, -0.059661865234375, 0.0286102294921875, 0.03179931640625, -0.0172882080078125, 0.050506591796875, -0.0280609130859375, 0.03302001953125, -0.016387939453125, -0.0157623291015625, 0.04656982421875, 0.029083251953125, 0.027496337890625, 0.0075225830078125, 0.002910614013671875, -0.01499176025390625, 0.004680633544921875, -0.0240936279296875, -0.0268096923828125, 0.019287109375, 0.0283050537109375, 0.046417236328125, 0.029998779296875, -0.0190582275390625, -0.01523590087890625, -0.0185546875, 0.01311492919921875, 0.01229095458984375, -0.0152587890625, -0.031646728515625, -0.01458740234375, 0.031585693359375, 0.05084228515625, -0.022369384765625, 0.0018939971923828125, -0.02154541015625, -0.02569580078125, -0.049224853515625, 0.061553955078125, -0.0596923828125, -0.0175933837890625, 0.00719451904296875, -0.00909423828125, 0.002391815185546875, -0.00836944580078125, -0.05645751953125, -0.034698486328125, -0.02099609375, -0.01114654541015625, 0.0770263671875, 0.011383056640625, 0.05731201171875, -0.042694091796875, -0.03936767578125, -0.00061798095703125, -0.01399993896484375, 0.06591796875, 0.01313018798828125, -0.0270538330078125, -0.01436614990234375, -0.03607177734375, -0.0175628662109375, -0.037567138671875, -0.0670166015625, -0.035797119140625, -0.00212860107421875, 0.016021728515625, 0.0011396408081054688, -0.019561767578125, -0.050506591796875, -0.0185394287109375, 0.037933349609375, 0.0352783203125, 0.0253448486328125, -0.051055908203125, 0.05535888671875, 0.039886474609375, 0.020294189453125, 0.0040740966796875, 0.01364898681640625, 0.0204925537109375, -0.00135040283203125, 0.004299163818359375, -0.007015228271484375, -0.0136871337890625, -0.01197052001953125, -0.011810302734375, -0.027435302734375, 0.0178375244140625, -0.0196380615234375, -0.007808685302734375, -0.0283203125, 0.004718780517578125, -0.027435302734375, 0.048553466796875, -0.024169921875, -0.04168701171875, 0.033447265625, -0.002716064453125, 0.00943756103515625, -0.043701171875, -0.018524169921875, 0.0194549560546875, 0.0058746337890625, -0.01446533203125, 0.0294952392578125, -0.0428466796875, 0.07562255859375, 0.068115234375, 0.01007080078125, 0.048919677734375, 0.005161285400390625, 0.011199951171875, -0.0186004638671875, 0.003448486328125, 0.032806396484375, 0.02777099609375, 0.044830322265625, -0.01519775390625, -0.00829315185546875, -0.01018524169921875, -0.0293731689453125, 0.0161590576171875, 0.01259613037109375, 0.056884765625, -0.03350830078125, 0.031585693359375, 0.01468658447265625, -0.012939453125, 0.012908935546875, -0.012115478515625, 0.000004887580871582031, -0.030303955078125, 0.0408935546875, -0.0032863616943359375, -0.0066070556640625, 0.00806427001953125, -0.0028209686279296875, -0.006519317626953125, -0.019989013671875, 0.028564453125, 0.006214141845703125, 0.01422119140625, 0.0033588409423828125, -0.032257080078125, 0.02618408203125, 0.0253448486328125, 0.01041412353515625, -0.03082275390625, -0.0386962890625, -0.0433349609375, -0.01885986328125, -0.0157470703125, -0.037750244140625, 0.06781005859375, -0.0009860992431640625, -0.0189208984375, 0.04730224609375, -0.029541015625, 0.045562744140625, 0.0089111328125, 0.0015401840209960938, -0.0498046875, -0.018218994140625, 0.0202789306640625, 0.030975341796875, -0.00909423828125, 0.03253173828125, -0.023773193359375, -0.0209197998046875, 0.002857208251953125, -0.0116729736328125, 0.06689453125, -0.032440185546875, 0.005889892578125, 0.01605224609375, 0.00589752197265625, -0.00982666015625, 0.004077911376953125, 0.03106689453125, -0.07342529296875, -0.055877685546875, 0.0210723876953125, -0.041595458984375, -0.007358551025390625, 0.025146484375, -0.048126220703125, 0.11492919921875, -0.036895751953125, 0.0081634521484375, 0.026611328125, 0.046875, -0.0262603759765625, 0.017120361328125, -0.0012273788452148438, 0.035400390625, -0.0030956268310546875, -0.01641845703125, 0.037384033203125, 0.0313720703125, 0.01006317138671875, -0.034210205078125, 0.018798828125, 0.0145263671875, -0.0599365234375, 0.0021114349365234375, 0.021759033203125, 0.045745849609375, 0.031494140625, 0.049530029296875, -0.01194000244140625, 0.03460693359375, 0.007694244384765625, -0.01067352294921875, 0.04595947265625, -0.0439453125, -0.07476806640625, -0.0038890838623046875, 0.02276611328125, 0.035675048828125, 0.006011962890625, 0.00408172607421875, -0.01708984375, 0.01258087158203125, 0.0234375, 0.002391815185546875, 0.00991058349609375, 0.00323486328125, -0.01551055908203125, 0.07037353515625, 0.05596923828125, -0.01442718505859375, 0.023345947265625, -0.0092010498046875, 0.060760498046875, 0.016143798828125, 0.03851318359375, 0.01493072509765625, 0.0023975372314453125, 0.042999267578125, 0.032196044921875, -0.07147216796875, -0.00975799560546875, 0.0163726806640625, 0.0118255615234375, 0.01372528076171875, 0.08868408203125, 0.0228271484375, -0.03192138671875, -0.0382080078125, -0.039093017578125, 0.018524169921875, 0.0272064208984375, -0.0020999908447265625, 0.024322509765625, 0.017822265625, -0.0164337158203125, 0.0265960693359375, 0.005950927734375, -0.0174713134765625, 0.02532958984375, -0.0176849365234375, 0.0192718505859375, 0.032470703125, 0.01247406005859375, 0.007335662841796875, -0.027008056640625, 0.01100921630859375, -0.003314971923828125, 0.0229644775390625, 0.024810791015625, 0.01348114013671875, 0.0265350341796875, 0.002239227294921875, 0.00467681884765625, 0.07342529296875, 0.0213775634765625, -0.017181396484375, -0.0194549560546875, -0.06903076171875, 0.007030487060546875, 0.0254364013671875, 0.017974853515625, 0.0325927734375, 0.0139923095703125, 0.05181884765625, 0.031005859375, 0.01073455810546875, 0.0770263671875, 0.006702423095703125, -0.0173187255859375, -0.03033447265625, 0.0265960693359375, 0.01678466796875, 0.0110321044921875, -0.027740478515625, 0.03997802734375, -0.0008130073547363281, -0.00534820556640625, -0.0135345458984375, 0.000797271728515625, -0.03424072265625, 0.00899505615234375, 0.02410888671875, 0.0022754669189453125, 0.02386474609375, -0.01136016845703125, -0.0087738037109375, -0.0039215087890625, -0.01611328125, 0.01549530029296875, 0.03472900390625, -0.0201873779296875, 0.026123046875, 0.03411865234375, -0.0450439453125, -0.00434112548828125, 0.053131103515625, 0.00865936279296875, 0.019012451171875, 0.025787353515625, 0.00475311279296875, -0.068359375, -0.050537109375, -0.037933349609375, 0.050445556640625, -0.00463104248046875, 0.08843994140625, -0.0284271240234375, 0.00827789306640625, 0.01055908203125, -0.00881195068359375, -0.0018186569213867188, 0.01412200927734375, -0.00858306884765625, -0.034759521484375, -0.0033817291259765625, 0.00540924072265625, -0.046875, 0.00801849365234375, 0.01291656494140625, -0.0294189453125, 0.02386474609375, -0.047149658203125, 0.0204010009765625, -0.003269195556640625, 0.0020751953125, -0.018341064453125, -0.07635498046875, -0.036041259765625, 0.0506591796875, -0.007354736328125, 0.0284881591796875, -0.029327392578125, 0.0249176025390625, -0.00406646728515625, 0.033782958984375, 0.01273345947265625, 0.0009918212890625, -0.00289154052734375, 0.022308349609375, -0.042266845703125, -0.040130615234375, 0.0224456787109375, -0.005901336669921875, -0.01544189453125, 0.01494598388671875, 0.0654296875, -0.005306243896484375, -0.010894775390625, 0.0111541748046875, 0.045745849609375, 0.0180511474609375, -0.0233917236328125, 0.0182647705078125, 0.0419921875, -0.030181884765625, 0.0261383056640625, -0.0304718017578125, -0.006702423095703125, -0.05120849609375, -0.00814056396484375, 0.0064239501953125, -0.020233154296875, -0.057098388671875, -0.0146942138671875, 0.020355224609375, 0.018646240234375, -0.00727081298828125, -0.055694580078125, 0.040740966796875, -0.0140838623046875, 0.06341552734375, -0.0323486328125, 0.01381683349609375, -0.001010894775390625, 0.0221405029296875, -0.0081024169921875, -0.033538818359375, -0.0177001953125, 0.04669189453125, 0.007610321044921875, -0.01873779296875, 0.0015478134155273438, -0.002193450927734375, -0.022705078125, 0.002216339111328125, -0.003139495849609375, 0.05126953125, 0.02435302734375, -0.0238494873046875, 0.01351165771484375, -0.0205535888671875, 0.0200958251953125, -0.06390380859375, -0.0316162109375, -0.055145263671875, -0.0013408660888671875, -0.062225341796875, 0.0228424072265625, 0.01364898681640625, -0.04010009765625, -0.058868408203125, 0.00846099853515625, -0.0304718017578125, -0.0243682861328125, -0.04608154296875, -0.003437042236328125, -0.004482269287109375, 0.0297088623046875, -0.01165771484375, -0.009613037109375, -0.0244140625, 0.041534423828125, 0.0162200927734375, 0.0240478515625, -0.018646240234375, 0.03436279296875, 0.00891876220703125, 0.0618896484375, 0.052520751953125, -0.00685882568359375, -0.003810882568359375, 0.00634765625, 0.0236358642578125, 0.033599853515625, -0.0270538330078125, 0.031494140625, -0.0057525634765625, -0.004978179931640625, -0.04248046875, -0.066162109375, -0.022491455078125, -0.00910186767578125, 0.09765625, 0.04962158203125, 0.0262451171875, -0.0501708984375, -0.034332275390625, -0.0187530517578125, -0.0010309219360351562, 0.01561737060546875, 0.0158233642578125, -0.05426025390625, 0.0168304443359375, 0.007656097412109375, -0.03619384765625, -0.00579071044921875, 0.045562744140625, -0.021575927734375, -0.00257110595703125, -0.0161285400390625, -0.0560302734375, -0.00379180908203125, 0.004108428955078125, 0.030731201171875, -0.020965576171875, 0.0418701171875, -0.0280609130859375, 0.008270263671875, 0.034088134765625, -0.0140838623046875, -0.046356201171875, 0.01374053955078125, -0.0302886962890625, 0.01702880859375, -0.0259246826171875, 0.035675048828125, -0.03814697265625, 0.027069091796875, 0.01477813720703125, 0.01410675048828125, -0.0106964111328125, 0.015167236328125, -0.036712646484375, 0.03131103515625, -0.0228424072265625, 0.0341796875, -0.0198516845703125, -0.0235748291015625, -0.023468017578125, 0.02398681640625, -0.0271148681640625, 0.0021305084228515625, 0.0017642974853515625, -0.0158843994140625, 0.00868988037109375, 0.0303192138671875, 0.0093841552734375, -0.0027523040771484375, 0.01119232177734375, 0.044677734375, -0.0033473968505859375, -0.0001850128173828125 ]
088e45953a70f15b85455fb18707f35f9c6969d9
Wordpress Stackexchange Q: WordPress Logout Only If User Click Logout or If User Delete Browser History This is the main requirements of my project. After a user login, logout should be done only if user click logout button or if user delete browser history. When browser closing, then machine restarting, changing IP address should NOT logout the User. Is this possible with WordPress? Is there any filter, action hook? A: You can use the auth_cookie_expiration filter to change the expiration time of the cookie WordPress sets to remember you. The user won't be logged out unless they change browser or clear their cookies (normally part of clearing history). The problem is that you can't set a cookie to never expire, so you have to set a date in the far future. The furthest you can go is 19th January 2038, because of the Year 2038 problem. The value of the auth_cookie_expiration filter is added to time() so if you want to set the longest possible time for the cookie, you need to get the maximum value (2147483647 according to this) and subtract time(): function wpse_287104_cookie_expiration( $length ) { return time() - 2147483647; } add_filter( 'auth_cookie_expiration', 'wpse_287104_cookie_expiration' );
Q: WordPress Logout Only If User Click Logout or If User Delete Browser History This is the main requirements of my project. After a user login, logout should be done only if user click logout button or if user delete browser history. When browser closing, then machine restarting, changing IP address should NOT logout the User. Is this possible with WordPress? Is there any filter, action hook? A: You can use the auth_cookie_expiration filter to change the expiration time of the cookie WordPress sets to remember you. The user won't be logged out unless they change browser or clear their cookies (normally part of clearing history). The problem is that you can't set a cookie to never expire, so you have to set a date in the far future. The furthest you can go is 19th January 2038, because of the Year 2038 problem. The value of the auth_cookie_expiration filter is added to time() so if you want to set the longest possible time for the cookie, you need to get the maximum value (2147483647 according to this) and subtract time(): function wpse_287104_cookie_expiration( $length ) { return time() - 2147483647; } add_filter( 'auth_cookie_expiration', 'wpse_287104_cookie_expiration' ); A: I used this code in wordpress functions.php, to auto logout customer/user after payment in woocommerce or close the browser function logged_in( $expirein ) { return 6; // 6 in seconds } add_filter( 'auth_cookie_expiration', 'logged_in' ); function wp_logout2() { wp_destroy_current_session(); wp_clear_auth_cookie(); /** * Fires after a user is logged-out. * * @since 1.5.0 */ do_action( 'wp_logout2' ); } function wpse108399_change_cookie_logout( $expiration, $user_id, $remember ){ if( $remember && user_can( $user_id, 'administrator' ) ){ $expiration = 604800;// yes, I know this is 1 minute } if( $remember && user_can( $user_id, 'editor' ) ){ $expiration = 604800;// yes, I know this is 1 minute } } return $expiration; } add_filter( 'auth_cookie_expiration','wpse108399_change_cookie_logout', 10, 3 ); /** * Bypass logout confirmation. */ function iconic_bypass_logout_confirmation() { global $wp; if ( isset( $wp->query_vars['customer-logout'] ) ) { wp_redirect( str_replace( '&amp;', '&', wp_logout_url( wc_get_page_permalink( 'myaccount' ) ) ) ); exit; } } add_action( 'template_redirect', 'iconic_bypass_logout_confirmation' ); A part of this code it's for increase expiration time to administrators of wordpress or other kinds of user function wpse108399_change_cookie_logout( $expiration, $user_id, $remember ){ if( $remember && user_can( $user_id, 'administrator' ) ){ $expiration = 604800;// yes, I know this is 1 minute } if( $remember && user_can( $user_id, 'editor' ) ){ $expiration = 604800;// yes, I know this is 1 minute } } return $expiration; } add_filter( 'auth_cookie_expiration','wpse108399_change_cookie_logout', 10, 3 ); A: You can try setting cookies when a user logs in using wp_set_auth_cookie. Something like : add_action( 'wp_login', function($login, $user){ wp_set_auth_cookie($user->ID, TRUE); }, 10, 2 ); Note: Code is not tested or tried. Please check for errors.
wordpress
{ "language": "en", "length": 451, "provenance": "stackexchange_00019.jsonl.gz:481887", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/287104" }
[ 0.060302734375, 0.032501220703125, 0.008148193359375, 0.004833221435546875, 0.032623291015625, -0.04168701171875, 0.037841796875, -0.06207275390625, -0.00608062744140625, -0.00843048095703125, -0.0287933349609375, -0.00122833251953125, -0.03076171875, -0.033905029296875, 0.0155792236328125, -0.04351806640625, 0.0032444000244140625, 0.0016508102416992188, 0.0003979206085205078, -0.01464080810546875, -0.01236724853515625, -0.0228424072265625, -0.009124755859375, -0.006443023681640625, -0.00396728515625, -0.02197265625, 0.126708984375, 0.0006470680236816406, 0.01178741455078125, -0.0008993148803710938, 0.0171966552734375, -0.042999267578125, -0.005901336669921875, 0.046875, -0.031951904296875, 0.0066680908203125, -0.043548583984375, 0.046630859375, 0.01447296142578125, 0.002323150634765625, 0.0012798309326171875, -0.0055389404296875, 0.0142059326171875, -0.01496124267578125, -0.017974853515625, 0.01369476318359375, -0.00872039794921875, -0.01224517822265625, 0.01441192626953125, 0.057098388671875, 0.022308349609375, -0.020904541015625, 0.020782470703125, -0.01163482666015625, -0.009521484375, 0.005268096923828125, 0.0027370452880859375, -0.00007402896881103516, 0.030242919921875, -0.0308990478515625, -0.0211334228515625, -0.016510009765625, 0.03009033203125, -0.00018525123596191406, 0.006927490234375, -0.00936126708984375, -0.01302337646484375, 0.0250091552734375, -0.056427001953125, -0.0009975433349609375, 0.050201416015625, -0.03179931640625, -0.0330810546875, 0.0170745849609375, -0.03509521484375, 0.0131988525390625, 0.0212860107421875, -0.00753021240234375, 0.008880615234375, 0.0303802490234375, -0.0082550048828125, -0.00759124755859375, -0.0576171875, -0.0208892822265625, 0.0203094482421875, 0.007720947265625, -0.0113525390625, -0.01047515869140625, -0.01025390625, -0.0250244140625, -0.022979736328125, -0.014007568359375, -0.0150909423828125, -0.0055999755859375, -0.0260162353515625, -0.021881103515625, 0.0012950897216796875, 0.0222320556640625, 0.0138092041015625, -0.0006995201110839844, -0.01190948486328125, -0.0097808837890625, -0.0311126708984375, -0.01513671875, -0.0192413330078125, 0.07073974609375, 0.06024169921875, 0.03668212890625, -0.0197296142578125, -0.02996826171875, -0.005855560302734375, -0.03387451171875, -0.003742218017578125, -0.046722412109375, 0.014495849609375, 0.0127410888671875, -0.026031494140625, 0.031219482421875, 0.0089874267578125, 0.0025920867919921875, -0.0428466796875, -0.063232421875, -0.01132965087890625, 0.0025043487548828125, 0.03765869140625, -0.0125732421875, -0.0294189453125, 0.0615234375, 0.0001322031021118164, 0.04559326171875, -0.04046630859375, 0.01397705078125, 0.0255889892578125, -0.018585205078125, -0.0191802978515625, -0.033935546875, 0.035369873046875, -0.0254364013671875, -0.0207061767578125, 0.046417236328125, -0.006725311279296875, -0.06231689453125, -0.018798828125, 0.004398345947265625, 0.033447265625, 0.0231170654296875, 0.026153564453125, 0.007587432861328125, 0.00421142578125, -0.03912353515625, 0.005401611328125, 0.0060272216796875, 0.03875732421875, -0.0146484375, -0.044097900390625, -0.0308837890625, -0.011016845703125, -0.0269012451171875, -0.005977630615234375, -0.045318603515625, -0.007266998291015625, -0.006984710693359375, 0.009857177734375, -0.0283966064453125, -0.0416259765625, 0.0166473388671875, -0.037261962890625, -0.0013904571533203125, 0.03619384765625, 0.01371002197265625, 0.0164337158203125, -0.03961181640625, 0.0162506103515625, 0.0214691162109375, 0.0007519721984863281, 0.042816162109375, -0.025146484375, 0.0218505859375, 0.022125244140625, -0.01432037353515625, -0.015625, -0.04888916015625, 0.042236328125, -0.007556915283203125, -0.00727081298828125, -0.01947021484375, -0.0038280487060546875, 0.0079193115234375, -0.002315521240234375, 0.0253753662109375, -0.0081787109375, 0.0208892822265625, 0.0022792816162109375, 0.053131103515625, -0.007068634033203125, -0.07965087890625, 0.03515625, -0.001804351806640625, -0.00862884521484375, -0.022613525390625, 0.06353759765625, 0.0198211669921875, -0.0177764892578125, -0.036895751953125, -0.1102294921875, 0.0156707763671875, -0.036041259765625, 0.032073974609375, -0.0113067626953125, 0.019927978515625, 0.031768798828125, 0.016754150390625, -0.020416259765625, -0.0283660888671875, -0.03387451171875, -0.010162353515625, -0.0284881591796875, 0.061614990234375, -0.009002685546875, 0.044647216796875, -0.00429534912109375, -0.06268310546875, 0.0082855224609375, -0.038116455078125, 0.045806884765625, -0.0189208984375, -0.006862640380859375, -0.016937255859375, 0.0255279541015625, -0.01393890380859375, -0.00933837890625, 0.044189453125, 0.016815185546875, 0.017181396484375, -0.036376953125, -0.01013946533203125, -0.031524658203125, -0.06268310546875, -0.003482818603515625, 0.057586669921875, 0.036468505859375, 0.0005893707275390625, -0.004978179931640625, 0.0127410888671875, 0.0015802383422851562, -0.06597900390625, -0.0007419586181640625, 0.0068511962890625, -0.002780914306640625, 0.03289794921875, 0.004405975341796875, -0.000518798828125, 0.010040283203125, -0.035552978515625, -0.0088653564453125, 0.0174102783203125, -0.01947021484375, -0.003192901611328125, 0.01285552978515625, -0.018463134765625, 0.001739501953125, -0.06427001953125, -0.0225830078125, -0.032867431640625, 0.00390625, -0.0447998046875, -0.0217437744140625, -0.0330810546875, -0.0162353515625, -0.01194000244140625, 0.04547119140625, -0.0526123046875, -0.00252532958984375, 0.0343017578125, 0.04144287109375, -0.02520751953125, -0.018768310546875, -0.0046539306640625, 0.0110015869140625, 0.00628662109375, -0.00655364990234375, 0.030670166015625, 0.0161590576171875, -0.0158843994140625, -0.01056671142578125, -0.004375457763671875, 0.0097503662109375, -0.022552490234375, 0.043426513671875, -0.0007004737854003906, 0.04425048828125, -0.012054443359375, -0.00925445556640625, 0.015411376953125, 0.031524658203125, -0.04656982421875, -0.0256195068359375, -0.037628173828125, 0.049224853515625, -0.054595947265625, -0.002521514892578125, 0.060699462890625, -0.01003265380859375, 0.01161956787109375, -0.0178070068359375, 0.03411865234375, -0.01061248779296875, -0.0229949951171875, -0.038543701171875, -0.023101806640625, -0.0185699462890625, 0.01274871826171875, 0.027099609375, 0.03369140625, -0.0026149749755859375, -0.041595458984375, -0.0121612548828125, 0.01357269287109375, -0.0614013671875, -0.0341796875, -0.024322509765625, -0.047027587890625, 0.003932952880859375, -0.01447296142578125, -0.01372528076171875, -0.0002574920654296875, 0.0016584396362304688, 0.0125579833984375, -0.014068603515625, -0.017669677734375, 0.01276397705078125, -0.021453857421875, -0.01030731201171875, -0.010009765625, 0.006671905517578125, -0.0066375732421875, -0.0251922607421875, 0.07940673828125, -0.01201629638671875, -0.047943115234375, -0.0621337890625, 0.0350341796875, -0.0035343170166015625, -0.050689697265625, -0.0300445556640625, 0.00940704345703125, 0.0213470458984375, 0.004398345947265625, -0.01390838623046875, 0.008819580078125, -0.00048613548278808594, -0.00803375244140625, -0.00749969482421875, -0.056915283203125, 0.019012451171875, -0.0265045166015625, -0.0279541015625, -0.01110076904296875, 0.01020050048828125, -0.04144287109375, 0.007080078125, 0.0036602020263671875, -0.0143280029296875, 0.0283203125, 0.01030731201171875, -0.0234222412109375, 0.0062103271484375, -0.00807952880859375, -0.0007176399230957031, 0.0208740234375, 0.00397491455078125, -0.020233154296875, 0.010284423828125, -0.0045166015625, -0.01505279541015625, -0.0188140869140625, 0.07598876953125, -0.002285003662109375, -0.01126861572265625, 0.02935791015625, -0.0015316009521484375, -0.022369384765625, -0.033355712890625, -0.09185791015625, -0.07611083984375, 0.045196533203125, -0.018096923828125, 0.0238494873046875, -0.038909912109375, -0.0360107421875, 0.01611328125, 0.12646484375, -0.038604736328125, -0.0251922607421875, 0.0128173828125, 0.004150390625, 0.0272674560546875, 0.0258026123046875, -0.033416748046875, -0.0361328125, -0.09771728515625, 0.01812744140625, 0.007282257080078125, -0.0215606689453125, -0.00677490234375, -0.0113677978515625, -0.01445770263671875, -0.044586181640625, 0.013946533203125, 0.01113128662109375, 0.0313720703125, -0.02392578125, -0.0150909423828125, -0.003204345703125, 0.0209808349609375, -0.04425048828125, 0.004367828369140625, 0.0090179443359375, -0.024169921875, -0.01108551025390625, 0.04058837890625, -0.050201416015625, 0.00975799560546875, 0.00405120849609375, -0.0022830963134765625, 0.0007452964782714844, 0.00833892822265625, 0.006038665771484375, 0.0187225341796875, 0.0029277801513671875, -0.00220489501953125, -0.022308349609375, 0.005168914794921875, -0.03759765625, -0.040008544921875, 0.00836181640625, -0.027435302734375, 0.0699462890625, -0.01473236083984375, -0.0106658935546875, -0.0300750732421875, -0.03179931640625, -0.018035888671875, 0.041473388671875, 0.020965576171875, -0.007793426513671875, -0.0654296875, -0.0628662109375, 0.05303955078125, 0.0174713134765625, -0.0018835067749023438, -0.010009765625, 0.0615234375, 0.0030841827392578125, -0.0300750732421875, 0.02069091796875, -0.00868988037109375, 0.0008673667907714844, -0.043609619140625, 0.039459228515625, -0.0189208984375, -0.00870513916015625, 0.07672119140625, -0.0572509765625, 0.0068511962890625, -0.06024169921875, 0.091552734375, -0.0237274169921875, -0.01031494140625, 0.0237274169921875, -0.052154541015625, 0.02105712890625, 0.033294677734375, 0.0200653076171875, -0.0279541015625, 0.041259765625, 0.032501220703125, -0.01335906982421875, -0.019744873046875, -0.0198516845703125, -0.04449462890625, 0.006191253662109375, -0.033905029296875, 0.040863037109375, 0.0221099853515625, -0.006038665771484375, 0.032318115234375, 0.04083251953125, -0.01171112060546875, -0.057373046875, -0.040435791015625, -0.041748046875, 0.0185699462890625, -0.0518798828125, -0.0152587890625, -0.0186309814453125, -0.026092529296875, 0.0806884765625, 0.038116455078125, -0.0625, 0.037994384765625, -0.01702880859375, 0.01474761962890625, 0.016876220703125, -0.0352783203125, 0.00881195068359375, -0.0034275054931640625, -0.01406097412109375, -0.01446533203125, -0.038818359375, -0.00667572021484375, -0.03851318359375, 0.0216064453125, -0.030914306640625, 0.011260986328125, 0.0087127685546875, 0.04888916015625, -0.0008425712585449219, 0.03265380859375, -0.00408172607421875, 0.048126220703125, 0.0259857177734375, 0.034576416015625, 0.020751953125, -0.0029659271240234375, -0.033538818359375, 0.05181884765625, -0.0297698974609375, -0.0221099853515625, -0.026611328125, 0.0384521484375, 0.0218353271484375, -0.0169525146484375, 0.0164947509765625, 0.0009031295776367188, 0.00997161865234375, 0.000010609626770019531, 0.0140380859375, -0.0028972625732421875, -0.041534423828125, 0.01275634765625, 0.042724609375, 0.002315521240234375, -0.038787841796875, -0.004474639892578125, -0.046295166015625, -0.00811004638671875, 0.00013518333435058594, 0.052886962890625, -0.00885772705078125, 0.016143798828125, -0.019439697265625, -0.0100555419921875, -0.029510498046875, 0.0003612041473388672, -0.00885772705078125, 0.034210205078125, -0.0174560546875, -0.0285491943359375, 0.0006260871887207031, -0.0406494140625, 0.022064208984375, -0.006534576416015625, 0.007137298583984375, 0.0460205078125, 0.025146484375, 0.0322265625, 0.0135040283203125, -0.0506591796875, 0.0162506103515625, -0.042510986328125, -0.00029754638671875, -0.0275726318359375, -0.04986572265625, -0.031219482421875, -0.01557159423828125, 0.027252197265625, 0.042694091796875, 0.0087890625, 0.00933837890625, -0.050201416015625, 0.01218414306640625, 0.0266876220703125, 0.0897216796875, -0.04095458984375, 0.06488037109375, 0.006420135498046875, 0.032470703125, 0.0019512176513671875, 0.0210723876953125, -0.0140380859375, 0.006343841552734375, 0.041656494140625, 0.03179931640625, -0.042144775390625, -0.05609130859375, -0.0271453857421875, -0.02056884765625, 0.1051025390625, -0.037109375, -0.01232147216796875, 0.0012178421020507812, -0.00957489013671875, -0.0161590576171875, 0.0086669921875, 0.053985595703125, 0.0261688232421875, -0.0192413330078125, 0.006221771240234375, 0.06414794921875, -0.00940704345703125, 0.007030487060546875, 0.0012969970703125, -0.036468505859375, 0.03289794921875, 0.01210784912109375, 0.0005459785461425781, -0.01172637939453125, 0.02716064453125, 0.00882720947265625, 0.0299530029296875, 0.00012314319610595703, 0.02410888671875, 0.0228424072265625, -0.0124969482421875, -0.0300750732421875, -0.03204345703125, -0.01251220703125, -0.024322509765625, -0.02459716796875, -0.020416259765625, -0.0254058837890625, 0.01306915283203125, 0.07208251953125, 0.08203125, -0.0911865234375, 0.004791259765625, 0.0267181396484375, -0.0074462890625, 0.016632080078125, 0.0032215118408203125, 0.023712158203125, 0.03216552734375, 0.0170440673828125, -0.036590576171875, -0.0160980224609375, 0.0247344970703125, -0.0191192626953125, -0.00965118408203125, -0.003997802734375, 0.020904541015625, 0.0002727508544921875, -0.09503173828125, 0.0107421875, 0.044677734375, -0.0286407470703125, -0.0254058837890625, -0.0186004638671875, 0.049407958984375, -0.039154052734375, -0.0885009765625, 0.010345458984375, -0.01055908203125, -0.0190887451171875, 0.024658203125, -0.0112762451171875, 0.03839111328125, 0.03826904296875, -0.0013322830200195312, 0.001537322998046875, -0.004344940185546875, 0.018524169921875, 0.012847900390625, -0.00949859619140625, 0.0302734375, 0.004764556884765625, -0.040069580078125, 0.01995849609375, -0.02130126953125, -0.0279388427734375, -0.015625, -0.03277587890625, 0.0657958984375, -0.038238525390625, 0.006683349609375, 0.038330078125, 0.0294036865234375, -0.01490020751953125, 0.007701873779296875, -0.01230621337890625, -0.032958984375, -0.0406494140625, -0.0023479461669921875, -0.056396484375, 0.034210205078125, 0.00978851318359375, -0.0662841796875, 0.1075439453125, -0.01061248779296875, 0.04388427734375, -0.01152801513671875, 0.04248046875, -0.00699615478515625, 0.03277587890625, -0.0307464599609375, 0.054229736328125, 0.0086212158203125, 0.0264434814453125, -0.014801025390625, 0.0014705657958984375, 0.0055694580078125, 0.0014009475708007812, 0.038116455078125, 0.026336669921875, -0.044464111328125, -0.0269012451171875, -0.033416748046875, -0.0007739067077636719, -0.0218505859375, 0.05743408203125, -0.01253509521484375, 0.03857421875, 0.0276336669921875, -0.042083740234375, 0.0284423828125, -0.0203857421875, -0.032989501953125, 0.003513336181640625, 0.008148193359375, -0.00823211669921875, -0.0005311965942382812, 0.0244598388671875, -0.01544189453125, -0.008056640625, -0.01454925537109375, 0.0328369140625, -0.032958984375, 0.03411865234375, 0.00225830078125, -0.06597900390625, -0.00412750244140625, -0.04156494140625, 0.04150390625, -0.0254669189453125, 0.0130615234375, 0.0521240234375, 0.0268707275390625, -0.00472259521484375, -0.0154876708984375, 0.01398468017578125, -0.0002008676528930664, -0.03033447265625, 0.057098388671875, 0.045684814453125, 0.038330078125, 0.0081024169921875, 0.0202789306640625, -0.01003265380859375, 0.0601806640625, -0.040283203125, -0.041534423828125, -0.01210784912109375, 0.0068206787109375, 0.0533447265625, 0.02484130859375, 0.0804443359375, -0.01561737060546875, -0.00817108154296875, 0.01068115234375, 0.03009033203125, 0.03448486328125, 0.01806640625, 0.02923583984375, 0.0902099609375, -0.10736083984375, 0.0257568359375, 0.003749847412109375, -0.013580322265625, 0.002704620361328125, -0.00711822509765625, 0.005046844482421875, -0.0183258056640625, 0.038604736328125, 0.0111846923828125, 0.006671905517578125, 0.02783203125, 0.00959014892578125, -0.024658203125, 0.01438140869140625, -0.043670654296875, 0.020965576171875, 0.01776123046875, 0.003360748291015625, -0.01373291015625, 0.03497314453125, 0.0258331298828125, -0.0408935546875, -0.0167236328125, 0.03765869140625, -0.0260772705078125, 0.0178985595703125, -0.01085662841796875, 0.031585693359375, 0.03460693359375, -0.01018524169921875, -0.0278167724609375, 0.023345947265625, 0.0296630859375, -0.01018524169921875, 0.010955810546875, 0.006195068359375, -0.0310821533203125, 0.0120391845703125, 0.03228759765625, 0.03717041015625, 0.0408935546875, 0.00820159912109375, 0.00887298583984375, -0.007068634033203125, 0.004512786865234375, -0.022674560546875, 0.0162353515625, -0.01258087158203125, 0.040313720703125, 0.0116424560546875, -0.0003540515899658203, -0.00939178466796875, 0.0181732177734375, -0.01357269287109375, -0.0224456787109375, 0.0283355712890625, -0.01251220703125, -0.046051025390625, -0.026397705078125, -0.0266571044921875, 0.0262603759765625, 0.007732391357421875, 0.035247802734375, 0.006649017333984375, 0.01462554931640625, 0.008148193359375, 0.0010776519775390625, 0.01995849609375, -0.007904052734375, 0.0183868408203125, 0.00821685791015625, 0.0009388923645019531, -0.0248565673828125, -0.08013916015625, 0.0596923828125, 0.00045990943908691406, 0.0245513916015625, 0.06268310546875, -0.0105743408203125, -0.0105438232421875, -0.01078033447265625, -0.0288238525390625, -0.02667236328125, -0.0285491943359375, 0.0181732177734375, 0.01229095458984375, 0.005985260009765625, 0.0204620361328125, -0.01351165771484375, 0.056671142578125, -0.0282135009765625, 0.0138702392578125, 0.01177978515625, -0.04107666015625, -0.009246826171875, 0.01142120361328125, -0.0303802490234375, 0.02825927734375, -0.036407470703125, -0.028656005859375, -0.0287628173828125, 0.01318359375, -0.04620361328125, -0.0224151611328125, 0.0345458984375, 0.01763916015625, 0.01505279541015625, 0.04632568359375, -0.00403594970703125, 0.0125274658203125, -0.003326416015625, 0.01080322265625, -0.00455474853515625, -0.060089111328125, -0.054595947265625, -0.048675537109375, 0.0231475830078125, 0.025726318359375, -0.01556396484375, -0.0557861328125, -0.059112548828125, 0.034423828125, 0.0301971435546875, 0.0120849609375, -0.050445556640625, 0.05535888671875, -0.045318603515625, 0.0104827880859375, 0.0153350830078125, 0.0022182464599609375, 0.00017964839935302734, -0.018341064453125, -0.041778564453125, -0.0236663818359375, -0.022003173828125, 0.0389404296875, -0.00518798828125, -0.047149658203125, 0.005931854248046875, 0.033599853515625, -0.022369384765625, -0.0491943359375, -0.0450439453125, -0.007663726806640625, -0.0256805419921875, -0.0226287841796875, 0.04632568359375, -0.005565643310546875, -0.0041351318359375, -0.04345703125, -0.02313232421875, 0.0164337158203125, 0.0272369384765625, 0.017578125, -0.041229248046875, -0.026947021484375, -0.042510986328125, -0.04541015625, 0.0246124267578125, 0.02642822265625, -0.0286865234375, -0.0304107666015625, 0.026275634765625, -0.008697509765625, -0.0118865966796875, -0.005725860595703125, -0.01428985595703125, 0.0016021728515625, 0.0294342041015625, 0.0013608932495117188, 0.0254669189453125, 0.006725311279296875, 0.033660888671875, -0.00812530517578125, 0.041168212890625, 0.035369873046875, -0.0095672607421875, -0.0117645263671875, 0.000850677490234375, 0.03790283203125, 0.0579833984375, -0.00023663043975830078, 0.060943603515625, 0.0210723876953125, -0.03778076171875, -0.013427734375, 0.0003685951232910156, -0.001209259033203125, 0.023345947265625, 0.071533203125, 0.0411376953125, 0.01517486572265625, -0.055419921875, -0.0543212890625, -0.037384033203125, 0.0237579345703125, -0.0254364013671875, -0.0004584789276123047, -0.062042236328125, -0.0023899078369140625, -0.022003173828125, -0.0271148681640625, -0.0291900634765625, 0.0174713134765625, -0.038238525390625, 0.00435638427734375, 0.0176544189453125, 0.0022487640380859375, -0.0177154541015625, 0.0234375, 0.0347900390625, -0.046295166015625, -0.035064697265625, 0.005054473876953125, -0.0029277801513671875, -0.0159149169921875, -0.01517486572265625, 0.037933349609375, 0.0489501953125, -0.057525634765625, -0.01169586181640625, 0.0299835205078125, 0.0027313232421875, -0.0238800048828125, -0.0360107421875, -0.015838623046875, -0.009674072265625, 0.0174102783203125, -0.010894775390625, -0.010162353515625, -0.00738525390625, -0.0023708343505859375, -0.01390838623046875, 0.001888275146484375, 0.00888824462890625, -0.028228759765625, 0.06304931640625, 0.024810791015625, -0.03741455078125, 0.05810546875, -0.027587890625, -0.0005612373352050781, -0.03094482421875, 0.024383544921875, -0.07879638671875, 0.06561279296875, 0.015045166015625, 0.007602691650390625, 0.050018310546875 ]
4e55cd2889a1191ea70d47849aa2cc6d55be90ff
Wordpress Stackexchange Q: How to find out what "Blog pages show at most" is set to Under Settings > Reading, there is a field called Blog pages show at most __ posts. Since all of my queries are based off of the main query, I need to find out what's stored in that field. How would I do that, especially outside of the loop? A: You can get that value with get_option('posts_per_page');
Q: How to find out what "Blog pages show at most" is set to Under Settings > Reading, there is a field called Blog pages show at most __ posts. Since all of my queries are based off of the main query, I need to find out what's stored in that field. How would I do that, especially outside of the loop? A: You can get that value with get_option('posts_per_page');
wordpress
{ "language": "en", "length": 70, "provenance": "stackexchange_00019.jsonl.gz:481961", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/287339" }
[ 0.0073394775390625, -0.022247314453125, 0.031890869140625, 0.06573486328125, -0.0369873046875, -0.0134429931640625, 0.046844482421875, -0.0582275390625, 0.021087646484375, -0.034149169921875, -0.051055908203125, -0.0169677734375, -0.050445556640625, -0.03271484375, 0.01219940185546875, -0.05706787109375, 0.052459716796875, -0.0452880859375, 0.0484619140625, 0.00591278076171875, -0.0038166046142578125, 0.0263671875, 0.08404541015625, 0.0262908935546875, 0.0214385986328125, -0.0151824951171875, 0.048919677734375, -0.02752685546875, 0.01800537109375, -0.028778076171875, 0.01474761962890625, 0.012176513671875, 0.026641845703125, -0.00015103816986083984, -0.003879547119140625, -0.0159759521484375, 0.01187896728515625, 0.0010662078857421875, 0.01309967041015625, -0.0101776123046875, -0.0020618438720703125, 0.0129241943359375, -0.000025093555450439453, 0.00008565187454223633, -0.02166748046875, -0.032257080078125, 0.006244659423828125, -0.019439697265625, -0.0000023245811462402344, -0.0697021484375, 0.007778167724609375, 0.0458984375, 0.0236358642578125, 0.01126861572265625, -0.027740478515625, -0.002727508544921875, 0.0631103515625, -0.027313232421875, 0.044342041015625, -0.08935546875, -0.07025146484375, -0.0024738311767578125, 0.0535888671875, 0.01174163818359375, -0.0259857177734375, 0.01031494140625, -0.001552581787109375, 0.008880615234375, -0.035430908203125, -0.0311737060546875, 0.0229034423828125, -0.0271453857421875, -0.0206451416015625, -0.02349853515625, -0.03717041015625, 0.037445068359375, 0.00505828857421875, -0.0168914794921875, -0.003963470458984375, -0.006298065185546875, -0.023529052734375, -0.00911712646484375, -0.06744384765625, 0.00839996337890625, -0.006046295166015625, 0.025970458984375, -0.01209259033203125, -0.0127410888671875, -0.0132293701171875, -0.020050048828125, -0.00669097900390625, -0.0045928955078125, -0.0308074951171875, 0.0110015869140625, -0.01340484619140625, -0.0231475830078125, 0.005123138427734375, 0.037811279296875, -0.0126800537109375, -0.0206756591796875, -0.0325927734375, -0.0055694580078125, -0.06365966796875, -0.0208740234375, 0.021575927734375, 0.034576416015625, -0.005481719970703125, -0.0261383056640625, 0.040008544921875, 0.0249176025390625, 0.0015773773193359375, 0.0201263427734375, -0.0269775390625, 0.00862884521484375, -0.0247650146484375, 0.00023794174194335938, -0.06488037109375, 0.00943756103515625, -0.0255889892578125, 0.003124237060546875, 0.033111572265625, 0.054534912109375, -0.0187530517578125, -0.04473876953125, -0.0025177001953125, -0.0107879638671875, -0.0257110595703125, -0.028167724609375, 0.0037059783935546875, 0.085205078125, -0.0186309814453125, -0.0191497802734375, -0.0236968994140625, -0.006134033203125, -0.020263671875, -0.035980224609375, 0.00539398193359375, -0.03173828125, 0.01043701171875, 0.018798828125, -0.052642822265625, -0.0399169921875, 0.032257080078125, -0.0285186767578125, -0.005077362060546875, 0.0199432373046875, 0.01934814453125, 0.0265960693359375, -0.00968170166015625, -0.032928466796875, -0.0042572021484375, 0.03277587890625, 0.01123809814453125, 0.00995635986328125, -0.005523681640625, -0.021636962890625, -0.00847625732421875, -0.01995849609375, 0.005687713623046875, -0.031524658203125, 0.056854248046875, 0.00534820556640625, 0.003452301025390625, -0.0091400146484375, -0.045318603515625, -0.00913238525390625, -0.05712890625, -0.032073974609375, 0.011260986328125, -0.010772705078125, 0.0079803466796875, -0.0158538818359375, 0.0219879150390625, 0.004093170166015625, -0.009307861328125, 0.0282440185546875, -0.0012149810791015625, -0.003711700439453125, 0.00868988037109375, 0.039276123046875, -0.016571044921875, -0.024078369140625, 0.01203155517578125, -0.009002685546875, -0.0258331298828125, -0.0020046234130859375, 0.017791748046875, 0.01338958740234375, -0.00252532958984375, 0.017974853515625, 0.033721923828125, 0.0211639404296875, -0.051116943359375, -0.0165252685546875, 0.0228729248046875, 0.01023101806640625, -0.022003173828125, 0.01317596435546875, 0.006282806396484375, -0.0291595458984375, 0.0005583763122558594, 0.01163482666015625, -0.00823974609375, 0.05682373046875, -0.0312347412109375, 0.02984619140625, -0.024627685546875, 0.0167999267578125, 0.01611328125, 0.0175628662109375, 0.011932373046875, 0.007442474365234375, -0.0225982666015625, -0.0506591796875, -0.060516357421875, -0.006282806396484375, -0.00588226318359375, -0.033721923828125, -0.0095367431640625, -0.0162811279296875, -0.0078887939453125, -0.00829315185546875, -0.039642333984375, 0.0211181640625, 0.0745849609375, -0.02447509765625, -0.00988006591796875, -0.04833984375, 0.05316162109375, -0.0129241943359375, -0.042633056640625, 0.03570556640625, 0.01690673828125, 0.046722412109375, -0.0086212158203125, -0.0023212432861328125, 0.0041656494140625, -0.02703857421875, 0.0204925537109375, 0.0289306640625, 0.0305633544921875, 0.0185394287109375, -0.01666259765625, -0.024200439453125, 0.05596923828125, -0.039703369140625, 0.006931304931640625, -0.0032711029052734375, 0.044525146484375, 0.08416748046875, -0.005397796630859375, 0.006130218505859375, 0.00353240966796875, -0.0313720703125, 0.035675048828125, 0.028900146484375, -0.0029087066650390625, 0.0157928466796875, -0.0215301513671875, 0.0207061767578125, -0.01482391357421875, 0.0296173095703125, 0.01953125, -0.011077880859375, 0.05328369140625, 0.03759765625, 0.0478515625, 0.04937744140625, -0.020477294921875, 0.0246734619140625, -0.008880615234375, -0.0179290771484375, -0.000576019287109375, 0.005611419677734375, -0.0013418197631835938, -0.00893402099609375, -0.031585693359375, 0.0002551078796386719, 0.0037784576416015625, -0.01482391357421875, -0.0106201171875, 0.01082611083984375, -0.033294677734375, -0.01812744140625, 0.0185699462890625, -0.03765869140625, -0.0246429443359375, -0.00820159912109375, -0.023101806640625, -0.0000095367431640625, 0.0036640167236328125, 0.040924072265625, -0.01141357421875, 0.033782958984375, -0.0291595458984375, 0.005809783935546875, -0.00547027587890625, -0.1175537109375, 0.08612060546875, -0.07330322265625, 0.033294677734375, 0.085693359375, -0.004680633544921875, 0.02545166015625, -0.0023593902587890625, 0.0135498046875, 0.0166015625, -0.007099151611328125, -0.0173492431640625, 0.01007080078125, -0.07611083984375, -0.007503509521484375, 0.018890380859375, 0.0222625732421875, -0.010833740234375, -0.037689208984375, -0.031829833984375, 0.0172576904296875, -0.0908203125, -0.06170654296875, -0.0161285400390625, -0.08294677734375, -0.06622314453125, -0.0169525146484375, -0.05224609375, 0.03997802734375, 0.0008602142333984375, -0.0028476715087890625, -0.0396728515625, -0.03680419921875, -0.05389404296875, -0.06610107421875, -0.060150146484375, 0.005340576171875, -0.0135345458984375, 0.01398468017578125, -0.00958251953125, 0.09063720703125, -0.00864410400390625, -0.09716796875, -0.038055419921875, -0.010406494140625, -0.04168701171875, -0.0076751708984375, -0.006298065185546875, 0.01171112060546875, -0.0291595458984375, 0.0264434814453125, -0.02685546875, -0.004974365234375, -0.0068206787109375, -0.01111602783203125, -0.04248046875, -0.01476287841796875, -0.006862640380859375, 0.024871826171875, 0.039764404296875, -0.00894927978515625, 0.0006289482116699219, -0.03985595703125, -0.021087646484375, -0.0189056396484375, -0.06378173828125, 0.0082244873046875, 0.0325927734375, 0.005908966064453125, -0.00449371337890625, 0.0068206787109375, -0.0022296905517578125, -0.02294921875, 0.01253509521484375, -0.040771484375, 0.045684814453125, -0.0006456375122070312, 0.016632080078125, -0.01165771484375, 0.01044464111328125, -0.002414703369140625, -0.0029010772705078125, 0.00247955322265625, 0.0275421142578125, -0.0013322830200195312, 0.022979736328125, -0.0140380859375, -0.01763916015625, 0.02593994140625, 0.00731658935546875, 0.049591064453125, -0.0309600830078125, -0.0204620361328125, -0.03729248046875, 0.064208984375, -0.0240631103515625, -0.01549530029296875, -0.00833892822265625, 0.004131317138671875, -0.0259552001953125, -0.019134521484375, -0.03753662109375, -0.01441192626953125, -0.083984375, -0.0038299560546875, -0.0117340087890625, -0.0250091552734375, -0.0199432373046875, 0.016387939453125, -0.059234619140625, -0.04095458984375, 0.031219482421875, 0.034332275390625, -0.0103302001953125, 0.009368896484375, -0.00685882568359375, -0.01300811767578125, -0.030029296875, 0.01549530029296875, -0.040069580078125, -0.022918701171875, 0.035369873046875, 0.0218048095703125, -0.0017518997192382812, -0.054229736328125, -0.00702667236328125, 0.033294677734375, 0.027496337890625, 0.00008004903793334961, 0.0186614990234375, -0.0212860107421875, 0.0234527587890625, 0.00269317626953125, 0.0196990966796875, -0.0237884521484375, -0.003528594970703125, -0.02313232421875, -0.006793975830078125, 0.01189422607421875, -0.00530242919921875, 0.006793975830078125, -0.007686614990234375, -0.006885528564453125, -0.0298614501953125, -0.024688720703125, -0.004642486572265625, 0.035552978515625, -0.03192138671875, 0.0235595703125, -0.05023193359375, -0.033233642578125, 0.044769287109375, -0.00284576416015625, -0.02587890625, 0.0153045654296875, 0.0792236328125, 0.0156402587890625, -0.0151214599609375, -0.060943603515625, -0.0193023681640625, 0.026763916015625, 0.0182342529296875, 0.049041748046875, 0.028717041015625, -0.02313232421875, 0.050506591796875, 0.0174713134765625, -0.0164642333984375, -0.0201416015625, 0.06024169921875, 0.0091552734375, 0.01396942138671875, -0.0091094970703125, -0.04022216796875, 0.044952392578125, 0.019073486328125, -0.0309600830078125, -0.03204345703125, 0.0222320556640625, 0.07012939453125, -0.0682373046875, 0.08624267578125, -0.0203857421875, -0.0288543701171875, -0.0133514404296875, 0.0216217041015625, 0.060760498046875, 0.0333251953125, 0.0006623268127441406, 0.0526123046875, 0.0736083984375, 0.00397491455078125, 0.05560302734375, 0.0262908935546875, 0.0362548828125, 0.039154052734375, 0.0302276611328125, 0.000804901123046875, -0.01012420654296875, 0.0019512176513671875, 0.01345062255859375, -0.046630859375, -0.0889892578125, 0.0257720947265625, -0.0161590576171875, 0.0233917236328125, 0.07354736328125, 0.006103515625, 0.039337158203125, 0.0127410888671875, -0.0170440673828125, -0.029449462890625, -0.0081024169921875, -0.01215362548828125, -0.053009033203125, -0.0098876953125, -0.020263671875, 0.0088958740234375, -0.01062774658203125, 0.08880615234375, -0.08160400390625, 0.0582275390625, -0.005756378173828125, 0.01088714599609375, 0.005947113037109375, 0.02154541015625, 0.0199127197265625, 0.0171661376953125, -0.01434326171875, -0.006439208984375, 0.001430511474609375, -0.0229949951171875, -0.0238037109375, 0.0100250244140625, 0.01629638671875, -0.0275115966796875, -0.0002551078796386719, 0.0258026123046875, 0.018310546875, -0.02545166015625, 0.0310516357421875, 0.025238037109375, -0.035797119140625, -0.016326904296875, 0.0223388671875, 0.0311431884765625, 0.0177764892578125, 0.00036597251892089844, 0.0038089752197265625, 0.01216888427734375, 0.012908935546875, -0.007144927978515625, -0.03948974609375, 0.00839996337890625, 0.01702880859375, -0.06402587890625, -0.0160369873046875, 0.0155181884765625, -0.0301513671875, -0.048797607421875, 0.002346038818359375, 0.010986328125, 0.00701904296875, -0.0115509033203125, 0.046905517578125, -0.0193023681640625, -0.02764892578125, 0.002765655517578125, 0.003223419189453125, 0.0178070068359375, -0.007785797119140625, -0.0665283203125, 0.0042724609375, -0.050445556640625, -0.01360321044921875, -0.02105712890625, -0.0142822265625, -0.059112548828125, -0.0037822723388671875, 0.02020263671875, 0.0260009765625, 0.001728057861328125, -0.035125732421875, -0.01543426513671875, 0.0015201568603515625, 0.01416778564453125, 0.03070068359375, -0.0012617111206054688, 0.08111572265625, -0.037353515625, 0.059051513671875, 0.007335662841796875, 0.03857421875, -0.0574951171875, -0.01448822021484375, 0.030975341796875, -0.0026493072509765625, -0.033782958984375, -0.007152557373046875, -0.043609619140625, -0.047760009765625, 0.0198516845703125, -0.007415771484375, 0.00446319580078125, -0.0164337158203125, 0.0171356201171875, -0.00341033935546875, -0.0142822265625, -0.00963592529296875, -0.05828857421875, 0.06353759765625, 0.018524169921875, 0.005218505859375, 0.01239776611328125, -0.0238037109375, -0.015289306640625, 0.0361328125, -0.00244140625, -0.038116455078125, -0.04388427734375, 0.052825927734375, 0.05126953125, -0.0094757080078125, 0.0217437744140625, 0.0249176025390625, -0.0007185935974121094, 0.001529693603515625, -0.01549530029296875, -0.035308837890625, -0.0186767578125, 0.0088043212890625, -0.0011844635009765625, 0.01580810546875, 0.033538818359375, -0.0025730133056640625, -0.00348663330078125, 0.04730224609375, 0.0482177734375, -0.078125, 0.01309967041015625, 0.0250701904296875, 0.033843994140625, 0.0213623046875, 0.013427734375, -0.0223541259765625, -0.032257080078125, 0.03363037109375, -0.05645751953125, -0.0243072509765625, -0.01019287109375, -0.0163421630859375, -0.013519287109375, -0.007106781005859375, 0.0484619140625, 0.0256195068359375, -0.0023822784423828125, -0.0087738037109375, 0.01067352294921875, -0.0165863037109375, -0.0004127025604248047, 0.0092010498046875, -0.0016880035400390625, -0.0257568359375, -0.041595458984375, 0.004703521728515625, -0.0230255126953125, -0.0005602836608886719, -0.02886962890625, 0.0135040283203125, -0.0184326171875, 0.059326171875, -0.031494140625, 0.00963592529296875, 0.049774169921875, -0.06427001953125, -0.0272369384765625, 0.0189971923828125, 0.044036865234375, 0.0252227783203125, -0.0035686492919921875, 0.0305023193359375, -0.018035888671875, -0.0284271240234375, -0.03125, -0.027587890625, 0.10302734375, -0.009613037109375, -0.034698486328125, 0.0177459716796875, 0.0311279296875, -0.0208587646484375, -0.025360107421875, 0.0007624626159667969, -0.028900146484375, 0.04876708984375, -0.030303955078125, 0.03759765625, 0.00009512901306152344, -0.0202178955078125, -0.052581787109375, 0.0401611328125, 0.005992889404296875, 0.0117034912109375, 0.033416748046875, 0.00687408447265625, -0.026458740234375, -0.01438140869140625, -0.045928955078125, 0.067626953125, 0.0154876708984375, 0.05157470703125, -0.0289764404296875, -0.0008921623229980469, 0.01776123046875, 0.01641845703125, 0.0462646484375, 0.0052337646484375, -0.0128326416015625, -0.042633056640625, 0.0221710205078125, 0.051666259765625, 0.0005831718444824219, 0.0156707763671875, -0.01122283935546875, 0.03643798828125, 0.041290283203125, -0.08612060546875, 0.005458831787109375, -0.0031452178955078125, 0.00867462158203125, 0.0238189697265625, 0.00907135009765625, 0.0184326171875, 0.0297698974609375, 0.01166534423828125, -0.023529052734375, 0.00042247772216796875, 0.03472900390625, -0.08404541015625, 0.0247650146484375, 0.045379638671875, 0.09466552734375, -0.109619140625, -0.02301025390625, -0.02398681640625, 0.05755615234375, 0.01117706298828125, 0.00533294677734375, 0.0293731689453125, 0.01389312744140625, 0.0494384765625, -0.01312255859375, 0.0091094970703125, 0.020111083984375, -0.01087188720703125, 0.036895751953125, 0.01496124267578125, 0.0298614501953125, -0.028076171875, 0.00920867919921875, -0.00157928466796875, 0.0305328369140625, -0.0396728515625, -0.0221405029296875, 0.02508544921875, -0.005954742431640625, -0.0301666259765625, -0.014923095703125, -0.03662109375, 0.005096435546875, 0.04486083984375, -0.02215576171875, -0.038055419921875, -0.003421783447265625, 0.033782958984375, -0.01226043701171875, -0.0238189697265625, 0.00933837890625, -0.04998779296875, 0.00897979736328125, -0.023651123046875, 0.0084075927734375, 0.021820068359375, 0.00995635986328125, 0.0199127197265625, -0.016204833984375, 0.004520416259765625, -0.0279388427734375, 0.025146484375, -0.0259246826171875, 0.04779052734375, -0.049224853515625, -0.0191650390625, -0.03021240234375, 0.045654296875, 0.034088134765625, -0.042327880859375, -0.0078887939453125, 0.0084686279296875, 0.0016231536865234375, 0.01079559326171875, 0.07586669921875, 0.00638580322265625, 0.0036525726318359375, -0.06683349609375, 0.01959228515625, 0.01245880126953125, -0.004207611083984375, 0.0202178955078125, -0.033782958984375, 0.06103515625, -0.01361083984375, 0.00391387939453125, 0.006763458251953125, -0.00873565673828125, 0.04150390625, 0.0269927978515625, 0.020965576171875, 0.02691650390625, -0.09130859375, 0.01320648193359375, -0.0670166015625, -0.057342529296875, 0.036956787109375, 0.034515380859375, -0.037445068359375, 0.008636474609375, 0.0016422271728515625, 0.024139404296875, 0.021026611328125, -0.0233306884765625, -0.004245758056640625, 0.031524658203125, 0.036468505859375, 0.01441192626953125, -0.056884765625, -0.045684814453125, -0.01142120361328125, 0.0287628173828125, -0.0024204254150390625, 0.007476806640625, 0.0237274169921875, 0.0157623291015625, 0.0042877197265625, 0.0038509368896484375, 0.00205230712890625, -0.00222015380859375, 0.0240936279296875, 0.0262908935546875, 0.0093536376953125, -0.0247039794921875, -0.07470703125, 0.0306243896484375, 0.04364013671875, -0.006320953369140625, 0.040069580078125, -0.0186004638671875, 0.0128021240234375, -0.045196533203125, -0.0254058837890625, -0.040985107421875, -0.01381683349609375, -0.01580810546875, -0.01806640625, 0.0018568038940429688, -0.037261962890625, -0.01006317138671875, 0.025421142578125, 0.0289154052734375, -0.037261962890625, 0.0288238525390625, -0.0098114013671875, 0.04791259765625, 0.034576416015625, 0.01861572265625, 0.03582763671875, -0.00817108154296875, -0.028228759765625, 0.0147247314453125, 0.0126953125, -0.0343017578125, -0.006473541259765625, 0.0005545616149902344, -0.0082855224609375, -0.0167999267578125, 0.01995849609375, -0.028594970703125, 0.0003578662872314453, -0.0224761962890625, 0.010650634765625, 0.015228271484375, -0.012847900390625, -0.023406982421875, -0.01085662841796875, -0.0285797119140625, 0.010833740234375, -0.00524139404296875, -0.042022705078125, -0.045318603515625, -0.01378631591796875, -0.0025806427001953125, -0.0281982421875, 0.01275634765625, -0.007427215576171875, -0.03070068359375, 0.004673004150390625, -0.060638427734375, -0.0172271728515625, 0.0212554931640625, 0.051513671875, -0.003814697265625, 0.041107177734375, -0.006359100341796875, -0.051666259765625, 0.019683837890625, 0.03204345703125, 0.032196044921875, -0.03887939453125, 0.00783538818359375, 0.0222015380859375, 0.039093017578125, 0.07183837890625, 0.0180206298828125, -0.0179443359375, 0.0016841888427734375, 0.0267486572265625, -0.00464630126953125, -0.057952880859375, 0.002384185791015625, -0.02960205078125, 0.009490966796875, 0.007686614990234375, -0.0229644775390625, 0.003688812255859375, -0.0217437744140625, -0.054473876953125, 0.08013916015625, -0.01195526123046875, -0.0255889892578125, -0.043487548828125, 0.00612640380859375, -0.00496673583984375, 0.0109710693359375, -0.001708984375, -0.004505157470703125, -0.019744873046875, 0.00472259521484375, 0.037017822265625, -0.0129547119140625, 0.05035400390625, 0.003204345703125, -0.038604736328125, 0.014892578125, 0.0004279613494873047, 0.016387939453125, 0.038482666015625, -0.01074981689453125, 0.0216522216796875, 0.050811767578125, -0.03564453125, -0.037933349609375, -0.03790283203125, -0.041900634765625, 0.02215576171875, 0.026947021484375, -0.048065185546875, -0.02862548828125, 0.0361328125, 0.04156494140625, 0.0285797119140625, -0.01070404052734375, 0.00951385498046875, -0.0180511474609375, -0.0295562744140625, -0.01128387451171875, 0.0083770751953125, -0.041717529296875, 0.009674072265625, -0.01409912109375, -0.007396697998046875, -0.01165008544921875, 0.02728271484375, -0.0367431640625, -0.01306915283203125, -0.015533447265625, -0.00940704345703125, -0.044830322265625, -0.007068634033203125, 0.01235198974609375, -0.0070037841796875, 0.0237274169921875, -0.02777099609375, 0.01373291015625, 0.0034046173095703125, 0.019287109375, 0.001194000244140625, 0.005214691162109375, -0.0141448974609375, 0.033935546875, 0.0210418701171875, -0.0092010498046875, -0.0293426513671875, 0.0127105712890625, 0.01165008544921875, 0.0158843994140625, -0.00372314453125, 0.01934814453125, 0.0026378631591796875, -0.0014619827270507812, -0.040740966796875, 0.0167083740234375, 0.0037212371826171875, 0.0499267578125, 0.018951416015625, 0.032989501953125, -0.008819580078125, -0.01068878173828125, 0.01629638671875, -0.04852294921875, -0.0028514862060546875, 0.006778717041015625, -0.00838470458984375, -0.056427001953125, 0.020111083984375, 0.005947113037109375, 0.020111083984375, 0.0287322998046875 ]
ee66fa951d173936637f0eb298a01332ed735e78
Wordpress Stackexchange Q: Hook in wp.media to add a new tab This is an issue coming up while creating a plugin. I want to add a tab to the wp.media.view.MediaFrame.Select modal or if a general approach helps: In the customizer I want to hook in any modal that comes up using wp.media just to add an alert() for example. This is almost it and I am already stuck in tracing what builds those modals and how to hook in. What I see is: * *wp.media().frame.on('open', ...) can not be used as the frame only exists after clicking a button. *Fallback may be to rewrite wp.media() but that doesn't sound like a sane solution. What I don't want is: * *"Use media_upload_tabs or media_upload_tab_slug" because such PHP is not respected in the customizer. *"Hook in every button and handle the click" *"Look for frames via window.Timeout every second" *Hacky solutions are welcome to find out what is possible but won't help as THE solution. Thanks in advance to all wp.media experts here! :)
Q: Hook in wp.media to add a new tab This is an issue coming up while creating a plugin. I want to add a tab to the wp.media.view.MediaFrame.Select modal or if a general approach helps: In the customizer I want to hook in any modal that comes up using wp.media just to add an alert() for example. This is almost it and I am already stuck in tracing what builds those modals and how to hook in. What I see is: * *wp.media().frame.on('open', ...) can not be used as the frame only exists after clicking a button. *Fallback may be to rewrite wp.media() but that doesn't sound like a sane solution. What I don't want is: * *"Use media_upload_tabs or media_upload_tab_slug" because such PHP is not respected in the customizer. *"Hook in every button and handle the click" *"Look for frames via window.Timeout every second" *Hacky solutions are welcome to find out what is possible but won't help as THE solution. Thanks in advance to all wp.media experts here! :)
wordpress
{ "language": "en", "length": 170, "provenance": "stackexchange_00019.jsonl.gz:482011", "question_score": "11", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/287500" }
[ 0.0452880859375, -0.014862060546875, -0.0070648193359375, -0.005096435546875, 0.014312744140625, -0.040771484375, 0.06427001953125, -0.01032257080078125, -0.04071044921875, 0.033538818359375, 0.007785797119140625, 0.0259246826171875, -0.0079193115234375, -0.0223846435546875, 0.0189361572265625, -0.01468658447265625, 0.03509521484375, -0.048553466796875, 0.0191497802734375, -0.017181396484375, 0.0258331298828125, -0.0107421875, 0.05078125, 0.043365478515625, 0.01436614990234375, 0.0177001953125, 0.0191802978515625, -0.0278778076171875, 0.017669677734375, 0.00826263427734375, 0.01384735107421875, -0.03875732421875, 0.026885986328125, 0.051055908203125, -0.06097412109375, 0.0203399658203125, 0.034942626953125, 0.0003879070281982422, 0.0051422119140625, 0.04266357421875, 0.041656494140625, -0.01059722900390625, 0.005168914794921875, 0.042724609375, 0.00106048583984375, -0.024993896484375, 0.00981903076171875, -0.056671142578125, 0.036712646484375, -0.005222320556640625, -0.00774383544921875, -0.0223541259765625, 0.0009546279907226562, -0.04644775390625, -0.018035888671875, -0.02178955078125, -0.0267181396484375, 0.021759033203125, 0.004505157470703125, 0.07275390625, 0.004245758056640625, 0.0321044921875, -0.031097412109375, -0.054595947265625, 0.00859832763671875, 0.006122589111328125, -0.04345703125, 0.004291534423828125, -0.007965087890625, 0.017730712890625, 0.017730712890625, -0.041046142578125, -0.01020050048828125, 0.01125335693359375, -0.003932952880859375, -0.03594970703125, 0.0183258056640625, -0.0297698974609375, 0.014068603515625, 0.0309295654296875, 0.020599365234375, -0.0145111083984375, 0.040069580078125, -0.0214080810546875, 0.034820556640625, 0.0121307373046875, -0.007617950439453125, -0.0235137939453125, -0.023773193359375, 0.00923919677734375, -0.019012451171875, -0.023681640625, 0.01432037353515625, 0.0011844635009765625, -0.0145721435546875, -0.00472259521484375, -0.01540374755859375, -0.023345947265625, 0.018218994140625, 0.02447509765625, 0.01538848876953125, -0.048919677734375, 0.03497314453125, -0.01751708984375, 0.0183258056640625, 0.051055908203125, 0.007747650146484375, -0.028228759765625, 0.01395416259765625, -0.007793426513671875, -0.00739288330078125, 0.00434112548828125, 0.022247314453125, 0.00997161865234375, -0.0251922607421875, -0.021392822265625, -0.0196990966796875, 0.01910400390625, -0.00794219970703125, 0.0021152496337890625, -0.017730712890625, -0.004474639892578125, -0.026519775390625, 0.0250396728515625, -0.006591796875, -0.01727294921875, -0.007694244384765625, 0.0244598388671875, -0.0187835693359375, -0.01074981689453125, 0.000606536865234375, 0.0240325927734375, 0.030548095703125, 0.038665771484375, 0.00434112548828125, -0.0062255859375, 0.0289459228515625, -0.0218048095703125, 0.0065765380859375, -0.004932403564453125, 0.0183563232421875, -0.00986480712890625, -0.01554107666015625, -0.0016107559204101562, 0.0281982421875, 0.0059661865234375, -0.00406646728515625, 0.01314544677734375, 0.04791259765625, -0.0014734268188476562, 0.01800537109375, -0.040496826171875, 0.022247314453125, 0.00977325439453125, 0.0302886962890625, -0.01224517822265625, 0.07373046875, -0.060455322265625, 0.004467010498046875, -0.04095458984375, 0.0303497314453125, -0.01153564453125, 0.0223236083984375, -0.04364013671875, -0.0311431884765625, 0.002338409423828125, -0.100830078125, -0.006847381591796875, 0.0298309326171875, 0.09478759765625, 0.003589630126953125, -0.0312042236328125, 0.027862548828125, 0.03448486328125, -0.02008056640625, 0.003299713134765625, -0.0091552734375, 0.039398193359375, 0.03717041015625, 0.007354736328125, 0.0207061767578125, -0.0085296630859375, 0.12200927734375, -0.018524169921875, -0.056304931640625, 0.06365966796875, 0.0014829635620117188, 0.07318115234375, 0.020355224609375, 0.00525665283203125, 0.0139923095703125, 0.01611328125, -0.00693511962890625, -0.032928466796875, -0.00800323486328125, -0.01322174072265625, -0.00930023193359375, -0.00492095947265625, -0.01288604736328125, 0.04632568359375, 0.017242431640625, 0.01523590087890625, 0.007061004638671875, -0.027435302734375, -0.0665283203125, 0.010467529296875, -0.026031494140625, 0.053009033203125, 0.0101776123046875, -0.0086822509765625, 0.005382537841796875, -0.017120361328125, -0.00809478759765625, -0.006153106689453125, -0.03863525390625, -0.01068115234375, -0.043853759765625, 0.03729248046875, -0.0020580291748046875, 0.04193115234375, -0.0030422210693359375, -0.0290679931640625, 0.0013551712036132812, -0.0232696533203125, 0.0080413818359375, 0.00469970703125, -0.0171966552734375, -0.008209228515625, -0.0060577392578125, 0.01027679443359375, -0.028167724609375, 0.0254669189453125, 0.01280975341796875, -0.00893402099609375, -0.041534423828125, -0.0169830322265625, -0.0214996337890625, -0.073974609375, 0.006938934326171875, 0.07305908203125, 0.0255584716796875, 0.0345458984375, 0.01433563232421875, 0.035919189453125, 0.0218353271484375, -0.01215362548828125, 0.0300140380859375, -0.0193023681640625, -0.00279998779296875, 0.0467529296875, -0.02215576171875, 0.02215576171875, 0.005680084228515625, -0.0261688232421875, 0.01053619384765625, 0.0200042724609375, 0.003082275390625, 0.0237274169921875, -0.024169921875, 0.017425537109375, -0.01297760009765625, 0.009429931640625, 0.008819580078125, -0.0124053955078125, -0.0005292892456054688, -0.019287109375, 0.0101318359375, 0.0107574462890625, 0.0017671585083007812, -0.022125244140625, 0.0165252685546875, -0.0096435546875, 0.00711822509765625, 0.011383056640625, 0.04876708984375, -0.031768798828125, -0.0262908935546875, -0.0142974853515625, 0.036865234375, 0.0009264945983886719, -0.013671875, 0.022613525390625, -0.0196685791015625, -0.018157958984375, 0.021636962890625, -0.0546875, -0.0160675048828125, -0.0318603515625, -0.000048995018005371094, -0.04302978515625, 0.0174102783203125, -0.01184844970703125, -0.0545654296875, 0.04205322265625, -0.00777435302734375, -0.05035400390625, -0.0207061767578125, -0.0438232421875, 0.0450439453125, -0.025909423828125, 0.060577392578125, 0.08099365234375, -0.01256561279296875, 0.0197296142578125, 0.00643157958984375, -0.06170654296875, -0.025787353515625, 0.0487060546875, 0.01568603515625, -0.044921875, -0.015838623046875, 0.037567138671875, 0.011749267578125, 0.0160675048828125, -0.0201263427734375, -0.0243072509765625, -0.031829833984375, -0.01149749755859375, -0.0640869140625, -0.051422119140625, 0.05450439453125, -0.098388671875, 0.009521484375, -0.0208892822265625, -0.064697265625, -0.03399658203125, 0.03326416015625, -0.0028820037841796875, -0.04302978515625, 0.00946807861328125, 0.0162200927734375, -0.0301971435546875, -0.01690673828125, 0.0083160400390625, 0.0021228790283203125, 0.0129241943359375, 0.01377105712890625, 0.00783538818359375, 0.00251007080078125, 0.0225830078125, 0.04925537109375, -0.048065185546875, -0.0032596588134765625, -0.005828857421875, 0.022003173828125, -0.0036640167236328125, 0.01263427734375, -0.000469207763671875, 0.01401519775390625, 0.0328369140625, -0.0206298828125, -0.006793975830078125, -0.015289306640625, -0.05560302734375, -0.0272216796875, 0.051116943359375, 0.031280517578125, -0.042633056640625, 0.018707275390625, -0.0552978515625, 0.05267333984375, 0.011138916015625, 0.0302276611328125, -0.0357666015625, -0.047027587890625, -0.0312042236328125, -0.0023250579833984375, -0.0037899017333984375, 0.02728271484375, 0.0198516845703125, 0.0158233642578125, -0.012115478515625, -0.007110595703125, -0.0012149810791015625, 0.00916290283203125, -0.01299285888671875, 0.005748748779296875, -0.0248870849609375, -0.0016565322875976562, -0.008880615234375, -0.00205230712890625, -0.01221466064453125, -0.000027477741241455078, -0.037384033203125, 0.0046844482421875, 0.0274810791015625, 0.0027027130126953125, 0.04278564453125, -0.044647216796875, -0.02056884765625, -0.041748046875, 0.049896240234375, -0.054962158203125, -0.00687408447265625, -0.032623291015625, 0.0096893310546875, 0.01250457763671875, -0.05487060546875, -0.01470184326171875, -0.029327392578125, -0.0190277099609375, 0.0193939208984375, 0.0239410400390625, -0.008575439453125, -0.05145263671875, 0.05633544921875, -0.049072265625, -0.0017681121826171875, 0.044189453125, -0.0171966552734375, 0.01059722900390625, 0.046600341796875, -0.00162506103515625, 0.021575927734375, -0.043548583984375, -0.013458251953125, -0.1148681640625, -0.0154571533203125, -0.0124053955078125, 0.06011962890625, 0.00817108154296875, -0.04180908203125, -0.038543701171875, 0.0287017822265625, 0.0357666015625, -0.01119232177734375, 0.036041259765625, -0.015716552734375, 0.0160675048828125, 0.0250244140625, 0.02728271484375, -0.01413726806640625, -0.0060577392578125, -0.045166015625, -0.0526123046875, 0.06390380859375, -0.0136871337890625, 0.07122802734375, -0.027130126953125, -0.00203704833984375, -0.02972412109375, -0.0000826120376586914, -0.0260772705078125, 0.005275726318359375, -0.0014190673828125, -0.018585205078125, 0.0011606216430664062, -0.04571533203125, 0.0039825439453125, 0.005321502685546875, -0.0279541015625, 0.0136260986328125, 0.0633544921875, 0.03802490234375, -0.02191162109375, -0.07452392578125, -0.001667022705078125, 0.015960693359375, 0.031158447265625, 0.0011034011840820312, -0.04644775390625, -0.03271484375, 0.0445556640625, -0.01020050048828125, 0.035614013671875, -0.03265380859375, 0.03582763671875, 0.005207061767578125, -0.007305145263671875, 0.025115966796875, 0.03826904296875, -0.032958984375, -0.017486572265625, -0.052734375, 0.03411865234375, -0.0226287841796875, -0.002910614013671875, -0.01367950439453125, 0.044097900390625, -0.00774383544921875, -0.033538818359375, -0.005558013916015625, 0.04901123046875, 0.0214996337890625, 0.024932861328125, -0.0008525848388671875, 0.0094757080078125, 0.0158233642578125, 0.01507568359375, -0.0005674362182617188, 0.027252197265625, -0.050140380859375, 0.034698486328125, 0.01403045654296875, -0.01256561279296875, -0.004108428955078125, 0.0146636962890625, -0.031341552734375, -0.023681640625, -0.065673828125, -0.050537109375, 0.01328277587890625, 0.0020904541015625, 0.04010009765625, 0.0038433074951171875, 0.016021728515625, 0.034271240234375, -0.018310546875, -0.002521514892578125, 0.03936767578125, -0.016448974609375, -0.032257080078125, 0.029876708984375, 0.0033550262451171875, -0.0018186569213867188, 0.0176544189453125, 0.0335693359375, 0.0086517333984375, 0.015106201171875, -0.004909515380859375, 0.0009241104125976562, 0.0160064697265625, 0.01904296875, 0.029998779296875, -0.01904296875, 0.00015270709991455078, -0.01273345947265625, 0.0209503173828125, -0.024627685546875, 0.034637451171875, -0.0084991455078125, 0.0241851806640625, -0.00380706787109375, -0.04876708984375, 0.032440185546875, -0.05743408203125, -0.0180511474609375, 0.023651123046875, -0.0264129638671875, -0.028472900390625, -0.035003662109375, 0.0016641616821289062, 0.0239715576171875, -0.00213623046875, 0.0074005126953125, 0.03228759765625, 0.0032367706298828125, 0.0160980224609375, 0.0186309814453125, -0.0219573974609375, 0.0081329345703125, 0.01959228515625, 0.0018835067749023438, -0.0020236968994140625, 0.01690673828125, -0.040740966796875, -0.03411865234375, -0.0299835205078125, -0.01303863525390625, 0.06561279296875, -0.046661376953125, 0.059417724609375, -0.02777099609375, -0.01329803466796875, -0.08831787109375, 0.030731201171875, 0.0077362060546875, 0.04620361328125, -0.00901031494140625, -0.004199981689453125, -0.0059967041015625, -0.0181732177734375, -0.057586669921875, -0.06109619140625, -0.0232696533203125, -0.0174560546875, 0.01493072509765625, 0.02777099609375, -0.0011615753173828125, -0.0167388916015625, 0.024383544921875, -0.0025234222412109375, -0.01165008544921875, 0.0240020751953125, -0.011627197265625, 0.0251312255859375, 0.0195159912109375, 0.040771484375, 0.0142822265625, -0.0086822509765625, -0.032928466796875, -0.0208587646484375, 0.004913330078125, -0.0184478759765625, -0.019561767578125, -0.01180267333984375, 0.0096588134765625, 0.01503753662109375, 0.0263519287109375, -0.016204833984375, 0.035308837890625, -0.0311431884765625, -0.0045013427734375, -0.01482391357421875, 0.006542205810546875, -0.0245513916015625, 0.0012378692626953125, 0.0291595458984375, -0.0242767333984375, 0.036224365234375, -0.01611328125, 0.009674072265625, 0.00868988037109375, -0.032745361328125, 0.027313232421875, 0.00844573974609375, -0.02655029296875, 0.0308685302734375, 0.055419921875, 0.00847625732421875, 0.0394287109375, 0.0030364990234375, 0.00797271728515625, 0.0197906494140625, 0.036529541015625, 0.009033203125, -0.0357666015625, 0.07366943359375, 0.0218048095703125, -0.0218658447265625, 0.05511474609375, -0.0355224609375, 0.0176544189453125, 0.00699615478515625, 0.0372314453125, -0.035125732421875, 0.0096282958984375, 0.0042266845703125, -0.0051116943359375, 0.03314208984375, -0.0095062255859375, 0.0167999267578125, 0.0015544891357421875, 0.044219970703125, -0.042877197265625, -0.0228424072265625, 0.01519012451171875, -0.048919677734375, -0.00005805492401123047, -0.0042572021484375, 0.0008420944213867188, -0.0091552734375, -0.041900634765625, -0.01076507568359375, 0.00940704345703125, -0.005954742431640625, 0.04229736328125, 0.019073486328125, -0.00864410400390625, -0.023040771484375, -0.01092529296875, 0.00970458984375, -0.0401611328125, -0.039031982421875, 0.015960693359375, -0.0008950233459472656, 0.041107177734375, 0.0328369140625, -0.00533294677734375, 0.022125244140625, 0.006015777587890625, -0.007259368896484375, -0.023193359375, 0.0188751220703125, 0.0286102294921875, 0.011322021484375, -0.0484619140625, 0.006134033203125, -0.055999755859375, 0.036407470703125, 0.019805908203125, 0.0198974609375, 0.0289459228515625, -0.021942138671875, -0.0281524658203125, 0.04534912109375, -0.052154541015625, -0.015960693359375, 0.00004661083221435547, 0.00848388671875, -0.0616455078125, -0.026153564453125, 0.0077667236328125, -0.0198974609375, 0.0019359588623046875, 0.0135345458984375, -0.047454833984375, 0.1251220703125, 0.01142120361328125, 0.02813720703125, 0.0238494873046875, 0.037200927734375, -0.037628173828125, 0.0211639404296875, -0.05029296875, 0.04315185546875, 0.021148681640625, 0.049774169921875, -0.0712890625, -0.024200439453125, -0.002468109130859375, 0.046142578125, 0.015655517578125, -0.0192413330078125, 0.0162506103515625, -0.02044677734375, 0.032257080078125, 0.0234527587890625, 0.0022258758544921875, 0.0018634796142578125, -0.00792694091796875, -0.0169525146484375, 0.03509521484375, 0.00823211669921875, 0.0440673828125, -0.0289459228515625, -0.034332275390625, 0.0031414031982421875, -0.000904083251953125, -0.0002046823501586914, -0.0257720947265625, 0.0302886962890625, -0.0169677734375, -0.0196075439453125, 0.00940704345703125, -0.0233154296875, -0.00769805908203125, 0.047576904296875, -0.012908935546875, 0.03387451171875, 0.0228271484375, -0.032562255859375, 0.03375244140625, -0.0214996337890625, -0.0162200927734375, -0.04248046875, 0.00620269775390625, -0.03179931640625, -0.047454833984375, -0.04296875, 0.02764892578125, -0.029571533203125, 0.026458740234375, 0.0094757080078125, 0.004459381103515625, -0.060028076171875, -0.01364898681640625, 0.07403564453125, 0.0557861328125, -0.031585693359375, -0.05828857421875, -0.0086517333984375, 0.00786590576171875, 0.03106689453125, 0.02667236328125, 0.056396484375, 0.0005011558532714844, 0.0275115966796875, -0.0141754150390625, -0.0022296905517578125, 0.00717926025390625, 0.048126220703125, 0.01293182373046875, 0.04254150390625, -0.060760498046875, -0.027191162109375, -0.0246734619140625, -0.0034580230712890625, -0.02215576171875, 0.0458984375, 0.025299072265625, 0.051910400390625, -0.024261474609375, -0.02374267578125, -0.004878997802734375, 0.036712646484375, 0.031646728515625, -0.00017309188842773438, -0.0025386810302734375, -0.0166778564453125, 0.055816650390625, -0.01067352294921875, 0.047943115234375, 0.04364013671875, 0.03875732421875, 0.03570556640625, 0.0136871337890625, 0.0163116455078125, 0.06365966796875, -0.0063323974609375, -0.0087127685546875, -0.03265380859375, 0.03094482421875, 0.026275634765625, -0.0009183883666992188, 0.03253173828125, 0.0015888214111328125, 0.04547119140625, -0.01482391357421875, 0.04400634765625, -0.00927734375, -0.028533935546875, 0.0208740234375, 0.01125335693359375, 0.09722900390625, 0.0284576416015625, -0.047088623046875, -0.001312255859375, -0.025848388671875, -0.056915283203125, 0.00579833984375, 0.039581298828125, -0.005496978759765625, 0.0075836181640625, -0.0210418701171875, 0.00156402587890625, 0.0023059844970703125, -0.003936767578125, -0.0007929801940917969, -0.00952911376953125, 0.0135650634765625, 0.0013980865478515625, -0.07025146484375, -0.0267333984375, -0.006610870361328125, 0.018646240234375, 0.0019702911376953125, 0.0469970703125, 0.007648468017578125, 0.00945281982421875, 0.01212310791015625, 0.002338409423828125, 0.0007772445678710938, 0.007701873779296875, 0.01108551025390625, 0.02008056640625, -0.007778167724609375, -0.029052734375, 0.025634765625, 0.0031604766845703125, 0.017059326171875, -0.0170440673828125, -0.02069091796875, -0.04290771484375, 0.033416748046875, 0.03460693359375, 0.0260772705078125, -0.018707275390625, -0.046112060546875, -0.0299072265625, 0.0207061767578125, 0.002597808837890625, 0.0266265869140625, -0.0246429443359375, 0.0298004150390625, -0.050994873046875, 0.0164337158203125, -0.034088134765625, 0.0263214111328125, -0.08709716796875, 0.00930023193359375, -0.04498291015625, -0.020233154296875, 0.005401611328125, -0.019134521484375, 0.00766754150390625, 0.01293182373046875, 0.0205841064453125, 0.0124664306640625, -0.0145111083984375, 0.051055908203125, 0.06488037109375, 0.0562744140625, -0.03948974609375, 0.0025997161865234375, 0.0703125, -0.01262664794921875, -0.006259918212890625, -0.035400390625, -0.023834228515625, -0.0361328125, -0.0176544189453125, 0.0306854248046875, -0.045867919921875, -0.03857421875, -0.08831787109375, 0.025848388671875, 0.032989501953125, 0.0008840560913085938, -0.0703125, 0.01255035400390625, -0.022552490234375, 0.123046875, -0.0262298583984375, 0.0194091796875, -0.0120391845703125, 0.00934600830078125, -0.041595458984375, -0.0496826171875, -0.023223876953125, 0.05596923828125, -0.00948333740234375, 0.0039520263671875, 0.0029582977294921875, -0.020904541015625, -0.0196685791015625, 0.024688720703125, 0.020538330078125, 0.07666015625, 0.0261383056640625, -0.0261077880859375, -0.01107025146484375, 0.0008401870727539062, 0.016448974609375, 0.0169677734375, -0.0100555419921875, 0.00554656982421875, -0.00804901123046875, 0.002532958984375, -0.0243072509765625, -0.01153564453125, -0.051422119140625, -0.09454345703125, 0.03021240234375, -0.0023193359375, -0.04266357421875, -0.07220458984375, 0.03143310546875, 0.00307464599609375, 0.007648468017578125, -0.0175018310546875, -0.0235748291015625, -0.006198883056640625, 0.032623291015625, -0.0029754638671875, -0.0083160400390625, 0.037017822265625, -0.00620269775390625, -0.03424072265625, -0.008331298828125, -0.0093841552734375, -0.0203094482421875, 0.01218414306640625, -0.0229644775390625, 0.0241546630859375, 0.0239715576171875, -0.0611572265625, -0.035125732421875, -0.01462554931640625, 0.015777587890625, -0.0295562744140625, -0.0650634765625, 0.00861358642578125, 0.010589599609375, 0.08087158203125, 0.01204681396484375, 0.0158538818359375, -0.058197021484375, 0.0513916015625, 0.0066680908203125, -0.0343017578125, -0.005908966064453125, 0.0094451904296875, -0.02392578125, -0.01158905029296875, -0.017822265625, 0.0284423828125, -0.0169219970703125, -0.006473541259765625, 0.0004601478576660156, -0.03717041015625, 0.02520751953125, 0.0352783203125, -0.034942626953125, -0.002166748046875, 0.1273193359375, -0.055206298828125, 0.02947998046875, 0.017486572265625, 0.010040283203125, 0.08941650390625, 0.01534271240234375, 0.050384521484375, -0.0248870849609375, -0.0399169921875, 0.05548095703125, -0.0007724761962890625, 0.0360107421875, -0.059967041015625, -0.07568359375, -0.00971221923828125, 0.0181427001953125, -0.00504302978515625, 0.021697998046875, 0.028564453125, 0.0167999267578125, -0.0027027130126953125, 0.05474853515625, -0.02972412109375, 0.01325225830078125, -0.020751953125, 0.01220703125, -0.003940582275390625, 0.0167236328125, 0.051727294921875, -0.019561767578125, 0.020111083984375, 0.0169677734375, 0.01690673828125, -0.03729248046875, 0.0223541259765625, 0.0184326171875, -0.00868988037109375, 0.0245513916015625 ]
0dffa14eaa1f5f6a9a0ec9510268f15c55b56c26
Wordpress Stackexchange Q: Add content to widget title in admin area within the widget? Is it possible to add content (icon & text) to widget title in admin area and customizer based on other value from the widget? Widgets are custom and developed by me (not WP default one) Ideally it should work bot in admin area & customizer. On frontend extra content is now shown. Then user changes an option in the widget and upon the save title changes to I've managed to achieve this with JS and .on('widget-updated widget-added') event, but looking for more robust approach as it doesn’t work in customizer. A: You can add filter for widget_title hook. Or change the $instance['title'] on update.
Q: Add content to widget title in admin area within the widget? Is it possible to add content (icon & text) to widget title in admin area and customizer based on other value from the widget? Widgets are custom and developed by me (not WP default one) Ideally it should work bot in admin area & customizer. On frontend extra content is now shown. Then user changes an option in the widget and upon the save title changes to I've managed to achieve this with JS and .on('widget-updated widget-added') event, but looking for more robust approach as it doesn’t work in customizer. A: You can add filter for widget_title hook. Or change the $instance['title'] on update. A: As per my understanding I can suggest you that you can probaly use something like font-awesome. This will help you to display a image sort of thing using simple CSS class. So you may please check my solution and let me know your views over it. A: Let me describe every situation. * *If you would like to change "Search" on the above screenshot, I should disappoint you, you can look in /wp-admin/includes/widgets.php (line 232) and in any widget class (I opened /wp-includes/widgets/class-wp-widget-search.php) and you will find out that there are no filter hooks for it. It could be changed only in your custom widgets. On my custom widget I change it in this part of the widget class code: function __construct() { parent::__construct( 'misha_widget', 'Widget title', // here it is array( 'description' => 'Widget description' ) ); } *If you would like to change "My search" on widget in admin area, JavaScript is good enough way to do it because WordPress also do it with JS. The widget_title hook will be applied only for website appearance not for admin area or customizer: add_filter('widget_title', 'misha_change_title1', 10, 3 ); function misha_change_title1( $title, $instance, $id ){ if( $id == 'search' ) { return ''. $title; } return $title; } What about customizer, you can find the instruction how to run custom JS code here https://codex.wordpress.org/Theme_Customization_API#Step_2:_Create_a_JavaScript_File
wordpress
{ "language": "en", "length": 340, "provenance": "stackexchange_00019.jsonl.gz:482035", "question_score": "4", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/287573" }
[ 0.025543212890625, -0.01555633544921875, 0.0350341796875, -0.01264190673828125, -0.01128387451171875, -0.001529693603515625, 0.02239990234375, -0.051422119140625, -0.00133514404296875, 0.0289306640625, 0.0108642578125, -0.0037975311279296875, -0.0221710205078125, -0.0299072265625, -0.03045654296875, -0.030426025390625, 0.01363372802734375, 0.0305938720703125, 0.0369873046875, -0.00885772705078125, -0.01161956787109375, 0.004039764404296875, 0.01190185546875, 0.0173492431640625, 0.0111846923828125, -0.02301025390625, 0.05889892578125, 0.01496124267578125, -0.008148193359375, -0.007778167724609375, 0.035003662109375, -0.01165008544921875, 0.040008544921875, -0.01898193359375, 0.01529693603515625, 0.0302886962890625, 0.03826904296875, -0.020721435546875, -0.0018148422241210938, 0.031005859375, 0.036865234375, -0.0252838134765625, 0.03912353515625, 0.05035400390625, 0.0050506591796875, -0.0333251953125, 0.05230712890625, -0.028839111328125, 0.0096893310546875, -0.0178680419921875, 0.0139617919921875, -0.0168304443359375, 0.0186614990234375, -0.0638427734375, -0.00902557373046875, 0.00917816162109375, -0.0218505859375, -0.0115814208984375, 0.06744384765625, 0.0003261566162109375, -0.040191650390625, -0.07122802734375, 0.0181732177734375, -0.0606689453125, 0.003383636474609375, 0.005619049072265625, 0.06475830078125, -0.020782470703125, -0.0312042236328125, 0.0164947509765625, 0.048583984375, -0.0269775390625, 0.00875091552734375, -0.0179290771484375, 0.0009059906005859375, 0.0016527175903320312, -0.0091552734375, -0.02105712890625, 0.0241241455078125, 0.0127410888671875, 0.07037353515625, 0.04388427734375, 0.09600830078125, -0.014923095703125, 0.0303955078125, 0.0016603469848632812, -0.0131988525390625, -0.0300140380859375, -0.0069580078125, -0.013275146484375, -0.0048980712890625, -0.037628173828125, -0.01288604736328125, 0.017486572265625, 0.030426025390625, -0.040283203125, -0.02142333984375, 0.039581298828125, -0.0035266876220703125, 0.08392333984375, -0.027496337890625, -0.02008056640625, 0.070068359375, -0.08258056640625, 0.0088348388671875, -0.0067901611328125, -0.02325439453125, 0.0057525634765625, 0.038970947265625, 0.03009033203125, -0.026336669921875, -0.004901885986328125, 0.03753662109375, -0.0175018310546875, -0.00997161865234375, -0.0033721923828125, -0.0060882568359375, 0.03851318359375, 0.0259246826171875, 0.01464080810546875, -0.0092620849609375, -0.0134124755859375, 0.0379638671875, 0.002315521240234375, 0.040771484375, 0.036224365234375, -0.036956787109375, -0.01395416259765625, -0.002777099609375, -0.0081329345703125, -0.0168609619140625, 0.01837158203125, 0.064453125, 0.05926513671875, 0.0300445556640625, -0.0066375732421875, 0.017547607421875, 0.0126190185546875, 0.00395965576171875, -0.01059722900390625, 0.0234832763671875, -0.0116424560546875, -0.0010347366333007812, -0.0044097900390625, 0.033416748046875, 0.0277099609375, -0.01560211181640625, -0.0034732818603515625, 0.052734375, -0.050750732421875, 0.045166015625, -0.0780029296875, 0.0145263671875, 0.04327392578125, 0.01230621337890625, -0.003753662109375, 0.064697265625, -0.0364990234375, -0.0037708282470703125, -0.04168701171875, -0.0155792236328125, -0.01251220703125, -0.006671905517578125, -0.0184783935546875, -0.018890380859375, 0.0178680419921875, 0.0008764266967773438, 0.02093505859375, 0.023040771484375, 0.02471923828125, 0.0204010009765625, 0.006744384765625, -0.0134429931640625, 0.01837158203125, 0.004421234130859375, 0.0035800933837890625, -0.005767822265625, 0.0158538818359375, 0.00594329833984375, 0.043670654296875, -0.004955291748046875, -0.03955078125, 0.0438232421875, -0.01398468017578125, -0.0269927978515625, -0.03350830078125, 0.0022373199462890625, 0.043365478515625, 0.041229248046875, 0.035125732421875, -0.007518768310546875, -0.039093017578125, -0.0299530029296875, -0.03759765625, 0.001369476318359375, 0.005908966064453125, -0.0093231201171875, -0.0032806396484375, -0.0106048583984375, 0.038543701171875, -0.00521087646484375, -0.00818634033203125, 0.0250701904296875, -0.00933837890625, -0.0139617919921875, -0.0139923095703125, -0.0092620849609375, 0.0267181396484375, 0.03753662109375, 0.0172882080078125, -0.0022716522216796875, 0.0181884765625, -0.0036220550537109375, -0.0247802734375, -0.039276123046875, -0.0153045654296875, -0.00443267822265625, 0.050323486328125, 0.01611328125, 0.0229949951171875, 0.03564453125, -0.036346435546875, 0.0228118896484375, 0.018951416015625, 0.060791015625, -0.002964019775390625, -0.01549530029296875, -0.01824951171875, 0.06158447265625, 0.00301361083984375, -0.03076171875, 0.0321044921875, 0.0009360313415527344, -0.0026493072509765625, -0.041290283203125, -0.0212554931640625, -0.053497314453125, -0.08331298828125, -0.0036678314208984375, 0.07666015625, 0.0306396484375, 0.01441192626953125, 0.021453857421875, 0.061920166015625, -0.00628662109375, -0.054046630859375, 0.0171966552734375, 0.008270263671875, 0.0201263427734375, 0.06719970703125, -0.0218963623046875, 0.01137542724609375, 0.01378631591796875, -0.059173583984375, 0.01995849609375, 0.032958984375, -0.0249786376953125, 0.00443267822265625, -0.0252838134765625, -0.0018253326416015625, 0.01361846923828125, -0.012725830078125, -0.0289154052734375, -0.0079193115234375, -0.0233917236328125, 0.0567626953125, 0.03155517578125, 0.039337158203125, -0.037109375, 0.01397705078125, 0.019500732421875, 0.0306396484375, 0.0116424560546875, 0.00786590576171875, 0.03961181640625, 0.00714111328125, -0.0355224609375, -0.01558685302734375, 0.0465087890625, 0.006244659423828125, 0.01317596435546875, 0.01910400390625, -0.0142974853515625, -0.0111083984375, 0.02349853515625, -0.050750732421875, -0.0027141571044921875, 0.0206756591796875, 0.00615692138671875, -0.006534576416015625, 0.0026607513427734375, 0.0194854736328125, -0.0229949951171875, 0.03912353515625, 0.02105712890625, -0.03399658203125, 0.0225677490234375, -0.003997802734375, 0.01111602783203125, -0.004718780517578125, 0.059173583984375, 0.0693359375, 0.0067901611328125, -0.0154571533203125, 0.009613037109375, -0.0071258544921875, -0.004947662353515625, 0.0289154052734375, 0.0261383056640625, 0.005580902099609375, -0.06268310546875, 0.01702880859375, 0.0184173583984375, 0.05743408203125, 0.0016393661499023438, -0.0305633544921875, 0.023956298828125, 0.028045654296875, -0.0144805908203125, -0.0662841796875, 0.0158538818359375, -0.0283966064453125, -0.04180908203125, 0.02105712890625, -0.02069091796875, 0.0022296905517578125, 0.0565185546875, -0.01361083984375, -0.0207061767578125, -0.00879669189453125, -0.00130462646484375, -0.0225067138671875, -0.021392822265625, -0.01036834716796875, -0.016937255859375, -0.00905609130859375, 0.0119171142578125, 0.0278472900390625, -0.0016727447509765625, -0.048095703125, 0.02508544921875, 0.0246429443359375, 0.001224517822265625, 0.0310821533203125, 0.01224517822265625, -0.0214996337890625, 0.03759765625, -0.001117706298828125, 0.021820068359375, 0.0262298583984375, -0.0189361572265625, -0.02313232421875, 0.00447845458984375, 0.014923095703125, 0.0098114013671875, 0.0041656494140625, 0.0061492919921875, 0.0181732177734375, 0.0003676414489746094, -0.037750244140625, -0.005138397216796875, 0.021392822265625, -0.0195770263671875, 0.0025157928466796875, -0.0184326171875, -0.037078857421875, 0.035614013671875, -0.0088958740234375, -0.00406646728515625, 0.004001617431640625, -0.00591278076171875, -0.000400543212890625, 0.01273345947265625, 0.0007123947143554688, -0.007015228271484375, 0.01611328125, 0.0019330978393554688, -0.0106201171875, 0.050384521484375, 0.015289306640625, 0.039459228515625, -0.0036334991455078125, 0.03692626953125, -0.04571533203125, -0.0255126953125, 0.0218048095703125, -0.033355712890625, 0.06451416015625, -0.037261962890625, -0.01500701904296875, -0.00914764404296875, 0.09136962890625, -0.058349609375, -0.0169677734375, -0.043548583984375, 0.027435302734375, -0.0264739990234375, -0.08404541015625, -0.007354736328125, -0.0186614990234375, -0.09478759765625, 0.0181121826171875, -0.007335662841796875, -0.0123443603515625, -0.02655029296875, 0.060577392578125, -0.036865234375, -0.03643798828125, 0.005466461181640625, -0.0447998046875, 0.033599853515625, 0.04876708984375, -0.0164337158203125, 0.048126220703125, -0.00217437744140625, -0.075927734375, -0.05255126953125, -0.0038909912109375, -0.009857177734375, 0.039794921875, -0.0006222724914550781, -0.0194549560546875, -0.03240966796875, 0.02020263671875, -0.01512908935546875, 0.00820159912109375, 0.0049896240234375, 0.04180908203125, -0.0211029052734375, -0.0360107421875, -0.01342010498046875, -0.055145263671875, -0.01203155517578125, -0.0124359130859375, -0.037445068359375, 0.014007568359375, -0.0252532958984375, -0.0019016265869140625, 0.0130462646484375, -0.0269317626953125, -0.024749755859375, -0.0113983154296875, -0.039642333984375, 0.00818634033203125, -0.040130615234375, 0.0177154541015625, -0.01580810546875, -0.052947998046875, 0.0355224609375, 0.00492095947265625, 0.005046844482421875, 0.005615234375, 0.06982421875, 0.01439666748046875, -0.03131103515625, -0.0292510986328125, -0.055999755859375, 0.035400390625, -0.0174407958984375, 0.006374359130859375, 0.019805908203125, -0.042755126953125, 0.025787353515625, 0.0137786865234375, 0.0243072509765625, 0.0030231475830078125, 0.035675048828125, 0.01117706298828125, -0.035400390625, 0.0389404296875, 0.01396942138671875, -0.04705810546875, 0.033477783203125, -0.0128021240234375, 0.0016040802001953125, -0.00678253173828125, 0.019683837890625, -0.0262603759765625, 0.026336669921875, -0.01404571533203125, 0.01275634765625, -0.004734039306640625, 0.026947021484375, 0.0114288330078125, -0.005130767822265625, 0.01490020751953125, -0.06787109375, -0.0284423828125, -0.005107879638671875, 0.031341552734375, -0.01271820068359375, 0.0009756088256835938, 0.005519866943359375, 0.01195526123046875, -0.01824951171875, 0.04022216796875, -0.0124359130859375, 0.07464599609375, 0.0067901611328125, -0.03582763671875, 0.002780914306640625, -0.007289886474609375, 0.0185546875, 0.03173828125, 0.05780029296875, -0.016326904296875, 0.0162811279296875, 0.0115966796875, -0.006198883056640625, 0.0718994140625, 0.04107666015625, -0.004306793212890625, -0.006465911865234375, 0.0019741058349609375, -0.01702880859375, -0.00531005859375, 0.01540374755859375, 0.0033855438232421875, -0.0117340087890625, -0.01082611083984375, 0.056365966796875, 0.045135498046875, 0.0196380615234375, 0.003437042236328125, 0.001461029052734375, 0.01045989990234375, -0.0162506103515625, -0.00870513916015625, 0.0014362335205078125, 0.036346435546875, -0.0169830322265625, 0.012847900390625, 0.015380859375, -0.023651123046875, 0.036163330078125, -0.05419921875, -0.0234222412109375, 0.038604736328125, -0.0081939697265625, -0.046600341796875, -0.027191162109375, -0.00495147705078125, 0.0276641845703125, -0.006610870361328125, -0.0209808349609375, 0.0007624626159667969, -0.0797119140625, -0.0166015625, 0.0097503662109375, -0.00638580322265625, -0.01108551025390625, -0.02581787109375, -0.035614013671875, -0.0139312744140625, -0.0163726806640625, -0.057220458984375, -0.054595947265625, 0.023834228515625, -0.0016050338745117188, 0.0092010498046875, -0.00818634033203125, 0.04522705078125, -0.04400634765625, 0.009429931640625, -0.0323486328125, 0.0235748291015625, -0.0135498046875, -0.028106689453125, -0.0161590576171875, -0.010345458984375, -0.0372314453125, -0.0176849365234375, -0.05694580078125, -0.07501220703125, -0.0311737060546875, -0.006771087646484375, 0.02734375, 0.030181884765625, -0.01629638671875, -0.0501708984375, -0.01285552978515625, 0.0080718994140625, 0.03143310546875, 0.06402587890625, -0.01436614990234375, 0.0712890625, -0.006137847900390625, 0.076171875, -0.0170440673828125, -0.006153106689453125, -0.02764892578125, -0.00868988037109375, 0.0251312255859375, -0.007068634033203125, -0.041534423828125, -0.0239105224609375, 0.00096893310546875, -0.0167083740234375, 0.013885498046875, -0.035736083984375, 0.0328369140625, -0.0209197998046875, 0.006931304931640625, -0.011505126953125, 0.0035381317138671875, -0.0298919677734375, -0.012176513671875, 0.048004150390625, -0.025238037109375, 0.0059967041015625, -0.024932861328125, -0.00466156005859375, 0.014801025390625, -0.020751953125, -0.005950927734375, 0.0299224853515625, -0.07965087890625, 0.08453369140625, 0.048736572265625, 0.03839111328125, 0.05908203125, -0.012115478515625, 0.03204345703125, 0.007411956787109375, -0.0159149169921875, -0.040985107421875, 0.007450103759765625, 0.040618896484375, -0.0066070556640625, -0.011749267578125, 0.0261383056640625, -0.0160980224609375, 0.0190582275390625, 0.052276611328125, 0.0665283203125, -0.07940673828125, 0.01322174072265625, 0.0011320114135742188, -0.004787445068359375, 0.04473876953125, -0.0003781318664550781, -0.006977081298828125, -0.0146331787109375, 0.04052734375, 0.002532958984375, -0.0125732421875, 0.03314208984375, 0.0019683837890625, -0.020538330078125, -0.0089263916015625, -0.0017995834350585938, 0.0094451904296875, 0.004451751708984375, -0.02508544921875, -0.014312744140625, -0.016326904296875, -0.0010662078857421875, -0.0020313262939453125, 0.0146484375, -0.032196044921875, -0.06011962890625, 0.020599365234375, -0.016693115234375, -0.0198211669921875, -0.01485443115234375, 0.01316070556640625, 0.047576904296875, 0.0706787109375, -0.0118255615234375, 0.015655517578125, 0.02685546875, 0.049407958984375, -0.00923919677734375, 0.01052093505859375, -0.00989532470703125, 0.0173187255859375, -0.040435791015625, 0.00415802001953125, -0.046356201171875, 0.02911376953125, -0.0013484954833984375, 0.0195770263671875, 0.07354736328125, -0.035186767578125, -0.01476287841796875, 0.033721923828125, -0.006015777587890625, 0.0020542144775390625, 0.0007634162902832031, 0.026214599609375, -0.050750732421875, -0.0181884765625, 0.00711822509765625, -0.03033447265625, -0.024932861328125, -0.0003495216369628906, -0.062164306640625, 0.12005615234375, 0.04443359375, 0.01454925537109375, -0.00970458984375, 0.053253173828125, -0.0221405029296875, 0.03167724609375, -0.02423095703125, 0.0233001708984375, -0.006366729736328125, 0.01727294921875, -0.016571044921875, 0.0108489990234375, 0.00795745849609375, 0.005222320556640625, 0.0225982666015625, -0.0013065338134765625, -0.003971099853515625, -0.013275146484375, 0.0322265625, 0.038543701171875, 0.0006995201110839844, 0.0189971923828125, 0.01983642578125, -0.0474853515625, 0.008087158203125, 0.06512451171875, 0.0498046875, -0.0033283233642578125, -0.0283660888671875, 0.036041259765625, 0.022735595703125, 0.035919189453125, 0.02386474609375, 0.02490234375, -0.0022144317626953125, -0.0018281936645507812, 0.0263671875, -0.05584716796875, -0.05120849609375, 0.051544189453125, 0.013702392578125, 0.0074310302734375, 0.0168914794921875, -0.048065185546875, 0.03076171875, 0.035736083984375, 0.031890869140625, -0.0254974365234375, 0.0130615234375, -0.0384521484375, 0.015380859375, 0.0038661956787109375, 0.0716552734375, -0.0556640625, 0.0124053955078125, 0.0034885406494140625, 0.0223541259765625, -0.01493072509765625, 0.013519287109375, 0.0074005126953125, 0.011688232421875, -0.02294921875, -0.02423095703125, 0.0261993408203125, 0.00713348388671875, -0.0206146240234375, 0.0035190582275390625, -0.00891876220703125, -0.031463623046875, 0.0159912109375, -0.0292510986328125, 0.00909423828125, 0.051483154296875, 0.02496337890625, 0.00228118896484375, 0.035888671875, -0.05810546875, -0.00399017333984375, -0.03497314453125, 0.00879669189453125, 0.00591278076171875, 0.058349609375, 0.01161956787109375, 0.0450439453125, -0.0215911865234375, -0.0236663818359375, -0.0085906982421875, 0.01312255859375, 0.01403045654296875, -0.0034351348876953125, -0.0343017578125, -0.04296875, 0.0439453125, 0.0260009765625, 0.01207733154296875, -0.0006880760192871094, 0.030120849609375, 0.053558349609375, 0.017791748046875, -0.0037364959716796875, 0.02777099609375, 0.00650787353515625, 0.04119873046875, -0.049652099609375, 0.032440185546875, 0.0038661956787109375, -0.00765228271484375, -0.03143310546875, 0.0020961761474609375, 0.043182373046875, -0.02935791015625, -0.00518798828125, -0.003108978271484375, -0.04632568359375, 0.050872802734375, -0.02557373046875, 0.05059814453125, -0.02227783203125, -0.0853271484375, -0.02447509765625, 0.02484130859375, -0.0914306640625, 0.021820068359375, 0.06268310546875, -0.07318115234375, 0.00988006591796875, -0.0165252685546875, 0.003818511962890625, -0.01678466796875, -0.001007080078125, 0.0037250518798828125, 0.00925445556640625, 0.0153961181640625, 0.016143798828125, -0.031524658203125, 0.0032939910888671875, 0.0156707763671875, 0.0306243896484375, 0.004909515380859375, 0.00927734375, 0.0027008056640625, 0.0222930908203125, -0.0171051025390625, -0.007190704345703125, -0.01020050048828125, -0.03485107421875, 0.040313720703125, -0.01053619384765625, -0.0275115966796875, -0.0174560546875, -0.043609619140625, -0.0289306640625, 0.0396728515625, -0.043731689453125, -0.003078460693359375, -0.028228759765625, 0.028076171875, -0.03265380859375, 0.023162841796875, -0.01885986328125, 0.030792236328125, -0.01140594482421875, -0.028045654296875, 0.043792724609375, 0.0010137557983398438, -0.0006470680236816406, 0.01412200927734375, -0.01229095458984375, 0.011962890625, 0.006641387939453125, 0.0024127960205078125, -0.01161956787109375, 0.026214599609375, -0.05279541015625, -0.06231689453125, 0.02294921875, 0.007904052734375, 0.00504302978515625, 0.0194854736328125, 0.055206298828125, 0.0253753662109375, 0.0179443359375, 0.0147247314453125, 0.0108642578125, 0.0205078125, -0.0223388671875, 0.00605010986328125, 0.0226287841796875, -0.01448822021484375, -0.026885986328125, -0.0180511474609375, -0.0435791015625, -0.08447265625, 0.005496978759765625, 0.04180908203125, -0.0631103515625, -0.0104827880859375, -0.10870361328125, 0.0540771484375, 0.0207366943359375, 0.016693115234375, -0.08013916015625, 0.08135986328125, -0.051788330078125, 0.031494140625, 0.0008692741394042969, -0.03118896484375, 0.008941650390625, 0.031463623046875, -0.026092529296875, -0.003185272216796875, -0.053985595703125, -0.02423095703125, -0.039947509765625, 0.020538330078125, 0.03106689453125, -0.01727294921875, -0.0027675628662109375, 0.01477813720703125, 0.0281524658203125, 0.06463623046875, -0.004302978515625, 0.0147705078125, 0.00591278076171875, 0.01953125, -0.035369873046875, -0.036468505859375, 0.01514434814453125, 0.005474090576171875, -0.0260772705078125, -0.014251708984375, -0.0210113525390625, -0.026763916015625, -0.055267333984375, -0.0748291015625, 0.0127105712890625, 0.0108642578125, -0.03277587890625, -0.0389404296875, 0.017303466796875, -0.014007568359375, -0.0017757415771484375, -0.0120391845703125, -0.007259368896484375, 0.021697998046875, 0.029144287109375, 0.0027256011962890625, 0.01184844970703125, 0.03717041015625, -0.00811767578125, -0.07574462890625, -0.0195770263671875, -0.040557861328125, 0.00864410400390625, 0.0292205810546875, -0.045928955078125, 0.0235748291015625, 0.02313232421875, -0.07977294921875, -0.0850830078125, -0.0305328369140625, 0.035400390625, -0.01416015625, -0.049560546875, -0.00933074951171875, -0.00653076171875, 0.0626220703125, 0.05181884765625, 0.0146636962890625, -0.046905517578125, 0.03546142578125, 0.01326751708984375, -0.030853271484375, -0.0072479248046875, 0.0158233642578125, -0.044830322265625, -0.0277557373046875, 0.0156402587890625, -0.00342559814453125, 0.016143798828125, 0.029541015625, 0.005340576171875, -0.0032482147216796875, 0.0726318359375, -0.003940582275390625, -0.0384521484375, -0.00811004638671875, 0.08013916015625, -0.0458984375, 0.0123138427734375, 0.00968170166015625, 0.0183563232421875, 0.039276123046875, 0.004695892333984375, -0.0189056396484375, -0.031524658203125, -0.0092315673828125, 0.01947021484375, -0.0206756591796875, 0.05731201171875, -0.03466796875, -0.0183563232421875, -0.0282440185546875, 0.027191162109375, -0.00033473968505859375, 0.02960205078125, -0.0033359527587890625, 0.050537109375, 0.019622802734375, 0.047027587890625, -0.003864288330078125, 0.0182647705078125, -0.0265960693359375, 0.049560546875, 0.00281524658203125, -0.0245361328125, 0.01953125, -0.00041794776916503906, 0.0168304443359375, 0.0016651153564453125, 0.02008056640625, -0.03179931640625, 0.02581787109375, -0.0246124267578125, 0.0063323974609375, 0.018524169921875 ]
136c862e4a62df38490ed46a6ed4b957d335c49d
Wordpress Stackexchange Q: How to add Wordpress nonces to ajax request I have a plugin, a cron job runs refresh_my_plugin() daily. I need a button on my plugins Settings/option page, allowing a user to manually run said function, and I want it inline, with ajax. I've got the following, which should work - but how would I add Wordpress Nonces to it? <?php if (isset($_POST['refresh_my_plugin'])) { refresh_my_plugin(); } function refresh_my_plugin() { // main function, runs daily with cron return true; } ?> <button id='refresh'>Refresh My Plugin</button> <script> jQuery('#refresh').click(function(){ $.ajax({ type: 'post', data: { "refresh_my_plugin": "now"}, success: function(response) { jQuery('#refresh').text("Successfully Refreshed!"); }, error: function(response) { jQuery('#refresh').text("...error!"); }, }); }); </script> A: I figured it out. Simply, in my request, under data, I added "nonce" : "<?php echo wp_create_nonce( 'refresh_my_plugin' ); ?>" then to verify if (isset($_POST['refresh_my_plugin'])) if ( wp_verify_nonce( $_POST['nonce'], 'refresh_my_plugin' ) ) refresh_my_plugin(); With incorrect wp_verify_nonce, I instead get a 403, which is reflected on the button with the error handler.
Q: How to add Wordpress nonces to ajax request I have a plugin, a cron job runs refresh_my_plugin() daily. I need a button on my plugins Settings/option page, allowing a user to manually run said function, and I want it inline, with ajax. I've got the following, which should work - but how would I add Wordpress Nonces to it? <?php if (isset($_POST['refresh_my_plugin'])) { refresh_my_plugin(); } function refresh_my_plugin() { // main function, runs daily with cron return true; } ?> <button id='refresh'>Refresh My Plugin</button> <script> jQuery('#refresh').click(function(){ $.ajax({ type: 'post', data: { "refresh_my_plugin": "now"}, success: function(response) { jQuery('#refresh').text("Successfully Refreshed!"); }, error: function(response) { jQuery('#refresh').text("...error!"); }, }); }); </script> A: I figured it out. Simply, in my request, under data, I added "nonce" : "<?php echo wp_create_nonce( 'refresh_my_plugin' ); ?>" then to verify if (isset($_POST['refresh_my_plugin'])) if ( wp_verify_nonce( $_POST['nonce'], 'refresh_my_plugin' ) ) refresh_my_plugin(); With incorrect wp_verify_nonce, I instead get a 403, which is reflected on the button with the error handler.
wordpress
{ "language": "en", "length": 159, "provenance": "stackexchange_00019.jsonl.gz:482118", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/287843" }
[ 0.07476806640625, 0.0183868408203125, -0.031982421875, -0.058837890625, 0.0755615234375, -0.05877685546875, 0.03790283203125, 0.0022220611572265625, -0.002269744873046875, 0.02337646484375, -0.04681396484375, 0.0312347412109375, -0.0204315185546875, -0.0046539306640625, -0.0260467529296875, -0.0372314453125, 0.01082611083984375, -0.00005728006362915039, 0.010223388671875, 0.0029163360595703125, 0.00318145751953125, 0.0223846435546875, -0.0240631103515625, -0.0259857177734375, -0.01517486572265625, -0.0202178955078125, 0.10150146484375, -0.0411376953125, 0.0153656005859375, -0.038177490234375, 0.01328277587890625, -0.00643157958984375, 0.0221710205078125, 0.0491943359375, -0.08514404296875, -0.01262664794921875, 0.01522064208984375, 0.00960540771484375, -0.01348114013671875, 0.039215087890625, 0.0242462158203125, 0.0024585723876953125, 0.0005674362182617188, 0.01079559326171875, -0.014404296875, -0.037994384765625, 0.04254150390625, -0.0188446044921875, 0.0175628662109375, 0.03924560546875, 0.0166778564453125, 0.0034885406494140625, 0.0184478759765625, 0.01690673828125, -0.013275146484375, -0.00806427001953125, -0.0860595703125, 0.0262908935546875, 0.0077362060546875, 0.0653076171875, 0.028411865234375, -0.026153564453125, -0.01190948486328125, -0.021728515625, 0.0012712478637695312, -0.0247039794921875, -0.005130767822265625, 0.03302001953125, -0.08184814453125, -0.0224609375, 0.050079345703125, -0.03619384765625, 0.0245513916015625, 0.0007023811340332031, 0.0003104209899902344, -0.053802490234375, 0.0313720703125, -0.020111083984375, -0.0037670135498046875, 0.019683837890625, 0.059906005859375, 0.0340576171875, 0.0198822021484375, 0.06414794921875, -0.040985107421875, 0.03826904296875, -0.005512237548828125, -0.040924072265625, -0.0287628173828125, -0.0325927734375, -0.0268402099609375, -0.024383544921875, -0.0018224716186523438, -0.034637451171875, -0.032562255859375, -0.0210418701171875, 0.006755828857421875, 0.00559234619140625, -0.02569580078125, -0.01708984375, 0.035552978515625, -0.03369140625, 0.01727294921875, -0.00867462158203125, -0.0012979507446289062, 0.078369140625, 0.057525634765625, -0.00572967529296875, -0.0082244873046875, -0.0246429443359375, 0.006603240966796875, 0.033233642578125, 0.02679443359375, -0.0286102294921875, -0.008880615234375, -0.005702972412109375, 0.0128021240234375, 0.005889892578125, 0.009674072265625, -0.044525146484375, -0.01512908935546875, -0.0011205673217773438, -0.036529541015625, 0.0255584716796875, 0.0060882568359375, -0.0029621124267578125, -0.0008673667907714844, 0.00745391845703125, -0.051361083984375, 0.00853729248046875, -0.031646728515625, 0.03192138671875, 0.10064697265625, 0.02020263671875, -0.0114593505859375, -0.01422119140625, 0.063232421875, 0.032958984375, 0.01016998291015625, -0.0026111602783203125, 0.01071929931640625, -0.019744873046875, -0.0113372802734375, 0.007350921630859375, 0.035980224609375, 0.01154327392578125, 0.0182952880859375, 0.011016845703125, -0.004306793212890625, 0.0260772705078125, 0.003215789794921875, -0.01094818115234375, 0.028472900390625, -0.01079559326171875, 0.0240936279296875, 0.0083465576171875, 0.059967041015625, -0.024078369140625, -0.03863525390625, -0.0140533447265625, 0.0325927734375, -0.002208709716796875, -0.01436614990234375, -0.0173187255859375, -0.0241241455078125, -0.0267486572265625, -0.0293731689453125, 0.0017986297607421875, 0.019012451171875, 0.037109375, 0.00774383544921875, -0.0150146484375, 0.003299713134765625, -0.0189666748046875, -0.0281219482421875, -0.00045490264892578125, 0.00923919677734375, 0.06494140625, 0.04754638671875, -0.007274627685546875, -0.0166168212890625, -0.040130615234375, 0.1502685546875, -0.050384521484375, -0.036956787109375, 0.01531219482421875, 0.017486572265625, 0.08441162109375, -0.00354766845703125, 0.0299835205078125, -0.0028820037841796875, 0.0029449462890625, -0.01654052734375, 0.036865234375, 0.0094757080078125, -0.0653076171875, -0.03790283203125, -0.035552978515625, -0.0174560546875, 0.01261138916015625, 0.0034999847412109375, -0.0126953125, 0.0144500732421875, -0.034423828125, -0.07049560546875, -0.01081085205078125, -0.021575927734375, 0.0440673828125, 0.0298614501953125, 0.049041748046875, -0.002033233642578125, 0.050323486328125, -0.042877197265625, -0.00943756103515625, -0.00411224365234375, 0.0164031982421875, -0.03216552734375, 0.0782470703125, 0.015716552734375, 0.0780029296875, 0.0201873779296875, -0.056488037109375, 0.01666259765625, -0.0367431640625, 0.01690673828125, 0.005764007568359375, -0.0172882080078125, 0.0037994384765625, 0.0244903564453125, 0.0193634033203125, 0.02020263671875, 0.007678985595703125, 0.05914306640625, 0.0418701171875, -0.029693603515625, -0.0274658203125, -0.019256591796875, -0.095947265625, 0.00914764404296875, 0.0728759765625, 0.0301666259765625, 0.05999755859375, 0.004596710205078125, -0.005222320556640625, 0.01019287109375, -0.06219482421875, 0.01351165771484375, -0.0205841064453125, -0.01244354248046875, -0.01012420654296875, -0.012603759765625, -0.0196533203125, 0.04449462890625, -0.04248046875, -0.0243072509765625, 0.0645751953125, 0.002536773681640625, -0.0179901123046875, 0.018096923828125, 0.00995635986328125, -0.0005435943603515625, 0.0078887939453125, -0.0107574462890625, 0.012664794921875, 0.042083740234375, -0.0262603759765625, 0.0190277099609375, -0.00010514259338378906, 0.016265869140625, -0.0261993408203125, 0.01202392578125, -0.0258636474609375, 0.00455474853515625, 0.0460205078125, 0.050323486328125, 0.03082275390625, -0.042999267578125, -0.0128936767578125, 0.02508544921875, 0.047088623046875, -0.018707275390625, 0.0013017654418945312, -0.0010366439819335938, -0.0188446044921875, -0.0211181640625, 0.0049285888671875, 0.0312042236328125, -0.0035610198974609375, 0.043243408203125, 0.026153564453125, 0.0501708984375, 0.0178375244140625, -0.0279998779296875, 0.05169677734375, -0.0088653564453125, -0.0272979736328125, -0.038421630859375, -0.027740478515625, 0.03546142578125, -0.041229248046875, -0.0018529891967773438, 0.052490234375, 0.00879669189453125, -0.0014581680297851562, 0.01251983642578125, -0.00730133056640625, 0.01558685302734375, 0.024993896484375, -0.0069732666015625, 0.0018253326416015625, -0.06329345703125, -0.01474761962890625, 0.023956298828125, 0.007045745849609375, -0.01529693603515625, -0.051483154296875, -0.0274658203125, 0.004863739013671875, -0.10052490234375, -0.08355712890625, -0.0237274169921875, -0.03253173828125, 0.0184478759765625, -0.01052093505859375, -0.003192901611328125, -0.01233673095703125, 0.0242156982421875, 0.015655517578125, -0.04583740234375, 0.032470703125, 0.0124969482421875, -0.0191802978515625, -0.016448974609375, 0.006954193115234375, 0.0055999755859375, -0.00286865234375, -0.0083160400390625, 0.055328369140625, -0.013580322265625, -0.05877685546875, -0.040313720703125, 0.03533935546875, -0.00170135498046875, -0.020477294921875, 0.00263214111328125, -0.01885986328125, 0.00119781494140625, -0.00775909423828125, -0.0165863037109375, 0.030548095703125, -0.01520538330078125, -0.00661468505859375, -0.00975799560546875, -0.0231475830078125, -0.01036834716796875, 0.0209808349609375, 0.01160430908203125, -0.0298919677734375, 0.00445556640625, -0.056915283203125, 0.01024627685546875, -0.0081939697265625, -0.0207977294921875, -0.0106964111328125, -0.0104217529296875, 0.0033931732177734375, 0.0275115966796875, -0.00946807861328125, -0.0247955322265625, 0.00646209716796875, 0.04876708984375, -0.033538818359375, -0.007144927978515625, -0.0302276611328125, -0.034088134765625, -0.0272216796875, 0.0211029052734375, -0.030914306640625, 0.0130157470703125, -0.0009965896606445312, -0.01500701904296875, -0.0192413330078125, -0.0047454833984375, -0.03570556640625, 0.0035533905029296875, 0.03692626953125, 0.009246826171875, -0.0289306640625, 0.00783538818359375, -0.00701141357421875, -0.008148193359375, 0.0227813720703125, 0.01404571533203125, -0.04541015625, 0.0030059814453125, 0.0184478759765625, -0.025909423828125, -0.02667236328125, 0.02239990234375, -0.0300750732421875, -0.03741455078125, 0.011871337890625, -0.0203857421875, -0.0062713623046875, 0.020843505859375, -0.038604736328125, -0.00048542022705078125, -0.046539306640625, 0.0352783203125, -0.016357421875, 0.0291290283203125, -0.037811279296875, 0.01331329345703125, -0.056732177734375, -0.0016326904296875, -0.0280609130859375, -0.0703125, -0.0006003379821777344, -0.0318603515625, 0.029388427734375, 0.03363037109375, -0.0341796875, -0.01401519775390625, 0.0171356201171875, -0.01509857177734375, -0.0069427490234375, -0.0016326904296875, 0.00846099853515625, -0.02545166015625, 0.01415252685546875, 0.00012385845184326172, -0.01342010498046875, 0.0236053466796875, 0.0133819580078125, -0.0172271728515625, 0.00678253173828125, -0.047882080078125, -0.0296783447265625, -0.00003653764724731445, -0.040435791015625, -0.078857421875, -0.059173583984375, 0.0260467529296875, -0.002017974853515625, -0.03765869140625, 0.0440673828125, -0.03680419921875, -0.03350830078125, 0.031707763671875, -0.022796630859375, 0.01165008544921875, 0.005336761474609375, 0.0732421875, 0.00832366943359375, -0.00395965576171875, 0.01074981689453125, 0.0258331298828125, -0.0132904052734375, -0.041046142578125, 0.040435791015625, 0.01358795166015625, 0.04058837890625, -0.0218505859375, -0.06524658203125, 0.00765228271484375, 0.0352783203125, -0.01172637939453125, 0.026123046875, -0.033599853515625, 0.0147857666015625, 0.044464111328125, -0.0293731689453125, 0.026763916015625, 0.0007443428039550781, 0.018402099609375, 0.039703369140625, -0.040771484375, -0.0154571533203125, -0.022369384765625, 0.035888671875, -0.050872802734375, 0.014190673828125, -0.0316162109375, 0.01470184326171875, 0.0504150390625, -0.021331787109375, 0.01512908935546875, -0.02581787109375, -0.005992889404296875, -0.0013027191162109375, 0.047454833984375, -0.00786590576171875, 0.0264739990234375, 0.03131103515625, -0.00982666015625, -0.041046142578125, 0.01009368896484375, 0.028900146484375, -0.044342041015625, -0.05596923828125, -0.052642822265625, -0.014739990234375, 0.002593994140625, 0.046112060546875, 0.036468505859375, 0.03515625, -0.05670166015625, 0.002666473388671875, 0.00817108154296875, -0.0091552734375, -0.044647216796875, -0.0256805419921875, 0.027679443359375, 0.000025153160095214844, 0.00971221923828125, -0.01483154296875, 0.0504150390625, 0.044677734375, 0.0008234977722167969, -0.0162200927734375, 0.056884765625, 0.05548095703125, 0.005733489990234375, 0.035980224609375, -0.03594970703125, -0.0294647216796875, 0.006679534912109375, -0.05792236328125, -0.0341796875, -0.03936767578125, 0.00463104248046875, 0.04095458984375, -0.016387939453125, 0.0283966064453125, 0.0241851806640625, 0.0180511474609375, -0.02447509765625, 0.0172119140625, 0.07366943359375, -0.01454925537109375, 0.005016326904296875, 0.0253448486328125, -0.00846099853515625, 0.040252685546875, 0.006832122802734375, 0.00469207763671875, 0.0035724639892578125, 0.01070404052734375, -0.0140228271484375, -0.023895263671875, 0.0030193328857421875, 0.01097869873046875, 0.01012420654296875, -0.0246429443359375, -0.01049041748046875, -0.022674560546875, 0.0280609130859375, -0.050537109375, -0.017120361328125, 0.0843505859375, 0.00412750244140625, 0.0222625732421875, -0.044342041015625, -0.0034198760986328125, -0.01385498046875, -0.007411956787109375, 0.036773681640625, -0.01025390625, -0.00986480712890625, -0.021240234375, -0.03399658203125, -0.03619384765625, -0.0240020751953125, -0.02197265625, -0.027191162109375, 0.01447296142578125, -0.0125274658203125, 0.05328369140625, -0.0599365234375, -0.051361083984375, 0.01739501953125, -0.0209197998046875, 0.0007109642028808594, 0.06341552734375, 0.006710052490234375, 0.01509857177734375, -0.0266265869140625, 0.03753662109375, 0.004863739013671875, -0.005985260009765625, -0.00021946430206298828, -0.0213470458984375, -0.01508331298828125, -0.004665374755859375, 0.0251617431640625, 0.01111602783203125, 0.033782958984375, -0.0183563232421875, 0.01148223876953125, 0.0004620552062988281, 0.01276397705078125, 0.0010728836059570312, -0.0012578964233398438, -0.00848388671875, -0.0017824172973632812, 0.033935546875, 0.0030364990234375, 0.04840087890625, -0.0201263427734375, -0.00019097328186035156, 0.01177978515625, 0.0155487060546875, -0.03857421875, -0.0031681060791015625, -0.03155517578125, 0.00524139404296875, -0.0304718017578125, 0.060089111328125, 0.07208251953125, -0.00600433349609375, 0.039306640625, 0.0240325927734375, 0.0196380615234375, 0.0181884765625, -0.0013637542724609375, 0.00855255126953125, -0.0014553070068359375, 0.03729248046875, -0.0221710205078125, -0.006816864013671875, 0.0067138671875, -0.0087127685546875, 0.01488494873046875, 0.036102294921875, 0.0379638671875, -0.06427001953125, 0.017852783203125, -0.024322509765625, -0.01374053955078125, 0.04119873046875, 0.005252838134765625, -0.0008907318115234375, -0.0196380615234375, 0.039581298828125, -0.01104736328125, -0.006988525390625, 0.01395416259765625, -0.00830841064453125, -0.0194091796875, -0.004581451416015625, 0.0209808349609375, 0.01253509521484375, -0.01552581787109375, 0.009185791015625, -0.00969696044921875, 0.0032958984375, -0.007106781005859375, 0.0007224082946777344, 0.0142059326171875, -0.015533447265625, -0.0277557373046875, 0.0228424072265625, -0.0078582763671875, -0.004589080810546875, 0.025238037109375, -0.01119232177734375, 0.05322265625, 0.04962158203125, 0.00734710693359375, -0.0418701171875, 0.035186767578125, -0.0159149169921875, -0.034576416015625, -0.0007996559143066406, 0.01122283935546875, 0.0428466796875, -0.0272369384765625, 0.0200042724609375, -0.0221710205078125, -0.000728607177734375, -0.0056915283203125, -0.01168060302734375, 0.01568603515625, 0.038543701171875, -0.0304412841796875, 0.050445556640625, 0.004459381103515625, -0.0435791015625, 0.0188140869140625, 0.0164031982421875, -0.057342529296875, -0.03887939453125, 0.01483917236328125, -0.05419921875, -0.00981903076171875, 0.01483154296875, -0.06732177734375, 0.154296875, 0.03363037109375, 0.0014476776123046875, 0.0084228515625, 0.0802001953125, -0.0902099609375, 0.018096923828125, -0.017181396484375, 0.035064697265625, -0.03924560546875, 0.01189422607421875, -0.041046142578125, 0.0001589059829711914, -0.0088043212890625, 0.027679443359375, 0.0416259765625, 0.0210723876953125, -0.024139404296875, -0.00829315185546875, -0.0011396408081054688, -0.0287933349609375, -0.042755126953125, 0.060211181640625, 0.03497314453125, 0.005374908447265625, 0.04620361328125, 0.004425048828125, 0.036285400390625, -0.008270263671875, 0.012725830078125, 0.062408447265625, 0.014678955078125, 0.00965118408203125, 0.0031261444091796875, 0.050689697265625, -0.00894927978515625, 0.005657196044921875, 0.0113372802734375, 0.0177154541015625, 0.0118255615234375, 0.042083740234375, 0.01194000244140625, 0.0033397674560546875, -0.0255126953125, -0.019073486328125, 0.0190277099609375, -0.0306854248046875, 0.005092620849609375, -0.0061798095703125, -0.00652313232421875, 0.05517578125, 0.01165771484375, -0.01290130615234375, 0.02423095703125, 0.00653076171875, 0.0189208984375, 0.044342041015625, 0.048248291015625, 0.01126861572265625, 0.003749847412109375, 0.03692626953125, 0.034942626953125, -0.0269012451171875, -0.009490966796875, -0.0017232894897460938, 0.0269775390625, 0.0256500244140625, -0.042266845703125, 0.033660888671875, 0.007068634033203125, 0.0240631103515625, 0.0225372314453125, -0.0078277587890625, 0.026763916015625, -0.0186767578125, 0.026092529296875, 0.059478759765625, -0.0181732177734375, 0.0198822021484375, -0.049041748046875, 0.0254058837890625, 0.021728515625, 0.01788330078125, -0.015838623046875, 0.05242919921875, 0.037811279296875, -0.002346038818359375, 0.00629425048828125, 0.006378173828125, 0.005741119384765625, -0.0140533447265625, -0.006862640380859375, -0.0284881591796875, 0.01593017578125, 0.03680419921875, -0.013916015625, 0.032684326171875, 0.048858642578125, 0.04876708984375, -0.0216522216796875, -0.006954193115234375, 0.023773193359375, -0.028076171875, 0.00576019287109375, -0.00028395652770996094, -0.0218963623046875, -0.01206207275390625, -0.0301055908203125, 0.0162353515625, 0.023040771484375, -0.00579833984375, -0.031494140625, 0.07275390625, -0.01367950439453125, 0.017822265625, 0.054931640625, -0.00661468505859375, 0.056427001953125, 0.00495147705078125, -0.024871826171875, 0.00652313232421875, -0.0248870849609375, -0.040496826171875, 0.004947662353515625, 0.0258941650390625, -0.0303955078125, 0.043914794921875, 0.0811767578125, -0.028656005859375, 0.04168701171875, -0.019317626953125, 0.02178955078125, 0.0208892822265625, 0.0210418701171875, 0.01525115966796875, -0.0189361572265625, -0.0140380859375, -0.0225067138671875, 0.01849365234375, 0.009552001953125, 0.04071044921875, -0.0039005279541015625, 0.016448974609375, 0.0008168220520019531, 0.02496337890625, -0.0284576416015625, 0.01428985595703125, 0.00394439697265625, -0.01059722900390625, -0.009918212890625, -0.00879669189453125, -0.0124664306640625, 0.056854248046875, -0.006137847900390625, -0.003063201904296875, 0.032501220703125, -0.032958984375, 0.007572174072265625, 0.0164031982421875, 0.0213165283203125, -0.0401611328125, -0.0533447265625, -0.06353759765625, 0.01187896728515625, 0.005462646484375, -0.00989532470703125, -0.030853271484375, 0.042633056640625, -0.0127105712890625, 0.0248870849609375, 0.0010509490966796875, -0.0316162109375, -0.025634765625, 0.0218505859375, -0.03143310546875, -0.00301361083984375, -0.032135009765625, -0.02301025390625, -0.01849365234375, 0.007122039794921875, -0.01023101806640625, -0.0014677047729492188, 0.0379638671875, -0.013580322265625, 0.0025920867919921875, 0.03472900390625, 0.0186767578125, 0.0210723876953125, -0.03277587890625, 0.0034275054931640625, -0.016998291015625, -0.0142059326171875, -0.010894775390625, -0.036865234375, -0.0104217529296875, -0.0034942626953125, -0.0056915283203125, -0.01020050048828125, 0.0224609375, 0.038787841796875, 0.038177490234375, -0.0013666152954101562, -0.07440185546875, 0.01294708251953125, -0.0255889892578125, 0.1181640625, -0.044921875, 0.009429931640625, -0.03076171875, -0.034576416015625, 0.0001958608627319336, -0.0037384033203125, -0.04400634765625, 0.041595458984375, 0.0092010498046875, -0.0221710205078125, 0.007701873779296875, -0.00482177734375, -0.0292205810546875, -0.053436279296875, -0.02667236328125, 0.00029921531677246094, 0.0260772705078125, -0.01554107666015625, 0.0261688232421875, -0.02532958984375, -0.01050567626953125, -0.042022705078125, -0.003940582275390625, -0.073486328125, -0.004970550537109375, -0.0288848876953125, -0.0010747909545898438, 0.01308441162109375, -0.0333251953125, -0.037261962890625, 0.088623046875, -0.0106964111328125, -0.006374359130859375, -0.0533447265625, -0.0032672882080078125, 0.023468017578125, -0.041961669921875, -0.022857666015625, -0.05145263671875, -0.0621337890625, 0.0238037109375, 0.0212554931640625, -0.0171356201171875, 0.01320648193359375, 0.03839111328125, -0.04412841796875, 0.026275634765625, 0.005603790283203125, -0.0297088623046875, -0.0113372802734375, 0.0148162841796875, 0.00980377197265625, 0.0301971435546875, -0.01142120361328125, -0.007389068603515625, 0.0002684593200683594, -0.03125, -0.021484375, -0.015899658203125, 0.0286712646484375, 0.04608154296875, 0.08258056640625, 0.01617431640625, -0.0017299652099609375, -0.07171630859375, -0.029937744140625, -0.0302886962890625, 0.01091766357421875, -0.032501220703125, 0.00463104248046875, -0.059722900390625, -0.02349853515625, -0.01617431640625, -0.0031757354736328125, -0.038421630859375, 0.021026611328125, -0.016357421875, -0.007099151611328125, 0.046966552734375, -0.00727081298828125, 0.0091094970703125, -0.04083251953125, 0.06695556640625, -0.03521728515625, -0.016876220703125, 0.041351318359375, 0.0064239501953125, 0.0303192138671875, 0.048858642578125, -0.009521484375, 0.0579833984375, -0.0146636962890625, 0.0008006095886230469, 0.0203857421875, 0.0007886886596679688, -0.0207366943359375, 0.0234527587890625, -0.0070037841796875, 0.0107269287109375, 0.0029087066650390625, 0.0052032470703125, 0.004886627197265625, -0.0013523101806640625, -0.01499176025390625, 0.03228759765625, -0.029541015625, -0.014129638671875, -0.0269012451171875, 0.0283660888671875, 0.012298583984375, 0.00823211669921875, 0.07415771484375, -0.033660888671875, 0.0364990234375, 0.031585693359375, 0.023468017578125, 0.040863037109375, -0.0275115966796875, -0.01328277587890625, -0.005535125732421875, -0.0226593017578125 ]
5f21c12f3a2e8f371009de4a57522e00c4aac6e0
Wordpress Stackexchange Q: What permissions does wp-content/uploads need? What is the default wp-content/uploads directory permission? What chmod command do I need to set it correctly? A: You'll want directories to have 755 and files to have 644. you can navigate to your www directory and use these 2 commands: find . -type d -print0 | xargs -0 chmod 0755 # For directories or find . -type f -print0 | xargs -0 chmod 0644 # For files (Obviously don't input the # or anything after it when using the above 2 commands)
Q: What permissions does wp-content/uploads need? What is the default wp-content/uploads directory permission? What chmod command do I need to set it correctly? A: You'll want directories to have 755 and files to have 644. you can navigate to your www directory and use these 2 commands: find . -type d -print0 | xargs -0 chmod 0755 # For directories or find . -type f -print0 | xargs -0 chmod 0644 # For files (Obviously don't input the # or anything after it when using the above 2 commands) A: You can find a full list of recommended file and folder permissions on the codex at: https://codex.wordpress.org/Changing_File_Permissions See the section entitled "Using the Command Line" for chmod commands. Otherwise, if you don't have shell access, you can also change permissions from an FTP client (outlined in codex page) or from the hosting provider's Cpanel > File Manager. (see https://www.siteground.com/tutorials/cpanel/file-permissions/ for how to edit file/folder permissions in File Manager within CPanel) In addition to the permission levels, you may need to check owner/group assigned to each file/folder. * *If you're on a shared hosting solution, chances are the default user account created for your CPanel access or similar web interface will have the proper group assignments when uploading files to run your Wordpress website. *If you are on a more custom hosting package using root access, you will more than likely need to update the file/folder owner & group attributes (since the default apache user/www user is not the "root" account). Here's a link to a blog post with steps to determine what user apache is running as: https://www.cyberciti.biz/faq/unix-osx-linux-find-apache-user/ Once you determine the user/group that apache runs as, you may need to use the chown command to recursively update owner/group to files/folders.
wordpress
{ "language": "en", "length": 291, "provenance": "stackexchange_00019.jsonl.gz:482153", "question_score": "4", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/287952" }
[ 0.020263671875, -0.01055908203125, -0.018524169921875, -0.01300048828125, -0.0016765594482421875, -0.0447998046875, 0.049591064453125, 0.00522613525390625, -0.0024318695068359375, 0.034912109375, -0.009979248046875, -0.012115478515625, 0.0289764404296875, -0.0203399658203125, 0.00705718994140625, -0.01509857177734375, 0.02069091796875, -0.0162353515625, 0.0228424072265625, -0.020172119140625, 0.0226593017578125, 0.01363372802734375, 0.02679443359375, 0.040740966796875, -0.011016845703125, 0.006870269775390625, -0.00983428955078125, -0.01092529296875, -0.016754150390625, -0.03399658203125, -0.004550933837890625, 0.04656982421875, 0.050384521484375, -0.0286865234375, 0.0009918212890625, 0.0266571044921875, -0.00939178466796875, -0.0020008087158203125, -0.00371551513671875, 0.008575439453125, 0.00357818603515625, 0.002613067626953125, 0.061676025390625, 0.0142364501953125, 0.004302978515625, -0.02130126953125, 0.00390625, -0.043701171875, 0.0310821533203125, -0.0012264251708984375, -0.0222015380859375, -0.0033321380615234375, -0.0272216796875, -0.034576416015625, -0.00998687744140625, -0.0298614501953125, 0.047332763671875, -0.00449371337890625, 0.055145263671875, -0.09307861328125, -0.0806884765625, -0.039581298828125, 0.050506591796875, 0.0322265625, 0.001964569091796875, -0.017547607421875, 0.0013551712036132812, 0.031097412109375, -0.064208984375, -0.006252288818359375, 0.03790283203125, -0.0300140380859375, 0.0206756591796875, -0.063720703125, 0.03289794921875, 0.0277862548828125, -0.03192138671875, -0.034576416015625, 0.0252532958984375, -0.006175994873046875, 0.005359649658203125, -0.0027332305908203125, -0.002956390380859375, -0.03387451171875, 0.0279998779296875, -0.0180206298828125, 0.001148223876953125, -0.0116729736328125, 0.0208587646484375, -0.0011243820190429688, -0.00238800048828125, 0.039703369140625, 0.01326751708984375, -0.0027217864990234375, -0.04534912109375, -0.035400390625, 0.0288238525390625, 0.028533935546875, -0.01140594482421875, -0.01016998291015625, 0.00580596923828125, -0.041046142578125, 0.020599365234375, -0.02545166015625, 0.0343017578125, 0.008453369140625, -0.032135009765625, -0.0614013671875, 0.04119873046875, 0.0248870849609375, -0.0164794921875, 0.034088134765625, 0.0256500244140625, -0.00626373291015625, -0.0200958251953125, -0.01348114013671875, -0.00220489501953125, 0.0210113525390625, 0.00612640380859375, 0.006572723388671875, -0.00470733642578125, 0.033355712890625, -0.0242156982421875, -0.0294036865234375, -0.00045418739318847656, -0.015228271484375, -0.0145416259765625, 0.00669097900390625, -0.00678253173828125, 0.06988525390625, -0.0287628173828125, -0.0219573974609375, 0.0290679931640625, -0.0155181884765625, -0.0214691162109375, -0.04510498046875, 0.005130767822265625, -0.0032291412353515625, -0.0093841552734375, 0.0297698974609375, -0.0248870849609375, -0.022857666015625, 0.05609130859375, -0.0253448486328125, -0.003673553466796875, 0.0188751220703125, 0.0276031494140625, 0.03167724609375, -0.031524658203125, -0.08258056640625, 0.03765869140625, 0.0246124267578125, 0.0265655517578125, -0.023284912109375, -0.0073699951171875, -0.06915283203125, -0.01462554931640625, -0.0298004150390625, 0.02471923828125, -0.031005859375, 0.00972747802734375, 0.008209228515625, 0.0290985107421875, -0.00018310546875, -0.0128173828125, -0.032684326171875, -0.029541015625, -0.00487518310546875, 0.0175018310546875, 0.002254486083984375, 0.005733489990234375, -0.0550537109375, -0.01580810546875, 0.0017404556274414062, -0.00240325927734375, 0.038543701171875, 0.040283203125, -0.002899169921875, -0.0150604248046875, 0.0963134765625, 0.03558349609375, -0.0077667236328125, 0.0206146240234375, 0.00852203369140625, -0.021759033203125, -0.006237030029296875, -0.0014438629150390625, -0.00323486328125, 0.009979248046875, 0.00672149658203125, 0.042724609375, 0.0006155967712402344, -0.08349609375, 0.0034694671630859375, -0.03070068359375, 0.015838623046875, -0.04638671875, 0.006549835205078125, -0.0190887451171875, 0.0184326171875, 0.019378662109375, -0.0198516845703125, 0.01230621337890625, -0.0030689239501953125, -0.006500244140625, -0.021453857421875, 0.000675201416015625, -0.00833892822265625, 0.00769805908203125, -0.0355224609375, -0.007617950439453125, -0.006870269775390625, 0.002532958984375, -0.0745849609375, -0.0633544921875, 0.0287933349609375, -0.04461669921875, 0.0177154541015625, -0.02630615234375, 0.0572509765625, -0.041046142578125, -0.0322265625, -0.0269775390625, 0.01557159423828125, 0.043212890625, -0.001422882080078125, -0.01568603515625, -0.01247406005859375, 0.06695556640625, -0.0062103271484375, 0.03399658203125, 0.00832366943359375, 0.004276275634765625, 0.023345947265625, -0.0128936767578125, -0.01617431640625, -0.01100921630859375, -0.08734130859375, 0.016326904296875, 0.054931640625, 0.033721923828125, 0.035675048828125, 0.0039520263671875, 0.01800537109375, 0.058868408203125, 0.01776123046875, 0.039093017578125, -0.0269927978515625, 0.0093994140625, 0.0341796875, -0.01042938232421875, -0.0173797607421875, 0.0140228271484375, -0.05914306640625, 0.00824737548828125, 0.0232086181640625, -0.0277099609375, -0.0394287109375, -0.020599365234375, 0.0301971435546875, 0.00652313232421875, -0.03143310546875, -0.00698089599609375, -0.01500701904296875, -0.013763427734375, 0.006031036376953125, -0.018310546875, -0.0092620849609375, -0.032958984375, 0.03485107421875, 0.0193634033203125, -0.0628662109375, 0.0011081695556640625, 0.0401611328125, 0.03936767578125, -0.00994110107421875, -0.0220794677734375, -0.0156402587890625, 0.008270263671875, 0.0282745361328125, -0.0310211181640625, 0.0173797607421875, -0.042816162109375, -0.0020961761474609375, -0.03948974609375, -0.0360107421875, 0.015869140625, 0.0170440673828125, 0.0077972412109375, -0.01523590087890625, 0.0167236328125, 0.01276397705078125, -0.025543212890625, 0.05615234375, 0.0045013427734375, -0.028289794921875, 0.037750244140625, -0.04010009765625, 0.0380859375, -0.035003662109375, 0.012359619140625, 0.043304443359375, -0.0189361572265625, 0.004169464111328125, 0.0109710693359375, 0.0110931396484375, 0.031341552734375, 0.0235595703125, 0.0033206939697265625, 0.0096588134765625, -0.045135498046875, -0.01898193359375, -0.01155853271484375, -0.00994110107421875, -0.04058837890625, -0.0290679931640625, -0.042877197265625, -0.031005859375, -0.1214599609375, -0.07330322265625, -0.00921630859375, -0.06060791015625, -0.00310516357421875, -0.01568603515625, -0.0352783203125, -0.00792694091796875, 0.0195770263671875, -0.0184173583984375, -0.036895751953125, 0.002460479736328125, -0.01299285888671875, -0.0305328369140625, -0.0270843505859375, 0.01177215576171875, -0.0089874267578125, 0.0160980224609375, -0.004810333251953125, 0.0440673828125, -0.0267791748046875, -0.04736328125, -0.053375244140625, 0.00525665283203125, -0.0195770263671875, -0.033355712890625, -0.00206756591796875, -0.0016078948974609375, 0.007312774658203125, 0.0012407302856445312, 0.0283660888671875, 0.034271240234375, -0.027191162109375, -0.013946533203125, -0.01514434814453125, -0.04913330078125, -0.015838623046875, 0.044342041015625, 0.015960693359375, -0.04290771484375, 0.0177459716796875, -0.07623291015625, -0.0084991455078125, -0.016693115234375, -0.03692626953125, 0.0236968994140625, 0.0003981590270996094, 0.004299163818359375, -0.01605224609375, 0.0323486328125, 0.0360107421875, 0.07440185546875, -0.03533935546875, 0.01812744140625, 0.03564453125, 0.0006208419799804688, 0.01029205322265625, 0.0188751220703125, 0.02593994140625, -0.0364990234375, 0.0050048828125, -0.002666473388671875, -0.0107269287109375, -0.02996826171875, 0.006175994873046875, -0.0616455078125, -0.07720947265625, 0.054443359375, -0.0287933349609375, 0.0016222000122070312, -0.05426025390625, -0.0236663818359375, -0.028472900390625, 0.08197021484375, -0.034820556640625, -0.0171966552734375, 0.007354736328125, 0.01238250732421875, -0.029296875, -0.046661376953125, -0.0219879150390625, -0.01186370849609375, -0.01351165771484375, 0.00594329833984375, 0.00214385986328125, -0.00795745849609375, -0.00273895263671875, -0.1375732421875, -0.02862548828125, -0.035980224609375, 0.03936767578125, -0.040252685546875, 0.020538330078125, -0.0007748603820800781, 0.008758544921875, -0.01430511474609375, -0.0182037353515625, -0.02685546875, -0.11932373046875, -0.0423583984375, 0.0318603515625, 0.0714111328125, -0.020355224609375, 0.00873565673828125, -0.01346588134765625, 0.08843994140625, -0.00774383544921875, -0.016845703125, 0.00893402099609375, 0.0073394775390625, -0.00812530517578125, -0.01158905029296875, 0.00982666015625, -0.0404052734375, -0.00567626953125, -0.033172607421875, -0.020538330078125, -0.01102447509765625, -0.023712158203125, 0.036285400390625, -0.0100555419921875, -0.0007963180541992188, -0.052581787109375, -0.028961181640625, -0.05950927734375, -0.005039215087890625, -0.021453857421875, -0.00659942626953125, -0.0281524658203125, -0.06671142578125, 0.07568359375, -0.033233642578125, -0.0167236328125, -0.007480621337890625, 0.08349609375, 0.003204345703125, -0.012939453125, -0.0291595458984375, -0.0035648345947265625, 0.01009368896484375, 0.01300048828125, 0.07177734375, 0.037506103515625, 0.01090240478515625, 0.005619049072265625, 0.01389312744140625, -0.01538848876953125, -0.0100860595703125, 0.025115966796875, 0.022613525390625, -0.00801849365234375, -0.0162200927734375, -0.0078582763671875, 0.0546875, -0.045074462890625, -0.0115966796875, 0.032867431640625, 0.01544952392578125, 0.0032501220703125, 0.0175628662109375, -0.0078887939453125, -0.01165771484375, -0.042633056640625, 0.01263427734375, -0.01439666748046875, 0.040008544921875, 0.00978851318359375, -0.0069580078125, 0.056304931640625, 0.045318603515625, -0.002712249755859375, -0.0085601806640625, -0.0004627704620361328, 0.0109100341796875, 0.01483154296875, 0.040069580078125, 0.022186279296875, -0.033843994140625, 0.0081024169921875, 0.037109375, -0.005741119384765625, -0.04156494140625, -0.032379150390625, 0.0068817138671875, 0.006988525390625, 0.0262298583984375, -0.0204925537109375, 0.00908660888671875, 0.00916290283203125, -0.034820556640625, -0.00798797607421875, -0.00861358642578125, -0.018768310546875, -0.045166015625, -0.006618499755859375, -0.007022857666015625, -0.0231781005859375, 0.0299530029296875, -0.0303955078125, -0.009124755859375, -0.020660400390625, 0.0006875991821289062, 0.0183563232421875, 0.0297088623046875, 0.0154876708984375, -0.0011701583862304688, 0.0311737060546875, -0.01910400390625, 0.003570556640625, 0.0304412841796875, -0.020172119140625, -0.01316070556640625, 0.0230865478515625, 0.037811279296875, -0.0139312744140625, -0.01494598388671875, 0.00829315185546875, -0.035125732421875, 0.0191497802734375, -0.0545654296875, -0.05303955078125, -0.01253509521484375, 0.01549530029296875, -0.0021648406982421875, -0.004520416259765625, -0.01241302490234375, -0.001804351806640625, 0.0478515625, -0.027130126953125, 0.00896453857421875, 0.0313720703125, -0.03240966796875, -0.0174713134765625, -0.0218353271484375, 0.03118896484375, 0.00047206878662109375, 0.0031032562255859375, -0.05517578125, -0.01837158203125, -0.033966064453125, 0.00909423828125, 0.07696533203125, -0.023773193359375, 0.0108184814453125, -0.0129852294921875, 0.00948333740234375, 0.0303497314453125, 0.0323486328125, 0.0018377304077148438, -0.01873779296875, -0.040863037109375, -0.005939483642578125, -0.055267333984375, -0.020782470703125, 0.037322998046875, -0.0016870498657226562, -0.0400390625, -0.038116455078125, -0.004978179931640625, -0.00787353515625, 0.0051116943359375, 0.0160675048828125, -0.040435791015625, 0.0604248046875, 0.032928466796875, 0.035675048828125, -0.03497314453125, 0.042388916015625, 0.021759033203125, 0.0002015829086303711, 0.00604248046875, 0.0224761962890625, 0.037322998046875, -0.03338623046875, 0.0208587646484375, 0.030120849609375, -0.01861572265625, -0.0282135009765625, 0.039215087890625, -0.00894927978515625, 0.040283203125, -0.003948211669921875, 0.014434814453125, -0.0289306640625, 0.0005049705505371094, -0.028656005859375, 0.04193115234375, -0.072021484375, -0.035858154296875, 0.006805419921875, -0.003082275390625, 0.085693359375, -0.00144195556640625, -0.01904296875, 0.042877197265625, -0.028961181640625, 0.051971435546875, 0.043365478515625, -0.001621246337890625, 0.04083251953125, 0.079833984375, -0.006023406982421875, 0.05047607421875, 0.029998779296875, 0.01126861572265625, 0.01398468017578125, 0.03436279296875, 0.015960693359375, -0.037841796875, 0.06597900390625, 0.0255126953125, -0.0094757080078125, 0.05029296875, -0.0280303955078125, 0.0294342041015625, 0.042449951171875, 0.0745849609375, -0.050933837890625, -0.0021533966064453125, -0.00424957275390625, -0.037872314453125, 0.052215576171875, -0.0029544830322265625, -0.00885009765625, -0.0149078369140625, 0.03509521484375, -0.0322265625, -0.0225067138671875, 0.004528045654296875, -0.01139068603515625, -0.0140380859375, 0.005947113037109375, -0.00020253658294677734, 0.006214141845703125, 0.037811279296875, -0.0218505859375, -0.02197265625, 0.0280303955078125, 0.0205230712890625, 0.047760009765625, -0.038299560546875, -0.0025653839111328125, 0.0000749826431274414, 0.002254486083984375, -0.02020263671875, -0.04046630859375, 0.0017595291137695312, -0.03515625, 0.0006432533264160156, 0.045684814453125, -0.05340576171875, 0.044708251953125, 0.014129638671875, -0.0099029541015625, -0.0396728515625, -0.01177978515625, 0.03924560546875, 0.0142669677734375, -0.07183837890625, 0.026031494140625, -0.043487548828125, -0.017974853515625, 0.01226043701171875, -0.003955841064453125, 0.01392364501953125, -0.09246826171875, 0.0181121826171875, 0.053497314453125, 0.002536773681640625, 0.00010794401168823242, -0.0021266937255859375, 0.046600341796875, -0.05615234375, -0.0088348388671875, -0.0007486343383789062, 0.0011720657348632812, -0.01029205322265625, -0.000016868114471435547, 0.0012979507446289062, 0.047515869140625, -0.0178375244140625, -0.043853759765625, 0.059539794921875, 0.0211029052734375, -0.05718994140625, -0.00553131103515625, -0.033050537109375, 0.03668212890625, 0.0032444000244140625, 0.0157623291015625, -0.0850830078125, -0.016754150390625, -0.0271148681640625, 0.04949951171875, 0.07867431640625, 0.027069091796875, -0.026397705078125, -0.0214996337890625, 0.043914794921875, 0.055328369140625, -0.003082275390625, 0.025970458984375, -0.01416015625, 0.01010894775390625, -0.0043487548828125, -0.045013427734375, 0.0020084381103515625, -0.01441192626953125, -0.0256805419921875, 0.0218963623046875, 0.01386260986328125, 0.0033054351806640625, 0.00095367431640625, 0.04339599609375, -0.032928466796875, 0.00025963783264160156, 0.032196044921875, 0.00189971923828125, -0.00928497314453125, 0.0540771484375, 0.063720703125, -0.064208984375, -0.0257110595703125, -0.032501220703125, 0.0616455078125, 0.01323699951171875, 0.019866943359375, 0.0290985107421875, 0.01302337646484375, 0.001644134521484375, 0.00852203369140625, 0.012603759765625, 0.01285552978515625, -0.01000213623046875, 0.01375579833984375, 0.01971435546875, 0.01334381103515625, -0.0240936279296875, 0.0250701904296875, -0.0098419189453125, 0.00983428955078125, -0.026397705078125, -0.0138702392578125, 0.028289794921875, 0.0132904052734375, -0.02490234375, -0.02239990234375, -0.0214080810546875, -0.0164947509765625, 0.0168304443359375, -0.047760009765625, 0.0005464553833007812, 0.040557861328125, -0.02264404296875, -0.0159759521484375, -0.01885986328125, 0.0131378173828125, 0.0201873779296875, 0.0034885406494140625, -0.01739501953125, -0.0134124755859375, -0.02947998046875, -0.0081024169921875, 0.031341552734375, 0.033416748046875, 0.034820556640625, 0.0268402099609375, 0.03131103515625, -0.006561279296875, -0.01171875, -0.030975341796875, -0.07586669921875, 0.0225677490234375, 0.0400390625, 0.033966064453125, 0.007389068603515625, 0.0172119140625, 0.0034847259521484375, -0.019805908203125, 0.014678955078125, -0.01287078857421875, -0.021697998046875, -0.0206756591796875, -0.0159454345703125, 0.026763916015625, 0.034393310546875, 0.01145172119140625, -0.0180206298828125, 0.0394287109375, 0.050445556640625, -0.021881103515625, 0.0032329559326171875, 0.0005097389221191406, -0.042327880859375, 0.036651611328125, -0.0166168212890625, 0.060943603515625, -0.0160064697265625, -0.0024585723876953125, 0.0225982666015625, -0.0090484619140625, -0.055419921875, 0.019775390625, 0.0433349609375, -0.0015821456909179688, -0.0210418701171875, -0.037750244140625, -0.0291748046875, -0.0191650390625, 0.048187255859375, -0.0139923095703125, 0.0380859375, 0.0386962890625, -0.013092041015625, -0.04095458984375, -0.0325927734375, -0.003238677978515625, 0.037933349609375, 0.0221710205078125, 0.0592041015625, -0.00235748291015625, 0.0197601318359375, 0.020751953125, -0.013458251953125, -0.0011234283447265625, 0.007297515869140625, 0.04730224609375, -0.006496429443359375, -0.014984130859375, -0.0284423828125, -0.006374359130859375, 0.0123748779296875, 0.0016851425170898438, -0.035980224609375, -0.0074920654296875, -0.0285797119140625, 0.0255584716796875, 0.0245513916015625, 0.0163116455078125, -0.0430908203125, -0.06475830078125, -0.08734130859375, 0.0080413818359375, 0.021820068359375, -0.0037899017333984375, -0.061492919921875, 0.027069091796875, -0.025177001953125, -0.03924560546875, 0.0228271484375, -0.044830322265625, 0.029266357421875, 0.037384033203125, -0.019775390625, -0.035186767578125, -0.01593017578125, -0.01348114013671875, -0.021392822265625, 0.01238250732421875, -0.0014581680297851562, 0.0017709732055664062, -0.007076263427734375, -0.038543701171875, -0.0171356201171875, -0.00016117095947265625, -0.035186767578125, -0.00214385986328125, -0.029876708984375, 0.007411956787109375, 0.0236053466796875, -0.044891357421875, -0.0084686279296875, 0.003814697265625, -0.01447296142578125, 0.0172882080078125, -0.0005669593811035156, -0.0335693359375, -0.035980224609375, 0.002685546875, 0.05169677734375, 0.0118865966796875, -0.0465087890625, 0.04302978515625, -0.0267181396484375, -0.0124359130859375, 0.0345458984375, 0.0248565673828125, -0.0261077880859375, -0.00897216796875, -0.036041259765625, 0.0029926300048828125, -0.034637451171875, 0.0088958740234375, 0.00974273681640625, 0.021392822265625, 0.0156097412109375, -0.0338134765625, 0.0130767822265625, 0.054473876953125, 0.0302886962890625, 0.0977783203125, 0.033843994140625, -0.0223236083984375, 0.024139404296875, -0.039764404296875, -0.02923583984375, -0.0082855224609375, 0.034332275390625, -0.09503173828125, -0.0501708984375, -0.029754638671875, 0.0068206787109375, 0.001537322998046875, -0.03448486328125, -0.047271728515625, 0.035369873046875, -0.0188140869140625, -0.027313232421875, 0.0266265869140625, -0.0020885467529296875, -0.0232391357421875, 0.018768310546875, 0.007724761962890625, 0.00370025634765625, -0.005672454833984375, 0.0085601806640625, 0.0085296630859375, -0.042724609375, 0.0215301513671875, 0.004222869873046875, -0.03460693359375, 0.0256500244140625, 0.038604736328125, -0.0205078125, 0.051300048828125, -0.0160064697265625, 0.02618408203125, 0.07159423828125, -0.0261077880859375, -0.0020771026611328125, -0.041259765625, -0.06085205078125, -0.037628173828125, 0.00403594970703125, -0.02166748046875, -0.00479888916015625, 0.062286376953125, 0.08502197265625, 0.00042700767517089844, -0.0226287841796875, 0.00791168212890625, -0.0777587890625, -0.0162811279296875, 0.005771636962890625, 0.0018825531005859375, -0.029937744140625, 0.0222930908203125, 0.03961181640625, -0.0138397216796875, -0.0232086181640625, 0.004650115966796875, -0.040008544921875, -0.0034694671630859375, -0.0308074951171875, -0.03228759765625, -0.020263671875, 0.02191162109375, 0.04412841796875, -0.017578125, 0.0384521484375, -0.006351470947265625, 0.00569915771484375, 0.038787841796875, 0.0009760856628417969, -0.005535125732421875, 0.0186920166015625, -0.057769775390625, 0.002086639404296875, -0.00614166259765625, 0.033355712890625, -0.025848388671875, -0.01291656494140625, 0.015899658203125, 0.005809783935546875, -0.0079803466796875, 0.0259857177734375, -0.00030994415283203125, -0.0052642822265625, -0.037445068359375, 0.04205322265625, -0.02093505859375, -0.02581787109375, -0.0311279296875, 0.029205322265625, -0.0250396728515625, -0.000690460205078125, 0.039093017578125, -0.041107177734375, 0.0133819580078125, -0.0088043212890625, 0.0121612548828125, -0.043243408203125, 0.01422119140625, 0.0038242340087890625, -0.00620269775390625, 0.0162811279296875 ]
ab91704c442c254e62dc6199bb540b88027b997f
Wordpress Stackexchange Q: Custom permalink with pagination I have a custom post type called news and in order to distinguish current and old news posts I have a custom field where the client can mark a news post as 'archived'. So my permalink rewrite code looks like this: function custom_rewrite_rule() { add_rewrite_rule('^news/archive/?','index.php?post_type=news‌​&news_archive=true',‌​'top'); add_rewrite_rule('^news/archive/page/([0-9]+)?/?$','index.php?post_type=news&news_archive=true&paged=$matches[1]','top'); } add_action('init', 'custom_rewrite_rule', 10, 0); function add_query_vars_filter( $vars ){ $vars[] = "news_archive"; return $vars; } add_filter( 'query_vars', 'add_query_vars_filter' ); The first bit works but the problem is with the pagination. I can access the news_archive query_var but not the paged query_var. What is the correct way to incorporate paged into this permalink rewrite? A: The problem is that your first rule is capturing anything that begins with news/archive/. Add the $ anchor to match only news/archive/: add_rewrite_rule( '^news/archive/?$', 'index.php?post_type=news&news_archive=true', 'top' ); Your pagination rule will then begin to work as-is after you flush permalinks.
Q: Custom permalink with pagination I have a custom post type called news and in order to distinguish current and old news posts I have a custom field where the client can mark a news post as 'archived'. So my permalink rewrite code looks like this: function custom_rewrite_rule() { add_rewrite_rule('^news/archive/?','index.php?post_type=news‌​&news_archive=true',‌​'top'); add_rewrite_rule('^news/archive/page/([0-9]+)?/?$','index.php?post_type=news&news_archive=true&paged=$matches[1]','top'); } add_action('init', 'custom_rewrite_rule', 10, 0); function add_query_vars_filter( $vars ){ $vars[] = "news_archive"; return $vars; } add_filter( 'query_vars', 'add_query_vars_filter' ); The first bit works but the problem is with the pagination. I can access the news_archive query_var but not the paged query_var. What is the correct way to incorporate paged into this permalink rewrite? A: The problem is that your first rule is capturing anything that begins with news/archive/. Add the $ anchor to match only news/archive/: add_rewrite_rule( '^news/archive/?$', 'index.php?post_type=news&news_archive=true', 'top' ); Your pagination rule will then begin to work as-is after you flush permalinks.
wordpress
{ "language": "en", "length": 145, "provenance": "stackexchange_00019.jsonl.gz:482182", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/288050" }
[ 0.0771484375, -0.0212860107421875, 0.044830322265625, -0.04241943359375, -0.01209259033203125, -0.00391387939453125, 0.051483154296875, -0.01178741455078125, -0.03466796875, 0.0103759765625, 0.0175323486328125, -0.019805908203125, -0.004062652587890625, -0.046600341796875, 0.0206756591796875, -0.00772857666015625, 0.03192138671875, -0.0284881591796875, 0.00432586669921875, -0.0174560546875, 0.01302337646484375, -0.004932403564453125, 0.034637451171875, 0.036224365234375, 0.0262603759765625, 0.00189208984375, 0.0751953125, -0.03070068359375, 0.019775390625, -0.0174560546875, 0.02001953125, -0.0251922607421875, 0.0253448486328125, -0.00952911376953125, 0.026214599609375, 0.00928497314453125, 0.01352691650390625, -0.0026721954345703125, 0.01276397705078125, 0.01047515869140625, 0.016082763671875, -0.0186767578125, 0.022705078125, -0.0002713203430175781, 0.0016336441040039062, -0.01232147216796875, 0.00872039794921875, -0.0426025390625, -0.0065155029296875, 0.005168914794921875, 0.003772735595703125, 0.030853271484375, -0.0015115737915039062, 0.035858154296875, 0.0112762451171875, 0.0202789306640625, 0.023345947265625, -0.0447998046875, 0.03302001953125, -0.0286407470703125, -0.02264404296875, -0.0161285400390625, 0.040191650390625, 0.00844573974609375, -0.017913818359375, -0.009429931640625, 0.03497314453125, 0.0075531005859375, -0.03265380859375, -0.045074462890625, 0.025665283203125, 0.0013132095336914062, 0.01517486572265625, -0.039581298828125, -0.0173797607421875, -0.005279541015625, 0.035614013671875, -0.01036834716796875, -0.0185089111328125, -0.022674560546875, -0.008209228515625, 0.004932403564453125, -0.022247314453125, -0.044586181640625, 0.0172271728515625, -0.0379638671875, -0.0164642333984375, 0.0007805824279785156, -0.03497314453125, -0.042083740234375, -0.01239776611328125, -0.0293121337890625, -0.034271240234375, -0.0242156982421875, -0.0038204193115234375, -0.031036376953125, 0.0208587646484375, 0.0721435546875, -0.032928466796875, -0.004253387451171875, 0.00047016143798828125, -0.021270751953125, 0.030364990234375, -0.057586669921875, 0.030517578125, 0.0295257568359375, 0.0196075439453125, 0.059661865234375, 0.07525634765625, -0.00494384765625, 0.004344940185546875, 0.09478759765625, -0.00861358642578125, 0.01245880126953125, -0.038726806640625, 0.00848388671875, -0.0306854248046875, -0.02337646484375, -0.01041412353515625, -0.0007495880126953125, -0.01102447509765625, 0.01441192626953125, -0.00677490234375, -0.007305145263671875, -0.01904296875, -0.018280029296875, 0.01073455810546875, -0.01995849609375, 0.04949951171875, 0.0606689453125, -0.0254058837890625, -0.0105438232421875, -0.0169677734375, -0.007213592529296875, -0.00891876220703125, -0.0258331298828125, 0.0552978515625, -0.0543212890625, -0.0217132568359375, 0.0282440185546875, 0.0009603500366210938, -0.031524658203125, -0.0203094482421875, 0.004619598388671875, 0.03253173828125, 0.04144287109375, 0.03448486328125, 0.00485992431640625, -0.0196075439453125, -0.03729248046875, 0.0037288665771484375, -0.0440673828125, 0.05206298828125, -0.035980224609375, -0.042266845703125, -0.0543212890625, -0.0128326416015625, -0.01551055908203125, -0.00771331787109375, -0.0215301513671875, 0.049163818359375, 0.0004527568817138672, -0.0121002197265625, -0.05914306640625, -0.07501220703125, -0.0223388671875, -0.06512451171875, 0.0003058910369873047, 0.01332855224609375, 0.006938934326171875, 0.01415252685546875, -0.01105499267578125, -0.0087127685546875, -0.005405426025390625, -0.0089569091796875, -0.00969696044921875, 0.0180816650390625, 0.015960693359375, -0.022735595703125, 0.0726318359375, 0.0260772705078125, -0.0240936279296875, 0.00507354736328125, -0.003173828125, -0.072998046875, 0.051666259765625, 0.017578125, 0.0726318359375, -0.007404327392578125, 0.01038360595703125, 0.040679931640625, 0.032196044921875, -0.0137481689453125, -0.02178955078125, 0.012420654296875, -0.0231170654296875, 0.0235137939453125, -0.0166015625, 0.0036602020263671875, 0.0247039794921875, -0.0123748779296875, 0.0220947265625, -0.0135040283203125, 0.01277923583984375, -0.06085205078125, 0.0252838134765625, -0.030517578125, 0.03924560546875, -0.031890869140625, 0.02490234375, 0.033233642578125, 0.0160980224609375, -0.0282745361328125, -0.03692626953125, -0.0006694793701171875, 0.0215911865234375, -0.004581451416015625, -0.0008940696716308594, -0.03460693359375, 0.0172271728515625, -0.00153350830078125, -0.0308685302734375, -0.011749267578125, 0.0467529296875, 0.053863525390625, -0.01800537109375, -0.023895263671875, -0.025970458984375, -0.0099029541015625, 0.0011501312255859375, -0.07891845703125, 0.0745849609375, 0.025177001953125, 0.022979736328125, -0.0189208984375, 0.0015420913696289062, -0.03363037109375, -0.042083740234375, -0.0139312744140625, 0.051544189453125, 0.0196075439453125, 0.0234375, -0.01763916015625, 0.006320953369140625, 0.018768310546875, 0.0094757080078125, 0.02581787109375, -0.01204681396484375, -0.02490234375, 0.040130615234375, 0.031280517578125, 0.02020263671875, -0.0023708343505859375, -0.049560546875, -0.0132293701171875, 0.032928466796875, 0.0217742919921875, 0.050994873046875, -0.040771484375, 0.0268402099609375, -0.01285552978515625, 0.052398681640625, 0.0008144378662109375, 0.0096588134765625, 0.025604248046875, 0.000980377197265625, 0.01410675048828125, 0.00742340087890625, -0.0164794921875, 0.01312255859375, 0.00757598876953125, -0.01514434814453125, 0.0037441253662109375, 0.01047515869140625, 0.0131988525390625, -0.017486572265625, -0.022003173828125, 0.0196685791015625, 0.025604248046875, -0.01329803466796875, 0.003269195556640625, 0.047760009765625, 0.01580810546875, -0.00998687744140625, -0.0169219970703125, -0.0413818359375, -0.0011434555053710938, -0.001556396484375, 0.0034046173095703125, -0.0003905296325683594, 0.0023899078369140625, 0.0294342041015625, -0.01108551025390625, 0.0198516845703125, 0.033294677734375, -0.011810302734375, -0.0211639404296875, -0.031951904296875, 0.061279296875, -0.04241943359375, 0.015289306640625, 0.059722900390625, -0.0260009765625, 0.019866943359375, 0.0035762786865234375, -0.006641387939453125, -0.01010894775390625, 0.019134521484375, -0.004375457763671875, 0.00568389892578125, -0.061798095703125, 0.020904541015625, 0.0211334228515625, 0.01464080810546875, 0.0308990478515625, -0.0178070068359375, 0.023223876953125, 0.0192413330078125, -0.03753662109375, -0.06646728515625, 0.030120849609375, -0.07403564453125, -0.004940032958984375, 0.01751708984375, -0.03216552734375, -0.039093017578125, 0.0501708984375, -0.00791168212890625, -0.0006985664367675781, 0.00830841064453125, -0.08135986328125, -0.041748046875, -0.09002685546875, 0.01934814453125, -0.01189422607421875, 0.046051025390625, 0.0012617111206054688, 0.05419921875, -0.0034160614013671875, -0.08746337890625, 0.00493621826171875, -0.0335693359375, -0.0272064208984375, 0.02264404296875, -0.01450347900390625, -0.0096282958984375, -0.0071563720703125, -0.00748443603515625, 0.0863037109375, 0.04852294921875, -0.041107177734375, 0.035675048828125, -0.0085601806640625, -0.027191162109375, 0.0034046173095703125, 0.057373046875, 0.030670166015625, 0.00887298583984375, 0.04388427734375, -0.0282440185546875, -0.060882568359375, -0.0018444061279296875, -0.055206298828125, -0.00885772705078125, 0.0419921875, 0.0180206298828125, -0.02374267578125, 0.035308837890625, -0.0262603759765625, -0.00424957275390625, 0.043914794921875, -0.047576904296875, 0.041290283203125, -0.0206756591796875, -0.0230712890625, -0.03533935546875, 0.051727294921875, -0.0248870849609375, 0.06988525390625, 0.051483154296875, -0.034210205078125, -0.0016069412231445312, 0.004306793212890625, 0.0094146728515625, -0.049407958984375, 0.038482666015625, -0.04547119140625, -0.037628173828125, -0.024688720703125, -0.0088958740234375, -0.0015277862548828125, 0.038299560546875, -0.059356689453125, -0.01357269287109375, -0.002704620361328125, -0.0011234283447265625, 0.03863525390625, -0.01483154296875, 0.0031490325927734375, -0.03204345703125, -0.051116943359375, -0.01335906982421875, -0.01508331298828125, -0.03240966796875, -0.007366180419921875, -0.006847381591796875, -0.0293426513671875, -0.0299835205078125, 0.046783447265625, 0.0151214599609375, -0.0015344619750976562, 0.06085205078125, -0.003734588623046875, 0.0201568603515625, -0.06719970703125, 0.0220947265625, -0.11126708984375, -0.0157928466796875, -0.01139068603515625, 0.08343505859375, 0.02801513671875, -0.053741455078125, -0.0207977294921875, 0.045654296875, -0.004520416259765625, -0.0265960693359375, 0.0152130126953125, -0.004604339599609375, -0.0139923095703125, 0.04376220703125, -0.01332855224609375, -0.004245758056640625, 0.01263427734375, 0.014923095703125, -0.00522613525390625, -0.0248260498046875, -0.059783935546875, -0.03521728515625, -0.00817108154296875, -0.044952392578125, -0.08221435546875, -0.0114898681640625, -0.013671875, -0.01421356201171875, 0.0230712890625, -0.05377197265625, -0.0016965866088867188, -0.0733642578125, 0.006053924560546875, 0.00021564960479736328, -0.03253173828125, 0.01454925537109375, 0.0537109375, 0.0238800048828125, -0.0101318359375, -0.01020050048828125, 0.0171966552734375, 0.0233306884765625, -0.016876220703125, 0.03924560546875, 0.018707275390625, -0.00580596923828125, 0.0249786376953125, -0.03485107421875, 0.000904083251953125, -0.0037593841552734375, -0.0299530029296875, -0.00531005859375, -0.0183563232421875, 0.0003573894500732422, -0.01552581787109375, 0.06829833984375, 0.0136566162109375, -0.021697998046875, -0.01158905029296875, -0.0191497802734375, 0.05926513671875, -0.0167999267578125, 0.040802001953125, -0.046234130859375, -0.00372314453125, 0.00736236572265625, 0.012939453125, 0.0968017578125, 0.0024585723876953125, -0.004253387451171875, 0.03558349609375, 0.0227203369140625, 0.0176544189453125, 0.016510009765625, 0.0248260498046875, -0.0082855224609375, 0.04290771484375, -0.006992340087890625, 0.000926971435546875, -0.0226593017578125, -0.007579803466796875, 0.03778076171875, 0.0006494522094726562, -0.0114593505859375, -0.0159149169921875, -0.022064208984375, 0.01377105712890625, 0.010223388671875, -0.01007843017578125, 0.032928466796875, 0.013916015625, -0.0290374755859375, 0.0257568359375, -0.0120697021484375, -0.015655517578125, -0.042572021484375, 0.0460205078125, 0.019866943359375, -0.0032215118408203125, -0.025299072265625, 0.051361083984375, 0.0243682861328125, -0.002132415771484375, -0.0088043212890625, 0.0118408203125, 0.01448822021484375, 0.04266357421875, 0.01151275634765625, -0.0107574462890625, -0.0265960693359375, 0.048553466796875, 0.0108489990234375, -0.0083465576171875, -0.021881103515625, 0.044342041015625, 0.049102783203125, -0.0031890869140625, 0.016021728515625, -0.03363037109375, -0.0254364013671875, -0.026458740234375, 0.00311279296875, -0.0024242401123046875, -0.020233154296875, -0.02618408203125, -0.018463134765625, 0.0031948089599609375, 0.006710052490234375, -0.02337646484375, 0.021697998046875, -0.0650634765625, 0.0254058837890625, 0.043487548828125, 0.0061187744140625, -0.01375579833984375, -0.036468505859375, 0.05322265625, -0.0244293212890625, 0.0189056396484375, -0.012908935546875, 0.02911376953125, -0.06182861328125, -0.01435089111328125, 0.081787109375, -0.00586700439453125, 0.053436279296875, -0.04461669921875, -0.022430419921875, -0.018646240234375, -0.004482269287109375, 0.03143310546875, -0.0015172958374023438, -0.022857666015625, -0.016143798828125, -0.03582763671875, -0.00884246826171875, -0.0208282470703125, -0.0108795166015625, -0.00974273681640625, 0.0105438232421875, 0.0361328125, 0.025909423828125, 0.0165863037109375, -0.003368377685546875, -0.00872039794921875, 0.0271453857421875, 0.02044677734375, 0.06085205078125, -0.0222320556640625, 0.0794677734375, -0.0246734619140625, 0.05511474609375, -0.00557708740234375, 0.025054931640625, -0.0302734375, 0.00789642333984375, -0.0152435302734375, -0.05731201171875, -0.0213775634765625, 0.033294677734375, -0.035614013671875, 0.0538330078125, 0.06085205078125, 0.01123046875, -0.006572723388671875, -0.029541015625, -0.0008482933044433594, -0.038818359375, -0.005069732666015625, -0.048187255859375, -0.0250244140625, -0.043701171875, 0.006252288818359375, 0.037811279296875, -0.00652313232421875, -0.007244110107421875, 0.0029354095458984375, 0.0013675689697265625, 0.03497314453125, -0.01000213623046875, -0.014556884765625, 0.002628326416015625, 0.06640625, 0.0296783447265625, 0.059814453125, 0.0067596435546875, 0.036468505859375, 0.046905517578125, 0.0158538818359375, 0.03131103515625, 0.06341552734375, 0.061553955078125, -0.00038695335388183594, 0.0209808349609375, 0.0252532958984375, -0.0180511474609375, -0.0245208740234375, 0.0286102294921875, 0.0210418701171875, -0.04339599609375, -0.01488494873046875, 0.006389617919921875, 0.0081787109375, -0.004962921142578125, 0.02392578125, 0.0188140869140625, 0.0556640625, -0.01386260986328125, -0.00933074951171875, -0.03253173828125, -0.0033321380615234375, 0.006908416748046875, -0.01543426513671875, 0.0085601806640625, -0.0293121337890625, -0.0181732177734375, -0.0184326171875, -0.024688720703125, 0.005428314208984375, -0.0208282470703125, -0.00879669189453125, -0.00689697265625, -0.0114288330078125, -0.0309600830078125, -0.006771087646484375, 0.01629638671875, -0.0260162353515625, 0.00775909423828125, 0.048187255859375, 0.00421142578125, -0.008270263671875, 0.0111541748046875, -0.00411224365234375, 0.0181884765625, -0.0309600830078125, -0.0238800048828125, -0.037078857421875, -0.040313720703125, -0.0024967193603515625, -0.0221099853515625, 0.0238037109375, 0.01364898681640625, -0.00794219970703125, -0.07879638671875, -0.0083160400390625, -0.021453857421875, 0.055938720703125, -0.054931640625, -0.00984954833984375, 0.01213836669921875, 0.0139617919921875, 0.01548004150390625, -0.0122833251953125, -0.0166778564453125, -0.054107666015625, -0.0178985595703125, -0.0265655517578125, -0.040924072265625, 0.035980224609375, -0.020599365234375, -0.046356201171875, 0.07928466796875, -0.00634765625, 0.03082275390625, 0.0242156982421875, 0.023834228515625, -0.01125335693359375, 0.01120758056640625, -0.0114593505859375, 0.043212890625, -0.01396942138671875, 0.0274658203125, -0.043853759765625, -0.010955810546875, 0.0153350830078125, 0.053070068359375, 0.026641845703125, 0.017822265625, -0.03948974609375, -0.03070068359375, 0.020263671875, 0.04290771484375, 0.0210723876953125, 0.0042572021484375, -0.0108184814453125, 0.035736083984375, 0.028564453125, -0.05303955078125, 0.0181427001953125, -0.01490020751953125, -0.019287109375, 0.0159149169921875, -0.0027217864990234375, 0.0109710693359375, -0.01131439208984375, 0.0101776123046875, -0.040008544921875, -0.005153656005859375, 0.043304443359375, -0.0259552001953125, -0.016357421875, 0.0269775390625, 0.034881591796875, -0.0889892578125, -0.060089111328125, -0.0267486572265625, 0.033721923828125, 0.00921630859375, 0.0163116455078125, 0.0020236968994140625, 0.0133056640625, 0.025848388671875, -0.0188446044921875, 0.007572174072265625, 0.0061492919921875, -0.003444671630859375, 0.038299560546875, 0.044586181640625, 0.0274200439453125, -0.013275146484375, -0.039276123046875, 0.042083740234375, 0.06341552734375, -0.02862548828125, -0.0316162109375, -0.0009217262268066406, -0.0057830810546875, 0.00539398193359375, 0.0006957054138183594, 0.01025390625, 0.030426025390625, 0.0265045166015625, -0.034912109375, 0.00806427001953125, 0.0016841888427734375, 0.01885986328125, -0.014404296875, -0.0265350341796875, -0.010955810546875, 0.01488494873046875, -0.044525146484375, 0.0038604736328125, 0.0010652542114257812, 0.0638427734375, 0.04229736328125, 0.029998779296875, 0.0093231201171875, -0.0293426513671875, -0.01045989990234375, 0.0185394287109375, -0.0310211181640625, 0.038238525390625, -0.056304931640625, -0.0477294921875, 0.0162506103515625, 0.043670654296875, 0.0265960693359375, -0.036712646484375, -0.0031185150146484375, -0.0194244384765625, -0.019317626953125, 0.00021183490753173828, 0.011932373046875, -0.0185394287109375, 0.04083251953125, -0.0232391357421875, 0.05316162109375, -0.0086212158203125, 0.0005269050598144531, -0.05291748046875, 0.05126953125, -0.0001976490020751953, 0.0357666015625, -0.0010433197021484375, 0.0202789306640625, -0.020751953125, 0.026336669921875, 0.0038661956787109375, 0.041595458984375, 0.042938232421875, -0.069091796875, -0.0132904052734375, -0.0234222412109375, -0.0799560546875, 0.0504150390625, 0.05426025390625, -0.00682830810546875, -0.03546142578125, 0.0257568359375, 0.01535797119140625, 0.004375457763671875, -0.00830841064453125, -0.0019893646240234375, 0.0224761962890625, 0.032135009765625, 0.03399658203125, -0.00102996826171875, -0.01126861572265625, 0.00850677490234375, 0.047271728515625, 0.0262298583984375, 0.1005859375, -0.056610107421875, 0.013427734375, 0.01210784912109375, -0.0031032562255859375, -0.00839996337890625, 0.0190582275390625, -0.032257080078125, -0.020050048828125, 0.01352691650390625, 0.0031604766845703125, -0.020294189453125, 0.00872039794921875, 0.038330078125, -0.061614990234375, 0.007740020751953125, -0.01253509521484375, 0.01081085205078125, -0.040771484375, -0.0171356201171875, -0.039581298828125, -0.038482666015625, -0.02130126953125, -0.0013933181762695312, 0.007617950439453125, -0.01190948486328125, -0.0301971435546875, 0.07147216796875, 0.043243408203125, -0.00543212890625, 0.01242828369140625, -0.05426025390625, 0.04302978515625, 0.04669189453125, 0.0186309814453125, -0.01155853271484375, 0.036041259765625, -0.00931549072265625, 0.026519775390625, 0.024200439453125, 0.0234375, 0.028533935546875, 0.036224365234375, -0.041778564453125, -0.051239013671875, -0.00829315185546875, -0.01331329345703125, -0.019622802734375, -0.04107666015625, -0.007648468017578125, 0.01580810546875, -0.01248931884765625, -0.007732391357421875, -0.02056884765625, -0.0174102783203125, 0.0038547515869140625, 0.004608154296875, -0.0335693359375, 0.00528717041015625, 0.035003662109375, -0.0010986328125, 0.00894927978515625, -0.08453369140625, 0.07208251953125, -0.0215911865234375, 0.046661376953125, -0.03759765625, -0.03009033203125, -0.0182647705078125, 0.007259368896484375, -0.0064697265625, -0.024932861328125, -0.074462890625, 0.021148681640625, -0.054779052734375, -0.01558685302734375, 0.0259246826171875, 0.00714111328125, -0.037200927734375, -0.030059814453125, -0.034515380859375, 0.024383544921875, -0.040435791015625, 0.0041656494140625, 0.04693603515625, -0.005260467529296875, -0.0537109375, -0.0584716796875, 0.0019245147705078125, -0.0548095703125, -0.006229400634765625, 0.0335693359375, -0.03350830078125, -0.007396697998046875, -0.01499176025390625, -0.01226043701171875, 0.02923583984375, 0.0303497314453125, -0.018096923828125, -0.04901123046875, 0.0135955810546875, 0.014068603515625, -0.0044097900390625, -0.01110076904296875, -0.0209808349609375, -0.048248291015625, -0.0047760009765625, 0.012939453125, 0.06915283203125, 0.005062103271484375, 0.0233154296875, 0.004840850830078125, 0.00785064697265625, 0.0003542900085449219, 0.0043487548828125, 0.00033211708068847656, -0.0031890869140625, 0.046173095703125, 0.045257568359375, -0.0033779144287109375, 0.016693115234375, 0.027984619140625, -0.029052734375, 0.00446319580078125, -0.0126800537109375, -0.053558349609375, -0.04364013671875, 0.0655517578125, 0.012298583984375, 0.0219879150390625, -0.0005536079406738281, 0.00559234619140625, -0.0259857177734375, -0.06768798828125, -0.0012378692626953125, 0.0296630859375, -0.0394287109375, 0.007465362548828125, -0.0016040802001953125, -0.0011568069458007812, 0.01483917236328125, -0.03338623046875, -0.013153076171875, 0.002529144287109375, 0.006023406982421875, 0.00403594970703125, -0.01004791259765625, -0.0009016990661621094, 0.075927734375, -0.0546875, -0.017547607421875, 0.0082855224609375, 0.00797271728515625, 0.01090240478515625, -0.0269317626953125, -0.0274200439453125, 0.033843994140625, -0.031646728515625, -0.037017822265625, 0.01898193359375, 0.0267181396484375, 0.025634765625, 0.01424407958984375, 0.03277587890625, 0.0004482269287109375, 0.0031185150146484375, -0.01629638671875, -0.0518798828125, 0.0281219482421875, -0.043609619140625, 0.060455322265625, -0.01491546630859375, 0.0223541259765625, 0.012603759765625, 0.01953125, -0.0164794921875, 0.022247314453125, 0.002231597900390625, -0.01136016845703125, 0.005092620849609375, -0.03326416015625, -0.0237579345703125, -0.0546875, 0.0051727294921875, -0.0692138671875, -0.020416259765625, 0.031951904296875 ]
300b0b73571d18971e54f9bfb4aae65ecf5533ec
Wordpress Stackexchange Q: How to change thumbnail of embedded Youtube video? When I embed a Youtube video onto my page, is there a way to change the thumbnail displayed (screenshot)? I do not have admin access to the Youtube video in-question. I would prefer a non-plugin solution if possible. I found these instructions, but they did not work. A: The [video] shortcode can be used with the src being an URL of a youtube video. To set a placeholder, preview thumbnail use poster, it even works nicely via GUI. In the end it should look somewhat like the bellow example. [video src="https://www.youtube.com/watch?v=XYZ" poster="http://example.com/wp-content/uploads/2017/01/example.jpg"]
Q: How to change thumbnail of embedded Youtube video? When I embed a Youtube video onto my page, is there a way to change the thumbnail displayed (screenshot)? I do not have admin access to the Youtube video in-question. I would prefer a non-plugin solution if possible. I found these instructions, but they did not work. A: The [video] shortcode can be used with the src being an URL of a youtube video. To set a placeholder, preview thumbnail use poster, it even works nicely via GUI. In the end it should look somewhat like the bellow example. [video src="https://www.youtube.com/watch?v=XYZ" poster="http://example.com/wp-content/uploads/2017/01/example.jpg"] A: check this out, maybe this will help. <div class="video-responsive"><iframe src="https://www.youtube-nocookie.com/embed/1Cz2Xzm6knM/videoseries?list=PLq-1Cz2Xzm6knM-1Cz2Xzm6knM&amp;rel=0" width="420" height="315" frameborder="0" allowfullscreen="allowfullscreen"></iframe></div> .video-responsive{ overflow:hidden; padding-bottom:56.25%; position:relative; height:0; } .video-responsive iframe{ left:0; top:0; height:100%; width:100%; position:absolute; }
wordpress
{ "language": "en", "length": 130, "provenance": "stackexchange_00019.jsonl.gz:482285", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/288434" }
[ 0.0748291015625, 0.0228271484375, 0.00954437255859375, -0.0179443359375, 0.035369873046875, -0.0136260986328125, 0.07086181640625, -0.048919677734375, -0.01525115966796875, -0.00641632080078125, -0.04364013671875, 0.00992584228515625, -0.048309326171875, -0.0158538818359375, -0.001941680908203125, -0.0699462890625, 0.030914306640625, 0.03857421875, 0.03912353515625, -0.0016622543334960938, -0.00498199462890625, 0.0271148681640625, 0.0164337158203125, 0.044189453125, 0.0200958251953125, -0.021820068359375, 0.05352783203125, -0.02972412109375, 0.0035648345947265625, -0.01535797119140625, 0.017669677734375, -0.0028018951416015625, 0.037109375, 0.0164947509765625, -0.0243988037109375, 0.03985595703125, 0.01959228515625, -0.01477813720703125, 0.007183074951171875, 0.02703857421875, 0.01332855224609375, 0.0116729736328125, 0.06732177734375, -0.00036072731018066406, 0.0033016204833984375, -0.006687164306640625, -0.0309295654296875, -0.07183837890625, 0.00756072998046875, -0.020355224609375, 0.033538818359375, -0.0032291412353515625, 0.024322509765625, 0.0021190643310546875, -0.00949859619140625, 0.0177154541015625, -0.051025390625, -0.00836181640625, -0.0011491775512695312, 0.023773193359375, 0.03741455078125, 0.020538330078125, 0.0028667449951171875, 0.026275634765625, 0.006683349609375, -0.0135650634765625, -0.0199432373046875, 0.0166473388671875, 0.00838470458984375, 0.0204925537109375, 0.0202789306640625, -0.00922393798828125, -0.0211181640625, -0.030914306640625, -0.0236663818359375, 0.057952880859375, -0.005126953125, 0.0199127197265625, 0.0102081298828125, -0.0103912353515625, 0.03857421875, -0.005260467529296875, 0.0272216796875, -0.0252532958984375, 0.03375244140625, 0.0094757080078125, -0.0009045600891113281, -0.022003173828125, -0.0167694091796875, 0.020751953125, -0.01236724853515625, -0.0113677978515625, -0.0193023681640625, 0.0263519287109375, 0.0182647705078125, -0.01290130615234375, 0.021087646484375, 0.05755615234375, -0.03045654296875, -0.00881195068359375, -0.035675048828125, -0.013427734375, -0.010223388671875, -0.048858642578125, -0.01255035400390625, -0.0090789794921875, 0.005462646484375, -0.006683349609375, 0.01502227783203125, 0.0295867919921875, -0.024169921875, 0.08154296875, -0.011810302734375, -0.0189971923828125, -0.052459716796875, 0.016510009765625, -0.032958984375, -0.01200103759765625, -0.00733184814453125, 0.0030078887939453125, 0.0172576904296875, 0.02337646484375, 0.024627685546875, -0.025054931640625, 0.0141143798828125, 0.018341064453125, -0.032318115234375, -0.038543701171875, -0.015655517578125, 0.00562286376953125, -0.06195068359375, -0.0032444000244140625, 0.1412353515625, 0.09539794921875, 0.0743408203125, -0.0196075439453125, -0.029510498046875, 0.01448822021484375, -0.01003265380859375, 0.0245819091796875, -0.06378173828125, -0.0164947509765625, 0.06597900390625, -0.05535888671875, 0.006885528564453125, 0.01155853271484375, 0.001544952392578125, 0.0240631103515625, 0.0026760101318359375, -0.04266357421875, 0.03369140625, -0.03558349609375, -0.0025920867919921875, 0.0291748046875, 0.08123779296875, -0.0239715576171875, 0.0809326171875, -0.040252685546875, 0.0254364013671875, -0.0254974365234375, 0.002838134765625, 0.00621795654296875, 0.015106201171875, 0.03253173828125, 0.0433349609375, -0.0016994476318359375, -0.0116424560546875, 0.0208892822265625, 0.0278472900390625, 0.076416015625, -0.0074920654296875, 0.0207061767578125, 0.0024566650390625, 0.035919189453125, 0.0003135204315185547, -0.00762176513671875, -0.0020656585693359375, -0.0087738037109375, 0.0084381103515625, 0.046905517578125, 0.0178985595703125, -0.01236724853515625, 0.01142120361328125, -0.0021495819091796875, -0.00894927978515625, 0.0141143798828125, 0.004482269287109375, 0.004383087158203125, -0.0149383544921875, 0.0204315185546875, 0.0079193115234375, 0.03564453125, -0.01462554931640625, 0.041168212890625, 0.0340576171875, -0.0193939208984375, -0.0650634765625, -0.023590087890625, -0.01371002197265625, -0.0426025390625, 0.04827880859375, 0.0140380859375, 0.005428314208984375, -0.0008106231689453125, -0.0306549072265625, 0.001857757568359375, -0.01358795166015625, 0.02752685546875, 0.05072021484375, 0.036376953125, -0.0215301513671875, 0.0098419189453125, -0.004505157470703125, -0.0168609619140625, -0.04559326171875, 0.028717041015625, -0.0304412841796875, 0.038177490234375, -0.00640869140625, 0.034820556640625, -0.02978515625, -0.007282257080078125, -0.01206207275390625, -0.023590087890625, 0.0119781494140625, -0.0303802490234375, -0.0174713134765625, -0.039703369140625, 0.00527191162109375, -0.0113525390625, -0.029083251953125, 0.05279541015625, 0.005828857421875, -0.03692626953125, -0.06353759765625, -0.010833740234375, -0.0367431640625, -0.0406494140625, 0.00185394287109375, 0.0648193359375, 0.059600830078125, 0.017669677734375, 0.0218963623046875, 0.0158538818359375, 0.11383056640625, 0.0230255126953125, 0.03057861328125, -0.026092529296875, 0.006748199462890625, 0.004436492919921875, 0.01145172119140625, -0.027587890625, 0.005718231201171875, -0.07989501953125, 0.0280303955078125, 0.018341064453125, 0.0194854736328125, 0.0304412841796875, -0.03106689453125, 0.0399169921875, -0.035491943359375, 0.0130767822265625, 0.0257110595703125, -0.03533935546875, 0.041290283203125, -0.00753021240234375, 0.0299224853515625, 0.037689208984375, -0.0187530517578125, 0.005069732666015625, 0.0083465576171875, 0.00775909423828125, -0.0037136077880859375, 0.08319091796875, 0.036346435546875, -0.015289306640625, -0.0188751220703125, -0.039459228515625, 0.00011533498764038086, 0.036712646484375, -0.00029969215393066406, 0.006072998046875, 0.01285552978515625, -0.003894805908203125, 0.004398345947265625, -0.039276123046875, 0.0165863037109375, 0.0139007568359375, -0.0019140243530273438, -0.033416748046875, -0.0118560791015625, 0.02740478515625, -0.05206298828125, 0.07171630859375, 0.0067291259765625, -0.0240325927734375, 0.04931640625, -0.056488037109375, 0.058563232421875, -0.034698486328125, 0.026947021484375, 0.052947998046875, -0.035797119140625, 0.02191162109375, 0.0089569091796875, -0.0218658447265625, -0.035491943359375, 0.0228118896484375, -0.00507354736328125, -0.007053375244140625, -0.063232421875, 0.0093841552734375, 0.0210113525390625, 0.0694580078125, -0.0487060546875, -0.054779052734375, -0.0190582275390625, 0.020416259765625, -0.055633544921875, -0.0269622802734375, -0.0184326171875, -0.07257080078125, 0.0271148681640625, 0.0300445556640625, -0.033111572265625, -0.024139404296875, 0.08355712890625, 0.004680633544921875, -0.01025390625, -0.0197296142578125, -0.00353240966796875, -0.017791748046875, -0.018157958984375, 0.00405120849609375, -0.00519561767578125, -0.01424407958984375, 0.0198211669921875, 0.0091094970703125, 0.012847900390625, 0.0016870498657226562, 0.021240234375, 0.0472412109375, -0.00792694091796875, -0.0411376953125, 0.031463623046875, -0.0089874267578125, -0.0194091796875, 0.0186004638671875, -0.0310211181640625, 0.0307464599609375, -0.020355224609375, -0.0026302337646484375, -0.0175628662109375, -0.0264129638671875, -0.025848388671875, 0.02471923828125, 0.021514892578125, -0.00905609130859375, 0.01419830322265625, -0.0498046875, -0.0233612060546875, 0.0035247802734375, -0.0401611328125, -0.0012531280517578125, 0.0003247261047363281, -0.0113067626953125, -0.012969970703125, 0.0242156982421875, 0.0255126953125, 0.018707275390625, 0.032989501953125, 0.021575927734375, 0.00873565673828125, -0.0199432373046875, -0.007488250732421875, -0.05010986328125, -0.0357666015625, -0.020294189453125, 0.063720703125, -0.006320953369140625, 0.048797607421875, -0.005741119384765625, 0.07684326171875, -0.0176239013671875, -0.0252838134765625, 0.0155029296875, -0.053192138671875, 0.04034423828125, -0.0555419921875, -0.02960205078125, -0.01551055908203125, 0.0789794921875, -0.022735595703125, -0.0274505615234375, 0.01044464111328125, -0.00555419921875, 0.034393310546875, 0.01523590087890625, -0.060699462890625, -0.033477783203125, -0.07012939453125, 0.0060882568359375, 0.01102447509765625, -0.037506103515625, -0.00841522216796875, 0.0157928466796875, -0.04681396484375, -0.0225830078125, 0.03985595703125, 0.046661376953125, -0.00971221923828125, 0.0292205810546875, -0.014617919921875, 0.023681640625, -0.044403076171875, 0.031768798828125, -0.04815673828125, -0.019317626953125, -0.0290679931640625, 0.06634521484375, 0.0215911865234375, -0.0243377685546875, -0.028656005859375, 0.027618408203125, -0.01123809814453125, 0.01299285888671875, 0.023193359375, 0.022918701171875, 0.01345062255859375, 0.0116424560546875, 0.023345947265625, -0.023590087890625, 0.0011682510375976562, -0.029876708984375, -0.06201171875, 0.02838134765625, 0.002933502197265625, 0.07025146484375, 0.032867431640625, -0.0183563232421875, -0.0738525390625, -0.033843994140625, 0.0450439453125, 0.0214996337890625, 0.0091552734375, 0.007205963134765625, -0.037078857421875, -0.05584716796875, 0.04425048828125, 0.020599365234375, -0.003879547119140625, 0.0052490234375, 0.038848876953125, 0.00000959634780883789, -0.03546142578125, -0.0679931640625, 0.045654296875, 0.0347900390625, -0.004962921142578125, 0.047271728515625, 0.037384033203125, -0.004276275634765625, 0.0244598388671875, 0.00270843505859375, 0.03387451171875, 0.01371002197265625, 0.0460205078125, 0.0260772705078125, -0.00879669189453125, 0.041168212890625, 0.041656494140625, -0.061065673828125, -0.006008148193359375, -0.0274200439453125, 0.018829345703125, 0.00994110107421875, 0.0150604248046875, -0.0204010009765625, 0.01136016845703125, -0.0189056396484375, -0.04052734375, 0.0186614990234375, 0.01873779296875, 0.04864501953125, 0.039276123046875, -0.007434844970703125, 0.041290283203125, 0.031036376953125, 0.00411224365234375, 0.0024166107177734375, -0.01354217529296875, -0.0218963623046875, 0.0260467529296875, -0.01352691650390625, -0.002574920654296875, 0.0191650390625, 0.01473236083984375, 0.0093231201171875, 0.00984954833984375, -0.0275421142578125, -0.0638427734375, 0.00957489013671875, -0.0239105224609375, -0.027374267578125, 0.0247039794921875, 0.0218505859375, 0.0213775634765625, 0.0087127685546875, -0.03662109375, -0.0299224853515625, 0.040985107421875, -0.041351318359375, 0.0283966064453125, 0.005016326904296875, -0.0068206787109375, 0.00865936279296875, 0.0254058837890625, -0.0088653564453125, 0.0204315185546875, 0.00017940998077392578, 0.04510498046875, 0.0517578125, 0.00087738037109375, -0.01242828369140625, 0.0457763671875, -0.031463623046875, 0.0252532958984375, 0.0028247833251953125, -0.01922607421875, 0.004150390625, -0.01483154296875, 0.01229095458984375, -0.0185699462890625, -0.016815185546875, 0.038970947265625, -0.035369873046875, -0.0081787109375, -0.038421630859375, -0.0218353271484375, 0.0433349609375, -0.005359649658203125, -0.01424407958984375, 0.0158233642578125, 0.0254364013671875, -0.0035152435302734375, -0.03607177734375, 0.00502777099609375, -0.003284454345703125, -0.035247802734375, -0.041961669921875, 0.0216217041015625, 0.03436279296875, 0.02496337890625, -0.0256500244140625, -0.038482666015625, -0.00446319580078125, 0.0088348388671875, -0.0330810546875, 0.01036834716796875, 0.0673828125, -0.038848876953125, 0.0167083740234375, 0.01343536376953125, -0.00859832763671875, 0.010223388671875, 0.028289794921875, 0.007762908935546875, -0.01468658447265625, -0.056976318359375, -0.006755828857421875, -0.02020263671875, -0.0088958740234375, -0.0245361328125, -0.0265960693359375, -0.043853759765625, -0.01372528076171875, -0.038787841796875, 0.004428863525390625, -0.029541015625, 0.029693603515625, 0.0057220458984375, 0.039581298828125, -0.01421356201171875, 0.03314208984375, -0.006195068359375, 0.005168914794921875, 0.011749267578125, 0.0137481689453125, -0.0021381378173828125, -0.002532958984375, 0.01268768310546875, -0.028594970703125, -0.005481719970703125, -0.055938720703125, -0.0087890625, 0.0209808349609375, -0.03759765625, 0.0003752708435058594, 0.027740478515625, 0.00344085693359375, 0.002063751220703125, -0.00958251953125, -0.0069732666015625, -0.01727294921875, 0.041839599609375, -0.0191497802734375, 0.0021419525146484375, 0.003475189208984375, -0.01361846923828125, 0.0210723876953125, -0.031982421875, 0.0107421875, -0.00881195068359375, -0.03936767578125, -0.003612518310546875, 0.045562744140625, -0.0160675048828125, 0.02978515625, 0.048431396484375, -0.012603759765625, 0.0299224853515625, 0.046234130859375, 0.00286102294921875, -0.018463134765625, 0.0173187255859375, -0.0123748779296875, 0.0193023681640625, 0.03192138671875, 0.000850677490234375, -0.0240478515625, -0.0052642822265625, -0.0299224853515625, 0.02142333984375, -0.0245208740234375, 0.023773193359375, -0.00925445556640625, 0.02386474609375, -0.0179290771484375, -0.030487060546875, 0.023956298828125, 0.0081329345703125, 0.0008602142333984375, 0.0236663818359375, 0.0264739990234375, -0.050506591796875, -0.01189422607421875, 0.0171051025390625, -0.002490997314453125, -0.0252532958984375, 0.002532958984375, -0.03900146484375, 0.0102691650390625, -0.04498291015625, 0.032318115234375, 0.0220489501953125, 0.004169464111328125, -0.0013790130615234375, 0.0362548828125, -0.01349639892578125, 0.003170013427734375, -0.0204315185546875, 0.02392578125, -0.00616455078125, -0.0197601318359375, 0.0294189453125, 0.0341796875, 0.03985595703125, 0.0433349609375, 0.00662994384765625, 0.00890350341796875, 0.005649566650390625, -0.016387939453125, 0.046478271484375, 0.0171966552734375, 0.00914764404296875, 0.03192138671875, -0.06268310546875, -0.003108978271484375, -0.055389404296875, 0.048980712890625, 0.011138916015625, 0.002628326416015625, 0.0031070709228515625, -0.004150390625, -0.0234527587890625, 0.00800323486328125, -0.0001914501190185547, 0.0267181396484375, -0.0077362060546875, 0.01153564453125, -0.03765869140625, 0.0133514404296875, -0.004367828369140625, -0.00872039794921875, -0.0160064697265625, -0.01715087890625, -0.08319091796875, 0.09136962890625, 0.00838470458984375, 0.029998779296875, 0.005268096923828125, 0.037750244140625, -0.035400390625, -0.00470733642578125, 0.004650115966796875, 0.0164031982421875, 0.039459228515625, -0.0033054351806640625, 0.0203704833984375, -0.00864410400390625, 0.01812744140625, 0.018310546875, 0.025482177734375, -0.004413604736328125, -0.003635406494140625, 0.025848388671875, 0.10931396484375, 0.051544189453125, 0.0259857177734375, 0.0180511474609375, -0.0116424560546875, 0.0028533935546875, 0.0011854171752929688, -0.0253448486328125, 0.0104522705078125, -0.002105712890625, -0.03021240234375, 0.016937255859375, 0.023895263671875, 0.0216827392578125, 0.028411865234375, -0.00003731250762939453, -0.01412200927734375, 0.002410888671875, 0.01806640625, -0.06634521484375, 0.0141448974609375, 0.044952392578125, -0.0002903938293457031, -0.0010213851928710938, -0.0223541259765625, -0.01027679443359375, 0.0430908203125, -0.01016998291015625, -0.0035419464111328125, 0.0124664306640625, 0.00016641616821289062, 0.018402099609375, -0.006458282470703125, -0.01102447509765625, 0.0247650146484375, -0.0043792724609375, 0.061767578125, 0.01483154296875, 0.00899505615234375, -0.025970458984375, 0.037994384765625, 0.004878997802734375, 0.0487060546875, -0.06170654296875, -0.03240966796875, 0.033721923828125, 0.036865234375, -0.0211944580078125, -0.01678466796875, -0.03106689453125, -0.076171875, 0.0014200210571289062, -0.0295257568359375, 0.021881103515625, 0.034393310546875, 0.031951904296875, 0.0017070770263671875, -0.00530242919921875, -0.0740966796875, 0.011993408203125, -0.045501708984375, 0.0200347900390625, 0.004261016845703125, 0.044036865234375, 0.024932861328125, 0.04052734375, -0.00815582275390625, -0.01273345947265625, -0.0222320556640625, 0.04583740234375, 0.0200958251953125, 0.00414276123046875, -0.0231170654296875, -0.04498291015625, 0.05084228515625, 0.033416748046875, 0.0017032623291015625, 0.013824462890625, 0.0062103271484375, 0.018341064453125, -0.0226898193359375, -0.011627197265625, 0.04071044921875, -0.0157623291015625, 0.0238037109375, -0.0443115234375, 0.055450439453125, 0.0297698974609375, 0.0157318115234375, -0.0172576904296875, 0.020843505859375, 0.0555419921875, -0.064208984375, 0.0562744140625, -0.0227203369140625, -0.007419586181640625, 0.02777099609375, -0.037841796875, 0.0244293212890625, -0.04656982421875, -0.01253509521484375, 0.0055084228515625, -0.0308380126953125, -0.03271484375, 0.0087432861328125, 0.0098724365234375, -0.034423828125, 0.04669189453125, 0.01456451416015625, 0.05291748046875, -0.0382080078125, -0.039825439453125, 0.022491455078125, -0.050750732421875, 0.0303802490234375, 0.0272674560546875, -0.044921875, -0.039794921875, -0.01385498046875, 0.05224609375, 0.01861572265625, 0.03167724609375, -0.01922607421875, 0.0213470458984375, 0.0204925537109375, -0.040557861328125, 0.0235595703125, 0.01372528076171875, -0.0035839080810546875, -0.0214385986328125, -0.0201873779296875, -0.0152435302734375, -0.033843994140625, 0.07977294921875, -0.015167236328125, 0.01300811767578125, 0.0418701171875, -0.03936767578125, 0.00014638900756835938, 0.0306854248046875, 0.0103302001953125, -0.03607177734375, -0.048126220703125, -0.0122222900390625, 0.0203094482421875, -0.02471923828125, -0.0338134765625, -0.01213836669921875, -0.00015091896057128906, 0.0029125213623046875, -0.0069122314453125, 0.00847625732421875, 0.01157379150390625, 0.02783203125, 0.035247802734375, -0.048095703125, -0.019683837890625, -0.00835418701171875, -0.01241302490234375, 0.0158843994140625, -0.006793975830078125, 0.0364990234375, 0.020599365234375, -0.029296875, -0.044769287109375, -0.004230499267578125, 0.007328033447265625, -0.026580810546875, -0.01114654541015625, -0.01366424560546875, -0.0160064697265625, -0.01399993896484375, 0.014068603515625, -0.0280609130859375, -0.03558349609375, 0.0031986236572265625, 0.019622802734375, -0.0254364013671875, -0.0140838623046875, -0.083984375, -0.00960540771484375, 0.041107177734375, 0.03961181640625, -0.09234619140625, 0.03277587890625, 0.0293731689453125, 0.03265380859375, 0.01467132568359375, 0.0013942718505859375, 0.00909423828125, -0.004344940185546875, -0.060028076171875, -0.03057861328125, -0.01904296875, 0.006977081298828125, -0.03466796875, 0.0221405029296875, 0.0504150390625, -0.039337158203125, 0.0007224082946777344, 0.04217529296875, 0.0309295654296875, 0.1024169921875, -0.0221710205078125, -0.018341064453125, -0.014312744140625, 0.03765869140625, -0.0032749176025390625, -0.04193115234375, 0.0022449493408203125, -0.005680084228515625, 0.0002224445343017578, 0.0132598876953125, -0.054229736328125, -0.053985595703125, -0.057586669921875, 0.005771636962890625, -0.009246826171875, 0.053436279296875, -0.029541015625, 0.02166748046875, 0.01114654541015625, -0.02752685546875, 0.0008821487426757812, 0.01029205322265625, 0.0167083740234375, 0.023681640625, -0.00113677978515625, 0.01549530029296875, 0.0152435302734375, 0.0189666748046875, -0.0107421875, -0.0426025390625, 0.0089111328125, -0.00933074951171875, 0.0263671875, 0.0276031494140625, -0.0199432373046875, 0.03875732421875, 0.0430908203125, -0.0360107421875, -0.039306640625, -0.0301361083984375, -0.04815673828125, -0.0078277587890625, -0.03253173828125, -0.047637939453125, -0.03680419921875, 0.0662841796875, 0.0557861328125, 0.01393890380859375, -0.0160064697265625, -0.051177978515625, -0.015472412109375, 0.0155792236328125, -0.00496673583984375, 0.0130767822265625, -0.067626953125, -0.008453369140625, 0.0006647109985351562, -0.0199737548828125, -0.01116180419921875, -0.01071929931640625, -0.059539794921875, 0.0091552734375, -0.0280609130859375, 0.0054473876953125, -0.05889892578125, 0.0188446044921875, 0.105712890625, -0.07244873046875, -0.0251312255859375, -0.00864410400390625, 0.00904083251953125, 0.021759033203125, -0.10186767578125, 0.01837158203125, -0.00836181640625, -0.012237548828125, 0.037872314453125, 0.01080322265625, 0.01528167724609375, -0.0277557373046875, -0.0178070068359375, -0.0177154541015625, -0.009521484375, -0.006244659423828125, 0.00481414794921875, 0.0217437744140625, 0.00852203369140625, 0.0130157470703125, 0.0192413330078125, -0.02642822265625, -0.007312774658203125, -0.034149169921875, 0.0169677734375, -0.00775146484375, 0.0242767333984375, 0.0198974609375, -0.00647735595703125, 0.0027008056640625, 0.0364990234375, -0.01519012451171875, -0.030029296875, -0.01087188720703125, -0.071044921875, 0.017333984375, 0.006877899169921875 ]
6696eff3a67837a715cb09a929b25fad773c6c7b
Wordpress Stackexchange Q: Wordpress keeps deleting .htaccess file Recently my wordpress site has been experiencing problems with all pages returning a 404 error. I tracked this down to the fact the .htaccess file in my wordpress directory keeps disappearing. When I go to the Permalinks page and re-save it, the .htaccess file appears again - only for it to be deleted a few minutes later. Any idea what could be doing this? It's very frustrating! A: You can give the read-only rights to .htaccess to prevent it from the modifications or removal. $cd <your website directory> $chmod 400 .htaccess
Q: Wordpress keeps deleting .htaccess file Recently my wordpress site has been experiencing problems with all pages returning a 404 error. I tracked this down to the fact the .htaccess file in my wordpress directory keeps disappearing. When I go to the Permalinks page and re-save it, the .htaccess file appears again - only for it to be deleted a few minutes later. Any idea what could be doing this? It's very frustrating! A: You can give the read-only rights to .htaccess to prevent it from the modifications or removal. $cd <your website directory> $chmod 400 .htaccess
wordpress
{ "language": "en", "length": 97, "provenance": "stackexchange_00019.jsonl.gz:482322", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/288563" }
[ 0.016021728515625, 0.018829345703125, -0.02679443359375, 0.0157623291015625, 0.0221405029296875, -0.044921875, 0.0455322265625, -0.0330810546875, -0.0006575584411621094, 0.0227508544921875, -0.0228118896484375, 0.00240325927734375, 0.038665771484375, -0.0221099853515625, 0.0101776123046875, -0.0072784423828125, 0.01006317138671875, 0.002445220947265625, 0.026031494140625, -0.0114593505859375, -0.0091094970703125, 0.00432586669921875, 0.039306640625, -0.01727294921875, -0.019775390625, 0.0029850006103515625, 0.0606689453125, -0.0404052734375, -0.0198822021484375, -0.047515869140625, -0.005126953125, 0.0660400390625, 0.0004668235778808594, 0.053314208984375, -0.03662109375, -0.025482177734375, -0.032012939453125, 0.035186767578125, 0.0041351318359375, 0.007305145263671875, 0.003910064697265625, 0.0172576904296875, 0.079833984375, -0.0015392303466796875, 0.01629638671875, -0.038848876953125, 0.01024627685546875, -0.047698974609375, 0.0016126632690429688, -0.01849365234375, 0.0088043212890625, 0.016998291015625, 0.01168060302734375, -0.0182037353515625, -0.0079498291015625, -0.006237030029296875, 0.0389404296875, 0.03485107421875, 0.01873779296875, -0.064697265625, -0.0595703125, 0.045806884765625, 0.0258026123046875, 0.01904296875, -0.037689208984375, -0.014068603515625, -0.045074462890625, 0.01096343994140625, -0.044921875, -0.02227783203125, 0.0423583984375, -0.0297698974609375, 0.0121612548828125, -0.04425048828125, -0.0018939971923828125, 0.0046234130859375, 0.001438140869140625, -0.007259368896484375, 0.001312255859375, -0.0030002593994140625, 0.047821044921875, -0.0313720703125, -0.045562744140625, 0.00339508056640625, 0.005340576171875, 0.0299835205078125, 0.01061248779296875, -0.0290374755859375, -0.0027484893798828125, -0.022979736328125, -0.021392822265625, -0.02130126953125, 0.004467010498046875, 0.006622314453125, -0.0394287109375, 0.0000680685043334961, 0.0149688720703125, 0.06048583984375, -0.01142120361328125, 0.007843017578125, -0.005878448486328125, -0.0291748046875, -0.008697509765625, -0.035888671875, -0.00873565673828125, 0.0217437744140625, 0.0095367431640625, 0.05767822265625, 0.0153656005859375, 0.03228759765625, -0.009857177734375, -0.006927490234375, 0.00394439697265625, -0.0660400390625, -0.0095977783203125, 0.053466796875, 0.00917816162109375, -0.0286102294921875, 0.0264892578125, -0.032867431640625, -0.01953125, 0.0061187744140625, -0.040313720703125, -0.0284881591796875, -0.00832366943359375, -0.029998779296875, -0.008087158203125, 0.00853729248046875, -0.0005536079406738281, -0.0010442733764648438, -0.035491943359375, 0.010650634765625, -0.01178741455078125, 0.00321197509765625, -0.0159454345703125, -0.01410675048828125, 0.027435302734375, -0.0469970703125, -0.016387939453125, 0.0281982421875, 0.0230255126953125, -0.01198577880859375, 0.0001519918441772461, -0.00604248046875, 0.0009012222290039062, 0.042510986328125, 0.01995849609375, -0.0035457611083984375, -0.004337310791015625, -0.046356201171875, -0.022064208984375, -0.01184844970703125, 0.0706787109375, -0.0012359619140625, 0.00046515464782714844, -0.06365966796875, 0.08929443359375, -0.0809326171875, -0.01983642578125, -0.09075927734375, 0.029937744140625, -0.024810791015625, -0.00826263427734375, -0.0090484619140625, -0.0364990234375, 0.0191802978515625, -0.048095703125, -0.014251708984375, 0.0238494873046875, 0.012237548828125, 0.004940032958984375, -0.0419921875, -0.02508544921875, -0.00928497314453125, 0.0005784034729003906, 0.035888671875, 0.021728515625, -0.0181427001953125, 0.0135650634765625, 0.041290283203125, 0.0029811859130859375, -0.0208740234375, 0.0033359527587890625, 0.006603240966796875, -0.05291748046875, 0.037322998046875, 0.023651123046875, 0.05877685546875, -0.01312255859375, 0.00965118408203125, 0.052947998046875, 0.0533447265625, -0.04974365234375, 0.058197021484375, -0.01287841796875, -0.026092529296875, 0.00045561790466308594, 0.00937652587890625, -0.01015472412109375, -0.0164794921875, -0.0328369140625, 0.00003236532211303711, -0.0189971923828125, -0.01384735107421875, -0.039337158203125, -0.0005350112915039062, -0.0218963623046875, 0.04376220703125, -0.00656890869140625, 0.0307769775390625, 0.01261138916015625, 0.0234375, -0.03656005859375, -0.0031833648681640625, -0.00009763240814208984, 0.060760498046875, 0.0019369125366210938, 0.05548095703125, 0.0117950439453125, 0.059173583984375, -0.03271484375, -0.0162811279296875, -0.01678466796875, -0.0350341796875, 0.00031256675720214844, -0.038482666015625, -0.02392578125, -0.02545166015625, -0.0257110595703125, -0.03326416015625, -0.01119232177734375, 0.060455322265625, 0.048858642578125, 0.05584716796875, -0.043243408203125, -0.0291900634765625, -0.0751953125, -0.08038330078125, 0.0009031295776367188, 0.0823974609375, 0.0311279296875, 0.018524169921875, -0.0235595703125, -0.029510498046875, 0.034332275390625, -0.034027099609375, 0.016693115234375, -0.017181396484375, 0.01396942138671875, -0.0074920654296875, 0.0265350341796875, -0.016876220703125, 0.02801513671875, 0.0043487548828125, 0.0031452178955078125, 0.0211029052734375, -0.03961181640625, -0.019378662109375, -0.045623779296875, 0.036346435546875, -0.0034580230712890625, -0.041778564453125, -0.00371551513671875, -0.0245513916015625, 0.03973388671875, -0.0014066696166992188, 0.01776123046875, 0.013031005859375, -0.0014247894287109375, -0.00376129150390625, 0.01007843017578125, -0.047760009765625, 0.006500244140625, 0.054107666015625, 0.0517578125, 0.005580902099609375, -0.0248565673828125, -0.0272064208984375, 0.0146484375, 0.0462646484375, -0.019287109375, 0.00044989585876464844, -0.053466796875, -0.005401611328125, 0.003696441650390625, -0.032867431640625, -0.00957489013671875, 0.0004124641418457031, 0.01389312744140625, 0.0005202293395996094, 0.01534271240234375, 0.02520751953125, -0.0153656005859375, 0.035125732421875, 0.007350921630859375, -0.024993896484375, 0.024749755859375, -0.023590087890625, 0.0301055908203125, -0.01395416259765625, 0.0338134765625, 0.06951904296875, 0.002582550048828125, 0.0028362274169921875, 0.01116943359375, 0.025054931640625, 0.043792724609375, -0.020782470703125, -0.0193023681640625, 0.032867431640625, -0.07061767578125, -0.0172576904296875, 0.0253448486328125, 0.024566650390625, -0.004993438720703125, -0.0289764404296875, -0.00666046142578125, 0.0120086669921875, -0.09912109375, -0.09320068359375, -0.0430908203125, 0.0191802978515625, 0.0186004638671875, 0.024810791015625, 0.026092529296875, -0.0253753662109375, 0.016448974609375, 0.02789306640625, 0.0202178955078125, -0.034210205078125, -0.047943115234375, -0.06396484375, -0.079833984375, -0.058074951171875, 0.0019359588623046875, -0.0005273818969726562, -0.0139312744140625, 0.03448486328125, -0.0303497314453125, -0.06304931640625, -0.040679931640625, -0.04815673828125, 0.01220703125, -0.004550933837890625, -0.002315521240234375, -0.01508331298828125, -0.01488494873046875, 0.01462554931640625, 0.0390625, 0.014556884765625, -0.0195465087890625, -0.0044708251953125, -0.036407470703125, -0.040863037109375, -0.0029506683349609375, 0.0233154296875, 0.019805908203125, -0.05169677734375, 0.00939178466796875, -0.06951904296875, -0.0026874542236328125, -0.01318359375, -0.0195159912109375, 0.0243377685546875, 0.01464080810546875, -0.01641845703125, -0.01232147216796875, 0.0136566162109375, 0.007617950439453125, 0.037689208984375, -0.001338958740234375, -0.0175933837890625, 0.032318115234375, -0.007843017578125, 0.011474609375, -0.03436279296875, 0.0294342041015625, -0.02435302734375, 0.0173797607421875, 0.0078277587890625, -0.01385498046875, -0.006526947021484375, -0.03619384765625, -0.0653076171875, -0.0183563232421875, 0.050323486328125, -0.010009765625, 0.0271148681640625, -0.04302978515625, -0.046844482421875, -0.034027099609375, 0.0928955078125, 0.0092620849609375, -0.033477783203125, -0.009307861328125, 0.020843505859375, -0.044830322265625, -0.024139404296875, -0.006404876708984375, -0.00469207763671875, -0.061676025390625, 0.0100860595703125, -0.00925445556640625, -0.029510498046875, -0.0088348388671875, -0.040313720703125, -0.0220184326171875, -0.036834716796875, 0.0245819091796875, -0.09417724609375, 0.018951416015625, 0.0074462890625, 0.001255035400390625, -0.0357666015625, -0.0198211669921875, -0.0777587890625, -0.046539306640625, -0.01316070556640625, -0.00691986083984375, 0.04541015625, 0.00844573974609375, 0.0081939697265625, -0.005584716796875, 0.044158935546875, -0.002040863037109375, 0.048583984375, -0.00878143310546875, -0.019073486328125, 0.0276641845703125, 0.021575927734375, 0.02728271484375, 0.0003917217254638672, -0.0055389404296875, -0.0200042724609375, -0.03790283203125, -0.016632080078125, -0.03778076171875, 0.0012273788452148438, 0.0123138427734375, -0.03472900390625, -0.0154266357421875, -0.0122528076171875, -0.0419921875, 0.0162811279296875, -0.016754150390625, 0.006805419921875, -0.0200347900390625, -0.04937744140625, 0.01558685302734375, -0.0288848876953125, -0.0140228271484375, 0.023101806640625, 0.06646728515625, 0.0268402099609375, -0.002567291259765625, 0.01248931884765625, 0.016693115234375, 0.0197906494140625, 0.004032135009765625, 0.08740234375, 0.034027099609375, 0.017333984375, 0.04168701171875, -0.004520416259765625, -0.032073974609375, -0.0126800537109375, 0.038665771484375, 0.0013885498046875, -0.0009603500366210938, -0.0099334716796875, -0.030609130859375, 0.044952392578125, 0.0516357421875, 0.0233001708984375, -0.013427734375, 0.01300811767578125, 0.0105438232421875, 0.008331298828125, -0.04412841796875, -0.016876220703125, -0.056549072265625, 0.0231781005859375, -0.0211944580078125, 0.03839111328125, 0.00408172607421875, 0.004238128662109375, 0.04559326171875, 0.012847900390625, -0.0150909423828125, -0.0582275390625, -0.0005707740783691406, -0.0274658203125, 0.01218414306640625, 0.0025081634521484375, -0.01007080078125, -0.04559326171875, -0.004669189453125, 0.051544189453125, 0.0151824951171875, -0.032928466796875, 0.013397216796875, -0.012359619140625, -0.0643310546875, 0.0152587890625, -0.01502227783203125, -0.004192352294921875, 0.0111541748046875, -0.003818511962890625, 0.01201629638671875, -0.020538330078125, 0.0024356842041015625, -0.03839111328125, 0.035614013671875, -0.0064239501953125, 0.005825042724609375, 0.029022216796875, 0.0465087890625, 0.0026416778564453125, 0.0308990478515625, 0.005855560302734375, -0.00283050537109375, -0.004611968994140625, 0.0278167724609375, 0.006969451904296875, -0.00872039794921875, 0.0158843994140625, 0.0003712177276611328, 0.039306640625, -0.085205078125, -0.036529541015625, 0.04412841796875, 0.08770751953125, -0.01015472412109375, -0.038360595703125, 0.005702972412109375, -0.0292510986328125, -0.00457763671875, 0.02947998046875, -0.045684814453125, -0.063720703125, -0.00826263427734375, 0.0102691650390625, 0.02978515625, -0.03851318359375, -0.0037250518798828125, 0.026580810546875, 0.007015228271484375, 0.0029544830322265625, 0.028167724609375, -0.045806884765625, -0.00211334228515625, 0.004024505615234375, 0.053955078125, 0.01546478271484375, 0.00380706787109375, -0.08966064453125, -0.0229949951171875, -0.0296630859375, 0.00396728515625, 0.037841796875, 0.02362060546875, 0.05633544921875, -0.0098724365234375, -0.053497314453125, 0.045013427734375, 0.00431060791015625, 0.035614013671875, 0.01023101806640625, -0.06378173828125, 0.00823211669921875, -0.061676025390625, -0.0197296142578125, -0.03369140625, -0.035736083984375, -0.0261383056640625, 0.005367279052734375, 0.006038665771484375, 0.0084228515625, -0.01074981689453125, -0.00322723388671875, -0.03277587890625, 0.031890869140625, 0.01230621337890625, 0.02215576171875, -0.029510498046875, 0.041778564453125, 0.0300140380859375, 0.04266357421875, -0.0032958984375, 0.01812744140625, 0.0005540847778320312, -0.0197906494140625, 0.040557861328125, 0.006977081298828125, -0.01470947265625, -0.04400634765625, -0.00494384765625, -0.048248291015625, 0.044921875, -0.0164031982421875, -0.0188751220703125, -0.037261962890625, -0.00531005859375, -0.0244598388671875, 0.0653076171875, -0.031158447265625, -0.0183868408203125, -0.0134429931640625, -0.0311431884765625, 0.0301055908203125, -0.0109100341796875, -0.0174102783203125, 0.0167083740234375, -0.026702880859375, 0.00798797607421875, 0.03753662109375, -0.002338409423828125, 0.019744873046875, 0.032928466796875, 0.0167388916015625, 0.059814453125, 0.0149993896484375, 0.049774169921875, 0.057037353515625, 0.005977630615234375, 0.0032176971435546875, -0.034698486328125, 0.0219573974609375, -0.0020599365234375, 0.00244140625, 0.01824951171875, -0.0019178390502929688, -0.0088653564453125, 0.051849365234375, 0.0294342041015625, -0.06512451171875, -0.00806427001953125, -0.025726318359375, -0.01214599609375, 0.0306854248046875, -0.0016641616821289062, -0.007244110107421875, -0.0252685546875, 0.0141143798828125, -0.006481170654296875, -0.027618408203125, -0.00051116943359375, 0.0296478271484375, 0.001468658447265625, 0.0079803466796875, 0.041656494140625, 0.0170745849609375, -0.039825439453125, -0.0190277099609375, 0.041290283203125, -0.003002166748046875, -0.0005106925964355469, 0.010772705078125, 0.0211029052734375, -0.016693115234375, -0.0204010009765625, 0.034515380859375, -0.0175323486328125, -0.02252197265625, 0.000400543212890625, 0.0036678314208984375, 0.00302886962890625, 0.04443359375, -0.04339599609375, 0.036712646484375, 0.00604248046875, -0.0249481201171875, 0.0168609619140625, -0.0288543701171875, 0.030181884765625, -0.01326751708984375, -0.0295257568359375, 0.00873565673828125, -0.01068115234375, -0.046600341796875, -0.013153076171875, -0.039337158203125, 0.047271728515625, -0.0433349609375, -0.00830078125, 0.0357666015625, 0.009979248046875, -0.016143798828125, -0.0086669921875, 0.0131072998046875, -0.030059814453125, 0.0161590576171875, 0.00215911865234375, 0.0173797607421875, 0.009429931640625, -0.006999969482421875, -0.0487060546875, 0.042327880859375, -0.002681732177734375, 0.0132904052734375, 0.02655029296875, 0.00778961181640625, -0.0283355712890625, -0.00829315185546875, 0.010955810546875, 0.048736572265625, 0.0115509033203125, 0.026611328125, -0.0305633544921875, -0.0111541748046875, -0.005878448486328125, 0.07098388671875, 0.061553955078125, 0.00981903076171875, -0.0248565673828125, -0.0048828125, 0.03924560546875, 0.0083770751953125, -0.01678466796875, 0.047149658203125, -0.0144195556640625, -0.01561737060546875, -0.017822265625, -0.00457000732421875, 0.01322174072265625, -0.042510986328125, -0.054046630859375, 0.0090789794921875, -0.0153656005859375, -0.0308685302734375, 0.0287017822265625, -0.0266265869140625, -0.0633544921875, 0.0262603759765625, 0.0244293212890625, -0.0156402587890625, -0.01024627685546875, 0.049896240234375, 0.0545654296875, -0.0264129638671875, -0.025390625, -0.0295562744140625, 0.06951904296875, 0.0284271240234375, 0.0167236328125, 0.0011205673217773438, 0.0013818740844726562, 0.048065185546875, -0.034210205078125, -0.00579833984375, 0.04180908203125, -0.0430908203125, 0.040283203125, 0.042938232421875, 0.0311737060546875, 0.0016660690307617188, -0.0138092041015625, 0.0115966796875, 0.06195068359375, -0.033111572265625, -0.047027587890625, 0.0085296630859375, 0.0116729736328125, 0.017730712890625, -0.0005869865417480469, 0.0012483596801757812, -0.0230255126953125, 0.037200927734375, 0.0310821533203125, -0.0049591064453125, -0.0177764892578125, 0.00467681884765625, 0.00261688232421875, 0.039947509765625, -0.004261016845703125, 0.0364990234375, -0.031463623046875, 0.01117706298828125, 0.0147247314453125, 0.045318603515625, 0.03204345703125, 0.022308349609375, 0.00644683837890625, -0.025238037109375, 0.006450653076171875, 0.053192138671875, -0.0537109375, 0.00024962425231933594, -0.045074462890625, -0.08758544921875, -0.01044464111328125, 0.060394287109375, 0.023223876953125, 0.0230560302734375, 0.042266845703125, 0.01507568359375, -0.0204925537109375, -0.0036144256591796875, -0.0240936279296875, -0.0438232421875, 0.0140380859375, -0.0252685546875, 0.05438232421875, 0.0119476318359375, -0.003688812255859375, -0.010406494140625, 0.0301055908203125, 0.028472900390625, 0.019500732421875, -0.0175323486328125, 0.0074310302734375, -0.03131103515625, 0.046478271484375, -0.0005636215209960938, 0.0132293701171875, 0.02227783203125, 0.003322601318359375, 0.01123809814453125, -0.024871826171875, 0.0022144317626953125, -0.01403045654296875, 0.0103607177734375, 0.003936767578125, 0.0248565673828125, -0.024566650390625, -0.0094146728515625, 0.0355224609375, -0.0096893310546875, -0.00804901123046875, 0.0026264190673828125, 0.0209503173828125, -0.0057525634765625, -0.0665283203125, -0.033935546875, -0.018890380859375, 0.03582763671875, -0.0059814453125, 0.1064453125, -0.040924072265625, -0.001140594482421875, 0.007144927978515625, 0.0034732818603515625, 0.025146484375, 0.0164947509765625, 0.0082550048828125, 0.041900634765625, 0.003582000732421875, -0.037109375, -0.09967041015625, 0.028076171875, 0.022705078125, -0.0167388916015625, 0.028076171875, 0.0227508544921875, 0.01099395751953125, -0.018585205078125, -0.00835418701171875, -0.039947509765625, -0.0711669921875, -0.060882568359375, 0.024688720703125, -0.0013742446899414062, -0.00545501708984375, -0.05279541015625, 0.029510498046875, 0.003681182861328125, -0.024658203125, 0.03778076171875, -0.033050537109375, 0.05340576171875, 0.0256195068359375, -0.041290283203125, -0.029083251953125, -0.02783203125, -0.0227203369140625, -0.01346588134765625, -0.0027408599853515625, -0.0199127197265625, -0.015777587890625, -0.0396728515625, -0.0249786376953125, -0.059844970703125, -0.01320648193359375, -0.023651123046875, -0.02056884765625, -0.042083740234375, 0.01061248779296875, 0.0085601806640625, -0.02410888671875, -0.017303466796875, -0.001865386962890625, -0.0263214111328125, 0.0155181884765625, -0.0284423828125, -0.035858154296875, -0.042694091796875, 0.010772705078125, 0.020843505859375, 0.002452850341796875, -0.050079345703125, 0.03570556640625, -0.03662109375, 0.03521728515625, -0.0217437744140625, -0.030120849609375, 0.001972198486328125, 0.0224609375, -0.03125, -0.0135498046875, -0.033294677734375, -0.00926971435546875, -0.02783203125, 0.01180267333984375, 0.019378662109375, -0.01537322998046875, 0.034149169921875, -0.017120361328125, -0.004131317138671875, 0.03277587890625, -0.0281829833984375, -0.0251922607421875, 0.0227813720703125, 0.0107574462890625, -0.0258026123046875, -0.0228424072265625, -0.006591796875, 0.01206207275390625, -0.01000213623046875, -0.00592803955078125, 0.0226287841796875, 0.0305633544921875, -0.035797119140625, -0.05859375, 0.0606689453125, -0.0002830028533935547, -0.0295257568359375, -0.02960205078125, -0.025787353515625, -0.031829833984375, 0.049774169921875, -0.004268646240234375, -0.0261688232421875, -0.0152740478515625, 0.041900634765625, 0.0343017578125, 0.06610107421875, -0.0080108642578125, 0.0594482421875, 0.02587890625, 0.065673828125, 0.0283966064453125, 0.02850341796875, 0.036956787109375, -0.0265350341796875, 0.060211181640625, 0.09442138671875, 0.003826141357421875, -0.01983642578125, -0.0165252685546875, -0.10076904296875, 0.01076507568359375, -0.01100921630859375, -0.0224761962890625, -0.045318603515625, 0.032806396484375, -0.0139007568359375, 0.0018062591552734375, 0.01020050048828125, -0.0242919921875, -0.027069091796875, -0.042144775390625, -0.025238037109375, 0.03179931640625, -0.041748046875, 0.0133209228515625, -0.0180206298828125, -0.01461029052734375, 0.00890350341796875, -0.034149169921875, -0.04608154296875, 0.013153076171875, -0.00921630859375, 0.0083465576171875, -0.0273284912109375, -0.0025196075439453125, 0.044952392578125, -0.0236663818359375, 0.03594970703125, -0.0118408203125, 0.0240020751953125, 0.04632568359375, 0.002391815185546875, 0.009613037109375, 0.058807373046875, -0.0499267578125, -0.0098724365234375, 0.02398681640625, 0.00876617431640625, -0.0119171142578125, -0.00531768798828125, 0.001373291015625, 0.0224151611328125, 0.006023406982421875, 0.024749755859375, -0.0104522705078125, 0.06231689453125, 0.0020694732666015625, 0.024932861328125, -0.0061187744140625, -0.017791748046875, -0.007678985595703125, 0.0484619140625, -0.02154541015625, -0.01546478271484375, 0.020904541015625, -0.041717529296875, -0.018707275390625, 0.0224151611328125, -0.0083160400390625, -0.06671142578125, 0.03704833984375, -0.0296783447265625, 0.0310516357421875, 0.0228729248046875 ]
7c29629d5ac5774db117e73048a0057b413aac3b
Wordpress Stackexchange Q: error_log() output for print_r() appearing on page I am trying to debug a plugin and am using error_log() in various places to see what various things are. I am using the following: error_log( print_r( $variable ) ); When I look at debug.log, all I see is 1 and the actual output of the error_log() function is sent to the browser instead. I know another plugin is not doing this as all are disabled with the exception of the one I am writing. In my wp-config.php, I have defined WP_DEBUG_DISPLAY as false. The same thing happens if I use var_dump() and var_export(). Other functions like gettype() work just fine. Is there any way to get the output into debug.log? A: If your variable is just a string, then you can simply use error_log ( $variable ). If it's an object or an array, other than using print_r(), you can serialize it too: error_log ( serialize ( $variable ) );
Q: error_log() output for print_r() appearing on page I am trying to debug a plugin and am using error_log() in various places to see what various things are. I am using the following: error_log( print_r( $variable ) ); When I look at debug.log, all I see is 1 and the actual output of the error_log() function is sent to the browser instead. I know another plugin is not doing this as all are disabled with the exception of the one I am writing. In my wp-config.php, I have defined WP_DEBUG_DISPLAY as false. The same thing happens if I use var_dump() and var_export(). Other functions like gettype() work just fine. Is there any way to get the output into debug.log? A: If your variable is just a string, then you can simply use error_log ( $variable ). If it's an object or an array, other than using print_r(), you can serialize it too: error_log ( serialize ( $variable ) ); A: The print_r function accept second parameter for return so it retrun the variable instead of printing it. print_r($expression, $return) So you can do error_log( print_r( $variable, true ) ); A: While the accepted answer is correct, I wanted to include an answer that expands the explanation for clarity. print_r() accepts two arguments (see the documentation for this function), the second of which is optional and you have omitted. The first argument is the expression to be printed. The second specifies whether the value is returned or printed. When the second argument is omitted, its default value is false and therefore it prints the result immediately. If this argument is false, print_r() will return true (which is displayed as "1" in the error log). $result = print_r( $variable ); The returned result here is true (displayed as "1"). You're passing the returned result of print_r() to error_log(). For the reason described above, this result is "1" and that is why you're getting 1 as the entry in the log. In order to get a result to contain the expression in $variable and pass it to the error_log() function, you need print_r() to return the expression as the result. You can do that by specifying the second argument as TRUE. $result = print_r( $variable, true ); Now the returned result of print_r() is the expression contained in $variable and you can pass it to error_log(): $result = print_r( $variable, true ); error_log( $result ); OR: error_log( print_r( $variable, true ) ); If you want to take this a step further, you could write a utility function for writing to the log that would handle determining if $variable was an array or an object and thus required print_r(), or if it could simply be passed as a string. This makes it easy to handle debug logging since you don't have to be concerned with the variable type in order to pass it for logging. I have written such a utility along with a detailed explanation here. Side note on the PHP functions you mentioned: No matter how experienced you are, it's always helpful to review the documentation of the functions you are using in order to make sure you know what they actually do. I have linked to the print_r() documentation above, which describes exactly what was talked about in both this and the accepted answer. But also mentioned were some other PHP functions that worked or didn't work. Let's consider those: var_dump(): The documentation indicates that this function does not return a result. In order to pass something to error_log() for including in the error log, it needs to be an expression contained in a variable. This function does not return anything, it only outputs to the screen. So you can't use it to pass anything to error_log(). var_export(): Similar to print_r() in that you have a second, optional argument to either return a result or print to the screen. Define the second argument as true to be able to return a result for error_log(). gettype() always returns the type of the variable. So you have something you can pass to error_log() by default. That is why it worked.
wordpress
{ "language": "en", "length": 687, "provenance": "stackexchange_00019.jsonl.gz:482393", "question_score": "10", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/288781" }
[ 0.033050537109375, -0.039154052734375, -0.0210418701171875, -0.050201416015625, -0.0186920166015625, -0.021331787109375, -0.00960540771484375, 0.01727294921875, 0.00003343820571899414, -0.00948333740234375, 0.00302886962890625, -0.0178070068359375, -0.06512451171875, -0.037506103515625, -0.0241241455078125, -0.044677734375, 0.036529541015625, 0.0024814605712890625, 0.018768310546875, -0.0038051605224609375, -0.0054473876953125, 0.02154541015625, -0.0042266845703125, 0.0760498046875, 0.03338623046875, 0.0238189697265625, 0.0670166015625, -0.027099609375, 0.027130126953125, -0.007808685302734375, 0.022369384765625, -0.04541015625, 0.0288238525390625, 0.0513916015625, -0.08172607421875, 0.0002073049545288086, 0.027435302734375, -0.0209197998046875, -0.0251007080078125, 0.05242919921875, 0.0181884765625, -0.004878997802734375, 0.0877685546875, -0.0438232421875, 0.0306243896484375, 0.02581787109375, 0.0028476715087890625, -0.048095703125, -0.0144195556640625, 0.0162200927734375, -0.0002321004867553711, 0.0007128715515136719, 0.005748748779296875, 0.0214996337890625, -0.006290435791015625, -0.034759521484375, -0.059661865234375, 0.040802001953125, -0.00433349609375, 0.048248291015625, 0.015380859375, 0.032440185546875, -0.0173492431640625, -0.01371002197265625, 0.0285491943359375, 0.0263214111328125, 0.001979827880859375, 0.0199127197265625, -0.005580902099609375, 0.038238525390625, -0.0019292831420898438, -0.0355224609375, -0.01433563232421875, 0.03692626953125, -0.031951904296875, -0.055694580078125, 0.0377197265625, -0.02728271484375, 0.003978729248046875, 0.032989501953125, 0.0169830322265625, -0.0355224609375, -0.00998687744140625, 0.041961669921875, -0.01116943359375, 0.0657958984375, -0.0007343292236328125, -0.039642333984375, -0.01096343994140625, -0.01213836669921875, -0.02020263671875, -0.0093231201171875, -0.0088958740234375, -0.002117156982421875, -0.017578125, -0.02996826171875, -0.008453369140625, 0.0135498046875, -0.021728515625, -0.01522064208984375, -0.0120391845703125, -0.0184783935546875, -0.020660400390625, 0.0006031990051269531, -0.0040740966796875, 0.0189666748046875, 0.0138397216796875, 0.005573272705078125, 0.0273895263671875, 0.021820068359375, -0.006069183349609375, 0.013092041015625, -0.06256103515625, -0.055999755859375, 0.0228729248046875, 0.0687255859375, -0.036285400390625, 0.0168914794921875, 0.01312255859375, 0.033172607421875, -0.002819061279296875, 0.02789306640625, -0.0295257568359375, -0.0128021240234375, -0.01505279541015625, -0.0299072265625, -0.01337432861328125, -0.0017995834350585938, 0.025238037109375, 0.03582763671875, -0.01898193359375, 0.00946044921875, -0.006183624267578125, -0.0211181640625, -0.021636962890625, -0.0172119140625, 0.009307861328125, -0.032562255859375, -0.012054443359375, 0.0184478759765625, -0.0198211669921875, -0.0173187255859375, 0.0149078369140625, -0.037078857421875, -0.040191650390625, 0.0177001953125, 0.0260467529296875, 0.0189208984375, -0.035980224609375, -0.06658935546875, 0.00183868408203125, -0.0166168212890625, -0.01470947265625, 0.007022857666015625, 0.06689453125, -0.034149169921875, 0.0225372314453125, -0.03369140625, 0.0625, -0.0084075927734375, 0.011322021484375, -0.0013217926025390625, 0.006683349609375, -0.035003662109375, -0.028564453125, -0.0093231201171875, -0.03656005859375, 0.00994873046875, 0.0164642333984375, 0.0196075439453125, 0.0246734619140625, -0.01003265380859375, -0.02496337890625, -0.007144927978515625, -0.01202392578125, -0.0029010772705078125, -0.05706787109375, 0.0049285888671875, 0.034637451171875, -0.05517578125, -0.016265869140625, -0.0278472900390625, 0.00966644287109375, 0.0273895263671875, -0.0285797119140625, 0.016998291015625, 0.002529144287109375, 0.00737762451171875, 0.00658416748046875, -0.00788116455078125, 0.0178070068359375, 0.04296875, -0.011566162109375, 0.03863525390625, -0.0032806396484375, -0.042510986328125, -0.01323699951171875, -0.018646240234375, -0.025787353515625, 0.003551483154296875, -0.01214599609375, 0.0179901123046875, -0.0075531005859375, -0.009124755859375, -0.09716796875, 0.00998687744140625, -0.038330078125, 0.04949951171875, -0.01441192626953125, 0.0223541259765625, 0.0207061767578125, 0.008514404296875, -0.0181732177734375, -0.007785797119140625, -0.005474090576171875, 0.024993896484375, -0.0283966064453125, 0.058197021484375, -0.004486083984375, 0.04058837890625, -0.006343841552734375, -0.0238494873046875, 0.0004734992980957031, -0.0333251953125, 0.026611328125, 0.00847625732421875, -0.010284423828125, -0.003986358642578125, 0.0243988037109375, -0.00606536865234375, 0.0167999267578125, 0.042388916015625, -0.0014657974243164062, 0.034637451171875, -0.0103759765625, -0.041107177734375, -0.00955963134765625, -0.06988525390625, 0.03717041015625, 0.0540771484375, 0.05389404296875, 0.01104736328125, -0.0044708251953125, -0.03167724609375, -0.0031223297119140625, -0.07843017578125, 0.0113067626953125, -0.032684326171875, -0.0052337646484375, 0.0019388198852539062, -0.00771331787109375, 0.00201416015625, 0.0228424072265625, -0.0474853515625, -0.00011116266250610352, 0.0374755859375, 0.004444122314453125, -0.003208160400390625, -0.0186004638671875, 0.034332275390625, -0.01934814453125, 0.0176239013671875, 0.017333984375, -0.012481689453125, -0.02490234375, -0.0078582763671875, -0.0207366943359375, -0.01255035400390625, -0.01425933837890625, -0.0033721923828125, 0.034332275390625, -0.00936126708984375, -0.0006737709045410156, 0.004100799560546875, -0.0301055908203125, -0.01166534423828125, -0.017730712890625, 0.00930023193359375, -0.010345458984375, -0.00562286376953125, -0.01531982421875, 0.04315185546875, 0.037200927734375, -0.01861572265625, -0.00989532470703125, 0.0011873245239257812, 0.014739990234375, -0.046783447265625, 0.01444244384765625, -0.01434326171875, -0.0034999847412109375, 0.07598876953125, -0.0059356689453125, 0.049530029296875, -0.010101318359375, 0.01103973388671875, 0.048828125, -0.055572509765625, 0.03912353515625, -0.02801513671875, 0.0423583984375, 0.055938720703125, -0.01094818115234375, -0.0023555755615234375, -0.005451202392578125, 0.02130126953125, -0.0271759033203125, 0.0031280517578125, -0.0211639404296875, -0.01148223876953125, -0.0496826171875, 0.00933074951171875, 0.028961181640625, 0.01220703125, 0.01540374755859375, -0.028472900390625, -0.0290374755859375, 0.0266265869140625, -0.0977783203125, -0.10455322265625, -0.06671142578125, -0.09149169921875, 0.01092529296875, -0.00061798095703125, -0.03759765625, 0.0031681060791015625, 0.0411376953125, 0.017822265625, 0.052459716796875, -0.0489501953125, -0.07513427734375, -0.0487060546875, -0.0859375, 0.019317626953125, 0.0008101463317871094, 0.01000213623046875, -0.0118255615234375, 0.08331298828125, 0.0021228790283203125, -0.05145263671875, -0.01611328125, 0.041259765625, -0.009521484375, -0.0026836395263671875, -0.020782470703125, -0.0138397216796875, -0.0091094970703125, -0.005779266357421875, -0.0345458984375, -0.0224456787109375, 0.040771484375, -0.0276641845703125, -0.0174713134765625, -0.0257720947265625, 0.0030002593994140625, -0.02294921875, 0.009185791015625, -0.0265045166015625, -0.00536346435546875, -0.052734375, 0.01102447509765625, -0.0002529621124267578, -0.0321044921875, 0.021942138671875, 0.00533294677734375, -0.0241546630859375, 0.0165863037109375, -0.0227203369140625, -0.0164947509765625, -0.0144195556640625, -0.00580596923828125, -0.025360107421875, 0.0198516845703125, -0.009521484375, 0.01090240478515625, 0.0079345703125, 0.038665771484375, -0.001918792724609375, -0.023040771484375, 0.01381683349609375, -0.0013055801391601562, -0.00727081298828125, 0.0023899078369140625, -0.01201629638671875, -0.01224517822265625, 0.02679443359375, -0.04107666015625, 0.013031005859375, -0.0155029296875, -0.00820159912109375, -0.0058135986328125, 0.050079345703125, -0.0308074951171875, 0.006931304931640625, -0.043365478515625, 0.00202178955078125, -0.0016107559204101562, -0.061737060546875, -0.010986328125, -0.01107025146484375, -0.058868408203125, 0.00542449951171875, -0.0181427001953125, -0.02630615234375, -0.0157012939453125, 0.0244598388671875, -0.046539306640625, -0.041534423828125, -0.004673004150390625, -0.01580810546875, -0.013153076171875, -0.0258026123046875, 0.005611419677734375, -0.06365966796875, 0.045196533203125, -0.030303955078125, -0.0526123046875, -0.018890380859375, -0.0194091796875, 0.0711669921875, 0.0384521484375, -0.048095703125, -0.004764556884765625, 0.04669189453125, -0.0028171539306640625, 0.004047393798828125, 0.003910064697265625, 0.0062713623046875, -0.0038433074951171875, 0.0207366943359375, 0.00589752197265625, -0.0028438568115234375, 0.00826263427734375, -0.032562255859375, -0.0509033203125, -0.01532745361328125, -0.0227203369140625, 0.0026454925537109375, 0.00980377197265625, -0.0306549072265625, 0.01617431640625, 0.005298614501953125, 0.0161895751953125, 0.00933837890625, -0.0023174285888671875, 0.0020923614501953125, 0.01349639892578125, 0.0078887939453125, -0.005950927734375, -0.0233154296875, -0.036590576171875, 0.0192718505859375, 0.04449462890625, 0.03680419921875, 0.01605224609375, -0.03973388671875, -0.007350921630859375, 0.0233001708984375, -0.01143646240234375, 0.03631591796875, 0.00904083251953125, -0.00859832763671875, 0.026641845703125, -0.0250244140625, 0.0101470947265625, -0.036468505859375, 0.037261962890625, -0.0025844573974609375, -0.036163330078125, 0.03143310546875, -0.01995849609375, 0.00922393798828125, 0.01233673095703125, -0.0098419189453125, -0.015655517578125, 0.02862548828125, 0.03125, -0.0802001953125, 0.084228515625, 0.00978851318359375, -0.0421142578125, 0.0137786865234375, -0.03558349609375, 0.0333251953125, 0.0182952880859375, -0.0009965896606445312, 0.0221710205078125, 0.00206756591796875, 0.004596710205078125, 0.036865234375, 0.057769775390625, -0.0190887451171875, 0.043670654296875, 0.027862548828125, -0.0021114349365234375, -0.0289306640625, -0.0007734298706054688, -0.0010595321655273438, 0.01143646240234375, -0.02606201171875, -0.0100860595703125, -0.015106201171875, 0.0146026611328125, -0.0081024169921875, 0.0005617141723632812, 0.0205535888671875, 0.0193328857421875, 0.00226593017578125, 0.01290130615234375, 0.0158538818359375, -0.0004379749298095703, -0.0169677734375, 0.02496337890625, -0.0338134765625, 0.006710052490234375, 0.0121307373046875, 0.050048828125, -0.06842041015625, 0.0501708984375, -0.0009946823120117188, -0.020294189453125, -0.01253509521484375, 0.059600830078125, 0.047027587890625, -0.07391357421875, 0.0153045654296875, 0.01499176025390625, 0.0151214599609375, -0.036163330078125, -0.029205322265625, -0.0005645751953125, 0.028076171875, -0.066162109375, -0.0227508544921875, 0.0592041015625, 0.01300048828125, 0.00792694091796875, 0.037078857421875, -0.0304107666015625, -0.0699462890625, -0.0146942138671875, -0.0014982223510742188, 0.03302001953125, -0.06219482421875, 0.019989013671875, 0.0223236083984375, 0.04827880859375, 0.0596923828125, -0.0504150390625, 0.00342559814453125, -0.006023406982421875, 0.01328277587890625, -0.02447509765625, -0.020660400390625, 0.004573822021484375, -0.03900146484375, -0.0261383056640625, -0.00949859619140625, -0.008544921875, 0.032073974609375, -0.07403564453125, -0.005115509033203125, -0.0053558349609375, 0.01172637939453125, -0.00551605224609375, 0.005382537841796875, 0.075927734375, 0.08306884765625, -0.032745361328125, 0.004314422607421875, -0.0287017822265625, -0.0108184814453125, 0.033447265625, 0.002017974853515625, -0.0300445556640625, -0.0225982666015625, -0.01314544677734375, -0.0025196075439453125, -0.00955963134765625, -0.0096893310546875, -0.0265350341796875, 0.04608154296875, 0.018035888671875, 0.00240325927734375, 0.018402099609375, 0.0467529296875, -0.0251617431640625, 0.0140380859375, 0.0112457275390625, 0.0311279296875, -0.00487518310546875, -0.0164337158203125, 0.023345947265625, 0.0260772705078125, -0.03070068359375, -0.0404052734375, 0.0198822021484375, -0.02557373046875, 0.059661865234375, -0.0279541015625, -0.018524169921875, 0.0256805419921875, 0.01430511474609375, -0.0156097412109375, -0.006313323974609375, 0.06463623046875, -0.00830078125, 0.033905029296875, -0.003875732421875, -0.0562744140625, -0.0036106109619140625, 0.017333984375, -0.03662109375, 0.0307464599609375, -0.034454345703125, -0.043182373046875, 0.00879669189453125, 0.015411376953125, 0.056732177734375, -0.002689361572265625, 0.0347900390625, 0.03802490234375, 0.0030117034912109375, 0.0110015869140625, 0.0200653076171875, 0.0335693359375, -0.01180267333984375, 0.061431884765625, 0.0023174285888671875, -0.040496826171875, 0.003925323486328125, -0.052825927734375, 0.019317626953125, 0.0653076171875, 0.050140380859375, -0.10394287109375, 0.01947021484375, 0.0333251953125, 0.0163116455078125, 0.0168304443359375, -0.00787353515625, 0.028533935546875, 0.00611114501953125, 0.0193634033203125, -0.011566162109375, -0.01708984375, 0.00791168212890625, -0.03411865234375, -0.0031604766845703125, 0.01806640625, 0.05133056640625, 0.0087890625, -0.07794189453125, 0.02423095703125, 0.034027099609375, 0.0010633468627929688, 0.005252838134765625, 0.02325439453125, -0.02655029296875, -0.0401611328125, -0.047607421875, 0.001087188720703125, -0.01465606689453125, -0.007015228271484375, 0.00005137920379638672, 0.01312255859375, 0.01096343994140625, 0.03778076171875, -0.006988525390625, -0.023956298828125, 0.04168701171875, -0.050750732421875, 0.06304931640625, -0.0206756591796875, 0.010589599609375, 0.060882568359375, -0.059295654296875, 0.01032257080078125, 0.008941650390625, 0.0094451904296875, 0.0023441314697265625, 0.005672454833984375, 0.07708740234375, -0.006542205810546875, -0.033203125, 0.0020599365234375, 0.012237548828125, 0.0043792724609375, -0.031097412109375, 0.060791015625, -0.05682373046875, 0.004425048828125, 0.00970458984375, 0.028472900390625, -0.0239105224609375, -0.0113067626953125, -0.055328369140625, 0.08453369140625, -0.01922607421875, 0.037322998046875, 0.0160369873046875, 0.015045166015625, -0.01309967041015625, -0.003704071044921875, -0.028411865234375, 0.07183837890625, 0.0369873046875, 0.07958984375, -0.063232421875, -0.0421142578125, 0.053009033203125, 0.0811767578125, 0.0202484130859375, 0.01537322998046875, -0.021942138671875, 0.00913238525390625, 0.02154541015625, -0.021759033203125, -0.02685546875, 0.0487060546875, 0.0268402099609375, 0.022735595703125, 0.057037353515625, -0.0404052734375, 0.0298919677734375, -0.0080413818359375, 0.022979736328125, 0.03863525390625, -0.004974365234375, -0.03271484375, -0.006031036376953125, 0.00923919677734375, -0.015533447265625, -0.0142364501953125, -0.00429534912109375, 0.0225067138671875, 0.020172119140625, 0.024383544921875, 0.03729248046875, -0.03759765625, -0.0225067138671875, -0.00659942626953125, 0.035064697265625, 0.01175689697265625, -0.0345458984375, -0.000614166259765625, 0.0018548965454101562, -0.01424407958984375, -0.016143798828125, -0.025177001953125, 0.0236053466796875, 0.0006580352783203125, -0.009063720703125, 0.0113372802734375, 0.019561767578125, 0.00003361701965332031, 0.0301361083984375, 0.04266357421875, 0.00751495361328125, -0.0221405029296875, -0.05096435546875, 0.0134124755859375, 0.014068603515625, 0.00644683837890625, 0.0255889892578125, 0.0255584716796875, -0.027191162109375, 0.040802001953125, -0.056396484375, -0.016815185546875, -0.0084075927734375, 0.031646728515625, -0.03131103515625, -0.03924560546875, 0.01363372802734375, -0.0230712890625, -0.005580902099609375, -0.031280517578125, 0.0036067962646484375, 0.06707763671875, 0.031219482421875, -0.0008978843688964844, -0.06109619140625, -0.0233612060546875, -0.034698486328125, 0.01904296875, -0.00966644287109375, 0.047149658203125, -0.02410888671875, 0.017852783203125, -0.0362548828125, 0.023651123046875, -0.00384521484375, -0.00555419921875, 0.06304931640625, 0.041839599609375, -0.06494140625, -0.026641845703125, 0.02191162109375, -0.0244293212890625, -0.0394287109375, -0.033203125, -0.00595855712890625, 0.01849365234375, 0.00627899169921875, 0.025390625, 0.0247955322265625, -0.011260986328125, -0.027313232421875, 0.034576416015625, 0.005279541015625, -0.0311737060546875, 0.01207733154296875, -0.047882080078125, 0.04840087890625, -0.0111083984375, -0.05633544921875, -0.00746917724609375, -0.03680419921875, -0.01641845703125, 0.00496673583984375, 0.031768798828125, 0.0447998046875, -0.009918212890625, 0.0260467529296875, 0.007518768310546875, -0.004322052001953125, -0.007965087890625, 0.007320404052734375, -0.0447998046875, 0.0169525146484375, -0.00930023193359375, -0.0643310546875, -0.035064697265625, -0.05084228515625, 0.034454345703125, 0.01117706298828125, 0.052337646484375, 0.003353118896484375, 0.021881103515625, -0.02142333984375, 0.0236053466796875, -0.0609130859375, -0.00807952880859375, -0.001583099365234375, -0.00494384765625, -0.01007843017578125, 0.0034332275390625, -0.04693603515625, 0.06549072265625, -0.0042724609375, 0.0120086669921875, 0.06597900390625, -0.029510498046875, -0.004222869873046875, -0.015625, 0.0325927734375, 0.0025844573974609375, -0.03173828125, -0.00908660888671875, 0.0233154296875, 0.01430511474609375, 0.057037353515625, -0.0024585723876953125, 0.005893707275390625, -0.007259368896484375, -0.04779052734375, 0.00928497314453125, -0.0281219482421875, -0.0182342529296875, 0.0187835693359375, 0.032012939453125, 0.009490966796875, -0.059906005859375, -0.0350341796875, 0.02020263671875, -0.018646240234375, 0.04278564453125, -0.049896240234375, 0.06939697265625, -0.006458282470703125, -0.0116119384765625, 0.0224151611328125, -0.005634307861328125, -0.006877899169921875, -0.009765625, 0.00826263427734375, -0.034759521484375, 0.01552581787109375, -0.0028057098388671875, 0.017578125, -0.002239227294921875, -0.014984130859375, 0.061981201171875, -0.0335693359375, 0.054962158203125, -0.02276611328125, 0.0300750732421875, -0.0097503662109375, -0.0006704330444335938, -0.0284423828125, -0.02264404296875, 0.0034809112548828125, -0.0036487579345703125, -0.015716552734375, 0.01480865478515625, 0.0360107421875, -0.0174560546875, -0.0032825469970703125, -0.0046234130859375, -0.00356292724609375, 0.0013484954833984375, 0.0240478515625, 0.0238800048828125, -0.0384521484375, 0.003032684326171875, 0.019439697265625, 0.0228729248046875, 0.05712890625, 0.00949859619140625, -0.0259857177734375, -0.0245513916015625, 0.01096343994140625, 0.005619049072265625, -0.01041412353515625, 0.022247314453125, -0.019439697265625, -0.024200439453125, -0.005096435546875, -0.0251617431640625, -0.018890380859375, -0.0550537109375, -0.07635498046875, 0.0222625732421875, -0.003299713134765625, -0.0360107421875, -0.0186309814453125, -0.047515869140625, 0.0030364990234375, 0.005855560302734375, -0.0095672607421875, -0.01035308837890625, -0.059844970703125, 0.039093017578125, 0.022613525390625, -0.0265350341796875, 0.0357666015625, 0.00962066650390625, -0.073974609375, 0.00948333740234375, 0.0025310516357421875, 0.0034198760986328125, -0.056243896484375, 0.0108184814453125, 0.0277862548828125, 0.0108184814453125, 0.0074920654296875, 0.038482666015625, 0.06890869140625, 0.0251312255859375, 0.00603485107421875, -0.01148223876953125, -0.021484375, -0.01139068603515625, 0.074462890625, -0.0013685226440429688, 0.021759033203125, -0.0223236083984375, -0.067138671875, -0.028533935546875, -0.028717041015625, -0.0240936279296875, 0.039459228515625, -0.10540771484375, -0.01358795166015625, -0.003570556640625, 0.040008544921875, 0.0270843505859375, 0.006526947021484375, 0.03607177734375, -0.03411865234375, 0.0726318359375, -0.005706787109375, -0.0113677978515625, -0.0248565673828125, 0.02825927734375, -0.0049591064453125, 0.041015625, -0.022430419921875, 0.0276641845703125, 0.0462646484375, 0.03546142578125, -0.029296875, 0.004238128662109375, -0.044036865234375, 0.0218353271484375, -0.0133514404296875, 0.043243408203125, -0.0310821533203125, 0.01174163818359375, 0.01189422607421875, -0.0128326416015625, -0.0340576171875, -0.0272979736328125, 0.025054931640625, 0.0006575584411621094, -0.034912109375, 0.0762939453125, -0.02618408203125, -0.029083251953125, -0.050445556640625, 0.025421142578125, -0.0290069580078125, 0.00624847412109375, -0.0017604827880859375, 0.006717681884765625, 0.0130615234375, 0.0205078125, 0.040130615234375, -0.01751708984375, 0.05230712890625, 0.0243072509765625, 0.02178955078125, 0.0301055908203125 ]
8d46be4e3fb31cc14b88ed45c890d5c90a43ec84
Wordpress Stackexchange Q: Limit WP_Query to only X results (total, not per page) How to limit WP_Query to grab only let’s say 5 results? What I mean is actually only 5 results rather than 5 posts per page. This How to limit the number of posts that WP_Query gets? provides some insight and advices to use no_found_rows=true but do you use it with posts_per_page or do you need to limit results somewhere else? In my case (search) get_posts doesn’t work as I need to provide a search query. A: As you already mentioned, to limit the number of posts retrieved by the query, you can use posts_per_page. This argument works both for get_posts and WP_Query(), for example: $args = array( 'posts_per_page' => 5, ); $posts_array = get_posts( $args ); And as stated in the link you provided, no_found_rows = true will end the query after it reached its criteria. It's totally optional, and not very common.
Q: Limit WP_Query to only X results (total, not per page) How to limit WP_Query to grab only let’s say 5 results? What I mean is actually only 5 results rather than 5 posts per page. This How to limit the number of posts that WP_Query gets? provides some insight and advices to use no_found_rows=true but do you use it with posts_per_page or do you need to limit results somewhere else? In my case (search) get_posts doesn’t work as I need to provide a search query. A: As you already mentioned, to limit the number of posts retrieved by the query, you can use posts_per_page. This argument works both for get_posts and WP_Query(), for example: $args = array( 'posts_per_page' => 5, ); $posts_array = get_posts( $args ); And as stated in the link you provided, no_found_rows = true will end the query after it reached its criteria. It's totally optional, and not very common. A: What you are looking for isn't a parameter of WP_Query, it is the filter post_limits. This filter applies to a query's LIMIT clause before the query is sent to the database, allowing you to define a new query LIMIT. You can find more details here: https://codex.wordpress.org/Plugin_API/Filter_Reference/post_limits Depending on your specific case, you have two ways to solve it: * *Use a condition inside the function, like the example in the codex. *Don't use any condition, just return LIMIT 0, 5. So add the filter right before your query and remove it right after. UPDATE: Added a complete example for the second solution. Declare the functions in functions.php function custom_get_posts_limit(){ return 'LIMIT 0, 5'; } Then use it wherever you want add_filter( 'post_limits', 'custom_get_posts_limit' ); // Add all your others args get_posts( array( 'suppress_filters' => false) ); remove_filter( 'post_limits', 'custom_get_posts_limit' );
wordpress
{ "language": "en", "length": 295, "provenance": "stackexchange_00019.jsonl.gz:482450", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/288974" }
[ 0.06683349609375, -0.0038089752197265625, 0.0294647216796875, 0.0234375, 0.0033435821533203125, -0.04193115234375, 0.0831298828125, -0.039886474609375, -0.006572723388671875, 0.006237030029296875, -0.051483154296875, 0.02435302734375, -0.0209197998046875, -0.0167388916015625, 0.016387939453125, -0.032958984375, 0.047607421875, -0.051422119140625, -0.0117340087890625, -0.0212860107421875, 0.02264404296875, 0.001758575439453125, 0.03466796875, 0.0943603515625, -0.000701904296875, 0.0032062530517578125, 0.0711669921875, -0.050750732421875, 0.00673675537109375, -0.04083251953125, 0.001735687255859375, 0.013916015625, 0.0265655517578125, 0.021453857421875, -0.00963592529296875, 0.0212860107421875, -0.005435943603515625, -0.00009828805923461914, 0.00920867919921875, 0.01364898681640625, 0.01788330078125, -0.0015516281127929688, -0.029510498046875, 0.0194091796875, -0.040618896484375, -0.00922393798828125, 0.005626678466796875, -0.0220947265625, 0.00939178466796875, -0.064453125, -0.0097198486328125, 0.0244598388671875, 0.012908935546875, -0.044219970703125, -0.01500701904296875, 0.018829345703125, 0.049530029296875, -0.0227813720703125, 0.0439453125, -0.0777587890625, -0.0595703125, -0.0156097412109375, 0.04461669921875, 0.0054931640625, 0.0061187744140625, 0.0038909912109375, 0.0243072509765625, 0.01280975341796875, -0.0000171661376953125, -0.0024261474609375, 0.01296234130859375, -0.006786346435546875, 0.0021457672119140625, -0.01479339599609375, -0.00852203369140625, -0.031158447265625, 0.01303863525390625, -0.031890869140625, 0.0010356903076171875, 0.033599853515625, -0.0242767333984375, -0.05706787109375, -0.059906005859375, 0.03424072265625, -0.030242919921875, 0.020904541015625, -0.016021728515625, 0.0106201171875, -0.0257415771484375, -0.007427215576171875, -0.0219879150390625, -0.0272216796875, -0.034088134765625, -0.0012645721435546875, 0.00905609130859375, -0.040985107421875, 0.0174560546875, -0.0027923583984375, -0.003582000732421875, -0.02197265625, -0.006740570068359375, -0.0279998779296875, -0.0216217041015625, 0.010955810546875, 0.038543701171875, 0.030792236328125, -0.0212249755859375, 0.0194244384765625, 0.07611083984375, 0.0433349609375, 0.0234222412109375, 0.06439208984375, -0.0176849365234375, 0.001125335693359375, -0.03851318359375, -0.0098114013671875, -0.048492431640625, -0.0037555694580078125, -0.00957489013671875, -0.0110015869140625, -0.00036716461181640625, 0.005657196044921875, -0.01861572265625, -0.0239410400390625, 0.009552001953125, -0.0234527587890625, -0.022979736328125, 0.025634765625, -0.00743865966796875, 0.09429931640625, -0.0157623291015625, -0.0068359375, -0.01401519775390625, -0.018402099609375, -0.04852294921875, -0.039764404296875, 0.00495147705078125, 0.0139617919921875, 0.006587982177734375, 0.00717926025390625, 0.01012420654296875, -0.042205810546875, -0.00008845329284667969, 0.0219268798828125, 0.0288238525390625, -0.0205230712890625, 0.032135009765625, 0.03680419921875, -0.0000642538070678711, -0.011932373046875, 0.0188140869140625, 0.046966552734375, 0.046142578125, -0.00608062744140625, -0.065185546875, -0.0343017578125, -0.0094146728515625, -0.0198516845703125, -0.02545166015625, -0.05133056640625, 0.038665771484375, 0.0053558349609375, 0.005767822265625, 0.0047760009765625, -0.04241943359375, -0.0064239501953125, -0.02294921875, -0.01190185546875, 0.015533447265625, 0.03790283203125, 0.01373291015625, -0.0192108154296875, 0.00787353515625, -0.01031494140625, -0.0269012451171875, -0.014007568359375, 0.0216522216796875, 0.005329132080078125, 0.01255035400390625, 0.0222320556640625, -0.01556396484375, -0.0289306640625, 0.032867431640625, -0.00925445556640625, -0.04693603515625, 0.0182037353515625, 0.018096923828125, 0.0418701171875, -0.0033550262451171875, 0.0218353271484375, 0.052001953125, 0.0200347900390625, -0.014556884765625, -0.01404571533203125, -0.015899658203125, -0.028961181640625, -0.016571044921875, -0.0204620361328125, -0.0142669677734375, 0.045379638671875, 0.0450439453125, -0.01384735107421875, 0.00461578369140625, -0.018035888671875, -0.06689453125, -0.0102081298828125, -0.01262664794921875, 0.01282501220703125, -0.0298919677734375, 0.0183563232421875, 0.03509521484375, -0.004230499267578125, -0.03759765625, 0.0116119384765625, -0.0052490234375, -0.0221099853515625, -0.00504302978515625, 0.0282745361328125, 0.0008616447448730469, -0.010711669921875, 0.0172882080078125, -0.0313720703125, -0.0031452178955078125, 0.0261077880859375, 0.0872802734375, -0.063720703125, 0.0241241455078125, -0.060516357421875, 0.058380126953125, -0.0170745849609375, -0.04876708984375, 0.03863525390625, 0.061920166015625, 0.08172607421875, 0.0100860595703125, 0.0096282958984375, 0.0235748291015625, -0.05963134765625, 0.00698089599609375, 0.0278167724609375, 0.041839599609375, 0.023834228515625, -0.01316070556640625, -0.02935791015625, 0.018341064453125, -0.08978271484375, -0.0020751953125, -0.0178375244140625, -0.021453857421875, -0.0100250244140625, 0.028717041015625, -0.0132904052734375, 0.02276611328125, -0.03582763671875, 0.006946563720703125, 0.0237579345703125, 0.021331787109375, 0.0538330078125, -0.058837890625, 0.002819061279296875, 0.001232147216796875, 0.001316070556640625, -0.0244293212890625, 0.000499725341796875, -0.04534912109375, 0.05401611328125, 0.00852203369140625, 0.03369140625, -0.012481689453125, 0.0242462158203125, 0.007785797119140625, -0.01605224609375, -0.0012502670288085938, -0.0357666015625, -0.06268310546875, -0.01271820068359375, -0.043701171875, 0.05010986328125, 0.0173187255859375, -0.0433349609375, 0.0067138671875, 0.0450439453125, 0.02081298828125, -0.007476806640625, -0.004669189453125, -0.032012939453125, 0.0171051025390625, 0.0103912353515625, -0.00719451904296875, -0.019805908203125, 0.01020050048828125, 0.0120086669921875, -0.0300445556640625, 0.030242919921875, 0.006763458251953125, -0.01324462890625, -0.0038204193115234375, -0.07965087890625, 0.0631103515625, -0.069091796875, 0.0504150390625, 0.0692138671875, -0.0223541259765625, 0.0309906005859375, -0.01067352294921875, 0.00954437255859375, -0.0284576416015625, 0.0160980224609375, -0.02783203125, 0.0066375732421875, -0.08538818359375, 0.014892578125, 0.02392578125, 0.06524658203125, 0.0003101825714111328, -0.03704833984375, 0.0267486572265625, 0.034942626953125, -0.05938720703125, -0.0908203125, 0.05029296875, -0.02685546875, -0.01540374755859375, 0.0318603515625, -0.0100860595703125, -0.0274658203125, 0.0416259765625, -0.0206146240234375, 0.0018968582153320312, 0.007476806640625, -0.04852294921875, 0.00592041015625, -0.046875, 0.060333251953125, 0.002025604248046875, 0.021575927734375, -0.0040435791015625, 0.112548828125, -0.001705169677734375, -0.0809326171875, -0.040863037109375, 0.031280517578125, -0.03265380859375, -0.0200653076171875, -0.004718780517578125, -0.038238525390625, -0.005100250244140625, -0.004119873046875, -0.015960693359375, 0.006229400634765625, 0.01422119140625, 0.0026226043701171875, 0.00824737548828125, -0.001987457275390625, 0.038818359375, 0.005733489990234375, -0.039581298828125, 0.0203094482421875, 0.038360595703125, -0.024444580078125, -0.026458740234375, -0.0248870849609375, -0.059234619140625, 0.0220184326171875, 0.03363037109375, 0.01003265380859375, 0.005550384521484375, -0.0084075927734375, 0.0623779296875, -0.0008473396301269531, -0.015472412109375, -0.011077880859375, 0.06134033203125, 0.037872314453125, 0.0880126953125, -0.027801513671875, 0.01493072509765625, -0.019134521484375, -0.02056884765625, 0.00376129150390625, -0.000606536865234375, 0.0031337738037109375, -0.033233642578125, -0.0192718505859375, -0.033905029296875, 0.03521728515625, 0.0125885009765625, 0.0263671875, -0.02545166015625, -0.025054931640625, -0.0178070068359375, 0.0712890625, -0.040496826171875, -0.047576904296875, -0.0546875, 0.009979248046875, 0.0186920166015625, -0.08062744140625, 0.0592041015625, -0.037872314453125, -0.01192474365234375, -0.0164947509765625, -0.0390625, -0.005237579345703125, 0.0160064697265625, -0.052734375, 0.01500701904296875, -0.03271484375, 0.03692626953125, -0.0264129638671875, 0.0053253173828125, 0.0004837512969970703, 0.0009045600891113281, -0.03143310546875, -0.025421142578125, -0.005092620849609375, -0.0587158203125, -0.0263519287109375, 0.038482666015625, 0.035919189453125, -0.02655029296875, -0.0145263671875, -0.0183868408203125, 0.0487060546875, 0.0211334228515625, 0.022308349609375, 0.0175323486328125, -0.0080413818359375, -0.003345489501953125, -0.004032135009765625, 0.0243988037109375, -0.033233642578125, -0.0166778564453125, -0.047088623046875, 0.030364990234375, 0.0224151611328125, -0.05291748046875, -0.01522064208984375, -0.0821533203125, 0.016815185546875, -0.054229736328125, -0.00839996337890625, 0.01134490966796875, 0.02294921875, -0.0224609375, 0.0034351348876953125, -0.0211181640625, -0.043212890625, 0.034393310546875, 0.029388427734375, -0.016082763671875, -0.0021419525146484375, 0.06768798828125, 0.01451873779296875, -0.03375244140625, -0.05133056640625, -0.004131317138671875, 0.007091522216796875, -0.01104736328125, 0.03717041015625, -0.0283966064453125, -0.0148468017578125, 0.07757568359375, -0.037750244140625, -0.00534820556640625, -0.01352691650390625, 0.0208282470703125, -0.01184844970703125, -0.01415252685546875, 0.01123046875, -0.0283355712890625, 0.03948974609375, 0.02276611328125, -0.006015777587890625, -0.006134033203125, 0.003765106201171875, 0.0330810546875, -0.003383636474609375, 0.009002685546875, -0.0199737548828125, 0.016357421875, -0.0064697265625, 0.00982666015625, 0.015869140625, 0.00815582275390625, 0.0040740966796875, -0.0271453857421875, 0.027069091796875, 0.01007843017578125, 0.028564453125, 0.041046142578125, -0.0248565673828125, 0.03814697265625, 0.031707763671875, -0.00829315185546875, 0.001750946044921875, -0.002620697021484375, 0.0285797119140625, -0.006679534912109375, -0.048583984375, 0.0023021697998046875, 0.0028324127197265625, 0.0248260498046875, 0.00658416748046875, 0.0220794677734375, 0.034454345703125, -0.0310516357421875, -0.01180267333984375, -0.01192474365234375, -0.01371002197265625, -0.057403564453125, -0.041839599609375, 0.056488037109375, 0.00873565673828125, 0.006317138671875, 0.028289794921875, 0.0616455078125, -0.02716064453125, 0.058807373046875, -0.01470947265625, -0.00034236907958984375, 0.02239990234375, 0.020050048828125, 0.017120361328125, -0.0038299560546875, -0.0016775131225585938, -0.00484466552734375, 0.041961669921875, -0.00489044189453125, -0.0254974365234375, 0.0123748779296875, -0.01751708984375, 0.0194244384765625, 0.0350341796875, 0.0093841552734375, 0.034912109375, -0.0177459716796875, 0.041534423828125, 0.019073486328125, -0.0087432861328125, -0.05841064453125, -0.037811279296875, 0.0562744140625, 0.0221710205078125, 0.007259368896484375, -0.0238800048828125, 0.02301025390625, 0.017578125, -0.032318115234375, -0.0166473388671875, 0.01413726806640625, 0.0222015380859375, -0.02886962890625, -0.019195556640625, -0.00394439697265625, -0.01496124267578125, -0.0269012451171875, 0.00492095947265625, -0.01297760009765625, 0.00563812255859375, -0.0303192138671875, 0.0537109375, -0.023468017578125, -0.0186767578125, -0.05706787109375, 0.03375244140625, 0.003204345703125, 0.0271148681640625, -0.0122528076171875, -0.035491943359375, -0.048004150390625, -0.0257568359375, 0.0271453857421875, 0.004245758056640625, -0.0143585205078125, 0.0024929046630859375, 0.01108551025390625, 0.0084228515625, -0.0008072853088378906, -0.04498291015625, -0.02630615234375, 0.0014123916625976562, 0.0168914794921875, -0.0116119384765625, -0.041961669921875, 0.045013427734375, 0.020538330078125, 0.0027751922607421875, 0.005451202392578125, 0.040802001953125, 0.05169677734375, -0.0301971435546875, 0.0296783447265625, -0.050048828125, -0.061004638671875, 0.001712799072265625, -0.0638427734375, -0.016632080078125, -0.018096923828125, -0.006927490234375, 0.0322265625, -0.04449462890625, -0.007114410400390625, -0.0162506103515625, 0.031219482421875, -0.06640625, 0.007808685302734375, 0.042572021484375, 0.0167694091796875, 0.02545166015625, -0.04296875, -0.0158538818359375, 0.020416259765625, 0.006755828857421875, 0.01485443115234375, -0.032989501953125, 0.015838623046875, 0.0014476776123046875, 0.06353759765625, 0.007762908935546875, 0.049530029296875, 0.02032470703125, 0.0187225341796875, 0.03289794921875, 0.031585693359375, -0.0116119384765625, -0.0241241455078125, 0.04388427734375, 0.0011796951293945312, -0.01125335693359375, 0.0311737060546875, -0.0254669189453125, -0.0212554931640625, 0.0131378173828125, 0.0093841552734375, -0.040130615234375, 0.002979278564453125, -0.005924224853515625, 0.004329681396484375, 0.0011320114135742188, -0.008453369140625, 0.01800537109375, -0.025604248046875, 0.056182861328125, 0.0222625732421875, -0.0005311965942382812, 0.017608642578125, -0.0185089111328125, -0.005474090576171875, -0.005687713623046875, 0.0157012939453125, -0.00415802001953125, -0.05010986328125, 0.0252685546875, 0.0313720703125, -0.0024089813232421875, -0.014007568359375, 0.01555633544921875, -0.01033782958984375, 0.0009984970092773438, -0.07769775390625, 0.0036144256591796875, -0.022308349609375, -0.0117034912109375, 0.0213165283203125, 0.0308685302734375, 0.0009174346923828125, 0.0811767578125, -0.016510009765625, 0.0214385986328125, 0.038665771484375, -0.0106201171875, -0.053375244140625, -0.02294921875, 0.01541900634765625, 0.045867919921875, -0.044189453125, 0.041534423828125, -0.021087646484375, -0.01427459716796875, 0.0088653564453125, -0.0204315185546875, 0.037322998046875, -0.038055419921875, -0.003810882568359375, 0.0307769775390625, -0.01165008544921875, 0.0023746490478515625, -0.0079193115234375, 0.00778961181640625, -0.021484375, 0.00506591796875, -0.005573272705078125, 0.0020236968994140625, -0.020172119140625, -0.019073486328125, -0.0438232421875, 0.0826416015625, 0.00405120849609375, 0.00011152029037475586, 0.01995849609375, 0.039703369140625, -0.0288848876953125, 0.0301361083984375, -0.056854248046875, 0.07623291015625, 0.014007568359375, 0.03533935546875, -0.03863525390625, 0.00817108154296875, 0.00453948974609375, -0.01093292236328125, 0.05645751953125, 0.00379180908203125, -0.0174560546875, -0.011383056640625, 0.04046630859375, 0.03857421875, -0.0030517578125, 0.026153564453125, 0.01446533203125, 0.0634765625, 0.07672119140625, -0.05767822265625, 0.0258636474609375, -0.0011310577392578125, 0.016876220703125, 0.051361083984375, 0.00615692138671875, -0.001071929931640625, -0.00012052059173583984, 0.0229644775390625, -0.0282135009765625, 0.0012388229370117188, 0.02471923828125, -0.007755279541015625, 0.00919342041015625, 0.041778564453125, 0.044647216796875, -0.07940673828125, -0.04833984375, -0.02581787109375, 0.029998779296875, 0.013519287109375, 0.048065185546875, 0.051605224609375, 0.01372528076171875, 0.1278076171875, 0.005702972412109375, 0.0347900390625, 0.018402099609375, -0.00940704345703125, 0.061981201171875, 0.03070068359375, 0.038787841796875, -0.03594970703125, -0.006877899169921875, 0.0347900390625, 0.07537841796875, -0.043304443359375, -0.024261474609375, 0.01413726806640625, 0.00848388671875, -0.0132293701171875, -0.00867462158203125, -0.006656646728515625, 0.07666015625, 0.0823974609375, -0.007114410400390625, 0.011627197265625, 0.0138702392578125, 0.00665283203125, -0.0207672119140625, -0.02264404296875, -0.0022068023681640625, 0.0268096923828125, 0.01561737060546875, -0.0400390625, -0.016448974609375, -0.0026035308837890625, 0.0204620361328125, -0.028961181640625, -0.036529541015625, 0.01300048828125, -0.003704071044921875, 0.001544952392578125, -0.038787841796875, 0.019287109375, -0.037322998046875, -0.053985595703125, -0.0143890380859375, 0.0450439453125, 0.0296783447265625, -0.028167724609375, 0.0210113525390625, 0.0379638671875, -0.0087890625, -0.01290130615234375, 0.023468017578125, -0.00003069639205932617, -0.0017070770263671875, -0.01358795166015625, -0.00748443603515625, 0.01236724853515625, -0.018035888671875, 0.0007319450378417969, 0.03704833984375, 0.0129547119140625, -0.006664276123046875, 0.00948333740234375, 0.0040740966796875, -0.02484130859375, 0.023895263671875, 0.00011992454528808594, 0.0267333984375, 0.0108795166015625, -0.08172607421875, -0.01251983642578125, -0.02862548828125, -0.01617431640625, 0.033538818359375, 0.03302001953125, 0.003650665283203125, -0.0005903244018554688, 0.0263824462890625, -0.025054931640625, 0.00609588623046875, 0.018096923828125, 0.01531982421875, -0.016937255859375, 0.012451171875, -0.00437164306640625, -0.057769775390625, -0.039215087890625, 0.00560760498046875, 0.0258636474609375, -0.01110076904296875, 0.0263214111328125, 0.0128173828125, -0.00347137451171875, 0.0019588470458984375, 0.00812530517578125, 0.0122833251953125, 0.00783538818359375, 0.0343017578125, 0.02288818359375, -0.0079345703125, -0.0260772705078125, 0.01995849609375, -0.021942138671875, 0.043792724609375, -0.052947998046875, -0.0114593505859375, -0.053192138671875, 0.0288848876953125, -0.02496337890625, 0.0001773834228515625, -0.02099609375, 0.0196990966796875, -0.0310516357421875, -0.04803466796875, 0.0501708984375, -0.006862640380859375, -0.00923919677734375, 0.047821044921875, -0.036376953125, -0.039215087890625, 0.0259857177734375, -0.0635986328125, 0.0216827392578125, 0.0340576171875, -0.0118560791015625, 0.0260009765625, -0.020538330078125, -0.0283660888671875, -0.008270263671875, 0.01837158203125, -0.055694580078125, 0.0113677978515625, -0.01959228515625, -0.034576416015625, -0.0136260986328125, 0.00972747802734375, -0.01555633544921875, -0.006561279296875, -0.035369873046875, -0.00812530517578125, -0.0189666748046875, 0.038116455078125, -0.028350830078125, -0.0207366943359375, -0.01068878173828125, -0.02435302734375, -0.0110626220703125, -0.05352783203125, 0.0101470947265625, 0.0197296142578125, -0.0030307769775390625, 0.00804901123046875, -0.04437255859375, 0.06561279296875, -0.0305938720703125, -0.018768310546875, -0.005336761474609375, -0.028900146484375, 0.01132965087890625, 0.024810791015625, -0.032928466796875, 0.00255584716796875, -0.0380859375, -0.0167999267578125, -0.0249786376953125, -0.00989532470703125, 0.013946533203125, -0.00928497314453125, -0.011260986328125, -0.0019321441650390625, -0.01104736328125, 0.028350830078125, -0.0107421875, 0.00970458984375, 0.0604248046875, -0.0035381317138671875, -0.035369873046875, -0.10272216796875, 0.003154754638671875, -0.04986572265625, 0.017120361328125, 0.01232147216796875, 0.0037860870361328125, 0.0265350341796875, -0.03594970703125, -0.08929443359375, 0.06787109375, -0.024627685546875, -0.0298309326171875, -0.00992584228515625, -0.0191497802734375, -0.005840301513671875, 0.01335906982421875, 0.004932403564453125, 0.0011472702026367188, -0.039764404296875, -0.00476837158203125, 0.022857666015625, 0.00849151611328125, 0.042510986328125, 0.01541900634765625, -0.04034423828125, 0.02215576171875, -0.0039520263671875, 0.032318115234375, -0.0194244384765625, 0.0203094482421875, 0.0288238525390625, 0.05194091796875, -0.00565338134765625, 0.051727294921875, 0.00905609130859375, -0.01129913330078125, 0.00476837158203125, 0.006687164306640625, -0.050628662109375, -0.020965576171875, 0.0447998046875, 0.07861328125, 0.0177001953125, -0.034698486328125, 0.0007181167602539062, -0.03448486328125, -0.034210205078125, -0.006595611572265625, 0.0160675048828125, -0.0328369140625, 0.01873779296875, 0.0116424560546875, -0.02801513671875, 0.024017333984375, -0.0198974609375, -0.049407958984375, 0.00423431396484375, -0.0277557373046875, -0.0093994140625, -0.05859375, 0.02288818359375, -0.01256561279296875, -0.022705078125, -0.04718017578125, 0.0091552734375, -0.00998687744140625, -0.052581787109375, 0.0085296630859375, -0.005115509033203125, 0.01320648193359375, -0.0247955322265625, 0.00969696044921875, 0.00266265869140625, -0.0028018951416015625, -0.022369384765625, 0.000774383544921875, -0.0057220458984375, 0.0266265869140625, 0.0084991455078125, 0.027191162109375, 0.0199737548828125, -0.003627777099609375, 0.007373809814453125, 0.00891876220703125, -0.0003974437713623047, 0.061553955078125, 0.01023101806640625, 0.01275634765625, 0.0007047653198242188, -0.005645751953125, 0.04107666015625, -0.0357666015625, 0.002777099609375, 0.012054443359375, -0.00833892822265625, -0.0151519775390625, 0.01035308837890625, 0.0338134765625, -0.0127410888671875, 0.00600433349609375 ]
d5266fa3873468b485000732d0054541aa98e929
Wordpress Stackexchange Q: what is the meaning of settings_fields() Please guys , I tried a lot ro find out what's the main purpose of this function , but i didn't find what i want , i looked in the codex but seriously the description is not clear , i tried to see examples but finnally i saw an example i didn't understand nothing from it . <?php echo '<form method="post" action="options.php">'; settings_fields( 'my-plugin-settings-group' ); ?> A: Via the Developer Reference (not the Codex) Output nonce, action, and option_page fields for a settings page. Here's the source code for it function settings_fields($option_group) { echo "<input type='hidden' name='option_page' value='" . esc_attr($option_group) . "' />"; echo '<input type="hidden" name="action" value="update" />'; wp_nonce_field("$option_group-options"); } so, it gives the form processor some info to work with for the current options page, and verification with nonce on submit. UPDATE It's role is made more clear in the Settings API docs: To display the hidden fields and handle security of your options form, the Settings API provides the settings_fields() function. settings_fields( $option_group );
Q: what is the meaning of settings_fields() Please guys , I tried a lot ro find out what's the main purpose of this function , but i didn't find what i want , i looked in the codex but seriously the description is not clear , i tried to see examples but finnally i saw an example i didn't understand nothing from it . <?php echo '<form method="post" action="options.php">'; settings_fields( 'my-plugin-settings-group' ); ?> A: Via the Developer Reference (not the Codex) Output nonce, action, and option_page fields for a settings page. Here's the source code for it function settings_fields($option_group) { echo "<input type='hidden' name='option_page' value='" . esc_attr($option_group) . "' />"; echo '<input type="hidden" name="action" value="update" />'; wp_nonce_field("$option_group-options"); } so, it gives the form processor some info to work with for the current options page, and verification with nonce on submit. UPDATE It's role is made more clear in the Settings API docs: To display the hidden fields and handle security of your options form, the Settings API provides the settings_fields() function. settings_fields( $option_group );
wordpress
{ "language": "en", "length": 174, "provenance": "stackexchange_00019.jsonl.gz:482469", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/289036" }
[ 0.0264739990234375, -0.01398468017578125, -0.0213775634765625, 0.01033782958984375, -0.011962890625, -0.04644775390625, 0.031524658203125, -0.0111541748046875, 0.019805908203125, -0.002033233642578125, -0.0063629150390625, 0.01166534423828125, -0.040130615234375, -0.0443115234375, -0.01203155517578125, -0.02325439453125, 0.01171112060546875, -0.01297760009765625, 0.005069732666015625, -0.006221771240234375, 0.00705718994140625, 0.005191802978515625, -0.027008056640625, -0.021087646484375, 0.055419921875, -0.08203125, 0.015045166015625, -0.01221466064453125, 0.033721923828125, -0.01287841796875, 0.016143798828125, 0.00007510185241699219, 0.004878997802734375, 0.01885986328125, 0.01300048828125, 0.0198516845703125, 0.07672119140625, -0.01470947265625, 0.002063751220703125, 0.0635986328125, 0.04034423828125, -0.0196380615234375, 0.006683349609375, -0.0023632049560546875, -0.0200042724609375, -0.025787353515625, 0.07354736328125, 0.004207611083984375, 0.00603485107421875, 0.0237884521484375, 0.010406494140625, -0.04766845703125, 0.00661468505859375, 0.0310516357421875, -0.029205322265625, -0.03424072265625, -0.01385498046875, 0.00848388671875, 0.041595458984375, 0.0190887451171875, -0.0251922607421875, -0.0158233642578125, 0.0033397674560546875, -0.053802490234375, 0.0182647705078125, -0.0167388916015625, -0.01514434814453125, 0.0265960693359375, -0.0675048828125, -0.002819061279296875, 0.04571533203125, -0.0491943359375, 0.0231475830078125, -0.0243988037109375, 0.01134490966796875, 0.017181396484375, -0.0166473388671875, 0.006000518798828125, 0.02960205078125, -0.032318115234375, 0.00460052490234375, -0.01004791259765625, -0.01479339599609375, -0.01617431640625, 0.025238037109375, 0.045806884765625, 0.00145721435546875, -0.036468505859375, 0.034912109375, -0.0214996337890625, 0.004566192626953125, -0.05645751953125, 0.049163818359375, 0.0361328125, -0.01555633544921875, -0.039947509765625, 0.0082244873046875, 0.0050201416015625, 0.0090789794921875, -0.031005859375, 0.07049560546875, -0.060272216796875, 0.00695037841796875, 0.0000012516975402832031, -0.006908416748046875, 0.0731201171875, 0.0428466796875, -0.054840087890625, -0.05126953125, -0.0282745361328125, -0.0182037353515625, -0.043670654296875, 0.00687408447265625, -0.03228759765625, 0.00995635986328125, -0.047943115234375, -0.03497314453125, 0.008575439453125, 0.0036449432373046875, -0.08477783203125, -0.01497650146484375, -0.0108795166015625, -0.0005164146423339844, -0.0152130126953125, -0.001728057861328125, -0.0164031982421875, -0.033111572265625, 0.008209228515625, 0.0201416015625, 0.052276611328125, -0.047576904296875, -0.0115814208984375, 0.0703125, 0.0074310302734375, 0.00931549072265625, -0.039398193359375, 0.0226898193359375, -0.0130767822265625, -0.00978851318359375, 0.046630859375, 0.017303466796875, -0.070556640625, -0.030120849609375, 0.0213470458984375, -0.012725830078125, -0.0303497314453125, 0.0254669189453125, 0.055572509765625, -0.0274658203125, 0.017852783203125, 0.01360321044921875, 0.0196533203125, 0.034881591796875, 0.00157928466796875, -0.022064208984375, 0.026031494140625, 0.01080322265625, -0.0055389404296875, -0.0443115234375, -0.0206451416015625, -0.039093017578125, -0.02740478515625, 0.0294647216796875, -0.0299835205078125, -0.033050537109375, 0.043609619140625, -0.02325439453125, -0.00504302978515625, 0.003406524658203125, -0.024322509765625, 0.0077362060546875, -0.0106964111328125, -0.033294677734375, -0.007415771484375, 0.01180267333984375, 0.00662994384765625, -0.01708984375, 0.035614013671875, 0.042388916015625, -0.0345458984375, -0.033355712890625, -0.05059814453125, 0.057769775390625, -0.0165252685546875, -0.04803466796875, 0.05767822265625, 0.0007505416870117188, 0.042877197265625, 0.00569915771484375, 0.0069427490234375, 0.018646240234375, 0.03509521484375, -0.0181732177734375, 0.000949859619140625, 0.0272674560546875, -0.023681640625, -0.0335693359375, -0.012847900390625, -0.008148193359375, -0.0166778564453125, 0.004306793212890625, -0.00727081298828125, 0.005680084228515625, 0.019683837890625, 0.0063323974609375, -0.0239410400390625, -0.0013494491577148438, -0.0008902549743652344, -0.017181396484375, 0.006511688232421875, 0.02001953125, 0.01300811767578125, -0.027099609375, -0.00022161006927490234, -0.03594970703125, 0.00738525390625, -0.005435943603515625, 0.05029296875, -0.01287841796875, 0.055877685546875, -0.0304412841796875, -0.03509521484375, -0.021392822265625, 0.005016326904296875, 0.0452880859375, -0.0171356201171875, 0.0178985595703125, -0.024017333984375, 0.08477783203125, -0.0223388671875, 0.0802001953125, 0.00685882568359375, 0.0189361572265625, 0.0148162841796875, -0.0379638671875, -0.013519287109375, -0.0160064697265625, -0.0565185546875, 0.005931854248046875, 0.054107666015625, 0.041229248046875, 0.0144195556640625, -0.035552978515625, -0.060089111328125, 0.057769775390625, -0.024505615234375, 0.007190704345703125, -0.036895751953125, 0.0259246826171875, -0.000606536865234375, 0.00461578369140625, -0.033294677734375, 0.0234832763671875, -0.043487548828125, 0.0301666259765625, 0.0167694091796875, -0.081298828125, -0.031402587890625, 0.033721923828125, -0.01971435546875, -0.0035400390625, -0.0814208984375, 0.02099609375, -0.05487060546875, 0.04791259765625, -0.0059814453125, 0.03143310546875, 0.017669677734375, -0.006275177001953125, 0.026275634765625, 0.00548553466796875, -0.057830810546875, -0.00446319580078125, 0.0182647705078125, 0.01210784912109375, -0.046051025390625, -0.0075531005859375, -0.01319122314453125, -0.0275421142578125, -0.019989013671875, -0.0091400146484375, 0.0257568359375, -0.033477783203125, -0.016632080078125, 0.0113067626953125, -0.024566650390625, -0.013671875, 0.0005497932434082031, 0.049957275390625, 0.0140380859375, 0.02020263671875, 0.038543701171875, -0.0200653076171875, 0.06695556640625, 0.00872802734375, -0.02203369140625, -0.0240478515625, -0.04840087890625, 0.038848876953125, -0.041168212890625, 0.0306549072265625, 0.060028076171875, -0.01543426513671875, 0.027587890625, 0.0183258056640625, -0.037567138671875, 0.01493072509765625, 0.03582763671875, 0.007720947265625, -0.0310516357421875, -0.034942626953125, 0.009185791015625, 0.025054931640625, -0.0025234222412109375, -0.00949859619140625, -0.055206298828125, -0.048004150390625, 0.013092041015625, -0.10394287109375, -0.0183258056640625, 0.02587890625, -0.0804443359375, -0.0019235610961914062, -0.038848876953125, -0.04833984375, -0.0006008148193359375, -0.005069732666015625, 0.00803375244140625, -0.01404571533203125, 0.0026645660400390625, -0.0238037109375, -0.004627227783203125, -0.043731689453125, 0.026397705078125, 0.004055023193359375, 0.0240478515625, 0.004047393798828125, 0.04266357421875, -0.0022945404052734375, -0.06365966796875, -0.02099609375, -0.0183258056640625, -0.0170135498046875, 0.0010023117065429688, 0.012237548828125, -0.0147705078125, 0.0122833251953125, 0.0064544677734375, -0.0164031982421875, 0.0118865966796875, -0.00516510009765625, -0.040435791015625, -0.024017333984375, 0.0267333984375, -0.0016279220581054688, -0.0010890960693359375, 0.01654052734375, 0.0026569366455078125, -0.024993896484375, -0.048492431640625, 0.004150390625, -0.0126800537109375, -0.027130126953125, 0.01395416259765625, 0.00586700439453125, 0.0012798309326171875, 0.006389617919921875, 0.015869140625, 0.00380706787109375, 0.007659912109375, 0.01116180419921875, -0.02294921875, 0.017913818359375, -0.0026340484619140625, -0.0055999755859375, -0.0036449432373046875, 0.016326904296875, -0.0186920166015625, -0.0065155029296875, -0.00600433349609375, 0.00714874267578125, 0.0018854141235351562, -0.0213775634765625, -0.0247955322265625, -0.062469482421875, 0.045654296875, -0.019317626953125, 0.0013895034790039062, -0.030609130859375, -0.01800537109375, -0.00926971435546875, 0.0880126953125, -0.04803466796875, -0.0249481201171875, 0.0173797607421875, 0.04241943359375, -0.048858642578125, -0.052764892578125, -0.018096923828125, -0.0090484619140625, -0.056976318359375, 0.000701904296875, -0.00359344482421875, -0.0184783935546875, 0.00737762451171875, 0.03887939453125, 0.00017833709716796875, -0.0255279541015625, 0.0229034423828125, 0.04998779296875, 0.01277923583984375, -0.022003173828125, 0.01267242431640625, -0.0261688232421875, 0.01415252685546875, 0.005390167236328125, -0.035888671875, -0.0173492431640625, 0.03271484375, 0.0032787322998046875, 0.0168914794921875, -0.0635986328125, 0.020538330078125, 0.05078125, -0.0012989044189453125, 0.00966644287109375, 0.005458831787109375, 0.00246429443359375, 0.0021572113037109375, -0.004718780517578125, -0.00812530517578125, -0.0223388671875, 0.01800537109375, 0.041778564453125, -0.07061767578125, -0.020172119140625, -0.02423095703125, -0.040069580078125, 0.06341552734375, -0.08050537109375, -0.0396728515625, -0.00940704345703125, -0.01222991943359375, 0.01389312744140625, -0.0513916015625, 0.0293426513671875, 0.0007967948913574219, -0.045318603515625, 0.037353515625, -0.041748046875, 0.009368896484375, 0.018463134765625, 0.07568359375, 0.0007491111755371094, 0.0084381103515625, -0.05963134765625, -0.045074462890625, 0.01263427734375, 0.00501251220703125, 0.03570556640625, 0.01296234130859375, -0.0164337158203125, 0.05853271484375, -0.01187896728515625, -0.0025196075439453125, -0.038299560546875, 0.056182861328125, -0.0157928466796875, -0.030517578125, 0.0138092041015625, -0.042266845703125, 0.031341552734375, 0.0166168212890625, -0.01015472412109375, 0.010223388671875, 0.01678466796875, -0.0128631591796875, -0.037445068359375, 0.0230712890625, 0.004058837890625, -0.05712890625, -0.0014123916625976562, 0.026397705078125, 0.036529541015625, 0.05572509765625, -0.0121612548828125, 0.06011962890625, 0.00922393798828125, 0.00818634033203125, -0.034698486328125, 0.0309600830078125, -0.0228729248046875, 0.033172607421875, -0.00789642333984375, 0.0028209686279296875, -0.057159423828125, -0.00817108154296875, 0.0460205078125, -0.040771484375, -0.07568359375, 0.004619598388671875, -0.035369873046875, 0.024017333984375, 0.0416259765625, 0.001850128173828125, 0.00658416748046875, -0.007343292236328125, -0.000023365020751953125, 0.011199951171875, 0.0026645660400390625, -0.0125885009765625, -0.0119476318359375, 0.01084136962890625, 0.0130157470703125, 0.0075225830078125, -0.0004622936248779297, 0.0611572265625, -0.0290069580078125, 0.040618896484375, -0.017059326171875, 0.02423095703125, 0.04388427734375, -0.0207366943359375, 0.0296173095703125, 0.0145111083984375, 0.01171112060546875, -0.058319091796875, 0.01041412353515625, -0.021148681640625, -0.033538818359375, 0.053619384765625, 0.01018524169921875, -0.0031604766845703125, 0.01190185546875, -0.0075836181640625, 0.0278778076171875, -0.0382080078125, 0.0227203369140625, -0.01541900634765625, -0.062225341796875, -0.007843017578125, 0.05291748046875, 0.0281524658203125, -0.01522064208984375, 0.0079498291015625, 0.045501708984375, -0.004245758056640625, 0.002368927001953125, -0.02545166015625, -0.03179931640625, -0.0140533447265625, 0.019317626953125, -0.0309295654296875, -0.0035381317138671875, -0.01222991943359375, -0.04962158203125, -0.053070068359375, 0.0132293701171875, -0.0047149658203125, 0.003582000732421875, -0.016143798828125, 0.0396728515625, -0.0230712890625, -0.0249786376953125, -0.01318359375, -0.0094757080078125, 0.0467529296875, 0.0279388427734375, -0.06781005859375, 0.003936767578125, -0.00649261474609375, -0.006458282470703125, -0.00298309326171875, -0.0281219482421875, -0.034423828125, -0.007030487060546875, -0.01500701904296875, 0.0235748291015625, -0.031707763671875, -0.0127410888671875, 0.0005331039428710938, 0.0249786376953125, -0.0141143798828125, 0.040863037109375, -0.00133514404296875, 0.06494140625, -0.03082275390625, 0.040069580078125, -0.01374053955078125, 0.01171875, -0.06182861328125, 0.0186614990234375, 0.01538848876953125, -0.0073699951171875, -0.035919189453125, -0.03680419921875, 0.003662109375, 0.0283660888671875, 0.070068359375, -0.004482269287109375, 0.0050048828125, 0.02764892578125, 0.00860595703125, -0.0117034912109375, -0.00836944580078125, 0.032562255859375, -0.01334381103515625, 0.04595947265625, -0.04638671875, -0.0103607177734375, -0.00018596649169921875, -0.0207672119140625, 0.06005859375, -0.0298919677734375, 0.041107177734375, 0.0496826171875, -0.0288848876953125, 0.057861328125, 0.10906982421875, 0.01433563232421875, 0.05731201171875, 0.0223388671875, -0.0039005279541015625, 0.0228271484375, 0.00634765625, -0.066162109375, -0.01558685302734375, 0.040008544921875, 0.016845703125, -0.01438140869140625, 0.039581298828125, -0.01953125, 0.065185546875, 0.062255859375, 0.07196044921875, -0.1094970703125, 0.038238525390625, 0.003017425537109375, -0.00334930419921875, 0.10693359375, 0.0243377685546875, -0.0288543701171875, -0.035125732421875, 0.03509521484375, -0.056854248046875, -0.0018587112426757812, 0.0289154052734375, -0.02044677734375, -0.0290985107421875, -0.0048370361328125, 0.007030487060546875, -0.0002624988555908203, 0.019439697265625, -0.0136260986328125, -0.01380157470703125, -0.0132598876953125, -0.00347900390625, 0.0185546875, 0.0225067138671875, -0.05340576171875, -0.0780029296875, -0.0062408447265625, 0.0178375244140625, -0.070068359375, -0.0158843994140625, 0.003093719482421875, 0.0026493072509765625, 0.05224609375, -0.0311126708984375, 0.00829315185546875, 0.025146484375, 0.0266571044921875, -0.058807373046875, -0.033905029296875, 0.00339508056640625, 0.043365478515625, -0.033172607421875, 0.04351806640625, -0.017852783203125, -0.01221466064453125, -0.0141448974609375, -0.021331787109375, 0.08575439453125, -0.00852203369140625, -0.032745361328125, 0.0090484619140625, 0.0231781005859375, 0.0005807876586914062, -0.007205963134765625, 0.0064239501953125, -0.04931640625, -0.02911376953125, -0.019866943359375, -0.054473876953125, 0.01319122314453125, -0.039154052734375, -0.041748046875, 0.0745849609375, 0.00778961181640625, 0.006866455078125, 0.00030732154846191406, 0.0252685546875, -0.0323486328125, 0.00598907470703125, -0.00734710693359375, 0.04119873046875, 0.00969696044921875, 0.016082763671875, -0.0233154296875, -0.0246734619140625, -0.0006375312805175781, 0.07110595703125, 0.0499267578125, 0.0117950439453125, -0.0198516845703125, -0.00672149658203125, 0.044403076171875, -0.0182037353515625, -0.025177001953125, 0.0562744140625, 0.009979248046875, 0.00522613525390625, 0.04254150390625, -0.017120361328125, 0.02880859375, -0.01280975341796875, 0.01416015625, 0.034698486328125, 0.00980377197265625, 0.00710296630859375, -0.040985107421875, 0.06646728515625, -0.021087646484375, -0.032958984375, 0.019927978515625, -0.0215911865234375, -0.00678253173828125, -0.005435943603515625, -0.0053253173828125, -0.0085296630859375, 0.046875, -0.018341064453125, 0.033050537109375, 0.0032520294189453125, 0.0227508544921875, 0.03363037109375, 0.0176849365234375, 0.04522705078125, -0.0282745361328125, -0.0013713836669921875, -0.019287109375, 0.0013551712036132812, 0.0252532958984375, -0.01129913330078125, 0.0213165283203125, -0.0257415771484375, 0.029205322265625, -0.004962921142578125, 0.022491455078125, -0.044342041015625, -0.040130615234375, 0.006618499755859375, 0.024810791015625, 0.029876708984375, -0.0183258056640625, 0.0217437744140625, -0.02593994140625, 0.0293731689453125, -0.0208892822265625, -0.0028228759765625, 0.050140380859375, 0.0156097412109375, 0.020904541015625, 0.031341552734375, -0.07391357421875, -0.01302337646484375, -0.01345062255859375, -0.0253143310546875, -0.00011396408081054688, 0.0239105224609375, 0.017547607421875, 0.0312042236328125, -0.0092620849609375, -0.023193359375, -0.0174407958984375, 0.0088043212890625, 0.02203369140625, -0.00041031837463378906, 0.00244140625, 0.0159912109375, 0.02001953125, 0.00185394287109375, 0.0098876953125, 0.0034580230712890625, 0.0284423828125, 0.034271240234375, -0.01218414306640625, -0.00424957275390625, 0.0284576416015625, -0.0036678314208984375, -0.00714111328125, -0.0157928466796875, -0.012237548828125, 0.0181884765625, -0.0186767578125, 0.01367950439453125, -0.01505279541015625, 0.042694091796875, -0.030792236328125, 0.0614013671875, -0.01340484619140625, -0.00001990795135498047, 0.0230255126953125, 0.0195465087890625, 0.06353759765625, 0.0168304443359375, -0.038726806640625, 0.00142669677734375, -0.033843994140625, -0.058319091796875, 0.01232147216796875, 0.033203125, -0.01242828369140625, 0.011810302734375, 0.031585693359375, -0.0217742919921875, 0.024505615234375, -0.0008091926574707031, 0.00991058349609375, -0.004314422607421875, 0.01421356201171875, -0.01287078857421875, -0.005584716796875, -0.032958984375, -0.006229400634765625, 0.0711669921875, 0.00725555419921875, 0.027099609375, -0.0237579345703125, 0.024871826171875, -0.010040283203125, -0.00353240966796875, -0.005664825439453125, -0.02984619140625, 0.0728759765625, 0.023468017578125, -0.017333984375, -0.02880859375, 0.016357421875, 0.04296875, 0.01251983642578125, -0.059539794921875, 0.00682830810546875, 0.01207733154296875, 0.00821685791015625, -0.01139068603515625, 0.004116058349609375, -0.0283966064453125, -0.0299530029296875, 0.0005106925964355469, 0.016204833984375, -0.0132598876953125, -0.001129150390625, -0.0027866363525390625, 0.024078369140625, 0.0234222412109375, 0.0213470458984375, -0.01181793212890625, 0.025604248046875, -0.0149993896484375, 0.0196533203125, -0.00711822509765625, 0.006290435791015625, -0.03472900390625, -0.027130126953125, 0.0020923614501953125, -0.0004107952117919922, 0.006221771240234375, -0.020050048828125, 0.0193634033203125, -0.03387451171875, -0.005321502685546875, 0.0009560585021972656, -0.0313720703125, -0.007236480712890625, 0.0219879150390625, -0.00595855712890625, -0.0283660888671875, 0.018402099609375, -0.0025157928466796875, -0.022705078125, -0.0029144287109375, 0.0166473388671875, -0.00135040283203125, -0.0050201416015625, -0.0214996337890625, -0.013824462890625, -0.00766754150390625, -0.01446533203125, -0.0298919677734375, -0.029754638671875, 0.00807952880859375, 0.07159423828125, -0.06463623046875, 0.004024505615234375, 0.0149688720703125, 0.03997802734375, -0.03338623046875, 0.00598907470703125, -0.00666046142578125, -0.01386260986328125, 0.00891876220703125, 0.0364990234375, 0.0243072509765625, -0.0261383056640625, 0.0048370361328125, 0.0718994140625, 0.037109375, 0.11505126953125, -0.005290985107421875, -0.0155181884765625, 0.0175323486328125, 0.0217742919921875, -0.03948974609375, -0.039794921875, -0.0006322860717773438, 0.0036754608154296875, 0.01021575927734375, -0.030975341796875, -0.0075225830078125, 0.005970001220703125, -0.0413818359375, -0.0687255859375, 0.057525634765625, -0.016082763671875, -0.024932861328125, -0.0266265869140625, -0.0081939697265625, 0.003063201904296875, 0.048095703125, 0.0021648406982421875, -0.025543212890625, -0.0200958251953125, 0.00782012939453125, -0.0005970001220703125, -0.0016984939575195312, 0.0274200439453125, -0.04315185546875, -0.0887451171875, -0.035919189453125, -0.03057861328125, 0.0037212371826171875, 0.0169830322265625, 0.004009246826171875, -0.0061187744140625, 0.0340576171875, -0.035400390625, -0.06451416015625, -0.034271240234375, 0.00391387939453125, 0.0136260986328125, 0.016876220703125, -0.032470703125, 0.002841949462890625, 0.03192138671875, 0.0743408203125, 0.0183258056640625, -0.0277252197265625, -0.0400390625, -0.02508544921875, -0.04046630859375, -0.0487060546875, 0.024444580078125, -0.067138671875, -0.01120758056640625, -0.0302886962890625, 0.00463104248046875, -0.00556182861328125, -0.022613525390625, -0.0017137527465820312, -0.0021839141845703125, 0.050201416015625, -0.005077362060546875, 0.028411865234375, -0.032501220703125, 0.05291748046875, -0.042633056640625, -0.020111083984375, 0.0180206298828125, 0.01540374755859375, 0.00846099853515625, 0.042388916015625, -0.0194549560546875, -0.0270538330078125, -0.01427459716796875, 0.032745361328125, -0.0157623291015625, 0.029144287109375, -0.0369873046875, -0.006381988525390625, -0.004940032958984375, 0.008453369140625, 0.002994537353515625, -0.0137481689453125, -0.04632568359375, 0.07958984375, 0.0086669921875, 0.07574462890625, -0.017059326171875, 0.012451171875, -0.023712158203125, 0.025115966796875, -0.00476837158203125, 0.010589599609375, 0.03125, -0.020751953125, 0.01401519775390625, -0.00901031494140625, 0.050445556640625, -0.03460693359375, 0.04443359375, 0.01238250732421875, 0.0128631591796875, 0.032989501953125 ]
9071decd5f7c3450f8fbb91ad11cf4569a66d848
Wordpress Stackexchange Q: How to allow HTML tags into WP Bakery (formerly Visual Composer) `textfield` parameter While writing a custom element for WC Bakery (formerly Visual Composer) I've discovered that the HTML tags are being stripped from the textfield parameter type. It's sanitizing the textfield value by default. I could not find a way to disable the textfield sanitization. How can I allow HTML tags to be entered into this field? A: You need to change the type from textarea to textarea_raw_html: * *https://kb.wpbakery.com/docs/inner-api/vc_map/ Under the section "Available type values" it says: textarea_raw_html: Text area, its content will be coded into base64 (this allows you to store raw js or raw html code) Although I'm not sure why they can base64 encode the output from this but not the textarea_html box with its nice formatting - an annoying limitation. UPDATE It looks like you have to jump through some hoops when you switch to the textarea_raw_html param type. To use the value you need to manually decode it with: $atts['some_param'] = rawurldecode( base64_decode( $atts['some_param'] ) );
Q: How to allow HTML tags into WP Bakery (formerly Visual Composer) `textfield` parameter While writing a custom element for WC Bakery (formerly Visual Composer) I've discovered that the HTML tags are being stripped from the textfield parameter type. It's sanitizing the textfield value by default. I could not find a way to disable the textfield sanitization. How can I allow HTML tags to be entered into this field? A: You need to change the type from textarea to textarea_raw_html: * *https://kb.wpbakery.com/docs/inner-api/vc_map/ Under the section "Available type values" it says: textarea_raw_html: Text area, its content will be coded into base64 (this allows you to store raw js or raw html code) Although I'm not sure why they can base64 encode the output from this but not the textarea_html box with its nice formatting - an annoying limitation. UPDATE It looks like you have to jump through some hoops when you switch to the textarea_raw_html param type. To use the value you need to manually decode it with: $atts['some_param'] = rawurldecode( base64_decode( $atts['some_param'] ) ); A: If you pass the vc_map param as param_name = 'content' the html wont get stripped off. The problem is you can only put one content. array( 'type' => 'textarea', 'heading' => esc_html__( 'Texto', 'bauhaus' ), 'param_name' => 'content', 'holder' => 'div' ), add_shortcode( 'custom_bloque_informativo', 'custom_bloque_informativo_func' ); function custom_bloque_informativo_func( $atts, $content ) { ob_start(); }
wordpress
{ "language": "en", "length": 229, "provenance": "stackexchange_00019.jsonl.gz:482584", "question_score": "7", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/289421" }
[ 0.053558349609375, 0.006336212158203125, -0.03466796875, -0.06365966796875, 0.029266357421875, -0.01485443115234375, -0.0159912109375, 0.0052337646484375, -0.0036258697509765625, 0.058013916015625, 0.0255279541015625, -0.0104217529296875, 0.026214599609375, -0.03302001953125, -0.030792236328125, 0.0017642974853515625, 0.0089569091796875, 0.0214691162109375, 0.0127410888671875, -0.00019466876983642578, -0.018585205078125, 0.0015716552734375, -0.01995849609375, -0.060455322265625, 0.022369384765625, -0.00565338134765625, 0.01611328125, -0.0230865478515625, 0.01105499267578125, 0.003696441650390625, 0.0167083740234375, -0.021881103515625, 0.03564453125, 0.0309600830078125, -0.08251953125, -0.0018215179443359375, -0.01372528076171875, 0.0214385986328125, -0.020904541015625, 0.0283050537109375, 0.055389404296875, -0.03607177734375, 0.0050201416015625, 0.01444244384765625, -0.01007843017578125, -0.032958984375, 0.05352783203125, -0.033538818359375, 0.035736083984375, 0.01251983642578125, 0.0287017822265625, 0.0110931396484375, 0.036376953125, 0.0023212432861328125, -0.02362060546875, -0.0232696533203125, -0.039520263671875, -0.00608062744140625, 0.0091552734375, 0.1009521484375, 0.0303497314453125, 0.002994537353515625, -0.038177490234375, -0.06597900390625, 0.01050567626953125, -0.0006594657897949219, 0.005565643310546875, 0.01468658447265625, -0.031768798828125, 0.0029296875, 0.044464111328125, -0.0291290283203125, 0.039459228515625, -0.039154052734375, 0.0165252685546875, 0.00943756103515625, -0.0182952880859375, 0.0254364013671875, 0.027618408203125, -0.0262908935546875, -0.01100921630859375, -0.038238525390625, 0.032958984375, -0.026641845703125, 0.005970001220703125, -0.003688812255859375, -0.0213165283203125, 0.00844573974609375, 0.016754150390625, 0.04022216796875, 0.0017547607421875, 0.0218658447265625, 0.042938232421875, 0.0270538330078125, -0.01244354248046875, -0.0091094970703125, 0.007755279541015625, -0.02099609375, 0.034942626953125, 0.046417236328125, 0.057464599609375, -0.08148193359375, 0.08966064453125, -0.023895263671875, 0.01055145263671875, 0.0777587890625, -0.03656005859375, 0.0204010009765625, 0.058349609375, 0.019561767578125, 0.03802490234375, -0.0310821533203125, 0.00991058349609375, -0.0156707763671875, -0.01812744140625, 0.0059661865234375, 0.0084075927734375, -0.00745391845703125, 0.0009722709655761719, -0.01654052734375, -0.03204345703125, 0.0000438690185546875, -0.007335662841796875, 0.0308837890625, -0.0277252197265625, -0.0244903564453125, 0.0290985107421875, -0.00090789794921875, -0.0518798828125, 0.0196380615234375, -0.0174407958984375, 0.044647216796875, 0.022796630859375, 0.0194244384765625, -0.004062652587890625, -0.00872039794921875, 0.04595947265625, -0.0217132568359375, -0.005275726318359375, 0.033416748046875, -0.0214385986328125, -0.017364501953125, 0.0182342529296875, -0.034149169921875, 0.005523681640625, 0.0185699462890625, 0.0274505615234375, 0.00286102294921875, -0.032257080078125, -0.050872802734375, 0.03497314453125, -0.013214111328125, 0.045562744140625, 0.01100921630859375, 0.003093719482421875, 0.006015777587890625, 0.06036376953125, -0.02386474609375, -0.05743408203125, -0.0465087890625, 0.004150390625, -0.0269775390625, 0.01163482666015625, -0.0400390625, -0.04400634765625, 0.0179443359375, -0.05303955078125, -0.00955963134765625, 0.036346435546875, 0.09381103515625, -0.0281829833984375, 0.00823211669921875, 0.003429412841796875, 0.041473388671875, -0.0017185211181640625, 0.0198974609375, 0.02154541015625, 0.041839599609375, 0.01763916015625, 0.04388427734375, 0.00936126708984375, -0.027618408203125, 0.099853515625, -0.034515380859375, -0.06805419921875, 0.0550537109375, -0.002605438232421875, 0.0919189453125, 0.0552978515625, 0.0125732421875, 0.00630950927734375, -0.029937744140625, 0.01291656494140625, 0.01291656494140625, 0.0163726806640625, -0.057861328125, -0.037506103515625, -0.02264404296875, -0.0196990966796875, 0.006488800048828125, -0.0024585723876953125, -0.04669189453125, 0.03985595703125, -0.037628173828125, 0.0235595703125, -0.0254974365234375, -0.0008230209350585938, 0.0212249755859375, -0.00670623779296875, 0.0347900390625, 0.028045654296875, 0.0096893310546875, -0.06219482421875, 0.0753173828125, 0.020660400390625, -0.0160980224609375, -0.01013946533203125, 0.0306549072265625, -0.007373809814453125, 0.0236663818359375, -0.002681732177734375, -0.0310516357421875, 0.0240631103515625, 0.0245361328125, 0.0275421142578125, 0.016143798828125, 0.007091522216796875, 0.00569915771484375, 0.08807373046875, 0.021270751953125, 0.0538330078125, -0.02496337890625, 0.0023326873779296875, 0.00875091552734375, -0.03570556640625, -0.0101318359375, -0.0267333984375, -0.0836181640625, 0.01200103759765625, 0.056793212890625, 0.038116455078125, 0.030853271484375, -0.0257415771484375, -0.06744384765625, 0.09515380859375, -0.0030879974365234375, 0.0131988525390625, -0.04150390625, -0.03887939453125, 0.0131683349609375, -0.026153564453125, -0.00237274169921875, 0.01306915283203125, -0.059234619140625, -0.05712890625, 0.039825439453125, -0.0294342041015625, -0.046417236328125, 0.03076171875, -0.03558349609375, 0.05255126953125, -0.0015506744384765625, -0.046478271484375, 0.01132965087890625, 0.052154541015625, -0.0121307373046875, 0.03521728515625, 0.017669677734375, -0.0237579345703125, 0.004863739013671875, 0.01490020751953125, -0.007099151611328125, -0.0019855499267578125, 0.01824951171875, 0.038421630859375, 0.0408935546875, -0.03607177734375, -0.00954437255859375, 0.03460693359375, 0.0301666259765625, 0.006046295166015625, 0.0279083251953125, 0.01064300537109375, -0.01165771484375, -0.016571044921875, -0.006313323974609375, 0.0275115966796875, 0.0306396484375, -0.00991058349609375, -0.0048370361328125, 0.005878448486328125, 0.0252685546875, -0.01270294189453125, 0.0296173095703125, 0.01367950439453125, -0.0073699951171875, 0.036834716796875, 0.004795074462890625, 0.01052093505859375, -0.00606536865234375, 0.051727294921875, 0.044342041015625, -0.006011962890625, -0.0018749237060546875, -0.0078125, -0.0312347412109375, -0.00030517578125, 0.005336761474609375, -0.01265716552734375, -0.0411376953125, -0.02203369140625, 0.007511138916015625, 0.022186279296875, 0.00872039794921875, 0.007251739501953125, -0.0183868408203125, -0.041229248046875, 0.0213165283203125, -0.058685302734375, -0.040985107421875, 0.0611572265625, -0.0230712890625, -0.038238525390625, 0.012298583984375, -0.026123046875, 0.0019969940185546875, 0.01346588134765625, -0.018310546875, -0.021636962890625, -0.00008857250213623047, -0.03717041015625, -0.01404571533203125, -0.062744140625, 0.038970947265625, -0.00315093994140625, 0.02728271484375, 0.0007343292236328125, 0.022918701171875, 0.0003514289855957031, 0.00626373291015625, 0.0017786026000976562, 0.0005364418029785156, 0.00040793418884277344, -0.0175323486328125, -0.015594482421875, -0.038726806640625, 0.049591064453125, -0.0193023681640625, -0.0179290771484375, 0.00701141357421875, 0.03692626953125, -0.0241546630859375, 0.01189422607421875, -0.006488800048828125, 0.030242919921875, 0.01873779296875, -0.0234832763671875, -0.023040771484375, 0.0242767333984375, -0.05133056640625, -0.011016845703125, -0.006221771240234375, -0.0183258056640625, 0.0015821456909179688, -0.0007486343383789062, 0.014373779296875, -0.024261474609375, 0.034332275390625, -0.004825592041015625, -0.00832366943359375, 0.074951171875, -0.01910400390625, 0.005985260009765625, -0.027191162109375, -0.044189453125, -0.052001953125, 0.03521728515625, -0.0202178955078125, 0.0174560546875, 0.01276397705078125, 0.011505126953125, -0.0157318115234375, 0.006237030029296875, -0.03076171875, -0.0041351318359375, 0.06219482421875, -0.0205078125, 0.01103973388671875, -0.038299560546875, -0.01556396484375, -0.039947509765625, 0.03619384765625, -0.0049285888671875, 0.007171630859375, -0.03594970703125, 0.0019502639770507812, -0.021270751953125, -0.038787841796875, -0.0401611328125, 0.004322052001953125, -0.04052734375, 0.03936767578125, -0.0192718505859375, 0.041046142578125, -0.0012664794921875, -0.0009064674377441406, 0.0203704833984375, -0.06573486328125, 0.04132080078125, 0.0084991455078125, -0.016937255859375, 0.01275634765625, -0.006439208984375, -0.02716064453125, -0.025848388671875, 0.0184173583984375, -0.0570068359375, -0.0124053955078125, -0.0078887939453125, 0.043060302734375, 0.01617431640625, -0.027496337890625, 0.01050567626953125, 0.046478271484375, -0.003200531005859375, -0.03240966796875, 0.054840087890625, 0.0258941650390625, 0.0269012451171875, 0.00864410400390625, 0.0029449462890625, -0.0298004150390625, -0.00261688232421875, 0.0034351348876953125, -0.0145721435546875, 0.0162353515625, -0.020904541015625, -0.066650390625, 0.0236968994140625, -0.0447998046875, -0.052520751953125, -0.032745361328125, -0.037872314453125, -0.00665283203125, -0.031951904296875, -0.0148773193359375, -0.0163421630859375, -0.043975830078125, 0.058837890625, -0.0115509033203125, 0.0404052734375, -0.00897216796875, 0.07940673828125, -0.00909423828125, -0.0285186767578125, -0.00775146484375, 0.0059356689453125, 0.037628173828125, 0.0058441162109375, 0.0229644775390625, 0.005035400390625, -0.0322265625, 0.06781005859375, 0.01454925537109375, 0.041534423828125, -0.0274658203125, 0.061553955078125, 0.0160064697265625, 0.040069580078125, -0.023284912109375, 0.0290374755859375, -0.0225982666015625, 0.03326416015625, 0.00531005859375, 0.0014123916625976562, 0.00749969482421875, 0.011566162109375, -0.0233917236328125, -0.006008148193359375, -0.015838623046875, -0.03521728515625, 0.0018815994262695312, 0.0386962890625, 0.007740020751953125, 0.0455322265625, -0.0159912109375, 0.0176544189453125, 0.0115814208984375, 0.00616455078125, -0.02886962890625, -0.035491943359375, -0.01654052734375, 0.03448486328125, -0.028472900390625, 0.00518798828125, 0.0036220550537109375, -0.010650634765625, -0.011749267578125, -0.006923675537109375, -0.047210693359375, -0.007274627685546875, 0.005275726318359375, 0.0531005859375, 0.039215087890625, 0.0048065185546875, -0.016387939453125, 0.01023101806640625, -0.00019490718841552734, 0.034454345703125, 0.05401611328125, -0.00722503662109375, 0.005649566650390625, 0.0022754669189453125, -0.0032711029052734375, -0.014984130859375, -0.00257110595703125, 0.0186309814453125, -0.0142974853515625, 0.0032100677490234375, -0.004730224609375, 0.01189422607421875, 0.0271759033203125, 0.0115203857421875, 0.0183563232421875, -0.00908660888671875, 0.009857177734375, -0.0208282470703125, 0.0113525390625, -0.01515960693359375, -0.0255584716796875, -0.0008563995361328125, 0.0180511474609375, 0.002735137939453125, 0.01885986328125, -0.0016260147094726562, -0.0016851425170898438, -0.01529693603515625, 0.00145721435546875, -0.02117919921875, -0.0183258056640625, -0.00667572021484375, 0.027252197265625, 0.020843505859375, 0.01837158203125, 0.010467529296875, -0.007595062255859375, -0.037994384765625, 0.006519317626953125, 0.0357666015625, 0.0213775634765625, -0.044097900390625, -0.06573486328125, 0.0245819091796875, -0.00812530517578125, -0.0244293212890625, -0.036529541015625, -0.0149993896484375, -0.0281219482421875, -0.0007152557373046875, 0.06304931640625, -0.03912353515625, 0.0219879150390625, -0.04498291015625, 0.036773681640625, -0.017791748046875, 0.00862884521484375, 0.0462646484375, 0.033050537109375, 0.007205963134765625, -0.038665771484375, -0.033355712890625, -0.0303955078125, 0.032958984375, -0.0031948089599609375, -0.004878997802734375, 0.00588226318359375, -0.009552001953125, 0.03857421875, -0.01316070556640625, 0.0258026123046875, 0.0198516845703125, 0.00269317626953125, -0.020782470703125, 0.066162109375, -0.049346923828125, 0.033477783203125, -0.01189422607421875, 0.0267181396484375, -0.06475830078125, -0.0269927978515625, 0.0229644775390625, 0.01505279541015625, 0.01568603515625, -0.0482177734375, -0.017913818359375, -0.00899505615234375, 0.01337432861328125, 0.01031494140625, 0.002292633056640625, 0.0017242431640625, 0.035614013671875, -0.0158233642578125, 0.006473541259765625, -0.00739288330078125, 0.046905517578125, -0.04461669921875, 0.0025920867919921875, 0.031585693359375, -0.049835205078125, -0.032958984375, 0.01404571533203125, 0.039581298828125, 0.000037550926208496094, -0.031646728515625, -0.0141448974609375, 0.0201873779296875, -0.011871337890625, 0.0020389556884765625, 0.04150390625, 0.005107879638671875, 0.037200927734375, -0.00522613525390625, 0.0263671875, 0.042755126953125, 0.038330078125, -0.0302886962890625, -0.049285888671875, 0.007122039794921875, 0.0024890899658203125, -0.0176544189453125, 0.0099639892578125, -0.00739288330078125, -0.007549285888671875, 0.050445556640625, 0.07769775390625, -0.0692138671875, -0.0028018951416015625, 0.0288848876953125, -0.0169830322265625, -0.034698486328125, -0.0252838134765625, -0.0244140625, -0.048980712890625, 0.080322265625, 0.009063720703125, -0.0144500732421875, 0.02996826171875, 0.0102386474609375, -0.00310516357421875, -0.0272369384765625, 0.038055419921875, 0.018341064453125, -0.033355712890625, -0.023101806640625, 0.0301055908203125, -0.0509033203125, -0.01113128662109375, -0.01067352294921875, 0.0419921875, -0.0400390625, -0.08355712890625, 0.0010662078857421875, -0.016082763671875, -0.041412353515625, -0.0263519287109375, 0.0244598388671875, 0.0499267578125, 0.05377197265625, -0.01099395751953125, -0.00856781005859375, 0.044677734375, 0.0212860107421875, 0.0440673828125, -0.017547607421875, -0.0169830322265625, 0.03314208984375, -0.0303497314453125, 0.0015325546264648438, 0.004917144775390625, 0.023468017578125, -0.01044464111328125, 0.0240936279296875, 0.0179290771484375, 0.059234619140625, -0.050384521484375, 0.01953125, 0.0183563232421875, -0.00760650634765625, -0.03240966796875, -0.03173828125, -0.027130126953125, 0.0236663818359375, -0.03802490234375, -0.01611328125, 0.0472412109375, -0.0279083251953125, -0.09796142578125, 0.1102294921875, 0.0855712890625, 0.035797119140625, -0.01187896728515625, 0.039276123046875, -0.07403564453125, -0.019775390625, 0.0236053466796875, -0.032318115234375, 0.0184326171875, -0.022613525390625, -0.01165771484375, -0.022064208984375, -0.0209808349609375, 0.0748291015625, -0.0084075927734375, -0.0213623046875, 0.009002685546875, 0.007762908935546875, 0.04119873046875, -0.0020999908447265625, -0.019195556640625, 0.02294921875, 0.032135009765625, 0.0224456787109375, 0.0440673828125, -0.0531005859375, 0.0088958740234375, -0.05291748046875, 0.04791259765625, 0.036285400390625, -0.0199127197265625, -0.01593017578125, 0.013458251953125, 0.03997802734375, -0.0105133056640625, 0.0014505386352539062, -0.0112457275390625, -0.03680419921875, 0.003383636474609375, 0.03948974609375, 0.043670654296875, -0.053955078125, -0.051422119140625, -0.01331329345703125, 0.04095458984375, 0.01494598388671875, 0.0196075439453125, 0.048553466796875, 0.00988006591796875, 0.02838134765625, 0.03631591796875, 0.030120849609375, 0.01824951171875, 0.011932373046875, -0.01959228515625, -0.03997802734375, -0.006458282470703125, -0.03900146484375, 0.043548583984375, 0.040557861328125, -0.01418304443359375, -0.0310516357421875, -0.01165771484375, -0.0027065277099609375, 0.0209503173828125, -0.0033397674560546875, -0.0265350341796875, 0.019378662109375, 0.00787353515625, 0.027313232421875, -0.023773193359375, 0.0024585723876953125, 0.048248291015625, 0.018829345703125, 0.005596160888671875, 0.0281982421875, -0.05084228515625, -0.0189361572265625, -0.09405517578125, -0.0114593505859375, 0.04827880859375, 0.07720947265625, 0.042327880859375, 0.03399658203125, 0.0615234375, -0.042205810546875, -0.017059326171875, 0.036407470703125, 0.020965576171875, -0.005985260009765625, 0.022674560546875, 0.016448974609375, 0.01186370849609375, -0.00531005859375, 0.016265869140625, 0.019927978515625, 0.046051025390625, 0.047088623046875, 0.0072174072265625, -0.01052093505859375, 0.040313720703125, 0.0027065277099609375, 0.0107269287109375, -0.0008940696716308594, -0.03717041015625, -0.017120361328125, -0.034210205078125, -0.036102294921875, 0.0181427001953125, -0.00830841064453125, -0.03802490234375, 0.033843994140625, -0.0025043487548828125, 0.0284576416015625, 0.050048828125, -0.0236968994140625, -0.01629638671875, 0.00402069091796875, 0.0106658935546875, 0.01143646240234375, -0.02301025390625, -0.051727294921875, 0.0114593505859375, 0.041290283203125, -0.0101470947265625, 0.0245208740234375, 0.0106048583984375, -0.0204620361328125, -0.027313232421875, 0.016845703125, 0.0306854248046875, -0.023345947265625, -0.01151275634765625, 0.0029354095458984375, -0.044891357421875, 0.004802703857421875, 0.01849365234375, -0.01302337646484375, -0.0174713134765625, 0.08380126953125, -0.0033931732177734375, -0.0097503662109375, -0.00888824462890625, 0.046112060546875, -0.03131103515625, -0.01800537109375, 0.06787109375, 0.020233154296875, -0.00669097900390625, -0.029541015625, 0.00368499755859375, 0.048919677734375, 0.0138702392578125, -0.03314208984375, 0.02789306640625, -0.02001953125, 0.0035419464111328125, -0.0223236083984375, 0.013153076171875, -0.0279693603515625, -0.041534423828125, -0.045684814453125, -0.01190185546875, 0.010040283203125, -0.0006475448608398438, -0.00798797607421875, 0.0382080078125, -0.011810302734375, -0.0249786376953125, 0.0289154052734375, -0.07427978515625, 0.054901123046875, 0.036224365234375, -0.03240966796875, 0.01163482666015625, 0.0107421875, -0.0289306640625, 0.01898193359375, -0.0015926361083984375, 0.0025539398193359375, 0.01212310791015625, -0.050750732421875, -0.01873779296875, 0.047332763671875, 0.0265045166015625, 0.00046896934509277344, 0.03106689453125, 0.01348114013671875, -0.0298614501953125, 0.01052093505859375, 0.006378173828125, -0.0111846923828125, 0.0081024169921875, 0.005573272705078125, 0.028411865234375, 0.0212860107421875, 0.0089111328125, -0.0489501953125, 0.018402099609375, 0.0297393798828125, -0.0275421142578125, 0.0105133056640625, -0.0104827880859375, -0.041046142578125, 0.043609619140625, -0.003086090087890625, 0.0005536079406738281, -0.008819580078125, 0.0066680908203125, -0.0562744140625, -0.030120849609375, -0.04388427734375, 0.03375244140625, -0.04327392578125, 0.01303863525390625, 0.0206146240234375, -0.0157470703125, -0.036163330078125, -0.0037403106689453125, -0.0003440380096435547, 0.055419921875, 0.00035119056701660156, -0.0262603759765625, 0.0396728515625, -0.0146331787109375, -0.016265869140625, -0.06341552734375, -0.0093994140625, -0.055938720703125, 0.034454345703125, 0.048736572265625, -0.042236328125, -0.0165557861328125, -0.04449462890625, -0.11077880859375, -0.034454345703125, 0.023040771484375, -0.057861328125, 0.0220947265625, -0.0242919921875, -0.0188751220703125, 0.0181732177734375, 0.0120697021484375, -0.02838134765625, -0.005016326904296875, 0.0291900634765625, 0.01030731201171875, -0.0010662078857421875, 0.04400634765625, -0.00569915771484375, -0.01290130615234375, 0.008392333984375, 0.01010894775390625, -0.003879547119140625, -0.017791748046875, 0.01227569580078125, -0.0022106170654296875, 0.015380859375, -0.03369140625, -0.01143646240234375, -0.01467132568359375, 0.0188446044921875, 0.0065460205078125, -0.032073974609375, -0.0033054351806640625, -0.010498046875, -0.031494140625, 0.0283355712890625, -0.0187530517578125, -0.01158905029296875, -0.024932861328125, -0.044921875, 0.0084075927734375, -0.0241546630859375, -0.01267242431640625, -0.044952392578125, 0.01145172119140625, -0.0179901123046875, -0.022064208984375, 0.025299072265625, -0.00838470458984375, -0.0186920166015625, 0.0140380859375, 0.039581298828125, -0.01003265380859375, 0.00534820556640625, -0.004970550537109375, 0.0694580078125, -0.035919189453125, -0.00634765625, 0.006771087646484375, 0.0154266357421875, 0.0149078369140625, -0.002147674560546875, 0.0229034423828125, -0.0595703125, -0.0036830902099609375, 0.0258026123046875, 0.0028228759765625, 0.035858154296875, -0.02789306640625, -0.05291748046875, -0.01317596435546875, 0.0041351318359375, 0.0216827392578125, 0.00899505615234375, -0.015777587890625, -0.02099609375, 0.0222930908203125, -0.039031982421875, -0.0433349609375, -0.034210205078125, -0.0345458984375, 0.00189208984375, 0.01421356201171875, 0.0171356201171875, 0.0870361328125, -0.01739501953125, 0.00890350341796875, -0.00627899169921875, 0.03759765625, -0.040069580078125, 0.03533935546875, -0.039703369140625, 0.01401519775390625, 0.01727294921875 ]
9adc1c94a6de84c4c43632054dc8960944f50332
Wordpress Stackexchange Q: Why is there a class="screen-reader-text" on my search button? i was going through a search and found this button in search form. <button type="submit" class="search-submit"> <span class="genericon-search"></span> <span class="screen-reader-text"><?php echo esc_html_x( 'Search', 'submit button', ); ?></span> I want to know what's the use of the <span class="screen-reader-text"><?php echo esc_html_x( 'Search', 'submit button', ); ?> in this search form, its also working when i remove this line. A: This class is used to visually hide elements from sighted users but still allows assistive technologies like screen readers to still present those elements to users who are visually impaired. For example you may have an icon with Facebook's logo as a link to your page/profile. A sighted user will know that's Facebook but a blind user won't so you would still want "My Facebook Profile" or some other descriptive text to let visually impaired people know more about the link.
Q: Why is there a class="screen-reader-text" on my search button? i was going through a search and found this button in search form. <button type="submit" class="search-submit"> <span class="genericon-search"></span> <span class="screen-reader-text"><?php echo esc_html_x( 'Search', 'submit button', ); ?></span> I want to know what's the use of the <span class="screen-reader-text"><?php echo esc_html_x( 'Search', 'submit button', ); ?> in this search form, its also working when i remove this line. A: This class is used to visually hide elements from sighted users but still allows assistive technologies like screen readers to still present those elements to users who are visually impaired. For example you may have an icon with Facebook's logo as a link to your page/profile. A sighted user will know that's Facebook but a blind user won't so you would still want "My Facebook Profile" or some other descriptive text to let visually impaired people know more about the link.
wordpress
{ "language": "en", "length": 149, "provenance": "stackexchange_00019.jsonl.gz:482712", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/289831" }
[ 0.00850677490234375, -0.00875091552734375, 0.0202789306640625, 0.049774169921875, -0.0231781005859375, -0.02471923828125, 0.052032470703125, -0.04443359375, 0.0455322265625, 0.0307159423828125, -0.046356201171875, -0.0169219970703125, -0.016021728515625, -0.0193939208984375, -0.049560546875, -0.03680419921875, -0.0017185211181640625, 0.025634765625, 0.031005859375, 0.0002694129943847656, 0.00617218017578125, 0.007633209228515625, -0.0010814666748046875, -0.099365234375, 0.0023670196533203125, -0.0228118896484375, 0.07958984375, -0.0180206298828125, 0.01178741455078125, -0.0225067138671875, 0.00139617919921875, -0.01160430908203125, 0.0117645263671875, 0.009246826171875, 0.0249481201171875, 0.025848388671875, 0.01511383056640625, 0.001064300537109375, 0.0220794677734375, 0.00699615478515625, 0.00931549072265625, 0.005535125732421875, -0.03619384765625, -0.044036865234375, -0.04022216796875, -0.0222930908203125, -0.0030994415283203125, -0.0058441162109375, -0.001842498779296875, -0.0101165771484375, -0.0138092041015625, 0.037139892578125, -0.0020732879638671875, -0.018157958984375, 0.01018524169921875, 0.0276031494140625, -0.005542755126953125, 0.050384521484375, 0.0201263427734375, 0.030487060546875, -0.0192413330078125, 0.03131103515625, -0.02667236328125, -0.036895751953125, -0.04486083984375, 0.01354217529296875, 0.0231781005859375, -0.0245361328125, 0.003711700439453125, -0.041259765625, 0.0018520355224609375, -0.0009593963623046875, -0.00394439697265625, -0.04510498046875, 0.0270843505859375, 0.027191162109375, -0.0313720703125, -0.010772705078125, 0.005870819091796875, 0.031158447265625, -0.0288238525390625, -0.0418701171875, 0.00666046142578125, -0.00919342041015625, -0.026275634765625, 0.003383636474609375, -0.017974853515625, 0.00760650634765625, 0.00626373291015625, -0.0236053466796875, 0.00007897615432739258, -0.0318603515625, 0.03973388671875, -0.00212860107421875, -0.0347900390625, -0.04522705078125, 0.0099945068359375, 0.0662841796875, -0.0037841796875, 0.040740966796875, -0.00942230224609375, -0.03717041015625, 0.043304443359375, -0.05364990234375, 0.0148468017578125, 0.049102783203125, -0.048614501953125, -0.001445770263671875, 0.041717529296875, 0.045989990234375, 0.0246734619140625, -0.059783935546875, -0.04052734375, -0.019561767578125, -0.03839111328125, 0.01279449462890625, -0.051513671875, -0.011474609375, 0.00794219970703125, 0.0022792816162109375, 0.002658843994140625, 0.01538848876953125, 0.01137542724609375, -0.023773193359375, -0.0003657341003417969, -0.002132415771484375, 0.017547607421875, -0.0394287109375, 0.03509521484375, -0.032257080078125, -0.0208892822265625, 0.02606201171875, 0.02069091796875, 0.00528717041015625, -0.01229095458984375, -0.004482269287109375, -0.0300445556640625, -0.03851318359375, -0.0203094482421875, 0.0000017285346984863281, -0.004886627197265625, -0.0257720947265625, 0.04522705078125, -0.0164794921875, 0.00022923946380615234, 0.007076263427734375, 0.026641845703125, 0.024810791015625, -0.01178741455078125, -0.053619384765625, -0.0028781890869140625, 0.02325439453125, 0.05731201171875, -0.00750732421875, -0.046173095703125, -0.027435302734375, 0.0191192626953125, -0.039642333984375, -0.02435302734375, -0.07012939453125, 0.02642822265625, 0.0257568359375, 0.035980224609375, -0.00130462646484375, 0.01220703125, -0.0626220703125, -0.032318115234375, 0.0007033348083496094, 0.0178375244140625, -0.055419921875, -0.0010290145874023438, 0.029937744140625, 0.060791015625, 0.029144287109375, 0.030059814453125, 0.0262451171875, 0.03955078125, 0.0150909423828125, 0.03643798828125, -0.04998779296875, -0.058197021484375, -0.044403076171875, 0.10076904296875, -0.076904296875, -0.0528564453125, 0.06256103515625, 0.0006642341613769531, 0.058135986328125, -0.00890350341796875, 0.005523681640625, 0.0406494140625, 0.0576171875, -0.0190582275390625, 0.03204345703125, -0.0148162841796875, -0.03778076171875, -0.03399658203125, -0.01264190673828125, -0.0274505615234375, 0.0140228271484375, 0.052886962890625, -0.01508331298828125, 0.00948333740234375, -0.000530242919921875, -0.043701171875, -0.0016546249389648438, -0.0229339599609375, 0.0135040283203125, -0.0228729248046875, -0.0272369384765625, 0.02276611328125, -0.020843505859375, -0.01268768310546875, -0.008636474609375, -0.026275634765625, -0.0025768280029296875, 0.00370025634765625, 0.024169921875, 0.01410675048828125, -0.0299072265625, 0.007167816162109375, -0.019805908203125, 0.018463134765625, 0.03973388671875, 0.01076507568359375, -0.00286102294921875, -0.0193634033203125, 0.007450103759765625, 0.0455322265625, -0.006534576416015625, 0.071044921875, 0.00290679931640625, 0.07672119140625, 0.06744384765625, -0.0223388671875, 0.019012451171875, 0.03277587890625, -0.01181793212890625, -0.0264129638671875, 0.01412200927734375, 0.050262451171875, 0.039093017578125, -0.0193328857421875, -0.03936767578125, 0.0233612060546875, -0.05841064453125, 0.0193328857421875, -0.02886962890625, -0.046661376953125, 0.00382232666015625, 0.01169586181640625, -0.001476287841796875, 0.00988006591796875, -0.0038604736328125, -0.03570556640625, 0.028594970703125, -0.031463623046875, 0.036163330078125, -0.061767578125, 0.01436614990234375, -0.0163116455078125, -0.006305694580078125, 0.0316162109375, -0.0190582275390625, 0.0506591796875, -0.0172271728515625, 0.037628173828125, 0.01416015625, -0.02850341796875, -0.003520965576171875, 0.027923583984375, 0.006946563720703125, -0.00536346435546875, 0.025848388671875, -0.0009279251098632812, -0.00959014892578125, 0.0017328262329101562, -0.00907135009765625, -0.023223876953125, -0.01371002197265625, 0.01207733154296875, 0.01934814453125, -0.05352783203125, -0.008514404296875, 0.00319671630859375, -0.0438232421875, -0.0184326171875, 0.0419921875, 0.0640869140625, 0.0215606689453125, 0.0191650390625, 0.03125, 0.01113128662109375, 0.06756591796875, -0.01367950439453125, -0.019500732421875, -0.0308685302734375, -0.026702880859375, 0.031646728515625, -0.03765869140625, 0.0006885528564453125, 0.05364990234375, -0.03533935546875, 0.0257720947265625, 0.0026531219482421875, -0.036865234375, -0.03228759765625, 0.031768798828125, 0.009033203125, -0.033233642578125, -0.00848388671875, 0.05908203125, 0.03192138671875, 0.0182342529296875, -0.0099029541015625, -0.03387451171875, -0.03131103515625, 0.017791748046875, -0.10003662109375, -0.005298614501953125, 0.04339599609375, -0.036407470703125, -0.004070281982421875, 0.024871826171875, -0.0310821533203125, -0.0275421142578125, 0.06939697265625, -0.0162353515625, 0.0094146728515625, -0.01459503173828125, -0.006439208984375, 0.01546478271484375, -0.0157012939453125, 0.0350341796875, -0.001850128173828125, -0.0018787384033203125, 0.0206298828125, -0.054901123046875, 0.01186370849609375, 0.03631591796875, 0.07366943359375, 0.043365478515625, 0.00666046142578125, -0.03546142578125, 0.0172882080078125, -0.08502197265625, -0.055572509765625, -0.0014543533325195312, -0.0062255859375, -0.04571533203125, 0.043701171875, 0.01142120361328125, -0.0013885498046875, -0.03131103515625, 0.0213775634765625, 0.022735595703125, -0.005527496337890625, 0.027130126953125, 0.04730224609375, -0.0259857177734375, -0.00811767578125, 0.003711700439453125, -0.02099609375, -0.004673004150390625, 0.0110321044921875, -0.01358795166015625, -0.00957489013671875, 0.00335693359375, 0.0275421142578125, 0.0253753662109375, 0.0150299072265625, -0.020782470703125, 0.05560302734375, -0.00785064697265625, 0.026397705078125, -0.03857421875, -0.0178070068359375, -0.040069580078125, 0.03466796875, -0.00644683837890625, -0.00794219970703125, 0.01413726806640625, 0.0236968994140625, 0.03973388671875, -0.041839599609375, 0.042236328125, -0.02313232421875, -0.006855010986328125, -0.0369873046875, -0.0135345458984375, -0.017852783203125, 0.06494140625, -0.0269927978515625, 0.0014486312866210938, -0.0184326171875, -0.0209808349609375, 0.023468017578125, -0.00949859619140625, -0.035186767578125, -0.009613037109375, -0.043792724609375, -0.0017557144165039062, -0.0207061767578125, -0.0175323486328125, -0.039398193359375, -0.0249481201171875, -0.032135009765625, -0.0206451416015625, 0.0308990478515625, 0.0283355712890625, 0.0300750732421875, 0.014495849609375, 0.0246734619140625, 0.0036773681640625, -0.00690460205078125, -0.0292816162109375, -0.0384521484375, -0.0199737548828125, -0.0035686492919921875, 0.0499267578125, 0.00215911865234375, -0.0007038116455078125, -0.006954193115234375, 0.03497314453125, 0.0787353515625, 0.0843505859375, 0.02642822265625, -0.08984375, 0.05914306640625, 0.045867919921875, 0.06231689453125, 0.006622314453125, 0.01568603515625, 0.0092315673828125, -0.0618896484375, -0.003021240234375, -0.022216796875, -0.018310546875, 0.030731201171875, -0.05023193359375, -0.020233154296875, -0.03424072265625, -0.01184844970703125, 0.0243377685546875, -0.0011320114135742188, -0.00997161865234375, -0.02960205078125, -0.021636962890625, 0.02001953125, 0.01416015625, -0.0175323486328125, 0.01082611083984375, -0.001453399658203125, 0.01238250732421875, -0.035247802734375, -0.0080413818359375, 0.030609130859375, 0.0207366943359375, 0.05059814453125, -0.0014123916625976562, -0.021240234375, -0.0037078857421875, 0.019683837890625, -0.01214599609375, -0.0057373046875, -0.00258636474609375, 0.029693603515625, -0.0141143798828125, -0.050537109375, 0.035308837890625, -0.0283203125, -0.005290985107421875, -0.0009331703186035156, 0.0002570152282714844, -0.0222625732421875, 0.03448486328125, 0.0311431884765625, -0.0179290771484375, 0.036956787109375, 0.0099029541015625, 0.0193634033203125, -0.0092315673828125, -0.035186767578125, 0.10479736328125, 0.06341552734375, -0.030548095703125, 0.026641845703125, 0.04437255859375, 0.0011768341064453125, -0.036712646484375, -0.032623291015625, -0.034027099609375, 0.0245208740234375, -0.0489501953125, -0.0146026611328125, -0.0201416015625, -0.0002732276916503906, 0.0609130859375, 0.0272216796875, -0.035858154296875, 0.0193939208984375, -0.00022292137145996094, -0.0281982421875, -0.00846099853515625, 0.0489501953125, 0.0006656646728515625, -0.004730224609375, 0.02435302734375, 0.006252288818359375, 0.06866455078125, -0.013885498046875, 0.010650634765625, 0.0232086181640625, 0.009002685546875, -0.0014753341674804688, 0.01108551025390625, 0.0011835098266601562, 0.0186004638671875, -0.02667236328125, -0.0203704833984375, 0.006961822509765625, 0.0103759765625, 0.0018568038940429688, -0.0027294158935546875, 0.0214691162109375, 0.00719451904296875, -0.0287017822265625, 0.035125732421875, 0.004634857177734375, 0.005245208740234375, -0.005340576171875, -0.03448486328125, -0.0057830810546875, 0.005344390869140625, 0.02728271484375, 0.0156097412109375, -0.035003662109375, 0.0013256072998046875, 0.0230865478515625, -0.0101776123046875, -0.024627685546875, -0.039031982421875, -0.00946044921875, 0.01708984375, -0.0017070770263671875, 0.023101806640625, 0.01314544677734375, -0.0031490325927734375, 0.00991058349609375, -0.06195068359375, -0.016021728515625, 0.037933349609375, 0.025970458984375, -0.004230499267578125, -0.032806396484375, -0.035003662109375, 0.01776123046875, -0.0211029052734375, -0.02227783203125, 0.07421875, -0.0209197998046875, 0.03656005859375, -0.0206146240234375, -0.0182037353515625, -0.050933837890625, 0.0083465576171875, 0.0224761962890625, 0.0045928955078125, -0.01165008544921875, -0.0256805419921875, -0.05706787109375, -0.022308349609375, -0.07647705078125, -0.08544921875, -0.015625, 0.0148162841796875, 0.0014791488647460938, 0.006069183349609375, 0.012451171875, 0.01507568359375, 0.004119873046875, 0.0396728515625, 0.0005974769592285156, 0.04522705078125, -0.0269622802734375, 0.052764892578125, -0.0127410888671875, 0.0281982421875, -0.0069580078125, 0.040130615234375, 0.053070068359375, -0.025909423828125, -0.006786346435546875, -0.04095458984375, -0.0010080337524414062, -0.01248931884765625, 0.0106201171875, 0.048828125, 0.0660400390625, 0.00966644287109375, -0.01418304443359375, 0.01190948486328125, -0.004108428955078125, -0.010589599609375, 0.053253173828125, 0.0298919677734375, 0.020751953125, 0.035003662109375, 0.013671875, 0.030548095703125, -0.0287322998046875, -0.0169830322265625, -0.023468017578125, 0.00379180908203125, -0.0165252685546875, 0.0197906494140625, -0.02996826171875, 0.02435302734375, 0.055938720703125, -0.0262451171875, 0.0209197998046875, 0.017822265625, 0.0015020370483398438, 0.052734375, 0.0038013458251953125, -0.031524658203125, 0.0169525146484375, 0.03704833984375, 0.002536773681640625, -0.0193939208984375, 0.0195159912109375, -0.025787353515625, -0.0038852691650390625, 0.038726806640625, 0.04022216796875, -0.052764892578125, -0.007358551025390625, -0.00007432699203491211, -0.01995849609375, 0.00943756103515625, 0.01212310791015625, -0.015045166015625, -0.0138702392578125, 0.030853271484375, -0.054718017578125, -0.01971435546875, -0.00311279296875, -0.02642822265625, 0.01444244384765625, 0.031280517578125, 0.01427459716796875, -0.0267333984375, -0.0443115234375, -0.08477783203125, 0.05615234375, -0.042236328125, -0.0285491943359375, -0.0283966064453125, 0.041259765625, -0.052978515625, -0.11395263671875, -0.0202789306640625, -0.02288818359375, -0.014678955078125, 0.022125244140625, 0.0145263671875, 0.0166168212890625, 0.0169219970703125, 0.0036449432373046875, -0.0207977294921875, -0.005649566650390625, -0.030548095703125, 0.00937652587890625, -0.039642333984375, 0.004192352294921875, 0.05096435546875, -0.01043701171875, 0.0318603515625, 0.0236358642578125, -0.0255889892578125, -0.00688934326171875, -0.057861328125, 0.0299530029296875, -0.0230560302734375, -0.01485443115234375, 0.0197601318359375, -0.042755126953125, 0.0009937286376953125, 0.0019464492797851562, -0.006900787353515625, -0.01947021484375, 0.020355224609375, -0.0183868408203125, -0.0108184814453125, 0.0474853515625, -0.01294708251953125, -0.058563232421875, 0.01091766357421875, 0.02008056640625, 0.035675048828125, -0.007251739501953125, -0.003604888916015625, 0.00955963134765625, -0.01329803466796875, 0.00839996337890625, -0.01479339599609375, -0.056488037109375, 0.01885986328125, 0.059051513671875, 0.020843505859375, 0.04156494140625, -0.0244903564453125, -0.0004799365997314453, 0.006992340087890625, -0.032745361328125, -0.0242462158203125, 0.0281524658203125, 0.06915283203125, 0.031890869140625, 0.007427215576171875, 0.029083251953125, -0.005672454833984375, -0.0155181884765625, -0.0107574462890625, 0.01175689697265625, -0.05157470703125, 0.010589599609375, 0.061798095703125, 0.00032520294189453125, -0.0012798309326171875, 0.02423095703125, 0.004459381103515625, -0.043975830078125, 0.00942230224609375, 0.0189208984375, 0.005706787109375, 0.0122528076171875, 0.04217529296875, 0.055389404296875, -0.06365966796875, -0.0313720703125, -0.0328369140625, 0.040679931640625, 0.0165863037109375, 0.057464599609375, 0.0330810546875, 0.006748199462890625, 0.050689697265625, -0.009552001953125, 0.0251617431640625, -0.01515960693359375, 0.007183074951171875, 0.023956298828125, 0.002674102783203125, 0.020111083984375, -0.03985595703125, -0.019439697265625, 0.026336669921875, 0.046478271484375, -0.0053253173828125, -0.0219573974609375, 0.00852203369140625, -0.00533294677734375, 0.0175323486328125, -0.015716552734375, 0.027191162109375, -0.040130615234375, -0.00408935546875, 0.0178070068359375, -0.006160736083984375, -0.005771636962890625, 0.002468109130859375, 0.00811004638671875, 0.03375244140625, -0.0033092498779296875, 0.01056671142578125, -0.01139068603515625, 0.01751708984375, -0.0012111663818359375, -0.01503753662109375, -0.005344390869140625, 0.031646728515625, 0.05413818359375, 0.0002791881561279297, -0.031524658203125, 0.002292633056640625, 0.042755126953125, 0.043060302734375, -0.0243377685546875, 0.0567626953125, 0.0153045654296875, 0.0236053466796875, 0.0303497314453125, 0.0289306640625, 0.016937255859375, 0.00040221214294433594, 0.0303955078125, 0.0246429443359375, -0.0036029815673828125, -0.01678466796875, -0.043792724609375, -0.032012939453125, 0.0307159423828125, 0.047119140625, 0.036041259765625, 0.0025272369384765625, 0.029296875, 0.039215087890625, 0.01342010498046875, 0.011962890625, 0.0084991455078125, -0.07305908203125, -0.0126190185546875, -0.046478271484375, 0.08935546875, 0.0244598388671875, -0.06793212890625, -0.0061798095703125, 0.011749267578125, -0.05780029296875, 0.035614013671875, 0.04547119140625, -0.040374755859375, 0.0272979736328125, 0.0162506103515625, -0.0020008087158203125, -0.0083465576171875, -0.0031261444091796875, 0.0290374755859375, 0.0635986328125, 0.0107421875, 0.0283660888671875, 0.000179290771484375, 0.00737762451171875, 0.058380126953125, 0.008270263671875, -0.032135009765625, 0.0186004638671875, -0.006671905517578125, -0.017822265625, -0.01508331298828125, 0.007350921630859375, -0.0200042724609375, -0.0307464599609375, 0.0677490234375, 0.0015783309936523438, -0.0182647705078125, -0.01035308837890625, -0.005859375, 0.08343505859375, -0.0037021636962890625, 0.01271820068359375, 0.0452880859375, 0.017120361328125, -0.02081298828125, -0.0061187744140625, -0.0221710205078125, -0.037322998046875, -0.041290283203125, 0.0021839141845703125, 0.006351470947265625, -0.021636962890625, -0.005229949951171875, 0.01824951171875, -0.0061798095703125, 0.010528564453125, 0.00487518310546875, 0.0244293212890625, 0.0219879150390625, 0.049835205078125, 0.03131103515625, -0.025665283203125, 0.07269287109375, -0.02142333984375, -0.025054931640625, 0.048736572265625, -0.014373779296875, -0.053985595703125, 0.0026111602783203125, 0.01502227783203125, 0.0065460205078125, 0.037139892578125, 0.035797119140625, -0.0117340087890625, 0.00624847412109375, 0.02239990234375, -0.0298614501953125, 0.004512786865234375, 0.01904296875, 0.00342559814453125, 0.01459503173828125, -0.035675048828125, 0.0129241943359375, -0.008514404296875, 0.0009064674377441406, -0.01593017578125, -0.005859375, 0.039398193359375, 0.0223236083984375, -0.06048583984375, 0.026824951171875, -0.0007319450378417969, 0.0129547119140625, 0.017608642578125, 0.01398468017578125, -0.019439697265625, -0.012420654296875, -0.041595458984375, 0.0007753372192382812, -0.044708251953125, -0.01898193359375, -0.0241546630859375, 0.049713134765625, 0.053009033203125, -0.045074462890625, 0.0075225830078125, 0.042572021484375, 0.039459228515625, 0.0836181640625, -0.00936126708984375, -0.03558349609375, -0.0020732879638671875, 0.0245819091796875, 0.0145111083984375, 0.02032470703125, -0.01690673828125, 0.05224609375, -0.00977325439453125, 0.0297393798828125, -0.016845703125, 0.005352020263671875, -0.0288238525390625, -0.09478759765625, 0.036895751953125, 0.00209808349609375, -0.054229736328125, -0.02685546875, 0.01073455810546875, -0.01123046875, 0.00966644287109375, -0.0010585784912109375, -0.0175628662109375, -0.0177001953125, -0.005126953125, 0.0316162109375, -0.03826904296875, 0.0249481201171875, 0.024444580078125, -0.10302734375, 0.02587890625, 0.0091705322265625, 0.0047760009765625, 0.01279449462890625, -0.029083251953125, 0.005001068115234375, -0.004482269287109375, -0.0631103515625, -0.03912353515625, -0.018646240234375, 0.0540771484375, 0.00894927978515625, -0.02301025390625, 0.0245208740234375, -0.01314544677734375, -0.0006003379821777344, -0.042877197265625, -0.015167236328125, 0.00424957275390625, -0.039764404296875, 0.01012420654296875, -0.017181396484375, 0.022247314453125, 0.0142974853515625, -0.050323486328125, 0.008056640625, 0.006877899169921875, 0.008056640625, 0.040985107421875, 0.019622802734375, -0.01328277587890625, 0.005542755126953125, 0.06573486328125, 0.03289794921875, -0.0994873046875, 0.0081024169921875, 0.05303955078125, -0.02862548828125, 0.0297088623046875, -0.00597381591796875, -0.0006866455078125, 0.03546142578125, 0.0018310546875, -0.005252838134765625, -0.01715087890625, -0.0033283233642578125, 0.0299072265625, 0.007266998291015625, -0.0156402587890625, -0.01102447509765625, -0.007076263427734375, -0.002216339111328125, 0.0162353515625, 0.0117645263671875, 0.0113372802734375, -0.07147216796875, 0.029083251953125, -0.01319122314453125, 0.04876708984375, -0.0085296630859375, 0.0262298583984375, -0.0239410400390625, 0.0618896484375, 0.0182342529296875, -0.04693603515625, 0.060089111328125, -0.0423583984375, 0.02227783203125, -0.0184783935546875, 0.0008015632629394531, -0.01392364501953125, 0.006580352783203125, 0.00733184814453125, -0.04290771484375, 0.01490020751953125 ]
ec9a15cbb46ff93c750e02239f7c676675262d74
Wordpress Stackexchange Q: get_theme_mod doesn't return the theme customizer preview's new values in after_setup_theme hook If I print the value of get_theme_mod( 'enable_sleek_header', false ) it is always the previously saved value. If I print the same thing in the header of the theme, it returns the value from customizer. * *Is it the expected behaviour? *Am I using the wrong hook? Thanks <?php add_action( 'after_setup_theme', 'pagespeed_register_menus' ); function pagespeed_register_menus() { //Not getting the modified theme_mod from the customizer without saving. register_nav_menus( array( 'secondary' => __( 'Navigation above header', 'page-speed' ), ) ); if ( get_theme_mod( 'enable_sleek_header', false ) ) { register_nav_menus( array( 'header' => __( 'Navigation menu in header', 'page-speed' ), ) ); } else { register_nav_menus( array( 'primary' => __( 'Navigation below header', 'page-speed' ), ) ); } register_nav_menus( array( 'footer_links' => __( 'Footer links', 'page-speed' ), ) ); } A: To register my menus I usually use the init action hook, maybe you could try it. add_action( 'init', 'pagespeed_register_menus' ); instead of add_action( 'after_setup_theme', 'pagespeed_register_menus' );
Q: get_theme_mod doesn't return the theme customizer preview's new values in after_setup_theme hook If I print the value of get_theme_mod( 'enable_sleek_header', false ) it is always the previously saved value. If I print the same thing in the header of the theme, it returns the value from customizer. * *Is it the expected behaviour? *Am I using the wrong hook? Thanks <?php add_action( 'after_setup_theme', 'pagespeed_register_menus' ); function pagespeed_register_menus() { //Not getting the modified theme_mod from the customizer without saving. register_nav_menus( array( 'secondary' => __( 'Navigation above header', 'page-speed' ), ) ); if ( get_theme_mod( 'enable_sleek_header', false ) ) { register_nav_menus( array( 'header' => __( 'Navigation menu in header', 'page-speed' ), ) ); } else { register_nav_menus( array( 'primary' => __( 'Navigation below header', 'page-speed' ), ) ); } register_nav_menus( array( 'footer_links' => __( 'Footer links', 'page-speed' ), ) ); } A: To register my menus I usually use the init action hook, maybe you could try it. add_action( 'init', 'pagespeed_register_menus' ); instead of add_action( 'after_setup_theme', 'pagespeed_register_menus' );
wordpress
{ "language": "en", "length": 167, "provenance": "stackexchange_00019.jsonl.gz:482723", "question_score": "4", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/289867" }
[ 0.0194549560546875, -0.0093231201171875, 0.0106658935546875, 0.00771331787109375, 0.004550933837890625, -0.0209503173828125, 0.04364013671875, -0.042633056640625, -0.032257080078125, 0.031646728515625, 0.00855255126953125, 0.052276611328125, -0.015655517578125, -0.01445770263671875, 0.00029778480529785156, -0.004436492919921875, 0.055908203125, -0.025482177734375, 0.04498291015625, -0.01206207275390625, -0.0006275177001953125, 0.029052734375, 0.051727294921875, 0.06988525390625, 0.06646728515625, -0.037261962890625, -0.0303192138671875, 0.00792694091796875, 0.0201263427734375, -0.006015777587890625, 0.020843505859375, -0.00711822509765625, 0.02392578125, 0.01192474365234375, -0.004241943359375, 0.02337646484375, -0.005367279052734375, 0.004550933837890625, 0.00798797607421875, 0.0158233642578125, 0.0254364013671875, -0.01383209228515625, 0.0002467632293701172, 0.0298004150390625, -0.028839111328125, -0.040069580078125, 0.03558349609375, -0.025421142578125, 0.0119171142578125, -0.054229736328125, -0.0017023086547851562, -0.0109100341796875, 0.018341064453125, -0.01406097412109375, -0.020172119140625, -0.0009508132934570312, -0.02545166015625, 0.0151214599609375, 0.01702880859375, 0.0279388427734375, 0.0001798868179321289, 0.017547607421875, -0.012420654296875, -0.035736083984375, -0.0209197998046875, 0.00789642333984375, 0.003986358642578125, -0.00901031494140625, 0.0020580291748046875, -0.005397796630859375, 0.00376129150390625, -0.017608642578125, -0.0211029052734375, 0.03680419921875, -0.038787841796875, -0.0743408203125, 0.00751495361328125, -0.0596923828125, 0.0197601318359375, 0.019561767578125, 0.0261077880859375, -0.0092315673828125, -0.0208282470703125, 0.0111846923828125, -0.005817413330078125, 0.02252197265625, -0.0129241943359375, -0.0213165283203125, 0.00424957275390625, -0.0196685791015625, -0.0067138671875, 0.0009579658508300781, 0.0291290283203125, -0.00693511962890625, -0.0321044921875, -0.0298919677734375, 0.033905029296875, 0.06268310546875, -0.005580902099609375, 0.054412841796875, -0.0240936279296875, -0.046539306640625, 0.10833740234375, -0.08544921875, 0.018829345703125, 0.03173828125, -0.0120391845703125, -0.01180267333984375, 0.056182861328125, 0.0252838134765625, -0.007598876953125, 0.046722412109375, -0.000980377197265625, -0.01497650146484375, -0.02752685546875, -0.0135040283203125, -0.0379638671875, -0.017059326171875, 0.00962066650390625, -0.02923583984375, 0.027801513671875, 0.059844970703125, 0.034271240234375, -0.0428466796875, -0.033599853515625, 0.004558563232421875, -0.00922393798828125, -0.09320068359375, 0.0220489501953125, 0.02728271484375, -0.0096588134765625, -0.002056121826171875, 0.0016145706176757812, 0.0210723876953125, -0.00008535385131835938, -0.014984130859375, 0.01837158203125, -0.0191497802734375, -0.0256500244140625, 0.031646728515625, -0.0152130126953125, -0.0302276611328125, -0.01091766357421875, -0.0361328125, 0.0022068023681640625, -0.00586700439453125, -0.004856109619140625, 0.0209197998046875, 0.0234527587890625, -0.0236053466796875, 0.01251983642578125, -0.0165252685546875, 0.0272369384765625, 0.01088714599609375, -0.058197021484375, 0.0106048583984375, -0.0570068359375, 0.02105712890625, -0.016143798828125, 0.0003199577331542969, 0.0148773193359375, -0.0179595947265625, -0.025299072265625, -0.049957275390625, -0.06719970703125, 0.00753021240234375, -0.0276336669921875, 0.0011196136474609375, 0.017578125, 0.04443359375, 0.028350830078125, -0.036224365234375, -0.0246124267578125, 0.006591796875, -0.00835418701171875, 0.01166534423828125, 0.018402099609375, 0.0196685791015625, 0.003932952880859375, -0.016021728515625, -0.041046142578125, -0.04168701171875, 0.0242919921875, -0.0274810791015625, -0.06500244140625, 0.04901123046875, -0.007480621337890625, 0.062103271484375, 0.0428466796875, 0.006252288818359375, 0.0177154541015625, 0.0099334716796875, -0.0291900634765625, -0.0159759521484375, -0.006877899169921875, 0.0013399124145507812, 0.0094146728515625, 0.016387939453125, -0.0005435943603515625, 0.0023708343505859375, -0.030426025390625, -0.006439208984375, 0.01959228515625, 0.0009565353393554688, -0.0419921875, 0.036163330078125, -0.033416748046875, 0.04345703125, 0.0155792236328125, 0.0306243896484375, 0.0018110275268554688, 0.007404327392578125, -0.0257110595703125, 0.00798797607421875, -0.007633209228515625, 0.0260009765625, -0.0034236907958984375, 0.038055419921875, -0.0099334716796875, 0.0054168701171875, -0.00557708740234375, -0.01922607421875, 0.00670623779296875, 0.033966064453125, 0.019195556640625, 0.015045166015625, -0.02203369140625, 0.0011243820190429688, 0.007099151611328125, 0.006649017333984375, 0.01503753662109375, 0.035552978515625, 0.0158538818359375, 0.0163726806640625, -0.0257110595703125, 0.01153564453125, 0.0025539398193359375, -0.08575439453125, -0.0026149749755859375, 0.051116943359375, 0.0293426513671875, 0.03472900390625, -0.004039764404296875, -0.008544921875, 0.0291900634765625, -0.0183868408203125, 0.0256195068359375, -0.015838623046875, 0.000812530517578125, 0.019683837890625, 0.0369873046875, 0.00933837890625, 0.0132904052734375, 0.0220947265625, 0.037628173828125, 0.00978851318359375, -0.03643798828125, -0.0302886962890625, 0.003345489501953125, 0.01517486572265625, 0.009979248046875, 0.033447265625, 0.0085296630859375, 0.00229644775390625, 0.0357666015625, 0.021087646484375, 0.0248260498046875, -0.002811431884765625, -0.05792236328125, 0.0249176025390625, 0.033660888671875, 0.008331298828125, 0.01045989990234375, -0.0027294158935546875, -0.01300811767578125, -0.00765228271484375, -0.006557464599609375, 0.00482177734375, 0.02374267578125, -0.01000213623046875, -0.0019664764404296875, -0.00913238525390625, -0.02740478515625, 0.00836181640625, 0.00907135009765625, -0.09259033203125, -0.004489898681640625, 0.058197021484375, 0.0006914138793945312, 0.01366424560546875, 0.0183868408203125, 0.026214599609375, -0.04833984375, 0.051055908203125, -0.01378631591796875, -0.00457763671875, -0.01102447509765625, -0.0271148681640625, 0.00860595703125, 0.021484375, 0.0689697265625, 0.06817626953125, 0.045379638671875, -0.004543304443359375, -0.003948211669921875, -0.00783538818359375, 0.01776123046875, -0.019256591796875, -0.017791748046875, -0.032257080078125, -0.0293426513671875, 0.0181732177734375, 0.0172271728515625, -0.00738525390625, 0.003543853759765625, -0.017578125, -0.026824951171875, -0.026824951171875, -0.076171875, -0.04705810546875, -0.003421783447265625, -0.08001708984375, 0.0201568603515625, -0.01479339599609375, -0.04217529296875, -0.004581451416015625, 0.0031070709228515625, 0.0257720947265625, 0.0181732177734375, -0.055023193359375, -0.047332763671875, -0.05255126953125, -0.0875244140625, -0.042449951171875, 0.0176544189453125, 0.016448974609375, 0.01120758056640625, 0.03778076171875, -0.00689697265625, -0.051025390625, 0.01885986328125, -0.0249176025390625, 0.011199951171875, 0.03155517578125, 0.0053253173828125, -0.005680084228515625, -0.00696563720703125, 0.0154571533203125, -0.0089263916015625, 0.007556915283203125, -0.0062713623046875, -0.0189971923828125, -0.036895751953125, -0.01540374755859375, -0.0147552490234375, 0.043243408203125, 0.06304931640625, -0.0084991455078125, 0.025665283203125, -0.04034423828125, -0.05029296875, -0.0157623291015625, -0.0677490234375, 0.01171112060546875, 0.077880859375, -0.00997161865234375, -0.016571044921875, -0.0238494873046875, -0.0006389617919921875, 0.00002771615982055664, 0.025665283203125, -0.024017333984375, 0.0362548828125, -0.01401519775390625, -0.007457733154296875, -0.0196533203125, 0.031005859375, -0.0035381317138671875, 0.049896240234375, 0.0364990234375, 0.021240234375, 0.00223541259765625, 0.0009722709655761719, -0.042755126953125, -0.0241851806640625, 0.00791168212890625, -0.052001953125, 0.04583740234375, -0.0299224853515625, -0.0150909423828125, 0.00249481201171875, 0.090576171875, -0.09417724609375, -0.01165771484375, -0.007389068603515625, 0.036529541015625, -0.01309967041015625, -0.050262451171875, -0.038330078125, -0.0159912109375, -0.108154296875, 0.0016078948974609375, -0.0252532958984375, -0.02789306640625, -0.00455474853515625, -0.0152587890625, -0.046234130859375, -0.05926513671875, 0.0310516357421875, 0.03887939453125, -0.018951416015625, 0.045623779296875, -0.0264739990234375, 0.026275634765625, -0.029388427734375, 0.014373779296875, -0.08685302734375, -0.026641845703125, -0.00940704345703125, 0.0811767578125, 0.033172607421875, -0.0462646484375, 0.0053863525390625, 0.05853271484375, 0.039031982421875, -0.0010023117065429688, 0.036865234375, -0.003803253173828125, 0.0264739990234375, -0.03436279296875, 0.01087188720703125, -0.038330078125, 0.00031065940856933594, -0.0033206939697265625, -0.057861328125, -0.005229949951171875, -0.00289154052734375, 0.00537872314453125, 0.053985595703125, -0.035614013671875, -0.06005859375, -0.0017147064208984375, 0.0015850067138671875, 0.006580352783203125, -0.0096588134765625, 0.010223388671875, -0.006946563720703125, -0.0546875, 0.00830078125, -0.057830810546875, 0.0183868408203125, -0.0173797607421875, 0.0511474609375, 0.035858154296875, 0.006206512451171875, 0.1357421875, 0.035980224609375, 0.0477294921875, -0.00010520219802856445, 0.0240020751953125, 0.0228118896484375, -0.030120849609375, 0.0267791748046875, 0.0252227783203125, -0.03375244140625, 0.0149688720703125, 0.01346588134765625, 0.020843505859375, 0.0011205673217773438, -0.0196533203125, -0.004779815673828125, 0.043304443359375, 0.026031494140625, -0.01800537109375, 0.004459381103515625, 0.01514434814453125, 0.033355712890625, -0.029815673828125, -0.005710601806640625, -0.050811767578125, 0.033599853515625, -0.00937652587890625, 0.039276123046875, 0.059356689453125, 0.031951904296875, 0.0017757415771484375, -0.01085662841796875, 0.0140228271484375, 0.0121612548828125, 0.023193359375, 0.001953125, -0.0129241943359375, 0.037200927734375, 0.0016956329345703125, 0.001270294189453125, 0.0184478759765625, -0.004566192626953125, 0.005176544189453125, 0.0010671615600585938, -0.035980224609375, -0.03851318359375, 0.010009765625, 0.05511474609375, -0.01617431640625, -0.0033206939697265625, 0.048126220703125, 0.0238189697265625, -0.0091094970703125, -0.0160675048828125, -0.007564544677734375, 0.0115203857421875, -0.043365478515625, -0.0007958412170410156, 0.010955810546875, -0.027618408203125, -0.0147705078125, 0.018829345703125, 0.02386474609375, -0.0318603515625, 0.005466461181640625, 0.02569580078125, 0.015960693359375, 0.00323486328125, 0.006755828857421875, 0.026580810546875, 0.025054931640625, -0.033538818359375, 0.03668212890625, -0.0098876953125, 0.035003662109375, -0.00540924072265625, 0.0154876708984375, 0.01320648193359375, -0.0198822021484375, 0.0203399658203125, -0.0341796875, -0.0264892578125, 0.036956787109375, -0.030242919921875, -0.04486083984375, -0.041351318359375, 0.0216217041015625, 0.0494384765625, -0.0017271041870117188, 0.0118560791015625, 0.00909423828125, 0.024627685546875, -0.0009684562683105469, -0.036712646484375, -0.0279541015625, 0.003955841064453125, 0.0165252685546875, -0.00333404541015625, 0.002094268798828125, 0.01329803466796875, -0.047637939453125, -0.0276336669921875, -0.0157623291015625, 0.0012216567993164062, 0.056182861328125, -0.027679443359375, 0.00435638427734375, -0.029327392578125, 0.0202484130859375, -0.07342529296875, 0.0042266845703125, 0.043548583984375, 0.0355224609375, 0.034759521484375, -0.0154266357421875, -0.0528564453125, -0.024810791015625, -0.0261077880859375, -0.045379638671875, -0.0016374588012695312, -0.0166168212890625, -0.0003540515899658203, 0.011688232421875, -0.0088958740234375, -0.03839111328125, -0.007625579833984375, -0.01715087890625, 0.0253143310546875, 0.02398681640625, -0.004978179931640625, 0.017974853515625, 0.01617431640625, 0.0205230712890625, 0.0162200927734375, -0.00846099853515625, -0.00933837890625, -0.01580810546875, 0.017120361328125, 0.0196380615234375, -0.0266876220703125, -0.0482177734375, 0.00988006591796875, -0.005252838134765625, 0.07196044921875, -0.01454925537109375, 0.016754150390625, 0.0003247261047363281, 0.0239410400390625, -0.008209228515625, -0.034149169921875, 0.006000518798828125, -0.01409149169921875, 0.04669189453125, 0.004184722900390625, -0.020233154296875, -0.011016845703125, -0.01284027099609375, -0.0086517333984375, 0.01922607421875, -0.007289886474609375, -0.021942138671875, -0.06817626953125, 0.05694580078125, 0.08538818359375, 0.025543212890625, 0.05389404296875, -0.01397705078125, 0.02288818359375, 0.0276641845703125, -0.0100860595703125, -0.0235443115234375, 0.033721923828125, 0.04571533203125, 0.005889892578125, 0.0180816650390625, 0.038665771484375, -0.0034465789794921875, 0.001789093017578125, 0.055023193359375, 0.07537841796875, -0.08154296875, 0.001338958740234375, 0.04705810546875, 0.022979736328125, -0.005340576171875, 0.004085540771484375, -0.032379150390625, -0.0306549072265625, 0.00400543212890625, -0.03997802734375, -0.04034423828125, -0.0225982666015625, 0.01103973388671875, -0.002567291259765625, 0.011505126953125, 0.0284423828125, -0.00939178466796875, 0.0189971923828125, -0.051116943359375, -0.0289459228515625, -0.0008563995361328125, -0.023681640625, 0.00928497314453125, -0.0076904296875, -0.028472900390625, -0.06414794921875, -0.0234222412109375, 0.004505157470703125, -0.01282501220703125, 0.0297393798828125, -0.023956298828125, 0.05712890625, 0.037811279296875, -0.0027790069580078125, 0.004840850830078125, -0.0201873779296875, 0.03863525390625, 0.01023101806640625, -0.0051116943359375, 0.03863525390625, 0.0069732666015625, 0.00907135009765625, 0.01318359375, 0.0073089599609375, -0.04364013671875, -0.0288543701171875, -0.0194244384765625, 0.095703125, -0.064697265625, -0.01296234130859375, -0.001354217529296875, 0.0254058837890625, 0.0106201171875, -0.0312347412109375, 0.06646728515625, -0.0217132568359375, 0.0250244140625, 0.00879669189453125, 0.0252838134765625, -0.04412841796875, -0.033966064453125, -0.049835205078125, 0.09881591796875, -0.01678466796875, 0.0163421630859375, 0.003505706787109375, 0.05035400390625, -0.0030307769775390625, 0.029541015625, -0.01126861572265625, 0.05950927734375, 0.00411224365234375, 0.0282745361328125, -0.02984619140625, 0.00386810302734375, 0.0059814453125, 0.030914306640625, 0.0117340087890625, 0.002017974853515625, 0.02386474609375, 0.004329681396484375, 0.03485107421875, -0.003082275390625, -0.034332275390625, 0.00768280029296875, -0.006504058837890625, -0.0072784423828125, 0.0193939208984375, -0.04730224609375, 0.007686614990234375, -0.0138092041015625, 0.004215240478515625, 0.0162811279296875, 0.007476806640625, 0.01204681396484375, -0.01483154296875, -0.0013322830200195312, -0.059173583984375, 0.0015411376953125, 0.023162841796875, 0.038726806640625, -0.005344390869140625, -0.005035400390625, -0.004150390625, 0.00933837890625, 0.012481689453125, -0.0177154541015625, 0.02935791015625, 0.021575927734375, -0.0029201507568359375, -0.00984954833984375, 0.00994110107421875, -0.0193939208984375, -0.03582763671875, -0.01535797119140625, 0.036346435546875, -0.03948974609375, 0.034210205078125, 0.010223388671875, 0.0287628173828125, -0.01517486572265625, 0.0019989013671875, -0.00335693359375, 0.039947509765625, -0.0246429443359375, -0.045440673828125, 0.0184783935546875, -0.00295257568359375, -0.01384735107421875, 0.01416015625, -0.00971221923828125, -0.03717041015625, -0.0026454925537109375, 0.0140533447265625, -0.0112457275390625, -0.0101318359375, 0.032623291015625, 0.019866943359375, 0.034515380859375, -0.0141143798828125, -0.0312347412109375, -0.046142578125, 0.03070068359375, 0.035003662109375, 0.047210693359375, -0.02337646484375, 0.11181640625, 0.00444793701171875, -0.02227783203125, -0.03631591796875, 0.0352783203125, -0.00887298583984375, 0.059967041015625, -0.05535888671875, -0.020721435546875, 0.007167816162109375, 0.0533447265625, -0.004467010498046875, -0.0105438232421875, 0.041412353515625, 0.048248291015625, -0.03021240234375, -0.00861358642578125, 0.07208251953125, -0.01290130615234375, -0.041351318359375, -0.03802490234375, 0.01129913330078125, 0.033447265625, 0.0252685546875, 0.0274810791015625, -0.01065826416015625, 0.04107666015625, -0.0127716064453125, 0.00014913082122802734, 0.006198883056640625, -0.0303955078125, -0.0092010498046875, 0.0017337799072265625, 0.0347900390625, 0.021728515625, -0.055908203125, -0.00632476806640625, -0.0253753662109375, -0.036407470703125, 0.03717041015625, 0.045867919921875, -0.0132904052734375, 0.018402099609375, -0.01934814453125, 0.00873565673828125, -0.01396942138671875, -0.01508331298828125, 0.01316070556640625, 0.0157470703125, -0.0013017654418945312, 0.0139312744140625, -0.00439453125, -0.0099639892578125, -0.004261016845703125, 0.0330810546875, -0.0006437301635742188, 0.09027099609375, -0.032012939453125, 0.0119476318359375, 0.0079803466796875, 0.004337310791015625, 0.004077911376953125, -0.0021800994873046875, -0.0021305084228515625, 0.01184844970703125, 0.0167694091796875, -0.028839111328125, -0.059539794921875, 0.0124359130859375, 0.036865234375, -0.0257110595703125, 0.02880859375, 0.00438690185546875, 0.01043701171875, -0.036468505859375, -0.0017347335815429688, -0.027252197265625, -0.034454345703125, -0.0217132568359375, 0.00980377197265625, 0.006771087646484375, 0.02667236328125, 0.0023708343505859375, -0.011383056640625, 0.03912353515625, 0.005096435546875, 0.0176239013671875, 0.046783447265625, 0.04290771484375, 0.034149169921875, -0.039520263671875, 0.017547607421875, 0.0145111083984375, -0.013153076171875, 0.019805908203125, 0.00788116455078125, -0.01352691650390625, 0.019622802734375, -0.035369873046875, 0.0628662109375, 0.04339599609375, 0.0557861328125, -0.031951904296875, 0.0165863037109375, 0.0567626953125, 0.0017261505126953125, 0.0221710205078125, -0.054443359375, -0.032623291015625, -0.0836181640625, -0.027740478515625, 0.0228271484375, -0.09063720703125, -0.052154541015625, -0.09857177734375, 0.005767822265625, 0.020294189453125, -0.025543212890625, -0.00978851318359375, -0.0208892822265625, -0.033294677734375, 0.052947998046875, -0.050384521484375, 0.007640838623046875, -0.0120697021484375, -0.005977630615234375, -0.0027008056640625, 0.0032482147216796875, -0.031829833984375, 0.041015625, -0.006988525390625, -0.0286712646484375, 0.004688262939453125, 0.0250244140625, -0.059234619140625, -0.0111083984375, -0.038421630859375, 0.03607177734375, -0.050262451171875, -0.0271148681640625, 0.00849151611328125, -0.0012426376342773438, 0.0161590576171875, -0.048004150390625, -0.034332275390625, -0.02825927734375, 0.0230865478515625, -0.046875, -0.015899658203125, -0.031768798828125, -0.04937744140625, -0.01788330078125, -0.00037360191345214844, 0.0124359130859375, -0.025115966796875, -0.06817626953125, 0.0234527587890625, -0.0041351318359375, -0.00553131103515625, -0.0241546630859375, -0.009033203125, -0.00992584228515625, 0.038604736328125, 0.024871826171875, 0.03485107421875, 0.0187530517578125, -0.0027980804443359375, -0.07012939453125, 0.008270263671875, -0.01454925537109375, 0.033782958984375, 0.0007543563842773438, 0.01351165771484375, 0.0038928985595703125, 0.039154052734375, -0.0114288330078125, -0.02886962890625, -0.023406982421875, -0.03271484375, 0.004276275634765625, 0.0015592575073242188, -4.172325134277344e-7, 0.0106353759765625, 0.0246429443359375, 0.0036106109619140625, 0.0001232624053955078, -0.03326416015625, 0.01129913330078125, -0.01517486572265625, -0.01241302490234375, -0.00936126708984375, 0.01407623291015625, -0.07733154296875, -0.037506103515625, 0.036834716796875, 0.0030670166015625, -0.035797119140625, -0.0230712890625, -0.022247314453125, -0.0205078125, -0.012237548828125, 0.03424072265625, -0.02191162109375, -0.05352783203125, 0.00011050701141357422, -0.0146331787109375, -0.037628173828125, 0.00566864013671875, 0.039031982421875, -0.038299560546875, 0.0318603515625, 0.053253173828125, 0.062744140625, -0.07183837890625, -0.004405975341796875, 0.032623291015625, 0.010955810546875, -0.036895751953125, -0.04833984375, 0.0005121231079101562, 0.004261016845703125, -0.01263427734375, -0.0103759765625, -0.00928497314453125, 0.035736083984375, -0.0162811279296875, 0.05712890625, -0.0060577392578125, 0.0855712890625, 0.017181396484375, 0.022857666015625, 0.028717041015625, -0.01335906982421875, 0.069580078125, -0.035675048828125, -0.005832672119140625, 0.0221710205078125, -0.0172576904296875, -0.04315185546875, 0.0116424560546875, -0.06646728515625, 0.0256195068359375, 0.0126800537109375 ]
4851a9c62133b664b9e2b1e0f68401c5710bc31b
Wordpress Stackexchange Q: WP-CLI Get Site ID from its url I know I can get a site list with wp site list --path="$pathtowordpress" What I want to do though is get one site's ID by knowing only it's url. Does anyone know if this is possible ? Tnaks. A: It looks like --url isn't working to filter the wp site list output. So instead one could try: wp site list | awk '{ if( $2 == SITE_URL_STRING ) print $1; }' where we use the awk trick from here, to filter the url column and display the blog_id column. Here we must replace SITE_URL_STRING with e.g. "https://blog.example.com/site9/". Update: Here's a bash example to find the exact site url string: #!/bin/bash site_url="https://blog.example.com/site9/" wp site list | awk -v site_url=$site_url '{ if( $2 == site_url ) print $1; }' where we use the -v option to pass a shell variable to awk. Got that idea from here.
Q: WP-CLI Get Site ID from its url I know I can get a site list with wp site list --path="$pathtowordpress" What I want to do though is get one site's ID by knowing only it's url. Does anyone know if this is possible ? Tnaks. A: It looks like --url isn't working to filter the wp site list output. So instead one could try: wp site list | awk '{ if( $2 == SITE_URL_STRING ) print $1; }' where we use the awk trick from here, to filter the url column and display the blog_id column. Here we must replace SITE_URL_STRING with e.g. "https://blog.example.com/site9/". Update: Here's a bash example to find the exact site url string: #!/bin/bash site_url="https://blog.example.com/site9/" wp site list | awk -v site_url=$site_url '{ if( $2 == site_url ) print $1; }' where we use the -v option to pass a shell variable to awk. Got that idea from here.
wordpress
{ "language": "en", "length": 153, "provenance": "stackexchange_00019.jsonl.gz:482752", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/289970" }
[ 0.0031795501708984375, -0.0029315948486328125, 0.0063629150390625, 0.029876708984375, -0.00665283203125, -0.01549530029296875, 0.040679931640625, -0.0237884521484375, 0.00827789306640625, 0.004665374755859375, -0.032196044921875, 0.0016193389892578125, -0.036376953125, -0.0281219482421875, 0.0012264251708984375, -0.045074462890625, 0.018890380859375, -0.0163116455078125, -0.0269317626953125, -0.0026798248291015625, 0.0005974769592285156, 0.003971099853515625, -0.005340576171875, 0.013946533203125, 0.050384521484375, -0.0179443359375, 0.041473388671875, 0.004833221435546875, 0.034149169921875, -0.00739288330078125, 0.0183868408203125, -0.044586181640625, 0.00762176513671875, -0.03289794921875, 0.040740966796875, -0.00809478759765625, 0.02349853515625, -0.00913238525390625, 0.00443267822265625, 0.028533935546875, -0.007213592529296875, 0.01204681396484375, -0.0036525726318359375, -0.0274505615234375, -0.027557373046875, -0.01012420654296875, -0.01194000244140625, -0.01494598388671875, -0.006153106689453125, 0.0282745361328125, -0.0018243789672851562, 0.0684814453125, 0.004055023193359375, 0.036041259765625, -0.002811431884765625, -0.0300140380859375, 0.05572509765625, -0.005207061767578125, 0.0188140869140625, -0.061767578125, -0.04925537109375, 0.03167724609375, 0.050384521484375, 0.0258941650390625, -0.0323486328125, 0.0171661376953125, -0.00799560546875, -0.00710296630859375, -0.01451873779296875, -0.0311737060546875, 0.0117645263671875, -0.0239105224609375, 0.005023956298828125, -0.01010894775390625, -0.04901123046875, -0.01258087158203125, 0.02178955078125, -0.033538818359375, 0.01141357421875, -0.01175689697265625, -0.004138946533203125, -0.017578125, -0.046966552734375, 0.0010814666748046875, 0.015869140625, 0.06475830078125, -0.01397705078125, -0.0296783447265625, -0.017364501953125, -0.00786590576171875, -0.0170745849609375, 0.0248565673828125, -0.03741455078125, -0.0158843994140625, -0.021453857421875, -0.0288543701171875, -0.01116180419921875, 0.0287017822265625, -0.0117645263671875, 0.0240325927734375, -0.0170745849609375, -0.0152587890625, -0.0031566619873046875, -0.0273895263671875, -0.006198883056640625, 0.06903076171875, 0.032318115234375, 0.06060791015625, 0.006103515625, -0.004608154296875, 0.00807952880859375, -0.0288543701171875, -0.01387786865234375, 0.00354766845703125, -0.039306640625, -0.0113372802734375, -0.056304931640625, -0.0240325927734375, -0.033477783203125, -0.0302276611328125, -0.00203704833984375, 0.04437255859375, 0.006877899169921875, -0.003345489501953125, -0.0095062255859375, 0.01020050048828125, 0.00562286376953125, -0.046051025390625, -0.044921875, -0.006328582763671875, -0.0269927978515625, 0.025543212890625, 0.041748046875, 0.0279083251953125, 0.0032405853271484375, -0.0147247314453125, 0.01097869873046875, 0.0157318115234375, 0.02484130859375, 0.0088958740234375, -0.0006232261657714844, -0.02191162109375, 0.005916595458984375, -0.012725830078125, 0.03076171875, 0.029052734375, 0.0014438629150390625, 0.0013179779052734375, 0.0338134765625, 0.008331298828125, -0.032684326171875, -0.00762939453125, 0.00817108154296875, 0.0150909423828125, 0.0122222900390625, -0.0718994140625, 0.0537109375, -0.08746337890625, 0.0472412109375, -0.0758056640625, -0.006847381591796875, 0.016754150390625, 0.0185394287109375, -0.01453399658203125, -0.00959014892578125, -0.014373779296875, -0.015777587890625, -0.006687164306640625, 0.0244293212890625, 0.06048583984375, -0.006229400634765625, -0.014556884765625, 0.03167724609375, 0.02301025390625, -0.007320404052734375, 0.01479339599609375, -0.0009627342224121094, -0.00042724609375, 0.0154876708984375, 0.04315185546875, -0.008514404296875, -0.0352783203125, 0.01751708984375, 0.021148681640625, -0.07647705078125, 0.03997802734375, 0.0021495819091796875, 0.07391357421875, 0.04071044921875, 0.0028133392333984375, 0.049041748046875, -0.020416259765625, -0.0350341796875, 0.00482177734375, -0.00995635986328125, -0.008636474609375, -0.00417327880859375, 0.00980377197265625, -0.0229949951171875, 0.0019083023071289062, 0.030426025390625, -0.018463134765625, 0.046142578125, 0.0198822021484375, -0.031829833984375, 0.018524169921875, -0.025482177734375, 0.0135345458984375, 0.031829833984375, -0.00859832763671875, 0.00824737548828125, 0.012054443359375, -0.0228729248046875, -0.02679443359375, -0.053558349609375, 0.038909912109375, 0.02044677734375, -0.00678253173828125, -0.0455322265625, -0.0008978843688964844, -0.056304931640625, 0.01727294921875, -0.07476806640625, 0.01140594482421875, 0.05291748046875, 0.0029201507568359375, -0.031402587890625, -0.01739501953125, 0.0640869140625, 0.0171356201171875, -0.021820068359375, -0.0015840530395507812, 0.03814697265625, 0.039215087890625, -0.0280609130859375, 0.010406494140625, 0.005889892578125, -0.04254150390625, 0.01204681396484375, 0.043426513671875, 0.051605224609375, -0.0012674331665039062, 0.006229400634765625, -0.03851318359375, 0.080322265625, -0.00994873046875, 0.0277557373046875, -0.049957275390625, -0.0002932548522949219, 0.048553466796875, 0.006683349609375, 0.00824737548828125, 0.007717132568359375, -0.0019855499267578125, -0.0328369140625, 0.051513671875, -0.00707244873046875, 0.0208740234375, -0.0229644775390625, -0.0190582275390625, 0.0014848709106445312, -0.046600341796875, -0.041229248046875, -0.0200653076171875, 0.00597381591796875, 0.03485107421875, 0.0230712890625, 0.03656005859375, -0.0509033203125, 0.0267181396484375, 0.01568603515625, 0.014556884765625, 0.00962066650390625, 0.0197906494140625, 0.020843505859375, -0.00923919677734375, 0.009796142578125, -0.0234375, -0.01166534423828125, 0.01039886474609375, 0.015289306640625, 0.0263671875, -0.0160675048828125, -0.005260467529296875, 0.0031890869140625, -0.017425537109375, 0.0109710693359375, 0.042572021484375, -0.039703369140625, 0.016571044921875, 0.034637451171875, 0.0294189453125, -0.030487060546875, 0.029205322265625, -0.032562255859375, -0.0014591217041015625, 0.06939697265625, -0.036468505859375, 0.0404052734375, -0.0236358642578125, 0.0155029296875, 0.04534912109375, 0.0032863616943359375, -0.00978851318359375, -0.005512237548828125, 0.0245361328125, -0.01250457763671875, -0.029815673828125, -0.0209503173828125, 0.01439666748046875, -0.0831298828125, -0.00005167722702026367, 0.010009765625, 0.048370361328125, -0.01512908935546875, -0.0555419921875, 0.0021533966064453125, -0.00502777099609375, -0.1263427734375, -0.11669921875, 0.01111602783203125, -0.044921875, -0.00170135498046875, -0.0217132568359375, -0.0252838134765625, 0.0011491775512695312, 0.005401611328125, -0.0069122314453125, 0.033782958984375, -0.043212890625, -0.10052490234375, -0.05841064453125, -0.11431884765625, -0.005092620849609375, -0.00490570068359375, 0.028564453125, 0.007732391357421875, 0.0009088516235351562, 0.0102081298828125, -0.02996826171875, 0.0269317626953125, 0.0655517578125, -0.017120361328125, -0.047119140625, -0.0249176025390625, -0.0310821533203125, -0.0263824462890625, -0.0032405853271484375, 0.01462554931640625, 0.0113983154296875, 0.0208282470703125, 0.01125335693359375, -0.0019044876098632812, 0.005382537841796875, 0.0200042724609375, -0.057342529296875, -0.0018825531005859375, 0.0005011558532714844, -0.00211334228515625, -0.04669189453125, -0.0038166046142578125, -0.03851318359375, -0.033538818359375, 0.05731201171875, 0.0296783447265625, -0.005008697509765625, -0.0009016990661621094, 0.0157012939453125, 0.01262664794921875, -0.03466796875, 0.0194244384765625, -0.032196044921875, 0.045379638671875, 0.0064849853515625, 0.01190185546875, -0.01256561279296875, 0.053192138671875, -0.009857177734375, -0.057891845703125, -0.01090240478515625, 0.01369476318359375, 0.006999969482421875, -0.018402099609375, -0.012847900390625, -0.0011816024780273438, 0.042816162109375, 0.0010051727294921875, 0.0302581787109375, -0.0261688232421875, -0.04620361328125, -0.0099334716796875, 0.0736083984375, -0.037353515625, -0.0261688232421875, 0.020111083984375, 0.04571533203125, -0.036865234375, -0.0858154296875, -0.0178680419921875, -0.02789306640625, -0.1297607421875, 0.0260162353515625, -0.01116180419921875, -0.03448486328125, 0.01029205322265625, -0.0179290771484375, -0.033905029296875, -0.06170654296875, 0.051025390625, -0.00667572021484375, 0.025665283203125, 0.00830078125, 0.0003304481506347656, 0.012786865234375, -0.04339599609375, 0.00612640380859375, -0.035369873046875, -0.01125335693359375, 0.0269012451171875, 0.01087188720703125, -0.0318603515625, 0.011138916015625, 0.01141357421875, 0.0294189453125, -0.006229400634765625, -0.00902557373046875, -0.011383056640625, 0.0025997161865234375, -0.007793426513671875, -0.007904052734375, -0.0238494873046875, -0.0222320556640625, -0.032806396484375, -0.052001953125, -0.02783203125, -0.0252227783203125, -0.0024871826171875, 0.0150146484375, 0.005886077880859375, 0.0007772445678710938, -0.023162841796875, -0.027435302734375, 0.007076263427734375, -0.005550384521484375, 0.0032749176025390625, -0.013580322265625, -0.016876220703125, -0.016876220703125, 0.06927490234375, 0.0011434555053710938, -0.004833221435546875, -0.00814056396484375, 0.07281494140625, 0.00373077392578125, -0.03277587890625, -0.027801513671875, 0.033782958984375, 0.0287933349609375, -0.012359619140625, 0.072998046875, 0.041107177734375, -0.01424407958984375, 0.039581298828125, 0.00562286376953125, -0.006420135498046875, 0.03399658203125, 0.00885009765625, 0.03363037109375, 0.01195526123046875, -0.022552490234375, 0.0186920166015625, -0.0287628173828125, 0.0234222412109375, -0.021514892578125, -0.024566650390625, 0.0116729736328125, 0.05755615234375, -0.0247650146484375, 0.0174713134765625, -0.04345703125, -0.010009765625, -0.0028209686279296875, -0.042724609375, 0.03985595703125, 0.027374267578125, -0.018096923828125, 0.024139404296875, 0.01837158203125, -0.01190948486328125, 0.0198516845703125, 0.02691650390625, -0.003032684326171875, 0.01123809814453125, 0.006855010986328125, -0.0391845703125, -0.00319671630859375, -0.0157928466796875, 0.07000732421875, 0.007236480712890625, -0.04608154296875, 0.055633544921875, -0.036834716796875, -0.0025234222412109375, 0.04638671875, 0.0167694091796875, 0.022308349609375, 0.02130126953125, -0.033111572265625, -0.0008983612060546875, 0.016754150390625, -0.01715087890625, -0.049957275390625, 0.0168914794921875, -0.01131439208984375, 0.004940032958984375, 0.06085205078125, 0.04437255859375, -0.01012420654296875, 0.0611572265625, -0.0335693359375, 0.033172607421875, 0.03997802734375, 0.0164031982421875, -0.00510406494140625, 0.00418853759765625, -0.0235595703125, 0.0233001708984375, 0.0007948875427246094, -0.0190582275390625, 0.035400390625, 0.012542724609375, 0.040252685546875, 0.0640869140625, -0.01043701171875, -0.03436279296875, -0.06298828125, -0.009124755859375, -0.0008831024169921875, -0.0090179443359375, 0.01995849609375, -0.03131103515625, -0.0266265869140625, 0.0092620849609375, 0.0233001708984375, 0.01158905029296875, -0.008392333984375, 0.022216796875, -0.0180816650390625, 0.055877685546875, -0.05181884765625, -0.01953125, 0.0006947517395019531, -0.00977325439453125, -0.015625, -0.01242828369140625, -0.0241241455078125, -0.01264190673828125, -0.0197601318359375, -0.01071929931640625, 0.053131103515625, -0.00862884521484375, 0.034027099609375, -0.042022705078125, -0.007503509521484375, 0.004688262939453125, -0.01445770263671875, 0.06744384765625, 0.0372314453125, -0.002231597900390625, -0.008758544921875, -0.0174407958984375, -0.0058441162109375, 0.036407470703125, -0.00785064697265625, -0.01314544677734375, -0.0235137939453125, 0.0012483596801757812, 0.0226287841796875, 0.01309967041015625, 0.043060302734375, 0.0025691986083984375, 0.033843994140625, -0.01183319091796875, 0.0013284683227539062, -0.017547607421875, 0.044952392578125, 0.030670166015625, 0.0012140274047851562, 0.022918701171875, 0.035064697265625, 0.011627197265625, -0.0268096923828125, 0.007053375244140625, -0.045166015625, 0.001308441162109375, -0.054931640625, 0.061065673828125, 0.0316162109375, 0.005748748779296875, 0.007965087890625, -0.0259246826171875, 0.0086517333984375, -0.003917694091796875, -0.017120361328125, -0.0239410400390625, 0.036407470703125, 0.0025997161865234375, -0.0043182373046875, -0.0176239013671875, 0.00921630859375, -0.00009822845458984375, 0.034088134765625, -0.028533935546875, -0.0016231536865234375, -0.024383544921875, 0.0256805419921875, -0.042236328125, 0.06988525390625, 0.1126708984375, 0.01849365234375, 0.062744140625, 0.0154571533203125, -0.004489898681640625, -0.00020444393157958984, 0.023712158203125, -0.0157318115234375, -0.046783447265625, 0.0194549560546875, 0.0159454345703125, 0.000021159648895263672, 0.0296173095703125, -0.01284027099609375, 0.00656890869140625, -0.01464080810546875, 0.045623779296875, -0.00970458984375, 0.00732421875, 0.00829315185546875, -0.019439697265625, 0.01410675048828125, 0.0025234222412109375, -0.043853759765625, -0.03131103515625, 0.01438140869140625, 0.00215911865234375, -0.023284912109375, 0.01031494140625, 0.05126953125, -0.01180267333984375, -0.0245361328125, 0.035614013671875, 0.006023406982421875, 0.00774383544921875, -0.02838134765625, -0.0026760101318359375, -0.00695037841796875, -0.02685546875, -0.011199951171875, -0.0430908203125, -0.01425933837890625, -0.055023193359375, -0.0275115966796875, -0.031494140625, 0.027435302734375, 0.032318115234375, 0.0330810546875, -0.00872802734375, 0.049468994140625, -0.005859375, 0.0169525146484375, 0.015777587890625, -0.027252197265625, 0.0687255859375, 0.004596710205078125, 0.012542724609375, 0.01329803466796875, -0.033294677734375, -0.006809234619140625, -0.008575439453125, 0.007221221923828125, -0.017120361328125, 0.0236358642578125, 0.115234375, -0.0311737060546875, -0.016143798828125, 0.06787109375, 0.041900634765625, -0.038970947265625, -0.0102691650390625, 0.040069580078125, -0.0537109375, -0.034454345703125, 0.017913818359375, -0.0321044921875, -0.023284912109375, -0.007038116455078125, -0.0255584716796875, 0.040313720703125, 0.00324249267578125, -0.00798797607421875, 0.00647735595703125, 0.01470947265625, -0.006076812744140625, 0.017333984375, -0.04254150390625, 0.0274658203125, 0.0240478515625, 0.02978515625, -0.019134521484375, -0.006847381591796875, 0.01436614990234375, 0.0224761962890625, 0.08203125, 0.016357421875, -0.037506103515625, -0.0338134765625, 0.016143798828125, 0.01270294189453125, -0.02325439453125, 0.05615234375, -0.01213836669921875, 0.08465576171875, 0.06817626953125, -0.0970458984375, 0.01514434814453125, -0.023406982421875, 0.01279449462890625, -0.004955291748046875, 0.02410888671875, 0.0159912109375, 0.0283966064453125, -0.027099609375, -0.0211181640625, 0.0160980224609375, 0.01085662841796875, 0.0233001708984375, 0.0229339599609375, 0.021575927734375, 0.039154052734375, -0.00833892822265625, -0.0034732818603515625, -0.01428985595703125, 0.052703857421875, -0.01438140869140625, -0.0081787109375, 0.024261474609375, 0.01519012451171875, 0.045318603515625, -0.011322021484375, -0.0190887451171875, 0.02069091796875, -0.0010080337524414062, 0.043060302734375, 0.049835205078125, 0.037872314453125, -0.0032138824462890625, 0.02630615234375, 0.021209716796875, 0.026641845703125, -0.029571533203125, -0.0396728515625, 0.01157379150390625, 0.0020809173583984375, 0.01239013671875, 0.0302886962890625, 0.045166015625, 0.03704833984375, 0.05712890625, -0.00351715087890625, 0.030364990234375, 0.041259765625, 0.0154876708984375, 0.01352691650390625, 0.007049560546875, -0.055450439453125, 0.024932861328125, -0.0364990234375, 0.0164642333984375, 0.004940032958984375, 0.032012939453125, 0.0247344970703125, 0.045318603515625, -0.0305328369140625, -0.027862548828125, -0.0113983154296875, 0.036834716796875, 0.0228118896484375, -0.000698089599609375, -0.0079803466796875, -0.025421142578125, 0.030853271484375, 0.0233612060546875, 0.01184844970703125, 0.0233154296875, 0.0450439453125, 0.0264739990234375, -0.03594970703125, -0.00737762451171875, 0.0313720703125, -0.0291900634765625, 0.0240325927734375, -0.0241241455078125, 0.01959228515625, 0.01404571533203125, -0.01396942138671875, -0.005126953125, 0.0159454345703125, 0.0174407958984375, -0.046051025390625, 0.052581787109375, -0.0117645263671875, 0.00926971435546875, 0.0230865478515625, 0.019073486328125, -0.007415771484375, -0.001789093017578125, -0.08782958984375, -0.00525665283203125, -0.03546142578125, -0.0198822021484375, 0.015289306640625, 0.043670654296875, 0.0181121826171875, -0.012420654296875, 0.0183563232421875, 0.0170440673828125, -0.007965087890625, -0.00604248046875, -0.004779815673828125, -0.015777587890625, 0.048248291015625, 0.00873565673828125, -0.04046630859375, -0.023162841796875, -0.00568389892578125, -0.0002371072769165039, 0.0189971923828125, 0.0247802734375, 0.0185546875, 0.012451171875, -0.0203094482421875, 0.0218658447265625, -0.0460205078125, -0.01557159423828125, -0.01218414306640625, -0.0165252685546875, 0.02008056640625, 0.006259918212890625, -0.049713134765625, 0.0256805419921875, -0.004375457763671875, -0.013946533203125, 0.0406494140625, -0.049346923828125, 0.01263427734375, 0.01140594482421875, 0.0333251953125, -0.01910400390625, -0.023956298828125, -0.05841064453125, -0.0303497314453125, 0.055816650390625, 0.048431396484375, -0.0101776123046875, 0.01708984375, -0.035675048828125, -0.031524658203125, 0.00580596923828125, -0.0230865478515625, -0.01551055908203125, 0.01514434814453125, -0.003643035888671875, 0.0211944580078125, -0.00791168212890625, -0.0164337158203125, 0.007030487060546875, 0.007965087890625, -0.01522064208984375, -0.01018524169921875, 0.0294647216796875, -0.01546478271484375, -0.020751953125, 0.0245361328125, -0.017364501953125, 0.01174163818359375, 0.00228118896484375, 0.0213775634765625, -0.01242828369140625, -0.058990478515625, -0.0275421142578125, -0.042877197265625, 0.016510009765625, 0.0188751220703125, 0.009429931640625, -0.0217742919921875, 0.007843017578125, -0.0306854248046875, -0.0093231201171875, -0.01453399658203125, 0.0198516845703125, 0.0226593017578125, -0.015411376953125, -0.06781005859375, -0.029266357421875, 0.060333251953125, -0.0250091552734375, -0.006496429443359375, -0.04058837890625, -0.0321044921875, -0.0157318115234375, 0.06634521484375, -0.0017833709716796875, 0.007602691650390625, 0.02923583984375, -0.007465362548828125, -0.004608154296875, -0.00412750244140625, -0.0286102294921875, 0.052337646484375, -0.038330078125, -0.0013532638549804688, 0.006771087646484375, -0.0038280487060546875, -0.04779052734375, -0.056671142578125, 0.0226898193359375, -0.036041259765625, -0.0203857421875, -0.02581787109375, -0.00681304931640625, -0.0028247833251953125, -0.043121337890625, -0.0767822265625, 0.04376220703125, -0.0278472900390625, -0.0221710205078125, -0.060028076171875, -0.01477813720703125, 0.01515960693359375, -0.007411956787109375, -0.031494140625, -0.00649261474609375, -0.04638671875, 0.047943115234375, 0.016876220703125, 0.027496337890625, -0.0102996826171875, 0.0149078369140625, -0.01464080810546875, 0.04345703125, 0.04083251953125, 0.031768798828125, 0.0260162353515625, -0.01366424560546875, 0.024871826171875, 0.01544952392578125, -0.0565185546875, 0.037689208984375, -0.01227569580078125, 0.02447509765625, -0.023193359375, 0.009613037109375, -0.040252685546875, -0.0059814453125, 0.07342529296875, 0.11004638671875, 0.026336669921875, -0.04095458984375, -0.03399658203125, -0.0195159912109375, -0.023468017578125, -0.050689697265625, 0.0325927734375, -0.104736328125, -0.0394287109375, 0.0127716064453125, 0.0011577606201171875, -0.0001671314239501953, -0.0191497802734375, -0.03155517578125, -0.005096435546875, -0.008026123046875, -0.00626373291015625, -0.01323699951171875, 0.00830078125, 0.07501220703125, -0.05926513671875, -0.0034923553466796875, 0.0026378631591796875, 0.01097869873046875, 0.040985107421875, -0.06414794921875, -0.0212249755859375, -0.0160369873046875, -0.0247344970703125, 0.0176849365234375, -0.006610870361328125, 0.028717041015625, -0.0254974365234375, -0.01751708984375, -0.02984619140625, 0.00970458984375, -0.0046844482421875, 0.0008749961853027344, 0.030670166015625, -0.00728607177734375, 0.0014247894287109375, 0.047088623046875, 0.021636962890625, 0.04974365234375, -0.005157470703125, 0.07794189453125, -0.034088134765625, -0.0232391357421875, -0.0220489501953125, -0.03485107421875, -0.01288604736328125, 0.046905517578125, 0.006702423095703125, -0.06353759765625, 0.033721923828125, 0.0185394287109375, 0.044158935546875, 0.0215301513671875 ]
1312d9e358837f1a8cb2a1843bfbebb87fb06c3e
Wordpress Stackexchange Q: Can I upgrade a plugin to a specific version? I am testing plugin upgrades on a staging instance before applying them to production. But if there are any delays in this process, I may end up being prompted to upgrade to a newer, untested version on production. If prompted to upgrade a plugin, how can I choose an intermediary update, rather than the latest? A: You can also download specific versions from the plugin's SVN. For example, imagine you wanted a specific version of the Yoast SEO plugin. The plugin page for Yoast is is: https://wordpress.org/plugins/`wordpress-seo`/ Note the highlighted section of the URI wordpress-seo The SVN/Repo URI will be (notice the URI slug includes the highlighted section from above): https://plugins.svn.wordpress.org/`wordpress-seo`/tags/ The tags folder lists all the versions.
Q: Can I upgrade a plugin to a specific version? I am testing plugin upgrades on a staging instance before applying them to production. But if there are any delays in this process, I may end up being prompted to upgrade to a newer, untested version on production. If prompted to upgrade a plugin, how can I choose an intermediary update, rather than the latest? A: You can also download specific versions from the plugin's SVN. For example, imagine you wanted a specific version of the Yoast SEO plugin. The plugin page for Yoast is is: https://wordpress.org/plugins/`wordpress-seo`/ Note the highlighted section of the URI wordpress-seo The SVN/Repo URI will be (notice the URI slug includes the highlighted section from above): https://plugins.svn.wordpress.org/`wordpress-seo`/tags/ The tags folder lists all the versions. A: Using WP-CLI you can specify this as described in the official documentation. $ wp plugin update <plugin> Using either of the following arguments --minor Only perform updates for minor releases (e.g. from 1.3 to 1.4 instead of 2.0) --patch Only perform updates for patch releases (e.g. from 1.3 to 1.3.3 instead of 1.4) --version=<version> If set, the plugin will be updated to the specified version. A: The most straightforward no cli method of easily upgrading / downgrading a plugin to a specific version: * *Click on "advanced view" on the right column of the plugin's page under the list of info - it will take you to a url like https://wordpress.org/plugins/<plugin>/advanced/ *Find the "previous versions" section at the very bottom, select the version you want from the dropdown and download the zip file *Remove the current version's folder from wp-content/plugins *Extract the zip you just downloaded and copy the folder into wp-content/plugins *Verify on your site at www.yoursite.com/wp-admin/plugins.php that the version you wanted is now listed That's it.
wordpress
{ "language": "en", "length": 297, "provenance": "stackexchange_00019.jsonl.gz:482762", "question_score": "15", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/290018" }
[ 0.04498291015625, 0.01116943359375, -0.01280975341796875, -0.051300048828125, 0.026123046875, -0.0176544189453125, 0.004680633544921875, -0.0114593505859375, -0.00423431396484375, -0.01056671142578125, -0.016357421875, -0.01074981689453125, -0.06103515625, -0.035125732421875, -0.0151519775390625, -0.064697265625, 0.05194091796875, -0.0086517333984375, 0.0236053466796875, -0.01424407958984375, 0.00829315185546875, 0.035858154296875, -0.010467529296875, 0.12274169921875, 0.044647216796875, -0.0037593841552734375, 0.06549072265625, -0.0179901123046875, 0.0164031982421875, -0.01332855224609375, 0.031494140625, -0.0245208740234375, 0.023712158203125, 0.002574920654296875, -0.010986328125, -0.037628173828125, 0.0230865478515625, -0.0203857421875, -0.02197265625, 0.035552978515625, 0.04339599609375, -0.0227813720703125, 0.041168212890625, -0.001026153564453125, 0.0210723876953125, -0.052978515625, 0.08148193359375, -0.03375244140625, 0.0166473388671875, -0.036834716796875, 0.00402069091796875, 0.0037384033203125, 0.0194854736328125, -0.0230712890625, -0.018890380859375, -0.00928497314453125, -0.0293426513671875, 0.07745361328125, -0.004119873046875, 0.020904541015625, -0.00955963134765625, 0.05499267578125, -0.00917816162109375, -0.0018558502197265625, -0.0087432861328125, 0.0021991729736328125, 0.07147216796875, 0.003932952880859375, -0.0104827880859375, -0.01035308837890625, 0.0166778564453125, 0.00853729248046875, -0.0160369873046875, -0.006519317626953125, 0.0034465789794921875, -0.006847381591796875, 0.0255584716796875, -0.0009326934814453125, -0.00940704345703125, 0.0256500244140625, 0.0709228515625, -0.00914764404296875, 0.0352783203125, -0.01800537109375, 0.026580810546875, 0.01155853271484375, 0.0084075927734375, -0.026947021484375, -0.041107177734375, -0.00876617431640625, -0.040191650390625, 0.03778076171875, -0.033111572265625, -0.01910400390625, -0.03814697265625, 0.021148681640625, 0.0163421630859375, 0.0243988037109375, 0.0025463104248046875, 0.0229339599609375, 0.01885986328125, -0.0523681640625, 0.048187255859375, -0.04339599609375, -0.0094146728515625, 0.0159912109375, 0.036895751953125, 0.033416748046875, 0.0248260498046875, 0.01094818115234375, -0.011199951171875, 0.017578125, -0.037445068359375, -0.040283203125, 0.0005793571472167969, 0.050323486328125, -0.035614013671875, 0.0137481689453125, 0.003589630126953125, 0.00913238525390625, 0.005138397216796875, 0.043670654296875, -0.004901885986328125, -0.07672119140625, -0.023956298828125, -0.054229736328125, -0.0325927734375, -0.00913238525390625, -0.0308837890625, -0.0238037109375, -0.0278167724609375, 0.040924072265625, 0.06732177734375, 0.028564453125, -0.00665283203125, 0.0133056640625, -0.0117645263671875, 0.006267547607421875, -0.0188751220703125, 0.0177001953125, -0.055999755859375, -0.00628662109375, 0.053802490234375, -0.06646728515625, 0.0186920166015625, -0.01522064208984375, 0.0140533447265625, 0.0400390625, 0.012542724609375, 0.003475189208984375, 0.02154541015625, 0.02587890625, 0.0283966064453125, -0.02752685546875, 0.01499176025390625, -0.06195068359375, 0.0196380615234375, -0.049072265625, 0.03912353515625, -0.046112060546875, -0.01690673828125, -0.0123443603515625, 0.010101318359375, -0.00794219970703125, 0.00377655029296875, 0.00894927978515625, 0.005802154541015625, 0.02142333984375, 0.01273345947265625, -0.0221099853515625, -0.021331787109375, -0.00507354736328125, 0.04400634765625, 0.0026378631591796875, -0.0075836181640625, 0.0269927978515625, -0.0006771087646484375, 0.01239776611328125, 0.0491943359375, -0.0174102783203125, -0.01505279541015625, -0.01299285888671875, 0.1099853515625, -0.0249481201171875, -0.0272674560546875, -0.01058197021484375, -0.002391815185546875, 0.0123291015625, 0.038726806640625, 0.01354217529296875, 0.0180816650390625, 0.003360748291015625, -0.00670623779296875, 0.023162841796875, -0.0109100341796875, -0.015228271484375, -0.01151275634765625, 0.0172271728515625, -0.00949859619140625, -0.03759765625, -0.01143646240234375, 0.0274810791015625, -0.030548095703125, -0.0091705322265625, -0.04339599609375, 0.0028438568115234375, -0.004024505615234375, 0.050384521484375, 0.03216552734375, 0.035614013671875, -0.01345062255859375, -0.01016998291015625, -0.00960540771484375, -0.0010547637939453125, -0.033905029296875, -0.03546142578125, -0.01517486572265625, -0.0021839141845703125, 0.00531768798828125, 0.0032749176025390625, 0.0029697418212890625, 0.003841400146484375, -0.00885009765625, 0.004703521728515625, 0.01099395751953125, 0.01476287841796875, -0.002368927001953125, 0.0163726806640625, 0.052642822265625, 0.044586181640625, 0.01263427734375, -0.046295166015625, 0.02447509765625, 0.03411865234375, -0.00527191162109375, -0.017669677734375, 0.022613525390625, -0.10418701171875, 0.03375244140625, 0.049468994140625, 0.0223846435546875, -0.02496337890625, -0.0316162109375, -0.00893402099609375, 0.00690460205078125, -0.039398193359375, -0.013153076171875, 0.005031585693359375, -0.0126953125, -0.0107574462890625, 0.01158905029296875, 0.0097808837890625, 0.024017333984375, -0.002582550048828125, 0.00722503662109375, 0.03826904296875, 0.00872802734375, -0.0171661376953125, -0.02032470703125, -0.0023860931396484375, 0.000858306884765625, -0.0338134765625, -0.04583740234375, 0.0006041526794433594, 0.035247802734375, -0.01326751708984375, 0.06671142578125, 0.055206298828125, -0.0038127899169921875, -0.035980224609375, 0.0023937225341796875, 0.07611083984375, 0.006320953369140625, 0.03594970703125, 0.024505615234375, 0.05950927734375, -0.021270751953125, -0.0181884765625, 0.01904296875, 0.03436279296875, -0.00640869140625, -0.033050537109375, 0.046295166015625, 0.00014901161193847656, 0.025787353515625, -0.045745849609375, 0.06427001953125, 0.0028324127197265625, -0.016937255859375, -0.0040435791015625, 0.0313720703125, -0.03240966796875, -0.05010986328125, 0.00925445556640625, -0.00867462158203125, -0.036376953125, 0.0261383056640625, -0.03912353515625, 0.03680419921875, -0.036712646484375, 0.035369873046875, 0.056396484375, -0.00794219970703125, 0.00872039794921875, 0.001544952392578125, -0.037109375, 0.0247650146484375, 0.001155853271484375, -0.0257415771484375, 0.01641845703125, -0.08892822265625, -0.0019893646240234375, 0.0243988037109375, -0.01047515869140625, 0.0206451416015625, -0.0189361572265625, -0.02642822265625, 0.01007080078125, -0.0899658203125, -0.0447998046875, -0.01296234130859375, -0.0545654296875, 0.014556884765625, -0.0006341934204101562, -0.027679443359375, -0.0186309814453125, 0.021881103515625, 0.031982421875, 0.0097198486328125, -0.0340576171875, -0.07000732421875, -0.06610107421875, -0.07171630859375, -0.0012712478637695312, -0.005290985107421875, 0.002590179443359375, 0.005718231201171875, 0.004467010498046875, 0.0095672607421875, -0.00537872314453125, 0.0345458984375, 0.0560302734375, 0.0019817352294921875, -0.02001953125, -0.01009368896484375, -0.03143310546875, 0.0299224853515625, -0.0047760009765625, 0.1181640625, 0.033477783203125, -0.042938232421875, -0.0025882720947265625, 0.011932373046875, 0.009002685546875, 0.0245513916015625, -0.0178070068359375, -0.036224365234375, 0.0197296142578125, -0.00010836124420166016, -0.036529541015625, 0.028564453125, 0.0175323486328125, -0.002960205078125, 0.01277923583984375, -0.0235595703125, -0.03289794921875, 0.0262298583984375, -0.01503753662109375, 0.0075531005859375, 0.00933837890625, 0.07440185546875, 0.0112762451171875, -0.0220184326171875, -0.03863525390625, -0.057403564453125, -0.06414794921875, 0.03607177734375, -0.03961181640625, 0.03314208984375, 0.01105499267578125, -0.011138916015625, -0.01153564453125, -0.01055145263671875, -0.011871337890625, -0.01364898681640625, 0.0195465087890625, -0.03680419921875, 0.0595703125, -0.0640869140625, -0.021697998046875, -0.06219482421875, 0.062347412109375, -0.0085906982421875, -0.010650634765625, -0.00679779052734375, 0.010894775390625, -0.023193359375, -0.0294342041015625, -0.03253173828125, -0.0020732879638671875, -0.04840087890625, -0.032440185546875, -0.01180267333984375, -0.0223236083984375, 0.010711669921875, 0.003101348876953125, -0.00756072998046875, -0.045166015625, 0.01329803466796875, 0.016143798828125, -0.01016998291015625, -0.00467681884765625, -0.0282745361328125, 0.0004634857177734375, -0.0016574859619140625, -0.0086822509765625, -0.06524658203125, -0.01053619384765625, -0.027008056640625, 0.0283966064453125, 0.0188140869140625, -0.01174163818359375, -0.014556884765625, 0.015289306640625, 0.0012063980102539062, 0.00595855712890625, -0.005374908447265625, -0.003780364990234375, -0.0127105712890625, 0.00846099853515625, 0.003116607666015625, -0.0184173583984375, -0.00815582275390625, -0.03216552734375, -0.06475830078125, -0.022125244140625, -0.0034465789794921875, 0.044464111328125, 0.03326416015625, -0.025970458984375, -0.051055908203125, -0.0287628173828125, -0.00323486328125, -0.013641357421875, -0.015228271484375, 0.0113372802734375, -0.0015783309936523438, -0.0180816650390625, 0.07489013671875, 0.027984619140625, -0.00994873046875, -0.0168304443359375, 0.04913330078125, 0.004863739013671875, -0.052734375, 0.002719879150390625, 0.004001617431640625, 0.0465087890625, 0.03460693359375, 0.038848876953125, 0.026702880859375, -0.022979736328125, 0.03759765625, 0.0301361083984375, -0.01312255859375, 0.01253509521484375, 0.00713348388671875, 0.033233642578125, -0.01232147216796875, 0.0013408660888671875, 0.0259857177734375, -0.002597808837890625, 0.0362548828125, -0.0092926025390625, -0.0296173095703125, -0.01523590087890625, 0.033294677734375, -0.0285797119140625, 0.034637451171875, -0.0184173583984375, -0.0665283203125, 0.0260467529296875, -0.01363372802734375, 0.0080108642578125, 0.0269622802734375, -0.0277862548828125, 0.054656982421875, 0.012939453125, -0.003925323486328125, -0.01398468017578125, 0.042236328125, -0.0197906494140625, 0.0190582275390625, 0.0134735107421875, -0.01885986328125, -0.0482177734375, -0.00887298583984375, 0.02105712890625, 0.0121612548828125, -0.031951904296875, 0.0067596435546875, -0.005519866943359375, 0.0252227783203125, 0.01629638671875, -0.003055572509765625, 0.042236328125, 0.00942230224609375, -0.0325927734375, -0.05731201171875, -0.0460205078125, -0.023529052734375, -0.06939697265625, -0.026641845703125, -0.0309906005859375, -0.0217742919921875, -0.0029811859130859375, 0.00925445556640625, -0.016998291015625, -0.00018775463104248047, -0.010162353515625, 0.028533935546875, 0.06298828125, -0.07098388671875, 0.01268768310546875, 0.050384521484375, 0.0157012939453125, -0.11090087890625, 0.0303497314453125, -0.0017728805541992188, -0.004230499267578125, -0.0139617919921875, 0.0015964508056640625, -0.0260467529296875, -0.007747650146484375, 0.051971435546875, -0.0024356842041015625, -0.006870269775390625, 0.027496337890625, 0.00560760498046875, -0.01593017578125, -0.036651611328125, 0.00785064697265625, 0.053741455078125, 0.01074981689453125, -0.0174713134765625, -0.036407470703125, -0.041748046875, -0.048095703125, 0.01290130615234375, -0.08929443359375, 0.0213623046875, 0.04541015625, 0.061065673828125, -0.0220489501953125, -0.01380157470703125, -0.0294342041015625, 0.03546142578125, -0.048858642578125, 0.0131378173828125, 0.04583740234375, -0.00824737548828125, 0.056671142578125, -0.017608642578125, -0.06256103515625, 0.01334381103515625, 0.0166015625, 0.018707275390625, 0.007694244384765625, -0.0305023193359375, -0.0118408203125, -0.0199432373046875, -0.024871826171875, -0.0188140869140625, -0.02679443359375, -0.04901123046875, -0.005550384521484375, 0.004886627197265625, 0.02392578125, -0.0011434555053710938, -0.00640869140625, 0.006450653076171875, 0.0025787353515625, -0.005893707275390625, 0.006137847900390625, 0.00988006591796875, 0.01052093505859375, -0.00004595518112182617, 0.0523681640625, 0.0030536651611328125, -0.0193023681640625, -0.018890380859375, -0.02178955078125, 0.01158905029296875, -0.0083465576171875, -0.007965087890625, -0.01541900634765625, -0.020263671875, -0.0269775390625, 0.029815673828125, 0.0006132125854492188, 0.007450103759765625, -0.007843017578125, 0.0034084320068359375, -0.00835418701171875, 0.033172607421875, -0.0183563232421875, -0.00891876220703125, 0.039825439453125, -0.033477783203125, 0.00787353515625, -0.0109710693359375, 0.03326416015625, -0.0072479248046875, -0.046417236328125, 0.00539398193359375, 0.0163726806640625, -0.00835418701171875, 0.01099395751953125, 0.0204010009765625, -0.004657745361328125, 0.039703369140625, -0.0015211105346679688, 0.02813720703125, 0.044097900390625, -0.03271484375, 0.0173797607421875, 0.01331329345703125, 0.00394439697265625, -0.033966064453125, 0.0118560791015625, 0.0036869049072265625, -0.015350341796875, 0.0256195068359375, 0.0264892578125, 0.03314208984375, -0.05316162109375, 0.0253753662109375, 0.0016298294067382812, -0.0130157470703125, 0.034698486328125, 0.0108642578125, -0.043609619140625, -0.0771484375, 0.030181884765625, -0.017364501953125, -0.014251708984375, 0.0023059844970703125, 0.0032901763916015625, -0.023681640625, -0.004329681396484375, -0.0029468536376953125, 0.025482177734375, -0.01424407958984375, 0.00386810302734375, 0.00893402099609375, -0.0101165771484375, 0.0242462158203125, -0.002773284912109375, -0.00176239013671875, -0.034393310546875, -0.0095977783203125, 0.01366424560546875, -0.03167724609375, -0.0275726318359375, -0.0311126708984375, 0.0288848876953125, 0.040008544921875, 0.0528564453125, 0.00988006591796875, -0.039764404296875, 0.03875732421875, 0.01502227783203125, 0.03485107421875, -0.0330810546875, -0.050567626953125, 0.038970947265625, 0.006839752197265625, -0.007770538330078125, 0.01456451416015625, 0.01296234130859375, -0.00514984130859375, 0.0220184326171875, 0.05633544921875, -0.0014209747314453125, -0.0312347412109375, 0.0455322265625, 0.01544189453125, -0.0264739990234375, 0.004608154296875, -0.00040268898010253906, -0.04998779296875, -0.01434326171875, 0.00749969482421875, -0.0178680419921875, 0.0256195068359375, 0.0204925537109375, -0.04962158203125, 0.12322998046875, 0.03460693359375, 0.010711669921875, 0.0087738037109375, 0.052093505859375, -0.060821533203125, 0.0199432373046875, 0.0078125, 0.005481719970703125, -0.039886474609375, -0.01549530029296875, 0.0164947509765625, 0.0147705078125, -0.0091400146484375, 0.0165252685546875, 0.0230255126953125, 0.0240936279296875, -0.09088134765625, 0.002849578857421875, 0.035064697265625, 0.0293426513671875, 0.0316162109375, 0.08660888671875, 0.01091766357421875, -0.01549530029296875, 0.02508544921875, 0.0258941650390625, 0.047027587890625, -0.00981903076171875, -0.0162353515625, 0.0423583984375, 0.02215576171875, 0.0203857421875, -0.0152435302734375, 0.052825927734375, -0.0143890380859375, -0.00879669189453125, 0.01091766357421875, 0.0246429443359375, 0.04156494140625, 0.0143280029296875, 0.016082763671875, 0.051422119140625, -0.01947021484375, 0.0159149169921875, 0.03155517578125, 0.0005865097045898438, 0.0206451416015625, 0.0219268798828125, 0.007450103759765625, 0.013397216796875, 0.0172882080078125, 0.02191162109375, 0.0252838134765625, -0.016815185546875, 0.052581787109375, 0.0064239501953125, 0.0229949951171875, -0.006763458251953125, 0.06793212890625, 0.0035648345947265625, 0.036163330078125, -0.06097412109375, -0.0157012939453125, -0.002826690673828125, -0.0265960693359375, 0.01287841796875, -0.04296875, -0.00852203369140625, -0.0184478759765625, -0.0269622802734375, -0.0540771484375, 0.02252197265625, 0.02569580078125, -0.00539398193359375, -0.00614166259765625, -0.0013875961303710938, -0.0213165283203125, 0.023834228515625, -0.019927978515625, 0.0307769775390625, 0.039794921875, 0.01113128662109375, -0.055023193359375, 0.048095703125, 0.005413055419921875, 0.0115509033203125, 0.01355743408203125, 0.0259246826171875, -0.005069732666015625, -0.0151824951171875, -0.023284912109375, -0.07012939453125, 0.00984954833984375, 0.04986572265625, -0.00836181640625, -0.008056640625, -0.0017061233520507812, 0.056060791015625, 0.01363372802734375, -0.00560760498046875, 0.0908203125, 0.01116180419921875, 0.034576416015625, -0.0295562744140625, 0.056488037109375, 0.026702880859375, -0.0014781951904296875, -0.024810791015625, 0.0165863037109375, 0.05615234375, -0.0003921985626220703, 0.044219970703125, 0.0022373199462890625, -0.0291290283203125, 0.03955078125, -0.0087127685546875, 0.0849609375, 0.0230255126953125, 0.0168609619140625, 0.012298583984375, -0.005466461181640625, 0.019012451171875, -0.02618408203125, -0.003383636474609375, -0.0253753662109375, 0.08453369140625, -0.0122222900390625, 0.0085296630859375, 0.0016193389892578125, -0.0255126953125, 0.0181427001953125, 0.029388427734375, 0.01377105712890625, 0.0197296142578125, -0.0255126953125, -0.0149688720703125, -0.0207366943359375, 0.02410888671875, 0.0498046875, 0.08831787109375, -0.0172119140625, 0.03228759765625, 0.00798797607421875, -0.00983428955078125, -0.01044464111328125, -0.01151275634765625, 0.0158843994140625, -0.01317596435546875, -0.0190582275390625, -0.0095062255859375, -0.03546142578125, 0.0038280487060546875, 0.022796630859375, -0.03173828125, 0.00218963623046875, -0.0152130126953125, 0.0094451904296875, 0.005352020263671875, -0.0029296875, -0.032196044921875, -0.07330322265625, -0.04571533203125, 0.01248931884765625, -0.0098419189453125, 0.026153564453125, -0.0088043212890625, -0.01430511474609375, 0.00501251220703125, -0.006450653076171875, -0.0187835693359375, 0.0406494140625, -0.041839599609375, 0.018798828125, -0.006862640380859375, 0.025970458984375, 0.01546478271484375, -0.0230712890625, 0.0163421630859375, 0.001445770263671875, 0.028472900390625, -0.00567626953125, 0.0081787109375, 0.0281219482421875, -0.00876617431640625, 0.00839996337890625, -0.0352783203125, -0.0133056640625, 0.01763916015625, 0.01189422607421875, -0.0027446746826171875, -0.052032470703125, -0.0249786376953125, -0.0460205078125, -0.0015811920166015625, 0.0222930908203125, -0.01409149169921875, -0.034027099609375, -0.01107025146484375, 0.0191802978515625, 0.0219573974609375, 0.022369384765625, -0.06097412109375, 0.03948974609375, -0.003955841064453125, 0.04217529296875, 0.004955291748046875, -0.03228759765625, -0.0157928466796875, -0.01064300537109375, -0.01324462890625, -0.06414794921875, -0.04217529296875, 0.064208984375, -0.0465087890625, 0.013519287109375, 0.014739990234375, -0.0024738311767578125, 0.0198211669921875, 0.0105743408203125, 0.01236724853515625, 0.07049560546875, -0.0026397705078125, -0.0009012222290039062, 0.046051025390625, -0.0457763671875, -0.038238525390625, -0.053497314453125, 0.0296173095703125, -0.09521484375, -0.037994384765625, -0.01277923583984375, -0.0034122467041015625, 0.004276275634765625, -0.042694091796875, -0.08197021484375, 0.038543701171875, -0.0198211669921875, -0.043670654296875, -0.0260467529296875, -0.012603759765625, 0.00867462158203125, 0.0283050537109375, -0.0103302001953125, 0.0011425018310546875, -0.040008544921875, 0.01271820068359375, 0.00022113323211669922, 0.0684814453125, -0.03436279296875, 0.0345458984375, 0.01482391357421875, 0.053985595703125, 0.038055419921875, -0.0164642333984375, -0.02130126953125, 0.005397796630859375, 0.001567840576171875, 0.022064208984375, -0.025543212890625, -0.005390167236328125, 0.00806427001953125, -0.003803253173828125, 0.0168914794921875, 0.01457977294921875, -0.07086181640625, -0.01407623291015625, 0.06378173828125, 0.07525634765625, 0.038360595703125, -0.02459716796875, -0.0218353271484375, -0.00925445556640625, -0.008209228515625, -0.017791748046875, 0.01715087890625, -0.0731201171875, -0.0125579833984375, -0.007152557373046875, -0.0065155029296875, -0.00707244873046875, 0.01561737060546875, -0.01971435546875, -0.003154754638671875, 0.0236358642578125, -0.0027294158935546875, -0.025787353515625, 0.0190582275390625, 0.031097412109375, -0.0068359375, 0.061553955078125, -0.006439208984375, -0.0163116455078125, 0.06829833984375, 0.089599609375, 0.04498291015625, 0.0160064697265625, -0.035980224609375, 0.0287628173828125, 0.01264190673828125, 0.0081329345703125, -0.03936767578125, -0.055419921875, -0.0308837890625, 0.022613525390625, 0.0251922607421875, 0.025299072265625, -0.026153564453125, 0.023895263671875, 0.031463623046875, 0.024993896484375, -0.0017290115356445312, 0.0025959014892578125, -0.0168304443359375, 0.02337646484375, -0.040069580078125, -0.0033321380615234375, -0.01511383056640625, -0.023162841796875, 0.02459716796875, -0.002994537353515625, 0.031402587890625, -0.005794525146484375, 0.0301971435546875, -0.03765869140625, -0.01415252685546875, 0.004734039306640625 ]
8f1423645e212623b52572622f4e4991efdfd81b
Wordpress Stackexchange Q: What tools respect `.distignore`? You can create a plugin using the wp scaffold plugin PLUGINNAME command. It creates a bunch of files, including .distignore, .editorconfig, .gitignore, .travis.yml. Here is the contents of .distignore: # A set of files you probably don't want in your WordPress.org distribution .distignore .editorconfig .git .gitignore .gitlab-ci.yml .travis.yml .DS_Store Thumbs.db behat.yml bin circle.yml composer.json composer.lock Gruntfile.js package.json package-lock.json phpunit.xml phpunit.xml.dist multisite.xml multisite.xml.dist phpcs.xml phpcs.xml.dist README.md wp-cli.local.yml yarn.lock tests vendor node_modules *.sql *.tar.gz *.zip My question is: what tools recognise .distignore? Are they just wp-cli commands that recognise it? Do some online hosts like WP Engine recognise it? A: This is file for WP CLI. the command dist-archive: wp dist-archive . Note that you need to install both WP CLI and this plugin: wp package install wp-cli/dist-archive-command
Q: What tools respect `.distignore`? You can create a plugin using the wp scaffold plugin PLUGINNAME command. It creates a bunch of files, including .distignore, .editorconfig, .gitignore, .travis.yml. Here is the contents of .distignore: # A set of files you probably don't want in your WordPress.org distribution .distignore .editorconfig .git .gitignore .gitlab-ci.yml .travis.yml .DS_Store Thumbs.db behat.yml bin circle.yml composer.json composer.lock Gruntfile.js package.json package-lock.json phpunit.xml phpunit.xml.dist multisite.xml multisite.xml.dist phpcs.xml phpcs.xml.dist README.md wp-cli.local.yml yarn.lock tests vendor node_modules *.sql *.tar.gz *.zip My question is: what tools recognise .distignore? Are they just wp-cli commands that recognise it? Do some online hosts like WP Engine recognise it? A: This is file for WP CLI. the command dist-archive: wp dist-archive . Note that you need to install both WP CLI and this plugin: wp package install wp-cli/dist-archive-command
wordpress
{ "language": "en", "length": 131, "provenance": "stackexchange_00019.jsonl.gz:482765", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/290025" }
[ -0.0015707015991210938, -0.007045745849609375, -0.041259765625, -0.06182861328125, -0.027801513671875, -0.0076904296875, -0.03448486328125, 0.0287933349609375, -0.0033969879150390625, 0.00754547119140625, 0.00601959228515625, -0.036407470703125, 0.01300048828125, -0.040496826171875, 0.009979248046875, -0.03436279296875, 0.054229736328125, -0.045196533203125, 0.0304718017578125, 0.00736236572265625, 0.00997161865234375, 0.040771484375, 0.02618408203125, 0.0699462890625, 0.0018682479858398438, -0.004150390625, 0.10394287109375, -0.02337646484375, 0.023345947265625, -0.0014657974243164062, 0.0199737548828125, -0.040496826171875, 0.051483154296875, -0.0159149169921875, -0.039154052734375, 0.0165557861328125, 0.00878143310546875, -0.005390167236328125, -0.0023403167724609375, 0.0003235340118408203, 0.0113983154296875, -0.0038700103759765625, 0.06170654296875, 0.0030918121337890625, 0.01155853271484375, -0.0034847259521484375, 0.007549285888671875, -0.0274200439453125, 0.0386962890625, -0.015472412109375, -0.04339599609375, 0.053466796875, -0.023040771484375, -0.0504150390625, 0.0024566650390625, 0.00855255126953125, -0.0487060546875, 0.049072265625, -0.006099700927734375, 0.01178741455078125, 0.006717681884765625, 0.032440185546875, 0.007495880126953125, 0.045196533203125, -0.007259368896484375, -0.0172882080078125, -0.00933837890625, 0.0137176513671875, -0.049652099609375, 0.0125579833984375, 0.053955078125, -0.021881103515625, 0.01143646240234375, -0.0572509765625, 0.0087890625, 0.01552581787109375, 0.0203704833984375, -0.0208282470703125, -0.0295562744140625, -0.0027523040771484375, 0.0283203125, -0.02978515625, 0.0021419525146484375, 0.002655029296875, -0.00040221214294433594, 0.0229339599609375, 0.00736236572265625, -0.021759033203125, -0.0264739990234375, 0.0223236083984375, -0.005950927734375, -0.031494140625, -0.003749847412109375, 0.0303192138671875, 0.00305938720703125, -0.0157470703125, -0.01751708984375, 0.005649566650390625, -0.012969970703125, 0.01398468017578125, 0.03564453125, -0.040863037109375, 0.0193939208984375, -0.0222625732421875, -0.0022335052490234375, 0.060394287109375, -0.004123687744140625, -0.01346588134765625, 0.011993408203125, 0.01172637939453125, 0.00852203369140625, -0.01342010498046875, -0.006011962890625, -0.07110595703125, 0.0225830078125, 0.0304718017578125, -0.00746917724609375, 0.04168701171875, 0.040252685546875, 0.0235443115234375, 0.0004897117614746094, -0.0022296905517578125, 0.0406494140625, -0.0295257568359375, 0.0016298294067382812, -0.01114654541015625, -0.040618896484375, -0.04058837890625, -0.054901123046875, 0.0012187957763671875, 0.008575439453125, 0.02447509765625, 0.0017538070678710938, 0.0272369384765625, -0.0186004638671875, 0.004119873046875, 0.007335662841796875, 0.01277923583984375, -0.0263519287109375, -0.01197052001953125, 0.0187835693359375, 0.018524169921875, 0.0029926300048828125, -0.013153076171875, 0.0164794921875, 0.0001729726791381836, 0.024017333984375, 0.0195770263671875, -0.018585205078125, -0.01513671875, 0.003307342529296875, 0.0292510986328125, 0.0277862548828125, -0.0283966064453125, 0.03228759765625, -0.06365966796875, 0.01280975341796875, -0.038970947265625, 0.028594970703125, -0.0188751220703125, -0.02978515625, -0.01428985595703125, 0.015472412109375, -0.031768798828125, -0.010955810546875, 0.01251220703125, 0.00807952880859375, 0.019256591796875, 0.0010995864868164062, -0.0288238525390625, -0.022979736328125, -0.01020050048828125, 0.0095672607421875, -0.0253753662109375, -0.0001512765884399414, 0.029296875, 0.00034880638122558594, -0.05072021484375, 0.06402587890625, 0.0292816162109375, 0.00426483154296875, 0.01499176025390625, 0.057586669921875, 0.01230621337890625, -0.047515869140625, -0.054595947265625, 0.026824951171875, 0.020599365234375, 0.0377197265625, 0.0223388671875, 0.06878662109375, -0.03936767578125, -0.022796630859375, -0.0134735107421875, -0.024200439453125, -0.00971221923828125, 0.01490020751953125, 0.032012939453125, -0.006206512451171875, -0.006622314453125, -0.0277862548828125, -0.0011625289916992188, 0.01265716552734375, -0.0179443359375, -0.08734130859375, 0.0193328857421875, -0.05084228515625, 0.06512451171875, -0.0285797119140625, 0.013214111328125, 0.01541900634765625, -0.041961669921875, 0.017913818359375, -0.031097412109375, -0.005096435546875, -0.025054931640625, -0.0279998779296875, 0.020843505859375, -0.03607177734375, 0.0232391357421875, -0.030029296875, 0.0102691650390625, -0.00812530517578125, 0.03466796875, 0.000048995018005371094, 0.0014324188232421875, -0.007350921630859375, 0.00824737548828125, -0.0125274658203125, 0.0193328857421875, 0.007720947265625, 0.0096893310546875, 0.0105743408203125, 0.0269317626953125, -0.0249786376953125, -0.023895263671875, -0.005992889404296875, -0.037567138671875, 0.034088134765625, 0.037353515625, 0.0253143310546875, 0.033050537109375, -0.0298309326171875, -0.00215911865234375, 0.06634521484375, 0.0224609375, 0.0291748046875, -0.0224609375, -0.0021228790283203125, 0.06121826171875, -0.05755615234375, 0.04180908203125, -0.0027790069580078125, 0.005588531494140625, -0.023193359375, 0.051849365234375, -0.0009303092956542969, -0.027069091796875, -0.00989532470703125, -0.0018434524536132812, 0.0287933349609375, -0.01558685302734375, -0.04302978515625, 0.00717926025390625, 0.029632568359375, -0.03350830078125, 0.0189208984375, 0.0004916191101074219, 0.0088348388671875, -0.003665924072265625, 0.01491546630859375, -0.0321044921875, 0.004161834716796875, 0.057037353515625, 0.019622802734375, 0.0267181396484375, -0.054351806640625, -0.01519012451171875, 0.0199737548828125, 0.03363037109375, 0.0005297660827636719, -0.0129547119140625, 0.0210723876953125, 0.0009765625, 0.0139007568359375, -0.053253173828125, 0.045562744140625, 0.032745361328125, -0.01605224609375, -0.0164031982421875, 0.0022945404052734375, 0.03662109375, 0.001155853271484375, 0.0022525787353515625, 0.03802490234375, -0.01462554931640625, 0.01532745361328125, -0.03564453125, 0.01007080078125, -0.01534271240234375, 0.06341552734375, 0.06488037109375, 0.00022912025451660156, 0.0110321044921875, 0.01184844970703125, -0.01042938232421875, 0.0418701171875, 0.01399993896484375, -0.00551605224609375, -0.025390625, -0.016632080078125, -0.0086212158203125, 0.00884246826171875, 0.00820159912109375, -0.0184783935546875, -0.039947509765625, -0.0223846435546875, 0.01448822021484375, -0.078857421875, -0.07525634765625, 0.002155303955078125, -0.07171630859375, 0.04803466796875, 0.018798828125, -0.043670654296875, -0.0187530517578125, 0.07757568359375, 0.0291290283203125, -0.0228424072265625, -0.00919342041015625, -0.0019931793212890625, -0.08734130859375, -0.05987548828125, -0.054290771484375, 0.0084381103515625, 0.01904296875, 0.0119476318359375, 0.0165557861328125, 0.02227783203125, 0.005077362060546875, 0.040252685546875, 0.01971435546875, -0.0048370361328125, -0.000171661376953125, -0.042755126953125, -0.01142120361328125, 0.0101165771484375, -0.0118255615234375, 0.01806640625, 0.0120086669921875, 0.0120697021484375, 0.0214385986328125, 0.0220184326171875, -0.03619384765625, 0.002666473388671875, 0.004039764404296875, -0.0151214599609375, -0.022796630859375, 0.005817413330078125, -0.0670166015625, 0.0333251953125, -0.017852783203125, -0.006900787353515625, 0.038665771484375, 0.00536346435546875, -0.027557373046875, 0.0030193328857421875, -0.00951385498046875, 0.0271759033203125, 0.01506805419921875, 0.043304443359375, -0.00885009765625, 0.0282135009765625, -0.0090484619140625, -0.007144927978515625, -0.050445556640625, 0.05096435546875, -0.0080718994140625, -0.036376953125, 0.02215576171875, -0.00536346435546875, 0.01425933837890625, -0.0219268798828125, 0.0070953369140625, -0.005847930908203125, 0.0294342041015625, 0.0240325927734375, 0.038848876953125, 0.01335906982421875, -0.0183868408203125, 0.0093841552734375, 0.04229736328125, -0.0467529296875, -0.008453369140625, 0.01348114013671875, -0.0032176971435546875, 0.0150299072265625, 0.00849151611328125, -0.0343017578125, -0.0150909423828125, -0.076416015625, 0.01322174072265625, -0.0036373138427734375, -0.0304412841796875, 0.030548095703125, -0.060791015625, -0.01201629638671875, -0.06097412109375, 0.01238250732421875, -0.021636962890625, 0.03350830078125, -0.003208160400390625, 0.039276123046875, -0.01898193359375, -0.00011682510375976562, -0.03753662109375, -0.10791015625, -0.01605224609375, -0.07049560546875, 0.083984375, 0.010711669921875, 0.044921875, -0.01026153564453125, 0.05657958984375, -0.0091705322265625, 0.03857421875, -0.0038051605224609375, 0.012603759765625, 0.004627227783203125, -0.0177154541015625, 0.017486572265625, -0.0095977783203125, -0.00540924072265625, -0.01050567626953125, -0.0174102783203125, 0.0005731582641601562, -0.001178741455078125, 0.0051727294921875, 0.0173797607421875, -0.0338134765625, -0.03521728515625, -0.03662109375, -0.046142578125, -0.00772857666015625, -0.03790283203125, -0.01280975341796875, -0.042327880859375, -0.0281982421875, 0.06488037109375, -0.009429931640625, 0.021453857421875, 0.004276275634765625, 0.0767822265625, -0.0006670951843261719, -0.0176849365234375, -0.048736572265625, 0.038482666015625, 0.017822265625, -0.00952911376953125, 0.043121337890625, 0.03338623046875, -0.0011577606201171875, 0.0029163360595703125, -0.012786865234375, -0.0014009475708007812, -0.0123291015625, -0.0262451171875, 0.015167236328125, -0.025482177734375, 0.01035308837890625, 0.021942138671875, 0.044647216796875, 0.005001068115234375, -0.0035800933837890625, 0.0171051025390625, 0.031524658203125, -0.0012760162353515625, -0.0192718505859375, -0.0186767578125, -0.0130767822265625, -0.01470947265625, 0.01229095458984375, -0.0491943359375, 0.052825927734375, 0.0230560302734375, -0.0150604248046875, 0.026397705078125, 0.0014095306396484375, -0.0159759521484375, -0.005527496337890625, 0.0007929801940917969, 0.01263427734375, 0.001819610595703125, 0.030792236328125, -0.0117340087890625, -0.0288238525390625, -0.035186767578125, 0.097412109375, 0.004817962646484375, -0.025543212890625, 0.00250244140625, -0.029205322265625, 0.038116455078125, 0.0234527587890625, -0.0233306884765625, 0.049560546875, 0.0282745361328125, -0.068603515625, -0.0243072509765625, -0.043243408203125, -0.018402099609375, -0.102294921875, -0.0416259765625, -0.031982421875, -0.0124053955078125, -0.0046234130859375, -0.0089874267578125, -0.02447509765625, -0.0210723876953125, -0.0020389556884765625, 0.003875732421875, 0.025421142578125, 0.0269927978515625, 0.03228759765625, -0.052398681640625, 0.01061248779296875, -0.0138397216796875, 0.0258941650390625, -0.01139068603515625, 0.0140838623046875, 0.034698486328125, 0.013031005859375, -0.0260009765625, -0.04425048828125, 0.0179901123046875, -0.0221099853515625, 0.0187225341796875, -0.0105438232421875, -0.01050567626953125, 0.00838470458984375, 0.0037822723388671875, -0.0154876708984375, 0.023223876953125, -0.005001068115234375, -0.0079193115234375, -0.005962371826171875, -0.01471710205078125, -0.0305938720703125, 0.0313720703125, -0.0970458984375, 0.0170440673828125, 0.053070068359375, 0.0195159912109375, -0.01934814453125, -0.056915283203125, -0.003612518310546875, -0.00923919677734375, -0.0035076141357421875, 0.007045745849609375, 0.003337860107421875, -0.037139892578125, -0.00722503662109375, -0.00727081298828125, 0.019134521484375, -0.02410888671875, 0.0274658203125, 0.041900634765625, 0.01497650146484375, -0.02197265625, -0.01788330078125, -0.028228759765625, -0.0290069580078125, 0.0133514404296875, 0.0267791748046875, -0.05181884765625, 0.030487060546875, 0.0233612060546875, 0.006191253662109375, 0.0254058837890625, 0.033416748046875, 0.0006971359252929688, 0.0171051025390625, -0.005542755126953125, 0.0311737060546875, -0.00879669189453125, 0.0228729248046875, -0.011810302734375, 0.035400390625, -0.0062713623046875, -0.002838134765625, -0.02215576171875, -0.007480621337890625, -0.0005831718444824219, 0.00333404541015625, 0.00782012939453125, -0.0178070068359375, 0.036834716796875, 0.00618743896484375, 0.0439453125, 0.01100921630859375, -0.00667572021484375, 0.0175323486328125, -0.002483367919921875, -0.0260009765625, 0.0419921875, 0.0244598388671875, 0.0274658203125, -0.002193450927734375, -0.049591064453125, 0.0299072265625, -0.0019502639770507812, 0.0022411346435546875, 0.0138092041015625, -0.0416259765625, 0.02056884765625, 0.056793212890625, -0.043731689453125, 0.07464599609375, 0.0699462890625, -0.025146484375, 0.0233917236328125, 0.03411865234375, -0.0160980224609375, -0.00571441650390625, -0.0113677978515625, -0.0067901611328125, 0.035125732421875, 0.0562744140625, -0.0154266357421875, -0.042572021484375, 0.02294921875, -0.04681396484375, 0.00926971435546875, 0.01271820068359375, 0.0288848876953125, -0.01187896728515625, -0.01611328125, -0.003025054931640625, -0.06195068359375, 0.00676727294921875, 0.01238250732421875, -0.00592803955078125, -0.01513671875, 0.0032062530517578125, 0.031768798828125, -0.0121307373046875, 0.0154266357421875, 0.04888916015625, -0.029876708984375, -0.0159912109375, -0.017120361328125, 0.01125335693359375, -0.0311279296875, 0.044219970703125, 0.0213775634765625, 0.0254974365234375, -0.001995086669921875, -0.0193328857421875, -0.018035888671875, -0.042633056640625, -0.0311431884765625, -0.00848388671875, -0.0260162353515625, -0.0130615234375, 0.0242462158203125, -0.01006317138671875, 0.053009033203125, 0.0238189697265625, -0.003749847412109375, -0.03265380859375, 0.0184783935546875, -0.0523681640625, -0.0204620361328125, -0.041351318359375, 0.0286865234375, 0.00899505615234375, -0.039794921875, 0.019073486328125, -0.0143280029296875, -0.038604736328125, 0.006557464599609375, 0.083251953125, 0.0850830078125, -0.02496337890625, -0.03753662109375, 0.04974365234375, -0.014007568359375, -0.0269012451171875, 0.0004458427429199219, 0.05560302734375, -0.06787109375, -0.041229248046875, 0.045928955078125, -0.0093231201171875, -0.00597381591796875, 0.0289306640625, -0.03216552734375, 0.05718994140625, 0.00640106201171875, -0.03216552734375, 0.00031304359436035156, 0.0426025390625, -0.043487548828125, 0.01062774658203125, 0.0029048919677734375, 0.0233001708984375, -0.003536224365234375, 0.05267333984375, -0.0012254714965820312, -0.015380859375, 0.053924560546875, 0.059326171875, -0.0098876953125, 0.003734588623046875, -0.0189666748046875, -0.038970947265625, -0.013458251953125, -0.0194549560546875, -0.0107879638671875, 0.058135986328125, -0.01247406005859375, -0.01531982421875, 0.0234222412109375, -0.0234222412109375, 0.0213470458984375, -0.021087646484375, 0.00848388671875, 0.020050048828125, 0.0039215087890625, 0.00054168701171875, -0.033782958984375, 0.062042236328125, -0.0292816162109375, -0.0190277099609375, 0.00337982177734375, 0.01192474365234375, -0.01007080078125, 0.005458831787109375, -0.0259857177734375, 0.0360107421875, -0.0024471282958984375, -0.012176513671875, 0.01080322265625, 0.0077972412109375, 0.018646240234375, 0.040283203125, 0.038543701171875, 0.0031223297119140625, -0.005207061767578125, 0.01479339599609375, 0.016326904296875, -0.0279388427734375, 0.0028171539306640625, 0.01216888427734375, 0.037994384765625, 0.025909423828125, 0.0560302734375, 0.030731201171875, -0.004306793212890625, -0.0153656005859375, -0.036163330078125, 0.007297515869140625, 0.006504058837890625, 0.0007815361022949219, -0.0185089111328125, -0.01727294921875, -0.0111541748046875, 0.0290374755859375, -0.02056884765625, -0.00347900390625, 0.016357421875, -0.0192413330078125, 0.00405120849609375, 0.01343536376953125, 0.0272064208984375, 0.004955291748046875, 0.025634765625, -0.016510009765625, 0.0018606185913085938, 0.0335693359375, -0.00392913818359375, 0.03082275390625, -0.061859130859375, 0.005115509033203125, -0.006542205810546875, 0.0128936767578125, 0.031097412109375, 0.01511383056640625, -0.007488250732421875, -0.00609588623046875, 0.048553466796875, 0.0281219482421875, -0.00707244873046875, 0.04913330078125, 0.053558349609375, 0.050628662109375, -0.0188140869140625, -0.0092926025390625, 0.06842041015625, -0.02325439453125, 0.008331298828125, -0.0019817352294921875, 0.033721923828125, 0.0006151199340820312, -0.0176849365234375, -0.01318359375, 0.06646728515625, -0.015655517578125, -0.0560302734375, 0.053131103515625, -0.01169586181640625, -0.023834228515625, 0.0116424560546875, -0.033477783203125, 0.031219482421875, -0.02362060546875, -0.019287109375, -0.0277252197265625, 0.022186279296875, 0.0206298828125, -0.01467132568359375, 0.019989013671875, -0.0093841552734375, 0.039031982421875, 0.0280303955078125, -0.0278778076171875, -0.0161285400390625, 0.047027587890625, 0.0018873214721679688, 0.0169830322265625, 0.03271484375, 0.0134124755859375, 0.01514434814453125, -0.0006723403930664062, -0.045745849609375, 0.049560546875, 0.041412353515625, 0.0806884765625, -0.051177978515625, 0.061279296875, -0.0254364013671875, -0.0006346702575683594, -0.033050537109375, -0.0224151611328125, 0.02093505859375, -0.006500244140625, -0.01099395751953125, -0.0003364086151123047, 0.004734039306640625, -0.0296630859375, 0.048553466796875, -0.059539794921875, -0.0274810791015625, -0.01198577880859375, 0.02655029296875, -0.021331787109375, 0.0290069580078125, -0.03179931640625, -0.06939697265625, -0.022216796875, 0.0218658447265625, -0.0203857421875, 0.02325439453125, 0.012939453125, -0.007328033447265625, 0.00875091552734375, -0.0447998046875, 0.0112152099609375, -0.0011720657348632812, -0.0015707015991210938, 0.00525665283203125, 0.041015625, -0.005584716796875, -0.045196533203125, -0.02960205078125, 0.0024089813232421875, -0.01104736328125, 0.024658203125, -0.0479736328125, 0.048980712890625, -0.04400634765625, -0.01221466064453125, 0.0026416778564453125, -0.0270538330078125, -0.0030651092529296875, -0.0222625732421875, -0.0189666748046875, 0.01541900634765625, -0.0467529296875, -0.00655364990234375, -0.07489013671875, -0.01151275634765625, 0.0162811279296875, -0.064208984375, -0.0207672119140625, -0.026123046875, 0.0272369384765625, 0.0182342529296875, -0.01155853271484375, -0.0038280487060546875, 0.0219268798828125, -0.049652099609375, 0.01464080810546875, 0.01026153564453125, 0.0301666259765625, -0.07122802734375, -0.077880859375, -0.0151824951171875, -0.0770263671875, -0.051605224609375, 0.11566162109375, -0.0181732177734375, -0.000027179718017578125, 0.00522613525390625, -0.004276275634765625, -0.026519775390625, 0.007297515869140625, 0.0009527206420898438, 0.06689453125, 0.0192108154296875, -0.004718780517578125, 0.0033435821533203125, 0.006633758544921875, -0.0209503173828125, -0.09063720703125, 0.006931304931640625, -0.0911865234375, -0.011138916015625, -0.0391845703125, 0.001434326171875, 0.007965087890625, -0.060516357421875, -0.10504150390625, 0.052276611328125, -0.021942138671875, -0.0347900390625, -0.019561767578125, -0.060211181640625, -0.005504608154296875, 0.029632568359375, -0.007389068603515625, -0.01337432861328125, -0.08184814453125, 0.032958984375, -0.019805908203125, 0.0010938644409179688, -0.000047326087951660156, -0.0228118896484375, 0.0118865966796875, 0.01861572265625, 0.04205322265625, -0.027923583984375, 0.0092315673828125, -0.006927490234375, 0.0251922607421875, 0.058990478515625, -0.01203155517578125, 0.022857666015625, -0.00873565673828125, -0.061004638671875, 0.016845703125, 0.0085906982421875, -0.0121612548828125, 0.0058135986328125, 0.01316070556640625, 0.033416748046875, 0.016204833984375, -0.0240936279296875, 0.02032470703125, -0.00374603271484375, 0.019775390625, -0.0184326171875, 0.015167236328125, -0.0762939453125, -0.058624267578125, 0.01806640625, 0.00537872314453125, 0.0072021484375, -0.00203704833984375, -0.0026454925537109375, -0.0258941650390625, 0.0121002197265625, -0.0219879150390625, -0.00894927978515625, -0.0255584716796875, 0.066162109375, -0.023956298828125, 0.04876708984375, -0.01326751708984375, 0.0224151611328125, 0.07220458984375, 0.0144805908203125, -0.05816650390625, -0.0015201568603515625, -0.032989501953125, 0.003368377685546875, -0.0280609130859375, 0.059783935546875, -0.00945281982421875, 0.030181884765625, 0.00038313865661621094, -0.0212860107421875, -0.02044677734375, -0.016448974609375, 0.0287628173828125, -0.003505706787109375, -0.0247955322265625, 0.09600830078125, -0.01389312744140625, -0.04156494140625, -0.051910400390625, 0.050445556640625, -0.0640869140625, -0.005672454833984375, -0.01580810546875, -0.0174713134765625, 0.003009796142578125, -0.01181793212890625, -0.025604248046875, -0.08026123046875, 0.06854248046875, 0.0391845703125, -0.00537872314453125, 0.040771484375 ]
d86fa2e21291482a751761f5f00dd844493005e9
Wordpress Stackexchange Q: prevent/block direct access to a thank you page how to prevent/block direct access to a thank you page, only access if redirected from submiiting a form (in a different page)? A: If the form is redirecting from one page only, you can easily use wp_get_referer() to check for it and if not, redirect. add_action('template_redirect', function() { // ID of the thank you page if (!is_page(12345)) { return; } // coming from the form, so all is fine if (wp_get_referer() === 'URL_OF_FORM') { return; } // we are on thank you page // visitor is not coming from form // so redirect to home wp_redirect(get_home_url()); exit; } );
Q: prevent/block direct access to a thank you page how to prevent/block direct access to a thank you page, only access if redirected from submiiting a form (in a different page)? A: If the form is redirecting from one page only, you can easily use wp_get_referer() to check for it and if not, redirect. add_action('template_redirect', function() { // ID of the thank you page if (!is_page(12345)) { return; } // coming from the form, so all is fine if (wp_get_referer() === 'URL_OF_FORM') { return; } // we are on thank you page // visitor is not coming from form // so redirect to home wp_redirect(get_home_url()); exit; } ); A: Don't know why the above code don't work for me. However the below code worked perfectly. <?php function thank_you_rd(){ if ( ! is_page('thank-you')) { return; } if (wp_get_referer() == '/contact-us/') { return; } wp_redirect( get_home_url() ); } add_action('template_redirect', 'thank_you_rd'); ?>
wordpress
{ "language": "en", "length": 149, "provenance": "stackexchange_00019.jsonl.gz:482834", "question_score": "4", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/290234" }
[ 0.090576171875, 0.0151519775390625, 0.01415252685546875, -0.07720947265625, 0.0294647216796875, -0.0185089111328125, 0.021392822265625, -0.0341796875, 0.02978515625, -0.00420379638671875, 0.006191253662109375, -0.04608154296875, 0.001537322998046875, -0.0479736328125, 0.0205535888671875, -0.0250091552734375, 0.017578125, -0.00420379638671875, 0.0364990234375, -0.03350830078125, 0.04766845703125, -0.039947509765625, 0.044464111328125, 0.043182373046875, 0.01288604736328125, -0.047271728515625, 0.0836181640625, -0.01800537109375, 0.003925323486328125, -0.0165252685546875, 0.023712158203125, -0.0107421875, 0.034210205078125, 0.0216522216796875, -0.0643310546875, -0.00251007080078125, -0.026885986328125, 0.0191497802734375, -0.01448822021484375, 0.005672454833984375, 0.03472900390625, -0.03466796875, -0.05865478515625, 0.01451873779296875, -0.046112060546875, -0.056243896484375, 0.04876708984375, 0.01544189453125, 0.00798797607421875, 0.050750732421875, -0.00007474422454833984, -0.00601959228515625, -0.0106658935546875, 0.045684814453125, -0.017791748046875, -0.01165771484375, -0.005458831787109375, 0.0177764892578125, 0.028533935546875, 0.033416748046875, -0.0140228271484375, 0.00445556640625, -0.010345458984375, -0.04608154296875, 0.01385498046875, 0.01540374755859375, -0.03350830078125, 0.01328277587890625, -0.012664794921875, 0.02301025390625, 0.00884246826171875, -0.055938720703125, -0.020172119140625, -0.0166015625, -0.00372314453125, 0.007770538330078125, 0.0006537437438964844, 0.003185272216796875, -0.002864837646484375, 0.030242919921875, -0.05987548828125, -0.01641845703125, -0.037261962890625, -0.034942626953125, -0.0028934478759765625, 0.00617218017578125, -0.034912109375, 0.0092010498046875, -0.0298919677734375, -0.0174560546875, -0.033843994140625, -0.005710601806640625, -0.015106201171875, -0.0008258819580078125, -0.040008544921875, 0.0007677078247070312, 0.042144775390625, 0.07720947265625, -0.02099609375, -0.0129852294921875, -0.04205322265625, -0.0111236572265625, -0.045196533203125, -0.0136566162109375, -0.00905609130859375, 0.062469482421875, 0.008270263671875, 0.02703857421875, 0.01247406005859375, 0.0157318115234375, 0.009063720703125, -0.038330078125, -0.0172882080078125, -0.0006818771362304688, -0.0211181640625, 0.0251922607421875, -0.0217437744140625, -0.006465911865234375, -0.00634765625, 0.03338623046875, -0.035003662109375, -0.006801605224609375, 0.05218505859375, -0.050445556640625, 0.01413726806640625, -0.0009164810180664062, -0.0115203857421875, -0.048095703125, 0.07080078125, 0.00811004638671875, -0.0478515625, -0.0201873779296875, 0.059295654296875, 0.0217132568359375, 0.042724609375, -0.032135009765625, 0.0034160614013671875, -0.01039886474609375, -0.005420684814453125, 0.0036773681640625, -0.02642822265625, -0.0232696533203125, 0.03521728515625, -0.020965576171875, 0.0008087158203125, -0.004772186279296875, -0.006977081298828125, 0.037994384765625, 0.0127410888671875, -0.0224609375, 0.0274658203125, -0.039947509765625, 0.0284271240234375, -0.0051422119140625, -0.0053558349609375, -0.0265960693359375, 0.00820159912109375, 0.0006012916564941406, -0.0183258056640625, -0.01198577880859375, 0.0147247314453125, 0.0296783447265625, 0.03619384765625, -0.04833984375, -0.060028076171875, -0.07806396484375, -0.056549072265625, -0.0273284912109375, 0.026214599609375, 0.04119873046875, 0.028167724609375, -0.01416778564453125, -0.032867431640625, 0.0107879638671875, -0.0079498291015625, -0.0025844573974609375, -0.01629638671875, 0.01528167724609375, 0.026397705078125, 0.017608642578125, -0.00673675537109375, -0.02606201171875, 0.051727294921875, 0.0026397705078125, -0.037567138671875, 0.0703125, 0.01053619384765625, 0.0556640625, -0.0307159423828125, 0.01123046875, 0.0261077880859375, 0.05621337890625, -0.02130126953125, 0.0223846435546875, -0.01959228515625, -0.046539306640625, 0.010955810546875, -0.0158538818359375, -0.01345062255859375, 0.04425048828125, 0.0194244384765625, -0.01067352294921875, -0.0022945404052734375, -0.023895263671875, -0.02313232421875, -0.0296478271484375, -0.00009632110595703125, 0.0169219970703125, -0.045440673828125, 0.0294647216796875, 0.0279998779296875, -0.00522613525390625, -0.0179901123046875, -0.0010433197021484375, 0.00812530517578125, -0.0151214599609375, -0.027435302734375, 0.038055419921875, 0.00498199462890625, 0.000606536865234375, 0.007022857666015625, -0.0550537109375, 0.0235443115234375, -0.00959014892578125, 0.016204833984375, 0.01824951171875, -0.0291290283203125, -0.00186920166015625, -0.03289794921875, 0.0172271728515625, -0.06622314453125, 0.03314208984375, 0.04290771484375, 0.041595458984375, -0.015167236328125, 0.0107879638671875, -0.01471710205078125, -0.059356689453125, -0.007694244384765625, 0.039794921875, 0.022705078125, 0.0115966796875, -0.0150604248046875, 0.05755615234375, -0.026153564453125, -0.12939453125, -0.03204345703125, 0.054718017578125, 0.005512237548828125, 0.030609130859375, -0.014923095703125, 0.00936126708984375, 0.0234527587890625, -0.06951904296875, 0.006805419921875, 0.0633544921875, -0.002838134765625, -0.0114898681640625, -0.0286102294921875, 0.0035076141357421875, 0.01346588134765625, -0.03997802734375, -0.033050537109375, 0.0014362335205078125, -0.037841796875, -0.01114654541015625, 0.01218414306640625, 0.00531005859375, 0.00689697265625, -0.04559326171875, 0.0186767578125, 0.004688262939453125, -0.00838470458984375, -0.0097198486328125, 0.053466796875, -0.0275726318359375, -0.047882080078125, 0.003200531005859375, 0.03900146484375, -0.001979827880859375, -0.0265045166015625, 0.01812744140625, -0.0188751220703125, -0.016265869140625, 0.0162200927734375, -0.0233917236328125, 0.01885986328125, -0.0179595947265625, 0.041717529296875, 0.039093017578125, 0.0328369140625, 0.0268402099609375, 0.01171875, 0.02764892578125, 0.028533935546875, -0.01245880126953125, 0.01342010498046875, -0.017608642578125, 0.0279693603515625, -0.03704833984375, 0.0085601806640625, 0.043212890625, -0.0202484130859375, 0.0055389404296875, -0.007678985595703125, 0.01023101806640625, -0.00933837890625, -0.0029125213623046875, 0.0005927085876464844, -0.0035037994384765625, -0.04150390625, 0.01160430908203125, 0.0027866363525390625, -0.004558563232421875, 0.00424957275390625, -0.035247802734375, 0.01087188720703125, -0.01499176025390625, -0.06298828125, -0.0433349609375, -0.0263214111328125, -0.0523681640625, 0.005214691162109375, -0.012725830078125, -0.01177978515625, 0.00984954833984375, 0.0186614990234375, 0.01554107666015625, -0.005794525146484375, 0.0066375732421875, -0.011199951171875, -0.01849365234375, -0.024566650390625, -0.01078033447265625, -0.00579071044921875, 0.005748748779296875, 0.01557159423828125, 0.01160430908203125, -0.0005240440368652344, -0.060028076171875, -0.0142974853515625, 0.0406494140625, -0.01526641845703125, -0.024322509765625, -0.07421875, 0.0175628662109375, 0.0300445556640625, 0.003986358642578125, -0.055938720703125, -0.030242919921875, 0.069091796875, -0.034423828125, -0.0005059242248535156, -0.018157958984375, 0.007251739501953125, 0.03509521484375, -0.0084991455078125, 0.01453399658203125, 0.040679931640625, -0.0254974365234375, 0.0027294158935546875, -0.0190582275390625, -0.06866455078125, -0.03387451171875, 0.061767578125, -0.015869140625, 0.0016050338745117188, -0.055999755859375, 0.03851318359375, 0.0186004638671875, -0.0024166107177734375, -0.00640106201171875, 0.05419921875, 0.01232147216796875, 0.049530029296875, -0.048675537109375, 0.057464599609375, 0.00377655029296875, -0.002826690673828125, 0.01107025146484375, -0.00975799560546875, -0.0083160400390625, -0.004558563232421875, -0.0205230712890625, -0.043792724609375, 0.00507354736328125, -0.06317138671875, 0.021728515625, -0.042755126953125, 0.0079193115234375, 0.0004322528839111328, 0.0777587890625, -0.018280029296875, -0.022491455078125, -0.01358795166015625, 0.01273345947265625, -0.0008540153503417969, -0.04437255859375, 0.0260467529296875, -0.0186309814453125, -0.04803466796875, -0.0071258544921875, -0.007396697998046875, -0.035552978515625, 0.006969451904296875, -0.007232666015625, -0.0155181884765625, -0.040435791015625, 0.01306915283203125, -0.043060302734375, 0.0007243156433105469, 0.01194000244140625, -0.00926971435546875, -0.006618499755859375, 0.016510009765625, -0.0567626953125, -0.05364990234375, -0.01137542724609375, 0.020599365234375, 0.0011730194091796875, -0.0233306884765625, 0.0039825439453125, -0.025909423828125, 0.0195465087890625, 0.0189056396484375, 0.003692626953125, 0.0066070556640625, -0.0234832763671875, 0.0394287109375, 0.01006317138671875, -0.00027441978454589844, -0.00673675537109375, 0.0215301513671875, 0.007457733154296875, -0.014862060546875, -0.01531982421875, -0.062164306640625, -0.036773681640625, -0.0217132568359375, -0.028717041015625, -0.0810546875, -0.059844970703125, -0.01629638671875, 0.012054443359375, -0.006381988525390625, -0.0093231201171875, -0.058074951171875, -0.07781982421875, 0.0308990478515625, 0.03558349609375, -0.03607177734375, 0.0124053955078125, -0.0019311904907226562, 0.01555633544921875, -0.035614013671875, -0.03564453125, 0.023345947265625, 0.024169921875, -0.01788330078125, 0.06573486328125, -0.00763702392578125, -0.0230255126953125, 0.110107421875, -0.01099395751953125, -0.0121612548828125, -0.038238525390625, 0.046051025390625, -0.004058837890625, -0.01678466796875, 0.01105499267578125, -0.026580810546875, 0.040740966796875, 0.05047607421875, 0.0022525787353515625, -0.01114654541015625, -0.017669677734375, 0.008453369140625, 0.0226898193359375, -0.036834716796875, -0.0267791748046875, -0.04608154296875, 0.0033588409423828125, -0.004215240478515625, 0.022796630859375, 0.0167694091796875, 0.006557464599609375, 0.0218048095703125, 0.0277862548828125, 0.01458740234375, 0.0063934326171875, -0.0300750732421875, -0.007137298583984375, 0.042236328125, -0.01119232177734375, 0.008087158203125, 0.0311431884765625, 0.0017309188842773438, 0.02239990234375, 0.00806427001953125, -0.0225067138671875, 0.01641845703125, -0.0255584716796875, -0.031005859375, 0.0025959014892578125, -0.01291656494140625, 0.0155792236328125, -0.015594482421875, 0.0162353515625, 0.020050048828125, -0.00936126708984375, -0.0322265625, -0.0111236572265625, 0.038665771484375, -0.0107269287109375, 0.0175628662109375, -0.01007080078125, 0.07159423828125, 0.010650634765625, 0.0304107666015625, -0.043670654296875, 0.01132965087890625, 0.05645751953125, -0.01313018798828125, 0.0212249755859375, 0.026702880859375, 0.01715087890625, -0.040679931640625, 0.04248046875, -0.0124053955078125, -0.016754150390625, 0.0369873046875, 0.0208587646484375, 0.02081298828125, 0.00939178466796875, -0.031829833984375, -0.01036834716796875, -0.00008469820022583008, 0.03509521484375, 0.0125732421875, -0.0300445556640625, -0.0400390625, -0.03369140625, 0.0186920166015625, 0.005558013916015625, -0.025787353515625, -0.03076171875, -0.07537841796875, -0.019561767578125, 0.032867431640625, -0.039825439453125, -0.0103607177734375, -0.0230712890625, 0.032958984375, -0.04010009765625, -0.023895263671875, -0.0268096923828125, 0.0161895751953125, -0.0125885009765625, 0.00736236572265625, 0.00189971923828125, -0.0190887451171875, -0.0004837512969970703, -0.018402099609375, -0.006744384765625, 0.00522613525390625, 0.00019872188568115234, 0.073974609375, 0.0321044921875, -0.04144287109375, 0.01849365234375, -0.047454833984375, -0.036407470703125, -0.06317138671875, -0.00034737586975097656, -0.056396484375, 0.01702880859375, -0.00914764404296875, 0.018463134765625, -0.0038604736328125, 0.0162353515625, 0.035430908203125, 0.003566741943359375, -0.0293426513671875, 0.00034165382385253906, 0.00896453857421875, 0.046875, -0.0196685791015625, 0.04022216796875, 0.0168914794921875, 0.042724609375, 0.0219573974609375, -0.03985595703125, -0.0014753341674804688, -0.032073974609375, -0.00679779052734375, -0.0231475830078125, 0.0166473388671875, 0.04815673828125, 0.06622314453125, 0.0053558349609375, -0.018768310546875, -0.017578125, 0.005313873291015625, -0.03668212890625, 0.040618896484375, -0.032257080078125, -0.052825927734375, 0.012298583984375, -0.005786895751953125, 0.030975341796875, 0.00815582275390625, -0.070556640625, 0.06524658203125, -0.0018930435180664062, 0.07891845703125, -0.01348876953125, -0.03668212890625, 0.058563232421875, 0.111572265625, -0.00278472900390625, 0.06573486328125, 0.02215576171875, 0.0180511474609375, 0.09521484375, 0.048583984375, 0.00823974609375, 0.004604339599609375, 0.05865478515625, 0.0046539306640625, -0.02557373046875, 0.01061248779296875, -0.027984619140625, 0.021759033203125, 0.056732177734375, 0.0855712890625, -0.06719970703125, 0.01174163818359375, 0.05255126953125, -0.0208740234375, 0.00817108154296875, -0.007144927978515625, -0.0016889572143554688, -0.0279541015625, 0.05023193359375, 0.01247406005859375, 0.0013532638549804688, 0.017791748046875, 0.00920867919921875, 0.0216827392578125, -0.00004178285598754883, 0.07086181640625, -0.01271820068359375, -0.01061248779296875, -0.082763671875, 0.00925445556640625, -0.044830322265625, -0.005146026611328125, 0.0007815361022949219, -0.0032405853271484375, -0.0208892822265625, -0.065185546875, -0.01515960693359375, -0.02923583984375, -0.022735595703125, 0.05474853515625, 0.0079193115234375, -0.0034999847412109375, 0.059600830078125, -0.023406982421875, 0.044158935546875, 0.0207366943359375, -0.031768798828125, 0.055999755859375, -0.0215301513671875, -0.01197052001953125, -0.05218505859375, -0.01358795166015625, -0.00214385986328125, -0.023223876953125, -0.04180908203125, -0.02447509765625, 0.0008111000061035156, 0.0902099609375, 0.012420654296875, -0.053314208984375, 0.01512908935546875, -0.003841400146484375, -0.033721923828125, -0.0215911865234375, 0.0283966064453125, 0.004894256591796875, 0.0408935546875, -0.0198822021484375, 0.0255126953125, -0.01806640625, -0.04473876953125, -0.060791015625, 0.004550933837890625, 0.018829345703125, 0.044891357421875, 0.038818359375, -0.0186309814453125, -0.0648193359375, -0.051513671875, -0.011138916015625, 0.04754638671875, -0.00878143310546875, 0.0268707275390625, 0.006816864013671875, 0.0006089210510253906, 0.0213165283203125, 0.01390838623046875, 0.02294921875, 0.0075836181640625, -0.008636474609375, 0.0062255859375, 0.0445556640625, -0.005397796630859375, -0.023712158203125, 0.054901123046875, -0.01557159423828125, 0.0401611328125, 0.0357666015625, -0.08721923828125, 0.0117950439453125, -0.040740966796875, 0.00341796875, -0.002521514892578125, 0.01033782958984375, -0.0117034912109375, -0.0104827880859375, 0.039764404296875, -0.078369140625, 0.004337310791015625, 0.05206298828125, 0.0260162353515625, 0.005794525146484375, 0.02581787109375, 0.0274658203125, -0.0175933837890625, 0.03631591796875, -0.0350341796875, 0.048675537109375, 0.007434844970703125, 0.009185791015625, 0.03204345703125, 0.01470184326171875, 0.0243377685546875, 0.0183563232421875, 0.017669677734375, 0.01003265380859375, 0.00930023193359375, 0.0528564453125, 0.023468017578125, 0.032958984375, -0.061248779296875, -0.033782958984375, 0.04351806640625, 0.06683349609375, -0.02996826171875, -0.01458740234375, 0.0005307197570800781, -0.004360198974609375, 0.026123046875, -0.04766845703125, 0.0111846923828125, 0.010009765625, 0.01275634765625, -0.0004010200500488281, -0.01293182373046875, 0.01186370849609375, 0.010986328125, -0.0023326873779296875, -0.010894775390625, -0.0130462646484375, 0.00937652587890625, 0.0019197463989257812, -0.01425933837890625, 0.0240936279296875, -0.0172882080078125, -0.02191162109375, 0.01354217529296875, 0.0538330078125, 0.03936767578125, -0.0053558349609375, -0.0005183219909667969, 0.006526947021484375, 0.01275634765625, -0.0168914794921875, 0.01611328125, 0.0083160400390625, 0.00617218017578125, -0.0038890838623046875, 0.02630615234375, -0.00872039794921875, 0.005401611328125, 0.057342529296875, -0.01235198974609375, 0.004364013671875, -0.026458740234375, 0.03228759765625, -0.07025146484375, -0.0284423828125, -0.0207977294921875, -0.034637451171875, -0.005237579345703125, -0.1099853515625, 0.06414794921875, -0.00998687744140625, 0.0076141357421875, -0.010833740234375, -0.0306549072265625, 0.038238525390625, -0.01947021484375, 0.037353515625, -0.003803253173828125, -0.06298828125, -0.037322998046875, 0.0036220550537109375, 0.00479888916015625, 0.01462554931640625, 0.032867431640625, -0.01666259765625, 0.03424072265625, 0.0235748291015625, -0.01520538330078125, 0.019012451171875, -0.013031005859375, 0.024993896484375, 0.003940582275390625, 0.00379180908203125, 0.006740570068359375, -0.05615234375, -0.01517486572265625, 0.010711669921875, -0.01702880859375, 0.003078460693359375, 0.0195465087890625, 0.03411865234375, 0.018402099609375, 0.0019855499267578125, 0.0223388671875, -0.0287322998046875, -0.031951904296875, 0.07977294921875, -0.0108489990234375, -0.0241241455078125, -0.020538330078125, -0.08636474609375, 0.00861358642578125, 0.0254058837890625, 0.030914306640625, 0.0234832763671875, -0.00012087821960449219, 0.01116180419921875, 0.005794525146484375, 0.017333984375, -0.035247802734375, -0.059112548828125, -0.0743408203125, -0.01201629638671875, 0.01364898681640625, 0.018646240234375, -0.0165863037109375, 0.0465087890625, -0.0447998046875, 0.017120361328125, 0.0114898681640625, -0.044281005859375, -0.026092529296875, 0.0009646415710449219, -0.0380859375, 0.0022068023681640625, 0.041259765625, -0.0033550262451171875, 0.0185089111328125, 0.02557373046875, 0.00045228004455566406, 0.03668212890625, 0.00383758544921875, -0.036224365234375, -0.04705810546875, 0.00836181640625, -0.0133056640625, -0.00469970703125, -0.04937744140625, 0.00772857666015625, -0.01555633544921875, 0.00008487701416015625, -0.0156707763671875, -0.04443359375, -0.0186309814453125, 0.01108551025390625, -0.0261383056640625, -0.017181396484375, -0.029266357421875, 0.0206298828125, 0.0126953125, -0.0185699462890625, -0.028228759765625, 0.03375244140625, -0.054290771484375, 0.065185546875, -0.02947998046875, 0.06707763671875, -0.010528564453125, 0.00937652587890625, -0.09173583984375, 0.004695892333984375, -0.0191802978515625, 0.006378173828125, 0.00635528564453125, 0.002429962158203125, 0.029754638671875, 0.011077880859375, 0.032989501953125, -0.019439697265625, -0.02117919921875, 0.033905029296875, -0.0816650390625, -0.034820556640625, 0.0216827392578125, -0.023681640625, 0.00553131103515625, -0.02142333984375, -0.009002685546875, -0.034515380859375, -0.002674102783203125, 0.010284423828125, -0.0145721435546875, -0.0222930908203125, -0.04345703125, -0.03131103515625, 0.028106689453125, 0.0208740234375, -0.018218994140625, -0.023773193359375, -0.0034770965576171875, -0.002685546875, 0.033721923828125, 0.002048492431640625, -0.0158538818359375, -0.023651123046875, 0.030609130859375, 0.0207061767578125, 0.0177154541015625, 0.01348114013671875, 0.0275421142578125, -0.00208282470703125, 0.029876708984375, 0.01910400390625, 0.01378631591796875, -0.042510986328125, 0.028350830078125, 0.004680633544921875, 0.01537322998046875, -0.021453857421875, 0.01389312744140625, 0.02081298828125, -0.0013370513916015625, 0.0232696533203125, 0.003833770751953125, -0.0274810791015625, -0.04388427734375, -0.0235595703125, 0.0140533447265625, 0.00136566162109375, 0.0364990234375, 0.0118255615234375, -0.0106353759765625, -0.032684326171875, -0.01050567626953125, 0.0201568603515625, -0.067626953125, -0.0223846435546875, 0.0283660888671875, -0.01093292236328125, 0.005657196044921875, 0.0276336669921875, -0.018890380859375, -0.0101318359375, 0.038787841796875, -0.016998291015625, -0.044189453125, 0.0132598876953125, 0.0179595947265625, -0.029388427734375, -0.038909912109375, -0.0012121200561523438, 0.0144805908203125, -0.0302581787109375, -0.0263824462890625, 0.0075531005859375, 0.0141448974609375, 0.00693511962890625, 0.00673675537109375, 0.0254364013671875, -0.002777099609375, -0.00782012939453125, -0.0016727447509765625, 0.00145721435546875, 0.02728271484375, -0.017791748046875, -0.0032863616943359375, -0.0206451416015625, 0.037078857421875, -0.0190582275390625, 0.056854248046875, -0.0183258056640625, 0.00774383544921875, -0.00522613525390625, -0.00386810302734375, 0.0108184814453125, -0.006191253662109375, 0.0687255859375, -0.033172607421875, 0.009613037109375, 0.031890869140625, 0.00504302978515625, 0.033294677734375, -0.01275634765625, 0.0130462646484375, -0.0030269622802734375, -0.007171630859375 ]
b7ae191e186ccd98c492632f9ca934cc036ea943
Wordpress Stackexchange Q: How to: Rest endpoint returning empty object I'd like to implement a custom REST endpoint that can also return an empty object. However, in the case where it should return an empty object, the empty associative array returned by the callback is transformed to an empty array. How can I force the endpoint to transform the array into an object like I can in json_encode by setting the JSON_FORCE_OBJECT flag? function rest_cb() { return array(); // this will result in the REST response [] but {} is required } function on_rest_api_init() { register_rest_route('ns/v1', 'empty-object', 'rest_cb'); } A: Found the solution: By casting the return value to an object, it is ensured that in case of an empty array, an empty object will be returned on REST request. Enhancing on my initial example, this code would work: function rest_cb() { return (object) array(); }
Q: How to: Rest endpoint returning empty object I'd like to implement a custom REST endpoint that can also return an empty object. However, in the case where it should return an empty object, the empty associative array returned by the callback is transformed to an empty array. How can I force the endpoint to transform the array into an object like I can in json_encode by setting the JSON_FORCE_OBJECT flag? function rest_cb() { return array(); // this will result in the REST response [] but {} is required } function on_rest_api_init() { register_rest_route('ns/v1', 'empty-object', 'rest_cb'); } A: Found the solution: By casting the return value to an object, it is ensured that in case of an empty array, an empty object will be returned on REST request. Enhancing on my initial example, this code would work: function rest_cb() { return (object) array(); }
wordpress
{ "language": "en", "length": 144, "provenance": "stackexchange_00019.jsonl.gz:482858", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/290306" }
[ 0.001483917236328125, -0.0209197998046875, -0.01465606689453125, -0.006805419921875, -0.0277252197265625, -0.008331298828125, 0.012115478515625, 0.0004830360412597656, 0.017608642578125, 0.001373291015625, -0.042694091796875, -0.00458526611328125, -0.021820068359375, -0.0152435302734375, -0.01494598388671875, -0.060546875, 0.043212890625, 0.0262908935546875, 0.04937744140625, -0.0148468017578125, 0.0005750656127929688, 0.01751708984375, 0.022796630859375, 0.103759765625, 0.00580596923828125, 0.0008697509765625, 0.03240966796875, -0.007904052734375, -0.0017175674438476562, -0.0090484619140625, 0.01194000244140625, -0.0014448165893554688, 0.02703857421875, 0.0751953125, -0.0869140625, 0.027374267578125, 0.007686614990234375, 0.01197052001953125, -0.019317626953125, 0.0369873046875, 0.0430908203125, -0.0272216796875, 0.01690673828125, -0.0333251953125, -0.0005526542663574219, 0.038360595703125, 0.0129852294921875, -0.034454345703125, 0.0006175041198730469, 0.01904296875, 0.019744873046875, 0.001331329345703125, 0.005786895751953125, 0.01354217529296875, -0.0032176971435546875, 0.00013339519500732422, -0.01047515869140625, -0.047760009765625, 0.027984619140625, 0.016845703125, -0.0091705322265625, -0.033355712890625, 0.0202789306640625, -0.029541015625, 0.039459228515625, -0.00384521484375, -0.0037097930908203125, 0.02459716796875, -0.050384521484375, 0.0247039794921875, 0.0248870849609375, -0.060821533203125, 0.00438690185546875, -0.007541656494140625, -0.0389404296875, -0.0141448974609375, 0.0068206787109375, -0.02496337890625, 0.01904296875, -0.007022857666015625, 0.0008454322814941406, 0.0004963874816894531, -0.01030731201171875, -0.01389312744140625, 0.0008678436279296875, 0.005336761474609375, -0.0119476318359375, -0.007617950439453125, -0.01226806640625, -0.00412750244140625, -0.01198577880859375, -0.02911376953125, -0.0369873046875, 0.046478271484375, 0.01690673828125, -0.0171661376953125, -0.0167694091796875, -0.048248291015625, 0.007564544677734375, 0.02069091796875, 0.054656982421875, -0.06732177734375, 0.0653076171875, -0.0197906494140625, 0.01215362548828125, -0.03228759765625, -0.0189208984375, -0.0985107421875, 0.035064697265625, 0.040557861328125, -0.041900634765625, 0.0880126953125, 0.021209716796875, 0.030059814453125, -0.04345703125, -0.00928497314453125, -0.007106781005859375, 0.0032939910888671875, -0.0149993896484375, 0.0113983154296875, -0.0155487060546875, -0.0234375, 0.055328369140625, 0.049468994140625, 0.032318115234375, 0.0394287109375, -0.0196990966796875, -0.021636962890625, 0.0362548828125, 0.0181427001953125, -0.02618408203125, 0.01458740234375, 0.05389404296875, 0.01270294189453125, -0.0013675689697265625, -0.0201873779296875, 0.0192718505859375, 0.036956787109375, 0.0233154296875, -0.0026988983154296875, 0.047821044921875, -0.0274658203125, -0.00836944580078125, 0.0478515625, 0.0059051513671875, 0.0159759521484375, 0.01238250732421875, 0.0050506591796875, -0.007686614990234375, -0.0213470458984375, 0.00946807861328125, -0.030548095703125, 0.026611328125, 0.00736236572265625, 0.0548095703125, -0.0162811279296875, 0.045867919921875, -0.0242919921875, 0.006160736083984375, -0.0178680419921875, 0.038116455078125, -0.038604736328125, -0.0323486328125, -0.0132598876953125, -0.0733642578125, 0.050750732421875, -0.0282135009765625, -0.00986480712890625, 0.02069091796875, 0.0833740234375, -0.0175018310546875, 0.0143890380859375, -0.021697998046875, 0.0268707275390625, -0.00582122802734375, 0.0009341239929199219, 0.004119873046875, 0.0229339599609375, -0.00968170166015625, -0.00991058349609375, -0.0147247314453125, -0.04412841796875, 0.0200042724609375, 0.0006461143493652344, -0.060760498046875, 0.061279296875, 0.026214599609375, 0.07208251953125, -0.018157958984375, 0.0059661865234375, 0.0567626953125, 0.0579833984375, -0.0223846435546875, 0.011566162109375, 0.0278167724609375, -0.0290679931640625, 0.005550384521484375, -0.02789306640625, 0.006740570068359375, 0.008270263671875, -0.00003737211227416992, 0.00608062744140625, -0.0185394287109375, -0.0037097930908203125, -0.03826904296875, -0.0076141357421875, -0.0188140869140625, 0.0287322998046875, -0.034698486328125, 0.0386962890625, 0.025482177734375, 0.0185089111328125, -0.06817626953125, 0.08636474609375, 0.053192138671875, -0.01708984375, 0.01148223876953125, 0.00788116455078125, -0.00939178466796875, -0.025787353515625, -0.03900146484375, 0.0272369384765625, -0.027801513671875, 0.035308837890625, 0.06658935546875, -0.01300048828125, 0.0014324188232421875, -0.0278167724609375, 0.094970703125, -0.005153656005859375, 0.011322021484375, 0.0177764892578125, 0.02313232421875, 0.005054473876953125, -0.028472900390625, 0.0020275115966796875, 0.028564453125, -0.0210113525390625, 0.00823211669921875, 0.02978515625, 0.023406982421875, -0.0217437744140625, -0.020751953125, 0.0178070068359375, 0.071044921875, 0.0289154052734375, 0.01007843017578125, 0.004520416259765625, -0.0268096923828125, -0.0302886962890625, -0.012481689453125, -0.00844573974609375, 0.029937744140625, -0.061553955078125, -0.003864288330078125, 0.031524658203125, -0.0347900390625, -0.049468994140625, -0.03253173828125, 0.0236053466796875, 0.01233673095703125, -0.047210693359375, -0.00577545166015625, -0.0305023193359375, -0.02728271484375, 0.01499176025390625, 0.002849578857421875, 0.01262664794921875, -0.0193328857421875, 0.0159759521484375, 0.023193359375, -0.01049041748046875, -0.00844573974609375, 0.046295166015625, 0.01085662841796875, -0.01140594482421875, -0.00679779052734375, -0.003208160400390625, 0.0034694671630859375, 0.01153564453125, -0.001617431640625, 0.031280517578125, -0.0049896240234375, -0.00989532470703125, 0.00494384765625, 0.0212860107421875, 0.007022857666015625, 0.00823974609375, 0.002166748046875, 0.0230865478515625, 0.0164642333984375, 0.053375244140625, 0.00748443603515625, 0.0223236083984375, -0.006145477294921875, 0.01413726806640625, 0.04510498046875, -0.033111572265625, 0.0316162109375, -0.0328369140625, 0.0157318115234375, 0.053131103515625, 0.008026123046875, -0.0211181640625, 0.002105712890625, 0.0186614990234375, -0.0208282470703125, 0.0187225341796875, 0.00738525390625, -0.029510498046875, -0.0004630088806152344, 0.0265655517578125, 0.03875732421875, 0.022064208984375, 0.0209503173828125, -0.0183868408203125, 0.007610321044921875, 0.03631591796875, -0.045867919921875, -0.04998779296875, 0.0814208984375, -0.01511383056640625, 0.0082244873046875, 0.004985809326171875, -0.02252197265625, -0.0426025390625, 0.0262908935546875, -0.0212249755859375, 0.032379150390625, -0.04443359375, -0.032928466796875, -0.0426025390625, -0.059326171875, -0.029449462890625, 0.00013530254364013672, -0.0260467529296875, -0.00655364990234375, 0.01387786865234375, -0.00756072998046875, 0.0168914794921875, 0.0042572021484375, 0.045867919921875, 0.019073486328125, -0.037353515625, 0.0278472900390625, -0.01395416259765625, -0.0243072509765625, 0.0017862319946289062, 0.045257568359375, 0.029022216796875, -0.046478271484375, 0.01137542724609375, -0.01250457763671875, 0.016143798828125, 0.0010051727294921875, 0.034271240234375, 0.0256500244140625, 0.031341552734375, 0.032684326171875, -0.0200653076171875, -0.038055419921875, 0.005290985107421875, -0.04296875, 0.006999969482421875, 0.0166778564453125, -0.0257110595703125, -0.0099639892578125, 0.04901123046875, 0.01038360595703125, -0.0076751708984375, -0.0203704833984375, 0.006885528564453125, -0.00274658203125, -0.004070281982421875, 0.01230621337890625, 0.004604339599609375, 0.1171875, 0.0247802734375, -0.061981201171875, 0.037567138671875, 0.0279083251953125, 0.005916595458984375, -0.044403076171875, -0.061492919921875, -0.0162811279296875, 0.051849365234375, 0.0207061767578125, 0.006381988525390625, 0.0009279251098632812, -0.03582763671875, 0.023284912109375, 0.07269287109375, 0.031402587890625, -0.0118255615234375, -0.036102294921875, -0.0081634521484375, -0.00983428955078125, -0.01751708984375, 0.005268096923828125, -0.005832672119140625, 0.035675048828125, -0.01096343994140625, -0.021240234375, 0.0148773193359375, -0.027496337890625, -0.0234222412109375, 0.01552581787109375, -0.02001953125, 0.0244293212890625, -0.091796875, 0.0139007568359375, -0.031829833984375, 0.03564453125, -0.11944580078125, 0.01546478271484375, -0.034210205078125, -0.0457763671875, -0.006175994873046875, 0.0051727294921875, 0.0052490234375, -0.0185089111328125, 0.01384735107421875, 0.02093505859375, 0.04132080078125, 0.003971099853515625, -0.0183563232421875, 0.0253753662109375, 0.00243377685546875, 0.02288818359375, 0.03570556640625, 0.016571044921875, -0.01116180419921875, -0.037628173828125, -0.0274505615234375, -0.001743316650390625, 0.0156402587890625, -0.00887298583984375, -0.024871826171875, 0.01328277587890625, -0.023834228515625, -0.0328369140625, -0.0186767578125, -0.0079193115234375, 0.023712158203125, -0.01421356201171875, 0.00778961181640625, -0.0254669189453125, -0.0287322998046875, -0.01509857177734375, 0.02081298828125, -0.031707763671875, 0.0221405029296875, -0.034423828125, 0.027435302734375, -0.022857666015625, -0.016204833984375, -0.0103302001953125, 0.0011110305786132812, 0.0096435546875, 0.0245361328125, -0.04327392578125, -0.01500701904296875, 0.07196044921875, -0.044891357421875, 0.027740478515625, 0.024749755859375, 0.044036865234375, 0.0011444091796875, -0.007354736328125, 0.0236053466796875, 0.032073974609375, -0.110595703125, 0.0254058837890625, -0.01016998291015625, -0.0166015625, 0.0230865478515625, 0.00942230224609375, -0.0689697265625, 0.058807373046875, 0.0165557861328125, -0.053009033203125, 0.023651123046875, -0.035675048828125, 0.02215576171875, -0.016326904296875, 0.002399444580078125, 0.0171356201171875, 0.0218963623046875, 0.0137786865234375, -0.0250244140625, -0.002288818359375, -0.026641845703125, 0.053863525390625, -0.04730224609375, 0.01763916015625, -0.01178741455078125, -0.003154754638671875, 0.04522705078125, 0.028106689453125, -0.035736083984375, 0.0013780593872070312, 0.0016384124755859375, 0.00861358642578125, -0.01485443115234375, 0.0007109642028808594, 0.0259552001953125, 0.0163421630859375, 0.01568603515625, 0.005527496337890625, -0.031005859375, 0.021148681640625, -0.0343017578125, 0.059967041015625, 0.012603759765625, 0.00202178955078125, -0.05731201171875, 0.0849609375, 0.004364013671875, 0.0066680908203125, -0.005161285400390625, 0.023284912109375, 0.02984619140625, 0.059173583984375, 0.040557861328125, -0.05780029296875, -0.0288848876953125, 0.058135986328125, -0.03594970703125, -0.03363037109375, -0.02606201171875, 0.0287322998046875, 0.0465087890625, -0.04315185546875, -0.0390625, 0.0416259765625, -0.0013132095336914062, -0.0298309326171875, 0.038360595703125, 0.0184478759765625, -0.035552978515625, -0.03369140625, -0.02288818359375, 0.0214691162109375, -0.0009222030639648438, 0.01294708251953125, -0.005916595458984375, 0.0518798828125, 0.0458984375, -0.0259857177734375, -0.00495147705078125, 0.0204925537109375, 0.0162811279296875, -0.03192138671875, -0.040985107421875, -0.01194000244140625, -0.02606201171875, 0.0265960693359375, -0.025909423828125, -0.045013427734375, 0.007671356201171875, -0.0311737060546875, -0.01180267333984375, -0.0293731689453125, 0.0270843505859375, -0.046966552734375, 0.0062255859375, 0.05279541015625, 0.034698486328125, -0.060394287109375, -0.01267242431640625, -0.023284912109375, 0.005947113037109375, 0.0063323974609375, -0.01334381103515625, -0.0157928466796875, -0.01401519775390625, -0.002490997314453125, 0.04266357421875, -0.0013895034790039062, -0.01556396484375, -0.0128021240234375, 0.01137542724609375, -0.0018157958984375, 0.049652099609375, -0.00768280029296875, 0.06884765625, 0.0221710205078125, 0.05743408203125, 0.0325927734375, 0.0236663818359375, -0.0518798828125, -0.02105712890625, -0.0198822021484375, -0.06781005859375, 0.01239776611328125, 0.0278778076171875, -0.026275634765625, 0.037200927734375, 0.01947021484375, 0.0271148681640625, -0.01288604736328125, 0.007076263427734375, -0.00740814208984375, -0.029937744140625, 0.059417724609375, 0.0384521484375, 0.06439208984375, -0.059356689453125, 0.01812744140625, 0.006725311279296875, -0.022216796875, -0.027435302734375, -0.0188446044921875, 0.04193115234375, -0.0028095245361328125, -0.042449951171875, -0.016632080078125, 0.0255279541015625, 0.08563232421875, -0.0253753662109375, 0.023406982421875, 0.021209716796875, -0.01453399658203125, 0.0428466796875, 0.01146697998046875, 0.02496337890625, -0.0201873779296875, 0.02325439453125, -0.0018568038940429688, 0.00321197509765625, 0.0281829833984375, -0.01189422607421875, 0.001995086669921875, 0.0253143310546875, 0.0189361572265625, -0.0394287109375, 0.0035991668701171875, -0.016632080078125, 0.006229400634765625, 0.049896240234375, -0.0259246826171875, -0.00893402099609375, -0.0443115234375, -0.0190887451171875, 0.006160736083984375, -0.0684814453125, -0.0550537109375, -0.00647735595703125, -0.006481170654296875, -0.02386474609375, 0.0111236572265625, 0.0186767578125, 0.01145172119140625, 0.04302978515625, -0.004016876220703125, 0.044830322265625, 0.0138092041015625, 0.033416748046875, -0.0155029296875, -0.0228118896484375, -0.038909912109375, -0.01230621337890625, -0.0181121826171875, -0.059661865234375, 0.01837158203125, -0.019287109375, 0.036834716796875, 0.0264434814453125, -0.027130126953125, 0.0032978057861328125, -0.004974365234375, -0.019805908203125, -0.02783203125, -0.02349853515625, 0.014892578125, 0.01302337646484375, -0.0142059326171875, 0.025848388671875, -0.005268096923828125, -0.03021240234375, -0.002140045166015625, -0.04010009765625, 0.038482666015625, 0.0130767822265625, -0.02862548828125, 0.0223388671875, -0.01971435546875, -0.0274658203125, -0.01422119140625, 0.06182861328125, -0.033416748046875, 0.0013408660888671875, 0.0078277587890625, 0.02001953125, -0.025543212890625, -0.017364501953125, -0.041107177734375, 0.1087646484375, 0.004070281982421875, 0.0029239654541015625, 0.0014247894287109375, 0.03936767578125, -0.0108184814453125, 0.04150390625, -0.040374755859375, 0.0286407470703125, 0.0099945068359375, 0.029754638671875, -0.0599365234375, -0.0172882080078125, -0.010589599609375, 0.034210205078125, -0.02435302734375, 0.0023441314697265625, -0.03778076171875, 0.006778717041015625, -0.0027008056640625, -0.0263671875, -0.0229034423828125, 0.06988525390625, 0.016510009765625, 0.055511474609375, 0.098876953125, -0.0065155029296875, 0.0484619140625, 0.007251739501953125, -0.01248931884765625, 0.0246124267578125, 0.01319122314453125, 0.0167083740234375, -0.00316619873046875, 0.0193023681640625, -0.00383758544921875, -0.009552001953125, 0.01013946533203125, -0.025970458984375, 0.0275726318359375, 0.007244110107421875, 0.036224365234375, -0.045166015625, 0.0218048095703125, -0.0308685302734375, 0.048858642578125, 0.0000870823860168457, 0.005641937255859375, 0.0249786376953125, 0.0198822021484375, 0.0265655517578125, -0.035369873046875, 0.00391387939453125, 0.018310546875, -0.03173828125, 0.0160369873046875, 0.0285491943359375, 0.0242919921875, -0.0247344970703125, -0.0159454345703125, 0.048828125, 0.0469970703125, -0.024627685546875, -0.041107177734375, 0.00655364990234375, 0.0158843994140625, 0.050811767578125, 0.007701873779296875, 0.06982421875, -0.035186767578125, -0.005908966064453125, -0.051361083984375, 0.033935546875, 0.032501220703125, 0.0020618438720703125, -0.0027256011962890625, 0.030120849609375, -0.03662109375, 0.027069091796875, 0.0110931396484375, -0.02728271484375, 0.0181427001953125, 0.02117919921875, 0.0089263916015625, -0.00281524658203125, -0.0235137939453125, 0.004535675048828125, 0.02581787109375, 0.006771087646484375, 0.01340484619140625, -0.02410888671875, 0.052032470703125, 0.00498199462890625, -0.0246734619140625, -0.01108551025390625, 0.0011882781982421875, 0.02197265625, 0.0604248046875, 0.03717041015625, -0.068359375, -0.02099609375, 0.018280029296875, -0.04296875, -0.0306396484375, -0.046844482421875, 0.015625, 0.0198211669921875, 0.00006777048110961914, 0.038818359375, 0.003017425537109375, 0.03509521484375, -0.004817962646484375, 0.03778076171875, 0.007640838623046875, -0.03143310546875, 0.018280029296875, -0.042205810546875, 0.06903076171875, 0.0009474754333496094, 0.0018224716186523438, 0.008148193359375, -0.01509857177734375, -0.029052734375, -0.01108551025390625, 0.0193634033203125, -0.01236724853515625, 0.048828125, -0.0347900390625, 0.0001894235610961914, -0.008544921875, 0.003658294677734375, 0.0028209686279296875, -0.0171356201171875, 0.0238494873046875, -0.0158843994140625, -0.09100341796875, -0.04296875, -0.035888671875, 0.0196380615234375, 0.004550933837890625, 0.033660888671875, 0.0289764404296875, 0.0167999267578125, -0.0275726318359375, 0.006153106689453125, -0.0272216796875, -0.0055389404296875, -0.039154052734375, 0.0019664764404296875, 0.01165008544921875, 0.01541900634765625, -0.030029296875, -0.0134735107421875, 0.037689208984375, -0.0018978118896484375, 0.01084136962890625, -0.0262298583984375, 0.0299072265625, -0.006420135498046875, -0.0020542144775390625, -0.026947021484375, -0.0233154296875, 0.02685546875, 0.01934814453125, -0.01556396484375, 0.004825592041015625, 0.00823974609375, 0.03076171875, -0.0279083251953125, -0.072265625, 0.031158447265625, -0.0999755859375, 0.042694091796875, 0.03509521484375, 0.005458831787109375, 0.048370361328125, -0.0487060546875, -0.0455322265625, 0.058685302734375, -0.024261474609375, 0.0153350830078125, -0.0198516845703125, 0.081787109375, 0.0225067138671875, -0.0197906494140625, 0.0010900497436523438, -0.050140380859375, -0.027984619140625, 0.0193634033203125, 0.01486968994140625, -0.0143280029296875, -0.0007853507995605469, -0.01395416259765625, -0.0347900390625, -0.02447509765625, -0.0036468505859375, -0.0095977783203125, -0.04071044921875, 0.0103607177734375, -0.008270263671875, -0.012451171875, -0.01800537109375, 0.00958251953125, 0.0118255615234375, -0.036376953125, -0.01221466064453125, -0.0280609130859375, -0.0093536376953125, 0.047393798828125, 0.066650390625, -0.0240325927734375, 0.0100860595703125, 0.042877197265625, -0.01788330078125, 0.055511474609375, -0.01200103759765625, 0.00632476806640625, -0.01059722900390625, 0.0021800994873046875, -0.057098388671875, 0.00508880615234375, -0.0024318695068359375, 0.02435302734375, -0.015380859375, -0.004024505615234375, 0.0101776123046875, -0.0269775390625, -0.0252838134765625, 0.0421142578125, -0.0302581787109375, -0.017669677734375, -0.0174407958984375, 0.026580810546875, 0.04376220703125, -0.0162353515625, -0.033233642578125, 0.048309326171875, -0.00021970272064208984, -0.0221710205078125, -0.0750732421875, -0.0189208984375, 0.006847381591796875, 0.0416259765625, -0.035186767578125, -0.006366729736328125, -0.045013427734375, 0.0440673828125, 0.007549285888671875, -0.002170562744140625, 0.0247344970703125, 0.0188446044921875, -0.040435791015625, -0.00025582313537597656, -0.0325927734375, -0.0213775634765625, -0.0302581787109375, 0.0271453857421875, 0.006244659423828125, 0.038299560546875, -0.00579833984375, 0.038116455078125, 0.00665283203125, -0.0017223358154296875, 0.00003987550735473633, -0.02655029296875, 0.01165771484375, 0.0013761520385742188, 0.0443115234375, 0.00994873046875, 0.0002727508544921875, -0.0428466796875, -0.051361083984375, -0.0245208740234375, -0.0106201171875, -0.024322509765625, 0.0206298828125, -0.09783935546875, -0.0165863037109375, 0.0175323486328125, 0.0276336669921875, 0.0216217041015625, -0.0767822265625, 0.004451751708984375, -0.035491943359375, -0.0273284912109375, 0.01513671875, 0.01299285888671875, -0.0496826171875, -0.017120361328125, 0.00789642333984375, 0.00661468505859375, -0.02166748046875, 0.046234130859375, -0.009796142578125, 0.0271148681640625, -0.035614013671875, -0.04669189453125, 0.0220947265625, 0.03204345703125, -0.0133819580078125, -0.0557861328125, 0.00983428955078125, 0.0182037353515625, -0.00514984130859375, 0.0291900634765625, 0.01322174072265625, 0.0546875, 0.00911712646484375, 0.006122589111328125, 0.0220947265625, -0.043182373046875, -0.02130126953125, 0.0152130126953125, -0.00453948974609375, 0.015777587890625, -0.00800323486328125, -0.001094818115234375, 0.031005859375, -0.04241943359375, -0.004669189453125, 0.0458984375, -0.022125244140625, -0.0382080078125, 0.0226287841796875, 0.041839599609375, 0.03399658203125, 0.010284423828125 ]
85e13677c5d29fbe0a7f548a2d58e79c592b4078
Wordpress Stackexchange Q: Which WP functions do you need to use esc_html() or esc_url() on? I've come across situations where people have used either esc_html() or esc_url() with certain WP functions such as home_url('/'). An example being in the opening anchor tag of <a> link back to the homepage such as this: <a href="<?php echo esc_url( home_url( '/' ) ); ?>"> How do you know which WP functions need to be escaped and does it matter if you use esc_html() or esc_url()? Any advice or guidance would be wonderful. A: Any output of untrusted data (including data from database) must be sanitized. WordPress Codex describes available functions: https://codex.wordpress.org/Data_Validation Code sniffers, following WordPress Coding Standards, require to sanitize output even from WordPress core functions. You can turn on such code sniffer in PhpStorm, for example. Sometime such a requirement is excessive, but it is better to follow coding standards to have more reliable code.
Q: Which WP functions do you need to use esc_html() or esc_url() on? I've come across situations where people have used either esc_html() or esc_url() with certain WP functions such as home_url('/'). An example being in the opening anchor tag of <a> link back to the homepage such as this: <a href="<?php echo esc_url( home_url( '/' ) ); ?>"> How do you know which WP functions need to be escaped and does it matter if you use esc_html() or esc_url()? Any advice or guidance would be wonderful. A: Any output of untrusted data (including data from database) must be sanitized. WordPress Codex describes available functions: https://codex.wordpress.org/Data_Validation Code sniffers, following WordPress Coding Standards, require to sanitize output even from WordPress core functions. You can turn on such code sniffer in PhpStorm, for example. Sometime such a requirement is excessive, but it is better to follow coding standards to have more reliable code. A: Any that return data. * *If a function outputs internally, then it's taken responsibility for escaping *if a function returns the data for use, it will be unescaped to avoid double escaping, it's your responsibility This is because you should always late escape so that there is no doubt if a variable is escaped. If the output of APIs such as home_url were pre-escaped, then this would no longer be true. It would also introduce double escaping, which can be used to break past escaping in some scenarios. Some further notes: * *don't bother to escape static strings, it's pointless *don't try to wrap functions like the_permalink in esc_url etc, escaping functions are still functions, they aren't magic modifiers/highlighters telling PHP to secure something. *Don't return complex HTML fragments in variables, return data, data doesn't need to be escaped, but escaping a complex HTML fragment is not easy, and usually impossible to do safely *When using shortcodes/filters, make sure to escape the bits you add/modify, but leave the rest alone and trust it's been escaped, it's not your responsibility to escape output generated elsewhere in these situations. Having said that, don't trust it as an input either if it's being used to guide your own code
wordpress
{ "language": "en", "length": 358, "provenance": "stackexchange_00019.jsonl.gz:482871", "question_score": "8", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/290351" }
[ 0.0706787109375, 0.0116119384765625, -0.0153961181640625, -0.0259246826171875, 0.0299072265625, -0.039825439453125, 0.0435791015625, -0.032073974609375, 0.024658203125, 0.01053619384765625, 0.0151214599609375, -0.028900146484375, 0.01438140869140625, -0.053009033203125, 0.007648468017578125, -0.00890350341796875, 0.026580810546875, -0.0133819580078125, 0.0010805130004882812, -0.01471710205078125, 0.0233612060546875, 0.004566192626953125, -0.0113677978515625, 0.039093017578125, 0.0215606689453125, -0.031158447265625, 0.079833984375, -0.01457977294921875, 0.0267333984375, 0.0101165771484375, 0.01727294921875, -0.047210693359375, 0.01454925537109375, 0.0408935546875, -0.06292724609375, 0.016998291015625, -0.036895751953125, 0.04302978515625, -0.0020599365234375, 0.0416259765625, 0.004444122314453125, -0.0040435791015625, 0.0093994140625, 0.01128387451171875, -0.0140380859375, -0.03369140625, 0.0186767578125, -0.01526641845703125, -0.0200347900390625, 0.0217742919921875, 0.0187225341796875, -0.0180816650390625, 0.0238800048828125, -0.0164031982421875, 0.00014710426330566406, 0.01000213623046875, 0.024688720703125, -0.03851318359375, 0.00720977783203125, 0.0150604248046875, -0.0012569427490234375, 0.0270843505859375, 0.0048065185546875, -0.0249176025390625, 0.004241943359375, 0.005889892578125, -0.013275146484375, 0.0232086181640625, -0.049835205078125, -0.01168060302734375, 0.0297698974609375, -0.04241943359375, -0.021759033203125, -0.02642822265625, 0.00858306884765625, 0.058013916015625, -0.0098724365234375, 0.0169677734375, -0.0049591064453125, 0.037506103515625, 0.022308349609375, -0.0179901123046875, -0.037872314453125, -0.042633056640625, 0.034576416015625, -0.00022411346435546875, -0.0035552978515625, -0.0174407958984375, 0.0074615478515625, -0.01177978515625, -0.0078887939453125, -0.00382232666015625, 0.0306396484375, -0.01457977294921875, -0.002681732177734375, -0.05517578125, -0.0036296844482421875, 0.00978851318359375, -0.00823211669921875, -0.0015268325805664062, 0.047943115234375, -0.0537109375, 0.043914794921875, -0.0271759033203125, 0.005947113037109375, 0.0908203125, 0.0006618499755859375, -0.006610870361328125, 0.0121612548828125, -0.00432586669921875, 0.0254974365234375, -0.0249481201171875, -0.052398681640625, -0.0626220703125, -0.0020847320556640625, 0.0589599609375, -0.042877197265625, 0.00555419921875, 0.00489044189453125, 0.00234222412109375, 0.00197601318359375, 0.0242767333984375, 0.03546142578125, -0.03448486328125, -0.0005221366882324219, -0.0023059844970703125, -0.0222015380859375, -0.041473388671875, -0.01207733154296875, 0.0209808349609375, -0.04376220703125, 0.0090789794921875, 0.07476806640625, 0.0180511474609375, -0.0077056884765625, -0.0278778076171875, 0.006557464599609375, -0.031524658203125, 0.002521514892578125, 0.006866455078125, 0.00411224365234375, -0.016937255859375, 0.01180267333984375, -0.003231048583984375, 0.042816162109375, 0.02459716796875, 0.0141754150390625, 0.00011205673217773438, 0.014739990234375, -0.03564453125, 0.022186279296875, -0.021881103515625, 0.038055419921875, -0.012908935546875, -0.031219482421875, -0.033172607421875, -0.00530242919921875, -0.035736083984375, 0.0002646446228027344, -0.043182373046875, -0.0202484130859375, -0.0201873779296875, 0.0166778564453125, 0.0013704299926757812, -0.0171051025390625, 0.0155487060546875, 0.0005741119384765625, 0.0008869171142578125, 0.016510009765625, 0.057708740234375, 0.00267791748046875, -0.012939453125, -0.018798828125, 0.032806396484375, 0.0033855438232421875, 0.003932952880859375, -0.01102447509765625, 0.0109405517578125, 0.0275421142578125, 0.0592041015625, 0.037994384765625, -0.0152587890625, 0.057159423828125, 0.0023212432861328125, -0.07330322265625, 0.053619384765625, 0.017578125, 0.09716796875, 0.0229644775390625, 0.00879669189453125, 0.043487548828125, 0.01020050048828125, 0.005191802978515625, 0.0071868896484375, -0.02008056640625, -0.0655517578125, -0.01358795166015625, -0.031341552734375, -0.03155517578125, 0.048370361328125, 0.06707763671875, -0.0026149749755859375, 0.0270538330078125, -0.0309906005859375, -0.0416259765625, 0.0033779144287109375, -0.0138092041015625, 0.0293731689453125, 0.0162200927734375, 0.0494384765625, 0.021575927734375, 0.026153564453125, -0.054595947265625, 0.0261077880859375, -0.0214385986328125, -0.005687713623046875, -0.016815185546875, 0.059478759765625, -0.024200439453125, 0.031646728515625, -0.0159912109375, -0.060150146484375, -0.01169586181640625, 0.0226898193359375, 0.005031585693359375, -0.007129669189453125, -0.008636474609375, -0.019195556640625, -0.007266998291015625, 0.005611419677734375, -0.002193450927734375, 0.01441192626953125, 0.08563232421875, 0.0609130859375, -0.0269317626953125, -0.0079498291015625, -0.002300262451171875, -0.04913330078125, -0.00815582275390625, 0.060882568359375, 0.05487060546875, 0.0679931640625, 0.0025844573974609375, -0.042327880859375, 0.056182861328125, -0.05487060546875, 0.031158447265625, -0.05206298828125, -0.02001953125, 0.0200347900390625, 0.002437591552734375, 0.0034351348876953125, -0.006885528564453125, -0.09991455078125, -0.018310546875, 0.0264434814453125, -0.050018310546875, -0.0255889892578125, -0.0214691162109375, -0.0047149658203125, 0.006175994873046875, -0.06298828125, -0.00972747802734375, -0.032745361328125, 0.00452423095703125, -0.00849151611328125, 0.00838470458984375, -0.0005426406860351562, -0.004207611083984375, -0.0123138427734375, 0.030975341796875, 0.0161895751953125, -0.00856781005859375, 0.074462890625, 0.029296875, 0.006877899169921875, -0.0189208984375, -0.031005859375, -0.0178985595703125, 0.04840087890625, 0.0010128021240234375, 0.032012939453125, 0.0004508495330810547, -0.0264129638671875, -0.02154541015625, 0.00507354736328125, 0.02142333984375, 0.0249786376953125, 0.050567626953125, 0.018463134765625, 0.037841796875, 0.01483917236328125, -0.0179443359375, 0.06365966796875, -0.00742340087890625, -0.02874755859375, 0.010345458984375, -0.054656982421875, 0.025482177734375, 0.0007925033569335938, 0.05279541015625, 0.06463623046875, 0.033172607421875, -0.0235748291015625, -0.00693511962890625, 0.035888671875, 0.0214385986328125, -0.022979736328125, -0.0249481201171875, 0.00829315185546875, -0.0863037109375, -0.044891357421875, 0.014617919921875, 0.032470703125, -0.027740478515625, -0.047882080078125, -0.04193115234375, -0.0026302337646484375, -0.11553955078125, -0.083251953125, -0.02764892578125, -0.0167236328125, 0.0106201171875, 0.01285552978515625, 0.01279449462890625, 0.001384735107421875, 0.0225372314453125, 0.0128326416015625, 0.0075836181640625, 0.006305694580078125, -0.06390380859375, -0.04779052734375, -0.06561279296875, 0.0379638671875, -0.01531219482421875, 0.031280517578125, -0.006870269775390625, 0.00567626953125, -0.031829833984375, -0.04595947265625, -0.045623779296875, 0.0209197998046875, -0.0016756057739257812, -0.03448486328125, -0.0615234375, -0.0071563720703125, -0.04705810546875, -0.0092315673828125, 0.0023288726806640625, -0.047393798828125, 0.05029296875, 0.00618743896484375, 0.0172882080078125, 0.01035308837890625, 0.031463623046875, -0.0052642822265625, -0.00945281982421875, 0.040802001953125, 0.0157012939453125, -0.028656005859375, 0.033721923828125, -0.022064208984375, -0.00878143310546875, 0.01396942138671875, 0.005603790283203125, -0.019317626953125, 0.0164031982421875, -0.02471923828125, 0.0276947021484375, 0.0247344970703125, 0.031585693359375, 0.0038051605224609375, 0.021575927734375, -0.0164642333984375, 0.013336181640625, -0.0416259765625, 0.0228729248046875, -0.01479339599609375, 0.0036678314208984375, 0.0096893310546875, 0.0098724365234375, -0.0136260986328125, 0.00925445556640625, -0.024444580078125, -0.00936126708984375, 0.0506591796875, 0.037506103515625, 0.0595703125, -0.017852783203125, -0.05059814453125, -0.0050048828125, 0.08544921875, -0.024383544921875, -0.0168304443359375, 0.0283966064453125, 0.008636474609375, -0.0164337158203125, 0.01468658447265625, -0.06292724609375, -0.00972747802734375, -0.034454345703125, 0.0296783447265625, -0.0011777877807617188, -0.013275146484375, -0.017425537109375, -0.01715087890625, -0.0218505859375, -0.029541015625, 0.0146026611328125, 0.0240936279296875, -0.0085906982421875, -0.01197052001953125, 0.0101165771484375, -0.04241943359375, 0.01412200927734375, 0.0186614990234375, -0.08123779296875, -0.0165863037109375, -0.015960693359375, 0.05816650390625, 0.039581298828125, -0.0772705078125, -0.0187530517578125, 0.039459228515625, -0.0206298828125, -0.01690673828125, 0.039642333984375, 0.034210205078125, 0.003009796142578125, 0.044403076171875, 0.032135009765625, -0.01470947265625, 0.0241851806640625, 0.00423431396484375, -0.0728759765625, -0.007244110107421875, -0.0015935897827148438, 0.00243377685546875, 0.0394287109375, -0.042144775390625, -0.036529541015625, -0.01372528076171875, -0.028533935546875, -0.01213836669921875, 0.008392333984375, -0.0284423828125, 0.01006317138671875, -0.03424072265625, 0.05712890625, 0.0218048095703125, 0.0031147003173828125, -0.0300750732421875, 0.0447998046875, 0.0189208984375, -0.043365478515625, 0.0197906494140625, -0.034881591796875, 0.0185394287109375, -0.005237579345703125, 0.05047607421875, 0.01396942138671875, -0.0210113525390625, 0.056854248046875, -0.0101470947265625, 0.039947509765625, -0.04986572265625, 0.0104522705078125, 0.0001264810562133789, -0.0029811859130859375, 0.01392364501953125, 0.01239013671875, 0.0257415771484375, 0.08319091796875, 0.0106964111328125, -0.023895263671875, 0.004901885986328125, -0.020751953125, -0.0259552001953125, -0.006603240966796875, 0.016387939453125, -0.00942230224609375, -0.0164337158203125, 0.00933074951171875, 0.053314208984375, 0.06781005859375, -0.0247344970703125, 0.037017822265625, 0.03692626953125, -0.0081634521484375, -0.009307861328125, 0.00753021240234375, -0.02667236328125, 0.0209197998046875, -0.020172119140625, -0.03863525390625, -0.0004611015319824219, -0.0081329345703125, 0.0345458984375, -0.01157379150390625, -0.0328369140625, -0.010894775390625, -0.006988525390625, -0.0034275054931640625, 0.018341064453125, 0.047607421875, 0.036651611328125, -0.01297760009765625, -0.02392578125, -0.05523681640625, -0.02020263671875, -0.008697509765625, -0.05322265625, 0.005584716796875, -0.00980377197265625, 0.005420684814453125, 0.0299224853515625, 0.0279388427734375, -0.00812530517578125, 0.0343017578125, -0.0234375, -0.0194854736328125, -0.0117950439453125, 0.034210205078125, 0.0191192626953125, -0.046600341796875, 0.034149169921875, -0.009674072265625, 0.05072021484375, -0.0258636474609375, -0.046966552734375, 0.035247802734375, 0.047943115234375, -0.033233642578125, 0.0046539306640625, 0.00046706199645996094, 0.00955963134765625, -0.00594329833984375, 0.053466796875, 0.0019664764404296875, -0.03228759765625, -0.04302978515625, -0.027862548828125, 0.043853759765625, -0.00507354736328125, 0.006740570068359375, 0.0014886856079101562, 0.02154541015625, 0.0325927734375, -0.00128173828125, -0.01326751708984375, 0.01062774658203125, 0.02093505859375, 0.01508331298828125, -0.00074005126953125, -0.024261474609375, -0.0016279220581054688, 0.01165008544921875, -0.034332275390625, -0.040771484375, 0.08856201171875, -0.0288543701171875, 0.05950927734375, -0.03875732421875, -0.0234527587890625, 0.0186309814453125, 0.00798797607421875, 0.07708740234375, 0.04949951171875, -0.0526123046875, -0.0160675048828125, -0.06439208984375, -0.0102996826171875, -0.005214691162109375, -0.005611419677734375, -0.0286407470703125, 0.01378631591796875, 0.006984710693359375, 0.0328369140625, 0.00702667236328125, 0.0019855499267578125, -0.015716552734375, 0.0120849609375, 0.0018720626831054688, 0.048828125, -0.02801513671875, 0.0413818359375, 0.022918701171875, 0.048980712890625, -0.0019464492797851562, 0.0238189697265625, 0.03533935546875, -0.03533935546875, 0.0266876220703125, 0.004352569580078125, -0.0285797119140625, -0.06573486328125, 0.04364013671875, 0.0186614990234375, 0.0640869140625, -0.0129852294921875, 0.034576416015625, -0.0124969482421875, -0.005863189697265625, -0.0186767578125, 0.00830078125, -0.036590576171875, 0.0272674560546875, 0.0178985595703125, -0.0220794677734375, 0.022430419921875, 0.00862884521484375, -0.0184326171875, 0.045196533203125, -0.006244659423828125, 0.030792236328125, -0.0033397674560546875, -0.0088653564453125, 0.0203857421875, 0.067626953125, -0.003559112548828125, 0.051849365234375, 0.0304107666015625, 0.00852203369140625, 0.033782958984375, -0.01476287841796875, -0.0166778564453125, 0.011749267578125, 0.0277557373046875, -0.00948333740234375, -0.0113677978515625, 0.0096435546875, -0.01995849609375, 0.016326904296875, 0.05010986328125, 0.09027099609375, -0.059417724609375, -0.00015997886657714844, 0.04705810546875, -0.034515380859375, -0.0247650146484375, 0.0031757354736328125, -0.022125244140625, -0.05267333984375, 0.033538818359375, -0.019775390625, -0.004482269287109375, 0.01374053955078125, -0.002429962158203125, -0.0139617919921875, -0.0206146240234375, 0.0247802734375, 0.00829315185546875, -0.052642822265625, 0.0074005126953125, 0.053009033203125, -0.03369140625, -0.0279998779296875, 0.024169921875, 0.003742218017578125, -0.03607177734375, -0.050445556640625, 0.01678466796875, 0.04229736328125, -0.03424072265625, -0.031158447265625, -0.00041866302490234375, 0.058746337890625, 0.0207061767578125, 0.003589630126953125, -0.007602691650390625, -0.021697998046875, 0.04150390625, 0.0257720947265625, -0.003726959228515625, 0.006397247314453125, 0.00759124755859375, -0.034942626953125, 0.004688262939453125, -0.0260772705078125, 0.005481719970703125, -0.021697998046875, -0.01174163818359375, 0.07464599609375, 0.0133514404296875, -0.035064697265625, -0.0088958740234375, 0.0297393798828125, 0.00786590576171875, -0.044281005859375, 0.04736328125, -0.0732421875, -0.022979736328125, -0.00838470458984375, -0.01238250732421875, -0.0154571533203125, -0.039306640625, -0.0645751953125, 0.06414794921875, 0.0318603515625, 0.0380859375, -0.00782012939453125, 0.018829345703125, -0.01386260986328125, -0.00444793701171875, -0.01898193359375, 0.0335693359375, 0.019500732421875, 0.0093994140625, -0.043701171875, -0.0142059326171875, -0.00850677490234375, 0.03369140625, 0.00933837890625, -0.00586700439453125, -0.00003790855407714844, 0.022613525390625, 0.033599853515625, 0.020721435546875, -0.01096343994140625, 0.01445770263671875, -0.0033016204833984375, 0.0238800048828125, 0.06585693359375, -0.04156494140625, 0.030242919921875, -0.03399658203125, 0.019927978515625, 0.0064544677734375, 0.0096893310546875, 0.010650634765625, 0.0074310302734375, 0.006305694580078125, -0.010040283203125, 0.01250457763671875, -0.00968170166015625, 0.040283203125, -0.039825439453125, 0.0277557373046875, 0.0203857421875, -0.0631103515625, 0.00441741943359375, -0.037994384765625, 0.041595458984375, 0.027313232421875, 0.03436279296875, 0.049224853515625, 0.0258331298828125, 0.0256805419921875, 0.01181793212890625, 0.0252227783203125, -0.00004184246063232422, -0.003681182861328125, 0.037933349609375, 0.0242919921875, 0.041473388671875, -0.034423828125, -0.006114959716796875, 0.0191192626953125, 0.048614501953125, -0.0223846435546875, -0.00373077392578125, 0.00875091552734375, 0.035125732421875, 0.0194549560546875, -0.005977630615234375, 0.06903076171875, 0.038726806640625, 0.024383544921875, -0.02777099609375, -0.01389312744140625, 0.043365478515625, 0.005725860595703125, 0.00908660888671875, -0.0117340087890625, -0.0019054412841796875, -0.0170745849609375, -0.0235443115234375, 0.0010366439819335938, -0.00814056396484375, 0.01119232177734375, 0.0259857177734375, -0.011260986328125, 0.004947662353515625, 0.006702423095703125, -0.0264434814453125, 0.0615234375, 0.0126800537109375, 0.0199737548828125, -0.02777099609375, -0.0181427001953125, 0.04052734375, 0.01428985595703125, 0.0249481201171875, 0.0194244384765625, 0.021026611328125, 0.0205841064453125, -0.0007581710815429688, -0.0011014938354492188, 0.0287628173828125, -0.020172119140625, 0.035400390625, -0.04547119140625, 0.055908203125, 0.0009455680847167969, -0.00107574462890625, -0.0240478515625, 0.00547027587890625, 0.044952392578125, -0.0161590576171875, 0.0287017822265625, -0.00582122802734375, -0.03509521484375, 0.01120758056640625, -0.0129547119140625, 0.066650390625, -0.005706787109375, -0.039825439453125, -0.00678253173828125, 0.00310516357421875, -0.0531005859375, 0.047943115234375, 0.04571533203125, -0.0118408203125, -0.0026702880859375, 0.053375244140625, -0.046234130859375, 0.0163421630859375, 0.06048583984375, -0.02154541015625, -0.018096923828125, 0.03741455078125, -0.026031494140625, -0.0159759521484375, -0.02801513671875, 0.01459503173828125, 0.049224853515625, -0.015716552734375, 0.10406494140625, -0.052215576171875, -0.001468658447265625, 0.0256805419921875, 0.01338958740234375, 0.0033473968505859375, 0.03277587890625, -0.010101318359375, -0.0004954338073730469, 0.0318603515625, -0.018585205078125, -0.060394287109375, 0.0259552001953125, 0.01016998291015625, 0.00801849365234375, 0.03143310546875, -0.018890380859375, 0.01172637939453125, 0.005390167236328125, 0.044189453125, -0.02899169921875, -0.05804443359375, -0.0274505615234375, 0.0159149169921875, 0.0216064453125, 0.0576171875, 0.0172271728515625, 0.0458984375, 0.0156402587890625, 0.01268768310546875, 0.0048675537109375, -0.04986572265625, 0.01097869873046875, 0.02777099609375, -0.0010986328125, -0.0022602081298828125, 0.022003173828125, -0.0131378173828125, 0.005214691162109375, 0.018829345703125, 0.014312744140625, -0.006557464599609375, -0.032684326171875, -0.044708251953125, 0.006877899169921875, 0.007022857666015625, -0.012451171875, -0.0005006790161132812, 0.0153656005859375, -0.0285186767578125, -0.00664520263671875, -0.030120849609375, 0.002262115478515625, -0.0122833251953125, -0.0321044921875, -0.0003039836883544922, -0.010406494140625, -0.05859375, 0.01174163818359375, -0.0278167724609375, 0.0089569091796875, 0.00003236532211303711, -0.00571441650390625, -0.047698974609375, 0.0166168212890625, 0.018524169921875, -0.0032939910888671875, 0.0614013671875, -0.05389404296875, 0.0066070556640625, -0.013458251953125, -0.043548583984375, -0.0310211181640625, 0.0894775390625, -0.030670166015625, 0.0239715576171875, 0.043121337890625, -0.0285186767578125, -0.03765869140625, 0.0198822021484375, 0.0243377685546875, 0.063232421875, 0.0240325927734375, -0.0235595703125, -0.01143646240234375, 0.0251312255859375, -0.0261383056640625, -0.029449462890625, 0.0030689239501953125, -0.01389312744140625, 0.01143646240234375, 0.033203125, -0.01276397705078125, 0.00623321533203125, -0.039031982421875, -0.09893798828125, 0.07366943359375, -0.006534576416015625, -0.0328369140625, -0.003204345703125, 0.01015472412109375, 0.00171661376953125, -0.0207366943359375, -0.0084075927734375, -0.0248260498046875, -0.020416259765625, -0.0010404586791992188, 0.033203125, -0.0004570484161376953, 0.047607421875, -0.01519775390625, 0.0035800933837890625, 0.0193023681640625, 0.0263214111328125, 0.024261474609375, -0.03936767578125, 0.0111541748046875, 0.0186767578125, 0.031402587890625, -0.014434814453125, 0.02734375, 0.0299072265625, 0.020965576171875, -0.0162811279296875, -0.061431884765625, 0.017822265625, 0.018524169921875, 0.0496826171875, 0.016937255859375, 0.004364013671875, -0.041961669921875, -0.049102783203125, -0.043365478515625, 0.049591064453125, -0.0031986236572265625, -0.016845703125, -0.04779052734375, 0.0007109642028808594, -0.0019216537475585938, 0.01172637939453125, -0.004634857177734375, -0.039520263671875, -0.00392913818359375, -0.01361083984375, 0.0219573974609375, 0.0201416015625, 0.020355224609375, -0.017608642578125, 0.0665283203125, -0.0267333984375, 0.0313720703125, -0.003604888916015625, 0.0208587646484375, 0.0560302734375, 0.004947662353515625, 0.037994384765625, 0.036468505859375, -0.02301025390625, -0.01800537109375, 0.03399658203125, 0.024383544921875, 0.0013628005981445312, -0.0377197265625, 0.0158843994140625, 0.03271484375, -0.0107879638671875, 0.04296875, -0.02154541015625, 0.0148162841796875, -0.018707275390625, 0.0223846435546875, -0.050689697265625, 0.0268707275390625, 0.005764007568359375, 0.0041351318359375, -0.02191162109375, 0.03533935546875, 0.06658935546875, -0.0498046875, 0.02410888671875, -0.018524169921875, 0.031890869140625, 0.00955963134765625, -0.040008544921875, -0.0181427001953125, -0.007076263427734375, -0.0042877197265625 ]
7f3f356eb0f53aa1e757d7f93e0677703a20d172
Wordpress Stackexchange Q: Contact Form 7 Custom Post Action I found this thread here discussing this topic: https://stackoverflow.com/questions/14177844/how-to-change-form-action-url-for-contact-form-7 However it seems that using the following code does not work as the contact form is submitting with ajax back to CF7 and ignoring the post action. add_filter('wpcf7_form_action_url', 'wpcf7_custom_form_action_url'); function wpcf7_custom_form_action_url(){ return 'www.myposthandler.com'; } Is there a way to disable the ajax submission? Site where this is happening: https://daintreecapital.com.au/ the newsletter subscription form in the footer is what I am trying to alter. A: As per the CF7 Documentation, you can disable AJAX form submission by placing the following code in your wp-config.php define('WPCF7_LOAD_JS', false);
Q: Contact Form 7 Custom Post Action I found this thread here discussing this topic: https://stackoverflow.com/questions/14177844/how-to-change-form-action-url-for-contact-form-7 However it seems that using the following code does not work as the contact form is submitting with ajax back to CF7 and ignoring the post action. add_filter('wpcf7_form_action_url', 'wpcf7_custom_form_action_url'); function wpcf7_custom_form_action_url(){ return 'www.myposthandler.com'; } Is there a way to disable the ajax submission? Site where this is happening: https://daintreecapital.com.au/ the newsletter subscription form in the footer is what I am trying to alter. A: As per the CF7 Documentation, you can disable AJAX form submission by placing the following code in your wp-config.php define('WPCF7_LOAD_JS', false);
wordpress
{ "language": "en", "length": 101, "provenance": "stackexchange_00019.jsonl.gz:482876", "question_score": "4", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/290373" }
[ 0.08856201171875, -0.0008807182312011719, -0.03961181640625, -0.06109619140625, 0.022735595703125, -0.0594482421875, 0.043731689453125, 0.0229034423828125, 0.036468505859375, -0.004253387451171875, -0.024383544921875, -0.042236328125, 0.005001068115234375, -0.037841796875, 0.00995635986328125, -0.032501220703125, 0.018646240234375, 0.0233612060546875, 0.0249481201171875, -0.022552490234375, 0.026763916015625, -0.023101806640625, 0.01003265380859375, 0.05712890625, -0.01312255859375, 0.0312347412109375, 0.060089111328125, 0.00689697265625, -0.02435302734375, -0.0113677978515625, 0.00785064697265625, -0.01529693603515625, 0.036163330078125, 0.07513427734375, -0.1240234375, -0.004199981689453125, -0.01169586181640625, 0.0271148681640625, -0.0482177734375, 0.059356689453125, 0.053741455078125, -0.0340576171875, -0.01580810546875, -0.0254669189453125, -0.0246429443359375, -0.018096923828125, 0.047943115234375, -0.0187530517578125, 0.03375244140625, 0.034393310546875, -0.0180511474609375, 0.0228271484375, -0.00397491455078125, -0.017425537109375, -0.01837158203125, -0.03125, -0.046173095703125, 0.03515625, 0.041229248046875, 0.0592041015625, 0.006702423095703125, -0.0053863525390625, -0.0203704833984375, -0.05279541015625, 0.00775146484375, -0.00966644287109375, -0.00548553466796875, 0.015838623046875, -0.01094818115234375, 0.005390167236328125, 0.02679443359375, -0.0280303955078125, 0.015289306640625, 0.00542449951171875, -0.006999969482421875, -0.04217529296875, 0.01715087890625, -0.0036029815673828125, 0.002460479736328125, 0.01641845703125, -0.0098876953125, -0.06341552734375, -0.023345947265625, -0.003009796142578125, -0.0006375312805175781, 0.0186309814453125, -0.0154571533203125, 0.013946533203125, -0.0281524658203125, -0.049407958984375, -0.0172119140625, -0.050933837890625, -0.038787841796875, -0.0181732177734375, -0.012603759765625, -0.04266357421875, 0.006320953369140625, -0.0304107666015625, 0.0011987686157226562, -0.039703369140625, 0.03594970703125, -0.0390625, -0.01158905029296875, 0.0095062255859375, -0.011077880859375, 0.053924560546875, 0.0135650634765625, 0.046600341796875, 0.03045654296875, -0.00948333740234375, 0.009429931640625, 0.0026378631591796875, -0.00420379638671875, 0.044464111328125, -0.0283660888671875, -0.041900634765625, -0.0654296875, 0.0095062255859375, -0.032958984375, 0.03302001953125, -0.00495147705078125, 0.033905029296875, -0.0019550323486328125, -0.051055908203125, 0.0231475830078125, -0.00994873046875, -0.00565338134765625, -0.0298614501953125, 0.04864501953125, -0.01262664794921875, -0.041900634765625, 0.01049041748046875, 0.10906982421875, 0.07244873046875, 0.0628662109375, -0.0191192626953125, 0.01540374755859375, 0.003711700439453125, 0.00910186767578125, 0.01045989990234375, 0.006374359130859375, -0.050048828125, -0.0240936279296875, 0.0292510986328125, -0.028045654296875, 0.029541015625, 0.0064544677734375, 0.0012693405151367188, -0.0024623870849609375, -0.0208740234375, -0.06854248046875, 0.00995635986328125, 0.048370361328125, 0.0289154052734375, -0.019195556640625, 0.01294708251953125, 0.0728759765625, -0.02374267578125, -0.050811767578125, -0.061767578125, 0.0457763671875, -0.0006842613220214844, 0.0107574462890625, 0.0055389404296875, -0.0060882568359375, -0.01410675048828125, -0.061981201171875, 0.0074920654296875, 0.0034332275390625, 0.01074981689453125, -0.0323486328125, 0.038909912109375, -0.03961181640625, -0.004917144775390625, 0.01163482666015625, 0.00057220458984375, 0.0016469955444335938, 0.053955078125, 0.02752685546875, -0.00559234619140625, -0.0107574462890625, -0.033203125, 0.109619140625, -0.032623291015625, -0.0396728515625, 0.07440185546875, 0.0245361328125, 0.033599853515625, -0.0386962890625, 0.008392333984375, 0.0523681640625, 0.08489990234375, 0.0113677978515625, 0.054168701171875, 0.01049041748046875, -0.07977294921875, -0.0216827392578125, -0.0183563232421875, -0.0118408203125, 0.01206207275390625, 0.01201629638671875, 0.01259613037109375, 0.008636474609375, -0.0183258056640625, -0.0062713623046875, 0.01053619384765625, -0.010162353515625, 0.03753662109375, -0.035552978515625, 0.0335693359375, 0.042388916015625, 0.048370361328125, -0.053863525390625, -0.0135498046875, 0.020782470703125, -0.017578125, -0.0198822021484375, 0.01525115966796875, -0.0184783935546875, 0.040496826171875, -0.034149169921875, -0.008544921875, -0.03521728515625, 0.01151275634765625, 0.0243682861328125, -0.020751953125, -0.0217132568359375, -0.023345947265625, -0.0045166015625, -0.004581451416015625, -0.0261077880859375, 0.06414794921875, 0.01302337646484375, -0.011749267578125, -0.059326171875, 0.0009007453918457031, -0.0136566162109375, -0.0228118896484375, -0.0102996826171875, 0.0552978515625, 0.014404296875, 0.0217437744140625, -0.00997161865234375, 0.0287933349609375, 0.029937744140625, -0.03961181640625, -0.0032787322998046875, 0.028900146484375, 0.013458251953125, 0.0296783447265625, -0.0338134765625, -0.0179443359375, 0.0288848876953125, -0.046539306640625, 0.010589599609375, 0.035064697265625, -0.034576416015625, -0.08203125, 0.038726806640625, -0.031982421875, 0.044281005859375, 0.01004791259765625, -0.06549072265625, 0.0259552001953125, 0.020477294921875, -0.00615692138671875, 0.04644775390625, 0.02996826171875, -0.00506591796875, -0.01392364501953125, 0.0089569091796875, -0.005733489990234375, 0.005191802978515625, -0.00363922119140625, 0.0535888671875, 0.01114654541015625, -0.02423095703125, -0.016693115234375, 0.0246124267578125, 0.005054473876953125, -0.0009531974792480469, 0.04412841796875, 0.00701141357421875, -0.006885528564453125, -0.01386260986328125, -0.0732421875, 0.0088348388671875, 0.01024627685546875, 0.0203704833984375, 0.002193450927734375, 0.0290679931640625, -0.0153656005859375, -0.0151214599609375, 0.022247314453125, -0.014312744140625, -0.037933349609375, -0.00691986083984375, -0.021514892578125, 0.0482177734375, -0.043701171875, 0.00444793701171875, 0.049346923828125, -0.03594970703125, 0.040252685546875, 0.0129241943359375, -0.0751953125, -0.01053619384765625, 0.0665283203125, 0.0196685791015625, -0.0186614990234375, -0.060546875, 0.0179595947265625, 0.020965576171875, -0.00275421142578125, 0.0025119781494140625, -0.0288543701171875, 0.002155303955078125, 0.004680633544921875, -0.045013427734375, -0.03314208984375, -0.03277587890625, -0.045501708984375, 0.01690673828125, 0.0206298828125, -0.00670623779296875, -0.005695343017578125, 0.039306640625, 0.02227783203125, 0.0041656494140625, -0.006862640380859375, -0.035797119140625, -0.020233154296875, -0.052734375, -0.016876220703125, 0.0033168792724609375, 0.0073699951171875, -0.004486083984375, 0.048828125, -0.007167816162109375, -0.047607421875, -0.0029010772705078125, -0.01702880859375, 0.0022754669189453125, 0.00603485107421875, -0.028961181640625, 0.006824493408203125, -0.004581451416015625, 0.0028629302978515625, -0.013336181640625, -0.00444793701171875, -0.00012791156768798828, -0.0075531005859375, -0.0234527587890625, -0.0335693359375, 0.00983428955078125, 0.05377197265625, 0.01128387451171875, -0.034881591796875, 0.045867919921875, -0.052337646484375, -0.00859832763671875, -0.006168365478515625, -0.0167694091796875, -0.037689208984375, -0.015777587890625, -0.009307861328125, -0.0306396484375, 0.030303955078125, 0.020477294921875, 0.00707244873046875, 0.041748046875, -0.0360107421875, 0.06683349609375, 0.004978179931640625, 0.01666259765625, -0.051605224609375, 0.06280517578125, -0.003284454345703125, 0.0167388916015625, 0.033599853515625, 0.0078277587890625, -0.002971649169921875, 0.00206756591796875, -0.018341064453125, -0.07745361328125, 0.0178985595703125, -0.12060546875, -0.056610107421875, -0.017120361328125, 0.028411865234375, 0.03533935546875, 0.0672607421875, -0.0374755859375, -0.0214385986328125, 0.001834869384765625, 0.03106689453125, -0.0372314453125, -0.06396484375, -0.01499176025390625, 0.0014810562133789062, -0.06549072265625, 0.006572723388671875, -0.0301361083984375, -0.00450897216796875, 0.00600433349609375, -0.003765106201171875, -0.0162811279296875, -0.06658935546875, 0.022613525390625, -0.02490234375, -0.0177154541015625, 0.00965118408203125, -0.0469970703125, 0.00115966796875, -0.0192413330078125, -0.0182342529296875, -0.1043701171875, -0.017425537109375, 0.019287109375, 0.0479736328125, -0.020172119140625, 0.0097503662109375, -0.02349853515625, 0.05523681640625, 0.0260162353515625, 0.01629638671875, -0.00739288330078125, -0.03131103515625, 0.0055999755859375, 0.04345703125, 0.01983642578125, 0.004100799560546875, 0.00737762451171875, 0.0037975311279296875, -0.0207366943359375, -0.0038433074951171875, -0.0308685302734375, -0.016143798828125, 0.01103973388671875, -0.03741455078125, -0.09222412109375, -0.0579833984375, -0.038543701171875, 0.0057830810546875, -0.00019693374633789062, -0.0318603515625, -0.0472412109375, -0.079345703125, 0.005100250244140625, -0.01132965087890625, -0.01120758056640625, 0.011566162109375, 0.01019287109375, 0.0208282470703125, -0.00647735595703125, -0.0011625289916992188, 0.004756927490234375, 0.045135498046875, 0.001201629638671875, 0.003635406494140625, -0.004589080810546875, -0.048797607421875, 0.0673828125, 0.00974273681640625, 0.02081298828125, -0.01313018798828125, 0.075439453125, -0.011322021484375, -0.00370025634765625, 0.02557373046875, -0.003070831298828125, -0.0430908203125, -0.0126953125, -0.0005807876586914062, -0.014129638671875, 0.046722412109375, 0.031280517578125, -0.048583984375, 0.0523681640625, 0.0103759765625, -0.014862060546875, 0.0072174072265625, 0.0036869049072265625, 0.038238525390625, 0.0222930908203125, 0.0034885406494140625, 0.01116180419921875, -0.0008611679077148438, 0.01126861572265625, -0.0246124267578125, -0.017303466796875, -0.0230255126953125, 0.006671905517578125, 0.024169921875, 0.0024509429931640625, -0.01250457763671875, -0.0026035308837890625, 0.015838623046875, 0.008270263671875, -0.0087890625, -0.042510986328125, -0.01016998291015625, -0.00673675537109375, -0.012603759765625, 0.01006317138671875, 0.00997161865234375, -0.0011005401611328125, 0.0318603515625, 0.0194854736328125, 0.0164642333984375, 0.008056640625, -0.00701904296875, 0.02166748046875, 0.032073974609375, -0.02325439453125, -0.00952911376953125, 0.046356201171875, 0.049713134765625, -0.0010766983032226562, -0.0152587890625, 0.038055419921875, 0.037567138671875, 0.0087738037109375, 0.018218994140625, 0.00690460205078125, -0.001495361328125, -0.0246734619140625, 0.0182952880859375, -0.051361083984375, -0.01995849609375, 0.0218353271484375, 0.033447265625, 0.03546142578125, 0.01338958740234375, -0.0093536376953125, 0.0218963623046875, -0.0038127899169921875, 0.007434844970703125, 0.045013427734375, 0.00414276123046875, -0.006114959716796875, -0.0007238388061523438, -0.01374053955078125, 0.01235198974609375, 0.0122222900390625, 0.00662994384765625, -0.01479339599609375, 0.0025081634521484375, 0.049072265625, 0.001941680908203125, -0.034149169921875, -0.0279083251953125, 0.030364990234375, -0.006103515625, -0.0178985595703125, -0.0159454345703125, -0.016143798828125, -0.00789642333984375, 0.01087188720703125, 0.036407470703125, -0.0226898193359375, 0.011383056640625, -0.00617218017578125, -0.0031948089599609375, -0.0236053466796875, 0.02569580078125, 0.039215087890625, 0.0186614990234375, -0.0177001953125, -0.0179901123046875, -0.056884765625, -0.0271148681640625, -0.04278564453125, -0.03826904296875, -0.021148681640625, 0.0002300739288330078, 0.01268768310546875, 0.01169586181640625, -0.017730712890625, -0.031890869140625, -0.026397705078125, 0.005916595458984375, 0.0294952392578125, 0.0164794921875, -0.0182952880859375, 0.06634521484375, -0.025177001953125, 0.0546875, 0.003612518310546875, 0.0180511474609375, -0.0202484130859375, -0.00720977783203125, -0.0245819091796875, -0.061187744140625, -0.003662109375, 0.03375244140625, -0.006664276123046875, 0.04095458984375, 0.0037841796875, 0.006153106689453125, -0.0191650390625, -0.0142059326171875, -0.00891876220703125, -0.038421630859375, 0.04937744140625, -0.022735595703125, 0.01528167724609375, -0.054779052734375, 0.0171051025390625, 0.05438232421875, -0.0179443359375, -0.029266357421875, 0.03106689453125, -0.01317596435546875, 0.043701171875, -0.00662994384765625, -0.0095367431640625, 0.0198211669921875, 0.05389404296875, 0.01424407958984375, 0.0482177734375, 0.0218658447265625, 0.03668212890625, 0.0238189697265625, 0.044830322265625, -0.063720703125, -0.0439453125, 0.020477294921875, 0.0138702392578125, -0.0295562744140625, 0.0257415771484375, -0.01415252685546875, 0.032745361328125, 0.0712890625, 0.077880859375, -0.1151123046875, 0.025909423828125, 0.0272674560546875, 0.0175323486328125, 0.039398193359375, -0.0201568603515625, -0.02593994140625, -0.0128021240234375, 0.03289794921875, 0.014556884765625, -0.017791748046875, 0.007495880126953125, 0.016876220703125, 0.005741119384765625, 0.001873016357421875, 0.01824951171875, -0.0029315948486328125, 0.004726409912109375, -0.045928955078125, -0.0028171539306640625, -0.01055908203125, -0.039337158203125, 0.00806427001953125, -0.00466156005859375, -0.0221099853515625, -0.082763671875, -0.01197052001953125, 0.0046539306640625, -0.0095672607421875, -0.0552978515625, -0.0167694091796875, 0.050506591796875, 0.037628173828125, -0.006191253662109375, -0.038909912109375, 0.0172271728515625, 0.02191162109375, -0.0230865478515625, -0.0266571044921875, 0.01068878173828125, 0.04754638671875, -0.04132080078125, 0.0290985107421875, -0.0037097930908203125, -0.03375244140625, -0.0006556510925292969, 0.022613525390625, 0.09539794921875, -0.0213623046875, -0.052032470703125, 0.0240631103515625, -0.051055908203125, -0.0218963623046875, -0.028533935546875, -0.01515960693359375, -0.0333251953125, -0.007843017578125, -0.031494140625, -0.047393798828125, 0.0225982666015625, -0.04388427734375, -0.0355224609375, 0.06951904296875, -0.0163421630859375, 0.00983428955078125, -0.000014066696166992188, 0.0494384765625, -0.0028209686279296875, 0.042938232421875, -0.00571441650390625, 0.0203399658203125, 0.0218048095703125, -0.003143310546875, 0.0002663135528564453, -0.0091094970703125, -0.0003178119659423828, 0.03350830078125, 0.04290771484375, 0.0185089111328125, -0.02362060546875, -0.01122283935546875, 0.0401611328125, 0.054901123046875, 0.00638580322265625, 0.011260986328125, -0.0226287841796875, 0.0092315673828125, 0.0400390625, -0.0341796875, 0.01751708984375, 0.0269927978515625, -0.017852783203125, 0.0175628662109375, 0.024444580078125, 0.0302276611328125, -0.033172607421875, 0.064697265625, 0.00099945068359375, -0.0232696533203125, 0.01442718505859375, -0.029083251953125, -0.062469482421875, 0.0302276611328125, -0.035003662109375, -0.0234375, 0.01537322998046875, -0.05242919921875, 0.029022216796875, 0.001018524169921875, 0.0109405517578125, 0.0286407470703125, 0.0186767578125, 0.0304718017578125, -0.01438140869140625, 0.01085662841796875, 0.0115814208984375, -0.0224609375, 0.0280303955078125, -0.00464630126953125, 0.0194091796875, -0.01165771484375, 0.0218353271484375, 0.006824493408203125, 0.0027713775634765625, -0.03936767578125, -0.036834716796875, 0.006717681884765625, 0.0157012939453125, 0.030609130859375, -0.0238037109375, 0.02191162109375, -0.0362548828125, -0.0149688720703125, -0.0305023193359375, -0.0023670196533203125, -0.00725555419921875, 0.0328369140625, -0.0174102783203125, 0.01416778564453125, -0.0157928466796875, -0.0176544189453125, -0.0266571044921875, -0.03948974609375, -0.0081329345703125, 0.056671142578125, 0.05743408203125, 0.02264404296875, -0.037811279296875, -0.02593994140625, -0.01358795166015625, 0.0220794677734375, -0.0023632049560546875, 0.00707244873046875, -0.01294708251953125, -0.009979248046875, -0.01546478271484375, 0.01953125, 0.0249481201171875, 0.08209228515625, 0.0533447265625, 0.037017822265625, 0.04754638671875, 0.0178985595703125, 0.040618896484375, -0.01248931884765625, 0.02880859375, -0.060455322265625, 0.00508880615234375, -0.01751708984375, -0.0034122467041015625, -0.0087890625, -0.0264892578125, 0.03271484375, -0.0288543701171875, 0.020233154296875, -0.0020885467529296875, -0.04510498046875, 0.0235748291015625, -0.01480865478515625, 0.072265625, 0.0034961700439453125, -0.061492919921875, -0.0352783203125, -0.0005626678466796875, -0.0251617431640625, 0.00788116455078125, 0.036346435546875, -0.01532745361328125, 0.0245513916015625, -0.034759521484375, 0.01061248779296875, 0.0239715576171875, -0.022857666015625, -0.04730224609375, 0.036956787109375, 0.051177978515625, -0.0015659332275390625, 0.00013637542724609375, -0.00385284423828125, 0.01708984375, 0.0292205810546875, -0.0303802490234375, 0.0841064453125, -0.050506591796875, -0.0034122467041015625, -0.0406494140625, 0.019805908203125, -0.0279083251953125, -0.05889892578125, 0.03863525390625, 0.0002560615539550781, -0.006671905517578125, 0.00740814208984375, -0.012176513671875, 0.0007219314575195312, 0.0164031982421875, -0.031402587890625, 0.0224151611328125, -0.040191650390625, 0.0149688720703125, -0.01082611083984375, -0.0177459716796875, -0.03131103515625, -0.0234375, -0.0228118896484375, -0.0175323486328125, 0.016204833984375, 0.034149169921875, 0.0140228271484375, 0.03240966796875, -0.035675048828125, 0.01117706298828125, 0.01727294921875, -0.0196533203125, 0.034271240234375, 0.02655029296875, -0.08599853515625, 0.0386962890625, -0.0001068115234375, -0.0259246826171875, 0.034149169921875, 0.0029392242431640625, -0.02032470703125, 0.0195770263671875, -0.0264129638671875, -0.0237579345703125, -0.0216522216796875, 0.006412506103515625, 0.00001800060272216797, -0.004802703857421875, -0.034271240234375, -0.00698089599609375, -0.0306396484375, -0.00592803955078125, 0.002407073974609375, 0.01485443115234375, -0.0020732879638671875, 0.016387939453125, 0.02557373046875, 0.023162841796875, 0.027923583984375, -0.017303466796875, 0.018646240234375, 0.0081024169921875, -0.040771484375, 0.0285491943359375, -0.01213836669921875, 0.0096282958984375, -0.0011434555053710938, 0.03582763671875, -0.033203125, -0.00843048095703125, -0.02838134765625, -0.04693603515625, -0.036285400390625, 0.067626953125, -0.01702880859375, -0.036956787109375, 0.024444580078125, 0.021026611328125, -0.107421875, -0.04010009765625, -0.05657958984375, 0.0015916824340820312, -0.0316162109375, -0.0237884521484375, -0.00910186767578125, 0.0087432861328125, 0.007610321044921875, -0.007793426513671875, -0.00621795654296875, 0.004474639892578125, -0.006195068359375, -0.008758544921875, -0.0252685546875, -0.01849365234375, -0.032562255859375, -0.0231475830078125, -0.0018558502197265625, 0.022491455078125, -0.0168304443359375, -0.02685546875, 0.0255584716796875, 0.0271453857421875, -0.01131439208984375, -0.01474761962890625, -0.0182952880859375, -0.05194091796875, -0.0242156982421875, -0.0147705078125, 0.0677490234375, -0.00022971630096435547, 0.00786590576171875, 0.005413055419921875, 0.0023975372314453125, 0.00298309326171875, -0.01526641845703125, -0.0002887248992919922, 0.021820068359375, 0.0113525390625, 0.03143310546875, -0.0255126953125, -0.0036144256591796875, -0.0031681060791015625, -0.051788330078125, -0.00971221923828125, -0.0287017822265625, 0.00843048095703125, -0.00893402099609375, 0.052947998046875, 0.0059051513671875, -0.0021190643310546875, -0.00893402099609375, 0.02642822265625, 0.00325775146484375, 0.0169677734375, 0.007293701171875, -0.0138702392578125, 0.0002598762512207031, 0.006732940673828125, -0.00614166259765625, 0.00018036365509033203, 0.01087188720703125, -0.021575927734375, -0.0229644775390625, -0.00991058349609375, -0.0234375, -0.0249481201171875, -0.0144195556640625, 0.01300048828125, 0.045806884765625, -0.037872314453125, -0.00365447998046875, 0.0204315185546875, 0.004924774169921875, 0.0137481689453125, 0.02117919921875, 0.0027027130126953125, 0.01253509521484375, -0.0312347412109375, 0.012176513671875, 0.006603240966796875, -0.00472259521484375, -0.03125, 0.001949310302734375, 0.000324249267578125, 0.02337646484375, -0.0035190582275390625, 0.009002685546875, -0.0236053466796875, 0.03814697265625, 0.003910064697265625, 0.04827880859375, -0.03631591796875, -0.0021152496337890625, -0.0262451171875, 0.0198822021484375, 0.027374267578125, 0.006732940673828125, 0.100341796875, -0.0295562744140625, 0.00327301025390625, 0.057037353515625, -0.009002685546875, -0.005634307861328125, 0.004978179931640625, -0.00142669677734375, 0.035064697265625, -0.01251220703125 ]
1e03b96f2980c9388e99cdf08cbf4527e00349c8
Wordpress Stackexchange Q: Woo-commerce | Disable proceed to checkout button in cart page if total in cart less than 15 We are using woocommerce and we need to disable the checkout button if the total in cart less than 15. I used this function: function disable_checkout_button_no_shipping() { $total = WC()->cart->subtotal; if( $total < 15 ){ remove_action( 'woocommerce_proceed_to_checkout', 'woocommerce_button_proceed_to_checkout', 20 ); echo '<a href="#" class="checkout-button button alt wc-forward">Proceed to checkout</a>'; } } add_action( 'woocommerce_proceed_to_checkout', 'disable_checkout_button_no_shipping', 1 ); this function created by Patel Jignesh but it doesn't work! A: Try this: function disable_checkout_button_no_shipping() { $total = WC()->cart->get_cart_subtotal(); // Change made if( $total < 15 ){ remove_action( 'woocommerce_proceed_to_checkout', 'woocommerce_button_proceed_to_checkout', 20 ); echo '<a href="#" class="checkout-button button alt wc-forward">Proceed to checkout</a>'; } } add_action( 'woocommerce_proceed_to_checkout', 'disable_checkout_button_no_shipping', 1 );
Q: Woo-commerce | Disable proceed to checkout button in cart page if total in cart less than 15 We are using woocommerce and we need to disable the checkout button if the total in cart less than 15. I used this function: function disable_checkout_button_no_shipping() { $total = WC()->cart->subtotal; if( $total < 15 ){ remove_action( 'woocommerce_proceed_to_checkout', 'woocommerce_button_proceed_to_checkout', 20 ); echo '<a href="#" class="checkout-button button alt wc-forward">Proceed to checkout</a>'; } } add_action( 'woocommerce_proceed_to_checkout', 'disable_checkout_button_no_shipping', 1 ); this function created by Patel Jignesh but it doesn't work! A: Try this: function disable_checkout_button_no_shipping() { $total = WC()->cart->get_cart_subtotal(); // Change made if( $total < 15 ){ remove_action( 'woocommerce_proceed_to_checkout', 'woocommerce_button_proceed_to_checkout', 20 ); echo '<a href="#" class="checkout-button button alt wc-forward">Proceed to checkout</a>'; } } add_action( 'woocommerce_proceed_to_checkout', 'disable_checkout_button_no_shipping', 1 );
wordpress
{ "language": "en", "length": 122, "provenance": "stackexchange_00019.jsonl.gz:482878", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/290380" }
[ 0.0704345703125, -0.00954437255859375, 0.002025604248046875, -0.06292724609375, 0.01467132568359375, -0.0265045166015625, -0.01287078857421875, -0.0173492431640625, 0.068359375, 0.003265380859375, -0.01403045654296875, -0.022796630859375, -0.0111236572265625, -0.039215087890625, -0.011962890625, -0.0028781890869140625, 0.0206756591796875, 0.014984130859375, 0.028778076171875, 0.008148193359375, -0.0164794921875, 0.03216552734375, 0.004276275634765625, 0.02850341796875, 0.0139923095703125, -0.0068511962890625, 0.0797119140625, -0.0237274169921875, 0.032470703125, -0.0033817291259765625, 0.031402587890625, -0.046600341796875, 0.021087646484375, 0.0242462158203125, -0.04095458984375, 0.0184478759765625, 0.00768280029296875, 0.00902557373046875, 0.0032444000244140625, 0.038909912109375, 0.062103271484375, -0.049346923828125, -0.0401611328125, -0.043365478515625, -0.0289764404296875, 0.009857177734375, 0.021575927734375, -0.0163116455078125, 0.043975830078125, 0.0390625, -0.01690673828125, 0.048248291015625, -0.015289306640625, -0.036865234375, -0.018402099609375, -0.0279998779296875, -0.0263671875, 0.031036376953125, 0.018463134765625, 0.05535888671875, 0.010009765625, 0.0261077880859375, -0.0222930908203125, -0.044403076171875, 0.0031185150146484375, 0.01342010498046875, -0.0209197998046875, -0.00548553466796875, -0.0288238525390625, 0.032257080078125, 0.04229736328125, -0.05438232421875, 0.0147247314453125, 0.037872314453125, -0.04827880859375, -0.06640625, 0.0160369873046875, -0.02093505859375, 0.041290283203125, -0.0022487640380859375, 0.0094451904296875, 0.003650665283203125, -0.0282745361328125, 0.00495147705078125, -0.0249786376953125, -0.01523590087890625, -0.0054168701171875, -0.0027141571044921875, -0.033233642578125, -0.0170135498046875, -0.02752685546875, 0.04010009765625, -0.0298309326171875, -0.0350341796875, -0.041107177734375, -0.031890869140625, -0.00876617431640625, 0.0009589195251464844, 0.022369384765625, 0.008453369140625, 0.018585205078125, -0.040557861328125, 0.01152801513671875, -0.02239990234375, 0.0094146728515625, 0.0304412841796875, 0.00386810302734375, 0.0121002197265625, 0.033782958984375, 0.001964569091796875, -0.004032135009765625, 0.0104217529296875, -0.0157470703125, -0.036407470703125, 0.0076751708984375, -0.0169219970703125, -0.0728759765625, 0.05743408203125, 0.022796630859375, -0.01279449462890625, -0.01097869873046875, 0.021697998046875, -0.0129547119140625, 0.00782012939453125, -0.025634765625, -0.0251922607421875, 0.01184844970703125, -0.0165252685546875, 0.017303466796875, 0.00489044189453125, -0.06793212890625, 0.0030517578125, 0.06365966796875, 0.027069091796875, 0.0230560302734375, -0.011138916015625, 0.032073974609375, 0.004306793212890625, 0.0038776397705078125, 0.01294708251953125, 0.01995849609375, -0.032073974609375, -0.0241546630859375, 0.0274810791015625, 0.0133819580078125, 0.0019197463989257812, 0.00513458251953125, 0.033477783203125, -0.006992340087890625, -0.005340576171875, 0.0275421142578125, -0.0213775634765625, 0.04150390625, -0.0014276504516601562, -0.071044921875, 0.033355712890625, -0.0439453125, 0.026519775390625, -0.04766845703125, -0.00749969482421875, -0.01451873779296875, 0.0126495361328125, 0.0033168792724609375, -0.08349609375, -0.0880126953125, -0.0216064453125, 0.00437164306640625, -0.0007085800170898438, 0.039031982421875, 0.07171630859375, 0.039306640625, -0.0167388916015625, 0.03094482421875, 0.0278778076171875, -0.0013875961303710938, -0.01360321044921875, 0.0156402587890625, 0.00914764404296875, 0.0193634033203125, 0.042877197265625, -0.0120697021484375, -0.0361328125, 0.05767822265625, -0.0258026123046875, -0.05999755859375, 0.055633544921875, -0.0033435821533203125, -0.00220489501953125, -0.0012311935424804688, -0.02593994140625, 0.0733642578125, 0.0655517578125, -0.025726318359375, -0.00023257732391357422, -0.040863037109375, -0.00714874267578125, 0.0161895751953125, 0.019561767578125, -0.006229400634765625, 0.0234527587890625, 0.03173828125, -0.02099609375, 0.00678253173828125, -0.00702667236328125, -0.040985107421875, -0.00905609130859375, -0.000255584716796875, 0.012359619140625, -0.05010986328125, 0.041290283203125, 0.05841064453125, 0.042694091796875, -0.0693359375, 0.02801513671875, 0.0283203125, -0.045166015625, -0.0179901123046875, 0.07891845703125, 0.0144500732421875, 0.05029296875, 0.032012939453125, -0.03460693359375, 0.042694091796875, -0.0125885009765625, 0.013885498046875, -0.02313232421875, 0.0028285980224609375, -0.0233306884765625, 0.029632568359375, 0.00762176513671875, -0.0004520416259765625, 0.0013208389282226562, 0.046142578125, -0.01444244384765625, -0.057037353515625, 0.01361846923828125, 0.0001474618911743164, -0.06500244140625, -0.024078369140625, 0.059234619140625, 0.026702880859375, -0.0006074905395507812, -0.01287841796875, 0.01398468017578125, 0.05316162109375, -0.043487548828125, -0.02130126953125, 0.0209808349609375, -0.00994873046875, -0.004425048828125, 0.00252532958984375, 0.0038013458251953125, 0.059967041015625, 0.05682373046875, -0.011627197265625, 0.050262451171875, -0.033355712890625, -0.025054931640625, -0.01434326171875, 0.0003027915954589844, 0.0085601806640625, -0.02508544921875, -0.0005917549133300781, -0.0251617431640625, 0.00803375244140625, -0.01030731201171875, 0.01026153564453125, -0.0125579833984375, -0.01023101806640625, -0.00763702392578125, 0.015716552734375, -0.049835205078125, -0.004245758056640625, 0.0204315185546875, 0.003978729248046875, -0.0341796875, -0.044586181640625, 0.01027679443359375, 0.01381683349609375, -0.002727508544921875, -0.0196990966796875, -0.0109100341796875, -0.0144805908203125, -0.00791168212890625, 0.033599853515625, -0.07769775390625, 0.0096435546875, -0.010589599609375, -0.03759765625, -0.03594970703125, 0.0010137557983398438, 0.0009937286376953125, -0.04144287109375, 0.0156707763671875, -0.0249786376953125, -0.02777099609375, 0.033782958984375, -0.005290985107421875, 0.024627685546875, -0.024200439453125, 0.0233306884765625, 0.050994873046875, -0.0017528533935546875, -0.0011577606201171875, 0.0266876220703125, -0.0400390625, 0.0277862548828125, 0.01255035400390625, -0.00768280029296875, 0.022308349609375, -0.0767822265625, 0.01230621337890625, 0.0200653076171875, 0.048248291015625, -0.0277099609375, -0.059967041015625, 0.0042877197265625, 0.007701873779296875, -0.049530029296875, -0.04705810546875, -0.0594482421875, -0.07440185546875, 0.03729248046875, 0.002117156982421875, -0.024566650390625, -0.00547027587890625, 0.04083251953125, 0.03338623046875, -0.06280517578125, -0.0301361083984375, 0.05072021484375, -0.0240478515625, 0.0170135498046875, 0.04345703125, 0.0300750732421875, 0.00293731689453125, -0.007366180419921875, 0.0880126953125, -0.00925445556640625, -0.038970947265625, -0.007076263427734375, 0.0192718505859375, -0.004306793212890625, 0.017242431640625, -0.018310546875, -0.0241546630859375, 0.0128631591796875, 0.00595855712890625, 0.007366180419921875, -0.0114898681640625, 0.03155517578125, -0.03973388671875, 0.006771087646484375, -0.03607177734375, 0.01666259765625, -0.00971221923828125, -0.0224151611328125, -0.037322998046875, 0.0004363059997558594, -0.072998046875, -0.0582275390625, -0.016143798828125, -0.07000732421875, 0.0241546630859375, 0.06719970703125, -0.0197296142578125, 0.005054473876953125, -0.005340576171875, 0.051513671875, 0.00241851806640625, 0.02703857421875, -0.00994873046875, 0.0211944580078125, 0.01473236083984375, 0.044158935546875, -0.0584716796875, 0.025177001953125, -0.0042266845703125, 0.0189971923828125, 0.01157379150390625, 0.0003788471221923828, -0.038543701171875, 0.0245208740234375, -0.07501220703125, -0.0191802978515625, 0.046478271484375, -0.0250091552734375, 0.005802154541015625, -0.03131103515625, -0.0177154541015625, -0.01102447509765625, 0.06451416015625, -0.0258331298828125, -0.0350341796875, -0.021209716796875, 0.01739501953125, 0.0121917724609375, -0.0582275390625, 0.0411376953125, -0.026275634765625, -0.04791259765625, 0.01468658447265625, -0.02325439453125, -0.010528564453125, 0.0218353271484375, -0.11041259765625, 0.005977630615234375, -0.0546875, 0.0084228515625, 0.021148681640625, -0.01395416259765625, 0.047821044921875, -0.033782958984375, 0.0341796875, -0.02386474609375, -0.00798797607421875, 0.0004329681396484375, 0.00151824951171875, 0.01201629638671875, -0.01910400390625, -0.0005702972412109375, 0.005084991455078125, -0.01285552978515625, 0.01187896728515625, -0.00438690185546875, 0.040374755859375, -0.03363037109375, -0.005069732666015625, -0.007404327392578125, 0.0292205810546875, -0.007381439208984375, 0.0157318115234375, 0.005229949951171875, 0.006191253662109375, 0.0045318603515625, 0.02301025390625, -0.043060302734375, -0.00957489013671875, -0.00844573974609375, -0.036895751953125, -0.08642578125, -0.06317138671875, -0.0040130615234375, 0.01299285888671875, 0.0018129348754882812, 0.01032257080078125, -0.05108642578125, -0.081787109375, 0.018524169921875, -0.038909912109375, -0.037200927734375, 0.0134124755859375, 0.00917816162109375, 0.0174713134765625, -0.0048675537109375, 0.00848388671875, 0.0141143798828125, 0.002063751220703125, 0.0101165771484375, -0.02984619140625, -0.0601806640625, -0.009918212890625, 0.0072784423828125, -0.053253173828125, -0.00893402099609375, -0.0196075439453125, 0.052459716796875, -0.0251922607421875, -0.03314208984375, 0.006031036376953125, -0.058746337890625, 0.05615234375, -0.003307342529296875, 0.00478363037109375, -0.017913818359375, 0.0162200927734375, 0.015655517578125, -0.0014591217041015625, 0.0231475830078125, 0.0111541748046875, -0.01270294189453125, -0.007129669189453125, 0.0293731689453125, 0.035675048828125, 0.0167236328125, 0.023590087890625, 0.01123046875, 0.009063720703125, -0.0142364501953125, -0.00940704345703125, 0.006092071533203125, -0.01329803466796875, 0.037567138671875, -0.025146484375, -0.01824951171875, -0.0033855438232421875, 0.0179443359375, -0.01739501953125, 0.00559234619140625, -0.0092010498046875, -0.07696533203125, 0.01407623291015625, -0.0032367706298828125, -0.011566162109375, -0.04620361328125, 0.060150146484375, -0.0185394287109375, -0.003810882568359375, 0.006168365478515625, -0.0870361328125, -0.02752685546875, -0.05743408203125, -0.00273895263671875, 0.0014410018920898438, -0.028472900390625, -0.01904296875, 0.056610107421875, 0.0196990966796875, 0.005313873291015625, -0.00800323486328125, 0.0288238525390625, 0.022705078125, 0.0223388671875, 0.0211944580078125, -0.01354217529296875, -0.007648468017578125, -0.0054168701171875, -0.0003447532653808594, -0.0219573974609375, -0.042938232421875, 0.058502197265625, 0.006855010986328125, -0.0042266845703125, 0.00850677490234375, 0.00064849853515625, 0.041778564453125, -0.03961181640625, 0.01258087158203125, 0.012298583984375, -0.036895751953125, -0.007266998291015625, 0.0128936767578125, -0.01219940185546875, 0.021636962890625, -0.0003857612609863281, 0.0084228515625, -0.017791748046875, -0.01131439208984375, 0.003002166748046875, -0.00994873046875, -0.0379638671875, -0.022491455078125, -0.0018367767333984375, 0.006229400634765625, 0.0038661956787109375, 0.001796722412109375, -0.033416748046875, -0.01012420654296875, -0.001708984375, 0.041351318359375, -0.0360107421875, 0.024505615234375, -0.00811767578125, -0.00136566162109375, -0.023956298828125, 0.0243988037109375, 0.0172882080078125, -0.0030193328857421875, -0.0211639404296875, -0.018035888671875, -0.045318603515625, -0.046783447265625, -0.04803466796875, 0.002376556396484375, -0.034820556640625, 0.036956787109375, 0.0120849609375, 0.004024505615234375, -0.0122528076171875, -0.0227508544921875, -0.019622802734375, 0.03582763671875, 0.037841796875, 0.03582763671875, -0.03289794921875, 0.0362548828125, 0.004528045654296875, -0.029754638671875, -0.004596710205078125, 0.0225067138671875, 0.04132080078125, 0.0004191398620605469, 0.0138397216796875, 0.01296234130859375, -0.0232696533203125, -0.01690673828125, -0.0273590087890625, 0.0053558349609375, 0.08642578125, -0.022979736328125, 0.01012420654296875, 0.00021159648895263672, 0.0017557144165039062, -0.027587890625, -0.040008544921875, 0.01103973388671875, 0.01038360595703125, -0.01177215576171875, -0.01204681396484375, -0.0014696121215820312, 0.017425537109375, 0.007053375244140625, -0.0015783309936523438, -0.0033550262451171875, 0.00305938720703125, -0.0164337158203125, -0.0537109375, 0.0292816162109375, 0.0745849609375, 0.0275421142578125, 0.055816650390625, -0.01169586181640625, 0.0243377685546875, 0.035980224609375, 0.038055419921875, -0.008636474609375, -0.0107879638671875, 0.062225341796875, 0.010498046875, -0.03900146484375, 0.0276641845703125, -0.030975341796875, 0.048828125, 0.03961181640625, 0.07977294921875, -0.08892822265625, 0.030517578125, 0.043304443359375, -0.01171875, 0.033905029296875, -0.03851318359375, 0.0418701171875, -0.005527496337890625, 0.044891357421875, 0.038970947265625, -0.0163116455078125, -0.0017232894897460938, -0.0193023681640625, -0.00310516357421875, -0.005046844482421875, 0.0117645263671875, -0.00681304931640625, -0.1268310546875, 0.0128021240234375, 0.07611083984375, -0.05670166015625, -0.0197296142578125, -0.018157958984375, 0.024871826171875, -0.034210205078125, -0.05499267578125, 0.0232696533203125, -0.017791748046875, 0.0033721923828125, 0.0250091552734375, -0.02239990234375, -0.007289886474609375, 0.02374267578125, -0.037384033203125, 0.041534423828125, -0.0116729736328125, -0.046844482421875, -0.006801605224609375, 0.0012407302856445312, 0.01177215576171875, 0.0224761962890625, -0.038970947265625, 0.01348876953125, -0.04815673828125, 0.0163421630859375, 0.01544952392578125, 0.06884765625, 0.03863525390625, -0.0033016204833984375, -0.0328369140625, 0.06494140625, 0.029449462890625, -0.034942626953125, 0.01073455810546875, 0.057952880859375, -0.00980377197265625, 0.01389312744140625, 0.0238189697265625, 0.018890380859375, -0.0275115966796875, 0.0030155181884765625, -0.056976318359375, 0.09796142578125, -0.01174163818359375, 0.014556884765625, -0.01593017578125, 0.045379638671875, -0.004669189453125, 0.0260009765625, -0.0347900390625, 0.0576171875, -0.007053375244140625, 0.06878662109375, -0.0239105224609375, -0.00714874267578125, 0.03594970703125, 0.03033447265625, 0.01357269287109375, 0.004993438720703125, -0.0032939910888671875, 0.014495849609375, 0.05328369140625, 0.068603515625, 0.021759033203125, -0.00942230224609375, -0.006465911865234375, -0.01355743408203125, 0.018218994140625, -0.036346435546875, 0.0202484130859375, -0.028411865234375, -0.005046844482421875, 0.004001617431640625, 0.00885772705078125, -0.00630950927734375, -0.0139617919921875, 0.062255859375, -0.01910400390625, -0.007354736328125, 0.01271820068359375, 0.018463134765625, 0.01448822021484375, 0.042999267578125, 0.005695343017578125, -0.005001068115234375, 0.016387939453125, -0.03338623046875, 0.04315185546875, -0.01258087158203125, 0.02764892578125, 0.047607421875, 0.026214599609375, 0.06646728515625, -0.01338958740234375, 0.015167236328125, 0.003681182861328125, -0.018096923828125, 0.01160430908203125, 0.01428985595703125, 0.0172271728515625, 0.00003653764724731445, 0.071533203125, 0.01221466064453125, 0.0011234283447265625, -0.02642822265625, 0.027435302734375, 0.000014066696166992188, -0.03912353515625, -0.00904083251953125, -0.07635498046875, -0.0014257431030273438, -0.033599853515625, -0.08123779296875, -0.0213775634765625, 0.00409698486328125, 0.035888671875, 0.03314208984375, 0.0290679931640625, 0.04833984375, -0.09503173828125, -0.0174713134765625, -0.00827789306640625, -0.0197906494140625, -0.0019855499267578125, 0.01276397705078125, 0.0165252685546875, 0.015838623046875, 0.0034809112548828125, -0.0101776123046875, 0.006061553955078125, 0.01739501953125, -0.004329681396484375, -0.01078033447265625, -0.016082763671875, -0.033355712890625, 0.018798828125, 0.0242767333984375, -0.027557373046875, 0.0330810546875, 0.0231170654296875, 0.059844970703125, 0.039764404296875, -0.01206207275390625, 0.091552734375, -0.007114410400390625, -0.040130615234375, 0.01378631591796875, 0.01052093505859375, 0.046539306640625, 0.00873565673828125, -0.01511383056640625, 0.05523681640625, 0.01355743408203125, -0.035736083984375, 0.01971435546875, -0.0002570152282714844, -0.0192718505859375, 0.019622802734375, 0.0465087890625, 0.0280914306640625, 0.00891876220703125, -0.025054931640625, -0.0109710693359375, -0.00218963623046875, 0.046966552734375, -0.032623291015625, 0.005268096923828125, -0.035919189453125, 0.0784912109375, 0.0113525390625, 0.01296234130859375, -0.017578125, -0.00847625732421875, 0.00917816162109375, -0.0144195556640625, 0.017425537109375, 0.010284423828125, -0.0236358642578125, -0.002521514892578125, -0.0164794921875, 0.0187530517578125, 0.0245513916015625, 0.024627685546875, -0.0021724700927734375, 0.026336669921875, -0.0050201416015625, -0.035919189453125, 0.017852783203125, -0.0291900634765625, 0.05133056640625, -0.0175018310546875, -0.035003662109375, 0.0026836395263671875, 0.0273590087890625, 0.00481414794921875, 0.03057861328125, -0.0440673828125, 0.0115509033203125, -0.0501708984375, 0.02899169921875, -0.0063934326171875, 0.0128631591796875, -0.02862548828125, -0.044219970703125, -0.034515380859375, 0.00518035888671875, -0.00031948089599609375, -0.0018987655639648438, -0.019439697265625, 0.00785064697265625, 0.006439208984375, -0.006908416748046875, 0.0260009765625, 0.0038585662841796875, 0.040252685546875, 0.0290069580078125, -0.033233642578125, -0.0009312629699707031, -0.006561279296875, -0.0091094970703125, -0.00945281982421875, 0.0260467529296875, -0.045989990234375, 0.0206756591796875, -0.09637451171875, -0.0138702392578125, 0.04925537109375, 0.0029659271240234375, -0.0294952392578125, 0.0123443603515625, 0.035308837890625, -0.029571533203125, 0.03448486328125, -0.02972412109375, -0.0004944801330566406, -0.0281982421875, -0.0106658935546875, 0.00878143310546875, 0.0007066726684570312, 0.004001617431640625, 0.06317138671875, -0.021636962890625, 0.027801513671875, 0.002170562744140625, -0.024261474609375, -0.017730712890625, -0.004852294921875, 0.0288848876953125, -0.01117706298828125, 0.022796630859375, -0.0107879638671875, -0.016876220703125, -0.028350830078125, -0.033599853515625, -0.03912353515625, 0.055633544921875, -0.0244903564453125, -0.01654052734375, 0.005458831787109375, -0.007904052734375, -0.02093505859375, -0.03851318359375, -0.0009937286376953125, 0.0032596588134765625, 0.032379150390625, -0.041839599609375, 0.0147552490234375, -0.01043701171875, 0.03253173828125, -0.036834716796875, -0.01363372802734375, -0.04193115234375, -0.0084381103515625, -0.005615234375, -0.005840301513671875, 0.00867462158203125, -0.0399169921875, -0.06768798828125, 0.00843048095703125, -0.0035572052001953125, -0.03509521484375, -0.00907135009765625, 0.01053619384765625, -0.02587890625, 0.024932861328125, 0.004730224609375, -0.01464080810546875, 0.00540924072265625, 0.0157623291015625, -0.005001068115234375, 0.002323150634765625, 0.0208282470703125, 0.0010347366333007812, -0.019439697265625, 0.0276947021484375, 0.0193939208984375, -0.00217437744140625, -0.010498046875, -0.01108551025390625, 0.02484130859375, 0.01508331298828125, -0.0316162109375, 0.0115966796875, 0.0343017578125, 0.040313720703125, 0.003696441650390625, -0.03173828125, 0.0282745361328125, -0.02105712890625, 0.0136260986328125, -0.036468505859375, -0.0162353515625, 0.003658294677734375, 0.004390716552734375, -0.01078033447265625, -0.0196685791015625, -0.0325927734375, -0.0028591156005859375, -0.031463623046875, -0.01197052001953125, -0.033416748046875, 0.000507354736328125, -0.034332275390625, 0.0362548828125, -0.046173095703125, -0.01885986328125, 0.01183319091796875, -0.00255584716796875, -0.03521728515625, 0.06170654296875, -0.01275634765625, -0.0189056396484375, 0.0159759521484375, -0.0159759521484375, -0.0293426513671875, 0.00487518310546875, -0.006103515625, -0.044036865234375, 0.00818634033203125, -0.025054931640625, 0.03271484375, -0.041107177734375, 0.035400390625, -0.0567626953125, 0.032623291015625, -0.040771484375, -0.0106964111328125, 0.016204833984375, -0.0208740234375, -0.01380157470703125, 0.0015726089477539062, 0.0232086181640625, 0.0567626953125, 0.00489044189453125, 0.06256103515625, 0.0108489990234375, 0.058349609375, 0.039703369140625, -0.0286407470703125, 0.06561279296875, -0.032318115234375, 0.001697540283203125, -0.0087127685546875, -0.004085540771484375, -0.0726318359375, 0.038543701171875, 0.021942138671875, 0.0126953125, 0.037353515625 ]
23b7618d2c8a719aeed3e65ba5086ee8a08c551d
Wordpress Stackexchange Q: WP CLI "Error establishing a database connection" in localhost (MAMP) I get this error when I try to create something with WP CLI: Error establishing a database connection. This either means that the username and password information in your `wp-config.php` file is incorrect or we can’t contact the database server at `localhost`. This could mean your host’s database server is down. But I can open the site with the link: http://localhost:8888/projectname Any idea? A: Make sure to use the MAMP PHP binary. You can check the which PHP Version WP CLI is running with php wp-cli.phar --info To use the latest MAMP PHP you need to modify your bash or zsh profile: PHP_VERSION=$(ls /Applications/MAMP/bin/php/ | sort -n | tail -1) export PATH=/Applications/MAMP/bin/php/${PHP_VERSION}/bin:$PATH Make sure to reload the profile: source ~/.bash_profile Make sure that the changes are applied correctly: php wp-cli.phar --info
Q: WP CLI "Error establishing a database connection" in localhost (MAMP) I get this error when I try to create something with WP CLI: Error establishing a database connection. This either means that the username and password information in your `wp-config.php` file is incorrect or we can’t contact the database server at `localhost`. This could mean your host’s database server is down. But I can open the site with the link: http://localhost:8888/projectname Any idea? A: Make sure to use the MAMP PHP binary. You can check the which PHP Version WP CLI is running with php wp-cli.phar --info To use the latest MAMP PHP you need to modify your bash or zsh profile: PHP_VERSION=$(ls /Applications/MAMP/bin/php/ | sort -n | tail -1) export PATH=/Applications/MAMP/bin/php/${PHP_VERSION}/bin:$PATH Make sure to reload the profile: source ~/.bash_profile Make sure that the changes are applied correctly: php wp-cli.phar --info A: Go into your wp-config.php and change your DB_HOST to 127.0.0.1 instead of localhost. Credit goes to Craig Wayne above in the comments. A: There's two parts of this that need to work together: — You need to switch from localhost to 127.0.0.1 and add the port number at the end. For me, it was 127.0.0.1:3306. The port number is in the MySQL panel in Mamp. A: For me, the answer was changing the setting for DB_HOST to 127.0.0.1:8889 instead of localhost in wp-config.php, and also checking the box to "Allow network access to MySQL" in the MySQL settings. Getting the port set to the port that MAMP Pro is using for the database was the critical missing piece that I didn't see in the other answers here. YMMV. A: Step1: check if your mysql server is running Step2: if yes then you can log in to mysql using mysql -u root -p then enter your password: ( you must use this command from terminal ) then use following command to ensure that database exists: show databases; grant all privileges on database_name.* to 'root'@'localhost' identified by 'password'; flush privileges; exit; now edit the wp-config.php file and search for define('DB_NAME', 'db_name'); define('DB_USER', 'root'); define('DB_PASSWORD', 'password'); define('DB_HOST', 'localhost'); Now restart the server and try to login to your wordpress dashboard. I hope it helps. A: In my case, besides the aforementioned error message, I also got the warnings below: PHP Warning: mysqli_real_connect(): Server sent charset (255) unknown to the client. Please, report to the developers in /var/www/html/wp-includes/wp-db.php on line 1531 Warning: mysqli_real_connect(): Server sent charset (255) unknown to the client. Please, report to the developers in /var/www/html/wp-includes/wp-db.php on line 1531 PHP Warning: mysqli_real_connect(): (HY000/2054): Server sent charset unknown to the client. Please, report to the developers in /var/www/html/wp-includes/wp-db.php on line 1531 Warning: mysqli_real_connect(): (HY000/2054): Server sent charset unknown to the client. Please, report to the developers in /var/www/html/wp-includes/wp-db.php on line 1531 PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /var/www/html/wp-includes/wp-db.php on line 1562 Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /var/www/html/wp-includes/wp-db.php on line 1562 PHP Warning: mysql_connect(): Server sent charset (255) unknown to the client. Please, report to the developers in /var/www/html/wp-includes/wp-db.php on line 1562 Warning: mysql_connect(): Server sent charset (255) unknown to the client. Please, report to the developers in /var/www/html/wp-includes/wp-db.php on line 1562 PHP Warning: mysql_connect(): Server sent charset unknown to the client. Please, report to the developers in /var/www/html/wp-includes/wp-db.php on line 1562 Warning: mysql_connect(): Server sent charset unknown to the client. Please, report to the developers in /var/www/html/wp-includes/wp-db.php on line 1562 According to this question, this issue happens because the default charset for MySQL 8.0 is utfmb4. In fact, I could replicate the error by upgrading from MySQL 5.7 to MySQL 8.0 I solved the issue by exporting the database, downgrading to MySQL 5.7 and re-importing the data. I also ran tests on MariaDB 10.3 and it works fine. A: In my case, I had to do what eknows proposed in his solution (https://wordpress.stackexchange.com/a/313862/172520) AND of course enabling network access to MySQL for my Mac (using MAMP Pro). A: You may also get this error with certain WP operations if you are using it on a WordPress multisite, in which case you need to specify an URL eg. --url=mysite.org
wordpress
{ "language": "en", "length": 708, "provenance": "stackexchange_00019.jsonl.gz:483000", "question_score": "25", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/290793" }
[ 0.0079193115234375, -0.007350921630859375, -0.0264739990234375, -0.0268707275390625, 0.01308441162109375, -0.03240966796875, 0.0225830078125, 0.016754150390625, 0.04473876953125, 0.00444793701171875, -0.034454345703125, -0.005275726318359375, -0.00751495361328125, -0.0274658203125, -0.005428314208984375, -0.0132904052734375, 0.021209716796875, 0.005367279052734375, 0.01552581787109375, -0.01554107666015625, 0.0057373046875, 0.002681732177734375, 0.0164794921875, 0.01934814453125, 0.005077362060546875, 0.005779266357421875, 0.09515380859375, 0.0197906494140625, -0.005462646484375, -0.007415771484375, 0.005340576171875, -0.0347900390625, 0.01390838623046875, 0.0046234130859375, -0.01580810546875, -0.01383209228515625, 0.0149993896484375, 0.0043182373046875, -0.02093505859375, 0.0306854248046875, 0.0028076171875, 0.00004845857620239258, 0.004413604736328125, 0.00901031494140625, -0.0279693603515625, -0.0236663818359375, -0.0014667510986328125, -0.0281219482421875, -0.0035495758056640625, -0.0205230712890625, -0.0289459228515625, 0.02813720703125, -0.0032711029052734375, -0.016998291015625, -0.0028934478759765625, -0.038299560546875, -0.007411956787109375, 0.005733489990234375, 0.0245208740234375, 0.034576416015625, -0.0137939453125, 0.014404296875, -0.004974365234375, -0.0292816162109375, -0.018890380859375, -0.0294647216796875, 0.01910400390625, 0.02313232421875, -0.00737762451171875, -0.00916290283203125, 0.029144287109375, 0.00995635986328125, -0.0179290771484375, -0.01324462890625, -0.0025730133056640625, 0.019317626953125, 0.029571533203125, 0.005146026611328125, -0.0080413818359375, 0.005626678466796875, 0.05499267578125, -0.0265045166015625, -0.015960693359375, -0.023040771484375, 0.045074462890625, 0.022796630859375, 0.00940704345703125, -0.0226593017578125, 0.0035953521728515625, -0.022369384765625, -0.01312255859375, -0.04425048828125, 0.0059814453125, 0.0033111572265625, -0.028900146484375, -0.0321044921875, -0.0166168212890625, -0.01270294189453125, -0.0149993896484375, 0.00738525390625, 0.023712158203125, -0.0277252197265625, 0.0271148681640625, -0.0163421630859375, 0.022735595703125, 0.05877685546875, -0.02349853515625, -0.047882080078125, 0.018218994140625, -0.0011320114135742188, 0.01235198974609375, -0.01432037353515625, -0.0245208740234375, -0.04034423828125, -0.01549530029296875, 0.035430908203125, -0.026275634765625, -0.0188446044921875, -0.00926971435546875, -0.0011386871337890625, -0.01395416259765625, 0.0251922607421875, -0.0792236328125, 0.02777099609375, -0.007244110107421875, -0.016876220703125, 0.0276947021484375, 0.0276336669921875, -0.055938720703125, 0.04962158203125, -0.01068878173828125, -0.0268096923828125, 0.047943115234375, 0.0711669921875, 0.016143798828125, -0.0182342529296875, 0.045318603515625, 0.0279541015625, 0.0159912109375, 0.03936767578125, -0.01387786865234375, -0.04931640625, -0.0251617431640625, 0.0081939697265625, -0.006969451904296875, 0.0241851806640625, 0.0004849433898925781, -0.00672149658203125, 0.0017004013061523438, -0.0037841796875, -0.0304412841796875, -0.0246734619140625, 0.00521087646484375, 0.035614013671875, 0.042022705078125, 0.007366180419921875, 0.034820556640625, -0.013031005859375, 0.0077667236328125, 0.0014696121215820312, 0.00872039794921875, 0.003582000732421875, 0.00322723388671875, -0.054779052734375, -0.04217529296875, -0.016143798828125, -0.05462646484375, 0.00420379638671875, 0.024993896484375, -0.00032639503479003906, 0.00974273681640625, -0.00786590576171875, 0.01526641845703125, 0.01456451416015625, 0.00980377197265625, 0.0172576904296875, -0.0246429443359375, 0.003299713134765625, 0.03497314453125, 0.025543212890625, 0.0043792724609375, -0.0240631103515625, 0.035491943359375, 0.01122283935546875, -0.037628173828125, 0.024261474609375, 0.016510009765625, 0.06988525390625, 0.0093536376953125, 0.03271484375, 0.0001456737518310547, 0.0037212371826171875, -0.030181884765625, 0.03607177734375, -0.055328369140625, -0.026123046875, -0.02227783203125, 0.0200042724609375, -0.048553466796875, 0.0284271240234375, 0.0030975341796875, -0.0018720626831054688, -0.017181396484375, 0.0015954971313476562, -0.10198974609375, 0.014923095703125, -0.04205322265625, 0.0238494873046875, 0.028472900390625, -0.0307159423828125, -0.0170745849609375, -0.017669677734375, 0.030059814453125, -0.076416015625, -0.054412841796875, 0.0316162109375, -0.062744140625, 0.01739501953125, -0.028594970703125, 0.0784912109375, -0.06427001953125, -0.035552978515625, -0.06427001953125, -0.070556640625, -0.03045654296875, 0.031341552734375, -0.028411865234375, 0.033843994140625, -0.01239013671875, 0.022186279296875, 0.03204345703125, -0.0012845993041992188, -0.0164337158203125, -0.033111572265625, -0.04644775390625, 0.00756072998046875, -0.00965118408203125, -0.044464111328125, 0.0045318603515625, 0.049835205078125, 0.053741455078125, -0.005828857421875, 0.01068115234375, -0.0171356201171875, 0.027740478515625, -0.08056640625, 0.010345458984375, -0.025115966796875, -0.0235595703125, 0.00992584228515625, -0.002410888671875, 0.01922607421875, 0.025146484375, 0.002838134765625, -0.054901123046875, 0.0716552734375, -0.0160980224609375, -0.0160980224609375, 0.01535797119140625, -0.0236053466796875, 0.01373291015625, -0.07257080078125, -0.048980712890625, -0.021453857421875, 0.00801849365234375, -0.01120758056640625, 0.025665283203125, 0.019989013671875, 0.003936767578125, -0.0128021240234375, 0.004177093505859375, -0.0226593017578125, 0.0200958251953125, -0.0149078369140625, -0.054351806640625, 0.041839599609375, -0.040191650390625, 0.02349853515625, 0.01910400390625, -0.00632476806640625, -0.0220794677734375, -0.01088714599609375, 0.03338623046875, -0.0099334716796875, 0.016265869140625, -0.0112152099609375, 0.04656982421875, -0.015838623046875, -0.0394287109375, -0.0501708984375, 0.00045418739318847656, -0.0018901824951171875, -0.07037353515625, 0.036285400390625, -0.00798797607421875, -0.036895751953125, 0.07830810546875, 0.010345458984375, -0.0017681121826171875, 0.03564453125, 0.0545654296875, 0.04425048828125, -0.010498046875, 0.01363372802734375, -0.026580810546875, 0.03851318359375, -0.023590087890625, -0.016021728515625, -0.039398193359375, -0.04071044921875, -0.01483154296875, -0.0006175041198730469, 0.024932861328125, 0.031463623046875, 0.004360198974609375, -0.043243408203125, 0.0029201507568359375, 0.0290374755859375, -0.0650634765625, -0.076171875, 0.0011281967163085938, 0.0198974609375, -0.01270294189453125, 0.0005459785461425781, 0.01071929931640625, 0.0026092529296875, -0.00591278076171875, -0.0019779205322265625, 0.037322998046875, -0.04754638671875, -0.05133056640625, -0.0692138671875, -0.08343505859375, -0.046875, 0.00389862060546875, -0.00008761882781982422, -0.004177093505859375, 0.07476806640625, -0.0021762847900390625, -0.0701904296875, -0.0028839111328125, -0.0203857421875, -0.003448486328125, 0.028106689453125, -0.0291290283203125, 0.01354217529296875, 0.03765869140625, 0.00939178466796875, 0.005435943603515625, 0.00792694091796875, 0.0183258056640625, -0.035736083984375, 0.020782470703125, -0.004970550537109375, 0.003437042236328125, 0.034454345703125, -0.025054931640625, -0.035858154296875, -0.0091400146484375, -0.06787109375, -0.0033206939697265625, -0.0018672943115234375, -0.0275115966796875, -0.0182647705078125, 0.01019287109375, -0.018402099609375, -0.01641845703125, -0.019927978515625, 0.0208740234375, 0.003917694091796875, 0.028106689453125, -0.0438232421875, 0.06878662109375, 0.0072021484375, 0.009033203125, -0.032379150390625, 0.06256103515625, -0.00020873546600341797, -0.0408935546875, 0.0184173583984375, -0.037689208984375, -0.0227203369140625, -0.014739990234375, -0.04071044921875, -0.034088134765625, 0.0160369873046875, -0.02874755859375, 0.0411376953125, -0.0537109375, -0.01367950439453125, -0.01531219482421875, 0.07513427734375, 0.0207977294921875, -0.049285888671875, 0.014862060546875, 0.04974365234375, -0.08380126953125, -0.0290679931640625, 0.013580322265625, -0.00616455078125, -0.0185699462890625, -0.00556182861328125, -0.0170135498046875, -0.0272369384765625, 0.0155487060546875, -0.031707763671875, 0.01995849609375, -0.036163330078125, 0.042724609375, -0.05828857421875, 0.035400390625, 0.01422119140625, 0.0159912109375, -0.0101165771484375, -0.030914306640625, -0.03363037109375, -0.10968017578125, -0.0175933837890625, -0.0222930908203125, 0.042449951171875, -0.017181396484375, 0.027984619140625, -0.0408935546875, 0.044952392578125, 0.0009260177612304688, 0.0159912109375, -0.01158905029296875, -0.0008177757263183594, 0.0014791488647460938, 0.00817108154296875, 0.0069580078125, -0.007694244384765625, 0.003955841064453125, -0.057830810546875, -0.0232696533203125, -0.040252685546875, -0.052032470703125, 0.023223876953125, -0.048583984375, -0.0020122528076171875, -0.00843048095703125, -0.0221710205078125, 0.02154541015625, 0.049835205078125, -0.021881103515625, 0.0377197265625, -0.043792724609375, -0.022979736328125, 0.0892333984375, -0.007129669189453125, 0.0162506103515625, -0.0302276611328125, 0.1002197265625, 0.002490997314453125, -0.041473388671875, -0.00136566162109375, 0.00662994384765625, 0.032257080078125, -0.0003523826599121094, 0.0579833984375, 0.034881591796875, -0.0178070068359375, 0.048736572265625, 0.0183868408203125, -0.0015535354614257812, 0.031494140625, -0.020355224609375, 0.01331329345703125, -0.05242919921875, 0.0231170654296875, 0.0186004638671875, -0.0211029052734375, 0.00771331787109375, 0.0185546875, 0.01226806640625, 0.046356201171875, -0.0025386810302734375, 0.0162353515625, -0.0640869140625, -0.004852294921875, -0.0399169921875, 0.031280517578125, -0.09356689453125, 0.00798797607421875, -0.0068206787109375, 0.001495361328125, 0.010040283203125, -0.0259552001953125, -0.01690673828125, -0.01404571533203125, 0.03143310546875, -0.01560211181640625, 0.01438140869140625, 0.0219268798828125, -0.018035888671875, -0.0513916015625, -0.0238494873046875, 0.0963134765625, -0.006031036376953125, -0.058013916015625, 0.01323699951171875, -0.026458740234375, 0.007480621337890625, 0.0278167724609375, 0.028228759765625, 0.032867431640625, -0.048858642578125, -0.0157318115234375, -0.0205535888671875, 0.0020656585693359375, -0.05963134765625, -0.0361328125, 0.019805908203125, -0.00756072998046875, 0.002208709716796875, 0.021240234375, 0.027435302734375, -0.0004954338073730469, 0.00927734375, -0.006961822509765625, 0.0093841552734375, -0.024139404296875, 0.03839111328125, 0.0008912086486816406, 0.021148681640625, 0.007427215576171875, 0.005962371826171875, 0.03070068359375, -0.03155517578125, 0.019439697265625, 0.0208587646484375, 0.045928955078125, -0.01238250732421875, -0.04827880859375, 0.0285491943359375, -0.050140380859375, 0.006855010986328125, 0.00653839111328125, 0.007556915283203125, -0.0023632049560546875, -0.007358551025390625, 0.0016069412231445312, 0.01849365234375, -0.011444091796875, -0.0014066696166992188, 0.02203369140625, 0.00408172607421875, 0.04119873046875, 0.0472412109375, 0.002483367919921875, 0.00357818603515625, -0.005802154541015625, 0.0256195068359375, -0.0364990234375, -0.0379638671875, 0.006221771240234375, 0.046875, -0.02947998046875, -0.021820068359375, 0.02349853515625, -0.0261077880859375, -0.01418304443359375, -0.03167724609375, 0.0343017578125, -0.054412841796875, 0.006732940673828125, 0.041717529296875, 0.028778076171875, 0.01064300537109375, 0.0042572021484375, -0.0231781005859375, -0.024322509765625, 0.04443359375, -0.0147552490234375, -0.04608154296875, -0.045928955078125, 0.00423431396484375, 0.0091552734375, -0.00630950927734375, 0.005016326904296875, -0.050018310546875, 0.037384033203125, 0.03546142578125, 0.0321044921875, -0.0413818359375, 0.042083740234375, 0.007137298583984375, 0.0042266845703125, -0.0208892822265625, 0.0179901123046875, 0.0278167724609375, -0.002933502197265625, 0.025970458984375, -0.0301971435546875, -0.0238037109375, -0.032196044921875, 0.0033473968505859375, -0.00026416778564453125, 0.0168609619140625, -0.01708984375, 0.002025604248046875, -0.0012226104736328125, 0.003337860107421875, -0.006404876708984375, 0.0298309326171875, 0.0245208740234375, 0.03973388671875, -0.004550933837890625, -0.04345703125, 0.037384033203125, 0.0244903564453125, 0.039337158203125, -0.005641937255859375, -0.0638427734375, 0.0063323974609375, 0.02716064453125, -0.0202178955078125, 0.0477294921875, 0.0810546875, 0.003238677978515625, 0.057769775390625, 0.0279388427734375, 0.00958251953125, 0.01111602783203125, 0.035614013671875, -0.03314208984375, -0.06201171875, 0.002574920654296875, 0.0033817291259765625, -0.0343017578125, -0.0190277099609375, -0.03497314453125, 0.0005784034729003906, 0.025177001953125, 0.05181884765625, -0.0250701904296875, -0.001979827880859375, 0.01419830322265625, -0.039306640625, -0.006023406982421875, -0.014739990234375, 0.01093292236328125, -0.0225677490234375, 0.02978515625, 0.006786346435546875, -0.0229339599609375, -0.01045989990234375, -0.016876220703125, -0.0182037353515625, -0.0009016990661621094, 0.00994873046875, 0.011444091796875, -0.00241851806640625, -0.0016298294067382812, 0.006137847900390625, -0.005336761474609375, 0.03515625, 0.00670623779296875, -0.055206298828125, -0.03533935546875, -0.02716064453125, -0.06353759765625, -0.0391845703125, -0.03533935546875, 0.0243682861328125, 0.019317626953125, 0.03314208984375, 0.042205810546875, 0.002208709716796875, 0.0182342529296875, 0.0206146240234375, -0.0009007453918457031, 0.0118255615234375, -0.0135650634765625, -0.02545166015625, 0.0293121337890625, -0.08905029296875, -0.0020122528076171875, -0.048492431640625, 0.057769775390625, -0.00682830810546875, -0.0152587890625, 0.0382080078125, -0.0162353515625, -0.025787353515625, 0.018768310546875, -0.032012939453125, 0.0092315673828125, -0.01154327392578125, 0.017303466796875, -0.06231689453125, -0.0208740234375, 0.0218658447265625, -0.0268707275390625, -0.02801513671875, -0.0009541511535644531, 0.0187530517578125, 0.004756927490234375, -0.018829345703125, -0.042510986328125, 0.04754638671875, 0.0113525390625, -0.02642822265625, 0.0106964111328125, -0.0413818359375, 0.033294677734375, 0.0289306640625, 0.02752685546875, -0.0301361083984375, -0.00653076171875, 0.01776123046875, 0.0208587646484375, 0.0117340087890625, -0.00311279296875, 0.0021343231201171875, -0.02789306640625, 0.007801055908203125, 0.0290679931640625, -0.007076263427734375, 0.012451171875, 0.00780487060546875, -0.029144287109375, 0.016021728515625, -0.00665283203125, 0.033050537109375, -0.03656005859375, 0.021575927734375, 0.0093841552734375, 0.012664794921875, 0.00786590576171875, -0.024169921875, 0.0338134765625, -0.00916290283203125, -0.0053863525390625, 0.00324249267578125, 0.0228118896484375, 0.0014333724975585938, 0.015960693359375, -0.0077667236328125, -0.00727081298828125, -0.047821044921875, -0.0214385986328125, 0.0267333984375, -0.0023956298828125, -0.0281524658203125, -0.00353240966796875, 0.005939483642578125, 0.0221099853515625, -0.0180816650390625, -0.03173828125, 0.021759033203125, 0.00667572021484375, 0.05682373046875, 0.044647216796875, 0.039154052734375, -0.01233673095703125, 0.0003361701965332031, 0.0253753662109375, 0.07562255859375, -0.045318603515625, -0.0552978515625, 0.0005145072937011719, 0.03436279296875, 0.0364990234375, 0.0430908203125, 0.05279541015625, 0.06085205078125, 0.12017822265625, -0.0255126953125, 0.019805908203125, 0.034912109375, -0.042938232421875, -0.0007185935974121094, 0.0141448974609375, 0.0088348388671875, 0.046234130859375, -0.0154266357421875, -0.01446533203125, 0.0096282958984375, 0.032623291015625, -0.0093231201171875, 0.03765869140625, -0.0216064453125, -0.00788116455078125, -0.020599365234375, 0.034759521484375, 0.01326751708984375, 0.01041412353515625, -0.051239013671875, -0.05816650390625, 0.0626220703125, 0.0439453125, 0.0157470703125, 0.035003662109375, 0.0865478515625, 0.0740966796875, -0.0145416259765625, -0.0161285400390625, 0.0203704833984375, -0.0254974365234375, -0.036529541015625, 0.007282257080078125, -0.01256561279296875, 0.0088348388671875, -0.005519866943359375, -0.009368896484375, 0.10198974609375, -0.0360107421875, -0.0394287109375, 0.049957275390625, -0.014190673828125, -0.01279449462890625, 0.0335693359375, 0.009765625, 0.04144287109375, 0.005977630615234375, -0.0389404296875, -0.0276336669921875, 0.033203125, 0.00736236572265625, -0.0054779052734375, 0.0325927734375, 0.02337646484375, -0.004848480224609375, 0.0008120536804199219, -0.005771636962890625, 0.019287109375, 0.02166748046875, -0.0294342041015625, -0.016357421875, 0.04278564453125, -0.0207977294921875, -0.01149749755859375, -0.00812530517578125, -0.013031005859375, 0.045013427734375, -0.00424957275390625, 0.09234619140625, -0.052703857421875, 0.0208740234375, 0.0038547515869140625, -0.0025920867919921875, 0.0026397705078125, 0.00376129150390625, -0.01226043701171875, 0.0160675048828125, 0.0295562744140625, -0.0185089111328125, 0.0223236083984375, 0.03033447265625, 0.00778961181640625, -0.02508544921875, -0.0164642333984375, -0.038238525390625, 0.034210205078125, 0.037689208984375, 0.030914306640625, -0.0216217041015625, -0.02703857421875, -0.01129150390625, -0.00024306774139404297, 0.0178070068359375, 0.03082275390625, 0.0173187255859375, 0.00623321533203125, -0.05621337890625, -0.02215576171875, 0.016204833984375, -0.0286712646484375, -0.01184844970703125, 0.0109100341796875, -0.0308990478515625, -0.05609130859375, -0.042755126953125, -0.02825927734375, -0.0208282470703125, -0.011566162109375, 0.03582763671875, -0.038116455078125, -0.015899658203125, 0.0200653076171875, 0.03662109375, 0.0252532958984375, -0.0299835205078125, 0.0041351318359375, 0.04144287109375, -0.00957489013671875, 0.0234832763671875, -0.028594970703125, -0.014739990234375, -0.035400390625, -0.01125335693359375, 0.0110626220703125, -0.024383544921875, -0.035491943359375, -0.00634002685546875, 0.031341552734375, 0.0196533203125, -0.001194000244140625, 0.00887298583984375, 0.015655517578125, -0.049224853515625, -0.00815582275390625, 0.016143798828125, -0.019775390625, 0.0020503997802734375, -0.0179901123046875, -0.02972412109375, -0.024444580078125, -0.02593994140625, 0.0311737060546875, -0.0069732666015625, 0.005889892578125, 0.020233154296875, 0.001605987548828125, -0.04705810546875, 0.0103759765625, -0.0026493072509765625, 0.05169677734375, -0.012054443359375, -0.019195556640625, 0.0081329345703125, -0.0027904510498046875, -0.016571044921875, -0.08807373046875, 0.0009036064147949219, -0.0941162109375, 0.0226593017578125, -0.0556640625, 0.045623779296875, 0.034515380859375, -0.035247802734375, -0.06964111328125, 0.04052734375, -0.025115966796875, -0.01007843017578125, -0.026153564453125, -0.01444244384765625, -0.0139312744140625, 0.044677734375, -0.0093994140625, 0.0079193115234375, -0.0181884765625, 0.0310211181640625, -0.021087646484375, -0.024322509765625, 0.0428466796875, -0.041595458984375, -0.0142669677734375, -0.010772705078125, 0.0216064453125, -0.03399658203125, 0.022674560546875, 0.0198516845703125, -0.01148223876953125, 0.04718017578125, -0.02294921875, -0.018829345703125, -0.0197296142578125, -0.04144287109375, -0.0203399658203125, 0.010345458984375, 0.00826263427734375, 0.01177978515625, 0.031036376953125, 0.049957275390625, 0.0030345916748046875, -0.0217742919921875, -0.03900146484375, -0.0271759033203125, 0.02545166015625, -0.021514892578125, 0.006145477294921875, -0.06573486328125, -0.01253509521484375, 0.005741119384765625, 0.0232391357421875, 0.02813720703125, 0.0190582275390625, 0.026336669921875, -0.016632080078125, 0.056396484375, -0.03778076171875, -0.006153106689453125, -0.054656982421875, 0.08099365234375, -0.05419921875, -0.03057861328125, 0.0298004150390625, 0.03070068359375, 0.011505126953125, 0.0073394775390625, -0.01255035400390625, -0.0291748046875, 0.00873565673828125, 0.050201416015625, -0.01226043701171875, 0.0125274658203125, -0.038299560546875, -0.016021728515625, 0.01947021484375, 0.023406982421875, -0.0176849365234375, 0.034881591796875, 0.0307159423828125, -0.0018434524536132812, -0.0140380859375, 0.0179595947265625, 0.01495361328125, -0.048553466796875, -0.04217529296875, 0.060638427734375, -0.03826904296875, -0.00914764404296875, -0.0557861328125, 0.0350341796875, 0.0012416839599609375, 0.022674560546875, 0.00820159912109375, -0.058929443359375, 0.048614501953125, 0.0628662109375, 0.0340576171875, 0.041351318359375 ]
12095db26c8da681ac0c5a11c3e01e972e6b1c6c
Wordpress Stackexchange Q: How to turn off WooCommerce user registration and manually create accounts? I built an online store with WooCommerce. Now, I would like to disable WooCommerce user registration and register accounts manually. I want my store to be visible for everyone, but people should only be able to purchase something when they have an account that I created for them. How do I do this? A: Just disable customer registration on WooCommerce->Settings->Accounts page. if you want to prevent checkout for not logged in users, uncheck WooCommerce->Settings->Checkout->Enable guest checkout
Q: How to turn off WooCommerce user registration and manually create accounts? I built an online store with WooCommerce. Now, I would like to disable WooCommerce user registration and register accounts manually. I want my store to be visible for everyone, but people should only be able to purchase something when they have an account that I created for them. How do I do this? A: Just disable customer registration on WooCommerce->Settings->Accounts page. if you want to prevent checkout for not logged in users, uncheck WooCommerce->Settings->Checkout->Enable guest checkout A: WooCommerce just extends WordPress' built-in user management, so you need to go to your Settings > General page and uncheck "Membership Anyone can register".
wordpress
{ "language": "en", "length": 113, "provenance": "stackexchange_00019.jsonl.gz:483022", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/290849" }
[ 0.063232421875, 0.00797271728515625, -0.0023479461669921875, -0.0270538330078125, 0.005489349365234375, -0.04010009765625, 0.01959228515625, -0.04144287109375, 0.01369476318359375, 0.0396728515625, -0.03131103515625, -0.00833892822265625, 0.0281982421875, -0.0008616447448730469, -0.022552490234375, -0.0211181640625, -0.017303466796875, 0.04541015625, 0.0194091796875, -0.01934814453125, 0.002666473388671875, -0.0222930908203125, 0.006160736083984375, -0.01042938232421875, 0.016204833984375, -0.0170440673828125, 0.0919189453125, -0.030487060546875, 0.0280609130859375, -0.02685546875, 0.034149169921875, -0.0251922607421875, -0.0259857177734375, 0.028106689453125, 0.004871368408203125, -0.0206756591796875, -0.004268646240234375, 0.035064697265625, 0.04119873046875, -0.01250457763671875, 0.02435302734375, -0.023712158203125, -0.0291595458984375, -0.039947509765625, -0.014068603515625, -0.035797119140625, 0.032379150390625, -0.03375244140625, 0.049468994140625, 0.0080413818359375, -0.0137939453125, 0.05560302734375, -0.006839752197265625, -0.034149169921875, -0.022705078125, -0.024993896484375, -0.037994384765625, 0.005443572998046875, 0.028564453125, 0.02655029296875, -0.006595611572265625, -0.00884246826171875, 0.00044274330139160156, -0.026702880859375, 0.00934600830078125, -0.02044677734375, -0.0611572265625, 0.039215087890625, -0.0413818359375, 0.02325439453125, 0.042205810546875, -0.054656982421875, 0.02362060546875, 0.0199127197265625, -0.05755615234375, -0.0245513916015625, 0.0002849102020263672, -0.00899505615234375, 0.056549072265625, -0.0174102783203125, -0.0024852752685546875, -0.0482177734375, -0.0219268798828125, -0.017974853515625, 0.008453369140625, -0.001514434814453125, -0.0029773712158203125, 0.00804901123046875, 0.0179595947265625, -0.03265380859375, -0.0020961761474609375, 0.0161895751953125, -0.034637451171875, 0.031158447265625, -0.0200653076171875, -0.026458740234375, 0.036468505859375, 0.036376953125, 0.0014286041259765625, -0.0261993408203125, 0.0330810546875, -0.044830322265625, -0.01611328125, 0.001804351806640625, 0.009552001953125, 0.057220458984375, -0.0028591156005859375, 0.0017175674438476562, 0.0234527587890625, 0.006805419921875, 0.02740478515625, 0.0032596588134765625, -0.0031757354736328125, -0.031768798828125, 0.01128387451171875, 0.0245361328125, -0.0306549072265625, 0.0439453125, 0.0037403106689453125, 0.0248870849609375, -0.0082244873046875, 0.0220184326171875, 0.0276031494140625, 0.01482391357421875, -0.0162353515625, 0.009490966796875, 0.00829315185546875, -0.05517578125, -0.0211029052734375, -0.01218414306640625, -0.048583984375, 0.01096343994140625, 0.06927490234375, 0.06976318359375, 0.0379638671875, -0.00015103816986083984, 0.0097808837890625, 0.0279693603515625, 0.0034351348876953125, 0.013763427734375, 0.011993408203125, -0.042938232421875, -0.024627685546875, 0.01161956787109375, 0.0174713134765625, 0.011474609375, 0.012786865234375, 0.019317626953125, 0.0177764892578125, 0.0303192138671875, -0.04241943359375, 0.007701873779296875, -0.0102691650390625, 0.0291290283203125, 0.071044921875, 0.0474853515625, 0.04388427734375, 0.01824951171875, -0.022674560546875, 0.0145263671875, 0.0119781494140625, 0.0035266876220703125, 0.001819610595703125, -0.01346588134765625, -0.056182861328125, -0.0018281936645507812, -0.0153961181640625, -0.0178985595703125, 0.04010009765625, -0.0037689208984375, 0.059844970703125, -0.048065185546875, 0.0313720703125, -0.0032978057861328125, -0.006175994873046875, 0.0161590576171875, 0.004695892333984375, 0.022003173828125, 0.010772705078125, 0.033966064453125, 0.00975799560546875, -0.031524658203125, 0.0394287109375, -0.016815185546875, -0.035491943359375, 0.041046142578125, -0.0174407958984375, -0.005828857421875, 0.01071929931640625, -0.0169219970703125, 0.0400390625, 0.039154052734375, -0.01849365234375, 0.0004584789276123047, 0.006206512451171875, -0.039794921875, 0.0330810546875, -0.024322509765625, 0.01500701904296875, 0.012420654296875, 0.038330078125, -0.0305938720703125, 0.0264434814453125, -0.0565185546875, -0.0445556640625, -0.03753662109375, -0.0062713623046875, 0.01904296875, -0.02850341796875, 0.0300750732421875, 0.0389404296875, 0.0194854736328125, -0.044830322265625, 0.01023101806640625, 0.0170745849609375, -0.01471710205078125, -0.043060302734375, 0.0936279296875, 0.00934600830078125, 0.07513427734375, 0.0268402099609375, -0.0335693359375, 0.067138671875, -0.005062103271484375, 0.015716552734375, -0.02069091796875, -0.0167083740234375, -0.0286102294921875, -0.0036602020263671875, -0.01140594482421875, -0.0193939208984375, 0.0411376953125, 0.004550933837890625, -0.047821044921875, -0.06494140625, 0.0018186569213867188, -0.03082275390625, -0.043701171875, -0.00795745849609375, 0.0709228515625, 0.01551055908203125, 0.0056610107421875, -0.00661468505859375, 0.004749298095703125, 0.0180206298828125, -0.02838134765625, 0.01043701171875, 0.0027980804443359375, 0.008514404296875, 0.0267333984375, -0.011016845703125, 0.013946533203125, 0.04010009765625, 0.003383636474609375, 0.00994110107421875, 0.04541015625, -0.04669189453125, -0.038909912109375, 0.0498046875, -0.02850341796875, 0.006175994873046875, -0.058868408203125, 0.0135955810546875, -0.045501708984375, -0.01373291015625, -0.00504302978515625, -0.0007925033569335938, -0.003570556640625, -0.008087158203125, -0.00731658935546875, 0.0224456787109375, -0.04156494140625, 0.003887176513671875, 0.0020160675048828125, 0.0294647216796875, -0.043426513671875, -0.03619384765625, 0.00830078125, 0.0163421630859375, -0.0141448974609375, -0.006305694580078125, -0.0036563873291015625, -0.0008955001831054688, 0.0061798095703125, 0.006160736083984375, -0.07391357421875, 0.03350830078125, 0.043304443359375, -0.06829833984375, -0.05902099609375, -0.0113372802734375, 0.0213623046875, -0.040557861328125, 0.0195159912109375, -0.0247650146484375, -0.018310546875, -0.005950927734375, -0.037353515625, 0.0256195068359375, -0.0285186767578125, 0.03875732421875, 0.06524658203125, 0.01276397705078125, -0.00576019287109375, 0.041015625, -0.0528564453125, 0.0288238525390625, 0.0157623291015625, 0.0167388916015625, 0.03314208984375, -0.06707763671875, 0.058349609375, 0.0022144317626953125, 0.044708251953125, -0.03173828125, -0.034820556640625, -0.015228271484375, 0.0013637542724609375, -0.013580322265625, -0.00881195068359375, -0.0714111328125, -0.028228759765625, 0.00370025634765625, 0.00778961181640625, 0.007480621337890625, 0.01195526123046875, 0.033477783203125, 0.02459716796875, -0.00936126708984375, -0.027069091796875, -0.0121917724609375, -0.032867431640625, -0.01403045654296875, 0.0094451904296875, 0.0018281936645507812, -0.0119171142578125, -0.004749298095703125, 0.052490234375, -0.0106048583984375, 0.0077667236328125, 0.00711822509765625, -0.052520751953125, 0.0025577545166015625, -0.0028972625732421875, -0.040374755859375, 0.00911712646484375, 0.0268096923828125, 0.01416015625, -0.003955841064453125, -0.020172119140625, 0.0233612060546875, -0.04766845703125, 0.042388916015625, -0.0223236083984375, 0.03143310546875, 0.0013170242309570312, -0.07159423828125, -0.036956787109375, -0.019317626953125, -0.06854248046875, -0.0399169921875, -0.0035076141357421875, -0.05316162109375, 0.00384521484375, 0.03997802734375, -0.0115966796875, -0.0092926025390625, -0.0137481689453125, 0.0094451904296875, 0.0016489028930664062, -0.0025768280029296875, -0.024658203125, 0.0105438232421875, 0.0003180503845214844, 0.0012035369873046875, -0.01084136962890625, 0.035064697265625, -0.0029697418212890625, 0.0208740234375, 0.01374053955078125, 0.01326751708984375, -0.0179290771484375, 0.00969696044921875, -0.05987548828125, -0.061126708984375, 0.0498046875, -0.0545654296875, -0.012054443359375, -0.0418701171875, -0.01428985595703125, -0.0018939971923828125, 0.10626220703125, -0.03790283203125, -0.0188446044921875, 0.03021240234375, -0.0015001296997070312, -0.0107574462890625, 0.044677734375, -0.07867431640625, -0.016357421875, -0.023529052734375, 0.00559234619140625, -0.0215301513671875, -0.0107879638671875, 0.0213775634765625, -0.11669921875, 0.0099029541015625, -0.04736328125, 0.0265045166015625, 0.0130767822265625, 0.0196990966796875, -0.01495361328125, 0.00263214111328125, -0.0146026611328125, -0.0034618377685546875, -0.01256561279296875, -0.0478515625, -0.016845703125, 0.04156494140625, 0.0228729248046875, -0.025634765625, 0.01629638671875, -0.0345458984375, 0.035003662109375, -0.0180206298828125, 0.0101318359375, 0.0019817352294921875, 0.030914306640625, 0.0115814208984375, -0.020843505859375, -0.0138397216796875, -0.018524169921875, 0.01218414306640625, 0.0003418922424316406, -0.025970458984375, 0.0237274169921875, -0.032623291015625, 0.03582763671875, 0.0139007568359375, -0.031829833984375, -0.08935546875, -0.066650390625, -0.0216064453125, -0.013824462890625, -0.0180816650390625, -0.0025234222412109375, -0.05560302734375, -0.07568359375, 0.029876708984375, -0.041717529296875, -0.00208282470703125, 0.0055084228515625, 0.0576171875, 0.01380157470703125, -0.00115966796875, 0.0364990234375, 0.0243682861328125, 0.0284576416015625, -0.001842498779296875, 0.006633758544921875, -0.007617950439453125, -0.0172882080078125, 0.01708984375, -0.00963592529296875, -0.02923583984375, -0.000736236572265625, 0.0465087890625, -0.02606201171875, -0.0462646484375, 0.004985809326171875, -0.06610107421875, 0.0301513671875, -0.00009906291961669922, 0.0148773193359375, -0.020904541015625, 0.03271484375, 0.0187530517578125, -0.0020236968994140625, 0.00341033935546875, 0.01202392578125, -0.012237548828125, 0.0074615478515625, -0.006153106689453125, -0.006580352783203125, 0.001773834228515625, 0.00423431396484375, -0.0278472900390625, -0.01096343994140625, -0.014190673828125, -0.032867431640625, -0.06964111328125, -0.004024505615234375, -0.0009469985961914062, -0.038543701171875, -0.00850677490234375, 0.0171661376953125, -0.0036106109619140625, 0.020233154296875, -0.03265380859375, -0.05615234375, -0.023590087890625, -0.0211639404296875, 0.0027618408203125, 0.053863525390625, -0.030975341796875, 0.0859375, 0.004817962646484375, -0.00887298583984375, 0.00017642974853515625, -0.0738525390625, -0.01247406005859375, -0.06878662109375, -0.0005035400390625, 0.007740020751953125, -0.0199127197265625, -0.01091766357421875, 0.061553955078125, 0.022979736328125, 0.006893157958984375, -0.0095367431640625, 0.0262603759765625, 0.0015707015991210938, 0.0271453857421875, 0.0171966552734375, 0.00862884521484375, -0.0106048583984375, 0.0152130126953125, 0.01116943359375, -0.0123748779296875, -0.0308837890625, 0.039825439453125, 0.017791748046875, 0.006011962890625, 0.0217742919921875, -0.016204833984375, -0.0139617919921875, -0.0101165771484375, 0.03167724609375, -0.0347900390625, -0.05560302734375, -0.039398193359375, -0.00505828857421875, 0.0246429443359375, -0.043487548828125, -0.00199127197265625, -0.0182647705078125, -0.036834716796875, -0.034393310546875, 0.0772705078125, -0.05535888671875, -0.0178070068359375, -0.00771331787109375, -0.055877685546875, -0.037506103515625, 0.016693115234375, -0.014556884765625, 0.0255584716796875, -0.02276611328125, -0.04437255859375, 0.03369140625, -0.0276031494140625, -0.0128631591796875, 0.0016155242919921875, -0.007358551025390625, 0.0013170242309570312, 0.01529693603515625, 0.044525146484375, 0.01812744140625, -0.0347900390625, -0.019012451171875, -0.0213165283203125, -0.0189666748046875, -0.044525146484375, -0.0157012939453125, -0.023162841796875, 0.0089111328125, 0.017486572265625, 0.00676727294921875, -0.023284912109375, -0.056640625, -0.034912109375, 0.026336669921875, 0.0556640625, 0.0229339599609375, -0.02960205078125, 0.016815185546875, 0.0166168212890625, 0.023468017578125, -0.00275421142578125, -0.0010995864868164062, 0.0083770751953125, -0.026123046875, 0.003566741943359375, 0.00925445556640625, -0.0423583984375, -0.00965118408203125, -0.024566650390625, 0.016265869140625, 0.08746337890625, -0.02325439453125, -0.0211639404296875, -0.01104736328125, 0.00913238525390625, -0.0156402587890625, 0.006015777587890625, -0.0068206787109375, -0.01052093505859375, -0.048248291015625, -0.006313323974609375, 0.0240325927734375, 0.0218048095703125, -0.00934600830078125, 0.00010794401168823242, 0.00893402099609375, 0.0165863037109375, -0.0191802978515625, -0.01641845703125, 0.02813720703125, -0.021270751953125, -0.023040771484375, 0.014739990234375, -0.02374267578125, 0.018157958984375, 0.0083770751953125, 0.0592041015625, -0.047882080078125, -0.052154541015625, 0.038818359375, 0.0251007080078125, -0.037567138671875, 0.0169525146484375, -0.0193328857421875, 0.0207672119140625, 0.1019287109375, 0.09539794921875, -0.1678466796875, 0.0228729248046875, 0.022552490234375, 0.0211944580078125, 0.011688232421875, -0.007366180419921875, -0.005779266357421875, -0.052459716796875, 0.037689208984375, -0.03692626953125, -0.0218658447265625, -0.0162200927734375, -0.039031982421875, 0.0032367706298828125, 0.042572021484375, 0.039581298828125, 0.007419586181640625, -0.022552490234375, -0.026153564453125, 0.0007796287536621094, 0.02105712890625, -0.052520751953125, -0.01068115234375, 0.0194854736328125, -0.012115478515625, -0.0732421875, 0.008880615234375, -0.01428985595703125, 0.0247344970703125, 0.04827880859375, -0.029815673828125, 0.041290283203125, 0.0246124267578125, -0.00934600830078125, 0.0290985107421875, -0.0304107666015625, -0.00838470458984375, -0.024993896484375, -0.0262451171875, -0.004573822021484375, 0.035858154296875, -0.0628662109375, 0.01953125, -0.0360107421875, 0.01126861572265625, 0.01065826416015625, 0.0264434814453125, 0.02618408203125, 0.0036220550537109375, -0.0299224853515625, 0.047332763671875, 0.00513458251953125, -0.0229034423828125, -0.01959228515625, 0.0198211669921875, -0.0156707763671875, 0.0168914794921875, -0.0095977783203125, -0.014801025390625, -0.0273590087890625, -0.01837158203125, -0.035308837890625, 0.041748046875, -0.0267486572265625, -0.0218353271484375, -0.0173187255859375, 0.03607177734375, 0.0225982666015625, 0.033843994140625, -0.047821044921875, 0.06298828125, -0.00850677490234375, 0.0814208984375, -0.0290374755859375, -0.01480865478515625, 0.04095458984375, 0.0157318115234375, 0.037353515625, 0.00444793701171875, 0.0037841796875, -0.011993408203125, 0.033233642578125, 0.006195068359375, -0.02099609375, 0.032257080078125, -0.0125885009765625, -0.00447845458984375, 0.04595947265625, -0.05743408203125, 0.0005869865417480469, 0.00627899169921875, 0.00960540771484375, 0.0032196044921875, -0.007312774658203125, -0.0230560302734375, 0.00662994384765625, 0.04962158203125, -0.0170745849609375, -0.001613616943359375, 0.00594329833984375, 0.02801513671875, -0.0191497802734375, 0.0191650390625, -0.0269775390625, 0.025543212890625, 0.044189453125, -0.034271240234375, 0.047088623046875, -0.00102996826171875, 0.009185791015625, 0.0380859375, 0.021240234375, 0.0345458984375, -0.00859832763671875, 0.01280975341796875, 0.0005736351013183594, -0.036163330078125, -0.0136871337890625, 0.00949859619140625, 0.0206451416015625, -0.0205841064453125, 0.005863189697265625, 0.0219573974609375, -0.0017175674438476562, -0.003635406494140625, 0.00018203258514404297, 0.0194244384765625, -0.0017299652099609375, 0.009307861328125, -0.018707275390625, 0.0347900390625, -0.052276611328125, -0.040435791015625, -0.067138671875, 0.001983642578125, 0.0408935546875, 0.021240234375, -0.01139068603515625, 0.007785797119140625, -0.041229248046875, -0.01282501220703125, -0.006603240966796875, -0.009765625, 0.0044708251953125, 0.0014047622680664062, -0.001743316650390625, 0.02520751953125, 0.00695037841796875, 0.0036773681640625, -0.00801849365234375, 0.0258331298828125, -0.01262664794921875, 0.007389068603515625, -0.050384521484375, -0.04669189453125, 0.0133056640625, 0.0496826171875, -0.051971435546875, -0.0115509033203125, 0.035186767578125, 0.07769775390625, -0.0272369384765625, -0.047332763671875, 0.04632568359375, -0.010040283203125, -0.003879547119140625, -0.0019197463989257812, 0.009124755859375, 0.01042938232421875, -0.0011453628540039062, -0.0312347412109375, 0.066650390625, 0.006351470947265625, -0.032806396484375, 0.037567138671875, -0.0157623291015625, -0.06036376953125, 0.018646240234375, 0.0092315673828125, 0.09326171875, -0.00963592529296875, -0.08795166015625, -0.02020263671875, -0.044189453125, -0.0030422210693359375, 0.01078033447265625, 0.013885498046875, -0.039093017578125, 0.065185546875, 0.016510009765625, -0.0006079673767089844, 0.004177093505859375, -0.00799560546875, 0.00409698486328125, -0.052642822265625, 0.003582000732421875, -0.0264434814453125, -0.045684814453125, -0.001804351806640625, -0.030303955078125, -0.0017604827880859375, 0.0283355712890625, 0.07135009765625, -0.0011625289916992188, 0.0225982666015625, -0.037628173828125, -0.027923583984375, -0.011138916015625, -0.041046142578125, 0.0225677490234375, -0.0225677490234375, -0.04498291015625, 0.0281982421875, -0.042327880859375, 0.036956787109375, 0.00939178466796875, -0.00013053417205810547, 0.03656005859375, -0.0272064208984375, 0.01065826416015625, -0.0014505386352539062, 0.0168304443359375, -0.03759765625, -0.06072998046875, -0.04931640625, 0.0229339599609375, -0.0243072509765625, -0.050201416015625, -0.050384521484375, 0.032196044921875, -0.0265350341796875, -0.043670654296875, 0.007152557373046875, -0.044281005859375, -0.002986907958984375, 0.0197906494140625, 0.00836944580078125, 0.0352783203125, -0.01021575927734375, -0.01364898681640625, 0.0018053054809570312, 0.0216522216796875, -0.059234619140625, 0.02508544921875, -0.081787109375, 0.00921630859375, 0.0511474609375, 0.0244293212890625, -0.01099395751953125, 0.0037841796875, 0.0302581787109375, -0.036895751953125, 0.0032329559326171875, -0.05377197265625, -0.0245208740234375, -0.041351318359375, 0.019775390625, 0.032684326171875, 0.002079010009765625, 0.0016832351684570312, -0.0101470947265625, -0.0011091232299804688, 0.0281219482421875, 0.0002949237823486328, -0.0445556640625, 0.014495849609375, -0.006137847900390625, 0.058990478515625, -0.024322509765625, -0.02880859375, 0.0023326873779296875, -0.00908660888671875, 0.003093719482421875, -0.005176544189453125, -0.032806396484375, 0.02685546875, 0.00307464599609375, -0.0224609375, 0.0242767333984375, -0.0007734298706054688, -0.047760009765625, -0.0293121337890625, -0.0311279296875, 0.01317596435546875, -0.0251007080078125, -0.035186767578125, 0.0004336833953857422, -0.01068115234375, 0.01042938232421875, -0.0208892822265625, -0.0179443359375, -0.0219268798828125, -0.0227813720703125, -0.028289794921875, 0.00467681884765625, 0.020843505859375, -0.0212249755859375, -0.03533935546875, 0.04705810546875, -0.01142120361328125, -0.0204315185546875, -0.052093505859375, 0.02508544921875, -0.0099029541015625, 0.004589080810546875, -0.020477294921875, -0.0037784576416015625, 0.002529144287109375, 0.0361328125, 0.01541900634765625, -0.020416259765625, 0.042022705078125, 0.0055084228515625, -0.0234527587890625, 0.018035888671875, 0.00937652587890625, -0.00860595703125, 0.0311279296875, 0.0018291473388671875, 0.023956298828125, 0.03118896484375, -0.033905029296875, 0.019744873046875, -0.01287078857421875, -0.01922607421875, -0.01096343994140625, -0.00255584716796875, 0.0185546875, -0.0225677490234375, 0.038787841796875, -0.01004791259765625, -0.006572723388671875, 0.0111846923828125, -0.043670654296875, -0.029937744140625, 0.03057861328125, -0.0008697509765625, -0.00995635986328125, -0.03717041015625, 0.019439697265625, -0.00579833984375, -0.0017948150634765625, -0.027557373046875, 0.0357666015625, -0.040985107421875, -0.01158905029296875, 0.010223388671875, -0.0091705322265625, -0.035400390625, 0.041473388671875, -0.051239013671875, -0.01546478271484375, -0.0623779296875, -0.01235198974609375, -0.01300048828125, -0.0830078125, -0.0516357421875, -0.01007080078125, 0.00970458984375, -0.052764892578125, 0.041839599609375, -0.0266876220703125, 0.059478759765625, -0.0830078125, 0.004283905029296875, -0.0233917236328125, 0.036407470703125, 0.02508544921875, 0.04437255859375, -0.0265655517578125, 0.044921875, 0.049102783203125, 0.00789642333984375, 0.0305938720703125, -0.021331787109375, -0.0186767578125, 0.06292724609375, -0.00289154052734375, -0.033172607421875, -0.0115814208984375, -0.0178070068359375, 0.012908935546875, -0.0181121826171875, 0.020263671875, -0.03253173828125, 0.026641845703125, -0.0224609375, -0.0186004638671875, 0.01490020751953125 ]
c9dd7c917df086b46d4323f841fce4baac78a15c
Wordpress Stackexchange Q: How to log plugin errors to plugin error_log file How can errors, specific to a given plugin, be logged to an error_log file contained within the plugin root folder itself? Examples: * *Syntax errors *Database errors *Compatibility errors *PHP fatal errors *Ajax request errors Similar to the /wp-content/debug.log file enable when WP_DEBUG_LOG is defined as true in the wp-config.php file (albeit specifically for plugins with its concerns separated from any other general error unrelated to the plugin itself). Research: Debugging Plugins section in the official documentation of the Codex refers to using 3rd party plugins to debug 3rd party plugins. Don’t Develop Without Debuggingby Smashing Magazine refers to site-wide general debugging. Plugin Handbook appears to layout no specific guidelines. A: By setting the second argument to 3 for error_log: $pluginlog = plugin_dir_path(__FILE__).'debug.log'; $message = 'SOME ERROR'.PHP_EOL; error_log($message, 3, $pluginlog); http://php.net/manual/en/function.error-log.php
Q: How to log plugin errors to plugin error_log file How can errors, specific to a given plugin, be logged to an error_log file contained within the plugin root folder itself? Examples: * *Syntax errors *Database errors *Compatibility errors *PHP fatal errors *Ajax request errors Similar to the /wp-content/debug.log file enable when WP_DEBUG_LOG is defined as true in the wp-config.php file (albeit specifically for plugins with its concerns separated from any other general error unrelated to the plugin itself). Research: Debugging Plugins section in the official documentation of the Codex refers to using 3rd party plugins to debug 3rd party plugins. Don’t Develop Without Debuggingby Smashing Magazine refers to site-wide general debugging. Plugin Handbook appears to layout no specific guidelines. A: By setting the second argument to 3 for error_log: $pluginlog = plugin_dir_path(__FILE__).'debug.log'; $message = 'SOME ERROR'.PHP_EOL; error_log($message, 3, $pluginlog); http://php.net/manual/en/function.error-log.php
wordpress
{ "language": "en", "length": 141, "provenance": "stackexchange_00019.jsonl.gz:483101", "question_score": "4", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/291108" }
[ 0.0650634765625, -0.020263671875, 0.0006809234619140625, -0.0802001953125, -0.004322052001953125, -0.00885009765625, 0.0038394927978515625, 0.018524169921875, 0.01186370849609375, 0.002246856689453125, -0.0186920166015625, -0.00679779052734375, -0.037109375, -0.0163116455078125, -0.020721435546875, -0.034423828125, 0.027069091796875, -0.0014505386352539062, 0.015533447265625, -0.0157928466796875, 0.013427734375, 0.01021575927734375, -0.01141357421875, 0.08587646484375, 0.026397705078125, 0.03472900390625, 0.0506591796875, -0.01204681396484375, 0.0221405029296875, -0.002044677734375, 0.021759033203125, -0.05389404296875, 0.031890869140625, 0.05694580078125, -0.07562255859375, 0.0003101825714111328, 0.033782958984375, -0.01259613037109375, -0.019744873046875, 0.0709228515625, 0.034515380859375, -0.0067138671875, 0.07177734375, -0.005092620849609375, 0.0137176513671875, -0.01666259765625, 0.04541015625, -0.03228759765625, 0.006679534912109375, -0.0189208984375, 0.0214080810546875, 0.003841400146484375, 0.03619384765625, -0.01715087890625, -0.013946533203125, -0.013336181640625, -0.048828125, 0.076904296875, 0.0086669921875, 0.0289154052734375, -0.01561737060546875, 0.03802490234375, -0.0238037109375, -0.0200653076171875, 0.004299163818359375, -0.01629638671875, 0.00887298583984375, 0.026275634765625, 0.01473236083984375, 0.00972747802734375, 0.00807952880859375, 0.004978179931640625, -0.00041174888610839844, 0.0355224609375, -0.00926971435546875, -0.040252685546875, 0.045501708984375, 0.009857177734375, 0.0014276504516601562, 0.03704833984375, 0.01300811767578125, -0.0303497314453125, 0.033294677734375, -0.007808685302734375, 0.017425537109375, 0.02337646484375, -0.00537109375, -0.01165008544921875, -0.025360107421875, 0.00008887052536010742, -0.0257568359375, -0.00397491455078125, -0.0164031982421875, 0.01059722900390625, -0.0228118896484375, -0.002956390380859375, 0.0010061264038085938, 0.0213623046875, -0.0238800048828125, -0.0377197265625, -0.017120361328125, -0.004100799560546875, -0.047607421875, 0.00939178466796875, 0.0010461807250976562, 0.037261962890625, -0.0045318603515625, -0.017822265625, 0.0174713134765625, 0.022430419921875, 0.00698089599609375, 0.00531768798828125, -0.02825927734375, -0.0748291015625, 0.0195465087890625, 0.0850830078125, 0.005039215087890625, 0.007904052734375, 0.0158233642578125, 0.0189208984375, -0.0020389556884765625, 0.019012451171875, -0.052764892578125, 0.00421905517578125, -0.0242462158203125, -0.052764892578125, -0.01467132568359375, 0.0251617431640625, 0.003513336181640625, 0.0133056640625, -0.005214691162109375, 0.0251922607421875, 0.0178375244140625, -0.025543212890625, -0.0350341796875, -0.0015211105346679688, -0.0012798309326171875, -0.013946533203125, -0.02099609375, 0.003200531005859375, 0.013824462890625, -0.01253509521484375, -0.01129150390625, -0.0292205810546875, 0.0039520263671875, 0.0238189697265625, 0.0238800048828125, 0.005542755126953125, -0.03118896484375, -0.054168701171875, 0.03173828125, -0.022369384765625, 0.00251007080078125, 0.00618743896484375, 0.033782958984375, -0.049560546875, 0.03350830078125, -0.0498046875, 0.0396728515625, -0.042205810546875, -0.0159149169921875, -0.0037288665771484375, 0.03387451171875, -0.0430908203125, -0.022857666015625, -0.007175445556640625, -0.03656005859375, 0.008331298828125, 0.00656890869140625, -0.02899169921875, 0.00377655029296875, 0.01258087158203125, -0.0239105224609375, -0.04095458984375, -0.006381988525390625, -0.01727294921875, -0.046722412109375, 0.01102447509765625, 0.023406982421875, 0.01351165771484375, 0.0037078857421875, -0.0193634033203125, 0.013092041015625, 0.0223236083984375, -0.034027099609375, 0.0267181396484375, 0.01154327392578125, 0.042724609375, 0.0012922286987304688, 0.00890350341796875, 0.0149688720703125, 0.0211029052734375, -0.0157623291015625, 0.0364990234375, -0.033935546875, -0.0419921875, -0.014923095703125, -0.0006985664367675781, -0.035247802734375, 0.005535125732421875, -0.04241943359375, 0.034637451171875, -0.029388427734375, 0.0164947509765625, -0.087890625, 0.01398468017578125, -0.0338134765625, 0.060943603515625, 0.01861572265625, 0.00421905517578125, -0.0015344619750976562, 0.00812530517578125, 0.00942230224609375, -0.056671142578125, -0.036102294921875, 0.039093017578125, -0.0537109375, 0.044281005859375, -0.011138916015625, 0.04949951171875, -0.0230560302734375, -0.043121337890625, -0.0157928466796875, -0.03656005859375, 0.003322601318359375, 0.020782470703125, -0.0183868408203125, 0.014892578125, 0.01947021484375, 0.011383056640625, 0.03173828125, 0.0099029541015625, 0.0382080078125, 0.0765380859375, 0.005062103271484375, -0.038360595703125, 0.0028057098388671875, -0.08892822265625, 0.03369140625, 0.049407958984375, 0.050140380859375, 0.023895263671875, 0.0100860595703125, 0.0234375, -0.0160369873046875, -0.12359619140625, 0.0026035308837890625, -0.007282257080078125, 0.011871337890625, 0.0011472702026367188, -0.0135345458984375, -0.01165008544921875, 0.047882080078125, -0.005298614501953125, -0.00099945068359375, 0.0443115234375, -0.01213836669921875, -0.050323486328125, -0.0223541259765625, 0.032867431640625, 0.005771636962890625, -0.033599853515625, -0.0119171142578125, -0.0141448974609375, -0.029449462890625, -0.006626129150390625, -0.00908660888671875, -0.0061798095703125, -0.01299285888671875, -0.00733184814453125, 0.0248565673828125, -0.0063323974609375, 0.00583648681640625, 0.008636474609375, -0.0013971328735351562, 0.032135009765625, -0.0256805419921875, 0.0004978179931640625, 0.026519775390625, 0.01065826416015625, -0.029205322265625, 0.01442718505859375, 0.01390838623046875, -0.0111083984375, -0.026123046875, -0.034881591796875, 0.037139892578125, -0.011566162109375, -0.005809783935546875, -0.03826904296875, -0.0099639892578125, 0.035858154296875, -0.03643798828125, 0.054046630859375, 0.00047779083251953125, -0.021697998046875, 0.01227569580078125, -0.049285888671875, 0.04510498046875, -0.037353515625, 0.0221710205078125, 0.06463623046875, 0.00054931640625, -0.0030879974365234375, -0.0017642974853515625, -0.00848388671875, -0.01215362548828125, -0.004528045654296875, -0.0237579345703125, 0.005889892578125, -0.04705810546875, 0.039215087890625, 0.01287841796875, 0.0479736328125, -0.0204925537109375, -0.04632568359375, -0.02581787109375, 0.038543701171875, -0.07696533203125, -0.0645751953125, -0.05938720703125, -0.1043701171875, 0.0247650146484375, 0.0041961669921875, -0.041351318359375, 0.0018901824951171875, 0.03839111328125, 0.03033447265625, 0.03509521484375, -0.049285888671875, -0.049530029296875, -0.038818359375, -0.0584716796875, 0.017608642578125, 0.0022525787353515625, 0.0037364959716796875, -0.01245880126953125, 0.0872802734375, -0.012481689453125, -0.0638427734375, -0.038116455078125, 0.014251708984375, 0.00218963623046875, -0.0030574798583984375, -0.0248870849609375, 0.0033473968505859375, 0.00002664327621459961, 0.006816864013671875, -0.03973388671875, -0.00446319580078125, 0.0145416259765625, -0.0290985107421875, -0.0014505386352539062, -0.0078277587890625, 0.0139312744140625, -0.039154052734375, -0.0157470703125, -0.02276611328125, -0.031158447265625, -0.06610107421875, 0.0022220611572265625, -0.0029144287109375, -0.042449951171875, 0.01355743408203125, 0.0201263427734375, -0.0202484130859375, 0.0289459228515625, -0.042633056640625, 0.0207672119140625, 0.013214111328125, 0.003925323486328125, -0.01263427734375, 0.0277557373046875, 0.001251220703125, 0.0181427001953125, -0.0203399658203125, 0.036834716796875, -0.0016698837280273438, -0.0252227783203125, 0.00849151611328125, -0.0037441253662109375, -0.01169586181640625, 0.01180267333984375, -0.0164642333984375, -0.0108489990234375, 0.01904296875, -0.04937744140625, 0.0229949951171875, -0.041839599609375, 0.00206756591796875, -0.031951904296875, 0.045196533203125, -0.031585693359375, -0.005767822265625, -0.0166168212890625, 0.0040130615234375, -0.01303863525390625, -0.023468017578125, -0.03466796875, -0.01287841796875, -0.046417236328125, -0.01042938232421875, -0.00862884521484375, -0.035614013671875, -0.002613067626953125, 0.02142333984375, -0.029815673828125, -0.034942626953125, 0.006626129150390625, -0.0206451416015625, 0.01465606689453125, 0.005336761474609375, 0.0256805419921875, -0.026885986328125, 0.03607177734375, -0.04559326171875, -0.09088134765625, -0.01026153564453125, -0.06787109375, 0.095458984375, 0.05517578125, -0.0335693359375, -0.01560211181640625, 0.03997802734375, -0.006938934326171875, -0.0027942657470703125, 0.012176513671875, 0.0081939697265625, -0.01016998291015625, 0.024993896484375, 0.022979736328125, -0.004913330078125, 0.025543212890625, -0.0033111572265625, -0.051239013671875, 0.024749755859375, -0.01422119140625, 0.0355224609375, 0.02392578125, -0.04669189453125, 0.005214691162109375, 0.0007853507995605469, -0.0042266845703125, 0.00798797607421875, 0.00970458984375, -0.024078369140625, -0.00003731250762939453, -0.00701904296875, 0.004550933837890625, -0.0242462158203125, -0.0198516845703125, 0.03387451171875, 0.07391357421875, 0.027374267578125, 0.004978179931640625, -0.07354736328125, -0.0143280029296875, 0.0168304443359375, -0.00893402099609375, 0.03955078125, -0.0008397102355957031, -0.015625, 0.048553466796875, -0.029205322265625, 0.0196380615234375, -0.049346923828125, 0.0244293212890625, -0.0120391845703125, -0.0306396484375, 0.0345458984375, -0.0235137939453125, 0.03173828125, 0.01514434814453125, -0.01971435546875, 0.023681640625, 0.0220489501953125, -0.006038665771484375, -0.05584716796875, 0.042877197265625, 0.0165252685546875, -0.0533447265625, 0.00597381591796875, -0.0024566650390625, 0.0231475830078125, 0.031494140625, -0.004642486572265625, 0.041595458984375, 0.02886962890625, -0.00914764404296875, 0.045379638671875, 0.061553955078125, -0.003170013427734375, 0.017333984375, 0.04937744140625, -0.0313720703125, -0.0272979736328125, -0.007781982421875, 0.0372314453125, 0.0111083984375, -0.044158935546875, 0.01422882080078125, -0.01540374755859375, -0.0205230712890625, 0.006778717041015625, -0.032928466796875, 0.04766845703125, 0.0302886962890625, -0.0286712646484375, -0.00582122802734375, -0.043670654296875, -0.00860595703125, -0.047760009765625, 0.0127410888671875, -0.02813720703125, -0.0008978843688964844, 0.03228759765625, 0.0230865478515625, -0.0667724609375, 0.03875732421875, 0.007030487060546875, -0.022491455078125, -0.0177764892578125, 0.064208984375, 0.048583984375, -0.08258056640625, -0.00046896934509277344, 0.032440185546875, 0.01239013671875, -0.033050537109375, -0.00667572021484375, -0.02569580078125, 0.0184326171875, -0.04058837890625, -0.0167388916015625, 0.06658935546875, 0.00005120038986206055, 0.00934600830078125, 0.0191802978515625, -0.0251312255859375, -0.05938720703125, -0.0024547576904296875, 0.007083892822265625, 0.0235595703125, -0.053466796875, 0.012969970703125, 0.0197601318359375, 0.016357421875, 0.022186279296875, -0.0185394287109375, -0.0333251953125, 0.0016002655029296875, 0.019683837890625, -0.0282440185546875, -0.01023101806640625, -0.0011720657348632812, -0.061126708984375, -0.0290374755859375, 0.0005340576171875, -0.00862884521484375, 0.019134521484375, -0.039886474609375, 0.0106964111328125, -0.0136260986328125, 0.01233673095703125, -0.0027828216552734375, 0.015472412109375, 0.0271453857421875, 0.0189971923828125, -0.0121307373046875, -0.0054931640625, -0.0101318359375, -0.02056884765625, 0.0289764404296875, -0.011474609375, -0.0235443115234375, -0.031768798828125, -0.00954437255859375, 0.0011501312255859375, -0.0083770751953125, 0.0008645057678222656, 0.0001226663589477539, 0.0213470458984375, -0.008392333984375, -0.0169677734375, -0.007396697998046875, 0.047332763671875, 0.00733184814453125, -0.011383056640625, 0.01678466796875, 0.044891357421875, 0.00473785400390625, -0.0194091796875, 0.00589752197265625, 0.032562255859375, -0.0155181884765625, -0.0308990478515625, 0.0279541015625, 0.003719329833984375, 0.085205078125, -0.01049041748046875, -0.0246734619140625, -0.004302978515625, -0.0037288665771484375, 0.0003771781921386719, 0.06494140625, 0.0482177734375, -0.01557159423828125, 0.035400390625, -0.01824951171875, -0.009796142578125, -0.01471710205078125, 0.01328277587890625, -0.0078582763671875, -0.01021575927734375, -0.01250457763671875, -0.0055999755859375, 0.0028400421142578125, 0.032806396484375, 0.036773681640625, 0.009185791015625, 0.024932861328125, 0.0297698974609375, 0.01226806640625, -0.027069091796875, 0.01593017578125, 0.0355224609375, -0.00933837890625, 0.064453125, 0.0006570816040039062, -0.0294342041015625, 0.0084075927734375, -0.046630859375, 0.0265655517578125, 0.06671142578125, 0.05926513671875, -0.11273193359375, 0.0309906005859375, 0.024749755859375, 0.0160980224609375, 0.043426513671875, -0.0202484130859375, 0.0361328125, 0.033477783203125, 0.031341552734375, -0.01885986328125, -0.01788330078125, 0.007190704345703125, -0.04052734375, -0.00360107421875, 0.01096343994140625, 0.0237579345703125, -0.0014333724975585938, -0.05621337890625, 0.0022068023681640625, 0.03240966796875, -0.00518035888671875, 0.00015366077423095703, 0.0157623291015625, -0.007232666015625, -0.02777099609375, -0.029754638671875, 0.0192413330078125, -0.01580810546875, -0.00627899169921875, 0.0010118484497070312, -0.003047943115234375, 0.0167236328125, 0.05389404296875, -0.01010894775390625, -0.026580810546875, 0.04339599609375, -0.029937744140625, 0.057373046875, -0.0187225341796875, 0.0168914794921875, 0.05206298828125, -0.08392333984375, -0.0022716522216796875, -0.0125732421875, 0.01457977294921875, -0.00684356689453125, -0.0207977294921875, 0.08447265625, -0.023345947265625, -0.01751708984375, -0.00896453857421875, -0.0008082389831542969, 0.0063629150390625, -0.03802490234375, 0.042022705078125, -0.06109619140625, 0.0223846435546875, 0.0003533363342285156, 0.053741455078125, -0.0008859634399414062, -0.0094757080078125, -0.05181884765625, 0.0810546875, -0.0170440673828125, 0.0033283233642578125, 0.010040283203125, 0.0262298583984375, -0.0267181396484375, 0.001186370849609375, -0.0284423828125, 0.09033203125, 0.005794525146484375, 0.0576171875, -0.0699462890625, -0.0164642333984375, 0.0272064208984375, 0.045318603515625, 0.0294342041015625, 0.017120361328125, -0.053009033203125, -0.014617919921875, 0.0159912109375, 0.0049591064453125, 0.002277374267578125, 0.06231689453125, 0.0166015625, 0.00396728515625, 0.0247802734375, -0.0106048583984375, 0.04827880859375, -0.0556640625, 0.0135040283203125, 0.0292816162109375, 0.004482269287109375, -0.026275634765625, -0.023681640625, 0.005157470703125, -0.0016622543334960938, -0.020965576171875, -0.015838623046875, 0.038330078125, 0.0299072265625, 0.0209808349609375, 0.042755126953125, -0.006134033203125, -0.026123046875, 0.00634765625, 0.04034423828125, 0.0006160736083984375, 0.005367279052734375, -0.015777587890625, 0.008148193359375, -0.0010347366333007812, -0.034881591796875, -0.01190185546875, 0.03271484375, -0.029541015625, 0.0015659332275390625, 0.017913818359375, 0.008453369140625, 0.004535675048828125, 0.04302978515625, -0.00135040283203125, -0.00434112548828125, -0.033843994140625, -0.080322265625, -0.00881195068359375, -0.007358551025390625, 0.043304443359375, 0.02569580078125, 0.024871826171875, -0.0296478271484375, 0.0194091796875, -0.028350830078125, -0.02008056640625, -0.0038318634033203125, 0.002346038818359375, -0.019134521484375, -0.045074462890625, 0.03631591796875, -0.00942230224609375, 0.00582122802734375, -0.013519287109375, -0.005550384521484375, 0.022064208984375, 0.012298583984375, -0.01477813720703125, -0.029052734375, 0.01025390625, 0.0010900497436523438, 0.01806640625, -0.016571044921875, -0.0011739730834960938, -0.0297698974609375, -0.031280517578125, -0.0274658203125, 0.03607177734375, -0.00426483154296875, 0.004787445068359375, 0.0386962890625, 0.0469970703125, -0.0282745361328125, -0.0231170654296875, -0.0139923095703125, -0.0178375244140625, -0.033111572265625, -0.026214599609375, 0.01458740234375, 0.0276031494140625, 0.016387939453125, 0.0124359130859375, 0.03631591796875, -0.0031833648681640625, -0.01763916015625, 0.0245361328125, 0.004741668701171875, -0.0296783447265625, 0.0260162353515625, -0.03533935546875, 0.04180908203125, -0.00934600830078125, -0.07928466796875, -0.0177459716796875, 0.003307342529296875, 0.006256103515625, -0.004680633544921875, 0.032470703125, 0.0239410400390625, 0.016204833984375, 0.0203094482421875, 0.00542449951171875, -0.01165771484375, -0.0240936279296875, 0.0241546630859375, -0.016448974609375, 0.00670623779296875, 0.00812530517578125, -0.019317626953125, -0.03271484375, -0.0299224853515625, 0.04852294921875, 0.034942626953125, 0.0557861328125, -0.027862548828125, 0.0338134765625, -0.00592041015625, -0.0036678314208984375, -0.0198822021484375, 0.007354736328125, -0.01190948486328125, -0.0187530517578125, -0.01202392578125, 0.00775146484375, -0.0697021484375, 0.06805419921875, -0.0123138427734375, 0.00972747802734375, 0.04180908203125, -0.0168914794921875, -0.0013303756713867188, 0.0049285888671875, 0.0169677734375, -0.0167694091796875, -0.0660400390625, -0.0090484619140625, 0.043670654296875, 0.0040740966796875, 0.053314208984375, -0.0155487060546875, 0.01493072509765625, -0.018585205078125, -0.015777587890625, 0.0004978179931640625, -0.005649566650390625, -0.0268096923828125, 0.0192718505859375, -0.0186920166015625, -0.040374755859375, -0.0462646484375, -0.0323486328125, 0.00881195068359375, -0.030426025390625, 0.07904052734375, -0.058197021484375, 0.0304107666015625, 0.0011129379272460938, -0.0025348663330078125, 0.0062713623046875, -0.025787353515625, -0.0167999267578125, 0.020355224609375, -0.004093170166015625, -0.020660400390625, -0.01519775390625, -0.0117950439453125, -0.021087646484375, -0.01593017578125, -0.0042572021484375, -0.003444671630859375, -0.0302581787109375, 0.0176849365234375, 0.01459503173828125, 0.0260467529296875, -0.005435943603515625, -0.03076171875, -0.00873565673828125, -0.034942626953125, 0.05517578125, -0.01018524169921875, -0.01381683349609375, -0.002628326416015625, 0.01751708984375, -0.01522064208984375, -0.02227783203125, -0.033966064453125, 0.021453857421875, -0.0035037994384765625, 0.03924560546875, 0.032958984375, -0.03680419921875, 0.0062103271484375, 0.057098388671875, 0.033935546875, 0.0938720703125, -0.0176544189453125, -0.0255279541015625, 0.00403594970703125, -0.01508331298828125, 0.01629638671875, -0.051605224609375, -0.0022182464599609375, -0.06964111328125, -0.00948333740234375, -0.0027103424072265625, -0.024932861328125, -0.01480865478515625, -0.06439208984375, -0.08251953125, 0.0308685302734375, 0.0024509429931640625, -0.037872314453125, -0.047119140625, -0.0290679931640625, 0.00904083251953125, 0.0167694091796875, -0.0089569091796875, -0.024810791015625, -0.06683349609375, 0.037506103515625, 0.017730712890625, -0.0285797119140625, 0.041259765625, 0.00533294677734375, -0.033203125, 0.02716064453125, 0.038330078125, -0.007061004638671875, -0.015960693359375, 0.003002166748046875, 0.046905517578125, 0.049835205078125, 0.0014209747314453125, 0.057891845703125, 0.031585693359375, -0.0361328125, 0.00872802734375, -0.01438140869140625, -0.0165557861328125, -0.0033435821533203125, 0.08233642578125, 0.006542205810546875, 0.02642822265625, -0.0273895263671875, -0.0484619140625, -0.037841796875, -0.01001739501953125, -0.0053253173828125, 0.02520751953125, -0.0843505859375, 0.0081634521484375, 0.01788330078125, 0.01367950439453125, 0.0171661376953125, 0.0207977294921875, 0.019622802734375, -0.01171875, 0.054534912109375, -0.0276336669921875, -0.007904052734375, -0.0186920166015625, 0.058868408203125, -0.01016998291015625, 0.07171630859375, -0.0297698974609375, 0.025421142578125, 0.07769775390625, 0.0226593017578125, 0.022308349609375, 0.01023101806640625, -0.06390380859375, 0.0277252197265625, -0.0107879638671875, 0.08502197265625, -0.056793212890625, -0.04541015625, -0.007518768310546875, 0.0010824203491210938, -0.016204833984375, -0.007312774658203125, 0.0239410400390625, -0.0101470947265625, -0.0198822021484375, 0.0771484375, 0.0014095306396484375, -0.049835205078125, -0.0262298583984375, 0.040191650390625, -0.022430419921875, -0.020172119140625, -0.011505126953125, -0.04095458984375, 0.00922393798828125, 0.048919677734375, 0.031829833984375, -0.0196533203125, 0.0455322265625, 0.04510498046875, 0.041229248046875, 0.017333984375 ]
244df666bb4e1558f9d00d4b270c5f955c0d86d0
Wordpress Stackexchange Q: Only get post types based on support I am trying to retrieve a list including both builtin and custom post types: $post_types = get_post_types(array( 'public' => TRUE, ), 'objects'); The above almost works, but I would like to exclude the attachment from this list, only returning post types with specific support such as editor, title and thumbnail. Is this possible? A: I found out that get_post_types_by_support() seems to be the solution to get the desired result: $post_types = get_post_types_by_support(array('title', 'editor', 'thumbnail')); The above will return post, page and any custom post type that supports title, editor and thumbnail. Since this will also return private post types, we could loop through the list and check if the type is viewable at the frontend. This can be done by using the is_post_type_viewable() function: foreach ($post_types as $key => $post_type) { if (!is_post_type_viewable($post_type)) { unset($post_types[$post_type]); } }
Q: Only get post types based on support I am trying to retrieve a list including both builtin and custom post types: $post_types = get_post_types(array( 'public' => TRUE, ), 'objects'); The above almost works, but I would like to exclude the attachment from this list, only returning post types with specific support such as editor, title and thumbnail. Is this possible? A: I found out that get_post_types_by_support() seems to be the solution to get the desired result: $post_types = get_post_types_by_support(array('title', 'editor', 'thumbnail')); The above will return post, page and any custom post type that supports title, editor and thumbnail. Since this will also return private post types, we could loop through the list and check if the type is viewable at the frontend. This can be done by using the is_post_type_viewable() function: foreach ($post_types as $key => $post_type) { if (!is_post_type_viewable($post_type)) { unset($post_types[$post_type]); } } A: get_post_types() accepts an array of arguments to match the fields of a post type object. So, you could do something like this (not tested): $post_types = get_post_types(array( 'public' => true, 'supports' => array( 'editor', 'title', 'thumbnail' ) ), 'objects'); Unfortunately, you can not set someting like "exclude" in this function, and also you get only post types that support exactly 'editor', 'title', 'thumbnail', no more and no less. Or you could use get_post_types_by_support() (only for WP 4.5 and greater. Also, note that you can not exclude specific post types with this function either, but for the specific case of support for editor, title, thumbnail, attachment post type will be excluded in most cases). $post_types = get_post_types_by_support( array( 'editor', 'title', 'thumbnail' ) ); If you want something that will work in any case, I would try to get post types based in a wider criteria, then build your own array, something like this: $_post_types = get_post_types_by_support( array( 'editor', 'title', 'thumbnail' ) ); $post_types = []; foreach($_post_types as $post_type) { // In most cases, attachment post type won't be here, but it can be if( $post_type->name !== 'attachment' ) { $post_types[] = $post_type; } } A: The simplest approach for the OP's question would be to just unset 'attachment' from the returned array; $post_types = get_post_types(array('public' => TRUE,), 'objects'); unset($post_types['attachment']); While not as elegant as the other solutions it has the least overhead.
wordpress
{ "language": "en", "length": 377, "provenance": "stackexchange_00019.jsonl.gz:483105", "question_score": "9", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/291117" }
[ 0.02294921875, -0.001705169677734375, -0.007701873779296875, 0.00502777099609375, 0.00444793701171875, -0.0215606689453125, 0.0382080078125, -0.0250244140625, 0.0089263916015625, 0.00478363037109375, 0.008056640625, -0.003696441650390625, -0.0254669189453125, -0.035552978515625, 0.0015010833740234375, -0.0202789306640625, 0.038665771484375, -0.0207672119140625, 0.03314208984375, -0.017791748046875, 0.0296630859375, -0.00980377197265625, 0.0369873046875, 0.029022216796875, 0.003337860107421875, -0.0024967193603515625, 0.0528564453125, -0.0206146240234375, 0.00826263427734375, -0.00949859619140625, 0.007259368896484375, -0.02337646484375, -0.0026416778564453125, 0.02410888671875, -0.0013856887817382812, 0.006710052490234375, 0.0286712646484375, 0.0132598876953125, 0.0288848876953125, 0.00966644287109375, -0.01812744140625, 0.0247039794921875, -0.01812744140625, -0.0276031494140625, -0.0491943359375, -0.028900146484375, -0.0206298828125, -0.003139495849609375, 0.0156097412109375, 0.001430511474609375, -0.003345489501953125, 0.0193023681640625, 0.0201263427734375, -0.01276397705078125, -0.015533447265625, -0.01251220703125, -0.0202789306640625, -0.00955963134765625, 0.032501220703125, -0.004688262939453125, -0.028167724609375, -0.029998779296875, 0.015960693359375, -0.01471710205078125, -0.018402099609375, 0.0108642578125, 0.01206207275390625, -0.000675201416015625, -0.04583740234375, -0.034027099609375, 0.03961181640625, -0.032958984375, 0.00788116455078125, -0.0300445556640625, -0.026275634765625, 0.0097808837890625, 0.016571044921875, -0.008880615234375, 0.0013723373413085938, -0.031829833984375, -0.00478363037109375, 0.0064544677734375, -0.025482177734375, 0.005229949951171875, 0.015411376953125, 0.06488037109375, -0.021148681640625, -0.03179931640625, -0.0203857421875, 0.0114288330078125, -0.00891876220703125, -0.01873779296875, -0.0396728515625, 0.05816650390625, 0.0240020751953125, -0.0108184814453125, 0.06005859375, 0.04205322265625, 0.00627899169921875, -0.00904083251953125, 0.0212249755859375, -0.0625, 0.03814697265625, -0.034088134765625, 0.044036865234375, -0.004428863525390625, -0.048553466796875, -0.034515380859375, 0.067626953125, 0.05340576171875, -0.0008134841918945312, 0.02093505859375, 0.00899505615234375, 0.01739501953125, -0.019287109375, 0.003856658935546875, -0.029205322265625, 0.03228759765625, -0.0226593017578125, 0.054718017578125, 0.04559326171875, 0.060821533203125, 0.01332855224609375, -0.0675048828125, -0.00848388671875, -0.00693511962890625, -0.046783447265625, -0.04248046875, 0.034820556640625, 0.04339599609375, -0.037322998046875, -0.013519287109375, 0.04315185546875, -0.0096282958984375, 0.00533294677734375, -0.02294921875, -0.021209716796875, -0.0159454345703125, -0.0006375312805175781, 0.01318359375, 0.0216827392578125, -0.01849365234375, 0.0255126953125, 0.0170745849609375, 0.0203399658203125, 0.0177154541015625, 0.02557373046875, 0.026214599609375, -0.0171051025390625, -0.034912109375, 0.0310516357421875, -0.010406494140625, 0.0478515625, 0.013671875, -0.03265380859375, -0.027923583984375, 0.04962158203125, -0.045257568359375, -0.0394287109375, -0.07257080078125, 0.0343017578125, -0.01282501220703125, -0.03131103515625, -0.0263519287109375, -0.0640869140625, 0.021728515625, -0.041412353515625, -0.00634765625, 0.021881103515625, 0.039642333984375, 0.008544921875, -0.0286712646484375, 0.030975341796875, 0.00505828857421875, -0.018829345703125, 0.005474090576171875, -0.01873779296875, -0.01493072509765625, 0.0299072265625, -0.00028324127197265625, -0.03009033203125, -0.03546142578125, 0.0155487060546875, -0.00789642333984375, -0.066650390625, 0.0312347412109375, 0.00963592529296875, 0.039764404296875, 0.00890350341796875, -0.00047898292541503906, 0.061309814453125, 0.0350341796875, 0.00453948974609375, -0.004024505615234375, -0.01110076904296875, -0.006816864013671875, -0.0179595947265625, 0.003673553466796875, -0.033050537109375, 0.01398468017578125, 0.03179931640625, 0.005207061767578125, -0.00942230224609375, -0.03179931640625, -0.05511474609375, -0.0297088623046875, -0.00543212890625, 0.02862548828125, -0.043853759765625, 0.041412353515625, 0.047760009765625, 0.022186279296875, -0.08575439453125, 0.07757568359375, 0.039398193359375, 0.0169677734375, -0.00513458251953125, 0.04229736328125, -0.036590576171875, 0.034454345703125, -0.0333251953125, -0.068115234375, -0.0284271240234375, 0.043731689453125, 0.05584716796875, 0.03253173828125, 0.002460479736328125, 0.0115814208984375, 0.07379150390625, 0.047576904296875, -0.027374267578125, -0.03411865234375, -0.00899505615234375, -0.005275726318359375, -0.007488250732421875, 0.002979278564453125, 0.0272216796875, -0.07684326171875, 0.0253143310546875, 0.050689697265625, 0.025726318359375, 0.021881103515625, -0.0260162353515625, -0.022003173828125, 0.0882568359375, 0.002674102783203125, 0.0119781494140625, -0.00811004638671875, -0.0016193389892578125, 0.057769775390625, 0.0020236968994140625, 0.02911376953125, 0.0110931396484375, 0.02001953125, 0.00013148784637451172, 0.0316162109375, 0.0189056396484375, 0.032012939453125, -0.0007529258728027344, 0.0167694091796875, -0.007480621337890625, 0.01364898681640625, -0.00626373291015625, 0.0025310516357421875, 0.0556640625, 0.00396728515625, 0.048614501953125, 0.0301666259765625, -0.04644775390625, 0.006206512451171875, 0.00901031494140625, 0.041595458984375, 0.01446533203125, 0.0626220703125, 0.07080078125, 0.0079193115234375, -0.0189208984375, -0.0565185546875, 0.041107177734375, 0.03924560546875, -0.0215911865234375, 0.00678253173828125, -0.018768310546875, -0.00667572021484375, -0.015411376953125, -0.041656494140625, 0.0220947265625, 0.01282501220703125, -0.0042266845703125, -0.01219940185546875, -0.003536224365234375, 0.0341796875, 0.0020236968994140625, 0.0134735107421875, 0.0276947021484375, -0.01076507568359375, 0.0026760101318359375, -0.039154052734375, 0.04962158203125, -0.037933349609375, 0.048431396484375, 0.0738525390625, -0.00830841064453125, 0.0177764892578125, -0.00235748291015625, -0.00458526611328125, -0.0006575584411621094, 0.007213592529296875, -0.0022029876708984375, -0.028472900390625, -0.01270294189453125, 0.037139892578125, 0.0116119384765625, 0.037139892578125, -0.0205230712890625, -0.039764404296875, 0.01241302490234375, 0.037506103515625, -0.021148681640625, -0.0041656494140625, 0.043975830078125, -0.0562744140625, -0.007221221923828125, -0.0272216796875, -0.037567138671875, -0.008056640625, -0.005828857421875, -0.0118408203125, -0.0016374588012695312, -0.01297760009765625, -0.05767822265625, -0.0263671875, -0.05926513671875, -0.0181427001953125, -0.023284912109375, 0.01125335693359375, 0.01241302490234375, 0.06878662109375, 0.0347900390625, -0.045379638671875, 0.02996826171875, 0.07159423828125, -0.025665283203125, 0.019134521484375, -0.01038360595703125, 0.014404296875, -0.0002446174621582031, 0.01922607421875, 0.0181427001953125, 0.0079803466796875, -0.0135040283203125, -0.04010009765625, -0.00925445556640625, -0.0035495758056640625, 0.0157928466796875, 0.01346588134765625, -0.001407623291015625, 0.047760009765625, 0.031463623046875, -0.027191162109375, -0.0232086181640625, -0.008697509765625, -0.035858154296875, 0.00791168212890625, -0.0086517333984375, 0.00655364990234375, -0.026947021484375, 0.046630859375, 0.0085296630859375, 0.05224609375, -0.0166778564453125, 0.00165557861328125, 0.0228118896484375, -0.004177093505859375, 0.0057373046875, -0.00250244140625, 0.0176849365234375, -0.0226593017578125, 0.022705078125, 0.0166473388671875, -0.009552001953125, -0.00399017333984375, -0.002349853515625, -0.013336181640625, -0.05810546875, 0.053436279296875, -0.0167999267578125, 0.0103302001953125, -0.0276947021484375, -0.037139892578125, -0.0009007453918457031, 0.1009521484375, -0.0401611328125, -0.0018320083618164062, -0.047576904296875, 0.00994873046875, 0.0034503936767578125, -0.0860595703125, -0.0074615478515625, -0.0049591064453125, -0.0565185546875, 0.0157318115234375, -0.0036830902099609375, -0.0176544189453125, -0.034088134765625, -0.00832366943359375, -0.056671142578125, -0.01387786865234375, 0.0256195068359375, -0.00969696044921875, 0.037384033203125, 0.0146484375, 0.0282440185546875, 0.009063720703125, -0.033905029296875, -0.023651123046875, -0.083251953125, -0.0065155029296875, 0.0161285400390625, 0.042022705078125, -0.0207672119140625, 0.01369476318359375, -0.06451416015625, 0.0030384063720703125, 0.005840301513671875, 0.0081329345703125, 0.00707244873046875, -0.00896453857421875, -0.03057861328125, 0.042266845703125, 0.020233154296875, -0.00859832763671875, -0.00453948974609375, -0.027496337890625, -0.034149169921875, -0.00835418701171875, 0.005474090576171875, 0.013580322265625, 0.0396728515625, -0.0159912109375, 0.0122833251953125, -0.0167388916015625, -0.048919677734375, 0.028564453125, -0.015380859375, -0.01293182373046875, -0.05609130859375, -0.0141754150390625, 0.0631103515625, 0.022705078125, -0.0035877227783203125, -0.003635406494140625, 0.0762939453125, -0.0022830963134765625, -0.042266845703125, -0.06646728515625, 0.0064239501953125, 0.027618408203125, -0.032501220703125, 0.07366943359375, 0.030792236328125, -0.012298583984375, 0.057952880859375, -0.01092529296875, 0.0089874267578125, -0.0228118896484375, 0.03338623046875, -0.0173492431640625, -0.051025390625, 0.037139892578125, -0.0287628173828125, 0.028350830078125, 0.01453399658203125, 0.006011962890625, -0.0318603515625, 0.0345458984375, 0.040679931640625, -0.02691650390625, 0.041046142578125, -0.0032634735107421875, 0.0004601478576660156, 0.00708770751953125, 0.01462554931640625, 0.039825439453125, 0.04595947265625, -0.014801025390625, -0.0024738311767578125, -0.0246124267578125, -0.00439453125, 0.027862548828125, 0.0121917724609375, 0.0218658447265625, 0.02252197265625, 0.035614013671875, -0.0027446746826171875, -0.005130767822265625, 0.0010061264038085938, -0.0231170654296875, -0.033660888671875, -0.0599365234375, -0.0269317626953125, 0.002689361572265625, 0.024078369140625, 0.033477783203125, -0.01436614990234375, 0.054351806640625, 0.05078125, -0.0207672119140625, -0.006389617919921875, -0.0123291015625, 0.024261474609375, -0.0660400390625, 0.0082855224609375, 0.004825592041015625, -0.006900787353515625, 0.010009765625, 0.043487548828125, -0.0209808349609375, 0.03497314453125, -0.0165863037109375, 0.039581298828125, 0.04205322265625, 0.0028095245361328125, 0.0023212432861328125, 0.039764404296875, -0.01274871826171875, 0.0025196075439453125, -0.003711700439453125, -0.0296630859375, -0.0228424072265625, 0.0014009475708007812, 0.034149169921875, -0.0272674560546875, -0.01425933837890625, 0.049346923828125, -0.0017347335815429688, -0.00894927978515625, 0.032196044921875, 0.0653076171875, -0.01934814453125, 0.00144195556640625, 0.0308685302734375, 0.01474761962890625, -0.0017480850219726562, -0.04547119140625, 0.020721435546875, -0.0286407470703125, -0.0200653076171875, 0.021270751953125, -0.1075439453125, 0.047821044921875, 0.08880615234375, -0.036376953125, -0.032928466796875, 0.004512786865234375, -0.07342529296875, -0.0178985595703125, 0.002750396728515625, 0.0016336441040039062, -0.01409912109375, -0.012359619140625, 0.034454345703125, -0.00945281982421875, -0.0281219482421875, -0.004413604736328125, 0.011627197265625, 0.035186767578125, 0.008056640625, -0.00888824462890625, 0.0007777214050292969, -0.057586669921875, -0.016937255859375, -0.0233001708984375, -0.04345703125, -0.044464111328125, -0.00867462158203125, 0.03192138671875, 0.0269622802734375, -0.0102386474609375, -0.031951904296875, 0.0183868408203125, 0.040435791015625, 0.0052642822265625, 0.0797119140625, 0.00986480712890625, 0.0667724609375, -0.032623291015625, 0.0479736328125, 0.0128631591796875, 0.025604248046875, -0.0419921875, -0.00688934326171875, -0.01806640625, -0.08966064453125, 0.0110015869140625, -0.0032062530517578125, -0.00579833984375, 0.045684814453125, 0.017822265625, 0.028839111328125, -0.040985107421875, -0.0020465850830078125, -0.00421142578125, -0.0526123046875, 0.058746337890625, -0.01235198974609375, -0.01380157470703125, -0.072021484375, -0.00626373291015625, 0.01178741455078125, 0.00743865966796875, -0.02288818359375, -0.01479339599609375, 0.008544921875, -0.0016508102416992188, 0.0184783935546875, -0.00463104248046875, 0.032012939453125, 0.06793212890625, -0.0016832351684570312, 0.0457763671875, 0.0183868408203125, 0.0186309814453125, 0.0190582275390625, -0.0004954338073730469, 0.00637054443359375, -0.04034423828125, 0.04901123046875, 0.0146026611328125, -0.0168609619140625, 0.051544189453125, -0.032501220703125, 0.0206146240234375, 0.01261138916015625, 0.061737060546875, -0.059051513671875, 0.033203125, 0.05810546875, 0.01255035400390625, 0.0111541748046875, -0.01416015625, 0.01287841796875, 0.005584716796875, -0.0020885467529296875, -0.001163482666015625, -0.0567626953125, -0.034698486328125, -0.0089569091796875, 0.0010585784912109375, -0.019195556640625, 0.0194549560546875, -0.01415252685546875, 0.00017583370208740234, -0.049835205078125, 0.01160430908203125, -0.0251922607421875, -0.0025634765625, 0.0305023193359375, -0.04852294921875, -0.020904541015625, -0.059326171875, -0.05072021484375, 0.0289459228515625, -0.03564453125, 0.0316162109375, 0.015472412109375, -0.004840850830078125, 0.045318603515625, -0.025604248046875, 0.04022216796875, 0.021881103515625, -0.061004638671875, -0.055816650390625, -0.01580810546875, 0.0079803466796875, 0.05377197265625, -0.0246429443359375, 0.0408935546875, -0.0227508544921875, -0.01343536376953125, -0.0126190185546875, 0.0011339187622070312, 0.056854248046875, -0.00432586669921875, -0.0307464599609375, 0.0240936279296875, 0.054840087890625, -0.01143646240234375, -0.01271820068359375, -0.003498077392578125, -0.043365478515625, -0.0091705322265625, -0.0274200439453125, -0.035980224609375, -0.006969451904296875, -0.02081298828125, -0.04180908203125, 0.0261993408203125, -0.0264739990234375, 0.043914794921875, 0.038116455078125, -0.0276031494140625, -0.00836944580078125, -0.0214080810546875, -0.0268402099609375, 0.035888671875, -0.0104827880859375, 0.00899505615234375, 0.006076812744140625, 0.0207672119140625, -0.00018024444580078125, -0.000690460205078125, 0.0263519287109375, 0.002227783203125, -0.03741455078125, 0.006072998046875, 0.07110595703125, 0.056365966796875, 0.02783203125, 0.00762176513671875, 0.0216522216796875, 0.0124359130859375, 0.06390380859375, -0.02716064453125, 0.04339599609375, -0.03302001953125, 0.0161285400390625, 0.01274871826171875, 0.0115966796875, 0.013092041015625, -0.017852783203125, -0.0235595703125, -0.0244598388671875, -0.00785064697265625, 0.00537872314453125, 0.00734710693359375, 0.0303955078125, -0.0025043487548828125, 0.06134033203125, -0.07513427734375, -0.0022678375244140625, -0.0241851806640625, 0.057403564453125, 0.0033664703369140625, 0.004169464111328125, -0.014739990234375, 0.007694244384765625, 0.00997161865234375, -0.0292205810546875, -0.00547027587890625, 0.015716552734375, -0.0185089111328125, -0.0162506103515625, 0.00238037109375, 0.0137939453125, -0.04827880859375, 0.01023101806640625, 0.03448486328125, -0.01380157470703125, -0.0243682861328125, -0.05230712890625, 0.018829345703125, 0.018707275390625, -0.007236480712890625, 0.0299835205078125, 0.0033397674560546875, 0.021575927734375, 0.07763671875, -0.07440185546875, 0.0014705657958984375, 0.051239013671875, 0.0482177734375, -0.0188751220703125, -0.057525634765625, -0.04913330078125, -0.0323486328125, -0.02362060546875, -0.0223846435546875, 0.035400390625, 0.023956298828125, 0.01715087890625, 0.042388916015625, 0.03228759765625, -0.005611419677734375, -0.0096282958984375, -0.01114654541015625, -0.0478515625, 0.029144287109375, -0.0061187744140625, -0.01143646240234375, -0.03155517578125, 0.0205078125, 0.04864501953125, -0.01364898681640625, 0.02960205078125, 0.0012216567993164062, -0.03143310546875, 0.01268768310546875, 0.0384521484375, -0.0034732818603515625, -0.038116455078125, -0.02362060546875, -0.0450439453125, 0.0242462158203125, -0.0213165283203125, 0.029510498046875, -0.0537109375, 0.042266845703125, 0.0200958251953125, 0.03961181640625, 0.004917144775390625, 0.01384735107421875, 0.061676025390625, -0.002742767333984375, 0.050262451171875, 0.0301971435546875, -0.082763671875, -0.019439697265625, -0.042327880859375, -0.0191192626953125, 0.0254974365234375, 0.0264892578125, -0.028167724609375, 0.047332763671875, 0.049560546875, -0.01361083984375, -0.00714874267578125, 0.01421356201171875, 0.0258331298828125, 0.0278472900390625, 0.0201416015625, 0.0296630859375, -0.05303955078125, -0.036285400390625, -0.00925445556640625, 0.04437255859375, -0.0140533447265625, 0.04791259765625, 0.004978179931640625, 0.01024627685546875, -0.0293731689453125, 0.061981201171875, -0.08685302734375, -0.0196685791015625, -0.005828857421875, -0.01464080810546875, 0.035308837890625, 0.0178680419921875, 0.031158447265625, 0.0145416259765625, 0.042449951171875, -0.06011962890625, -0.0258636474609375, 0.0003521442413330078, 0.018218994140625, -0.03668212890625, 0.004497528076171875, -0.0245208740234375, -0.003597259521484375, -0.0302886962890625, -0.037933349609375, 0.0418701171875, 0.02655029296875, 0.041259765625, 0.03350830078125, 0.00811767578125, -0.0187225341796875, 0.0259246826171875, -0.0175933837890625, 0.0120849609375, 0.026824951171875, -0.0075531005859375, -0.0108489990234375, 0.0367431640625, 0.00004851818084716797, 0.013092041015625, 0.030853271484375, 0.0399169921875, 0.0205230712890625, -0.0015697479248046875, 0.000980377197265625, -0.008331298828125, 0.0254669189453125, -0.03424072265625, -0.01029205322265625, 0.018524169921875, 0.005290985107421875, -0.0294189453125, -0.01336669921875, -0.0175933837890625, -0.0279693603515625, -0.004985809326171875, 0.0098419189453125, 0.00777435302734375, -0.040435791015625, -0.0035076141357421875, -0.03106689453125, 0.00652313232421875, 0.01505279541015625, -0.05120849609375, 0.021728515625, 0.000888824462890625, -0.0184478759765625, 0.00264739990234375, 0.02301025390625, 0.01299285888671875, 0.049896240234375, -0.0174407958984375, -0.0122528076171875, 0.0008835792541503906, 0.020355224609375, 0.00029277801513671875, 0.04559326171875, 0.0736083984375, -0.05169677734375, -0.044403076171875, 0.040191650390625, 0.0298309326171875, 0.08477783203125, 0.00991058349609375, -0.01398468017578125, 0.000438690185546875, 0.0040283203125, -0.041290283203125, -0.039215087890625, 0.03533935546875, -0.07177734375, -0.04510498046875, 0.0066070556640625, -0.0178680419921875, 0.0039215087890625, -0.02874755859375, -0.04541015625, 0.07513427734375, -0.00739288330078125, -0.016448974609375, -0.07672119140625, 0.0041961669921875, 0.0089111328125, 0.0301055908203125, -0.005313873291015625, -0.044281005859375, -0.0477294921875, 0.0277252197265625, -0.0008106231689453125, -0.0196075439453125, 0.034881591796875, -0.022857666015625, -0.0263214111328125, -0.004436492919921875, 0.00949859619140625, -0.025787353515625, -0.012451171875, -0.004886627197265625, 0.040008544921875, 0.0278167724609375, -0.0174102783203125, 0.033111572265625, 0.034759521484375, 0.0182037353515625, 0.029083251953125, 0.00405120849609375, -0.060943603515625, -0.019744873046875, 0.01226806640625, 0.051025390625, 0.032440185546875, -0.0165252685546875, 0.0217437744140625, -0.0207977294921875, -0.083984375, 0.00981903076171875, 0.035797119140625, -0.0521240234375, 0.01528167724609375, 0.017242431640625, 0.007843017578125, -0.007305145263671875, -0.002033233642578125, -0.0007147789001464844, -0.0113067626953125, 0.01806640625, -0.01207733154296875, -0.016876220703125, 0.046966552734375, -0.0261383056640625, -0.01385498046875, -0.0170135498046875, -0.005733489990234375, -0.022430419921875, -0.013580322265625, 0.015411376953125, -0.031524658203125, -0.0217437744140625, 0.00830841064453125, 0.033172607421875, 0.00522613525390625, 0.0233917236328125, -0.00908660888671875, 0.01511383056640625, -0.0090789794921875, 0.0299072265625, 0.00856781005859375, 0.01342010498046875, -0.0194244384765625, 0.041900634765625, 0.034942626953125, -0.003936767578125, 0.011505126953125, 0.0233306884765625, 0.007244110107421875, 0.03350830078125, 0.021148681640625, -0.035797119140625, 0.036346435546875, -0.0214385986328125, -0.001628875732421875, -0.006961822509765625, -0.03936767578125, -0.03179931640625, 0.017364501953125, 0.04058837890625, -0.0250244140625, 0.0209808349609375 ]
1aeac34f9566f6263b52adefbd1b41b40cc981ca
Wordpress Stackexchange Q: Create a global variable for use in all templates I used following code function userinfo_global() { global $users_info; wp_get_current_user(); } add_action( 'init', 'userinfo_global' ); in a file users.php , this file are call in inside funtions.php. in template file I have <?php echo $users_info->user_firstname; ?> , but no working.. I want to do global wp_get_current_user(); You know why? A: You'll also have to fill the variable, e.g. function userinfo_global() { global $users_info; $users_info = wp_get_current_user(); } add_action( 'init', 'userinfo_global' ); And you should then be able to use $users_info everywhere in global context. Keep in mind that some template pars (header.php, footer.php, those used via get_template_part) are not in global scope by default, so you'll have to use global $users_info; in those files before accessing the variable.
Q: Create a global variable for use in all templates I used following code function userinfo_global() { global $users_info; wp_get_current_user(); } add_action( 'init', 'userinfo_global' ); in a file users.php , this file are call in inside funtions.php. in template file I have <?php echo $users_info->user_firstname; ?> , but no working.. I want to do global wp_get_current_user(); You know why? A: You'll also have to fill the variable, e.g. function userinfo_global() { global $users_info; $users_info = wp_get_current_user(); } add_action( 'init', 'userinfo_global' ); And you should then be able to use $users_info everywhere in global context. Keep in mind that some template pars (header.php, footer.php, those used via get_template_part) are not in global scope by default, so you'll have to use global $users_info; in those files before accessing the variable. A: wp_get_current_user() is already a global function predefined by WordPress. Since you'd have to add global $users_info; to your templates to make sure that you always have the global variable, you might just as well have $users_info = wp_get_current_user(); in its place.
wordpress
{ "language": "en", "length": 170, "provenance": "stackexchange_00019.jsonl.gz:483125", "question_score": "4", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/291181" }
[ 0.027099609375, -0.03570556640625, -0.03424072265625, -0.061676025390625, -0.01343536376953125, -0.0289306640625, 0.003307342529296875, 0.04852294921875, 0.024627685546875, 0.031951904296875, -0.032562255859375, 0.02032470703125, -0.004047393798828125, 0.006137847900390625, -0.0175018310546875, 0.00010597705841064453, 0.037811279296875, -0.0272216796875, 0.02606201171875, -0.01474761962890625, 0.008270263671875, 0.01947021484375, 0.017303466796875, 0.0279541015625, 0.029052734375, -0.07733154296875, 0.019683837890625, 0.01177978515625, 0.003047943115234375, -0.032073974609375, 0.0101470947265625, 0.03497314453125, -0.0027313232421875, -0.004108428955078125, 0.00562286376953125, -0.0305938720703125, -0.01023101806640625, 0.0188751220703125, 0.02667236328125, -0.01534271240234375, 0.0218505859375, -0.0014867782592773438, -0.020355224609375, 0.043609619140625, -0.0235443115234375, -0.08282470703125, 0.047393798828125, -0.0308074951171875, 0.0280303955078125, 0.0330810546875, 0.0183563232421875, 0.004978179931640625, 0.026092529296875, 0.0078277587890625, -0.0111083984375, -0.005950927734375, -0.00888824462890625, -0.0118408203125, 0.052581787109375, 0.0055084228515625, -0.0419921875, -0.052215576171875, 0.0301513671875, -0.056854248046875, 0.0158843994140625, -0.04998779296875, -0.020965576171875, 0.04541015625, -0.0253448486328125, 0.01291656494140625, 0.03173828125, 0.01617431640625, 0.0033206939697265625, -0.004688262939453125, -0.003849029541015625, -0.049163818359375, 0.051788330078125, -0.0281219482421875, -0.0226593017578125, 0.0294189453125, -0.053314208984375, -0.0380859375, -0.05694580078125, -0.01110076904296875, -0.01200103759765625, 0.0211334228515625, -0.017364501953125, 0.00934600830078125, -0.0248260498046875, -0.0462646484375, -0.02374267578125, 0.029296875, -0.033905029296875, -0.0447998046875, -0.030029296875, -0.0361328125, 0.0196990966796875, 0.0823974609375, -0.042236328125, 0.00559234619140625, -0.0298919677734375, -0.00897979736328125, 0.007450103759765625, -0.04669189453125, -0.0127410888671875, 0.06085205078125, 0.0270538330078125, 0.037139892578125, -0.002216339111328125, -0.0014591217041015625, 0.01345062255859375, -0.03204345703125, -0.00856781005859375, -0.0198974609375, -0.033172607421875, 0.00962066650390625, -0.041168212890625, -0.0002161264419555664, 0.006732940673828125, 0.0003502368927001953, 0.01541900634765625, 0.0261077880859375, -0.01093292236328125, 0.0145111083984375, -0.0162506103515625, -0.0190277099609375, -0.00498199462890625, -0.028656005859375, -0.02215576171875, 0.034820556640625, -0.005840301513671875, 0.0122222900390625, 0.04205322265625, -0.0007691383361816406, -0.04022216796875, -0.03167724609375, -0.007373809814453125, -0.0290374755859375, 0.0019083023071289062, 0.00400543212890625, 0.0188140869140625, -0.0439453125, 0.003448486328125, 0.01160430908203125, -0.0018320083618164062, 0.0186920166015625, 0.0318603515625, 0.00726318359375, -0.0224151611328125, -0.0328369140625, -0.01107025146484375, 0.0308380126953125, 0.00370025634765625, 0.0254364013671875, 0.030792236328125, 0.0078125, 0.026031494140625, -0.002864837646484375, -0.005504608154296875, 0.0235748291015625, -0.00627899169921875, -0.02557373046875, -0.0117034912109375, -0.005573272705078125, -0.04449462890625, 0.035919189453125, 0.007717132568359375, -0.006610870361328125, 0.02337646484375, 0.005584716796875, 0.00537109375, 0.0156707763671875, 0.01491546630859375, 0.042144775390625, 0.0115814208984375, 0.004802703857421875, -0.042999267578125, 0.0196075439453125, 0.01434326171875, -0.002227783203125, 0.00441741943359375, -0.025054931640625, 0.0122222900390625, 0.017303466796875, -0.05621337890625, 0.01168060302734375, -0.0265655517578125, -0.0013751983642578125, 0.08758544921875, -0.00244140625, -0.0158233642578125, 0.005344390869140625, -0.0301361083984375, 0.028045654296875, 0.00795745849609375, -0.00835418701171875, -0.0008826255798339844, 0.0172882080078125, -0.0027790069580078125, -0.0267333984375, 0.042327880859375, -0.013641357421875, 0.027191162109375, -0.0538330078125, -0.060546875, -0.02008056640625, -0.011688232421875, 0.0291900634765625, -0.0008783340454101562, -0.0084991455078125, 0.004199981689453125, -0.0204620361328125, 0.004642486572265625, -0.048065185546875, -0.0274658203125, 0.04742431640625, -0.01432037353515625, 0.06048583984375, 0.034210205078125, 0.058441162109375, 0.0413818359375, -0.0131378173828125, 0.048736572265625, -0.0203704833984375, -0.000896453857421875, 0.0101776123046875, -0.035003662109375, -0.004791259765625, -0.046722412109375, 0.011810302734375, -0.01512908935546875, 0.036834716796875, -0.051971435546875, -0.0111541748046875, -0.021148681640625, -0.00481414794921875, -0.00274658203125, -0.0074920654296875, 0.006809234619140625, 0.020263671875, 0.031890869140625, 0.040283203125, -0.002216339111328125, 0.004180908203125, 0.048583984375, -0.014068603515625, 0.01464080810546875, -0.008453369140625, 0.01428985595703125, 0.0377197265625, -0.015289306640625, 0.0078582763671875, 0.0068359375, -0.05633544921875, 0.0136871337890625, 0.0426025390625, -0.03369140625, -0.01434326171875, -0.00940704345703125, 0.009521484375, -0.0111236572265625, -0.01242828369140625, 0.0123291015625, -0.022430419921875, 0.027862548828125, -0.053558349609375, -0.0218048095703125, -0.04119873046875, -0.03399658203125, -0.0189208984375, 0.041595458984375, -0.010467529296875, 0.0106201171875, -0.007312774658203125, -0.042877197265625, 0.01519775390625, -0.02874755859375, 0.0174560546875, 0.0279541015625, -0.02484130859375, 0.0093994140625, 0.0147857666015625, -0.043975830078125, 0.003269195556640625, 0.043731689453125, -0.0278167724609375, -0.00848388671875, 0.032501220703125, 0.059539794921875, 0.006275177001953125, 0.031402587890625, 0.00307464599609375, -0.04132080078125, 0.088134765625, -0.0361328125, -0.03961181640625, 0.006015777587890625, -0.037384033203125, 0.0150146484375, -0.0270538330078125, 0.026702880859375, 0.04638671875, 0.03125, -0.038421630859375, -0.0169830322265625, -0.0003066062927246094, -0.02703857421875, -0.0054779052734375, -0.0097503662109375, -0.055877685546875, 0.0443115234375, 0.0655517578125, 0.01270294189453125, 0.03192138671875, -0.0208892822265625, -0.040740966796875, -0.0194244384765625, -0.00821685791015625, -0.043304443359375, -0.0163726806640625, -0.00273895263671875, -0.0849609375, 0.0087432861328125, -0.036102294921875, -0.044952392578125, 0.0109710693359375, -0.0175628662109375, 0.01593017578125, 0.0221099853515625, -0.046417236328125, -0.030517578125, -0.06365966796875, -0.07037353515625, -0.016845703125, 0.005237579345703125, -0.00951385498046875, -0.0019311904907226562, 0.0400390625, -0.0027065277099609375, -0.0268402099609375, 0.0072784423828125, 0.02630615234375, 0.01198577880859375, 0.0025997161865234375, 0.0234222412109375, -0.04266357421875, 0.02264404296875, 0.0111236572265625, -0.00836181640625, 0.020904541015625, -0.0203399658203125, -0.025299072265625, 0.038238525390625, -0.0182037353515625, 0.021453857421875, 0.037200927734375, -0.05120849609375, -0.0293426513671875, 0.0262298583984375, -0.06988525390625, -0.014373779296875, 0.006305694580078125, -0.0306243896484375, 0.036895751953125, 0.01458740234375, -0.038055419921875, 0.005645751953125, -0.00791168212890625, 0.002170562744140625, 0.0006937980651855469, -0.004093170166015625, 0.0174407958984375, 0.01125335693359375, -0.001033782958984375, 0.00859832763671875, 0.0137176513671875, 0.0192718505859375, -0.01259613037109375, 0.0058441162109375, -0.00769805908203125, 0.00864410400390625, -0.0028820037841796875, 0.0003299713134765625, -0.0306854248046875, -0.04656982421875, 0.036224365234375, 0.037628173828125, 0.009002685546875, -0.01424407958984375, -0.0235595703125, 0.0065155029296875, 0.06671142578125, -0.041412353515625, -0.003398895263671875, 0.00916290283203125, 0.00878143310546875, -0.041168212890625, -0.0219573974609375, -0.078857421875, -0.011871337890625, -0.0201568603515625, 0.01395416259765625, 0.0213623046875, -0.009429931640625, -0.0251617431640625, 0.0411376953125, -0.002788543701171875, -0.00945281982421875, 0.01678466796875, -0.0282745361328125, 0.0190582275390625, -0.007114410400390625, -0.0325927734375, 0.003261566162109375, -0.0017871856689453125, -0.04425048828125, -0.0247955322265625, -0.01465606689453125, -0.011138916015625, 0.041046142578125, 0.033050537109375, -0.031890869140625, -0.005863189697265625, 0.0221405029296875, -0.00614166259765625, 0.0252227783203125, -0.017486572265625, 0.002986907958984375, 0.021209716796875, 0.01239013671875, -0.00579071044921875, 0.0094757080078125, -0.0285186767578125, -0.0239410400390625, -0.0210113525390625, -0.01099395751953125, -0.03460693359375, -0.0321044921875, -0.0130767822265625, -0.014617919921875, -0.048248291015625, -0.006805419921875, 0.0217132568359375, 0.02947998046875, -0.00838470458984375, 0.016204833984375, 0.00482177734375, -0.056182861328125, 0.024078369140625, 0.015533447265625, -0.03662109375, 0.007282257080078125, 0.05706787109375, 0.0382080078125, -0.02410888671875, -0.007740020751953125, 0.0074462890625, 0.046173095703125, -0.02044677734375, 0.031005859375, 0.023162841796875, -0.032135009765625, 0.0275726318359375, 0.01169586181640625, 0.0246124267578125, -0.00052642822265625, 0.0063629150390625, -0.0171966552734375, -0.04290771484375, 0.034912109375, 0.00791168212890625, -0.007465362548828125, -0.00406646728515625, -0.010009765625, -0.031707763671875, -0.01062774658203125, 0.035125732421875, -0.01898193359375, 0.0709228515625, -0.0102386474609375, -0.050689697265625, 0.003391265869140625, -0.07275390625, -0.003704071044921875, 0.02557373046875, -0.01285552978515625, 0.0238494873046875, 0.00763702392578125, -0.02691650390625, 0.0241546630859375, 0.00069427490234375, 0.00824737548828125, 0.007381439208984375, 0.00894927978515625, -0.02130126953125, 0.00553131103515625, -0.0220184326171875, 0.0875244140625, 0.021636962890625, -0.005252838134765625, -0.003086090087890625, -0.0257110595703125, 0.0260772705078125, -0.0177764892578125, 0.0129547119140625, 0.07916259765625, 0.040069580078125, 0.005096435546875, -0.0194854736328125, -0.0260772705078125, 0.0225067138671875, -0.05682373046875, 0.04400634765625, 0.01739501953125, 0.00560760498046875, -0.01715087890625, 0.096923828125, 0.0224456787109375, 0.041717529296875, -0.0291748046875, 0.00643157958984375, 0.0174560546875, -0.006740570068359375, 0.0267181396484375, 0.0089569091796875, -0.01021575927734375, -0.0196990966796875, 0.02734375, 0.00027370452880859375, 0.01165008544921875, 0.0186614990234375, 0.040557861328125, -0.004314422607421875, -0.01250457763671875, -0.00948333740234375, -0.04931640625, -0.0013875961303710938, 0.0301361083984375, -0.005512237548828125, -0.054534912109375, -0.02032470703125, 0.0330810546875, 0.025970458984375, -0.02471923828125, 0.0038623809814453125, -0.0176849365234375, -0.0278472900390625, -0.0214996337890625, 0.03582763671875, -0.0197601318359375, -0.0292205810546875, -0.032867431640625, -0.068359375, -0.019317626953125, 0.0006661415100097656, -0.05029296875, -0.042083740234375, 0.000186920166015625, -0.0167083740234375, 0.039093017578125, -0.02239990234375, 0.0033702850341796875, -0.024261474609375, -0.0102386474609375, -0.0340576171875, -0.0084991455078125, 0.0784912109375, 0.053314208984375, -0.052642822265625, 0.017333984375, 0.00035119056701660156, -0.0002218484878540039, 0.011932373046875, -0.0511474609375, -0.03668212890625, -0.0323486328125, 0.00151824951171875, 0.0271453857421875, -0.015106201171875, 0.00751495361328125, -0.0027675628662109375, 0.0284271240234375, 0.0078125, 0.07757568359375, -0.01270294189453125, 0.0477294921875, 0.0033969879150390625, 0.00222015380859375, 0.0203094482421875, 0.04229736328125, -0.0109100341796875, -0.01123809814453125, 0.037872314453125, -0.022491455078125, -0.048004150390625, -0.0611572265625, -0.017303466796875, 0.031280517578125, 0.0802001953125, -0.013092041015625, 0.0079193115234375, 0.0031986236572265625, 0.00769805908203125, -0.00316619873046875, -0.011383056640625, 0.032196044921875, -0.0177154541015625, 0.05126953125, -0.007568359375, -0.042266845703125, -0.0235137939453125, -0.061248779296875, 0.04119873046875, 0.0255279541015625, 0.0157470703125, -0.02093505859375, -0.069580078125, 0.08416748046875, 0.08123779296875, 0.00600433349609375, 0.041961669921875, 0.01045989990234375, 0.0208587646484375, 0.004291534423828125, 0.0465087890625, -0.032012939453125, -0.0361328125, 0.049957275390625, 0.01395416259765625, -0.043731689453125, 0.0179443359375, -0.0533447265625, 0.034637451171875, 0.07208251953125, 0.0703125, -0.08349609375, 0.01177978515625, 0.01558685302734375, -0.005733489990234375, 0.03228759765625, -0.0167236328125, -0.009185791015625, -0.037841796875, 0.06341552734375, -0.02203369140625, -0.0009722709655761719, 0.039581298828125, -0.0190582275390625, 0.0017824172973632812, -0.00905609130859375, 0.053466796875, 0.0026302337646484375, -0.0132293701171875, -0.000014722347259521484, 0.004535675048828125, 0.0021228790283203125, -0.0225982666015625, 0.040985107421875, -0.00952911376953125, 0.0091705322265625, -0.0308837890625, 0.0255126953125, -0.0005245208740234375, -0.0288238525390625, 0.0301513671875, -0.003948211669921875, 0.025238037109375, 0.0460205078125, -0.012664794921875, 0.013397216796875, 0.019744873046875, -0.006999969482421875, -0.056060791015625, -0.037750244140625, -0.0277099609375, 0.0251922607421875, -0.00946807861328125, 0.0252685546875, -0.01552581787109375, -0.00308990478515625, -0.0133819580078125, 0.007091522216796875, 0.08172607421875, -0.0312042236328125, -0.03204345703125, 0.031982421875, -0.01328277587890625, -0.0267333984375, 0.01319122314453125, 0.0162353515625, -0.05426025390625, -0.045074462890625, 0.033447265625, -0.058074951171875, -0.0137786865234375, 0.00972747802734375, -0.07659912109375, 0.062408447265625, -0.0350341796875, 0.0531005859375, 0.01416015625, 0.00490570068359375, 0.0031909942626953125, -0.00868988037109375, -0.06097412109375, 0.08447265625, 0.01480865478515625, 0.0853271484375, -0.062042236328125, -0.002803802490234375, 0.031036376953125, 0.0462646484375, 0.052276611328125, 0.01085662841796875, 0.034027099609375, -0.0293731689453125, 0.00562286376953125, 0.00742340087890625, -0.0423583984375, 0.00016438961029052734, 0.038726806640625, -0.010894775390625, 0.02197265625, 0.005687713623046875, 0.045867919921875, -0.078369140625, 0.01508331298828125, 0.049774169921875, 0.0069122314453125, -0.0237579345703125, -0.0003399848937988281, 0.0157012939453125, -0.087646484375, 0.017486572265625, 0.0309600830078125, 0.06585693359375, -0.01343536376953125, 0.02130126953125, -0.038787841796875, 0.0259857177734375, -0.023773193359375, -0.0178985595703125, 0.021453857421875, -0.015838623046875, -0.033935546875, 0.06591796875, 0.0157623291015625, -0.003871917724609375, -0.004734039306640625, -0.0013551712036132812, 0.0017957687377929688, 0.017822265625, 0.054595947265625, 0.0443115234375, 0.035430908203125, -0.0443115234375, -0.032196044921875, 0.0604248046875, 0.0789794921875, -0.0276947021484375, -0.034454345703125, 0.0014257431030273438, -0.0028095245361328125, 0.019317626953125, 0.0159454345703125, 0.034027099609375, 0.007701873779296875, 0.018707275390625, -0.043426513671875, -0.0013322830200195312, 0.0103607177734375, 0.020233154296875, 0.0062103271484375, 0.0168914794921875, -0.059478759765625, -0.0162353515625, -0.06488037109375, -0.00820159912109375, 0.040679931640625, 0.04608154296875, 0.01995849609375, 0.0220794677734375, 0.06549072265625, -0.0286407470703125, -0.0212249755859375, 0.018524169921875, 0.0301055908203125, 0.013336181640625, -0.0274505615234375, 0.01372528076171875, 0.031402587890625, 0.03399658203125, 0.0153350830078125, -0.0167694091796875, 0.0099029541015625, 0.0022125244140625, -0.0234375, -0.01190948486328125, -0.01128387451171875, -0.03802490234375, 0.050628662109375, -0.0161285400390625, -0.0009407997131347656, -0.047210693359375, -0.028472900390625, -0.046600341796875, 0.04034423828125, -0.01031494140625, -0.0369873046875, 0.035675048828125, 0.0013217926025390625, -0.050323486328125, 0.016448974609375, -0.01294708251953125, 0.0833740234375, 0.0102386474609375, -0.0228729248046875, 0.0159149169921875, -0.0804443359375, -0.04364013671875, 0.035125732421875, 0.0291900634765625, -0.01494598388671875, 0.023681640625, 0.027587890625, 0.00019121170043945312, 0.00399017333984375, -0.0134429931640625, 0.010833740234375, -0.004077911376953125, 0.0172271728515625, 0.00739288330078125, 0.00787353515625, -0.00559234619140625, 0.0070648193359375, 0.0243682861328125, 0.049896240234375, 0.024505615234375, -0.0041961669921875, 0.033203125, 0.0186004638671875, 0.02081298828125, -0.01375579833984375, -0.004085540771484375, 0.0231781005859375, -0.0005350112915039062, -0.005985260009765625, -0.006439208984375, -0.04412841796875, 0.04644775390625, 0.016937255859375, -0.0034942626953125, 0.03155517578125, -0.0029296875, 0.0018787384033203125, -0.023529052734375, 0.00940704345703125, -0.003849029541015625, -0.0185699462890625, -0.0163726806640625, -0.007781982421875, 0.05206298828125, 0.041290283203125, -0.03790283203125, 0.0235137939453125, -0.005970001220703125, -0.047271728515625, -0.0009365081787109375, -0.0278167724609375, -0.0443115234375, 0.01210784912109375, 0.033966064453125, -0.021392822265625, -0.018218994140625, -0.022613525390625, -0.002105712890625, -0.00485992431640625, 0.0122833251953125, -0.0160980224609375, -0.00290679931640625, 0.018524169921875, -0.0198822021484375, 0.0178375244140625, -0.0184326171875, -0.024322509765625, 0.0244140625, 0.0019273757934570312, -0.025177001953125, -0.068115234375, -0.040802001953125, -0.04437255859375, 0.0021724700927734375, 0.0284881591796875, -0.0200042724609375, -0.052642822265625, -0.05572509765625, 0.006328582763671875, 0.0187225341796875, -0.00640869140625, -0.0229034423828125, -0.00666046142578125, -0.0130462646484375, 0.04571533203125, -0.029541015625, -0.034088134765625, 0.0146331787109375, 0.037872314453125, -0.0165557861328125, 0.0012531280517578125, -0.03515625, -0.008544921875, -0.01325225830078125, 0.0162200927734375, 0.05303955078125, 0.0150604248046875, -0.023223876953125, 0.0499267578125, -0.0124359130859375, 0.10418701171875, -0.0826416015625, -0.0234375, 0.0175628662109375, -0.0123138427734375, 0.0176849365234375, -0.04913330078125, -0.01042938232421875, -0.040863037109375, 0.01174163818359375, 0.0048370361328125, -0.01006317138671875, 0.0176544189453125, -0.043121337890625, -0.0914306640625, 0.06878662109375, -0.0153656005859375, -0.047943115234375, -0.03411865234375, 0.000051140785217285156, 0.01885986328125, 0.00495147705078125, -0.004322052001953125, -0.045928955078125, -0.05169677734375, 0.0196990966796875, 0.0151824951171875, -0.0070343017578125, 0.06402587890625, -0.00803375244140625, -0.050445556640625, -0.0181884765625, -0.0217437744140625, 0.00637054443359375, 0.0110015869140625, -0.0163116455078125, 0.02410888671875, 0.055419921875, -0.0296173095703125, -0.034088134765625, -0.00470733642578125, -0.0199127197265625, -0.01560211181640625, -0.022308349609375, -0.01537322998046875, -0.0087127685546875, 0.06414794921875, 0.0248870849609375, 0.01384735107421875, -0.02288818359375, -0.0010442733764648438, 0.0011501312255859375, -0.0814208984375, 0.0201568603515625, 0.041290283203125, -0.062225341796875, 0.0116424560546875, 0.0260009765625, -0.027099609375, -0.00966644287109375, -0.00197601318359375, -0.04315185546875, 0.01318359375, 0.001972198486328125, 0.0118865966796875, -0.0002608299255371094, -0.0186004638671875, 0.037689208984375, -0.0360107421875, -0.056976318359375, 0.00547027587890625, 0.0272674560546875, -0.041290283203125, -0.029754638671875, 0.0107421875, 0.045501708984375, -0.078125, 0.006927490234375, -0.01403045654296875, 0.0352783203125, -0.06036376953125, -0.0255126953125, -0.018157958984375, 0.0208587646484375, -0.0031147003173828125, 0.01435089111328125, -0.0154571533203125, 0.060638427734375, 0.0179595947265625, 0.034271240234375, -0.02490234375, 0.044769287109375, -0.0238037109375, 0.0443115234375, -0.00872802734375, 0.00647735595703125, 0.016387939453125, -0.01438140869140625, -0.01629638671875, 0.004749298095703125, -0.0447998046875, -0.035186767578125, 0.00046324729919433594, -0.0017080307006835938, 0.0083465576171875, 0.01531219482421875 ]
cc22e454835edb705aa188dabd5408f53742028e
Wordpress Stackexchange Q: Restore contents of deleted user I want to know if there is a way to restore contents of permanently deleted users from my WordPress page. A: None that don't involve a backup. If you have a backup, you'll have to do some work to restore only a certain user's data without resetting everything to that point. I'd say import the backup into an empty database, then copy data over either with SQL (INSERT INTO wp_posts SELECT FROM otherdb.wp_posts WHERE post_author = ...) or with a script (getting the usermeta, posts and postmeta data). If you don't have a backup, you might get somewhat lucky with caches (Google, Internet Archive), but recovering content from that will be more labor intensive and you will likely not get all the content.
Q: Restore contents of deleted user I want to know if there is a way to restore contents of permanently deleted users from my WordPress page. A: None that don't involve a backup. If you have a backup, you'll have to do some work to restore only a certain user's data without resetting everything to that point. I'd say import the backup into an empty database, then copy data over either with SQL (INSERT INTO wp_posts SELECT FROM otherdb.wp_posts WHERE post_author = ...) or with a script (getting the usermeta, posts and postmeta data). If you don't have a backup, you might get somewhat lucky with caches (Google, Internet Archive), but recovering content from that will be more labor intensive and you will likely not get all the content. A: the same thing happened to me, i was devastated as it was time to hand over the site the actual owners. The good news is that i recovered all my data, but lost all the users. Steps to follow (PAGES) * *go to Pages in the admin panel and click on it *look at the top pane where there is (All) (Published) (drafts) (bin) *click on bin > select all the pages and restore all of them.( you will see restore at the drop down menu where you have delete) Steps to follow (POSTS) 1. go to Posts page in the admin panel and click on it. 2. look at the top pane where there is (All) (Published) (drafts) (bin) 3. click on bin > select all the posts and restore all of them.( you will see restore at the drop down menu where you have delete) not go to Settings on the Admin Panel left sidebar Settings > reading > Select Homepage and Posts page. then click save. Kudos! you are good to go
wordpress
{ "language": "en", "length": 305, "provenance": "stackexchange_00019.jsonl.gz:483130", "question_score": "4", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/291201" }
[ 0.0261383056640625, -0.007762908935546875, -0.01023101806640625, -0.007167816162109375, 0.01531219482421875, -0.040863037109375, 0.043548583984375, -0.0312347412109375, 0.036895751953125, 0.034027099609375, -0.032958984375, -0.003971099853515625, 0.045318603515625, -0.01265716552734375, -0.0294647216796875, -0.004146575927734375, 0.01947021484375, 0.00916290283203125, 0.035736083984375, -0.005260467529296875, -0.01007843017578125, 0.002170562744140625, 0.037109375, -0.013336181640625, -0.0167388916015625, 0.03863525390625, 0.073974609375, -0.0169219970703125, -0.015716552734375, -0.028961181640625, 0.00731658935546875, -0.0084686279296875, 0.00860595703125, -0.01200103759765625, 0.01849365234375, -0.03131103515625, 0.004947662353515625, 0.00213623046875, 0.0113067626953125, -0.00647735595703125, 0.025390625, -0.0031280517578125, -0.035003662109375, 0.018646240234375, -0.0225830078125, -0.066650390625, 0.034820556640625, -0.051666259765625, 0.0229949951171875, 0.045562744140625, 0.0086517333984375, -0.032379150390625, 0.018096923828125, 0.0109100341796875, -0.01308441162109375, -0.0223236083984375, 0.013397216796875, 0.01265716552734375, 0.0465087890625, -0.044708251953125, -0.0439453125, -0.010955810546875, 0.02874755859375, -0.0120697021484375, 0.00965118408203125, -0.0126190185546875, 0.038421630859375, 0.0186004638671875, -0.08514404296875, 0.00011032819747924805, 0.0653076171875, -0.040679931640625, -0.016876220703125, 0.01335906982421875, -0.00470733642578125, -0.0010347366333007812, 0.001277923583984375, -0.0181732177734375, -0.0027065277099609375, 0.058074951171875, 0.011566162109375, 0.0245208740234375, -0.0653076171875, -0.01776123046875, -0.0040740966796875, -0.003509521484375, -0.01715087890625, -0.027130126953125, -0.0279693603515625, -0.017822265625, -0.0159149169921875, -0.051483154296875, -0.03973388671875, 0.0206756591796875, -0.01189422607421875, -0.011474609375, 0.014862060546875, 0.050140380859375, 0.00995635986328125, 0.007465362548828125, 0.00881195068359375, -0.037078857421875, 0.0005717277526855469, -0.027679443359375, 0.004741668701171875, -0.02294921875, 0.00624847412109375, -0.02947998046875, 0.0102996826171875, 0.032440185546875, -0.038665771484375, 0.03070068359375, 0.01416015625, -0.0634765625, -0.0031452178955078125, 0.061309814453125, 0.023895263671875, 0.0247802734375, 0.029144287109375, 0.035003662109375, -0.0235595703125, 0.00870513916015625, -0.0736083984375, 0.0127105712890625, 0.00893402099609375, -0.0220947265625, 0.01483154296875, 0.04852294921875, -0.00980377197265625, 0.0091094970703125, -0.0220184326171875, 0.0304412841796875, 0.0274200439453125, 0.006855010986328125, -0.023040771484375, -0.0029850006103515625, -0.025146484375, -0.046539306640625, -0.03271484375, 0.0296173095703125, -0.003406524658203125, -0.046417236328125, -0.0023345947265625, -0.0263519287109375, 0.0277862548828125, 0.0138702392578125, 0.0177001953125, 0.0274505615234375, 0.01541900634765625, -0.03076171875, 0.004894256591796875, 0.0238800048828125, 0.0024242401123046875, 0.0011873245239257812, 0.0290069580078125, -0.04571533203125, 0.034942626953125, -0.0333251953125, 0.01311492919921875, -0.0269012451171875, 0.040252685546875, -0.0060882568359375, -0.0153045654296875, 0.0443115234375, -0.025299072265625, 0.005756378173828125, -0.01519012451171875, -0.011993408203125, 0.0265045166015625, 0.0188140869140625, -0.019561767578125, -0.027313232421875, 0.0091705322265625, 0.01068878173828125, -0.0028629302978515625, 0.038726806640625, -0.002742767333984375, 0.003810882568359375, 0.00237274169921875, 0.05908203125, 0.0071868896484375, -0.0287017822265625, 0.00939178466796875, 0.0013446807861328125, 0.0029277801513671875, -0.01187896728515625, 0.00777435302734375, 0.048858642578125, 0.0151519775390625, 0.040191650390625, -0.047760009765625, -0.017181396484375, 0.0022029876708984375, -0.017547607421875, -0.0188751220703125, -0.0306854248046875, -0.0311737060546875, -0.017669677734375, -0.0212860107421875, 0.05718994140625, 0.059478759765625, 0.01502227783203125, -0.01152801513671875, -0.041534423828125, -0.12017822265625, 0.004749298095703125, -0.02764892578125, 0.035003662109375, -0.0078887939453125, 0.019683837890625, 0.032379150390625, 0.021209716796875, -0.044219970703125, 0.00814056396484375, -0.006130218505859375, -0.006984710693359375, -0.0164947509765625, 0.0259552001953125, -0.0090484619140625, 0.0235443115234375, -0.0185394287109375, -0.022491455078125, -0.0265350341796875, -0.0196990966796875, -0.0126800537109375, -0.035125732421875, -0.00801849365234375, -0.024566650390625, 0.004169464111328125, -0.021942138671875, 0.04107666015625, 0.040924072265625, 0.001003265380859375, 0.0297088623046875, 0.005908966064453125, -0.004817962646484375, -0.006732940673828125, -0.08172607421875, 0.01036834716796875, 0.047027587890625, 0.04241943359375, 0.02081298828125, -0.01044464111328125, -0.0025424957275390625, 0.04296875, -0.020965576171875, 0.023895263671875, -0.00519561767578125, 0.03338623046875, 0.065185546875, 0.003574371337890625, -0.019012451171875, 0.0163116455078125, -0.0275421142578125, -0.0111236572265625, 0.039642333984375, 0.0023288726806640625, 0.040863037109375, -0.0222015380859375, 0.01103973388671875, -0.021759033203125, 0.01507568359375, 0.01171875, -0.00942230224609375, 0.0205230712890625, 0.019744873046875, 0.048858642578125, 0.036895751953125, 0.002384185791015625, 0.00799560546875, 0.00023567676544189453, -0.029998779296875, 0.0057830810546875, 0.0258026123046875, 0.042388916015625, 0.05438232421875, -0.03936767578125, -0.03271484375, 0.04638671875, 0.039276123046875, -0.002349853515625, 0.0037059783935546875, -0.0024433135986328125, -0.00208282470703125, 0.00989532470703125, -0.0052337646484375, 0.03497314453125, 0.0251617431640625, -0.040283203125, -0.00464630126953125, 0.01971435546875, 0.05535888671875, -0.00481414794921875, 0.015716552734375, -0.035980224609375, 0.0164642333984375, 0.016510009765625, -0.060638427734375, 0.036346435546875, -0.0255279541015625, 0.045867919921875, 0.086669921875, 0.036468505859375, -0.01537322998046875, -0.0037593841552734375, 0.0294036865234375, 0.0281829833984375, -0.0135498046875, -0.01519012451171875, -0.0258331298828125, -0.0025691986083984375, -0.0034580230712890625, 0.032623291015625, 0.0777587890625, -0.00020933151245117188, -0.0382080078125, 0.004241943359375, 0.038360595703125, -0.05609130859375, -0.07733154296875, -0.0211029052734375, -0.058563232421875, 0.00774383544921875, -0.01433563232421875, -0.01497650146484375, -0.0178070068359375, 0.027099609375, 0.0218048095703125, 0.04693603515625, -0.047607421875, -0.01389312744140625, -0.024810791015625, -0.04656982421875, -0.041717529296875, 0.00688934326171875, -0.0256500244140625, 0.0034160614013671875, -0.0118865966796875, -0.021148681640625, -0.05987548828125, -0.040374755859375, 0.048004150390625, -0.00473785400390625, -0.050750732421875, 0.0007429122924804688, 0.014312744140625, 0.006603240966796875, 0.017822265625, -0.0025157928466796875, 0.0325927734375, -0.03961181640625, -0.0300140380859375, -0.021759033203125, -0.01335906982421875, -0.0085296630859375, -0.0003788471221923828, 0.019622802734375, 0.022552490234375, 0.0033111572265625, -0.029998779296875, -0.0552978515625, 0.029144287109375, -0.028106689453125, 0.006000518798828125, -0.0023784637451171875, 0.002429962158203125, -0.008056640625, 0.0367431640625, 0.050750732421875, 0.04229736328125, -0.01497650146484375, 0.027313232421875, -0.044677734375, 0.01158905029296875, 0.036163330078125, 0.02215576171875, 0.036895751953125, -0.01532745361328125, -0.00418853759765625, 0.004543304443359375, 0.002410888671875, -0.006832122802734375, -0.028167724609375, -0.044219970703125, -0.060089111328125, 0.0347900390625, -0.0293121337890625, 0.041412353515625, -0.0540771484375, -0.0243377685546875, -0.0150299072265625, 0.10394287109375, -0.024261474609375, -0.028228759765625, 0.01119232177734375, 0.0215911865234375, -0.045684814453125, -0.003284454345703125, -0.03955078125, -0.0066986083984375, -0.07220458984375, -0.004123687744140625, -0.0008449554443359375, -0.04144287109375, -0.001750946044921875, -0.051300048828125, -0.03857421875, -0.0389404296875, 0.016387939453125, -0.041229248046875, 0.0313720703125, -0.0172882080078125, 0.029388427734375, -0.047515869140625, 0.0282135009765625, -0.0650634765625, -0.033203125, -0.023590087890625, -0.0180206298828125, 0.058563232421875, 0.062469482421875, -0.05499267578125, 0.000027894973754882812, 0.038787841796875, -0.0268707275390625, 0.01467132568359375, -0.003757476806640625, 0.022796630859375, -0.007904052734375, -0.006717681884765625, 0.003589630126953125, -0.0384521484375, 0.00623321533203125, -0.050079345703125, -0.00531005859375, -0.006557464599609375, -0.066650390625, 0.026153564453125, -0.06488037109375, 0.013824462890625, -0.0197296142578125, 0.004924774169921875, -0.0204315185546875, 0.00923919677734375, -0.0067901611328125, -0.0204620361328125, -0.005603790283203125, -0.03607177734375, 0.0009636878967285156, 0.0723876953125, -0.005889892578125, 0.01568603515625, 0.00971221923828125, 0.0124969482421875, -0.045074462890625, -0.026458740234375, 0.014923095703125, 0.018402099609375, -0.03509521484375, 0.06787109375, 0.0268707275390625, 0.007137298583984375, 0.036712646484375, -0.006900787353515625, 0.00811767578125, -0.03668212890625, 0.035552978515625, 0.00618743896484375, 0.008941650390625, 0.002349853515625, -0.00734710693359375, 0.01013946533203125, 0.03753662109375, 0.00548553466796875, -0.0045928955078125, 0.00494384765625, 0.025299072265625, -0.00939178466796875, -0.0212249755859375, -0.0303955078125, -0.05010986328125, 0.0074920654296875, -0.08868408203125, 0.04180908203125, 0.0028858184814453125, 0.0020904541015625, 0.020477294921875, 0.01511383056640625, 0.0009512901306152344, -0.016021728515625, -0.056610107421875, 0.006694793701171875, 0.0252532958984375, -0.01213836669921875, 0.0198974609375, 0.01218414306640625, -0.0181427001953125, 0.08026123046875, 0.0220184326171875, -0.04718017578125, 0.00901031494140625, -0.020416259765625, 0.00659942626953125, 0.01910400390625, -0.0131072998046875, 0.0272979736328125, 0.047393798828125, 0.00806427001953125, 0.0021190643310546875, -0.031402587890625, 0.0428466796875, -0.03240966796875, 0.0462646484375, -0.003940582275390625, 0.0096588134765625, 0.00872802734375, 0.0858154296875, -0.045166015625, 0.07061767578125, 0.00563812255859375, 0.032989501953125, 0.01500701904296875, 0.0222625732421875, 0.0146484375, 0.004703521728515625, -0.007717132568359375, -0.00933074951171875, -0.012298583984375, -0.017120361328125, 0.0213470458984375, 0.00981903076171875, 0.0284271240234375, 0.026580810546875, -0.00969696044921875, 0.01190948486328125, -0.05841064453125, 0.0218048095703125, 0.027801513671875, -0.032012939453125, -0.051239013671875, -0.005096435546875, -0.005462646484375, 0.0207672119140625, -0.04937744140625, 0.0096282958984375, -0.036346435546875, -0.05157470703125, -0.03192138671875, 0.0321044921875, -0.0316162109375, -0.0305328369140625, -0.023468017578125, -0.007007598876953125, -0.0391845703125, -0.01383209228515625, 0.0230865478515625, 0.041015625, -0.036712646484375, -0.028472900390625, 0.056182861328125, -0.006397247314453125, 0.0170440673828125, -0.0389404296875, 0.00823211669921875, -0.04681396484375, 0.004016876220703125, 0.03466796875, 0.005344390869140625, -0.032379150390625, -0.009063720703125, -0.0191650390625, -0.01296234130859375, 0.00255584716796875, -0.014251708984375, -0.037139892578125, -0.0005955696105957031, 0.01279449462890625, 0.0173492431640625, -0.00010609626770019531, -0.0261077880859375, -0.021270751953125, 0.007595062255859375, 0.0219573974609375, 0.0215606689453125, -0.001857757568359375, 0.035980224609375, -0.0011510848999023438, 0.08319091796875, 0.019775390625, 0.038482666015625, -0.003589630126953125, -0.059906005859375, 0.0222320556640625, -0.01556396484375, -0.025115966796875, -0.051605224609375, 0.035552978515625, 0.01187896728515625, 0.034820556640625, -0.01031494140625, -0.0264739990234375, -0.033172607421875, 0.0048065185546875, -0.0305328369140625, 0.08056640625, -0.027130126953125, -0.037078857421875, -0.00037479400634765625, -0.0290069580078125, -0.01904296875, 0.0010499954223632812, -0.0171051025390625, 0.023101806640625, 0.00908660888671875, -0.0096435546875, 0.01544952392578125, -0.0191192626953125, 0.0137481689453125, 0.005741119384765625, -0.0147552490234375, 0.04119873046875, 0.021087646484375, 0.025238037109375, 0.050933837890625, 0.020660400390625, -0.0281524658203125, 0.0033721923828125, 0.037353515625, -0.0038661956787109375, -0.032867431640625, -0.01177978515625, -0.0218505859375, 0.00655364990234375, 0.05792236328125, 0.048309326171875, -0.0740966796875, -0.003696441650390625, -0.0117034912109375, -0.01220703125, 0.03564453125, 0.0169219970703125, 0.00487518310546875, -0.00997161865234375, 0.01432037353515625, 0.00028014183044433594, -0.007328033447265625, 0.01165771484375, -0.0009093284606933594, -0.0291748046875, -0.01280975341796875, -0.00806427001953125, 0.01383209228515625, 0.01666259765625, 0.019287109375, -0.007099151611328125, 0.0234527587890625, -0.03485107421875, 0.006664276123046875, 0.0206756591796875, 0.004833221435546875, -0.044769287109375, 0.052886962890625, -0.0197296142578125, 0.0186004638671875, -0.01473236083984375, -0.01349639892578125, 0.039703369140625, 0.0263214111328125, -0.00611114501953125, -0.005870819091796875, 0.01334381103515625, -0.01050567626953125, -0.04486083984375, -0.0272064208984375, 0.020843505859375, -0.00211334228515625, -0.0140228271484375, 0.030914306640625, -0.0186309814453125, -0.055572509765625, -0.02276611328125, -0.040679931640625, 0.057647705078125, -0.03546142578125, -0.00495147705078125, 0.0352783203125, 0.014556884765625, -0.02069091796875, -0.0253143310546875, 0.050018310546875, -0.0452880859375, 0.0200653076171875, 0.003772735595703125, 0.0213165283203125, -0.0357666015625, -0.0277862548828125, -0.0743408203125, 0.038421630859375, 0.017486572265625, 0.018646240234375, -0.042205810546875, 0.01788330078125, 0.005306243896484375, -0.0033740997314453125, -0.023834228515625, 0.0673828125, -0.01493072509765625, 0.038360595703125, -0.062286376953125, -0.01052093505859375, 0.0041961669921875, 0.046966552734375, 0.04656982421875, 0.0175628662109375, -0.046539306640625, -0.0259246826171875, 0.0007734298706054688, 0.00872802734375, 0.007732391357421875, 0.06646728515625, -0.037689208984375, 0.018402099609375, 0.0226287841796875, -0.06585693359375, 0.0180816650390625, -0.01678466796875, -0.04461669921875, -0.0171966552734375, -0.002216339111328125, -0.004573822021484375, 0.0189971923828125, 0.030517578125, -0.01509857177734375, -0.0129852294921875, 0.007061004638671875, -0.05511474609375, 0.0064239501953125, 0.01461029052734375, 0.03179931640625, -0.0076141357421875, -0.0217742919921875, -0.019866943359375, 0.040283203125, 0.0263214111328125, -0.01605224609375, 0.0809326171875, 0.0316162109375, -0.0088348388671875, 0.0002663135528564453, 0.01023101806640625, -0.01462554931640625, 0.00148773193359375, 0.048583984375, 0.021759033203125, 0.0172882080078125, -0.04364013671875, -0.01739501953125, 0.02386474609375, 0.0638427734375, -0.0297088623046875, -0.0755615234375, 0.0175628662109375, 0.039947509765625, 0.0197601318359375, 0.045257568359375, 0.040435791015625, -0.016754150390625, 0.06884765625, -0.044097900390625, -0.003902435302734375, 0.00479888916015625, -0.01314544677734375, -0.002277374267578125, 0.0170440673828125, 0.0267181396484375, 0.0088958740234375, 0.006282806396484375, 0.01110076904296875, 0.006290435791015625, -0.057098388671875, -0.01654052734375, -0.0322265625, 0.07073974609375, 0.034637451171875, 0.00308990478515625, 0.0233612060546875, 0.01910400390625, -0.0240020751953125, 0.00669097900390625, -0.04901123046875, 0.0186004638671875, 0.017974853515625, -0.0343017578125, -0.02105712890625, 0.04559326171875, 0.067138671875, -0.0692138671875, -0.059844970703125, -0.01338958740234375, -0.03106689453125, 0.030120849609375, 0.0006871223449707031, 0.01503753662109375, 0.0026836395263671875, -0.004833221435546875, -0.04156494140625, 0.019500732421875, 0.02960205078125, -0.00267791748046875, 0.0235595703125, -0.0031566619873046875, -0.01922607421875, 0.0247039794921875, -0.01166534423828125, 0.043914794921875, 0.0104522705078125, -0.050689697265625, -0.016571044921875, -0.0185089111328125, -0.006237030029296875, -0.00901031494140625, 0.031463623046875, 0.0113983154296875, -0.0187225341796875, 0.01568603515625, -0.059783935546875, 0.0159759521484375, 0.0292510986328125, 0.035614013671875, 0.0296478271484375, -0.01129150390625, 0.003387451171875, -0.08343505859375, -0.040985107421875, -0.03363037109375, 0.0223846435546875, 0.01654052734375, 0.080322265625, 0.008392333984375, 0.033172607421875, -0.034210205078125, 0.02154541015625, -0.03582763671875, -0.046173095703125, 0.034759521484375, -0.00745391845703125, -0.0226898193359375, -0.00878143310546875, -0.035400390625, 0.0574951171875, 0.011077880859375, 0.00521087646484375, 0.018157958984375, -0.004085540771484375, -0.005344390869140625, 0.0173187255859375, -0.0106964111328125, -0.035003662109375, -0.0024547576904296875, -0.0230712890625, -0.0321044921875, 0.0284423828125, -0.0292816162109375, -0.0139923095703125, 0.01473236083984375, 0.0325927734375, -0.05377197265625, 0.00925445556640625, -0.01462554931640625, 0.0010929107666015625, 0.0183258056640625, 0.0675048828125, -0.00347900390625, 0.05084228515625, -0.007228851318359375, 0.025787353515625, 0.01314544677734375, 0.0309600830078125, 0.04443359375, -0.0244598388671875, -0.0204315185546875, -0.052154541015625, 0.00406646728515625, 0.0031280517578125, -0.0087738037109375, -0.05047607421875, 0.019012451171875, 0.002201080322265625, 0.0200042724609375, -0.040374755859375, -0.0072021484375, -0.006439208984375, 0.00899505615234375, -0.01190185546875, -0.044677734375, -0.0784912109375, -0.006702423095703125, 0.036590576171875, 0.049041748046875, -0.11224365234375, 0.074462890625, 0.0026531219482421875, -0.019256591796875, -0.0006480216979980469, -0.047271728515625, 0.00373077392578125, 0.0156402587890625, -0.031463623046875, -0.032135009765625, -0.0594482421875, 0.01288604736328125, -0.044097900390625, 0.0309600830078125, 0.0628662109375, 0.0018606185913085938, -0.0031757354736328125, 0.0380859375, -0.00502777099609375, 0.07476806640625, -0.06927490234375, -0.023712158203125, -0.007450103759765625, 0.01458740234375, -0.006542205810546875, -0.0305328369140625, -0.00521087646484375, -0.009185791015625, 0.005176544189453125, -0.032135009765625, 0.039794921875, 0.046875, -0.0259552001953125, -0.039886474609375, 0.03131103515625, -0.0111541748046875, -0.0265960693359375, -0.035888671875, 0.008514404296875, -0.003856658935546875, -0.0241241455078125, -0.01934814453125, 0.0033111572265625, -0.025909423828125, 0.0301513671875, -0.0023365020751953125, 0.03656005859375, -0.01373291015625, 0.022552490234375, -0.056396484375, -0.0020122528076171875, -0.019805908203125, 0.0110321044921875, 0.0300445556640625, -0.0171661376953125, 0.04730224609375, 0.080078125, -0.00786590576171875, -0.0157318115234375, -0.023895263671875, -0.05450439453125, -0.048614501953125, -0.003780364990234375, -0.011444091796875, -0.0227813720703125, 0.07470703125, 0.06500244140625, 0.01317596435546875, -0.0272979736328125, -0.028350830078125, -0.0066375732421875, 0.0020294189453125, -0.020477294921875, 0.016815185546875, -0.06427001953125, -0.01485443115234375, -0.01812744140625, -0.022735595703125, 0.04119873046875, -0.042205810546875, -0.030853271484375, 0.0117645263671875, -0.0057373046875, 0.0130615234375, -0.05389404296875, 0.00988006591796875, 0.0185546875, -0.0235443115234375, -0.0186614990234375, -0.01345062255859375, 0.013885498046875, -0.0158233642578125, -0.01352691650390625, -0.00453948974609375, 0.039794921875, -0.035308837890625, 0.007389068603515625, -0.0042266845703125, 0.0345458984375, -0.02984619140625, 0.006927490234375, 0.0163116455078125, 0.01593017578125, -0.027679443359375, 0.0318603515625, 0.05206298828125, 0.0179901123046875, -0.004638671875, 0.0017194747924804688, -0.01442718505859375, -0.0207366943359375, -0.0206146240234375, 0.0325927734375, -0.0235748291015625, -0.01055145263671875, 0.0362548828125, -0.0640869140625, -0.01849365234375, -0.0035419464111328125, -0.01519775390625, -0.10089111328125, 0.046722412109375, 0.0030612945556640625, 0.0307464599609375, 0.03106689453125 ]
1d743421b35a69305939da952f91db2a004a673e
Wordpress Stackexchange Q: WP_Query result in form of Rest API results This is simple posts result array. $query = new WP_Query( array( 'post_type' => 'post' ) ); $posts = $query->posts; // returns simple array of data Is there a way to get the results from wp-json/wp/v2/posts/?_embed without making extra request to server to pull json and then decode to php array? Looking for something like that: $posts = $query->rest_posts(); // for example ?? A: I think we can simplify it with: $request = new WP_REST_Request( 'GET', '/wp/v2/posts' ); $response = rest_do_request( $request ); $data = rest_get_server()->response_to_data( $response, true ); by using rest_do_request().
Q: WP_Query result in form of Rest API results This is simple posts result array. $query = new WP_Query( array( 'post_type' => 'post' ) ); $posts = $query->posts; // returns simple array of data Is there a way to get the results from wp-json/wp/v2/posts/?_embed without making extra request to server to pull json and then decode to php array? Looking for something like that: $posts = $query->rest_posts(); // for example ?? A: I think we can simplify it with: $request = new WP_REST_Request( 'GET', '/wp/v2/posts' ); $response = rest_do_request( $request ); $data = rest_get_server()->response_to_data( $response, true ); by using rest_do_request(). A: After digging into source code ended up with this solution. Works for me, might be useful to others as well. function get_rest_items_query($post_type, $posts_per_page, $orderby = 'date', $order = 'desc') { $result = array(); $args = array( 'post_type' => $post_type, 'posts_per_page' => $posts_per_page, 'orderby' => $orderby, 'order' => $order ); $posts = get_posts($args); $ids = implode(',', wp_list_pluck($posts, 'ID')); // request $restRequest = new WP_REST_Request('GET', '/wp/v2/' . $post_type ); $restRequest->set_param('include', $ids); // response $response = rest_do_request( $restRequest ); // _embed $rest = rest_get_server()->response_to_data( $response, true ); $result['posts'] = $rest; return $result; }
wordpress
{ "language": "en", "length": 191, "provenance": "stackexchange_00019.jsonl.gz:483165", "question_score": "6", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/291307" }
[ 0.031097412109375, -0.0036144256591796875, -0.051025390625, -0.0201873779296875, 0.0345458984375, -0.055877685546875, 0.06500244140625, 0.030609130859375, 0.004581451416015625, 0.0244903564453125, -0.0257110595703125, -0.0137939453125, -0.0162811279296875, -0.0168914794921875, -0.0227203369140625, -0.05303955078125, 0.05816650390625, -0.00827789306640625, 0.043487548828125, 0.00933074951171875, 0.00218963623046875, 0.035400390625, 0.035064697265625, 0.078369140625, -0.007171630859375, 0.03570556640625, 0.0484619140625, -0.0168304443359375, -0.004947662353515625, -0.00494384765625, 0.003963470458984375, -0.0266876220703125, 0.0191802978515625, 0.020477294921875, -0.0275726318359375, 0.020660400390625, 0.0282135009765625, 0.002231597900390625, -0.0010881423950195312, 0.0269012451171875, 0.0157928466796875, -0.0175018310546875, 0.0279083251953125, -0.01032257080078125, -0.00028586387634277344, -0.006893157958984375, 0.035125732421875, -0.0197601318359375, 0.0013666152954101562, 0.01207733154296875, 0.00525665283203125, 0.03826904296875, 0.01178741455078125, 0.00433349609375, 0.0073394775390625, 0.01320648193359375, 0.055389404296875, -0.047607421875, 0.0474853515625, -0.07489013671875, -0.058837890625, -0.032958984375, 0.0565185546875, 0.011444091796875, 0.0185394287109375, -0.021942138671875, 0.050537109375, 0.0205535888671875, -0.01617431640625, 0.020233154296875, 0.0255279541015625, 0.008209228515625, -0.01073455810546875, -0.006561279296875, -0.019561767578125, -0.0148162841796875, -0.0076446533203125, -0.029205322265625, 0.01947021484375, 0.0186614990234375, -0.0041656494140625, -0.00542449951171875, -0.02178955078125, -0.004573822021484375, -0.0022125244140625, -0.01065826416015625, -0.0187225341796875, -0.007114410400390625, -0.03240966796875, -0.0150299072265625, -0.020233154296875, -0.0902099609375, -0.05810546875, 0.046295166015625, 0.0193328857421875, -0.0277252197265625, -0.016754150390625, -0.04034423828125, 0.025848388671875, 0.031707763671875, 0.005908966064453125, -0.05072021484375, 0.051666259765625, -0.012481689453125, 0.04296875, -0.0061798095703125, -0.007740020751953125, 0.0057220458984375, 0.07440185546875, 0.025115966796875, -0.00237274169921875, 0.1019287109375, -0.02020263671875, -0.00856781005859375, -0.031219482421875, 0.031280517578125, -0.0232086181640625, -0.021453857421875, -0.004283905029296875, -0.017242431640625, -0.00485992431640625, 0.007701873779296875, 0.0257110595703125, 0.034912109375, 0.0168304443359375, 0.033172607421875, -0.0057220458984375, -0.04669189453125, -0.00885772705078125, 0.0297088623046875, 0.005657196044921875, 0.01605224609375, -0.0019855499267578125, -0.00428009033203125, -0.03411865234375, -0.0186920166015625, -0.0154876708984375, 0.0194244384765625, 0.024139404296875, -0.0089263916015625, 0.0279388427734375, -0.047698974609375, -0.004150390625, 0.033233642578125, 0.033416748046875, -0.00171661376953125, 0.0260009765625, 0.01490020751953125, 0.0186767578125, -0.004657745361328125, -0.00974273681640625, 0.04278564453125, -0.0031261444091796875, 0.0141448974609375, 0.0430908203125, -0.00844573974609375, 0.032806396484375, -0.02899169921875, 0.0200347900390625, -0.01442718505859375, 0.00482940673828125, -0.00015115737915039062, 0.0333251953125, 0.01390838623046875, -0.01259613037109375, 0.007617950439453125, -0.0280914306640625, -0.015594482421875, 0.0177154541015625, 0.052642822265625, 0.01428985595703125, -0.0390625, -0.0015363693237304688, -0.009246826171875, -0.02581787109375, -0.01129913330078125, 0.01084136962890625, 0.00371551513671875, 0.013153076171875, 0.02508544921875, -0.00007271766662597656, -0.028656005859375, 0.03045654296875, 0.00612640380859375, -0.0245208740234375, 0.072265625, 0.01114654541015625, 0.0755615234375, -0.031524658203125, 0.0254669189453125, 0.00412750244140625, 0.06793212890625, 0.0107269287109375, 0.004909515380859375, -0.009796142578125, -0.04852294921875, 0.008392333984375, -0.0062408447265625, -0.0202789306640625, 0.01390838623046875, -0.0010385513305664062, 0.035919189453125, -0.0225830078125, 0.00704193115234375, -0.0460205078125, -0.0029392242431640625, -0.0099639892578125, 0.0287322998046875, -0.03485107421875, 0.02825927734375, 0.0312042236328125, 0.0288238525390625, -0.05426025390625, 0.0224761962890625, 0.01361846923828125, 0.0275726318359375, -0.0301666259765625, 0.00945281982421875, -0.023834228515625, 0.018341064453125, -0.03289794921875, -0.033660888671875, -0.029815673828125, 0.0256500244140625, 0.07037353515625, -0.026031494140625, 0.00688934326171875, -0.044769287109375, 0.10308837890625, -0.021209716796875, 0.033843994140625, 0.01125335693359375, 0.0092926025390625, 0.04376220703125, 0.009429931640625, 0.0092010498046875, 0.0289154052734375, -0.0236053466796875, 0.023162841796875, 0.024078369140625, 0.0301055908203125, 0.029052734375, -0.0032825469970703125, -0.0197906494140625, 0.055755615234375, -0.0175323486328125, 0.01800537109375, -0.0292816162109375, 0.00855255126953125, 0.018157958984375, 0.0147857666015625, -0.0443115234375, 0.01198577880859375, -0.065673828125, -0.00539398193359375, 0.0163421630859375, 0.00511932373046875, 0.0311431884765625, -0.016754150390625, -0.0016984939575195312, -0.00885009765625, -0.03668212890625, -0.00571441650390625, -0.0209808349609375, -0.0140533447265625, 0.015350341796875, 0.01102447509765625, 0.02838134765625, -0.0237274169921875, -0.009918212890625, 0.0221710205078125, 0.02801513671875, 0.00032210350036621094, 0.063720703125, -0.0007944107055664062, 0.00666046142578125, -0.029327392578125, -0.016082763671875, 0.0150146484375, 0.0311279296875, 0.0018739700317382812, 0.040985107421875, -0.0051422119140625, -0.0081634521484375, -0.016845703125, -0.015380859375, 0.0125885009765625, 0.025970458984375, 0.019744873046875, 0.044403076171875, 0.03997802734375, 0.072509765625, -0.0019178390502929688, 0.062225341796875, -0.041473388671875, 0.0261383056640625, 0.047607421875, -0.040283203125, 0.036590576171875, -0.017486572265625, 0.033447265625, 0.046295166015625, 0.005207061767578125, -0.00982666015625, -0.0031795501708984375, 0.0008497238159179688, -0.01354217529296875, 0.00769805908203125, -0.023834228515625, -0.041534423828125, -0.0290069580078125, 0.02423095703125, 0.01284027099609375, 0.038970947265625, 0.00923919677734375, -0.038787841796875, 0.0126953125, 0.0265045166015625, -0.109619140625, -0.130615234375, 0.051513671875, -0.07354736328125, 0.0050506591796875, -0.0297393798828125, -0.04595947265625, -0.0122833251953125, 0.0056304931640625, -0.0222015380859375, 0.01479339599609375, 0.0039215087890625, -0.08929443359375, -0.0157470703125, -0.085205078125, 0.025543212890625, -0.0150299072265625, 0.025177001953125, 0.0081634521484375, 0.0687255859375, 0.036651611328125, -0.015777587890625, 0.0256500244140625, 0.0833740234375, -0.0455322265625, -0.038116455078125, 0.0005769729614257812, 0.006900787353515625, -0.0052032470703125, 0.006381988525390625, -0.0017538070678710938, 0.02838134765625, -0.0238189697265625, -0.004329681396484375, -0.0040130615234375, 0.0030803680419921875, 0.0269012451171875, 0.011688232421875, -0.00785064697265625, 0.01332855224609375, 0.021636962890625, -0.03125, -0.03863525390625, -0.01546478271484375, -0.048919677734375, 0.0169525146484375, 0.024932861328125, -0.00417327880859375, -0.02618408203125, 0.037109375, 0.007320404052734375, -0.0192108154296875, 0.004047393798828125, -0.0265655517578125, 0.072998046875, 0.00368499755859375, 0.01186370849609375, -0.020111083984375, 0.0465087890625, -0.01287078857421875, -0.03558349609375, 0.00424957275390625, -0.031341552734375, -0.040863037109375, -0.0016489028930664062, -0.05548095703125, -0.034576416015625, 0.062347412109375, 0.0273284912109375, 0.0096893310546875, -0.01399993896484375, -0.04400634765625, 0.0012712478637695312, 0.07989501953125, 0.005268096923828125, -0.0298614501953125, -0.01837158203125, 0.022552490234375, -0.050750732421875, -0.0491943359375, 0.006988525390625, 0.0025768280029296875, 0.0161285400390625, -0.0209197998046875, -0.029815673828125, -0.0073394775390625, -0.014129638671875, -0.009124755859375, 0.011260986328125, -0.01239776611328125, 0.024871826171875, -0.045989990234375, 0.0081329345703125, -0.004161834716796875, 0.002819061279296875, -0.03082275390625, 0.00629425048828125, -0.040924072265625, -0.07086181640625, -0.0192718505859375, 0.01544189453125, 0.0465087890625, 0.0082550048828125, -0.0347900390625, -0.0119781494140625, 0.0352783203125, 0.00038933753967285156, 0.016021728515625, 0.009674072265625, 0.0114288330078125, -0.00960540771484375, -0.0082244873046875, 0.0124969482421875, -0.033660888671875, -0.0235748291015625, -0.0252685546875, 0.01433563232421875, 0.0034027099609375, -0.024444580078125, -0.0245819091796875, -0.03253173828125, 0.004886627197265625, -0.0255889892578125, -0.0283050537109375, -0.03143310546875, 0.02349853515625, -0.03759765625, 0.0201568603515625, -0.0263519287109375, -0.0328369140625, 0.047119140625, 0.0638427734375, -0.02392578125, -0.007099151611328125, 0.032135009765625, 0.0138702392578125, -0.052001953125, -0.086669921875, -0.006927490234375, 0.0281524658203125, -0.0061798095703125, 0.03173828125, -0.005893707275390625, -0.032989501953125, 0.08038330078125, -0.00818634033203125, 0.004364013671875, 0.0291900634765625, 0.02337646484375, 0.027374267578125, -0.003299713134765625, 0.0085601806640625, 0.028717041015625, -0.0703125, 0.055999755859375, 0.006153106689453125, -0.026458740234375, 0.01507568359375, 0.039825439453125, -0.05218505859375, 0.0311126708984375, -0.014984130859375, -0.051849365234375, 0.020904541015625, -0.004669189453125, -0.0083465576171875, -0.0091400146484375, 0.01068878173828125, 0.004932403564453125, 0.007419586181640625, 0.003376007080078125, -0.006748199462890625, 0.0267333984375, -0.02569580078125, 0.048553466796875, -0.040313720703125, -0.0245208740234375, -0.0141754150390625, 0.0034332275390625, 0.018768310546875, -0.0196075439453125, -0.057342529296875, 0.0067138671875, -0.004840850830078125, 0.032745361328125, 0.0275726318359375, -0.00640869140625, 0.0181427001953125, 0.045623779296875, -0.00788116455078125, -0.005886077880859375, 0.01268768310546875, -0.00506591796875, -0.032867431640625, 0.04852294921875, 0.0087432861328125, 0.01641845703125, 0.006046295166015625, 0.10662841796875, -0.00864410400390625, 0.0760498046875, -0.029266357421875, 0.01514434814453125, -0.0208740234375, 0.055450439453125, 0.0146942138671875, -0.01412200927734375, 0.0293426513671875, 0.028228759765625, -0.013885498046875, -0.020233154296875, 0.0017719268798828125, 0.01947021484375, 0.005168914794921875, -0.0031795501708984375, -0.0261688232421875, 0.032379150390625, 0.002117156982421875, -0.04083251953125, 0.004741668701171875, 0.006565093994140625, 0.0267181396484375, -0.045257568359375, -0.0265350341796875, 0.0416259765625, 0.06292724609375, 0.0000629425048828125, -0.00365447998046875, 0.036376953125, 0.0540771484375, -0.0265960693359375, 0.01219940185546875, 0.01593017578125, 0.0137786865234375, -0.0323486328125, -0.033721923828125, -0.01027679443359375, -0.0106353759765625, 0.00787353515625, -0.006011962890625, -0.03387451171875, 0.0121917724609375, -0.02520751953125, -0.007171630859375, -0.044830322265625, 0.04937744140625, -0.06231689453125, 0.0010929107666015625, 0.04168701171875, 0.04034423828125, 0.0003666877746582031, -0.0287628173828125, -0.0240325927734375, -0.02001953125, 0.08984375, 0.0194854736328125, -0.006687164306640625, -0.022491455078125, 0.00614166259765625, 0.0155792236328125, 0.016845703125, -0.006786346435546875, -0.025604248046875, -0.0026378631591796875, -0.003215789794921875, -0.0008392333984375, -0.0272674560546875, 0.1068115234375, -0.0377197265625, 0.07366943359375, -0.002758026123046875, 0.03692626953125, -0.037933349609375, 0.0013265609741210938, -0.00403594970703125, -0.08331298828125, -0.0302886962890625, 0.010223388671875, -0.029876708984375, 0.047698974609375, 0.01690673828125, 0.0009675025939941406, 0.01293182373046875, -0.0196533203125, 0.0011739730834960938, -0.0091094970703125, 0.0286712646484375, -0.0246429443359375, 0.008056640625, 0.035308837890625, 0.0179901123046875, -0.00159454345703125, -0.045623779296875, -0.007171630859375, -0.02288818359375, 0.023681640625, -0.02313232421875, -0.00982666015625, -0.03692626953125, 0.052093505859375, 0.10870361328125, 0.00872802734375, 0.05029296875, 0.021484375, 0.004180908203125, 0.0236053466796875, 0.017669677734375, 0.004665374755859375, -0.0184478759765625, 0.0296173095703125, -0.0013303756713867188, -0.0221405029296875, 0.0045013427734375, -0.0338134765625, 0.01462554931640625, -0.006435394287109375, 0.044952392578125, -0.016357421875, 0.0221405029296875, 0.003696441650390625, -0.02899169921875, 0.017242431640625, -0.007701873779296875, -0.0169219970703125, -0.042510986328125, 0.01351165771484375, 0.0012617111206054688, -0.025726318359375, -0.0084381103515625, 0.0091400146484375, -0.0024585723876953125, -0.0026988983154296875, 0.0478515625, 0.0191650390625, -0.018585205078125, 0.03253173828125, -0.01190948486328125, 0.041351318359375, 0.01224517822265625, 0.0201263427734375, -0.00901031494140625, -0.017425537109375, -0.07568359375, -0.0129241943359375, -0.0295867919921875, -0.037689208984375, -0.0035552978515625, -0.00861358642578125, 0.02130126953125, 0.0660400390625, -0.0238800048828125, 0.001720428466796875, 0.03057861328125, -0.01824951171875, -0.0214996337890625, -0.038726806640625, 0.0023784637451171875, 0.046478271484375, -0.03265380859375, 0.044219970703125, -0.00229644775390625, -0.03131103515625, -0.010284423828125, -0.04693603515625, 0.0859375, -0.046234130859375, -0.002838134765625, -0.002643585205078125, 0.0134429931640625, 0.0134735107421875, -0.004970550537109375, 0.032958984375, -0.03118896484375, 0.010101318359375, 0.0012912750244140625, 0.0161285400390625, -0.00795745849609375, -0.00717926025390625, -0.031341552734375, 0.0615234375, 0.0090484619140625, -0.00897979736328125, 0.022705078125, 0.0198974609375, -0.042877197265625, 0.0007262229919433594, -0.04010009765625, 0.042938232421875, 0.033050537109375, 0.0243988037109375, -0.04962158203125, -0.0164337158203125, 0.00882720947265625, 0.03668212890625, 0.06256103515625, 0.014984130859375, -0.044830322265625, -0.03564453125, 0.0136566162109375, 0.05517578125, -0.00775909423828125, 0.038360595703125, 0.03375244140625, 0.05169677734375, 0.08404541015625, -0.053436279296875, 0.033050537109375, -0.005237579345703125, 0.0291748046875, 0.043243408203125, 0.01416015625, 0.017608642578125, 0.026031494140625, 0.0132293701171875, -0.005558013916015625, 0.0019102096557617188, 0.0174713134765625, -0.03582763671875, 0.01541900634765625, 0.0516357421875, 0.057464599609375, -0.026824951171875, -0.00353240966796875, -0.02880859375, 0.04681396484375, 0.002681732177734375, 0.0374755859375, 0.0123138427734375, 0.0155181884765625, 0.049835205078125, 0.00036144256591796875, 0.01348114013671875, 0.04193115234375, -0.039794921875, 0.054718017578125, 0.036529541015625, 0.0400390625, -0.04046630859375, -0.006908416748046875, 0.05487060546875, 0.0777587890625, -0.039520263671875, -0.05853271484375, -0.0012559890747070312, 0.01251220703125, 0.03594970703125, 0.014312744140625, 0.0621337890625, -0.0093994140625, 0.0197601318359375, -0.0179901123046875, 0.000278472900390625, 0.018310546875, -0.026031494140625, -0.0100250244140625, 0.0001722574234008789, 0.036285400390625, 0.0321044921875, -0.0258636474609375, 0.0083160400390625, 0.0177764892578125, 0.04736328125, -0.00040435791015625, 0.0291595458984375, -0.04241943359375, -0.015655517578125, 0.0036487579345703125, 0.0171966552734375, -0.0042724609375, -0.0149078369140625, 0.005764007568359375, -0.0526123046875, 0.02972412109375, 0.01433563232421875, 0.0474853515625, 0.01540374755859375, 0.047454833984375, 0.02191162109375, -0.0209808349609375, 0.0049591064453125, 0.04290771484375, -0.01352691650390625, -0.040740966796875, -0.028350830078125, -0.037353515625, 0.0179901123046875, -0.011505126953125, 0.0223541259765625, -0.0177001953125, 0.021240234375, -0.01551055908203125, 0.058135986328125, -0.01465606689453125, 0.0008392333984375, 0.033843994140625, -0.037811279296875, 0.039215087890625, -0.01178741455078125, -0.07391357421875, 0.0002620220184326172, -0.033203125, -0.039154052734375, 0.00841522216796875, 0.02349853515625, -0.0234375, 0.017669677734375, -0.0005259513854980469, -0.008941650390625, 0.0113677978515625, -0.01042938232421875, 0.024200439453125, 0.00051116943359375, 0.005481719970703125, 0.00476837158203125, -0.06854248046875, -0.054107666015625, -0.032989501953125, 0.031005859375, -0.0026569366455078125, 0.027984619140625, 0.0223541259765625, 0.0133819580078125, -0.0567626953125, 0.0015392303466796875, -0.024444580078125, -0.0227508544921875, 0.0015583038330078125, 0.016021728515625, -0.016082763671875, 0.0011320114135742188, -0.01320648193359375, -0.0027408599853515625, 0.0248260498046875, -0.03363037109375, 0.01006317138671875, -0.0523681640625, 0.027557373046875, -0.016143798828125, 0.0010528564453125, -0.035308837890625, 0.004924774169921875, 0.021087646484375, -0.0022945404052734375, 0.0159759521484375, -0.004596710205078125, 0.0015993118286132812, 0.0104217529296875, -0.00994110107421875, -0.04461669921875, 0.032806396484375, -0.04766845703125, 0.05731201171875, 0.0282440185546875, -0.0230865478515625, 0.047027587890625, -0.0248565673828125, -0.026947021484375, 0.0296630859375, -0.003437042236328125, -0.025115966796875, -0.00026726722717285156, 0.07220458984375, -0.0458984375, -0.030975341796875, 0.01751708984375, 0.018524169921875, -0.0025730133056640625, -0.05279541015625, -0.01035308837890625, -0.0236358642578125, 0.01560211181640625, -0.0281982421875, -0.0279388427734375, 0.005279541015625, -0.00377655029296875, 0.01296234130859375, -0.041656494140625, -0.00843048095703125, -0.0272216796875, -0.005062103271484375, -0.0193634033203125, 0.00927734375, -0.01496124267578125, -0.0266265869140625, -0.0141754150390625, -0.036895751953125, -0.054534912109375, 0.024810791015625, 0.03509521484375, -0.0247955322265625, 0.006839752197265625, -0.0283966064453125, -0.05108642578125, -0.01305389404296875, 0.006580352783203125, 0.00937652587890625, -0.023040771484375, -0.026275634765625, 0.0106658935546875, -0.0019683837890625, 0.03955078125, 0.0181427001953125, -0.005748748779296875, 0.003082275390625, 0.022308349609375, -0.048309326171875, -0.068603515625, 0.0288543701171875, -0.05694580078125, 0.004413604736328125, -0.03277587890625, 0.0248260498046875, 0.027496337890625, -0.0214080810546875, -0.052825927734375, 0.02716064453125, -0.020538330078125, -0.0249786376953125, -0.07080078125, -0.022613525390625, 0.031036376953125, -0.006744384765625, -0.02606201171875, -0.0008897781372070312, -0.08941650390625, 0.017608642578125, 0.00531768798828125, 0.04046630859375, 0.0007510185241699219, 0.02032470703125, -0.079833984375, -0.00887298583984375, -0.0447998046875, 0.0166778564453125, -0.0186920166015625, 0.007770538330078125, 0.017425537109375, 0.019989013671875, -0.034423828125, 0.045806884765625, 0.0011463165283203125, 0.0343017578125, -0.004207611083984375, -0.0001857280731201172, -0.0183868408203125, 0.0037689208984375, 0.035003662109375, 0.061065673828125, 0.016845703125, -0.053192138671875, -0.01654052734375, -0.00734710693359375, 0.00084686279296875, -0.0241241455078125, -0.0005860328674316406, -0.0372314453125, -0.0226593017578125, -0.020751953125, 0.004093170166015625, 0.024932861328125, -0.07257080078125, -0.0103759765625, -0.021331787109375, -0.0384521484375, 0.0015707015991210938, 0.01378631591796875, -0.0100555419921875, 0.03314208984375, -0.0142059326171875, 0.006229400634765625, -0.01073455810546875, 0.0307769775390625, 0.013824462890625, 0.0055694580078125, -0.0084686279296875, -0.00034689903259277344, 0.0180206298828125, -0.0102691650390625, 0.028656005859375, -0.021881103515625, 0.040130615234375, -0.00836181640625, -0.0193634033203125, 0.01800537109375, 0.00982666015625, 0.0222015380859375, -0.0227508544921875, 0.019073486328125, 0.01328277587890625, 0.030487060546875, -0.0010652542114257812, 0.053131103515625, -0.007354736328125, 0.04010009765625, 0.005489349365234375, -0.0247955322265625, 0.02459716796875, -0.034912109375, 0.0007734298706054688, 0.00945281982421875, -0.036102294921875, -0.04083251953125, 0.00531005859375, 0.04559326171875, -0.00899505615234375, 0.01113128662109375 ]
4c4f71d22fa59e8b683998627023256a65185757
Wordpress Stackexchange Q: renaming an admin menu item with decimal array index number I am trying to rename a menu item on my administration dashboard. Using the $GLOBALS['menu'], I have found the following array indexes [26.0648] => Array ( [0] => M.E. Calendar ... and [26] => Array ( [0] => Products ... After using the following code: global $menu; global $submenu; $menu[26.0648][0] = 'Event Calendar'; The result is that the "M.E. Calendar" item has not changed, whereas the Products item has changed to [26] => Array ( [0] => Event Calendar [1] => edit_products [2] => edit.php?post_type=product Is there a way I can rename the menu item with the decimal array index number? Thanks. A: You have to use a string as key: $menu['26.0648'][0] = 'Event Calendar'; If you write the key as a number, it will truncate the decimal to an integer, so 26.0648 will be truncated to 26.
Q: renaming an admin menu item with decimal array index number I am trying to rename a menu item on my administration dashboard. Using the $GLOBALS['menu'], I have found the following array indexes [26.0648] => Array ( [0] => M.E. Calendar ... and [26] => Array ( [0] => Products ... After using the following code: global $menu; global $submenu; $menu[26.0648][0] = 'Event Calendar'; The result is that the "M.E. Calendar" item has not changed, whereas the Products item has changed to [26] => Array ( [0] => Event Calendar [1] => edit_products [2] => edit.php?post_type=product Is there a way I can rename the menu item with the decimal array index number? Thanks. A: You have to use a string as key: $menu['26.0648'][0] = 'Event Calendar'; If you write the key as a number, it will truncate the decimal to an integer, so 26.0648 will be truncated to 26.
wordpress
{ "language": "en", "length": 149, "provenance": "stackexchange_00019.jsonl.gz:483166", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/291313" }
[ -0.0006041526794433594, -0.0222930908203125, -0.062744140625, 0.0277099609375, -0.007366180419921875, -0.06976318359375, 0.04815673828125, 0.007801055908203125, 0.04034423828125, 0.028045654296875, 0.035003662109375, -0.0355224609375, 0.01404571533203125, -0.0469970703125, -0.034515380859375, 0.01031494140625, 0.007587432861328125, -0.0280609130859375, -0.00872039794921875, -0.0230255126953125, -0.0017786026000976562, -0.00807952880859375, 0.014129638671875, -0.0106964111328125, 0.0301055908203125, -0.0516357421875, 0.0184173583984375, -0.007110595703125, 0.0176239013671875, -0.0111083984375, 0.01247406005859375, 0.01137542724609375, -0.01218414306640625, 0.023162841796875, 0.05303955078125, 0.053497314453125, -0.00664520263671875, 0.031280517578125, 0.06689453125, -0.018951416015625, 0.0445556640625, -0.01471710205078125, 0.00891876220703125, 0.0186614990234375, -0.01389312744140625, -0.038787841796875, 0.0565185546875, -0.0253448486328125, -0.004634857177734375, -0.03955078125, 0.014617919921875, 0.01015472412109375, 0.02508544921875, -0.020843505859375, -0.00322723388671875, 0.0210723876953125, -0.0391845703125, 0.00484466552734375, 0.005260467529296875, 0.082275390625, 0.0168609619140625, 0.03485107421875, -0.0213165283203125, -0.046234130859375, -0.0113067626953125, 0.01116943359375, 0.0214080810546875, -0.00745391845703125, 0.008758544921875, -0.02337646484375, 0.016845703125, 0.0135498046875, 0.001399993896484375, -0.020721435546875, 0.02691650390625, -0.026824951171875, 0.01003265380859375, -0.0296630859375, -0.02325439453125, 0.0347900390625, 0.04254150390625, 0.006103515625, 0.0216064453125, 0.012054443359375, -0.0027217864990234375, 0.022369384765625, -0.008087158203125, -0.0267333984375, -0.0029201507568359375, -0.017791748046875, -0.001781463623046875, -0.0106201171875, -0.0270538330078125, 0.0260162353515625, -0.00795745849609375, -0.0207977294921875, 0.044830322265625, 0.06201171875, -0.0083770751953125, -0.013214111328125, -0.0276031494140625, -0.004238128662109375, -0.04486083984375, -0.018402099609375, 0.0063629150390625, 0.050750732421875, 0.052886962890625, 0.036285400390625, 0.0283355712890625, -0.0141754150390625, 0.00009083747863769531, 0.08380126953125, -0.0135498046875, -0.04315185546875, -0.0016498565673828125, 0.017120361328125, -0.023406982421875, 0.021026611328125, 0.02838134765625, -0.01416015625, -0.0159759521484375, 0.007053375244140625, -0.00926971435546875, 0.042236328125, 0.0477294921875, 0.04791259765625, -0.007617950439453125, -0.00400543212890625, 0.0090484619140625, 0.0221710205078125, -0.018646240234375, 0.01019287109375, 0.046173095703125, 0.02178955078125, -0.0018758773803710938, -0.0016384124755859375, 0.0439453125, 0.0012226104736328125, 0.0043487548828125, 0.030670166015625, -0.00832366943359375, -0.0215911865234375, 0.01064300537109375, -0.01036834716796875, -0.003997802734375, -0.00507354736328125, 0.00580596923828125, 0.0216217041015625, -0.003299713134765625, -0.03961181640625, 0.007793426513671875, -0.016143798828125, 0.038604736328125, 0.0312347412109375, -0.0465087890625, 0.005069732666015625, 0.06243896484375, -0.030059814453125, -0.037139892578125, -0.06903076171875, -0.01409912109375, -0.024993896484375, 0.00939178466796875, -0.07598876953125, -0.09185791015625, 0.039794921875, -0.04205322265625, -0.01506805419921875, 0.01444244384765625, 0.00897979736328125, -0.01387786865234375, 0.011260986328125, 0.0066986083984375, 0.009521484375, 0.00022590160369873047, 0.008453369140625, 0.0276947021484375, -0.04632568359375, 0.01523590087890625, 0.049957275390625, -0.00939178466796875, -0.023284912109375, -0.01532745361328125, -0.005214691162109375, -0.06005859375, 0.00023555755615234375, 0.0050811767578125, 0.018768310546875, 0.04364013671875, 0.001865386962890625, 0.06048583984375, 0.0008091926574707031, -0.0168304443359375, -0.049346923828125, 0.0073089599609375, 0.0171356201171875, 0.00255584716796875, 0.0215301513671875, -0.00020575523376464844, -0.01629638671875, -0.034393310546875, 0.0263214111328125, -0.0270233154296875, 0.029876708984375, -0.0611572265625, 0.03192138671875, -0.014923095703125, 0.03424072265625, -0.03033447265625, 0.030242919921875, 0.001556396484375, 0.0098419189453125, 0.0007009506225585938, -0.0225372314453125, 0.0180511474609375, 0.0099945068359375, -0.00429534912109375, 0.019989013671875, -0.010498046875, -0.005828857421875, -0.02252197265625, -0.00978851318359375, -0.0164642333984375, 0.022430419921875, 0.039306640625, -0.007305145263671875, -0.0254364013671875, -0.0175018310546875, 0.056243896484375, -0.0150604248046875, 0.020263671875, 0.047088623046875, -0.0086212158203125, -0.0013484954833984375, -0.01446533203125, -0.0017633438110351562, -0.020751953125, -0.07122802734375, 0.0006103515625, 0.0440673828125, 0.034881591796875, 0.0267791748046875, -0.004241943359375, 0.0109405517578125, 0.08184814453125, -0.01042938232421875, -0.008941650390625, -0.0015573501586914062, -0.032501220703125, 0.01146697998046875, 0.0010900497436523438, 0.0099945068359375, 0.01605224609375, 0.02276611328125, -0.0287322998046875, 0.047210693359375, 0.01316070556640625, -0.0274200439453125, 0.0162811279296875, 0.0384521484375, -0.00827789306640625, 0.0193023681640625, -0.01523590087890625, 0.0120086669921875, 0.01194000244140625, 0.01268768310546875, 0.019866943359375, 0.0199127197265625, -0.053741455078125, 0.01552581787109375, 0.033843994140625, 0.04345703125, -0.0196075439453125, -0.043548583984375, -0.0041351318359375, -0.0300140380859375, -0.054290771484375, 0.0699462890625, 0.00940704345703125, -0.0462646484375, -0.01407623291015625, 0.07318115234375, -0.06585693359375, -0.02197265625, -0.05126953125, -0.0154876708984375, -0.01861572265625, 0.031097412109375, -0.06719970703125, -0.052459716796875, 0.000568389892578125, -0.00836181640625, -0.062225341796875, -0.005588531494140625, 0.0003616809844970703, -0.0220489501953125, 0.030364990234375, 0.055389404296875, -0.0107879638671875, 0.006984710693359375, -0.005397796630859375, 0.01380157470703125, -0.0163421630859375, -0.0195159912109375, 0.007068634033203125, -0.0193328857421875, 0.019775390625, 0.011505126953125, 0.019287109375, 0.01959228515625, -0.03265380859375, 0.0721435546875, 0.02838134765625, 0.045074462890625, -0.0203857421875, -0.048095703125, -0.009979248046875, 0.0045318603515625, -0.11395263671875, -0.11138916015625, 0.0004096031188964844, 0.018341064453125, 0.00006985664367675781, 0.00801849365234375, 0.0147247314453125, -0.0156402587890625, 0.0177764892578125, -0.0002009868621826172, 0.01099395751953125, 0.0219879150390625, 0.0103607177734375, 0.019012451171875, -0.024017333984375, -0.0293731689453125, -0.01081085205078125, 0.0024776458740234375, -0.003589630126953125, -0.0193328857421875, 0.00360107421875, 0.01006317138671875, 0.040679931640625, 0.09283447265625, 0.0276031494140625, -0.019287109375, 0.0596923828125, -0.025054931640625, -0.020172119140625, 0.01122283935546875, 0.037200927734375, 0.049896240234375, -0.06146240234375, -0.00606536865234375, -0.005146026611328125, 0.03631591796875, 0.032745361328125, 0.03045654296875, -0.0020503997802734375, 0.047088623046875, 0.049560546875, -0.006526947021484375, -0.0604248046875, 0.0016422271728515625, -0.045501708984375, -0.00594329833984375, 0.043121337890625, -0.004787445068359375, -0.025787353515625, 0.0205230712890625, -0.03448486328125, -0.040130615234375, 0.0161895751953125, -0.036224365234375, -0.0235595703125, -0.0173797607421875, -0.0318603515625, 0.016571044921875, 0.03143310546875, -0.0223388671875, -0.01250457763671875, 0.00931549072265625, -0.01505279541015625, 0.017578125, -0.034759521484375, 0.027191162109375, -0.049560546875, 0.0212860107421875, -0.07763671875, 0.01137542724609375, -0.068359375, 0.01374053955078125, -0.032745361328125, 0.06341552734375, -0.014129638671875, -0.041259765625, -0.0191650390625, 0.01082611083984375, 0.03985595703125, -0.041748046875, 0.05316162109375, -0.03656005859375, -0.10986328125, 0.0199432373046875, 0.0053863525390625, -0.0180206298828125, -0.0232696533203125, 0.07415771484375, -0.056854248046875, -0.048614501953125, 0.034027099609375, -0.0297698974609375, -0.00713348388671875, 0.038604736328125, -0.0117645263671875, -0.006366729736328125, -0.04254150390625, -0.010894775390625, -0.036865234375, -0.03985595703125, 0.007049560546875, 0.0845947265625, 0.034027099609375, -0.07293701171875, 0.014617919921875, 0.0589599609375, 0.0035266876220703125, 0.0188140869140625, -0.01187896728515625, -0.0012884140014648438, -0.01480865478515625, 0.027587890625, -0.0109710693359375, -0.01141357421875, -0.0109710693359375, -0.01517486572265625, -0.0384521484375, 0.0091705322265625, -0.0013885498046875, 0.0243988037109375, 0.019866943359375, -0.0235137939453125, -0.0311737060546875, -0.0229034423828125, -0.00826263427734375, 0.0191802978515625, -0.00920867919921875, 0.0029392242431640625, -0.0290679931640625, -0.052642822265625, 0.018035888671875, 0.036895751953125, -0.026153564453125, 0.0017442703247070312, 0.004974365234375, 0.01415252685546875, -0.04229736328125, -0.03851318359375, 0.0202484130859375, 0.01904296875, -0.024139404296875, 0.0014867782592773438, -0.03570556640625, -0.019073486328125, 0.0482177734375, -0.0308685302734375, -0.017486572265625, -0.002246856689453125, 0.036041259765625, 0.0157318115234375, -0.01221466064453125, 0.004810333251953125, -0.0084075927734375, 0.0002834796905517578, -0.0028209686279296875, -0.0011072158813476562, -0.023223876953125, -0.0307159423828125, 0.054443359375, 0.0186309814453125, 0.006473541259765625, -0.047576904296875, -0.0174713134765625, 0.0172271728515625, 0.006305694580078125, -0.0206756591796875, -0.016510009765625, 0.0118865966796875, -0.046173095703125, -0.004642486572265625, 0.0229339599609375, 0.0033588409423828125, 0.0361328125, -0.0212860107421875, 0.0196685791015625, 0.0179290771484375, 0.00018584728240966797, -0.003997802734375, 0.011627197265625, 0.009063720703125, 0.00337982177734375, -0.003997802734375, -0.0888671875, 0.006977081298828125, 0.02105712890625, -0.0028972625732421875, -0.052642822265625, -0.01800537109375, -0.0059814453125, 0.00632476806640625, 0.0347900390625, -0.042449951171875, -0.00902557373046875, 0.005023956298828125, -0.01885986328125, 0.022491455078125, -0.044342041015625, -0.032012939453125, 0.038665771484375, 0.0003261566162109375, -0.028472900390625, 0.0020618438720703125, 0.04705810546875, 0.0338134765625, 0.0185546875, 0.0019102096557617188, 0.0175018310546875, -0.0105743408203125, 0.02008056640625, -0.004947662353515625, -0.004550933837890625, 0.0021114349365234375, -0.004093170166015625, -0.0019741058349609375, 0.02862548828125, 0.013153076171875, 0.00785064697265625, -0.0021953582763671875, -0.0296478271484375, 0.047454833984375, -0.02471923828125, -0.05792236328125, -0.04241943359375, -0.00913238525390625, 0.038543701171875, -0.01488494873046875, -0.01007843017578125, -0.0478515625, -0.08148193359375, -0.0042724609375, 0.0184478759765625, 0.019256591796875, -0.03118896484375, -0.053741455078125, -0.043243408203125, -0.0057373046875, 0.00926971435546875, -0.058258056640625, -0.06292724609375, 0.0103607177734375, -0.00146484375, 0.043304443359375, -0.017791748046875, 0.024383544921875, -0.046722412109375, 0.0080108642578125, -0.01806640625, -0.0144500732421875, 0.06573486328125, 0.031402587890625, -0.07220458984375, -0.0123138427734375, -0.0172119140625, 0.0242462158203125, 0.02728271484375, -0.030426025390625, -0.01374053955078125, -0.02099609375, -0.028045654296875, 0.004566192626953125, 0.0165863037109375, 0.0465087890625, 0.019073486328125, 0.0283050537109375, -0.02972412109375, 0.0223541259765625, -0.00260162353515625, -0.0362548828125, 0.02349853515625, -0.04205322265625, -0.017669677734375, -0.034912109375, 0.0248565673828125, -0.0116119384765625, 0.0177764892578125, -0.00722503662109375, -0.02728271484375, -0.020233154296875, -0.044586181640625, -0.0259246826171875, 0.0426025390625, -0.01203155517578125, 0.0153350830078125, -0.0116729736328125, 0.006420135498046875, -0.0206298828125, 0.00978851318359375, -0.03961181640625, 0.01512908935546875, -0.00021767616271972656, -0.03765869140625, 0.023895263671875, -0.00396728515625, 0.027191162109375, 0.00653076171875, -0.059173583984375, 0.00676727294921875, 0.06060791015625, -0.0428466796875, 0.03936767578125, 0.10284423828125, -0.00749969482421875, 0.045440673828125, 0.003353118896484375, -0.003971099853515625, 0.06689453125, -0.0214385986328125, 0.035675048828125, 0.056488037109375, 0.0259246826171875, -0.0325927734375, -0.0391845703125, -0.0229949951171875, -0.05181884765625, 0.010528564453125, 0.07080078125, 0.053680419921875, -0.06500244140625, -0.013275146484375, -0.01058197021484375, -0.012725830078125, 0.04217529296875, 0.038482666015625, 0.0005578994750976562, -0.010833740234375, -0.027008056640625, -0.02581787109375, -0.0113525390625, -0.01297760009765625, 0.01031494140625, -0.01042938232421875, -0.007755279541015625, 0.0408935546875, 0.0135345458984375, 0.02374267578125, -0.033538818359375, -0.018096923828125, -0.004512786865234375, -0.03662109375, -0.016143798828125, 0.0252685546875, -0.039825439453125, -0.09283447265625, -0.01447296142578125, 0.0105438232421875, -0.011260986328125, -0.0219573974609375, 0.004913330078125, 0.022003173828125, 0.016021728515625, -0.00501251220703125, -0.0150146484375, -0.01087188720703125, 0.033599853515625, 0.04644775390625, 0.037139892578125, 0.01294708251953125, -0.0257720947265625, 0.0236358642578125, -0.016876220703125, -0.03973388671875, 0.00972747802734375, 0.0004010200500488281, 0.002643585205078125, 0.053497314453125, -0.0305633544921875, -0.0198974609375, 0.015655517578125, -0.0244903564453125, -0.000980377197265625, 0.008697509765625, 0.023193359375, -0.053924560546875, -0.0292816162109375, 0.022674560546875, -0.01149749755859375, 0.0009303092956542969, 0.0280609130859375, -0.00389862060546875, 0.0306243896484375, -0.048919677734375, -0.0316162109375, 0.0229339599609375, 0.033355712890625, -0.007366180419921875, 0.0249786376953125, -0.042572021484375, 0.0131683349609375, 0.0153045654296875, 0.016998291015625, -0.0264739990234375, -0.004852294921875, 0.00014317035675048828, 0.01800537109375, 0.01480865478515625, 0.006214141845703125, -0.0225982666015625, -0.0059051513671875, 0.038299560546875, 0.01184844970703125, 0.022674560546875, 0.0487060546875, -0.008636474609375, -0.005428314208984375, 0.0199737548828125, 0.0309295654296875, 0.046417236328125, -0.033538818359375, -0.05023193359375, -0.00010162591934204102, 0.00678253173828125, 0.016326904296875, 0.037322998046875, -0.01111602783203125, 0.039703369140625, 0.0035648345947265625, -0.0274505615234375, -0.05718994140625, -0.010009765625, -0.0158843994140625, -0.0120849609375, 0.00907135009765625, -0.041046142578125, -0.001556396484375, 0.01045989990234375, 0.04486083984375, -0.0029239654541015625, 0.0438232421875, 0.016998291015625, 0.0060272216796875, 0.0118408203125, -0.0069732666015625, 0.010040283203125, 0.0057373046875, 0.0247955322265625, -0.0029239654541015625, 0.021514892578125, -0.056304931640625, -0.04669189453125, 0.059967041015625, 0.054779052734375, -0.022216796875, -0.043212890625, 0.0245361328125, 0.011962890625, 0.00620269775390625, 0.0234222412109375, 0.036956787109375, -0.044769287109375, 0.0019025802612304688, 0.017608642578125, 0.0209808349609375, 0.0419921875, -0.00711822509765625, 0.035064697265625, 0.07861328125, -0.08978271484375, 0.038665771484375, -0.053436279296875, 0.048797607421875, 0.02099609375, 0.0227508544921875, -0.0138092041015625, 0.067626953125, 0.0205230712890625, 0.00664520263671875, -0.00814056396484375, 0.023773193359375, 0.0098114013671875, 0.018890380859375, -0.0260772705078125, -0.0119476318359375, 0.01374053955078125, 0.021820068359375, -0.03369140625, 0.0269927978515625, 0.07025146484375, 0.058929443359375, -0.06585693359375, -0.0205535888671875, 0.0036296844482421875, -0.04156494140625, -0.0531005859375, -0.004947662353515625, 0.0162506103515625, 0.0281219482421875, 0.01473236083984375, -0.0118560791015625, 0.093505859375, -0.0004673004150390625, -0.00978851318359375, 0.0200042724609375, 0.001739501953125, 0.0006513595581054688, -0.0115203857421875, 0.0006985664367675781, -0.0321044921875, 0.0207977294921875, -0.01219940185546875, -0.0230560302734375, -0.0209503173828125, 0.0229949951171875, 0.006256103515625, 0.0203704833984375, -0.0023555755615234375, 0.043426513671875, 0.0009551048278808594, 0.019561767578125, -0.03192138671875, -0.03509521484375, 0.027557373046875, 0.02630615234375, 0.0190277099609375, 0.042205810546875, 0.0030078887939453125, 0.006130218505859375, 0.01232147216796875, 0.024993896484375, 0.007633209228515625, 0.0228118896484375, 0.002437591552734375, 0.027984619140625, -0.01537322998046875, 0.0013675689697265625, -0.0301971435546875, -0.0248870849609375, 0.030364990234375, -0.0174560546875, -0.01395416259765625, -0.004978179931640625, -0.006679534912109375, -0.014007568359375, 0.071044921875, -0.0516357421875, -0.0238189697265625, 0.009521484375, 0.025482177734375, -0.038177490234375, 0.040130615234375, 0.006443023681640625, -0.0164794921875, 0.05853271484375, 0.0261383056640625, -0.004680633544921875, 0.04681396484375, 0.0202789306640625, -0.023834228515625, -0.0501708984375, -0.055877685546875, 0.01280975341796875, -0.01100921630859375, 0.007312774658203125, 0.03375244140625, -0.043853759765625, 0.022552490234375, 0.005023956298828125, -0.0037212371826171875, 0.0196380615234375, 0.0212554931640625, 0.00475311279296875, 0.02447509765625, 0.06890869140625, 0.055206298828125, 0.040374755859375, 0.056060791015625, 0.0054473876953125, 0.01123809814453125, 0.0193328857421875, 0.0021266937255859375, 0.0026378631591796875, -0.026031494140625, -0.017791748046875, -0.033294677734375, -0.01432037353515625, 0.0246429443359375, -0.0111083984375, -0.0291595458984375, -0.040679931640625, -0.00794219970703125, 0.0279541015625, 0.0240325927734375, -0.027679443359375, 0.032806396484375, -0.0054473876953125, -0.0224456787109375, 0.0170745849609375, -0.03790283203125, -0.01169586181640625, 0.01300811767578125, -0.0013227462768554688, -0.0377197265625, -0.05255126953125, 0.04193115234375, -0.022003173828125, -0.023223876953125, 0.00888824462890625, -0.01032257080078125, 0.01348114013671875, -0.060394287109375, -0.00988006591796875, -0.0233917236328125, -0.007228851318359375, -0.0288848876953125, 0.014251708984375, -0.0064239501953125, -0.020751953125, -0.047393798828125, 0.00745391845703125, -0.06072998046875, -0.002910614013671875, 0.055511474609375, -0.04595947265625, -0.005260467529296875, -0.0286102294921875, -0.03765869140625, 0.004116058349609375, 0.04150390625, -0.03741455078125, -0.030517578125, -0.01473236083984375, -0.0261077880859375, 0.0298309326171875, -0.0010137557983398438, -0.0304412841796875, 0.00905609130859375, 0.049468994140625, 0.0074920654296875, 0.022979736328125, 0.0033740997314453125, -0.004764556884765625, -0.05084228515625, -0.00475311279296875, -0.0160980224609375, 0.01085662841796875, -0.012847900390625, 0.00435638427734375, 0.024505615234375, 0.0108795166015625, -0.015106201171875, 0.0235137939453125, 0.033111572265625, -0.00033283233642578125, -0.02264404296875, -0.042327880859375, -0.052032470703125, -0.0139312744140625, 0.10272216796875, 0.07733154296875, 0.026031494140625, -0.043853759765625, 0.0158233642578125, 0.031402587890625, 0.024871826171875, -0.002300262451171875, -0.0044097900390625, -0.042236328125, -0.039703369140625, -0.0172271728515625, -0.006465911865234375, -0.0009927749633789062, 0.033721923828125, -0.016845703125, -0.0017366409301757812, 0.03759765625, -0.00010925531387329102, -0.0281219482421875, -0.01049041748046875, 0.036102294921875, -0.052337646484375, -0.0653076171875, -0.00044536590576171875, 0.023468017578125, -0.0305328369140625, -0.06085205078125, -0.044525146484375, -0.005435943603515625, -0.0034122467041015625, 0.0340576171875, -0.00594329833984375, 0.01026153564453125, -0.0279083251953125, 0.01239013671875, -0.003154754638671875, 0.0248870849609375, -0.020782470703125, 0.03009033203125, 0.004486083984375, 0.022216796875, -0.0113677978515625, 0.05841064453125, 0.01486968994140625, 0.0648193359375, 0.00769805908203125, 0.0467529296875, 0.0145263671875, -0.044586181640625, 0.0251312255859375, -0.05792236328125, 0.01348876953125, -0.0045928955078125, -0.00328826904296875, -0.042388916015625, -0.011962890625, -0.06341552734375, 0.007015228271484375, 0.01174163818359375 ]
a05bdceb0cac8b7ad8897ffbd9a92c06776738ad
Wordpress Stackexchange Q: Get Post ID by Content I am trying to get a post ID by it's post content. I have a custom post type of 'membership' which has post_content that looks like this... {"member_id":33} I am trying to get the ID of this post by searching for {"member_id":33} Am I best off doing this using an SQL statement or is there a better way to do it using WordPress functions? A: WordPress has a handy function called post_exists() which allows you to find an existing post by its title, content, and/or date. It returns the post ID on success or 0 otherwise. In your case, you can use $post_id = post_exists( '', '{"member_id":33}' ) to find the post you're looking for. Note: That function doesn't check the post type so you'd need to do that separately or roll your own function if it's necessary. I doubt it though that you have other posts with the same content :-)
Q: Get Post ID by Content I am trying to get a post ID by it's post content. I have a custom post type of 'membership' which has post_content that looks like this... {"member_id":33} I am trying to get the ID of this post by searching for {"member_id":33} Am I best off doing this using an SQL statement or is there a better way to do it using WordPress functions? A: WordPress has a handy function called post_exists() which allows you to find an existing post by its title, content, and/or date. It returns the post ID on success or 0 otherwise. In your case, you can use $post_id = post_exists( '', '{"member_id":33}' ) to find the post you're looking for. Note: That function doesn't check the post type so you'd need to do that separately or roll your own function if it's necessary. I doubt it though that you have other posts with the same content :-)
wordpress
{ "language": "en", "length": 158, "provenance": "stackexchange_00019.jsonl.gz:483199", "question_score": "6", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/291410" }
[ 0.038177490234375, -0.011871337890625, 0.03033447265625, 0.021514892578125, 0.0099029541015625, -0.030242919921875, 0.06719970703125, -0.045013427734375, -0.0006718635559082031, 0.025421142578125, -0.068359375, 0.0006489753723144531, -0.0179901123046875, 0.005344390869140625, -0.01247406005859375, -0.05279541015625, 0.0364990234375, -0.031890869140625, 0.01442718505859375, -0.0193023681640625, 0.009674072265625, -0.0023937225341796875, 0.036651611328125, 0.00044274330139160156, 0.049591064453125, -0.0200653076171875, 0.0675048828125, -0.0194549560546875, 0.045074462890625, -0.0039215087890625, 0.045257568359375, -0.047027587890625, 0.01137542724609375, -0.0229339599609375, 0.042816162109375, 0.0268402099609375, 0.01371002197265625, 0.00391387939453125, 0.036651611328125, -0.0026111602783203125, 0.01401519775390625, -0.0004973411560058594, 0.03302001953125, 0.0127105712890625, 0.002544403076171875, -0.050750732421875, 0.030517578125, -0.0355224609375, 0.02667236328125, -0.0050506591796875, 0.004970550537109375, 0.04180908203125, 0.0200958251953125, -0.003765106201171875, -0.0201263427734375, -0.027435302734375, -0.0144805908203125, 0.01200103759765625, 0.065673828125, -0.0430908203125, -0.056365966796875, -0.06463623046875, 0.046051025390625, -0.0199432373046875, -0.0328369140625, 0.0032672882080078125, 0.0665283203125, 0.0091094970703125, -0.054443359375, -0.05059814453125, 0.0252838134765625, 0.010498046875, 0.01788330078125, -0.004169464111328125, -0.044464111328125, -0.057037353515625, 0.0404052734375, -0.025115966796875, -0.0214080810546875, 0.0233154296875, -0.032135009765625, -0.01456451416015625, -0.047119140625, -0.00695037841796875, 0.00360870361328125, 0.019561767578125, -0.0307769775390625, -0.0034236907958984375, -0.0261993408203125, -0.0132293701171875, -0.01666259765625, -0.0300140380859375, -0.0037059783935546875, 0.0086822509765625, -0.0217742919921875, -0.0240325927734375, 0.024444580078125, 0.06475830078125, -0.03515625, 0.008941650390625, 0.00931549072265625, -0.045013427734375, 0.045989990234375, -0.0401611328125, -0.002460479736328125, 0.0182037353515625, 0.033294677734375, -0.019073486328125, -0.0020008087158203125, -0.001468658447265625, -0.02130126953125, 0.00208282470703125, -0.00911712646484375, 0.006336212158203125, -0.05908203125, 0.0265350341796875, -0.0287628173828125, -0.041412353515625, -0.02593994140625, 0.012725830078125, 0.006938934326171875, 0.01434326171875, -0.0022830963134765625, -0.00656890869140625, 0.007381439208984375, 0.004093170166015625, -0.0210723876953125, -0.0022125244140625, -0.006168365478515625, -0.0170135498046875, -0.046478271484375, 0.0206451416015625, 0.0938720703125, 0.038421630859375, 0.02703857421875, -0.0164337158203125, -0.00894927978515625, -0.0236358642578125, -0.00927734375, -0.00548553466796875, -0.00868988037109375, 0.00684356689453125, 0.06341552734375, -0.043121337890625, -0.029876708984375, 0.0278778076171875, 0.03924560546875, 0.01134490966796875, -0.040252685546875, -0.07763671875, -0.008331298828125, 0.006927490234375, 0.029541015625, 0.0011510848999023438, 0.00618743896484375, -0.0260772705078125, 0.036346435546875, -0.051361083984375, 0.0020008087158203125, -0.033294677734375, 0.07275390625, -0.003841400146484375, -0.0261688232421875, 0.0215301513671875, -0.0199432373046875, -0.004642486572265625, -0.036041259765625, -0.01514434814453125, 0.0264739990234375, 0.077880859375, 0.0264434814453125, -0.01410675048828125, 0.005184173583984375, 0.0002015829086303711, -0.0303497314453125, -0.0131072998046875, 0.003604888916015625, 0.0056304931640625, 0.007190704345703125, 0.035003662109375, 0.015777587890625, -0.0194091796875, 0.0253143310546875, 0.0018053054809570312, -0.0345458984375, 0.06378173828125, 0.0305023193359375, 0.0753173828125, -0.0260772705078125, 0.00867462158203125, 0.02239990234375, 0.036956787109375, -0.06427001953125, 0.0291900634765625, -0.0121307373046875, -0.01335906982421875, 0.0176239013671875, 0.0002930164337158203, -0.0140380859375, 0.004085540771484375, 0.0157623291015625, 0.012176513671875, -0.0040130615234375, 0.022491455078125, -0.033843994140625, -0.005870819091796875, -0.003749847412109375, 0.01087188720703125, -0.021575927734375, 0.004566192626953125, 0.04180908203125, 0.019439697265625, -0.033294677734375, -0.039031982421875, -0.025146484375, 0.006561279296875, -0.0743408203125, -0.06817626953125, -0.046783447265625, 0.020172119140625, -0.0859375, 0.008514404296875, -0.0987548828125, -0.0310516357421875, 0.04095458984375, 0.01396942138671875, -0.007198333740234375, -0.01039886474609375, 0.0648193359375, 0.03271484375, -0.033050537109375, -0.01678466796875, 0.0246124267578125, 0.024688720703125, -0.0258331298828125, -0.002227783203125, -0.016754150390625, -0.05902099609375, 0.0015811920166015625, 0.054168701171875, 0.03753662109375, 0.0496826171875, -0.004058837890625, -0.01026153564453125, 0.0640869140625, -0.0161895751953125, 0.009979248046875, -0.0203857421875, 0.0214080810546875, 0.0755615234375, -0.029449462890625, 0.01971435546875, 0.0169677734375, -0.0050048828125, -0.0055389404296875, 0.045440673828125, -0.00910186767578125, 0.0200347900390625, -0.024200439453125, 0.023773193359375, -0.01505279541015625, -0.0180816650390625, -0.004550933837890625, -0.0293731689453125, 0.004528045654296875, 0.0236358642578125, 0.0479736328125, 0.041900634765625, -0.0179595947265625, -0.0021648406982421875, -0.0015668869018554688, 0.017730712890625, 0.005954742431640625, 0.054290771484375, 0.0034999847412109375, 0.040374755859375, -0.01451873779296875, -0.04156494140625, 0.020843505859375, 0.04156494140625, -0.004978179931640625, 0.03997802734375, -0.0243377685546875, -0.02154541015625, 0.01306915283203125, -0.0226287841796875, -0.0225982666015625, 0.00116729736328125, -0.004425048828125, -0.0125885009765625, 0.006214141845703125, 0.05621337890625, -0.0195159912109375, 0.0465087890625, 0.0037937164306640625, -0.005126953125, 0.01032257080078125, -0.0369873046875, 0.03277587890625, -0.0160064697265625, 0.05328369140625, 0.052459716796875, -0.0181427001953125, 0.0277862548828125, 0.0004627704620361328, 0.0196075439453125, -0.00023818016052246094, -0.0014982223510742188, 0.00594329833984375, -0.0033168792724609375, -0.03070068359375, 0.03515625, 0.0318603515625, 0.08856201171875, -0.0145263671875, -0.048065185546875, -0.006580352783203125, 0.032562255859375, -0.08734130859375, -0.11712646484375, -0.007843017578125, -0.03729248046875, -0.0244293212890625, -0.00373077392578125, -0.009246826171875, 0.003513336181640625, 0.003383636474609375, -0.00298309326171875, -0.0023479461669921875, -0.00028634071350097656, -0.06842041015625, -0.0258941650390625, -0.0906982421875, 0.01226806640625, -0.0240631103515625, 0.037017822265625, 0.01059722900390625, -0.01467132568359375, -0.006282806396484375, -0.046844482421875, -0.00034809112548828125, 0.04571533203125, -0.025543212890625, -0.01263427734375, -0.0214080810546875, 0.030242919921875, -0.02471923828125, 0.0247650146484375, -0.0243377685546875, 0.0032176971435546875, -0.0006756782531738281, -0.027008056640625, -0.0166168212890625, 0.01160430908203125, 0.0350341796875, 0.0139923095703125, -0.00000858306884765625, 0.06451416015625, 0.0771484375, 0.0000489354133605957, -0.043975830078125, -0.027587890625, -0.06597900390625, 0.01383209228515625, 0.04534912109375, 0.0149078369140625, -0.0250244140625, 0.0086669921875, -0.00342559814453125, -0.006473541259765625, 0.005764007568359375, -0.03936767578125, 0.02178955078125, 0.0067901611328125, 0.0093231201171875, 0.0141143798828125, 0.01568603515625, -0.01456451416015625, 0.0064849853515625, -0.00823974609375, 0.0234375, -0.0236358642578125, 0.01763916015625, -0.0667724609375, -0.03955078125, 0.052154541015625, 0.0223236083984375, 0.0626220703125, -0.046722412109375, -0.0546875, -0.01763916015625, 0.1156005859375, -0.0036487579345703125, -0.0257568359375, -0.0426025390625, -0.00614166259765625, -0.0234375, -0.04541015625, -0.018218994140625, 0.0080413818359375, -0.00482940673828125, 0.00460052490234375, 0.00472259521484375, -0.0274200439453125, -0.0228729248046875, 0.0202789306640625, -0.0150909423828125, 0.003215789794921875, 0.0439453125, 0.00922393798828125, 0.0279693603515625, 0.02679443359375, 0.0133209228515625, 0.033538818359375, -0.032470703125, 0.0147247314453125, -0.007808685302734375, -0.007274627685546875, -0.0216217041015625, 0.0279388427734375, 0.0198974609375, 0.01348876953125, 0.0022029876708984375, 0.0236663818359375, -0.00428009033203125, 0.011260986328125, -0.00936126708984375, 0.0166168212890625, -0.009002685546875, -0.0162506103515625, -0.0225982666015625, -0.0307464599609375, -0.0247650146484375, -0.051910400390625, -0.00882720947265625, 0.015228271484375, -0.0309600830078125, 0.017120361328125, -0.025360107421875, 0.00630950927734375, -0.014007568359375, -0.00861358642578125, -0.01042938232421875, 0.031219482421875, -0.01316070556640625, 0.009674072265625, -0.0203094482421875, -0.0297393798828125, 0.080078125, 0.031280517578125, -0.00991058349609375, -0.01128387451171875, 0.086669921875, 0.00841522216796875, -0.04327392578125, -0.058929443359375, 0.004100799560546875, 0.030548095703125, -0.016937255859375, 0.060150146484375, 0.0214080810546875, -0.0189361572265625, 0.07122802734375, -0.00933837890625, -0.029296875, 0.02423095703125, 0.0555419921875, 0.0067901611328125, -0.01126861572265625, -0.015655517578125, -0.038818359375, 0.005153656005859375, 0.0218353271484375, -0.003093719482421875, -0.0165252685546875, 0.03509521484375, 0.042449951171875, -0.053558349609375, 0.036529541015625, -0.01087188720703125, -0.042999267578125, 0.0258636474609375, -0.01389312744140625, -0.016845703125, 0.0033321380615234375, 0.004390716552734375, 0.00281524658203125, -0.0117034912109375, -0.0032024383544921875, 0.046051025390625, 0.0271453857421875, 0.00899505615234375, 0.0237274169921875, 0.016387939453125, -0.0325927734375, 0.005096435546875, -0.0176849365234375, 0.0784912109375, -0.0167694091796875, -0.07513427734375, 0.037750244140625, -0.020904541015625, -0.00934600830078125, 0.05322265625, -0.0193634033203125, 0.0183868408203125, 0.03082275390625, -0.0007033348083496094, 0.003246307373046875, -0.020843505859375, 0.031768798828125, -0.0221405029296875, -0.00955963134765625, 0.005680084228515625, -0.024749755859375, 0.0127105712890625, 0.051177978515625, -0.0292510986328125, 0.034149169921875, -0.0174560546875, 0.0587158203125, -0.0002377033233642578, 0.049774169921875, 0.033905029296875, -0.0310821533203125, -0.0136871337890625, 0.01419830322265625, -0.072998046875, -0.047943115234375, -0.00327301025390625, -0.00885772705078125, 0.034637451171875, 0.00447845458984375, -0.0173187255859375, 0.042236328125, -0.020751953125, 0.00717926025390625, 0.00885009765625, -0.0011739730834960938, -0.027587890625, -0.00905609130859375, 0.01361083984375, 0.01427459716796875, 0.00539398193359375, -0.00902557373046875, 0.0013246536254882812, -0.0291748046875, -0.00812530517578125, -0.02606201171875, -0.0300445556640625, -0.00804901123046875, 0.0143890380859375, -0.01030731201171875, -0.05462646484375, -0.034698486328125, 0.039276123046875, 0.03509521484375, -0.011962890625, -0.0281982421875, 0.0287017822265625, -0.0029582977294921875, 0.061920166015625, -0.0250396728515625, -0.039398193359375, 0.0153961181640625, 0.0005893707275390625, 0.0404052734375, 0.016021728515625, -0.0270233154296875, 0.0226593017578125, -0.036834716796875, 0.0010881423950195312, 0.005657196044921875, -0.05511474609375, -0.0215911865234375, -0.0294189453125, -0.007579803466796875, 0.0025634765625, -0.0040740966796875, -0.0008039474487304688, 0.01507568359375, 0.042510986328125, 0.002155303955078125, 0.018768310546875, -0.00039505958557128906, 0.040985107421875, 0.00984954833984375, 0.04388427734375, 0.0174407958984375, 0.026275634765625, -0.0174560546875, -0.032379150390625, -0.0013370513916015625, -0.006435394287109375, 0.017913818359375, -0.0102691650390625, 0.05426025390625, -0.0423583984375, -0.02337646484375, 0.0037078857421875, 0.00783538818359375, -0.006763458251953125, 0.00267791748046875, -0.0215301513671875, -0.026092529296875, 0.00835418701171875, 0.018310546875, -0.00867462158203125, -0.044952392578125, -0.046966552734375, 0.0195770263671875, 0.044219970703125, -0.0288848876953125, -0.01849365234375, -0.04632568359375, 0.036895751953125, 0.0019044876098632812, -0.0018033981323242188, 0.04547119140625, 0.006916046142578125, 0.0311431884765625, -0.006687164306640625, 0.0130615234375, 0.0190887451171875, 0.03594970703125, -0.0421142578125, -0.0125885009765625, 0.047088623046875, 0.0233154296875, -0.035980224609375, 0.020355224609375, -0.041534423828125, 0.0030536651611328125, -0.006336212158203125, 0.043365478515625, -0.01904296875, 0.01271820068359375, 0.01148223876953125, -0.0280914306640625, 0.00745391845703125, 0.01251220703125, 0.01123809814453125, -0.00539398193359375, 0.01904296875, 0.005710601806640625, -0.0033740997314453125, 0.01221466064453125, -0.0114288330078125, -0.018646240234375, -0.0216522216796875, 0.0241241455078125, 0.019073486328125, 0.00843048095703125, 0.017608642578125, -0.00537872314453125, 0.01531219482421875, -0.0511474609375, 0.00885772705078125, -0.0128173828125, 0.006740570068359375, -0.08563232421875, 0.0079498291015625, -0.0161590576171875, 0.0182952880859375, 0.01061248779296875, 0.00283050537109375, 0.01062774658203125, 0.039703369140625, -0.007640838623046875, -0.01529693603515625, 0.015625, -0.043609619140625, -0.027984619140625, -0.0103759765625, -0.009124755859375, 0.06005859375, -0.02996826171875, 0.038299560546875, -0.00688934326171875, 0.0034351348876953125, -0.0041656494140625, -0.031768798828125, 0.08740234375, -0.0855712890625, 0.016357421875, 0.0248260498046875, 0.0253753662109375, -0.00794219970703125, -0.0004227161407470703, 0.033782958984375, -0.01422119140625, 0.022705078125, 0.0070953369140625, 0.02899169921875, -0.0101776123046875, -0.005519866943359375, -0.04913330078125, 0.0638427734375, 0.004802703857421875, -0.0019016265869140625, -0.0007200241088867188, 0.035064697265625, -0.01528167724609375, 0.0101470947265625, -0.04583740234375, 0.038787841796875, -0.0347900390625, 0.035888671875, -0.04608154296875, 0.004634857177734375, -0.0012502670288085938, 0.0117950439453125, 0.076904296875, 0.010284423828125, -0.04766845703125, -0.033355712890625, 0.0267333984375, 0.06103515625, 0.009979248046875, 0.026519775390625, 0.0149993896484375, 0.0316162109375, 0.048248291015625, -0.06512451171875, 0.01374053955078125, -0.01079559326171875, 0.017059326171875, 0.027130126953125, 0.016510009765625, 0.02020263671875, 0.049560546875, -0.0020236968994140625, -0.03448486328125, 0.014923095703125, 0.0213775634765625, -0.018798828125, 0.005916595458984375, 0.034759521484375, 0.06317138671875, -0.0618896484375, -0.01534271240234375, -0.034149169921875, 0.06060791015625, 0.0279693603515625, 0.0543212890625, 0.00942230224609375, 0.0125579833984375, 0.08221435546875, -0.0048980712890625, 0.01812744140625, 0.03350830078125, -0.02203369140625, 0.0655517578125, 0.0251617431640625, 0.0107269287109375, -0.08319091796875, -0.05230712890625, 0.04437255859375, 0.0902099609375, -0.042205810546875, -0.0009379386901855469, 0.029571533203125, -0.003543853759765625, -0.024810791015625, -0.0295562744140625, -0.005580902099609375, 0.03741455078125, 0.033172607421875, -0.052520751953125, 0.0159759521484375, 0.045166015625, 0.022125244140625, 0.0036258697509765625, -0.00998687744140625, -0.05401611328125, -0.00528717041015625, -0.043182373046875, 0.0265350341796875, 0.031982421875, 0.024505615234375, 0.0010919570922851562, 0.036834716796875, 0.0194244384765625, -0.0098114013671875, 0.026214599609375, 0.0059356689453125, 0.0162811279296875, -0.0241851806640625, -0.0018301010131835938, -0.0443115234375, 0.017669677734375, 0.019775390625, 0.0119781494140625, -0.01035308837890625, 0.028961181640625, 0.03326416015625, -0.010284423828125, -0.01554107666015625, 0.00010585784912109375, -0.008544921875, 0.0221405029296875, -0.0165557861328125, -0.00524139404296875, -0.005222320556640625, -0.017059326171875, -0.005855560302734375, 0.011444091796875, 0.0219573974609375, 0.04425048828125, 0.058563232421875, 0.0262298583984375, 0.0259246826171875, 0.0121307373046875, 0.0007090568542480469, 0.0084991455078125, 0.040496826171875, -0.0789794921875, -0.002593994140625, -0.01244354248046875, -0.06768798828125, -0.00411224365234375, 0.0240020751953125, -0.00982666015625, -0.00669097900390625, -0.008270263671875, 0.02069091796875, -0.0122528076171875, -0.023529052734375, 0.0235595703125, 0.0283203125, 0.016815185546875, 0.029449462890625, -0.041748046875, -0.01012420654296875, -0.0035037994384765625, -0.0002428293228149414, 0.0226898193359375, -0.000957489013671875, 0.033172607421875, 0.0249481201171875, -0.05084228515625, 0.019989013671875, -0.0697021484375, -0.04547119140625, 0.033599853515625, -0.0178985595703125, -0.00370025634765625, 0.02362060546875, -0.0157318115234375, 0.0292205810546875, 0.01416015625, 0.00806427001953125, 0.01064300537109375, -0.035125732421875, 0.028656005859375, 0.0223541259765625, -0.032257080078125, -0.01355743408203125, 0.01256561279296875, -0.0010442733764648438, -0.029754638671875, 0.059356689453125, 0.042999267578125, 0.00904083251953125, 0.0171356201171875, -0.0179901123046875, -0.04510498046875, 0.025299072265625, -0.036468505859375, 0.02349853515625, 0.0262298583984375, 0.00275421142578125, -0.01377105712890625, -0.00016379356384277344, -0.00841522216796875, 0.003925323486328125, 0.014678955078125, 0.0168304443359375, 0.00859832763671875, 0.0290374755859375, 0.01128387451171875, 0.03350830078125, 0.039154052734375, -0.00551605224609375, 0.0260772705078125, 0.0182647705078125, -0.01727294921875, 0.0185394287109375, -0.0247802734375, -0.01386260986328125, -0.0277557373046875, 0.00921630859375, 0.028076171875, 0.0016870498657226562, 0.0158843994140625, -0.007266998291015625, -0.00493621826171875, 0.01059722900390625, -0.014862060546875, -0.01055145263671875, 0.011688232421875, -0.01120758056640625, 0.00380706787109375, -0.031646728515625, 0.01457977294921875, 0.00939178466796875, 0.00955963134765625, -0.0287933349609375, 0.03643798828125, -0.0255126953125, -0.018707275390625, 0.044921875, 0.01413726806640625, 0.0416259765625, -0.0338134765625, -0.02886962890625, 0.00958251953125, 0.01245880126953125, 0.052734375, -0.0019130706787109375, -0.022125244140625, 0.009857177734375, -0.01312255859375, -0.02508544921875, -0.0283660888671875, 0.031646728515625, -0.0653076171875, -0.043212890625, -0.0494384765625, 0.04327392578125, 0.05126953125, -0.01154327392578125, -0.048980712890625, 0.04974365234375, -0.03228759765625, -0.01727294921875, -0.053802490234375, -0.0018329620361328125, 0.0036525726318359375, -0.042266845703125, -0.037567138671875, -0.0009469985961914062, -0.0178070068359375, 0.04949951171875, -0.01800537109375, 0.007717132568359375, 0.053009033203125, -0.0163421630859375, -0.052490234375, -0.037322998046875, -0.055389404296875, -0.013153076171875, 0.035919189453125, -0.0139007568359375, 0.0173187255859375, 0.01953125, -0.07574462890625, -0.04718017578125, -0.047821044921875, 0.032470703125, -0.03277587890625, -0.0279083251953125, 0.01470947265625, 0.0074310302734375, 0.038360595703125, 0.041534423828125, -0.0034465789794921875, -0.0452880859375, -0.01180267333984375, -0.022430419921875, -0.042266845703125, -0.0227203369140625, 0.01537322998046875, -0.056793212890625, -0.0005307197570800781, -0.01461029052734375, -0.0460205078125, 0.0088043212890625, -0.009674072265625, -0.059417724609375, 0.0133056640625, -0.060028076171875, -0.038116455078125, -0.0263214111328125, 0.017181396484375, 0.0211029052734375, -0.0296783447265625, -0.009735107421875, -0.01004791259765625, 0.00550079345703125, 0.005809783935546875, -0.0252227783203125, 0.05224609375, -0.033172607421875, -0.018585205078125, 0.0120697021484375, 0.02197265625, 0.028228759765625, -0.006664276123046875, -0.06787109375, -0.0126953125, 0.01690673828125, -0.00803375244140625, 0.01500701904296875, 0.0023708343505859375, 0.015960693359375, -0.01218414306640625, 0.0670166015625, -0.005443572998046875, 0.0478515625, -0.006595611572265625, 0.0633544921875, -0.0151519775390625, -0.0221710205078125, 0.0106048583984375, -0.0382080078125, -0.007686614990234375, 0.0167999267578125, 0.0072174072265625, -0.04443359375, 0.038604736328125, 0.0181884765625, 0.0147705078125, 0.0123443603515625 ]
479ba592a9cf1d5585da859c47622f5add2e2bd6
Wordpress Stackexchange Q: Why term_id is not indexed in wp_term_taxonomy table? Every category or tag (i.e. electronics) is stored as term in wp_terms table which is indexed with name and slug, and its relationship with taxonomy is stored in wp_term_taxonomy table which is indexed as taxonomy and term_taxonomy_id. I can find term_id from wp_terms table using name efficiently because it is indexed with name, but then I have to use term_id further to find term_taxonomy_id from wp_term_taxonomy table, but it is indexed as taxonomy but not term_id, and then further I'll use term_taxonomy_id to find object_id (posts) from wp_term_relationship table. Question is, why wp_term_taxonomy table is not indexed with term_id which is important in operations like finding posts related to a particular category or tag or anything else? A: A single term can, theoretically, be present in multiple taxonomies (and have a different description in each). That's where term_taxonomy_id comes into play, referencing a single term within a single taxonomy. In practice, WP tries to avoid that, and will create a term with the same name and a -2 (iirc) suffix on the slug if a term with the same slug already exists in a different taxonomy.
Q: Why term_id is not indexed in wp_term_taxonomy table? Every category or tag (i.e. electronics) is stored as term in wp_terms table which is indexed with name and slug, and its relationship with taxonomy is stored in wp_term_taxonomy table which is indexed as taxonomy and term_taxonomy_id. I can find term_id from wp_terms table using name efficiently because it is indexed with name, but then I have to use term_id further to find term_taxonomy_id from wp_term_taxonomy table, but it is indexed as taxonomy but not term_id, and then further I'll use term_taxonomy_id to find object_id (posts) from wp_term_relationship table. Question is, why wp_term_taxonomy table is not indexed with term_id which is important in operations like finding posts related to a particular category or tag or anything else? A: A single term can, theoretically, be present in multiple taxonomies (and have a different description in each). That's where term_taxonomy_id comes into play, referencing a single term within a single taxonomy. In practice, WP tries to avoid that, and will create a term with the same name and a -2 (iirc) suffix on the slug if a term with the same slug already exists in a different taxonomy.
wordpress
{ "language": "en", "length": 195, "provenance": "stackexchange_00019.jsonl.gz:483202", "question_score": "4", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/291421" }
[ 0.044189453125, 0.004467010498046875, 0.0103912353515625, -0.01055145263671875, 0.0289306640625, -0.0210723876953125, 0.053985595703125, -0.02203369140625, 0.0294952392578125, 0.0225677490234375, -0.04217529296875, 0.00533294677734375, -0.0036945343017578125, -0.0164337158203125, -0.03936767578125, -0.03515625, 0.0182952880859375, -0.01285552978515625, 0.0193634033203125, 0.0166473388671875, -0.000049591064453125, 0.03326416015625, 0.005664825439453125, -0.08642578125, 0.07318115234375, -0.06103515625, 0.01081085205078125, -0.0208740234375, 0.049560546875, -0.01556396484375, 0.0477294921875, -0.004055023193359375, 0.01157379150390625, -0.0198211669921875, 0.047271728515625, -0.028045654296875, 0.0172576904296875, -0.00812530517578125, 0.011627197265625, 0.0140380859375, 0.031341552734375, -0.0152435302734375, 0.04486083984375, 0.0278778076171875, 0.01317596435546875, -0.045654296875, 0.0213623046875, -0.0560302734375, 0.02508544921875, -0.057586669921875, 0.017333984375, 0.0421142578125, 0.044464111328125, -0.06524658203125, -0.025299072265625, 0.01220703125, -0.006755828857421875, -0.006221771240234375, -0.0033397674560546875, -0.01319122314453125, -0.012908935546875, 0.01206207275390625, 0.0222930908203125, 0.01236724853515625, 0.008880615234375, 0.00849151611328125, 0.048828125, 0.0169525146484375, -0.04150390625, -0.00885009765625, 0.02984619140625, -0.0312042236328125, 0.001857757568359375, 0.0140228271484375, -0.0316162109375, -0.07501220703125, 0.0565185546875, -0.038665771484375, -0.01454925537109375, 0.040557861328125, 0.007381439208984375, -0.03985595703125, -0.034881591796875, 0.004566192626953125, -0.0025959014892578125, 0.032073974609375, -0.006561279296875, -0.01873779296875, -0.0021839141845703125, -0.0248260498046875, -0.013153076171875, -0.0205535888671875, -0.033905029296875, 0.00907135009765625, -0.002689361572265625, -0.0263671875, 0.005603790283203125, 0.057098388671875, -0.0212554931640625, 0.0243377685546875, 0.0107421875, -0.03759765625, 0.045166015625, -0.046966552734375, 0.03778076171875, 0.04608154296875, -0.01503753662109375, 0.00638580322265625, 0.05780029296875, 0.0035724639892578125, 0.00740814208984375, 0.045928955078125, 0.0024547576904296875, -0.0081634521484375, -0.024749755859375, -0.0024814605712890625, -0.036895751953125, 0.0022716522216796875, -0.002948760986328125, -0.0279083251953125, -0.01120758056640625, -0.00021350383758544922, -0.028045654296875, 0.0305938720703125, -0.0102691650390625, -0.021453857421875, -0.006099700927734375, 0.0284271240234375, 0.0100555419921875, -0.0309295654296875, -0.038665771484375, 0.0078887939453125, 0.05401611328125, 0.044097900390625, 0.0125579833984375, 0.01129913330078125, 0.0127716064453125, -0.01233673095703125, -0.00859832763671875, 0.006618499755859375, 0.02264404296875, -0.003391265869140625, 0.0119476318359375, 0.0019397735595703125, 0.028076171875, 0.01519012451171875, 0.0242767333984375, 0.01398468017578125, -0.0112457275390625, -0.0191802978515625, 0.00969696044921875, 0.00994110107421875, 0.056182861328125, 0.00981903076171875, -0.06024169921875, -0.034454345703125, 0.027984619140625, -0.046295166015625, -0.035858154296875, -0.09051513671875, 0.01690673828125, -0.00965118408203125, 0.01119232177734375, 0.007625579833984375, -0.0175933837890625, 0.01204681396484375, -0.02392578125, -0.023956298828125, 0.01396942138671875, 0.02587890625, -0.0006265640258789062, -0.01198577880859375, -0.0101470947265625, -0.003910064697265625, -0.0083770751953125, 0.0002008676528930664, -0.015838623046875, -0.0233154296875, 0.0328369140625, 0.03704833984375, -0.0273895263671875, -0.0313720703125, -0.00390625, 0.0028858184814453125, -0.041015625, 0.041595458984375, 0.00536346435546875, 0.058135986328125, 0.0038547515869140625, 0.01194000244140625, 0.0258026123046875, 0.0168914794921875, -0.083740234375, 0.056243896484375, 0.01328277587890625, -0.011260986328125, -0.0268707275390625, -0.006114959716796875, 0.004589080810546875, -0.032470703125, -0.028350830078125, 0.0118255615234375, -0.0240478515625, -0.006984710693359375, -0.07537841796875, -0.0124969482421875, -0.02374267578125, 0.040130615234375, -0.02276611328125, 0.006450653076171875, 0.03277587890625, 0.004207611083984375, -0.037567138671875, -0.0194244384765625, -0.02703857421875, 0.01515960693359375, -0.0182342529296875, -0.0037212371826171875, -0.0036334991455078125, -0.00508880615234375, -0.01010894775390625, 0.0102081298828125, -0.0249786376953125, 0.017120361328125, 0.0254974365234375, 0.031494140625, -0.02294921875, -0.0013666152954101562, 0.036346435546875, 0.0335693359375, -0.0272064208984375, -0.0006113052368164062, 0.05499267578125, 0.07354736328125, 0.01059722900390625, 0.005977630615234375, 0.044830322265625, -0.0673828125, 0.01450347900390625, 0.0260009765625, 0.032470703125, 0.006267547607421875, -0.017913818359375, -0.0306854248046875, 0.008270263671875, -0.07110595703125, -0.007808685302734375, -0.0194549560546875, 0.0079803466796875, 0.0545654296875, 0.0009622573852539062, 0.034576416015625, -0.0086822509765625, 0.00643157958984375, -0.01953125, 0.042236328125, -0.0374755859375, -0.0186920166015625, 0.009613037109375, 0.0201568603515625, -0.00921630859375, -0.0156707763671875, 0.01898193359375, -0.01447296142578125, 0.0072174072265625, 0.034912109375, 0.035003662109375, 0.0228271484375, -0.01282501220703125, 0.0034732818603515625, 0.00691986083984375, -0.0275421142578125, 0.0103302001953125, 0.01226806640625, 0.0006718635559082031, 0.0089263916015625, -0.01250457763671875, -0.015899658203125, 0.015533447265625, 0.0080413818359375, 0.01751708984375, 0.059539794921875, -0.020263671875, -0.01776123046875, -0.0226898193359375, -0.07159423828125, -0.01311492919921875, 0.0232391357421875, -0.075439453125, -0.0243682861328125, -0.004657745361328125, 0.062164306640625, -0.019317626953125, 0.01500701904296875, -0.03070068359375, 0.023651123046875, -0.04351806640625, -0.01082611083984375, 0.02349853515625, -0.031890869140625, 0.01354217529296875, 0.048309326171875, 0.00641632080078125, 0.00885772705078125, 0.0166778564453125, -0.035552978515625, 0.02752685546875, -0.015899658203125, -0.0216217041015625, 0.0211334228515625, -0.09197998046875, 0.0115203857421875, 0.0191192626953125, 0.05377197265625, 0.007579803466796875, -0.03289794921875, 0.004558563232421875, 0.02630615234375, -0.0684814453125, -0.08477783203125, -0.0055694580078125, -0.035369873046875, 0.01776123046875, -0.01174163818359375, -0.00797271728515625, -0.025054931640625, -0.003910064697265625, 0.011016845703125, 0.010955810546875, -0.03631591796875, -0.08221435546875, -0.07257080078125, -0.0897216796875, 0.0208282470703125, -0.007610321044921875, 0.0182952880859375, 0.0291290283203125, 0.0284881591796875, 0.0172271728515625, -0.024993896484375, 0.048004150390625, 0.03192138671875, -0.03125, 0.00940704345703125, -0.01335906982421875, -0.0212554931640625, -0.005222320556640625, -0.0007328987121582031, -0.05126953125, -0.0013837814331054688, 0.0256805419921875, -0.0168609619140625, 0.005413055419921875, 0.01172637939453125, 0.037200927734375, -0.0241546630859375, -0.0292510986328125, 0.01367950439453125, 0.039886474609375, -0.0228424072265625, -0.011016845703125, -0.024261474609375, -0.01526641845703125, -0.0092926025390625, -0.03558349609375, 0.0118560791015625, -0.01029205322265625, 0.0205230712890625, -0.0168609619140625, 0.0143890380859375, -0.038543701171875, -0.005138397216796875, -0.0017185211181640625, -0.00821685791015625, -0.0102691650390625, 0.04193115234375, 0.0168609619140625, -0.030517578125, -0.0211944580078125, -0.0023517608642578125, -0.0107879638671875, -0.0223541259765625, -0.004886627197265625, -0.052398681640625, -0.064453125, 0.03631591796875, -0.0333251953125, 0.03814697265625, -0.055328369140625, -0.0196075439453125, -0.01439666748046875, 0.11077880859375, -0.046295166015625, -0.027191162109375, -0.01117706298828125, 0.021942138671875, -0.0111083984375, -0.04827880859375, 0.01421356201171875, -0.032928466796875, -0.0215911865234375, -0.01482391357421875, -0.0198822021484375, -0.017730712890625, -0.0108642578125, 0.0027179718017578125, -0.0195159912109375, -0.037841796875, 0.03192138671875, -0.038360595703125, 0.02642822265625, 0.037628173828125, 0.003017425537109375, 0.01068115234375, -0.03131103515625, -0.0304412841796875, -0.0247650146484375, -0.0002605915069580078, 0.0177459716796875, -0.0007233619689941406, -0.00916290283203125, -0.0145721435546875, 0.014129638671875, 0.0321044921875, 0.006160736083984375, 0.0017719268798828125, 0.01282501220703125, 0.0104522705078125, 0.0035610198974609375, 0.00701904296875, -0.005603790283203125, -0.02044677734375, -0.0019483566284179688, -0.044097900390625, -0.032958984375, 0.038360595703125, -0.0361328125, 0.055145263671875, -0.0555419921875, -0.0047607421875, -0.038421630859375, -0.016387939453125, -0.055999755859375, -0.003326416015625, -0.0271453857421875, -0.0147705078125, -0.039581298828125, -0.057830810546875, 0.0616455078125, 0.014251708984375, -0.00684356689453125, 0.006885528564453125, 0.060882568359375, 0.005916595458984375, -0.04339599609375, -0.0667724609375, 0.0019426345825195312, 0.0294036865234375, 0.0345458984375, 0.00579071044921875, -0.003559112548828125, -0.024200439453125, 0.0185394287109375, 0.0273284912109375, -0.006313323974609375, -0.01183319091796875, 0.041656494140625, -0.02117919921875, -0.04266357421875, 0.0277862548828125, -0.0462646484375, 0.018035888671875, 0.04656982421875, -0.01462554931640625, -0.06781005859375, -0.01361846923828125, 0.09954833984375, -0.03240966796875, 0.068359375, -0.0672607421875, -0.04705810546875, 0.0213165283203125, -0.0350341796875, 0.0199432373046875, 0.007904052734375, 0.0032100677490234375, 0.0047454833984375, -0.01308441162109375, 0.00287628173828125, 0.01751708984375, -0.0045623779296875, -0.00042891502380371094, 0.005756378173828125, 0.03826904296875, -0.0065155029296875, -0.01024627685546875, -0.01084136962890625, 0.034881591796875, -0.00852203369140625, -0.050140380859375, 0.02459716796875, -0.022064208984375, -0.0193023681640625, 0.04437255859375, 0.001468658447265625, -0.0038700103759765625, 0.02337646484375, 0.007358551025390625, 0.00487518310546875, -0.0228118896484375, 0.0178680419921875, -0.0208587646484375, -0.01474761962890625, -0.01177215576171875, -0.0060272216796875, 0.00975799560546875, 0.056396484375, -0.042877197265625, 0.03521728515625, -0.002986907958984375, 0.0144805908203125, -0.041290283203125, 0.06964111328125, 0.0081787109375, -0.043487548828125, 0.0201263427734375, 0.03399658203125, -0.0025463104248046875, -0.040985107421875, 0.01496124267578125, -0.007160186767578125, 0.018524169921875, -0.0297088623046875, -0.0309295654296875, 0.064208984375, -0.0161285400390625, -0.0013742446899414062, -0.0030670166015625, -0.04559326171875, -0.027130126953125, -0.0229949951171875, 0.0019168853759765625, 0.0340576171875, -0.00958251953125, -0.01435089111328125, -0.000507354736328125, -0.047088623046875, 0.0164642333984375, -0.0162506103515625, 0.0240631103515625, -0.02197265625, -0.032257080078125, -0.0073089599609375, 0.004230499267578125, -0.01739501953125, 0.01128387451171875, -0.018463134765625, 0.00046753883361816406, -0.03363037109375, 0.05511474609375, 0.0186004638671875, 0.05157470703125, 0.0009226799011230469, -0.0469970703125, 0.01666259765625, 0.0031719207763671875, 0.028656005859375, -0.0008754730224609375, -0.06878662109375, 0.0177154541015625, -0.0438232421875, 0.003253936767578125, 0.005802154541015625, -0.042755126953125, -0.042694091796875, -0.01593017578125, -0.0384521484375, 0.004177093505859375, -0.004199981689453125, 0.0345458984375, -0.01288604736328125, 0.0230865478515625, -0.01654052734375, -0.03125, -0.0157623291015625, -0.008880615234375, 0.0021953582763671875, 0.000020623207092285156, -0.0079193115234375, -0.0213165283203125, 0.0007543563842773438, -0.01038360595703125, -0.00634765625, -0.06256103515625, -0.024871826171875, -0.005550384521484375, -0.031951904296875, 0.030059814453125, 0.01873779296875, -0.005664825439453125, 0.046966552734375, -0.0169525146484375, -0.01105499267578125, -0.006320953369140625, -0.0313720703125, -0.031036376953125, 0.012054443359375, 0.0069427490234375, -0.020599365234375, -0.00030493736267089844, -0.0072021484375, 0.0254058837890625, 0.0007762908935546875, -0.043914794921875, -0.0015878677368164062, 0.0166473388671875, -0.017120361328125, 0.0025310516357421875, 0.004150390625, 0.024566650390625, 0.0254364013671875, -0.0234375, 0.0222625732421875, -0.014007568359375, 0.02191162109375, -0.038482666015625, -0.007274627685546875, 0.0614013671875, 0.00957489013671875, -0.04229736328125, 0.021575927734375, -0.039825439453125, -0.049896240234375, -0.0158233642578125, -0.02191162109375, 0.0234375, -0.01045989990234375, 0.0004830360412597656, -0.0228118896484375, -0.07012939453125, 0.005176544189453125, -0.0223541259765625, -0.01507568359375, -0.0163726806640625, 0.016387939453125, -0.031280517578125, -0.0139617919921875, 0.0133056640625, -0.00386810302734375, -0.0139007568359375, 0.05596923828125, 0.004886627197265625, -0.004241943359375, -0.0298309326171875, 0.007236480712890625, -0.0161895751953125, -0.0263214111328125, -0.01203155517578125, 0.02069091796875, -0.04498291015625, -0.0947265625, 0.00998687744140625, 0.003620147705078125, -0.0009326934814453125, 0.00550079345703125, 0.003017425537109375, 0.0205841064453125, 0.0115509033203125, 0.01241302490234375, -0.032073974609375, -0.0218658447265625, -0.01568603515625, -0.0004935264587402344, 0.017181396484375, 0.01168060302734375, 0.0072021484375, -0.02532958984375, 0.01053619384765625, -0.040863037109375, 0.0172882080078125, -0.01812744140625, -0.053497314453125, 0.046173095703125, -0.048858642578125, 0.034912109375, 0.029327392578125, 0.043487548828125, 0.003726959228515625, 0.00839996337890625, -0.003261566162109375, -0.033203125, -0.0205841064453125, 0.0018224716186523438, -0.0292510986328125, 0.013031005859375, 0.008758544921875, -0.0709228515625, 0.080810546875, 0.01629638671875, 0.0219268798828125, -0.020538330078125, 0.0307464599609375, 0.009246826171875, 0.0267791748046875, -0.037353515625, 0.033355712890625, -0.034454345703125, 0.07342529296875, -0.0162353515625, 0.0167999267578125, 0.0189056396484375, -0.006496429443359375, 0.10675048828125, 0.0226593017578125, -0.046234130859375, -0.01227569580078125, 0.053375244140625, 0.0173492431640625, -0.02520751953125, 0.0552978515625, 0.0100860595703125, 0.018310546875, 0.0567626953125, -0.003154754638671875, 0.03106689453125, 0.0157928466796875, -0.007904052734375, 0.040435791015625, 0.0081024169921875, 0.03448486328125, -0.001316070556640625, -0.0042724609375, -0.0117645263671875, -0.01202392578125, 0.0306549072265625, -0.041778564453125, 0.00397491455078125, 0.0241241455078125, 0.0181427001953125, -0.047821044921875, 0.0281219482421875, -0.03778076171875, 0.055816650390625, 0.00861358642578125, 0.0204925537109375, 0.0305633544921875, 0.003986358642578125, 0.0855712890625, -0.002105712890625, 0.0199432373046875, 0.0210418701171875, -0.00891876220703125, 0.027862548828125, -0.01407623291015625, 0.01953125, -0.069091796875, -0.01349639892578125, 0.046966552734375, 0.059051513671875, -0.03668212890625, -0.072265625, 0.0138702392578125, -0.002574920654296875, -0.006778717041015625, 0.03314208984375, -0.0085601806640625, 0.0499267578125, 0.0858154296875, -0.0277099609375, 0.007465362548828125, 0.0263671875, 0.0261688232421875, -0.0013074874877929688, 0.03265380859375, -0.057861328125, -0.0255279541015625, -0.068359375, 0.06695556640625, 0.0251922607421875, 0.059600830078125, -0.014739990234375, 0.0645751953125, -0.00897216796875, -0.01593017578125, -0.031494140625, 0.039154052734375, 0.00502777099609375, 0.04302978515625, -0.062042236328125, -0.03717041015625, 0.020172119140625, 0.048431396484375, 0.0084075927734375, 0.06671142578125, 0.03521728515625, 0.01464080810546875, 0.00028133392333984375, 0.004138946533203125, 0.031890869140625, -0.029388427734375, 0.0018949508666992188, -0.01235198974609375, 0.0526123046875, 0.053741455078125, 0.00994873046875, -0.00785064697265625, 0.037933349609375, 0.05938720703125, -0.01119232177734375, 0.03863525390625, 0.00409698486328125, -0.00235748291015625, 0.03680419921875, 0.00749969482421875, 0.023345947265625, 0.018890380859375, -0.057708740234375, -0.031524658203125, -0.0144805908203125, -0.0218505859375, 0.021881103515625, 0.046600341796875, 0.029541015625, -0.036590576171875, 0.02178955078125, -0.0194091796875, -0.02154541015625, 0.023895263671875, 0.039764404296875, -0.003757476806640625, -0.00444793701171875, 0.005176544189453125, 0.015167236328125, 0.034027099609375, 0.055816650390625, -0.01226043701171875, -0.005886077880859375, 0.08941650390625, -0.02313232421875, -0.0271759033203125, -0.0145111083984375, 0.01262664794921875, -0.035400390625, -0.04302978515625, 0.06732177734375, -0.03253173828125, -0.0220489501953125, 0.01372528076171875, -0.0238800048828125, 0.0204925537109375, 0.031707763671875, -0.0377197265625, 0.01132965087890625, -0.045623779296875, 0.01800537109375, -0.01396942138671875, 0.0227203369140625, -0.015899658203125, -0.0139617919921875, -0.0232696533203125, -0.01381683349609375, 0.044769287109375, 0.050140380859375, -0.008331298828125, -0.0019321441650390625, -0.0148773193359375, -0.0396728515625, 0.001842498779296875, -0.0233001708984375, 0.0206451416015625, 0.0295867919921875, 0.015869140625, 0.0143890380859375, -0.00670623779296875, -0.01561737060546875, 0.009552001953125, -0.0027751922607421875, 0.004238128662109375, -0.001590728759765625, -0.01540374755859375, 0.017791748046875, 0.035430908203125, 0.058807373046875, 0.00670623779296875, 0.031463623046875, 0.013824462890625, -0.006992340087890625, 0.0018749237060546875, -0.04071044921875, -0.025054931640625, -0.0123138427734375, 0.00609588623046875, 0.025238037109375, 0.006366729736328125, -0.00531005859375, -0.0297088623046875, -0.0028400421142578125, 0.050689697265625, -0.005924224853515625, -0.001708984375, 0.020355224609375, -0.047515869140625, -0.02679443359375, 0.024810791015625, -0.0090179443359375, -0.0015707015991210938, 0.00933074951171875, -0.032470703125, -0.0035877227783203125, -0.021636962890625, -0.0090789794921875, -0.01296234130859375, 0.018524169921875, 0.00872039794921875, -0.02825927734375, -0.0013246536254882812, 0.03961181640625, 0.0416259765625, 0.0672607421875, 0.0328369140625, -0.01142120361328125, 0.025360107421875, 0.00664520263671875, -0.0110321044921875, -0.06011962890625, -0.00704193115234375, -0.028350830078125, 0.0142669677734375, -0.0055084228515625, -0.010955810546875, -0.005641937255859375, -0.0469970703125, -0.037567138671875, -0.0014142990112304688, 0.0164794921875, -0.035797119140625, -0.05413818359375, -0.048095703125, -0.026214599609375, 0.0255889892578125, -0.0291595458984375, -0.01525115966796875, -0.0224609375, 0.09808349609375, 0.01496124267578125, 0.0018482208251953125, 0.034698486328125, -0.00792694091796875, -0.0872802734375, -0.0024662017822265625, -0.0228729248046875, 0.037994384765625, 0.0112762451171875, 0.00406646728515625, 0.0061187744140625, 0.031585693359375, -0.04876708984375, -0.017364501953125, -0.026641845703125, -0.0197601318359375, -0.002140045166015625, -0.0416259765625, -0.02685546875, 0.002681732177734375, 0.0511474609375, 0.033721923828125, 0.01380157470703125, -0.0421142578125, -0.03546142578125, -0.040435791015625, -0.01168060302734375, 0.01450347900390625, 0.02191162109375, -0.053619384765625, 0.038909912109375, 0.04638671875, -0.0290374755859375, 0.0243682861328125, 0.01055908203125, -0.054046630859375, 0.0277557373046875, -0.0014009475708007812, -0.017578125, -0.080078125, 0.0287017822265625, -0.0555419921875, -0.01322174072265625, -0.06060791015625, -0.036285400390625, 0.0072021484375, -0.07635498046875, -0.062347412109375, -0.01371002197265625, -0.0140380859375, 0.02728271484375, -0.004947662353515625, 0.02789306640625, -0.047088623046875, 0.049285888671875, 0.012969970703125, -0.016204833984375, 0.01110076904296875, -0.00962066650390625, -0.00597381591796875, -0.05242919921875, 0.066162109375, -0.001544952392578125, 0.10552978515625, -0.01065826416015625, 0.014556884765625, -0.008880615234375, 0.048187255859375, -0.0151214599609375, -0.006084442138671875, -0.0019664764404296875, -0.00565338134765625, 0.0173187255859375, -0.0081024169921875, 0.016357421875, 0.0016527175903320312, -0.0032672882080078125, -0.04901123046875, -0.01251220703125, 0.002288818359375 ]
34a316348e9f1487a749aa48c9021947f3d4f82f
Wordpress Stackexchange Q: Export list of users with first and lastname in WP-CLI I want to export a CSV file with a list of my Wordpress site users with WP-CLI. I can do this but I'm getting my users first and lastname together in one column (display name), I would like to get them each in their own column. Is there a way to do this? I can't find first and lastname as available options in the docs that lists optional fields. A: According to the documentation for wp user list, the fields argument accepts any valid WP_User_Query field. Thus, you can simply use wp user list --fields=first_name,last_name --format=csv to list all users with their first and last names. Of course you can add any other fields that you need. Note: You can get the documentation for each command using the --help flag, where things like that are mentioned.
Q: Export list of users with first and lastname in WP-CLI I want to export a CSV file with a list of my Wordpress site users with WP-CLI. I can do this but I'm getting my users first and lastname together in one column (display name), I would like to get them each in their own column. Is there a way to do this? I can't find first and lastname as available options in the docs that lists optional fields. A: According to the documentation for wp user list, the fields argument accepts any valid WP_User_Query field. Thus, you can simply use wp user list --fields=first_name,last_name --format=csv to list all users with their first and last names. Of course you can add any other fields that you need. Note: You can get the documentation for each command using the --help flag, where things like that are mentioned.
wordpress
{ "language": "en", "length": 147, "provenance": "stackexchange_00019.jsonl.gz:483206", "question_score": "4", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/291431" }
[ -0.00994873046875, -0.030609130859375, -0.048583984375, -0.01490020751953125, -0.031524658203125, -0.035247802734375, 0.0166778564453125, 0.027435302734375, 0.0018301010131835938, 0.035125732421875, 0.0154266357421875, 0.00807952880859375, 0.00006717443466186523, -0.0185699462890625, -0.0236358642578125, -0.00739288330078125, 0.00981903076171875, 0.023223876953125, -0.00603485107421875, -0.01111602783203125, 0.006961822509765625, -0.0001646280288696289, -0.01177215576171875, 0.0303497314453125, 0.0112152099609375, -0.002193450927734375, 0.007465362548828125, -0.00946044921875, 0.00653076171875, -0.00701141357421875, 0.017120361328125, -0.0015583038330078125, 0.003108978271484375, 0.021331787109375, 0.00667572021484375, 0.03802490234375, -0.0015277862548828125, 0.02191162109375, 0.045196533203125, -0.01287078857421875, -0.0018167495727539062, 0.01142120361328125, -0.05267333984375, 0.034393310546875, -0.050445556640625, -0.064697265625, 0.025482177734375, 0.00814056396484375, 0.048553466796875, 0.0452880859375, -0.0235443115234375, 0.01300048828125, -0.0292816162109375, 0.03143310546875, 0.00820159912109375, 0.01045989990234375, -0.005443572998046875, 0.0063018798828125, 0.034332275390625, -0.01486968994140625, -0.028076171875, -0.0134429931640625, 0.0341796875, -0.00420379638671875, -0.030364990234375, -0.0016908645629882812, -0.041839599609375, -0.00612640380859375, -0.0261688232421875, -0.0200958251953125, 0.03216552734375, -0.0094146728515625, 0.00737762451171875, -0.003093719482421875, -0.01511383056640625, -0.0142974853515625, 0.0248565673828125, -0.005680084228515625, 0.0082244873046875, 0.01300811767578125, -0.047698974609375, -0.0012941360473632812, -0.10003662109375, 0.00998687744140625, 0.014434814453125, 0.0499267578125, -0.022247314453125, -0.0199127197265625, 0.0106658935546875, -0.042327880859375, 0.003574371337890625, -0.043487548828125, -0.0435791015625, 0.0389404296875, 0.006134033203125, -0.040771484375, -0.00431060791015625, 0.0169525146484375, -0.01885986328125, -0.01348876953125, 0.0012311935424804688, -0.01096343994140625, -0.0286102294921875, -0.0032176971435546875, 0.01238250732421875, 0.07244873046875, 0.00839996337890625, 0.028900146484375, 0.03424072265625, 0.0014696121215820312, 0.014373779296875, 0.0186920166015625, 0.00897979736328125, -0.037109375, 0.005611419677734375, 0.054656982421875, 0.003032684326171875, 0.036834716796875, -0.0006165504455566406, 0.03778076171875, -0.0011320114135742188, 0.035675048828125, -0.049530029296875, -0.0171051025390625, 0.0034923553466796875, -0.0069122314453125, 0.019439697265625, 0.00342559814453125, 0.004306793212890625, 0.07354736328125, -0.01178741455078125, -0.0205078125, 0.01385498046875, 0.011138916015625, -0.003849029541015625, -0.036285400390625, -0.0025272369384765625, -0.02740478515625, -0.00872039794921875, 0.055816650390625, -0.032073974609375, -0.0565185546875, 0.01904296875, -0.014251708984375, 0.045440673828125, 0.028564453125, 0.024200439453125, -0.0125274658203125, 0.002353668212890625, 0.00522613525390625, -0.021881103515625, -0.00659942626953125, -0.00579071044921875, 0.032501220703125, 0.001743316650390625, 0.01172637939453125, -0.00638580322265625, -0.00995635986328125, 0.011016845703125, -0.00591278076171875, -0.005031585693359375, -0.00167083740234375, 0.002384185791015625, -0.039215087890625, -0.043792724609375, 0.0036792755126953125, -0.0082550048828125, -0.0087738037109375, 0.0197601318359375, -0.0168304443359375, -0.0003314018249511719, 0.0124053955078125, 0.040679931640625, 0.004421234130859375, -0.0030536651611328125, 0.0092620849609375, -0.0211639404296875, -0.0153961181640625, -0.0031032562255859375, 0.0226593017578125, -0.015289306640625, -0.0310516357421875, -0.01268768310546875, 0.01393890380859375, -0.045745849609375, 0.006206512451171875, 0.0236358642578125, 0.09698486328125, 0.023284912109375, 0.0247955322265625, 0.00630950927734375, -0.0107421875, -0.0126953125, 0.01134490966796875, -0.0258331298828125, -0.0209503173828125, -0.00531768798828125, 0.01358795166015625, -0.0251312255859375, 0.0217437744140625, 0.09149169921875, -0.0262908935546875, 0.037384033203125, -0.0556640625, -0.05035400390625, -0.00299072265625, -0.0064239501953125, 0.01378631591796875, -0.0213470458984375, -0.01474761962890625, 0.026763916015625, -0.01190948486328125, -0.0268096923828125, 0.00179290771484375, -0.0249176025390625, -0.01544189453125, 0.00490570068359375, 0.03546142578125, 0.004138946533203125, 0.01885986328125, -0.0159454345703125, -0.0019216537475585938, -0.0019664764404296875, 0.03192138671875, -0.0206298828125, -0.01181793212890625, -0.013092041015625, -0.011749267578125, 0.01146697998046875, -0.0225982666015625, 0.0809326171875, 0.016448974609375, 0.0262603759765625, 0.048614501953125, -0.03131103515625, 0.004421234130859375, 0.004261016845703125, 0.0257568359375, -0.003009796142578125, 0.01107025146484375, 0.0164642333984375, 0.0194091796875, 0.0166473388671875, 0.0283660888671875, 0.06671142578125, 0.039520263671875, 0.043731689453125, -0.023590087890625, 0.0189971923828125, 0.039031982421875, -0.0269775390625, -0.0004761219024658203, 0.024322509765625, -0.077880859375, 0.014495849609375, 0.05633544921875, -0.0260467529296875, 0.0045318603515625, 0.010528564453125, -0.02386474609375, -0.002712249755859375, -0.06866455078125, -0.006694793701171875, -0.035675048828125, -0.02099609375, -0.012054443359375, -0.01509857177734375, -0.0215911865234375, -0.039398193359375, -0.00460052490234375, 0.039947509765625, 0.031768798828125, -0.0013751983642578125, 0.033233642578125, -0.0007004737854003906, 0.0283966064453125, 0.01277923583984375, -0.0219268798828125, -0.0269317626953125, 0.016387939453125, 0.023956298828125, -0.0269622802734375, 0.04693603515625, 0.02679443359375, 0.046173095703125, -0.0186004638671875, 0.067138671875, 0.07421875, -0.035247802734375, -0.0058441162109375, 0.0237274169921875, 0.031829833984375, -0.00864410400390625, 0.029388427734375, -0.031402587890625, 0.003002166748046875, 0.0193939208984375, -0.003749847412109375, 0.006256103515625, -0.00689697265625, 0.020965576171875, 0.059417724609375, 0.00742340087890625, -0.004024505615234375, -0.0240020751953125, 0.01497650146484375, 0.006885528564453125, -0.012237548828125, -0.0237579345703125, -0.06695556640625, 0.03094482421875, 0.01409149169921875, 0.00763702392578125, 0.09539794921875, -0.04327392578125, -0.052703857421875, -0.011383056640625, 0.02301025390625, -0.0694580078125, -0.08984375, -0.0246734619140625, -0.0283966064453125, -0.0032176971435546875, 0.0110321044921875, -0.00823211669921875, 0.01110076904296875, 0.031829833984375, 0.01024627685546875, 0.06512451171875, -0.0306549072265625, -0.0421142578125, -0.032562255859375, -0.0777587890625, -0.038604736328125, 0.008880615234375, -0.0012197494506835938, 0.0129547119140625, 0.04058837890625, 0.008697509765625, -0.057342529296875, -0.0282440185546875, 0.03326416015625, -0.01367950439453125, -0.031402587890625, -0.007129669189453125, -0.03289794921875, -0.0250091552734375, 0.002368927001953125, 0.0439453125, -0.0290374755859375, 0.01617431640625, -0.01078033447265625, 0.00806427001953125, -0.06231689453125, -0.01922607421875, 0.0205078125, -0.029449462890625, -0.042633056640625, 0.001819610595703125, -0.07574462890625, 0.0243988037109375, 0.03204345703125, 0.02166748046875, -0.0323486328125, -0.04705810546875, -0.032470703125, 0.00783538818359375, 0.01318359375, 0.007793426513671875, 0.0280303955078125, -0.01611328125, 0.0224456787109375, -0.0211181640625, -0.0037975311279296875, 0.006256103515625, 0.0069732666015625, 0.039276123046875, -0.0260009765625, 0.01611328125, 0.01068115234375, -0.02557373046875, -0.0025768280029296875, -0.01447296142578125, 0.0181884765625, -0.1163330078125, 0.0791015625, -0.033935546875, -0.06500244140625, -0.02191162109375, -0.0345458984375, 0.0404052734375, 0.11016845703125, -0.024139404296875, -0.01708984375, 0.0123748779296875, 0.035919189453125, -0.03948974609375, -0.054046630859375, -0.031158447265625, -0.0230865478515625, -0.0229644775390625, -0.005786895751953125, -0.004024505615234375, -0.0225067138671875, 0.00289154052734375, -0.06781005859375, -0.0020771026611328125, -0.03924560546875, 0.01346588134765625, 0.034149169921875, 0.007236480712890625, -0.033416748046875, -0.005588531494140625, -0.03173828125, -0.00588226318359375, 0.0015287399291992188, -0.06353759765625, -0.01201629638671875, 0.006618499755859375, 0.026031494140625, -0.02532958984375, 0.013824462890625, -0.032684326171875, 0.03302001953125, -0.0080108642578125, -0.006839752197265625, 0.01141357421875, 0.00878143310546875, 0.045989990234375, -0.0218048095703125, -0.0236053466796875, -0.01029205322265625, -0.045074462890625, -0.0819091796875, -0.03045654296875, -0.028167724609375, -0.0076904296875, 0.04766845703125, -0.0167694091796875, 0.0235595703125, 0.0096435546875, -0.0294036865234375, -0.017486572265625, 0.040496826171875, 0.0015516281127929688, -0.00457000732421875, -0.0625, -0.0241546630859375, 0.03436279296875, -0.011749267578125, 0.0054473876953125, 0.0173187255859375, 0.07061767578125, 0.005565643310546875, -0.0141143798828125, -0.050140380859375, -0.036773681640625, 0.032989501953125, -0.0362548828125, 0.0687255859375, 0.058349609375, -0.0109405517578125, 0.047607421875, 0.00020039081573486328, 0.02392578125, -0.0149383544921875, 0.0006604194641113281, 0.006275177001953125, -0.0133209228515625, 0.0168304443359375, 0.013702392578125, 0.0006966590881347656, 0.0152587890625, 0.0183563232421875, -0.0265960693359375, 0.019073486328125, 0.03826904296875, 0.0023326873779296875, -0.0256500244140625, -0.034576416015625, -0.0595703125, 0.0076751708984375, -0.10467529296875, 0.035491943359375, 0.0084381103515625, -0.00408935546875, 0.0235137939453125, 0.0037479400634765625, -0.038848876953125, 0.00391387939453125, -0.038055419921875, 0.01488494873046875, -0.004741668701171875, -0.0038909912109375, -0.01392364501953125, 0.00601959228515625, -0.0207061767578125, 0.08111572265625, 0.013031005859375, -0.031463623046875, -0.00399017333984375, -0.0164031982421875, 0.04248046875, 0.0005664825439453125, 0.03985595703125, 0.04290771484375, 0.0249786376953125, -0.0130767822265625, -0.0262298583984375, -0.00360107421875, 0.0092620849609375, -0.052734375, 0.0305633544921875, 0.003215789794921875, -0.002277374267578125, -0.01175689697265625, 0.08160400390625, 0.0023517608642578125, 0.0195465087890625, -0.027252197265625, 0.028778076171875, 0.01058197021484375, 0.0209197998046875, 0.01000213623046875, 0.0218505859375, -0.0193939208984375, -0.004474639892578125, 0.0006051063537597656, -0.00868988037109375, 0.04510498046875, 0.0158538818359375, 0.033599853515625, 0.0452880859375, -0.01300811767578125, -0.0160980224609375, -0.07305908203125, 0.00218963623046875, 0.0126495361328125, 0.0066680908203125, -0.012451171875, -0.0161590576171875, -0.03460693359375, -0.0143280029296875, -0.0223388671875, 0.0013179779052734375, 0.005039215087890625, 0.0011835098266601562, -0.00717926025390625, 0.01397705078125, -0.038360595703125, -0.01216888427734375, -0.00418853759765625, -0.018280029296875, 0.0077667236328125, 0.01380157470703125, -0.0401611328125, -0.030029296875, -0.01904296875, -0.03448486328125, 0.07623291015625, -0.01107025146484375, 0.0030670166015625, -0.0469970703125, 0.026031494140625, -0.09674072265625, -0.0050048828125, 0.07342529296875, 0.06329345703125, -0.0220489501953125, 0.02740478515625, -0.016387939453125, -0.0012874603271484375, 0.07879638671875, 0.01282501220703125, -0.028533935546875, -0.05462646484375, 0.0161285400390625, 0.0112457275390625, 0.01357269287109375, -0.01026153564453125, -0.0157623291015625, 0.015106201171875, 0.01450347900390625, -0.0228271484375, -0.030914306640625, 0.0633544921875, -0.00806427001953125, 0.028106689453125, -0.00621795654296875, 0.028717041015625, -0.00930023193359375, -0.006378173828125, -0.003101348876953125, -0.006565093994140625, -0.0221099853515625, -0.019439697265625, 0.03045654296875, 0.0258026123046875, 0.056610107421875, -0.0111236572265625, 0.01280975341796875, 0.0147552490234375, 0.0149993896484375, -0.0005311965942382812, -0.0276947021484375, 0.0211639404296875, -0.0300750732421875, 0.037200927734375, 0.0113677978515625, 0.01187896728515625, -0.0418701171875, -0.0809326171875, 0.048492431640625, 0.0221099853515625, 0.02410888671875, -0.00266265869140625, -0.052886962890625, 0.043670654296875, -0.001316070556640625, -0.0283660888671875, 0.005832672119140625, 0.0241241455078125, 0.01983642578125, 0.01198577880859375, 0.0016307830810546875, 0.00548553466796875, 0.020904541015625, 0.046844482421875, -0.009613037109375, -0.01551055908203125, 0.010498046875, -0.031982421875, 0.032623291015625, 0.033721923828125, 0.07330322265625, -0.04315185546875, 0.01477813720703125, 0.01287841796875, -0.049652099609375, 0.0218505859375, 0.0186767578125, -0.0213470458984375, -0.062225341796875, 0.05126953125, -0.02117919921875, 0.0018215179443359375, 0.012603759765625, -0.01364898681640625, -0.00627899169921875, -0.005939483642578125, -0.005702972412109375, -0.001705169677734375, 0.0011301040649414062, -0.037078857421875, 0.00565338134765625, -0.031646728515625, -0.01215362548828125, 0.03326416015625, -0.057037353515625, -0.01194000244140625, -0.04559326171875, -0.05084228515625, -0.00852203369140625, -0.0164337158203125, 0.030303955078125, 0.01297760009765625, 0.04736328125, 0.0157318115234375, 0.019073486328125, -0.0130157470703125, -0.01015472412109375, 0.0211181640625, 0.015625, -0.031005859375, 0.0025177001953125, 0.032562255859375, -0.055908203125, 0.0230255126953125, -0.022125244140625, 0.010040283203125, -0.041290283203125, -0.0276031494140625, 0.1085205078125, -0.0097808837890625, -0.0360107421875, 0.005123138427734375, 0.0465087890625, -0.00835418701171875, 0.018463134765625, 0.03253173828125, -0.0509033203125, -0.04400634765625, 0.024200439453125, -0.051300048828125, -0.0201263427734375, 0.01305389404296875, -0.07110595703125, 0.048675537109375, -0.023193359375, 0.050689697265625, 0.005115509033203125, 0.0016145706176757812, 0.02301025390625, -0.0016460418701171875, -0.03936767578125, 0.0792236328125, 0.062225341796875, 0.043487548828125, -0.06219482421875, -0.05267333984375, 0.01287841796875, 0.08441162109375, -0.0007653236389160156, 0.00847625732421875, -0.0245819091796875, 0.005886077880859375, 0.0200042724609375, -0.012054443359375, -0.01123809814453125, 0.057708740234375, 0.00629425048828125, 0.0223236083984375, 0.03082275390625, -0.00959014892578125, 0.049896240234375, -0.043304443359375, -0.0186309814453125, 0.01541900634765625, 0.0167388916015625, 0.0260162353515625, -0.027008056640625, 0.01313018798828125, -0.00689697265625, -0.03057861328125, -0.0018405914306640625, 0.0215606689453125, -0.007457733154296875, 0.04669189453125, 0.02313232421875, -0.01526641845703125, -0.003086090087890625, -0.0264892578125, 0.033416748046875, -0.00992584228515625, -0.01666259765625, 0.0260009765625, 0.01361083984375, 0.0384521484375, -0.022491455078125, -0.00200653076171875, -0.0015087127685546875, 0.01178741455078125, 0.046142578125, 0.004772186279296875, 0.032196044921875, -0.01222991943359375, 0.04833984375, 0.007205963134765625, 0.02935791015625, -0.03857421875, -0.07171630859375, 0.01751708984375, 0.00914764404296875, 0.0011348724365234375, 0.04168701171875, 0.0023956298828125, 0.00444793701171875, 0.08740234375, -0.07196044921875, 0.04083251953125, 0.0298614501953125, -0.0071868896484375, -0.02008056640625, 0.010009765625, -0.0282745361328125, 0.041900634765625, -0.01165008544921875, -0.002445220947265625, 0.0096588134765625, -0.0009641647338867188, -0.011688232421875, 0.0003800392150878906, 0.02288818359375, 0.01617431640625, -0.027740478515625, 0.003551483154296875, 0.0168914794921875, 0.01110076904296875, -0.0038909912109375, 0.032928466796875, 0.00397491455078125, 0.01113128662109375, -0.0096893310546875, 0.0275421142578125, 0.0386962890625, 0.03857421875, -0.043365478515625, -0.0145721435546875, 0.07342529296875, -0.0241546630859375, 0.01079559326171875, -0.009918212890625, -0.003269195556640625, -0.0120391845703125, -0.0176239013671875, -0.0218658447265625, 0.038330078125, 0.01070404052734375, -0.061004638671875, 0.07568359375, -0.0285491943359375, -0.00582122802734375, 0.043914794921875, -0.0292205810546875, 0.061492919921875, -0.01617431640625, -0.055633544921875, -0.0105133056640625, -0.0290985107421875, 0.01322174072265625, 0.0099945068359375, 0.0170135498046875, -0.0027332305908203125, 0.033050537109375, 0.03863525390625, -0.04150390625, -0.00200653076171875, 0.0439453125, 0.033782958984375, 0.001979827880859375, -0.0020084381103515625, -0.004100799560546875, -0.061553955078125, -0.027435302734375, -0.03741455078125, 0.02239990234375, 0.0169219970703125, 0.03387451171875, 0.01529693603515625, 0.03173828125, -0.001529693603515625, 0.01641845703125, -0.035430908203125, -0.048797607421875, 0.06951904296875, -0.0262451171875, -0.00499725341796875, 0.000713348388671875, -0.050872802734375, -0.0005192756652832031, 0.025787353515625, -0.02783203125, 0.02001953125, -0.02099609375, 0.0104217529296875, -0.01947021484375, 0.0033092498779296875, -0.0169525146484375, -0.0302886962890625, -0.0007162094116210938, 0.00589752197265625, 0.027374267578125, 0.032318115234375, -0.0198974609375, -0.00789642333984375, 0.0230560302734375, -0.06219482421875, 0.0171051025390625, -0.03729248046875, 0.028594970703125, 0.0241546630859375, 0.041046142578125, -0.00556182861328125, -0.019500732421875, -0.02984619140625, 0.008575439453125, 0.0038433074951171875, 0.0122222900390625, 0.007160186767578125, 0.053863525390625, 0.0127105712890625, 0.01074981689453125, 0.033905029296875, 0.0023708343505859375, 0.00041747093200683594, 0.00009918212890625, -0.002750396728515625, -0.02813720703125, -0.06304931640625, -0.037872314453125, -0.032501220703125, -0.00007164478302001953, 0.040985107421875, -0.0191497802734375, -0.0236053466796875, -0.0877685546875, -0.051788330078125, -0.0119476318359375, -0.0247039794921875, 0.036376953125, -0.0212249755859375, -0.00460052490234375, -0.07598876953125, -0.033477783203125, -0.0013723373413085938, -0.020050048828125, -0.0162353515625, 0.0054473876953125, -0.03497314453125, -0.00817108154296875, 0.0794677734375, 0.0125579833984375, 0.0107269287109375, 0.021331787109375, 0.029541015625, 0.0190277099609375, 0.016693115234375, -0.036529541015625, 0.0550537109375, -0.0628662109375, -0.0161895751953125, 0.0163421630859375, 0.0012331008911132812, -0.0096435546875, -0.06341552734375, -0.005771636962890625, -0.026031494140625, 0.0090484619140625, 0.00392913818359375, 0.0183563232421875, 0.040924072265625, -0.0291900634765625, -0.07354736328125, 0.08258056640625, -0.023162841796875, -0.0267791748046875, 0.01007080078125, 0.001194000244140625, 0.002384185791015625, -0.0185546875, 0.0072021484375, -0.0262298583984375, -0.0102386474609375, 0.0207672119140625, -0.0130462646484375, 0.0194244384765625, -0.01617431640625, -0.0004749298095703125, -0.0227813720703125, 0.0235595703125, 0.01560211181640625, -0.032379150390625, 0.015655517578125, 0.0074005126953125, 0.022186279296875, 0.0537109375, -0.0124359130859375, 0.0287017822265625, -0.01373291015625, -0.038055419921875, 0.00037097930908203125, -0.005451202392578125, -0.038421630859375, -0.01065826416015625, 0.032379150390625, 0.069091796875, 0.022552490234375, -0.018157958984375, -0.0572509765625, -0.058563232421875, -0.002044677734375, -0.033599853515625, 0.00106048583984375, -0.0648193359375, 0.0026187896728515625, -0.0008258819580078125, -0.00545501708984375, 0.026031494140625, 0.003749847412109375, -0.023529052734375, 0.0057525634765625, 0.038116455078125, -0.0009765625, -0.053375244140625, -0.01113128662109375, 0.020416259765625, -0.039276123046875, -0.0648193359375, -0.00403594970703125, 0.021728515625, -0.052703857421875, -0.0421142578125, -0.025360107421875, -0.0360107421875, 0.0240631103515625, 0.027374267578125, -0.000431060791015625, 0.051025390625, -0.0154266357421875, -0.0015277862548828125, 0.0022068023681640625, 0.008697509765625, -0.01326751708984375, 0.006317138671875, 0.0303192138671875, 0.007709503173828125, 0.0014696121215820312, 0.00576019287109375, -0.041107177734375, 0.01129913330078125, -0.054534912109375, 0.029266357421875, -0.005367279052734375, 0.01629638671875, 0.0288543701171875, 0.01275634765625, -0.0006513595581054688, 0.00247955322265625, -0.029754638671875, -0.029052734375, 0.0026912689208984375, 0.05633544921875, -0.01526641845703125, 0.01214599609375 ]
9dfe2d4bddf64330ab09445ea98a968085b7d4fd
Wordpress Stackexchange Q: Dashboard links not working Since yesterday, all links on the Dashboard not working. If i click one link (left menu bar), always redirect the dashboard /wp-admin/ (homepage of dashboard). I have to open a page ten times to finally get to the page I would like to open. And it is, all links present. I have a manully installed the wordpress 4.7.2. - but nothing changed. Probably is this a plugin that can do (cache plugin)? A: Those links are supposed to show submenus. If they are not showing up, that usually means your theme has a conflict with our plugin (90% of the time, this is boostrap). Please check our documentation about conflicts with Bootstrap as well as our FAQ entry about that.
Q: Dashboard links not working Since yesterday, all links on the Dashboard not working. If i click one link (left menu bar), always redirect the dashboard /wp-admin/ (homepage of dashboard). I have to open a page ten times to finally get to the page I would like to open. And it is, all links present. I have a manully installed the wordpress 4.7.2. - but nothing changed. Probably is this a plugin that can do (cache plugin)? A: Those links are supposed to show submenus. If they are not showing up, that usually means your theme has a conflict with our plugin (90% of the time, this is boostrap). Please check our documentation about conflicts with Bootstrap as well as our FAQ entry about that.
wordpress
{ "language": "en", "length": 125, "provenance": "stackexchange_00019.jsonl.gz:483222", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/291513" }
[ 0.046142578125, -0.0006012916564941406, 0.01406097412109375, 0.0225067138671875, 0.01316070556640625, -0.044921875, 0.08367919921875, -0.047576904296875, 0.024017333984375, 0.025787353515625, 0.021026611328125, -0.0248260498046875, -0.006763458251953125, -0.04046630859375, -0.0291748046875, -0.020416259765625, 0.0220184326171875, -0.01319122314453125, 0.0017042160034179688, -0.0189361572265625, 0.02490234375, 0.0025501251220703125, -0.0260467529296875, 0.034393310546875, 0.0243377685546875, -0.020111083984375, -0.0038280487060546875, -0.00415802001953125, -0.018463134765625, -0.0263824462890625, 0.0129241943359375, 0.034576416015625, 0.00785064697265625, 0.021728515625, 0.0020771026611328125, -0.0302581787109375, -0.01224517822265625, 0.03271484375, 0.005290985107421875, 0.0219573974609375, 0.019866943359375, -0.0145111083984375, 0.020782470703125, 0.04742431640625, -0.005199432373046875, -0.0223236083984375, 0.0143585205078125, -0.0582275390625, 0.003936767578125, 0.0159454345703125, 0.01019287109375, -0.01181793212890625, 0.01837158203125, -0.0010509490966796875, -0.00916290283203125, -0.01174163818359375, 0.0020771026611328125, 0.01174163818359375, 0.0193634033203125, -0.011962890625, -0.013214111328125, 0.0011959075927734375, 0.00678253173828125, -0.0090179443359375, -0.020721435546875, -0.01025390625, 0.0122222900390625, 0.0018148422241210938, -0.02301025390625, -0.01355743408203125, 0.01708984375, 0.004772186279296875, 0.006885528564453125, -0.020263671875, 0.0312042236328125, -0.039520263671875, 0.0227508544921875, -0.0017747879028320312, -0.01898193359375, 0.03753662109375, 0.044769287109375, 0.0065155029296875, -0.0207366943359375, 0.00662994384765625, 0.009521484375, 0.0095367431640625, -0.00482177734375, -0.02679443359375, -0.05657958984375, 0.0058746337890625, -0.032257080078125, -0.0660400390625, -0.01439666748046875, 0.010040283203125, -0.003940582275390625, -0.01181793212890625, 0.038787841796875, 0.06317138671875, -0.02581787109375, -0.0208282470703125, -0.03875732421875, -0.0014009475708007812, -0.0250091552734375, -0.0197906494140625, -0.003055572509765625, -0.00726318359375, 0.01148223876953125, 0.0222015380859375, 0.039276123046875, 0.024932861328125, -0.01812744140625, 0.04376220703125, -0.0174407958984375, -0.031829833984375, 0.0018644332885742188, 0.01226043701171875, -0.049072265625, 0.003978729248046875, 0.0021724700927734375, -0.0111236572265625, -0.0265960693359375, 0.006244659423828125, -0.053955078125, 0.0116729736328125, -0.018310546875, -0.0221405029296875, 0.012725830078125, 0.0225372314453125, 0.007633209228515625, 0.00962066650390625, -0.01520538330078125, 0.01322174072265625, 0.01374053955078125, 0.01910400390625, -0.00344085693359375, -0.01145172119140625, 0.0079498291015625, -0.06512451171875, -0.0203704833984375, 0.03509521484375, -0.0026397705078125, -0.04052734375, -0.0167083740234375, -0.0197296142578125, 0.0003705024719238281, 0.005115509033203125, 0.021759033203125, 0.01470184326171875, -0.015350341796875, -0.042694091796875, 0.0196075439453125, -0.003345489501953125, 0.056243896484375, 0.01045989990234375, -0.0167999267578125, -0.0282135009765625, 0.047027587890625, -0.04754638671875, -0.00988006591796875, -0.061279296875, -0.0161590576171875, 0.0019102096557617188, 0.040802001953125, -0.03424072265625, -0.03472900390625, -0.01824951171875, -0.045806884765625, -0.00469207763671875, 0.0250396728515625, 0.0087738037109375, 0.0158843994140625, -0.03961181640625, 0.02532958984375, 0.007335662841796875, -0.009857177734375, 0.0282135009765625, 0.025115966796875, -0.019012451171875, 0.0232391357421875, 0.033172607421875, -0.031280517578125, -0.0227203369140625, 0.049041748046875, -0.038543701171875, -0.0635986328125, 0.0440673828125, 0.00478363037109375, 0.0675048828125, 0.0281829833984375, -0.001720428466796875, 0.0243988037109375, 0.0160064697265625, -0.03662109375, 0.0288848876953125, -0.002788543701171875, 0.0224456787109375, -0.035400390625, 0.036224365234375, -0.028900146484375, -0.03765869140625, 0.0128936767578125, 0.0252685546875, -0.017242431640625, 0.00879669189453125, -0.08807373046875, 0.0345458984375, -0.031646728515625, 0.0404052734375, 0.030181884765625, 0.0311279296875, 0.009613037109375, 0.0101470947265625, -0.0186614990234375, -0.031829833984375, -0.0312347412109375, -0.002635955810546875, -0.018035888671875, -0.0086669921875, -0.03240966796875, -0.0133209228515625, -0.01323699951171875, -0.0256805419921875, -0.0294342041015625, 0.04547119140625, 0.01081085205078125, 0.01568603515625, -0.0238494873046875, 0.005950927734375, -0.00536346435546875, 0.029449462890625, -0.03582763671875, 0.01384735107421875, 0.041748046875, 0.03802490234375, -0.04644775390625, 0.002300262451171875, -0.0294952392578125, -0.00447845458984375, -0.020111083984375, 0.0421142578125, 0.033477783203125, -0.0263671875, -0.03204345703125, -0.0228729248046875, -0.03509521484375, -0.08917236328125, -0.004047393798828125, 0.0005645751953125, -0.032196044921875, 0.024627685546875, 0.01654052734375, 0.029266357421875, 0.0154266357421875, 0.0295867919921875, -0.0195770263671875, 0.045501708984375, -0.00800323486328125, 0.045440673828125, -0.039703369140625, 0.005977630615234375, -0.00293731689453125, -0.006938934326171875, -0.003021240234375, -0.02313232421875, -0.00618743896484375, -0.0188140869140625, 0.00653076171875, -0.00791168212890625, -0.0272216796875, -0.02044677734375, 0.034271240234375, 0.0312347412109375, -0.0142059326171875, 0.044189453125, 0.0577392578125, -0.033355712890625, -0.0426025390625, -0.006847381591796875, -0.003231048583984375, 0.024322509765625, -0.0017118453979492188, -0.0037364959716796875, 0.0572509765625, -0.0125579833984375, 0.03656005859375, -0.0498046875, 0.0261993408203125, -0.0419921875, 0.0418701171875, 0.023284912109375, 0.0528564453125, -0.00354766845703125, -0.01271820068359375, 0.0309600830078125, 0.00814056396484375, -0.029052734375, -0.007167816162109375, -0.0196685791015625, 0.01898193359375, -0.0059661865234375, 0.09039306640625, 0.07562255859375, -0.006977081298828125, 0.0265655517578125, -0.007781982421875, 0.02227783203125, 0.0169219970703125, -0.0250396728515625, -0.0201263427734375, -0.01050567626953125, 0.00525665283203125, 0.05767822265625, 0.036956787109375, 0.027069091796875, -0.0006785392761230469, -0.048004150390625, -0.041473388671875, 0.0162353515625, -0.1256103515625, -0.09967041015625, -0.0517578125, -0.016265869140625, -0.0007700920104980469, 0.0180206298828125, 0.0101318359375, 0.0102081298828125, 0.0299530029296875, 0.017486572265625, 0.024200439453125, -0.019927978515625, -0.050872802734375, -0.021759033203125, -0.049072265625, 0.00540924072265625, -0.01157379150390625, -0.016632080078125, 0.0008568763732910156, 0.0019502639770507812, -0.0009670257568359375, -0.042755126953125, 0.00601959228515625, 0.023193359375, -0.0109405517578125, -0.0032863616943359375, 0.000408172607421875, -0.00605010986328125, -0.0003955364227294922, 0.0106658935546875, 0.052490234375, 0.01378631591796875, -0.03369140625, -0.016021728515625, -0.0169677734375, -0.0198974609375, 0.01226806640625, 0.00989532470703125, 0.0026378631591796875, 0.0037937164306640625, 0.05084228515625, -0.014495849609375, -0.0248870849609375, -0.0195770263671875, -0.0506591796875, -0.0196685791015625, 0.040191650390625, 0.0028133392333984375, -0.018218994140625, -0.0142364501953125, 0.0231170654296875, 0.0302581787109375, -0.017669677734375, 0.0176849365234375, -0.0107574462890625, 0.01499176025390625, 0.014801025390625, -0.009613037109375, -0.006786346435546875, -0.03790283203125, -0.00009399652481079102, -0.0127716064453125, -0.023773193359375, -0.0308074951171875, 0.03076171875, -0.02069091796875, -0.01340484619140625, 0.0151214599609375, -0.0294952392578125, 0.014068603515625, -0.003444671630859375, -0.0161590576171875, 0.0030574798583984375, 0.05242919921875, -0.054107666015625, 0.00916290283203125, 0.0294189453125, 0.028076171875, -0.05609130859375, -0.03759765625, -0.0889892578125, -0.003704071044921875, -0.107177734375, -0.0224609375, -0.0020847320556640625, -0.06475830078125, 0.0200347900390625, -0.00872039794921875, -0.040802001953125, -0.042633056640625, 0.040069580078125, -0.0010194778442382812, -0.0300445556640625, -0.0013799667358398438, -0.0265960693359375, -0.024261474609375, -0.027984619140625, 0.01152801513671875, -0.060302734375, -0.0227508544921875, 0.028594970703125, 0.05914306640625, 0.0208892822265625, -0.0389404296875, 0.026214599609375, 0.06329345703125, 0.02947998046875, 0.016021728515625, 0.0173492431640625, -0.00667572021484375, 0.004444122314453125, -0.00461578369140625, 0.01145172119140625, -0.02423095703125, -0.019012451171875, -0.033111572265625, -0.058258056640625, 0.01357269287109375, -0.01139068603515625, 0.035369873046875, -0.001964569091796875, 0.0005030632019042969, -0.055572509765625, -0.0611572265625, -0.026153564453125, 0.01132965087890625, 0.0014123916625976562, -0.01262664794921875, -0.06256103515625, -0.06414794921875, 0.022247314453125, -0.007404327392578125, -0.0167388916015625, -0.0007839202880859375, 0.050689697265625, 0.0113067626953125, -0.021270751953125, 0.025299072265625, -0.00140380859375, 0.026397705078125, 0.0277862548828125, 0.0294952392578125, 0.00798797607421875, -0.01322174072265625, 0.04302978515625, 0.01041412353515625, 0.0237884521484375, -0.009765625, 0.04095458984375, -0.01239776611328125, -0.0226898193359375, 0.041839599609375, 0.0118865966796875, -0.03302001953125, 0.06243896484375, 0.0290069580078125, -0.038238525390625, -0.0601806640625, 0.048309326171875, 0.04254150390625, -0.050262451171875, -0.07275390625, -0.0285797119140625, 0.00011175870895385742, -0.0205230712890625, 0.06097412109375, 0.0244598388671875, -0.005615234375, 0.0501708984375, 0.044464111328125, -0.006893157958984375, 0.037017822265625, 0.01236724853515625, -0.0247802734375, 0.01419830322265625, 0.0277862548828125, -0.03656005859375, 0.03216552734375, -0.01453399658203125, 0.050689697265625, 0.031829833984375, -0.044342041015625, 0.0184326171875, -0.004467010498046875, -0.01551055908203125, -0.016876220703125, 0.0223846435546875, 0.040069580078125, 0.017669677734375, -0.0284881591796875, -0.033416748046875, 0.031097412109375, -0.0276641845703125, -0.045379638671875, 0.03985595703125, -0.001861572265625, -0.007320404052734375, -0.01023101806640625, 0.0538330078125, 0.01561737060546875, 0.0079193115234375, -0.00433349609375, 0.014068603515625, 0.008941650390625, 0.035675048828125, -0.0013713836669921875, 0.0005698204040527344, 0.0035381317138671875, 0.02239990234375, 0.031951904296875, -0.045257568359375, -0.01364898681640625, 0.03509521484375, 0.05810546875, 0.052215576171875, -0.0116119384765625, -0.0287017822265625, -0.018463134765625, -0.00836944580078125, 0.12384033203125, -0.002758026123046875, -0.1287841796875, -0.041778564453125, 0.017242431640625, 0.042938232421875, -0.071533203125, 0.00727081298828125, 0.01544952392578125, -0.0027408599853515625, 0.03546142578125, 0.0109100341796875, 0.01690673828125, -0.0013027191162109375, -0.0176544189453125, 0.032257080078125, -0.006290435791015625, -0.01470184326171875, -0.019012451171875, -0.0011730194091796875, -0.04638671875, -0.01763916015625, 0.09356689453125, -0.00878143310546875, 0.0301361083984375, -0.0279083251953125, -0.0200347900390625, 0.0011081695556640625, 0.00585174560546875, 0.037506103515625, 0.02142333984375, -0.05230712890625, 0.0011091232299804688, -0.030731201171875, -0.0130157470703125, 0.0028247833251953125, -0.052886962890625, -0.0489501953125, -0.0240020751953125, 0.04339599609375, 0.0311431884765625, 0.0243072509765625, -0.0210113525390625, -0.0399169921875, -0.00458526611328125, 0.036163330078125, 0.0234832763671875, 0.011199951171875, 0.06500244140625, -0.01092529296875, 0.05841064453125, 0.0216217041015625, 0.02374267578125, -0.061431884765625, -0.0170745849609375, -0.004608154296875, 0.00540924072265625, -0.0087432861328125, -0.00537872314453125, 0.012603759765625, 0.0027217864990234375, 0.05029296875, -0.00826263427734375, -0.0028095245361328125, 0.00550079345703125, 0.006572723388671875, -0.00853729248046875, 0.0214385986328125, 0.0287017822265625, -0.006168365478515625, 0.055572509765625, -0.0046539306640625, 0.025115966796875, 0.019073486328125, -0.0297393798828125, -0.0008831024169921875, 0.037750244140625, 0.0021343231201171875, -0.0100555419921875, -0.054351806640625, 0.06561279296875, 0.08685302734375, 0.004703521728515625, 0.05364990234375, 0.0107269287109375, 0.0086212158203125, 0.03765869140625, 0.0394287109375, 0.07281494140625, 0.004604339599609375, 0.032073974609375, -0.019683837890625, -0.0247650146484375, -0.033172607421875, -0.040771484375, -0.047882080078125, 0.060394287109375, -0.007205963134765625, -0.0811767578125, -0.0235748291015625, -0.032379150390625, 0.0298004150390625, 0.016387939453125, -0.00457000732421875, 0.00005310773849487305, -0.002567291259765625, 0.02203369140625, -0.005832672119140625, -0.0357666015625, 0.0013666152954101562, 0.01473236083984375, 0.0213165283203125, 0.00894927978515625, 0.04534912109375, -0.020416259765625, -0.06890869140625, -0.061737060546875, 0.06011962890625, -0.05792236328125, 0.00696563720703125, -0.023529052734375, 0.0357666015625, -0.03900146484375, -0.042449951171875, 0.010467529296875, -0.061798095703125, -0.007556915283203125, 0.01238250732421875, 0.044036865234375, 0.049407958984375, 0.037567138671875, 0.0162506103515625, -0.007472991943359375, 0.00472259521484375, 0.036651611328125, 0.052642822265625, -0.031280517578125, 0.0035858154296875, -0.0286712646484375, -0.00902557373046875, -0.0031375885009765625, 0.01029205322265625, -0.05169677734375, -0.0245208740234375, -0.0228271484375, 0.0977783203125, -0.027252197265625, -0.027984619140625, -0.0120391845703125, -0.0098114013671875, 0.0141754150390625, -0.01139068603515625, 0.013763427734375, -0.06524658203125, -0.02008056640625, 0.00379180908203125, -0.033447265625, 0.0027923583984375, -0.007541656494140625, -0.035675048828125, 0.04193115234375, -0.0369873046875, 0.009368896484375, -0.0008640289306640625, 0.0297393798828125, 0.01371002197265625, 0.0286712646484375, -0.002597808837890625, 0.0565185546875, 0.017578125, 0.005397796630859375, -0.009002685546875, -0.0002541542053222656, 0.010894775390625, 0.023223876953125, -0.0225830078125, -0.002727508544921875, -0.0240478515625, -0.01044464111328125, -0.01102447509765625, 0.005687713623046875, 0.00563812255859375, 0.037841796875, -0.0379638671875, -0.02447509765625, 0.0119476318359375, -0.041229248046875, 0.0014781951904296875, 0.01416778564453125, -0.03143310546875, -0.0038814544677734375, 0.004367828369140625, -0.0001671314239501953, 0.0015125274658203125, 0.003658294677734375, 0.0032329559326171875, 0.0139923095703125, -0.0185546875, 0.0163116455078125, 0.0269775390625, -0.0125274658203125, 0.01373291015625, -0.0606689453125, 0.0220794677734375, -0.02734375, 0.0179901123046875, 0.00470733642578125, -0.0274658203125, -0.06488037109375, 0.0005717277526855469, -0.00958251953125, -0.066162109375, -0.05322265625, 0.03997802734375, -0.034423828125, 0.03167724609375, 0.022674560546875, 0.03753662109375, -0.048797607421875, -0.06610107421875, 0.06689453125, 0.0880126953125, -0.01409149169921875, -0.03216552734375, 0.0181427001953125, -0.0031185150146484375, 0.00173187255859375, 0.01329803466796875, 0.0257110595703125, -0.007793426513671875, 0.0117950439453125, 0.01910400390625, -0.0153350830078125, -0.004791259765625, 0.002277374267578125, 0.0003268718719482422, 0.0289459228515625, 0.027862548828125, 0.010986328125, -0.00933837890625, -0.015899658203125, 0.01593017578125, 0.040435791015625, 0.00858306884765625, 0.0213623046875, -0.051605224609375, -0.00943756103515625, 0.00466156005859375, 0.0199432373046875, -0.03472900390625, 0.01439666748046875, -0.0716552734375, -0.0880126953125, 0.021728515625, 0.061859130859375, 0.019012451171875, -0.024810791015625, 0.01479339599609375, 0.020965576171875, 0.0208892822265625, -0.00445556640625, 0.0222625732421875, 0.0010318756103515625, -0.031280517578125, -0.0219879150390625, 0.0006427764892578125, 0.009521484375, 0.005031585693359375, 0.031463623046875, 0.03009033203125, 0.01041412353515625, 0.00405120849609375, -0.005645751953125, -0.00021123886108398438, -0.02880859375, 0.023773193359375, 0.0117950439453125, 0.007282257080078125, 0.0201568603515625, -0.0509033203125, -0.0238189697265625, 0.01531219482421875, -0.0010013580322265625, 0.00957489013671875, 0.03369140625, -0.01409912109375, 0.025360107421875, -0.0340576171875, 0.036529541015625, -0.015411376953125, -0.03045654296875, 0.0160675048828125, 0.03460693359375, -0.0034923553466796875, 0.04150390625, -0.024322509765625, 0.02020263671875, 0.01461029052734375, -0.00485992431640625, -0.019927978515625, 0.0950927734375, -0.026336669921875, -0.01335906982421875, 0.00600433349609375, 0.0023784637451171875, -0.02044677734375, 0.0195159912109375, -0.0220489501953125, -0.0030689239501953125, 0.00882720947265625, -0.018463134765625, -0.0887451171875, 0.03424072265625, -0.0081939697265625, -0.0007982254028320312, 0.03704833984375, -0.0287322998046875, 0.00942230224609375, 0.0257720947265625, 0.00908660888671875, -0.051605224609375, -0.048797607421875, -0.05181884765625, -0.0323486328125, 0.00518035888671875, 0.01222991943359375, 0.039398193359375, 0.0675048828125, -0.005725860595703125, 0.0040435791015625, -0.004863739013671875, -0.045806884765625, -0.0203399658203125, 0.0038623809814453125, 0.035430908203125, -0.003932952880859375, -0.0012874603271484375, -0.0121307373046875, 0.027496337890625, -0.0027370452880859375, 0.00482177734375, 0.02545166015625, 0.019744873046875, 0.0098724365234375, 0.03277587890625, 0.011322021484375, -0.058746337890625, 0.004459381103515625, 0.0772705078125, -0.006809234619140625, 0.00397491455078125, 0.0185394287109375, -0.005229949951171875, -0.0146484375, -0.0200042724609375, -0.004016876220703125, -0.00724029541015625, -0.0537109375, -0.04595947265625, 0.0280609130859375, 0.053436279296875, 0.0029296875, -0.057342529296875, 0.0283203125, -0.04962158203125, 0.0792236328125, -0.002033233642578125, 0.01255035400390625, 0.01012420654296875, 0.037567138671875, -0.015869140625, 0.04571533203125, -0.016693115234375, -0.03216552734375, 0.003849029541015625, -0.006359100341796875, -0.01226043701171875, -0.01529693603515625, 0.0284881591796875, -0.017791748046875, 0.0168609619140625, 0.0312042236328125, 0.042938232421875, -0.04132080078125, -0.0138092041015625, -0.0221099853515625, 0.019287109375, 0.0091552734375, 0.005161285400390625, -0.04461669921875, -0.035552978515625, 0.01021575927734375, -0.01702880859375, -0.016082763671875, -0.050384521484375, -0.07568359375, 0.07708740234375, -0.0026874542236328125, -0.0172576904296875, -0.0361328125, 0.00019443035125732422, -0.006641387939453125, -0.01039886474609375, -0.0220489501953125, -0.0184173583984375, -0.01313018798828125, 0.034576416015625, 0.0225677490234375, -0.0013418197631835938, 0.0284576416015625, -0.00025177001953125, 0.0160064697265625, 0.0413818359375, 0.061126708984375, 0.018768310546875, -0.03668212890625, -0.02117919921875, 0.02154541015625, 0.019378662109375, -0.0287628173828125, -0.033721923828125, 0.0435791015625, 0.0251007080078125, 0.0249786376953125, -0.0178985595703125, 0.017364501953125, -0.00826263427734375, -0.048553466796875, -0.00983428955078125, -0.018829345703125, 0.005840301513671875, -0.002376556396484375, -0.051666259765625, -0.03778076171875, -0.004146575927734375, 0.0111236572265625, -0.036712646484375, 0.031402587890625, 0.0056610107421875, 0.008636474609375, -0.014404296875, 0.0167236328125, -0.00772857666015625, -0.0146942138671875, 0.0303497314453125, -0.00429534912109375, -0.0267181396484375, -0.004703521728515625, 0.073486328125, -0.046051025390625, 0.009735107421875, -0.00485992431640625, 0.023345947265625, 0.042755126953125, -0.03424072265625, 0.0201568603515625, -0.00041222572326660156, -0.01004791259765625, 0.0199432373046875, 0.00867462158203125, 0.0265655517578125, -0.030731201171875, -0.04339599609375, 0.01544952392578125, 0.0243072509765625, -0.0276947021484375, 0.0108642578125, 0.0031528472900390625, 0.00440216064453125, -0.034759521484375, 0.08111572265625, 0.0163421630859375, -0.006256103515625, -0.0169219970703125, 0.06439208984375, -0.01525115966796875, -0.0272674560546875, -0.0159912109375, -0.0406494140625, 0.006389617919921875, 0.0289306640625, 0.02276611328125, -0.0266876220703125, 0.0193939208984375, -0.0557861328125, 0.0274810791015625, 0.005741119384765625 ]
66bc3329f6c0da41dc3c977f54a5fabb5f474cdc
Wordpress Stackexchange Q: How to stop jQuery.migrate manually WordPress loads jQuery.migrate automatically: How can I disable it without plugins? I didn't find code in functions.php with enqueue. It loads from /wp-includes. How can I disable it? A: jQuery Migrate is nothing but a dependency of the jQuery script in WordPress, so one can simply remove that dependency. The code for that is pretty straightforward: function dequeue_jquery_migrate( $scripts ) { if ( ! is_admin() && ! empty( $scripts->registered['jquery'] ) ) { $scripts->registered['jquery']->deps = array_diff( $scripts->registered['jquery']->deps, [ 'jquery-migrate' ] ); } } add_action( 'wp_default_scripts', 'dequeue_jquery_migrate' ); This will prevent the jQuery Migrate script from being loaded on the front end while keeping the jQuery script itself intact. It's still being loaded in the admin to not break anything there. In case you don't want to put this in your own plugin or theme, you can use a plugin like jQuery Light that does this for you.
Q: How to stop jQuery.migrate manually WordPress loads jQuery.migrate automatically: How can I disable it without plugins? I didn't find code in functions.php with enqueue. It loads from /wp-includes. How can I disable it? A: jQuery Migrate is nothing but a dependency of the jQuery script in WordPress, so one can simply remove that dependency. The code for that is pretty straightforward: function dequeue_jquery_migrate( $scripts ) { if ( ! is_admin() && ! empty( $scripts->registered['jquery'] ) ) { $scripts->registered['jquery']->deps = array_diff( $scripts->registered['jquery']->deps, [ 'jquery-migrate' ] ); } } add_action( 'wp_default_scripts', 'dequeue_jquery_migrate' ); This will prevent the jQuery Migrate script from being loaded on the front end while keeping the jQuery script itself intact. It's still being loaded in the admin to not break anything there. In case you don't want to put this in your own plugin or theme, you can use a plugin like jQuery Light that does this for you. A: Wordpress supports "deregistering" a plugin, using a similar process as mentioned by @swissspidy, but with less code. In whatever function you're enqueuing your plugins, add this line: wp_deregister_script('jquery-migrate'); This assumes that jQuery Migrate is enqueued with the handle jquery-migrate, which is its Wordpress default. So here's an example of my Enqueue function with WP action: function my_theme_enqueue_styles_and_scripts() { wp_enqueue_style('my-theme-styles', 'dist/styles.css'); wp_deregister_script('jquery-migrate'); wp_enqueue_script('my-theme-scripts', 'dist/scripts.js'); } add_action('wp_enqueue_scripts', 'my_theme_enqueue_styles_and_scripts', 99);
wordpress
{ "language": "en", "length": 220, "provenance": "stackexchange_00019.jsonl.gz:483281", "question_score": "6", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/291700" }
[ 0.071533203125, 0.01064300537109375, -0.03582763671875, -0.042022705078125, 0.053955078125, -0.05401611328125, 0.060394287109375, -0.010528564453125, -0.01094818115234375, 0.022216796875, 0.00296783447265625, -0.002811431884765625, 0.0095367431640625, -0.0273590087890625, 0.004543304443359375, -0.030242919921875, 0.05059814453125, -0.051727294921875, -0.00060272216796875, -0.0010347366333007812, 0.017791748046875, 0.0177154541015625, 0.00722503662109375, 0.08319091796875, 0.00662994384765625, -0.026092529296875, 0.11663818359375, -0.0232391357421875, 0.003353118896484375, -0.028594970703125, 0.0257568359375, -0.0010995864868164062, 0.01055908203125, 0.00266265869140625, -0.016082763671875, -0.0114898681640625, 0.0137939453125, 0.009063720703125, 0.00830841064453125, -0.01308441162109375, 0.039337158203125, -0.027008056640625, -0.042633056640625, 0.027862548828125, -0.0316162109375, -0.016387939453125, 0.024932861328125, -0.0228424072265625, 0.0164031982421875, -0.01079559326171875, 0.00395965576171875, -0.0010995864868164062, 0.025421142578125, -0.024078369140625, -0.0255584716796875, -0.0112457275390625, -0.03802490234375, -0.02606201171875, -0.00034356117248535156, 0.09381103515625, 0.0341796875, -0.00017917156219482422, -0.0258331298828125, -0.07452392578125, 0.0108795166015625, -0.01021575927734375, -0.056915283203125, 0.0325927734375, -0.05828857421875, 0.02679443359375, 0.04827880859375, -0.07110595703125, -0.0010576248168945312, -0.0345458984375, -0.023651123046875, 0.00876617431640625, 0.01708984375, -0.0323486328125, -0.0009589195251464844, -0.01494598388671875, 0.054046630859375, 0.0020847320556640625, -0.011444091796875, -0.0017032623291015625, 0.0234527587890625, 0.007144927978515625, 0.01128387451171875, -0.031463623046875, -0.0250244140625, -0.021484375, -0.0266876220703125, 0.0264434814453125, -0.06396484375, 0.01372528076171875, 0.0012989044189453125, 0.01267242431640625, 0.04119873046875, 0.03155517578125, 0.002170562744140625, -0.0053863525390625, 0.0168609619140625, -0.04248046875, 0.011749267578125, -0.0172271728515625, 0.0028934478759765625, 0.0298309326171875, -0.005344390869140625, -0.0216827392578125, 0.01617431640625, 0.02374267578125, -0.004413604736328125, 0.010589599609375, 0.001163482666015625, 0.00017714500427246094, -0.00969696044921875, 0.00299835205078125, -0.034515380859375, 0.0289154052734375, 0.003208160400390625, 0.0247650146484375, 0.0017986297607421875, 0.023162841796875, -0.0733642578125, 0.00034689903259277344, 0.05108642578125, 0.00901031494140625, -0.01477813720703125, 0.0301513671875, -0.06695556640625, -0.0090484619140625, -0.02435302734375, 0.012908935546875, 0.09881591796875, 0.08306884765625, 0.03704833984375, -0.0029811859130859375, 0.033599853515625, 0.011016845703125, -0.00030231475830078125, -0.0131072998046875, 0.0300140380859375, -0.01837158203125, -0.01332855224609375, 0.0141754150390625, -0.06353759765625, -0.02532958984375, 0.005695343017578125, 0.04180908203125, -0.0047454833984375, -0.0260467529296875, -0.0158538818359375, 0.001148223876953125, 0.0736083984375, 0.0059661865234375, -0.033294677734375, -0.026641845703125, 0.10357666015625, -0.05914306640625, -0.06488037109375, -0.08917236328125, -0.01506805419921875, 0.0267333984375, 0.033416748046875, -0.041473388671875, -0.0304718017578125, -0.040130615234375, -0.0080718994140625, 0.01171112060546875, 0.0259552001953125, 0.014434814453125, -0.0201416015625, -0.0166473388671875, 0.0218505859375, -0.0006809234619140625, -0.01110076904296875, 0.00998687744140625, -0.001628875732421875, 0.030609130859375, 0.0255126953125, -0.0158843994140625, -0.0300445556640625, -0.05072021484375, 0.057037353515625, -0.022979736328125, -0.05047607421875, 0.03790283203125, 0.02923583984375, 0.0650634765625, -0.015289306640625, 0.021331787109375, 0.054473876953125, 0.040191650390625, -0.027862548828125, 0.035064697265625, 0.027587890625, -0.051788330078125, -0.010833740234375, -0.037261962890625, 0.018524169921875, -0.00971221923828125, 0.007598876953125, 0.00991058349609375, -0.006977081298828125, -0.03143310546875, -0.09423828125, 0.017486572265625, -0.0372314453125, 0.060150146484375, -0.0029468536376953125, 0.036651611328125, 0.0128173828125, 0.02813720703125, -0.051971435546875, 0.004077911376953125, -0.0290985107421875, -0.01261138916015625, -0.043670654296875, 0.028778076171875, -0.0268402099609375, -0.0030689239501953125, -0.009613037109375, -0.04986572265625, 0.006214141845703125, 0.007503509521484375, -0.0019588470458984375, -0.0230560302734375, -0.01219940185546875, -0.0237884521484375, -0.0014696121215820312, -0.0297698974609375, 0.032928466796875, 0.05267333984375, 0.002094268798828125, 0.0106201171875, -0.02593994140625, 0.00942230224609375, -0.0193328857421875, -0.03179931640625, -0.0198516845703125, 0.039825439453125, 0.01371002197265625, 0.02801513671875, -0.03790283203125, -0.01532745361328125, 0.021759033203125, -0.07147216796875, -0.0243682861328125, 0.033477783203125, -0.033111572265625, -0.02789306640625, -0.0131683349609375, 0.001544952392578125, 0.034881591796875, -0.06304931640625, -0.0092010498046875, 0.057769775390625, -0.0009245872497558594, -0.00809478759765625, 0.02984619140625, -0.033660888671875, 0.0080718994140625, -0.048858642578125, -0.047882080078125, -0.00925445556640625, 0.0012102127075195312, -0.04461669921875, 0.00698089599609375, -0.0011301040649414062, 0.0313720703125, -0.0531005859375, 0.0174407958984375, -0.03924560546875, -0.006954193115234375, 0.0241546630859375, 0.06829833984375, 0.0147857666015625, -0.06097412109375, -0.01245880126953125, 0.022735595703125, 0.033599853515625, -0.0233306884765625, 0.023956298828125, -0.0007848739624023438, -0.022186279296875, -0.02838134765625, -0.0273895263671875, 0.0281524658203125, 0.002841949462890625, -0.010040283203125, 0.0177001953125, 0.0341796875, 0.02691650390625, 0.01038360595703125, -0.002468109130859375, 0.0216217041015625, -0.01117706298828125, 0.0535888671875, 0.0015506744384765625, 0.0116729736328125, -0.01444244384765625, 0.0693359375, 0.04095458984375, -0.005390167236328125, 0.00020575523376464844, 0.0019092559814453125, 0.042083740234375, 0.056976318359375, -0.0275421142578125, -0.02520751953125, 0.0236053466796875, -0.0830078125, -0.058258056640625, 0.01080322265625, -0.0178985595703125, 0.0162506103515625, -0.017303466796875, 0.00759124755859375, -0.00946044921875, -0.0589599609375, -0.0428466796875, -0.0484619140625, -0.03582763671875, 0.0304718017578125, 0.035308837890625, 0.0115509033203125, -0.01123809814453125, 0.0601806640625, 0.0295562744140625, -0.0164031982421875, -0.01522064208984375, -0.029998779296875, -0.036102294921875, -0.023406982421875, -0.01312255859375, -0.0051727294921875, -0.02587890625, 0.02423095703125, 0.0233917236328125, 0.02740478515625, -0.0286102294921875, 0.04156494140625, -0.00457763671875, -0.050384521484375, 0.0154571533203125, 0.028167724609375, -0.0408935546875, 0.0173492431640625, 0.0040435791015625, -0.025115966796875, 0.00955963134765625, 0.005252838134765625, -0.025726318359375, -0.0208740234375, 0.006656646728515625, -0.0016584396362304688, 0.04974365234375, 0.0238189697265625, -0.0242156982421875, -0.0113067626953125, -0.046234130859375, -0.06195068359375, 0.0128326416015625, -0.05596923828125, 0.0267181396484375, 0.03759765625, -0.0133209228515625, 0.00844573974609375, 0.02130126953125, 0.0234527587890625, -0.01519775390625, 0.0189971923828125, -0.0028476715087890625, 0.030548095703125, -0.0048065185546875, 0.01239013671875, -0.053924560546875, 0.046783447265625, -0.0283050537109375, 0.0234222412109375, 0.0263214111328125, -0.0020313262939453125, 0.0213775634765625, -0.057220458984375, -0.006809234619140625, -0.03887939453125, 0.03814697265625, -0.0042266845703125, 0.0093841552734375, -0.0007042884826660156, -0.0211639404296875, 0.033447265625, 0.08563232421875, -0.004657745361328125, -0.00626373291015625, 0.009796142578125, -0.014801025390625, 0.0197906494140625, 0.018585205078125, -0.07562255859375, -0.022705078125, -0.046600341796875, 0.00815582275390625, -0.0281524658203125, -0.01332855224609375, -0.006397247314453125, -0.01369476318359375, -0.005313873291015625, -0.040618896484375, 0.017059326171875, -0.048492431640625, 0.00804901123046875, -0.02777099609375, 0.0031337738037109375, -0.074462890625, 0.01016998291015625, -0.0261993408203125, -0.041900634765625, -0.01129150390625, -0.017242431640625, 0.05126953125, 0.006458282470703125, 0.0124969482421875, 0.026214599609375, 0.0631103515625, 0.0166778564453125, 0.024749755859375, 0.01910400390625, 0.00312042236328125, 0.008026123046875, -0.0117340087890625, 0.024505615234375, -0.02532958984375, -0.01215362548828125, -0.0394287109375, -0.042022705078125, -0.0257720947265625, -0.0140228271484375, 0.033172607421875, 0.0188751220703125, -0.016204833984375, -0.042236328125, -0.0587158203125, -0.053131103515625, 0.0069732666015625, -0.035888671875, 0.01509857177734375, -0.0648193359375, -0.06439208984375, 0.06182861328125, -0.013092041015625, 0.0259552001953125, -0.0284271240234375, 0.08111572265625, 0.01690673828125, -0.0216217041015625, 0.035552978515625, 0.037384033203125, 0.0171966552734375, 0.00551605224609375, 0.07818603515625, -0.0088348388671875, -0.0036602020263671875, 0.077392578125, -0.0222320556640625, 0.01263427734375, -0.0240478515625, 0.0322265625, 0.01078033447265625, -0.0191650390625, 0.0194244384765625, 0.01467132568359375, -0.005695343017578125, -0.007175445556640625, 0.025177001953125, 0.0128326416015625, 0.062408447265625, -0.020782470703125, 0.007640838623046875, -0.043182373046875, 0.0214080810546875, -0.00936126708984375, 0.0008664131164550781, -0.056121826171875, 0.0489501953125, 0.0118560791015625, -0.006977081298828125, 0.01520538330078125, 0.059539794921875, -0.021575927734375, -0.030609130859375, 0.01557159423828125, -0.001667022705078125, 0.0237884521484375, 0.00804901123046875, -0.003299713134765625, -0.034942626953125, 0.0006289482116699219, 0.047332763671875, 0.0251617431640625, -0.0193634033203125, -0.033966064453125, 0.0020427703857421875, 0.0007867813110351562, -0.0240631103515625, 0.01029205322265625, 0.033233642578125, 0.04241943359375, -0.0142669677734375, -0.00984954833984375, 0.01033782958984375, 0.0108489990234375, -0.0367431640625, 0.0230865478515625, 0.0024013519287109375, -0.0178070068359375, -0.0008087158203125, 0.0049285888671875, -0.00522613525390625, -0.00453948974609375, 0.0193939208984375, 0.0280609130859375, -0.0379638671875, 0.051910400390625, -0.00777435302734375, -0.00574493408203125, 0.0183563232421875, 0.0298614501953125, 0.00664520263671875, -0.0479736328125, -0.029754638671875, 0.06512451171875, 0.059478759765625, -0.0194549560546875, -0.0286712646484375, -0.01320648193359375, -0.0008587837219238281, -0.0172119140625, 0.07086181640625, 0.0589599609375, -0.022216796875, -0.0244903564453125, -0.035888671875, 0.0214996337890625, -0.0030689239501953125, 0.01316070556640625, -0.038604736328125, -0.0259552001953125, -0.046875, 0.0209503173828125, -0.0386962890625, -0.02325439453125, -0.006153106689453125, -0.01123046875, -0.02166748046875, -0.00014865398406982422, -0.034210205078125, 0.0015010833740234375, -0.01480865478515625, -0.010528564453125, 0.002773284912109375, -0.02001953125, -0.004749298095703125, -0.004322052001953125, -0.007572174072265625, -0.035430908203125, 0.0156707763671875, 0.0262908935546875, 0.0124969482421875, -0.03948974609375, -0.031646728515625, -0.08428955078125, -0.03497314453125, -0.050079345703125, -0.035308837890625, -0.01519775390625, 0.033447265625, -0.015869140625, 0.0111236572265625, -0.02471923828125, -0.01219940185546875, -0.04559326171875, 0.02264404296875, 0.032806396484375, 0.03558349609375, -0.032440185546875, 0.05316162109375, 0.05010986328125, -0.01019287109375, 0.018951416015625, 0.046539306640625, 0.030792236328125, -0.0242767333984375, -0.00620269775390625, -0.0252838134765625, 0.01065826416015625, -0.0145263671875, -0.0023746490478515625, -0.00970458984375, 0.0599365234375, 0.0024280548095703125, 0.035400390625, 0.0013666152954101562, 0.0233612060546875, -0.0165863037109375, -0.00484466552734375, -0.0191802978515625, 0.0284576416015625, 0.0175933837890625, -0.015625, 0.0158843994140625, -0.005535125732421875, 0.00916290283203125, -0.00002855062484741211, -0.0301513671875, -0.01459503173828125, 0.01366424560546875, -0.0036754608154296875, 0.00891876220703125, 0.016387939453125, -0.01050567626953125, 0.0235595703125, 0.034454345703125, 0.0221405029296875, 0.00434112548828125, 0.048858642578125, -0.021820068359375, -0.029022216796875, 0.023193359375, 0.0025539398193359375, -0.007747650146484375, -0.007610321044921875, -0.00943756103515625, -0.010498046875, 0.0322265625, 0.04290771484375, -0.024627685546875, 0.0014276504516601562, 0.01242828369140625, -0.01206207275390625, -0.007068634033203125, -0.0382080078125, 0.00921630859375, -0.035430908203125, 0.0250244140625, 0.0304718017578125, -0.0421142578125, -0.021484375, -0.0146942138671875, -0.0325927734375, -0.00594329833984375, -0.0131988525390625, 0.023529052734375, 0.01226806640625, 0.01172637939453125, -0.0059814453125, 0.00498199462890625, -0.02593994140625, -0.022003173828125, 0.018829345703125, -0.0308380126953125, -0.06280517578125, 0.0163116455078125, -0.054229736328125, 0.015045166015625, -0.004638671875, 0.004833221435546875, 0.046051025390625, 0.07061767578125, -0.0194091796875, 0.0130157470703125, 0.034942626953125, 0.0032196044921875, -0.03759765625, -0.053009033203125, 0.01544952392578125, 0.0079193115234375, -0.01267242431640625, 0.031036376953125, 0.0231170654296875, -0.0667724609375, -0.0035419464111328125, -0.0019683837890625, 0.0289764404296875, 0.0294647216796875, -0.036865234375, 0.03350830078125, 0.01593017578125, -0.0291748046875, -0.017303466796875, 0.02398681640625, -0.05157470703125, -0.02587890625, -0.0024356842041015625, -0.059600830078125, -0.07122802734375, -0.07220458984375, -0.03271484375, 0.0872802734375, -0.0105438232421875, -0.0012359619140625, 0.002628326416015625, 0.03033447265625, -0.02166748046875, 0.0228118896484375, -0.03070068359375, 0.01959228515625, -0.0184173583984375, 0.031280517578125, -0.034210205078125, 0.0031223297119140625, -0.003025054931640625, -0.00726318359375, -0.0306549072265625, -0.0093231201171875, 0.01044464111328125, -0.017242431640625, 0.007221221923828125, 0.044586181640625, 0.0216064453125, -0.00301361083984375, -0.0089263916015625, 0.009674072265625, 0.01910400390625, -0.0684814453125, 0.0002715587615966797, -0.00809478759765625, -0.0039520263671875, 0.01708984375, 0.032745361328125, 0.056060791015625, -0.00209808349609375, -0.0399169921875, -0.004650115966796875, 0.0103607177734375, 0.01473236083984375, 0.03521728515625, -0.0176239013671875, 0.0382080078125, -0.0005450248718261719, 0.011505126953125, 0.002765655517578125, -0.0220184326171875, 0.0260772705078125, 0.00617218017578125, -0.0014934539794921875, 0.028900146484375, 0.02740478515625, -0.0207977294921875, -0.0083770751953125, 0.0072021484375, 0.0186614990234375, -0.0419921875, 0.0019502639770507812, 0.0159759521484375, 0.051055908203125, -0.0214080810546875, -0.06182861328125, -0.0021457672119140625, 0.0134735107421875, 0.01195526123046875, -0.0273895263671875, 0.0063934326171875, -0.00650787353515625, -0.007289886474609375, -0.01611328125, -0.0088348388671875, -0.0267791748046875, -0.0111541748046875, -0.0031719207763671875, -0.0210723876953125, -0.00868988037109375, -0.0035343170166015625, 0.0026111602783203125, 0.041656494140625, 0.037384033203125, 0.0111236572265625, -0.051513671875, 0.0296630859375, 0.026763916015625, 0.02569580078125, -0.003448486328125, 0.04693603515625, 0.04315185546875, -0.0098419189453125, -0.00904083251953125, 0.031036376953125, -0.0273284912109375, 0.00745391845703125, -0.03240966796875, -0.0333251953125, -0.025665283203125, 0.036865234375, 0.040802001953125, 0.0206756591796875, 0.059600830078125, 0.036041259765625, -0.0190582275390625, 0.0070343017578125, 0.07275390625, -0.01000213623046875, 0.01163482666015625, -0.0213775634765625, 0.0214996337890625, 0.024749755859375, -0.0012712478637695312, -0.0241851806640625, 0.03460693359375, 0.04742431640625, -0.0308074951171875, -0.0126953125, -0.0013113021850585938, -0.0560302734375, 0.07745361328125, -0.001842498779296875, 0.08746337890625, -0.016632080078125, -0.058380126953125, -0.0130462646484375, -0.016815185546875, -0.018402099609375, 0.0234222412109375, 0.0259246826171875, -0.047760009765625, 0.048065185546875, 0.047576904296875, -0.013641357421875, 0.01568603515625, 0.00856781005859375, -0.004764556884765625, -0.03387451171875, 0.037109375, -0.007411956787109375, 0.0135498046875, 0.023834228515625, 0.0045318603515625, 0.01375579833984375, 0.00966644287109375, 0.032135009765625, -0.016632080078125, 0.00084686279296875, 0.0251617431640625, -0.0255279541015625, 0.0445556640625, 0.031402587890625, -0.05120849609375, -0.0003228187561035156, 0.003314971923828125, -0.020599365234375, -0.046783447265625, 0.04248046875, -0.005725860595703125, 0.002346038818359375, 0.03729248046875, -0.010955810546875, 0.005615234375, 0.01256561279296875, 0.0611572265625, -0.042388916015625, -0.0268096923828125, -0.051971435546875, -0.042724609375, 0.0030994415283203125, -0.042633056640625, 0.0276336669921875, 0.02264404296875, 0.0283660888671875, -0.0164947509765625, -0.0015554428100585938, -0.0196990966796875, -0.01197052001953125, 0.0250244140625, 0.0245361328125, -0.0103607177734375, 0.023406982421875, -0.000022351741790771484, -0.0123748779296875, 0.03533935546875, -0.018524169921875, 0.0198974609375, -0.07208251953125, -0.0105133056640625, 0.015625, 0.03271484375, -0.01396942138671875, 0.023468017578125, -0.004070281982421875, -0.0122528076171875, -0.0001798868179321289, -0.036041259765625, -0.0251922607421875, -0.0628662109375, 0.0230255126953125, 0.0418701171875, -0.00800323486328125, 0.0023517608642578125, -0.0247955322265625, -0.00457000732421875, 0.0310821533203125, 0.00473785400390625, -0.06231689453125, 0.0465087890625, -0.05511474609375, 0.020050048828125, -0.02850341796875, 0.036865234375, -0.04693603515625, -0.048675537109375, -0.05596923828125, -0.0518798828125, -0.047698974609375, 0.081298828125, -0.02642822265625, -0.00328826904296875, 0.0384521484375, -0.00522613525390625, 0.00711822509765625, -0.029541015625, -0.005474090576171875, 0.00958251953125, -0.0235443115234375, -0.012115478515625, -0.03375244140625, 0.02606201171875, -0.0050201416015625, -0.0364990234375, 0.00878143310546875, -0.0302276611328125, -0.01113128662109375, -0.0284576416015625, 0.00444793701171875, 0.006591796875, -0.043731689453125, -0.11859130859375, -0.016815185546875, -0.0194549560546875, -0.047882080078125, -0.01549530029296875, -0.0200042724609375, -0.004474639892578125, 0.002719879150390625, -0.01274871826171875, -0.043121337890625, -0.04669189453125, 0.02069091796875, 0.009124755859375, 0.01369476318359375, 0.0215911865234375, -0.0188446044921875, -0.00794219970703125, 0.034271240234375, 0.041900634765625, 0.029998779296875, -0.04437255859375, 0.03192138671875, 0.01593017578125, 0.05230712890625, 0.01397705078125, 0.02252197265625, 0.020721435546875, -0.02410888671875, -0.0050506591796875, 0.0011539459228515625, -0.021331787109375, -0.0240478515625, 0.027740478515625, 0.03466796875, -0.001068115234375, 0.0038051605224609375, -0.0313720703125, -0.03643798828125, 0.040252685546875, 0.0156707763671875, -0.01071929931640625, -0.027191162109375, 0.01132965087890625, 0.0279998779296875, 0.0164947509765625, -0.015960693359375, -0.046600341796875, -0.00795745849609375, -0.01287841796875, 0.01360321044921875, 0.0318603515625, -0.01119232177734375, 0.0246124267578125, 0.042449951171875, -0.026947021484375, 0.0006580352783203125, 0.040863037109375, -0.01491546630859375, 0.022308349609375, 0.0391845703125, -0.0318603515625, 0.0026988983154296875, 0.00366973876953125, 0.032440185546875, -0.0127105712890625, 0.0166168212890625, -0.0081787109375, 0.01128387451171875, -0.008544921875, 0.0261688232421875, 0.0227813720703125, 0.041717529296875, -0.04620361328125, 0.01358795166015625, 0.0244903564453125, -0.045684814453125, -0.0235137939453125, 0.037109375, -0.0145111083984375, 0.0233306884765625, -0.03167724609375, 0.01262664794921875, 0.0240020751953125, -0.048065185546875, 0.01248931884765625, -0.00983428955078125, -0.03424072265625, -0.006134033203125, -0.0145263671875, -0.0217132568359375, -0.0501708984375, -0.0054473876953125 ]
5f8dbe52912e5fd9530a138ff34af2cb32cd9cc0
Wordpress Stackexchange Q: How to remove comment spam in WordPress I'm new to WordPress. I have lot of issues through spam comments, it gets more time to check and delete those manually. I want to keep the comment fields. So is there any way to block/track spam comments in comment fields? A: Just install a good anti-spam plugin. They will monitors site's comments for spam and automatically blocks spam comments. BTW WordPress come with Akismet which is a spam protection plugin installed by default. To enable the plugin, go to the Plugins and activate the Plugin. Akismet Anti-Spam
Q: How to remove comment spam in WordPress I'm new to WordPress. I have lot of issues through spam comments, it gets more time to check and delete those manually. I want to keep the comment fields. So is there any way to block/track spam comments in comment fields? A: Just install a good anti-spam plugin. They will monitors site's comments for spam and automatically blocks spam comments. BTW WordPress come with Akismet which is a spam protection plugin installed by default. To enable the plugin, go to the Plugins and activate the Plugin. Akismet Anti-Spam A: I'd actually recommend that you disable comments for now. I know that as a new user, you are thrilled to get a response but my experience shows that quality comments only come after you have established yourself. In the beginning of your career as a blogger or website owner, it is ususally just tons of spam you get. If you really want to keep the comment fields, yes, install an anti-spam plugin and try to blacklist words and URLs in comments (Settings->Discussion->Comment moderation/Comment blacklist. Keep though in mind that spammers don't have anything else to do but figure out smart ways to spam you, so my best advice would be to continue moderating manually and double checking for hidden links in author names and all other field of a comment. A: Anti-spam plugins sometimes are ok, but sometimes users do not want to overload their website with plugins because plugins makes website slower. So, in case you're unhappy with your anti-spam plugin, I recommend you to try a method with creating a hidden field in the comment form – it completely prevents automatic spam (actually it is 99% of all spam comments). Here is the step by step guide how to implement it https://rudrastyh.com/wordpress/spam-protection-no-plugins.html
wordpress
{ "language": "en", "length": 301, "provenance": "stackexchange_00019.jsonl.gz:483288", "question_score": "4", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/291718" }
[ 0.07928466796875, -0.004337310791015625, 0.0295867919921875, -0.0114898681640625, 0.006473541259765625, -0.034210205078125, 0.045745849609375, -0.04052734375, -0.0036144256591796875, 0.023712158203125, -0.0265350341796875, -0.003391265869140625, -0.01219940185546875, -0.0188446044921875, -0.0139007568359375, -0.049072265625, -0.003170013427734375, 0.0256500244140625, 0.0238494873046875, -0.023834228515625, 0.0374755859375, -0.0306243896484375, -0.01517486572265625, 0.039764404296875, 0.0105133056640625, -0.041534423828125, 0.1678466796875, -0.023651123046875, 0.0156707763671875, -0.0333251953125, 0.020233154296875, -0.020477294921875, 0.0033168792724609375, 0.04327392578125, -0.03076171875, -0.0032024383544921875, -0.0214385986328125, 0.027618408203125, 0.006988525390625, 0.01250457763671875, 0.024139404296875, -0.006351470947265625, -0.0095977783203125, 0.01103973388671875, -0.0227813720703125, -0.0097198486328125, -0.0027561187744140625, -0.039703369140625, 0.0460205078125, -0.042938232421875, 0.019134521484375, 0.050750732421875, 0.049560546875, -0.0343017578125, -0.0283355712890625, 0.0017337799072265625, -0.07171630859375, 0.040924072265625, 0.018310546875, 0.0166778564453125, 0.00870513916015625, -0.0086822509765625, -0.00730133056640625, 0.0120391845703125, 0.00814056396484375, -0.00014913082122802734, 0.0165557861328125, 0.031585693359375, -0.03997802734375, 0.0004558563232421875, 0.0352783203125, -0.025787353515625, -0.02984619140625, -0.036712646484375, 0.003688812255859375, 0.01020050048828125, -0.0178375244140625, -0.052032470703125, 0.00348663330078125, 0.0295562744140625, 0.0166778564453125, -0.0255584716796875, -0.0024356842041015625, -0.006763458251953125, 0.00403594970703125, 0.00370025634765625, -0.0110931396484375, -0.01031494140625, -0.0209197998046875, -0.0262603759765625, -0.0222015380859375, -0.06036376953125, -0.038055419921875, 0.0194549560546875, -0.0149688720703125, 0.002658843994140625, 0.01434326171875, 0.027191162109375, -0.0222930908203125, -0.022125244140625, -0.0199432373046875, 0.003307342529296875, -0.05682373046875, 0.004375457763671875, -0.00787353515625, 0.042236328125, 0.0013952255249023438, -0.040771484375, -0.00446319580078125, 0.0199737548828125, 0.00035762786865234375, -0.029144287109375, -0.0274810791015625, -0.01251220703125, -0.036529541015625, 0.0208587646484375, -0.03594970703125, -0.03485107421875, -0.01824951171875, -0.022735595703125, -0.0005717277526855469, -0.004055023193359375, -0.0007524490356445312, -0.00041604042053222656, 0.005176544189453125, -0.0211334228515625, -0.0341796875, 0.02264404296875, -0.0142364501953125, 0.008209228515625, -0.037261962890625, 0.00853729248046875, 0.05126953125, 0.04168701171875, 0.0254974365234375, -0.00942230224609375, 0.004974365234375, -0.001972198486328125, -0.0050811767578125, -0.009918212890625, 0.05120849609375, -0.02642822265625, -0.02801513671875, 0.0166778564453125, 0.000034749507904052734, 0.019256591796875, -0.000919342041015625, -0.0008978843688964844, 0.0247955322265625, -0.025634765625, -0.02587890625, -0.0166473388671875, 0.0504150390625, -0.0117034912109375, 0.0193023681640625, -0.01103973388671875, 0.050750732421875, -0.036834716796875, -0.03387451171875, -0.03997802734375, 0.028564453125, 0.0023193359375, -0.0040130615234375, -0.017242431640625, -0.031982421875, -0.011871337890625, -0.0297393798828125, 0.0103912353515625, 0.009063720703125, -0.06298828125, -0.01317596435546875, -0.005489349365234375, 0.00714874267578125, -0.0230712890625, -0.00518798828125, 0.026458740234375, -0.0018091201782226562, -0.0037212371826171875, 0.0211029052734375, 0.0112152099609375, -0.0127716064453125, -0.021026611328125, 0.0333251953125, -0.004947662353515625, -0.048126220703125, 0.02630615234375, 0.0257110595703125, 0.042816162109375, 0.0010042190551757812, 0.01551055908203125, 0.044342041015625, 0.035552978515625, 0.02105712890625, -0.0011968612670898438, -0.00991058349609375, -0.056396484375, 0.0233154296875, -0.006664276123046875, -0.01088714599609375, 0.010894775390625, 0.01412200927734375, -0.01099395751953125, 0.00921630859375, 0.007663726806640625, -0.0205078125, -0.0045166015625, -0.008636474609375, 0.02203369140625, -0.036773681640625, 0.01029205322265625, 0.0221710205078125, -0.036102294921875, -0.0281524658203125, 0.028564453125, 0.00800323486328125, -0.0186614990234375, -0.017852783203125, 0.0196533203125, -0.0115966796875, 0.036895751953125, -0.0244598388671875, -0.02838134765625, -0.019561767578125, -0.0126190185546875, 0.011993408203125, -0.031585693359375, -0.016265869140625, -0.03839111328125, -0.0010509490966796875, -0.0128021240234375, -0.03076171875, 0.06298828125, -0.00189971923828125, -0.0028209686279296875, -0.0249176025390625, -0.005161285400390625, -0.0016832351684570312, -0.060516357421875, -0.0011739730834960938, 0.045257568359375, 0.0301666259765625, -0.0121307373046875, 0.019775390625, 0.0304107666015625, 0.039703369140625, 0.007503509521484375, 0.0372314453125, -0.0123443603515625, 0.0268707275390625, 0.021636962890625, 0.035888671875, -0.031829833984375, 0.032562255859375, -0.0227203369140625, 0.0168304443359375, 0.01119232177734375, -0.014251708984375, -0.01806640625, 0.00864410400390625, 0.023712158203125, -0.00494384765625, -0.02093505859375, -0.004291534423828125, -0.0114898681640625, 0.004184722900390625, -0.03173828125, 0.0030975341796875, 0.0022125244140625, 0.00846099853515625, -0.0153350830078125, 0.017791748046875, -0.039947509765625, -0.0015039443969726562, 0.045135498046875, -0.0006895065307617188, 0.035430908203125, -0.005725860595703125, -0.0182647705078125, -0.01389312744140625, 0.0224456787109375, -0.026641845703125, 0.00751495361328125, 0.0142669677734375, -0.01438140869140625, -0.007045745849609375, 0.0207977294921875, 0.022705078125, -0.030364990234375, -0.05047607421875, -0.04754638671875, -0.0144805908203125, 0.042633056640625, 0.0092620849609375, -0.025177001953125, 0.037017822265625, -0.0007905960083007812, -0.0293426513671875, -0.0526123046875, 0.055694580078125, -0.044219970703125, -0.0010290145874023438, 0.0703125, 0.01105499267578125, -0.015625, 0.01207733154296875, 0.022247314453125, 0.03765869140625, -0.019744873046875, -0.00920867919921875, 0.061309814453125, -0.0794677734375, 0.015472412109375, -0.005634307861328125, 0.02862548828125, -0.044036865234375, -0.05987548828125, -0.01605224609375, 0.00658416748046875, -0.0278472900390625, 0.034271240234375, 0.02203369140625, -0.02227783203125, -0.0079498291015625, -0.0107269287109375, -0.0180511474609375, -0.0119476318359375, -0.007476806640625, -0.01100921630859375, 0.0367431640625, -0.035980224609375, -0.08154296875, -0.0251312255859375, -0.0655517578125, 0.054656982421875, -0.01177215576171875, 0.010955810546875, -0.003498077392578125, 0.0789794921875, 0.005107879638671875, -0.031768798828125, 0.0024547576904296875, -0.03680419921875, -0.0004286766052246094, 0.005481719970703125, 0.015838623046875, -0.0307159423828125, 0.037628173828125, 0.00897216796875, -0.032928466796875, 0.0238189697265625, -0.01009368896484375, -0.0489501953125, 0.0017461776733398438, 0.0177764892578125, 0.005096435546875, -0.006099700927734375, 0.006977081298828125, 0.007843017578125, -0.0114898681640625, -0.041717529296875, -0.00579833984375, 0.03411865234375, -0.0002142190933227539, -0.0222625732421875, -0.018035888671875, -0.039337158203125, -0.012786865234375, 0.0296173095703125, 0.0654296875, 0.041839599609375, 0.0205535888671875, 0.003269195556640625, 0.0028095245361328125, 0.00806427001953125, 0.038726806640625, -0.0509033203125, 0.004932403564453125, -0.026214599609375, 0.006397247314453125, -0.005535125732421875, -0.0009450912475585938, -0.037445068359375, 0.046783447265625, -0.034698486328125, -0.0175018310546875, 0.024688720703125, -0.01702880859375, 0.0235443115234375, -0.0095062255859375, -0.00870513916015625, -0.006099700927734375, 0.0809326171875, -0.0290679931640625, -0.0193023681640625, -0.019805908203125, -0.0038776397705078125, 0.0033168792724609375, -0.0157928466796875, -0.0278472900390625, -0.023468017578125, -0.0802001953125, 0.0228118896484375, 0.01039886474609375, -0.039215087890625, -0.03839111328125, 0.034759521484375, -0.083740234375, -0.0135040283203125, 0.02130126953125, -0.0869140625, 0.0184173583984375, -0.02020263671875, -0.01525115966796875, -0.050994873046875, -0.0016698837280273438, -0.06005859375, -0.0281524658203125, -0.007568359375, -0.03460693359375, 0.03204345703125, -0.0003070831298828125, 0.033355712890625, -0.022125244140625, 0.01377105712890625, 0.001171112060546875, 0.007549285888671875, 0.00362396240234375, 0.0029144287109375, -0.030181884765625, 0.0163421630859375, 0.0171966552734375, -0.026275634765625, -0.007110595703125, 0.02398681640625, 0.00823211669921875, 0.068359375, -0.0084075927734375, 0.0070953369140625, 0.020111083984375, -0.0220184326171875, -0.0018815994262695312, -0.0482177734375, -0.028656005859375, 0.01629638671875, -0.0241851806640625, 0.0159149169921875, -0.0523681640625, -0.008148193359375, 0.022491455078125, -0.0162506103515625, -0.00008958578109741211, 0.00844573974609375, 0.058502197265625, 0.01947021484375, -0.017974853515625, -0.018585205078125, -0.0064849853515625, 0.0304412841796875, 0.009490966796875, 0.034271240234375, 0.0206756591796875, -0.007320404052734375, 0.03759765625, 0.00400543212890625, 0.005519866943359375, -0.05419921875, 0.06292724609375, -0.01043701171875, 0.01163482666015625, 0.005321502685546875, -0.048980712890625, 0.060150146484375, -0.012786865234375, -0.00476837158203125, -0.004131317138671875, -0.01529693603515625, 0.037872314453125, 0.0290985107421875, -0.0243682861328125, -0.050628662109375, -0.07440185546875, 0.0264129638671875, -0.0802001953125, 0.03094482421875, 0.0161895751953125, -0.005641937255859375, 0.05780029296875, 0.0260009765625, -0.00006836652755737305, -0.0355224609375, -0.018310546875, -0.044647216796875, 0.013702392578125, -0.004428863525390625, -0.0301055908203125, -0.007568359375, -0.01235198974609375, 0.07061767578125, 0.0102386474609375, -0.048187255859375, 0.01361846923828125, -0.0157470703125, -0.03082275390625, 0.024200439453125, 0.030609130859375, 0.0537109375, 0.0030727386474609375, -0.00457763671875, -0.0157318115234375, -0.0110321044921875, 0.0180511474609375, -0.049163818359375, -0.0074615478515625, -0.0150299072265625, -0.002105712890625, 0.04327392578125, -0.004215240478515625, -0.004215240478515625, 0.022918701171875, -0.0235595703125, 0.059173583984375, 0.0567626953125, 0.011932373046875, 0.0160369873046875, -0.007564544677734375, -0.004146575927734375, -0.022430419921875, -0.00775146484375, -0.0181427001953125, -0.007904052734375, 0.01456451416015625, -0.0002777576446533203, 0.01092529296875, 0.009002685546875, 0.005279541015625, 0.01171875, -0.0189208984375, 0.006999969482421875, 0.06695556640625, 0.0037822723388671875, 0.015350341796875, -0.0147247314453125, -0.0294189453125, 0.0290374755859375, -0.0139007568359375, -0.01971435546875, -0.059661865234375, -0.01885986328125, 0.04156494140625, -0.0184326171875, -0.01499176025390625, -0.0303497314453125, 0.00980377197265625, -0.0298309326171875, -0.0214080810546875, -0.0869140625, -0.022247314453125, -0.00806427001953125, 0.035888671875, 0.037353515625, 0.0233306884765625, 0.005626678466796875, -0.007282257080078125, -0.01007843017578125, -0.0048675537109375, -0.0068206787109375, 0.000782012939453125, -0.039031982421875, -0.0094757080078125, 0.005481719970703125, -0.0714111328125, -0.055694580078125, -0.10693359375, -0.0229949951171875, -0.0665283203125, 0.02838134765625, -0.01465606689453125, 0.03521728515625, -0.047027587890625, -0.030609130859375, 0.01477813720703125, 0.0121917724609375, -0.001598358154296875, 0.044036865234375, -0.04534912109375, 0.0263519287109375, 0.049591064453125, -0.043701171875, 0.005214691162109375, 0.036865234375, 0.0310821533203125, -0.0049591064453125, 0.0117950439453125, -0.0017499923706054688, -0.035552978515625, 0.0222320556640625, -0.0262298583984375, -0.006938934326171875, 0.027557373046875, -0.00936126708984375, 0.00249481201171875, -0.027557373046875, -0.0186767578125, -0.037445068359375, 0.040252685546875, -0.0234832763671875, 0.022979736328125, -0.0560302734375, -0.0239105224609375, 0.02392578125, -0.0220947265625, -0.01279449462890625, 0.04217529296875, -0.0251007080078125, 0.0318603515625, 0.007396697998046875, -0.0036411285400390625, 0.0200042724609375, 0.00850677490234375, -0.01995849609375, 0.01971435546875, 0.023406982421875, 0.019927978515625, 0.0006031990051269531, 0.0171966552734375, -0.0240020751953125, -0.0367431640625, 0.0631103515625, 0.024871826171875, -0.027374267578125, 0.047607421875, -0.030426025390625, 0.04095458984375, 0.038055419921875, 0.07952880859375, -0.07501220703125, 0.03228759765625, 0.01425933837890625, -0.033111572265625, 0.036590576171875, -0.00527191162109375, 0.01073455810546875, -0.062255859375, 0.0262298583984375, 0.020111083984375, -0.003231048583984375, -0.01432037353515625, -0.02850341796875, -0.006595611572265625, 0.0263214111328125, 0.04473876953125, -0.00811767578125, -0.055084228515625, -0.0462646484375, 0.0292510986328125, -0.050811767578125, -0.017913818359375, -0.01611328125, 0.060302734375, -0.05010986328125, -0.06219482421875, 0.0312347412109375, -0.030792236328125, -0.0061187744140625, 0.0221099853515625, 0.0138702392578125, -0.0036067962646484375, 0.0282440185546875, -0.0010099411010742188, -0.008453369140625, -0.002902984619140625, -0.045928955078125, -0.0181121826171875, -0.059783935546875, 0.0189208984375, 0.002536773681640625, -0.017333984375, 0.026123046875, 0.0135345458984375, -0.07257080078125, -0.0006866455078125, 0.027008056640625, 0.073974609375, -0.043670654296875, -0.0228118896484375, 0.024749755859375, -0.0101470947265625, -0.0015249252319335938, -0.03466796875, 0.0015401840209960938, -0.01035308837890625, 0.06890869140625, -0.02667236328125, 0.036773681640625, 0.027435302734375, -0.017791748046875, -0.0977783203125, 0.0582275390625, -0.00011456012725830078, 0.03619384765625, -0.0120849609375, 0.005889892578125, -0.02227783203125, -0.02886962890625, -0.0228424072265625, 0.04583740234375, -0.0418701171875, 0.04742431640625, -0.05914306640625, -0.0045013427734375, 0.0137786865234375, 0.040618896484375, 0.0970458984375, 0.01654052734375, 0.01708984375, 0.0089111328125, 0.074951171875, 0.033172607421875, -0.0196075439453125, 0.005970001220703125, 0.00396728515625, 0.01549530029296875, 0.033966064453125, -0.044891357421875, 0.00988006591796875, -0.01091766357421875, -0.0006833076477050781, 0.0229949951171875, -0.00955963134765625, -0.02386474609375, 0.01116943359375, 0.0634765625, -0.0263824462890625, -0.0011692047119140625, 0.01151275634765625, -0.02740478515625, -0.001056671142578125, 0.05804443359375, 0.06341552734375, -0.04364013671875, 0.0008816719055175781, -0.02850341796875, 0.06005859375, 0.006511688232421875, 0.0682373046875, 0.052001953125, 0.04119873046875, 0.07281494140625, -0.0230865478515625, 0.04278564453125, 0.01483917236328125, -0.050384521484375, -0.0023937225341796875, -0.0073394775390625, 0.027618408203125, -0.061187744140625, -0.07080078125, 0.0271453857421875, 0.040771484375, 0.00102996826171875, -0.0039215087890625, 0.01088714599609375, 0.01464080810546875, 0.01690673828125, -0.01361846923828125, 0.0302886962890625, 0.0188140869140625, 0.0145416259765625, -0.03314208984375, -0.00848388671875, 0.01235198974609375, 0.021087646484375, -0.01024627685546875, 0.03643798828125, -0.0028076171875, -0.027252197265625, -0.0154876708984375, -0.031036376953125, 0.00732421875, 0.00032973289489746094, 0.01739501953125, 0.025787353515625, 0.049072265625, -0.00023663043975830078, 0.0162811279296875, 0.01088714599609375, 0.0012407302856445312, -0.0225982666015625, -0.0075836181640625, -0.03033447265625, 0.0088958740234375, 0.023223876953125, 0.01467132568359375, 0.00897216796875, 0.01495361328125, 0.013031005859375, 0.0240631103515625, -0.005878448486328125, 0.004856109619140625, -0.01030731201171875, -0.007167816162109375, -0.0369873046875, -0.029815673828125, 0.002666473388671875, -0.0172119140625, -0.0001665353775024414, -0.032012939453125, 0.038299560546875, 0.0214385986328125, -0.0182647705078125, 0.0243072509765625, -0.005123138427734375, 0.0193634033203125, 0.0159912109375, -0.051361083984375, 0.0340576171875, -0.05596923828125, -0.028717041015625, 0.029815673828125, -0.01861572265625, 0.01235198974609375, 0.03289794921875, -0.0308380126953125, 0.030609130859375, 0.0022678375244140625, -0.0279998779296875, 0.017333984375, -0.002361297607421875, 0.0230255126953125, 0.006988525390625, -0.023773193359375, -0.005138397216796875, -0.0238189697265625, -0.003086090087890625, 0.007415771484375, 0.007534027099609375, 0.006359100341796875, 0.047515869140625, 0.0010099411010742188, 0.00972747802734375, -0.06707763671875, 0.024871826171875, -0.007572174072265625, -0.027587890625, 0.05462646484375, 0.0919189453125, -0.011810302734375, -0.05181884765625, -0.032958984375, 0.045928955078125, 0.0247802734375, 0.01045989990234375, 0.040252685546875, -0.004741668701171875, -0.00017774105072021484, -0.031097412109375, -0.01020050048828125, -0.021759033203125, -0.0172576904296875, -0.0269317626953125, -0.032379150390625, 0.042144775390625, 0.0208892822265625, 0.001964569091796875, 0.06451416015625, 0.0159454345703125, 0.055908203125, -0.003932952880859375, -0.01506805419921875, -0.0036468505859375, 0.0281829833984375, -0.054595947265625, 0.0091400146484375, 0.032257080078125, -0.01800537109375, 0.01381683349609375, 0.01934814453125, 0.01995849609375, 0.0196380615234375, -0.0180206298828125, -0.017913818359375, -0.028411865234375, 0.0177459716796875, -0.00603485107421875, -0.01065826416015625, -0.039947509765625, 0.0017337799072265625, -0.01129913330078125, -0.039337158203125, -0.0291900634765625, -0.041412353515625, -0.020294189453125, 0.0204620361328125, -0.04876708984375, -0.061187744140625, -0.060089111328125, -0.01125335693359375, -0.0047149658203125, 0.0032100677490234375, -0.042755126953125, 0.0015964508056640625, 0.0236358642578125, 0.0164947509765625, -0.0108642578125, 0.028656005859375, -0.01311492919921875, 0.0070037841796875, -0.059112548828125, -0.0499267578125, -0.045074462890625, 0.042083740234375, -0.058837890625, 0.03704833984375, 0.043731689453125, -0.033477783203125, 0.0116119384765625, 0.039520263671875, 0.03692626953125, 0.08740234375, 0.006191253662109375, 0.0019102096557617188, 0.037994384765625, -0.001316070556640625, -0.043182373046875, -0.0677490234375, 0.006683349609375, -0.04144287109375, -0.0007419586181640625, -0.056488037109375, 0.052215576171875, 0.044586181640625, -0.02911376953125, -0.11956787109375, 0.0472412109375, -0.05804443359375, -0.032989501953125, -0.06951904296875, -0.0209197998046875, 0.02392578125, -0.00698089599609375, -0.037628173828125, 0.00586700439453125, -0.0751953125, 0.035888671875, -0.0083160400390625, 0.0175628662109375, 0.0033416748046875, -0.0033092498779296875, 0.0274658203125, 0.04937744140625, 0.06573486328125, -0.0191497802734375, -0.0003056526184082031, 0.0064849853515625, 0.0299072265625, 0.0249481201171875, -0.04144287109375, 0.042694091796875, -0.0159912109375, 0.00897216796875, -0.0126800537109375, -0.037017822265625, 0.0014886856079101562, 0.010101318359375, 0.04425048828125, 0.06243896484375, -0.005542755126953125, -0.0565185546875, -0.0008068084716796875, 0.00629425048828125, -0.02996826171875, -0.0323486328125, 0.01309967041015625, -0.0343017578125, -0.01763916015625, -0.02947998046875, 0.0229644775390625, -0.03594970703125, -0.04052734375, -0.021087646484375, -0.026885986328125, 0.01288604736328125, 0.0250244140625, 0.01904296875, -0.0023326873779296875, 0.0189971923828125, -0.0135345458984375, 0.0299072265625, -0.01111602783203125, -0.00080108642578125, 0.0180816650390625, 0.0167999267578125, -0.01039886474609375, -0.01995849609375, -0.01441192626953125, 0.01317596435546875, 0.006229400634765625, 0.0275726318359375, 0.0037326812744140625, -0.033111572265625, -0.01494598388671875, 0.00669097900390625, 0.0234527587890625, 0.0202484130859375, -0.052886962890625, 0.00618743896484375, 0.014251708984375, 0.0127105712890625, -0.0028820037841796875, 0.00862884521484375, -0.02099609375, 0.055267333984375, 0.0026397705078125, -0.039794921875, 0.050140380859375, -0.04931640625, -0.002925872802734375, 0.03155517578125, -0.00446319580078125, -0.045501708984375, 0.042327880859375, 0.0221405029296875, 0.0279541015625, 0.024658203125 ]
73d160e02dc85c9b90b77e5ce2dc65af71a6375c
Wordpress Stackexchange Q: How to get current url in contact form 7 I'm using Contact Form 7 in my wordpress installation. I need to somehow pass a hidden field with the current page url in the contact form hidden field. I tried their custom function and tried the short code, no luck. wpcf7_add_shortcode('sourceurl', 'wpcf7_sourceurl_shortcode_handler', true); function wpcf7_sourceurl_shortcode_handler($tag) { if (!is_array($tag)) return ''; $name = $tag['name']; if (empty($name)) return ''; $html = '<input type="hidden" name="' . $name . '" value="http://' . $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"] . '" />'; return $html; } In the form edition I tried [sourceurl thesource] A: See this example on how to create and parse the shortcode in the contact form 7 to use it add [current_url] add_action( 'wpcf7_init', 'wpcf7_add_form_tag_current_url' ); function wpcf7_add_form_tag_current_url() { // Add shortcode for the form [current_url] wpcf7_add_form_tag( 'current_url', 'wpcf7_current_url_form_tag_handler', array( 'name-attr' => true ) ); } // Parse the shortcode in the frontend function wpcf7_current_url_form_tag_handler( $tag ) { global $wp; $url = home_url( $wp->request ); return '<input type="hidden" name="'.$tag['name'].'" value="'.$url.'" />'; } Also if its all about to get the URL in the email you dont need all of this. there is a special tag for the email [_url] CF7 Special mail tags
Q: How to get current url in contact form 7 I'm using Contact Form 7 in my wordpress installation. I need to somehow pass a hidden field with the current page url in the contact form hidden field. I tried their custom function and tried the short code, no luck. wpcf7_add_shortcode('sourceurl', 'wpcf7_sourceurl_shortcode_handler', true); function wpcf7_sourceurl_shortcode_handler($tag) { if (!is_array($tag)) return ''; $name = $tag['name']; if (empty($name)) return ''; $html = '<input type="hidden" name="' . $name . '" value="http://' . $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"] . '" />'; return $html; } In the form edition I tried [sourceurl thesource] A: See this example on how to create and parse the shortcode in the contact form 7 to use it add [current_url] add_action( 'wpcf7_init', 'wpcf7_add_form_tag_current_url' ); function wpcf7_add_form_tag_current_url() { // Add shortcode for the form [current_url] wpcf7_add_form_tag( 'current_url', 'wpcf7_current_url_form_tag_handler', array( 'name-attr' => true ) ); } // Parse the shortcode in the frontend function wpcf7_current_url_form_tag_handler( $tag ) { global $wp; $url = home_url( $wp->request ); return '<input type="hidden" name="'.$tag['name'].'" value="'.$url.'" />'; } Also if its all about to get the URL in the email you dont need all of this. there is a special tag for the email [_url] CF7 Special mail tags A: according to Contact Form 7 documentation you need this: [_url] — This tag is replaced by the URL of the page in which the contact form is placed. reference: https://contactform7.com/special-mail-tags/ A: You can use cf7 hidden field shortcodes + get parameters: https://contactform7.com/hidden-field/ https://contactform7.com/getting-default-values-from-the-context/ In the mail form I use such shortcodes to get these slugs [hidden utm_source default:get] [hidden utm_medium default:get] [hidden utm_campaign default:get] [hidden utm_content default:get] [hidden gclid default:get] It also works with their flamingo plugin. And for mail template [_url] works very well. A: the form submit already send the container post then you just need to retrive it in and put it in the e-mail. For that, try this code : add_filter("wpcf7_posted_data", function ($wpcf7_posted_data) { $post = get_post($wpcf7_posted_data["_wpcf7_container_post"]); $wpcf7_posted_data["containerURL"] = get_permalink($post); return $wpcf7_posted_data; }); And in the edition of the sent e-mail, you retrieve the URL with [containerURL]
wordpress
{ "language": "en", "length": 338, "provenance": "stackexchange_00019.jsonl.gz:483327", "question_score": "5", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/291855" }
[ 0.046539306640625, 0.002864837646484375, -0.044036865234375, -0.058929443359375, 0.0139923095703125, -0.029998779296875, 0.00608062744140625, 0.0151214599609375, 0.00783538818359375, 0.0068817138671875, -0.0074310302734375, -0.0158843994140625, -0.0117645263671875, -0.037139892578125, 0.00829315185546875, -0.005687713623046875, 0.00537109375, 0.00833892822265625, 0.01453399658203125, -0.004772186279296875, -0.00946044921875, -0.01409149169921875, -0.0012903213500976562, 0.0166473388671875, 0.0010967254638671875, -0.0287628173828125, 0.04608154296875, 0.012237548828125, -0.029693603515625, -0.01180267333984375, 0.006732940673828125, 0.007328033447265625, 0.057464599609375, 0.032257080078125, -0.1077880859375, 0.004055023193359375, 0.0030956268310546875, -0.01052093505859375, -0.051239013671875, 0.05322265625, 0.03564453125, -0.02392578125, 0.0039005279541015625, -0.0242919921875, -0.0216827392578125, -0.047210693359375, 0.05120849609375, -0.0126190185546875, 0.004177093505859375, 0.07098388671875, 0.0369873046875, 0.038543701171875, 0.02349853515625, 0.01444244384765625, -0.0096588134765625, -0.000720977783203125, -0.0141754150390625, 0.0013723373413085938, 0.02386474609375, 0.019195556640625, -0.0019121170043945312, -0.006412506103515625, 0.0053253173828125, -0.0287933349609375, 0.0022144317626953125, 0.004642486572265625, 0.03253173828125, 0.01192474365234375, -0.024871826171875, 0.00113677978515625, 0.038421630859375, -0.0306243896484375, -0.0006561279296875, 0.0172271728515625, -0.00179290771484375, -0.006866455078125, 0.01537322998046875, 0.036224365234375, 0.0132293701171875, 0.0246124267578125, -0.017852783203125, -0.058624267578125, -0.03778076171875, 0.0200958251953125, 0.0010900497436523438, 0.036956787109375, -0.014190673828125, -0.001789093017578125, -0.018096923828125, -0.01111602783203125, -0.021820068359375, 0.00028634071350097656, -0.01045989990234375, -0.0012416839599609375, -0.0052947998046875, -0.04327392578125, -0.002841949462890625, 0.01508331298828125, -0.00658416748046875, -0.01470184326171875, 0.0084381103515625, -0.0244598388671875, -0.032257080078125, -0.0236968994140625, 0.00035881996154785156, 0.08441162109375, 0.01407623291015625, 0.03106689453125, 0.021820068359375, -0.0364990234375, 0.01366424560546875, -0.0105438232421875, -0.015655517578125, 0.03131103515625, -0.0251007080078125, -0.0160980224609375, -0.0595703125, 0.006305694580078125, -0.0297698974609375, 0.012664794921875, -0.0206451416015625, 0.037811279296875, -0.0298309326171875, -0.04779052734375, -0.004489898681640625, -0.0166778564453125, 0.010498046875, -0.0199127197265625, 0.040985107421875, -0.004608154296875, -0.0411376953125, 0.01419830322265625, 0.0738525390625, 0.03167724609375, 0.0299530029296875, -0.026824951171875, -0.0074310302734375, -0.058685302734375, 0.005779266357421875, -0.003448486328125, -0.0102691650390625, -0.01111602783203125, 0.0248260498046875, -0.0155792236328125, 0.0111083984375, 0.0264129638671875, 0.0203704833984375, 0.0017642974853515625, 0.010650634765625, -0.0133056640625, -0.031829833984375, 0.002208709716796875, 0.039459228515625, 0.0264892578125, -0.0312042236328125, 0.033843994140625, 0.036376953125, -0.01029205322265625, -0.03570556640625, -0.044158935546875, 0.0198516845703125, -0.031341552734375, -0.005931854248046875, -0.032470703125, -0.04278564453125, 0.0102081298828125, -0.06744384765625, -0.0006847381591796875, 0.005359649658203125, 0.01259613037109375, -0.0010538101196289062, 0.02484130859375, -0.033233642578125, 0.020416259765625, 0.0181427001953125, -0.007404327392578125, -0.028564453125, 0.0372314453125, 0.0355224609375, 0.0019702911376953125, -0.01641845703125, -0.04168701171875, 0.06689453125, -0.019683837890625, -0.06121826171875, 0.08648681640625, -0.01001739501953125, 0.03271484375, -0.002056121826171875, -0.01221466064453125, 0.04290771484375, 0.05364990234375, -0.0214691162109375, 0.0249176025390625, 0.001895904541015625, -0.004299163818359375, -0.01505279541015625, 0.03131103515625, -0.0226898193359375, -0.02728271484375, -0.01462554931640625, 0.0031890869140625, 0.0301971435546875, -0.00949859619140625, 0.0268402099609375, 0.0229644775390625, -0.012725830078125, 0.04241943359375, -0.043060302734375, -0.022003173828125, 0.037841796875, -0.021392822265625, -0.0190582275390625, 0.0026340484619140625, 0.0018749237060546875, 0.02587890625, -0.0301055908203125, 0.023162841796875, -0.0029582977294921875, 0.05621337890625, -0.02044677734375, 0.017822265625, -0.01514434814453125, -0.01548004150390625, -0.0013055801391601562, 0.01094818115234375, -0.02923583984375, -0.005809783935546875, -0.03448486328125, 0.02264404296875, -0.04742431640625, 0.01837158203125, -0.0176239013671875, -0.006587982177734375, -0.062255859375, -0.01593017578125, -0.005889892578125, 0.0213165283203125, 0.0123748779296875, 0.033233642578125, 0.03857421875, 0.0249481201171875, 0.0278472900390625, 0.0224609375, 0.0499267578125, -0.0046844482421875, 0.030975341796875, -0.017242431640625, 0.0085296630859375, 0.025360107421875, -0.01355743408203125, 0.005474090576171875, 0.0176239013671875, -0.0271759033203125, 0.01160430908203125, 0.03143310546875, -0.05712890625, -0.0474853515625, -0.0000852346420288086, -0.038604736328125, 0.03564453125, -0.02142333984375, -0.0421142578125, -0.012908935546875, 0.01641845703125, 0.048828125, 0.05133056640625, 0.058990478515625, -0.017364501953125, 0.0121002197265625, 0.001800537109375, 0.0222625732421875, -0.0021381378173828125, -0.0095977783203125, 0.0343017578125, 0.007904052734375, -0.00804901123046875, -0.0191497802734375, 0.011199951171875, -0.002094268798828125, -0.00036406517028808594, 0.039306640625, -0.0132904052734375, -0.0019102096557617188, -0.032989501953125, -0.056732177734375, 0.008056640625, 0.0308837890625, 0.0810546875, 0.0186920166015625, 0.0286712646484375, -0.00829315185546875, -0.019195556640625, 0.086181640625, 0.004871368408203125, -0.04730224609375, -0.0079498291015625, -0.0206298828125, 0.045562744140625, -0.035308837890625, 0.024322509765625, 0.05987548828125, -0.03399658203125, 0.04217529296875, -0.0043182373046875, -0.0494384765625, -0.033905029296875, 0.01543426513671875, 0.0029430389404296875, 0.0032024383544921875, -0.05340576171875, 0.061065673828125, 0.0183563232421875, -0.03509521484375, -0.004489898681640625, -0.031646728515625, -0.0192413330078125, -0.0173492431640625, -0.10357666015625, -0.07550048828125, 0.0094757080078125, -0.05255126953125, -0.03045654296875, 0.007293701171875, -0.05389404296875, 0.01367950439453125, 0.039459228515625, 0.0027790069580078125, -0.033416748046875, -0.0262908935546875, -0.08148193359375, -0.06622314453125, -0.078857421875, 0.025146484375, -0.01317596435546875, 0.025909423828125, -0.0002532005310058594, 0.00762939453125, 0.00521087646484375, -0.004100799560546875, 0.0239105224609375, 0.00855255126953125, 0.005435943603515625, -0.0123748779296875, -0.050994873046875, 0.004070281982421875, 0.0308837890625, 0.004100799560546875, 0.0050201416015625, 0.01337432861328125, 0.00872802734375, 0.003383636474609375, -0.0159759521484375, -0.046539306640625, 0.0300445556640625, -0.0038299560546875, -0.006137847900390625, -0.03594970703125, 0.06878662109375, -0.051025390625, 0.012359619140625, -0.01177978515625, -0.0228271484375, -0.031280517578125, -0.0198974609375, -0.0027408599853515625, 0.0017681121826171875, -0.0014667510986328125, 0.01374053955078125, 0.004703521728515625, 0.049774169921875, -0.00962066650390625, 0.0229644775390625, -0.0155792236328125, -0.0272674560546875, -0.0489501953125, 0.095458984375, 0.00937652587890625, 0.0164947509765625, 0.045623779296875, 0.0103607177734375, 0.030059814453125, -0.043701171875, 0.0126190185546875, -0.028289794921875, 0.0631103515625, -0.043060302734375, -0.01287841796875, -0.035919189453125, -0.00963592529296875, -0.020904541015625, 0.051849365234375, -0.048095703125, -0.0147247314453125, 0.006801605224609375, 0.022918701171875, -0.03973388671875, -0.06378173828125, -0.04583740234375, -0.005245208740234375, -0.09967041015625, 0.01454925537109375, -0.028167724609375, -0.0017766952514648438, 0.00891876220703125, -0.009063720703125, -0.01727294921875, -0.08349609375, 0.010772705078125, 0.00978851318359375, -0.0007824897766113281, 0.02752685546875, -0.0311279296875, 0.017333984375, -0.0123138427734375, -0.0225372314453125, -0.0657958984375, -0.01088714599609375, 0.034393310546875, 0.022705078125, -0.020355224609375, -0.047607421875, -0.0197906494140625, 0.045928955078125, 0.004650115966796875, -0.0287628173828125, 0.006374359130859375, -0.0017910003662109375, -0.0153961181640625, 0.02008056640625, -0.005809783935546875, -0.0084075927734375, 0.0198822021484375, 0.01268768310546875, -0.03564453125, -0.01788330078125, -0.033966064453125, -0.04022216796875, 0.0309906005859375, -0.058685302734375, -0.059783935546875, -0.0229644775390625, 0.01800537109375, 0.035430908203125, -0.02239990234375, 0.01541900634765625, -0.0006327629089355469, -0.0416259765625, 0.0074462890625, -0.01523590087890625, -0.0231170654296875, 0.0189208984375, 0.02734375, 0.0185394287109375, 0.0004992485046386719, -0.0411376953125, 0.003505706787109375, 0.07025146484375, 0.01247406005859375, 0.01953125, 0.040191650390625, -0.0699462890625, 0.0237274169921875, 0.06787109375, 0.033477783203125, 0.01248931884765625, 0.02398681640625, -0.0084228515625, -0.01276397705078125, 0.00412750244140625, 0.01324462890625, -0.04888916015625, 0.002960205078125, -0.016204833984375, -0.01451873779296875, -0.01407623291015625, 0.01018524169921875, -0.01079559326171875, 0.0455322265625, 0.0071563720703125, -0.05712890625, 0.00470733642578125, 0.0543212890625, 0.0190582275390625, 0.0225830078125, -0.0031185150146484375, 0.049407958984375, 0.019012451171875, -0.0085296630859375, -0.01456451416015625, -0.024169921875, -0.0028209686279296875, 0.0143585205078125, -0.0203094482421875, -0.005298614501953125, 0.01177978515625, -0.012420654296875, 0.041656494140625, 0.0257568359375, -0.0139007568359375, 0.0074615478515625, -0.0284576416015625, -0.07562255859375, -0.0321044921875, -0.0202178955078125, -0.0024623870849609375, 0.03076171875, 0.03955078125, 0.024871826171875, -0.0159759521484375, 0.046966552734375, -0.0015277862548828125, -0.021636962890625, -0.0175628662109375, 0.007648468017578125, -0.03460693359375, 0.1075439453125, -0.012481689453125, 0.05194091796875, -0.009552001953125, -0.0009479522705078125, 0.02923583984375, -0.00925445556640625, 0.0284423828125, 0.008087158203125, 0.00830078125, -0.051483154296875, 0.03143310546875, -0.03216552734375, -0.0155181884765625, 0.03680419921875, 0.038360595703125, 0.00597381591796875, -0.003086090087890625, -0.01910400390625, 0.00014638900756835938, -0.003696441650390625, 0.002658843994140625, 0.022491455078125, 0.0159454345703125, -0.024627685546875, 0.01157379150390625, 0.03546142578125, 0.03857421875, -0.008575439453125, 0.01824951171875, -0.0176544189453125, 0.0109710693359375, 0.048095703125, -0.00502777099609375, -0.005977630615234375, -0.027191162109375, 0.038604736328125, -0.0107421875, -0.01207733154296875, 0.00794219970703125, 0.0094146728515625, -0.035125732421875, -0.030181884765625, 0.0540771484375, -0.0103302001953125, 0.023590087890625, -0.035125732421875, -0.00675201416015625, -0.031890869140625, -0.003566741943359375, 0.04815673828125, 0.0286102294921875, -0.01512908935546875, 0.0010423660278320312, -0.042694091796875, -0.01873779296875, 0.02056884765625, -0.0196685791015625, -0.0030765533447265625, -0.037384033203125, -0.005382537841796875, 0.0281829833984375, -0.0204315185546875, -0.0063323974609375, -0.007793426513671875, -0.003131866455078125, -0.01036834716796875, 0.0198822021484375, 0.0194244384765625, 0.037384033203125, -0.00748443603515625, 0.034271240234375, 0.0157470703125, -0.0163726806640625, -0.060882568359375, -0.01165771484375, 0.012603759765625, -0.03143310546875, -0.043121337890625, -0.030029296875, 0.004276275634765625, 0.038726806640625, 0.02655029296875, -0.002567291259765625, -0.00472259521484375, 0.006267547607421875, 0.00521087646484375, -0.017852783203125, 0.023773193359375, 0.0096435546875, -0.029083251953125, 0.00568389892578125, 0.0166168212890625, 0.0126190185546875, -0.038848876953125, -0.0010204315185546875, -0.000059545040130615234, 0.0040283203125, 0.018463134765625, -0.01247406005859375, -0.0260772705078125, 0.06591796875, 0.1590576171875, -0.00669097900390625, 0.06854248046875, 0.058380126953125, -0.0038471221923828125, 0.036285400390625, 0.04913330078125, -0.0269927978515625, -0.0275115966796875, 0.044586181640625, 0.01543426513671875, -0.0239410400390625, 0.021820068359375, -0.01036834716796875, 0.024932861328125, 0.0020732879638671875, 0.0709228515625, -0.044036865234375, 0.027984619140625, 0.039306640625, -0.005657196044921875, -0.00357818603515625, 0.00843048095703125, -0.0240325927734375, -0.0088348388671875, 0.03216552734375, -0.0070037841796875, -0.0188751220703125, 0.0251617431640625, 0.0341796875, -0.0176544189453125, -0.0284423828125, 0.051300048828125, 0.004398345947265625, 0.01397705078125, -0.057464599609375, -0.02447509765625, -0.042205810546875, -0.026824951171875, 0.032562255859375, -0.00921630859375, -0.0196533203125, -0.0556640625, 0.0003726482391357422, 0.02587890625, -0.01336669921875, -0.054046630859375, -0.0182647705078125, 0.0308990478515625, 0.04156494140625, -0.0301055908203125, -0.00933837890625, 0.033294677734375, 0.01532745361328125, 0.052459716796875, -0.0203094482421875, -0.006938934326171875, 0.01971435546875, -0.0247039794921875, -0.005710601806640625, -0.00261688232421875, 0.00608062744140625, -0.008575439453125, 0.01145172119140625, 0.10595703125, -0.031829833984375, -0.04705810546875, 0.0172271728515625, 0.00293731689453125, -0.008087158203125, -0.019866943359375, -0.035430908203125, -0.0384521484375, -0.035491943359375, -0.02960205078125, -0.0657958984375, 0.0297698974609375, -0.059844970703125, -0.075927734375, 0.06201171875, -0.0179290771484375, 0.0556640625, 0.03619384765625, 0.01708984375, -0.032318115234375, -0.020721435546875, -0.0127716064453125, 0.0244293212890625, 0.03460693359375, -0.01102447509765625, -0.0208740234375, -0.0204620361328125, -0.0086822509765625, 0.0413818359375, 0.048675537109375, 0.0134429931640625, -0.0006685256958007812, 0.0108489990234375, 0.05059814453125, 0.0139617919921875, -0.0396728515625, 0.022369384765625, -0.0224609375, -0.025482177734375, 0.0257720947265625, 0.007808685302734375, 0.0261993408203125, 0.010894775390625, -0.0211029052734375, 0.017608642578125, 0.018280029296875, 0.022491455078125, -0.03173828125, 0.0439453125, -0.01678466796875, -0.007183074951171875, 0.032928466796875, -0.052215576171875, -0.055084228515625, 0.034912109375, -0.02777099609375, -0.0281982421875, -0.00830078125, -0.0360107421875, 0.0260009765625, 0.0129547119140625, 0.0185546875, 0.06787109375, 0.038970947265625, 0.07183837890625, -0.0158538818359375, 0.0242156982421875, -0.002109527587890625, -0.00904083251953125, 0.078125, 0.025543212890625, 0.037200927734375, -0.00823974609375, 0.04266357421875, 0.0167999267578125, 0.06219482421875, -0.064453125, -0.019927978515625, 0.00954437255859375, 0.0241241455078125, 0.012939453125, 0.0028553009033203125, 0.049346923828125, 0.0005326271057128906, 0.003162384033203125, -0.031036376953125, -0.01329803466796875, 0.0210418701171875, 0.050537109375, -0.005336761474609375, 0.0008974075317382812, -0.044708251953125, -0.03179931640625, -0.051483154296875, -0.01078033447265625, -0.0204620361328125, 0.060211181640625, 0.053436279296875, 0.0250396728515625, -0.035064697265625, -0.03582763671875, -0.007213592529296875, 0.034576416015625, 0.0164642333984375, -0.01025390625, 0.006191253662109375, 0.00698089599609375, -0.01267242431640625, 0.0016641616821289062, 0.040069580078125, 0.058319091796875, 0.0222320556640625, -0.01520538330078125, 0.015899658203125, 0.016357421875, 0.027740478515625, -0.0133819580078125, 0.071533203125, -0.04559326171875, 0.0238037109375, -0.0104522705078125, -0.021881103515625, -0.01549530029296875, -0.041748046875, 0.0499267578125, -0.04156494140625, 0.0194549560546875, -0.0076141357421875, -0.026214599609375, 0.03985595703125, -0.0166778564453125, 0.035186767578125, -0.0088348388671875, -0.10107421875, -0.0158843994140625, -0.056060791015625, -0.0021877288818359375, 0.03955078125, 0.0428466796875, -0.00839996337890625, 0.0223541259765625, 0.0005741119384765625, -0.01326751708984375, 0.0251922607421875, 0.0194091796875, -0.041290283203125, 0.029693603515625, 0.05511474609375, -0.0080413818359375, -0.02508544921875, -0.0191192626953125, 0.0274658203125, 0.0258636474609375, -0.014312744140625, 0.065185546875, -0.032318115234375, -0.0123748779296875, -0.026947021484375, 0.0238494873046875, -0.0482177734375, -0.04974365234375, 0.047943115234375, 0.0005235671997070312, -0.0016880035400390625, -0.0026836395263671875, 0.005290985107421875, -0.00634002685546875, 0.01568603515625, -0.02105712890625, 0.00952911376953125, -0.037445068359375, 0.024871826171875, 0.0181732177734375, 0.012908935546875, -0.0218353271484375, -0.0224151611328125, -0.00746917724609375, -0.0092315673828125, 0.002994537353515625, 0.0224456787109375, 0.00518798828125, 0.037384033203125, 0.0102691650390625, 0.0229949951171875, 0.01523590087890625, -0.001583099365234375, 0.031463623046875, 0.0243377685546875, -0.037872314453125, 0.016082763671875, -0.00624847412109375, -0.035247802734375, 0.034881591796875, -0.00856781005859375, 0.022369384765625, -0.00749969482421875, 0.0173492431640625, 0.0219268798828125, -0.0249176025390625, 0.0120697021484375, -0.01074981689453125, -0.0018825531005859375, -0.023712158203125, 0.01175689697265625, -0.0060882568359375, -0.018035888671875, -0.01194000244140625, -0.036041259765625, 0.00727081298828125, 0.0147247314453125, -0.0042572021484375, 0.01123809814453125, 0.02178955078125, -0.0186004638671875, 0.0043487548828125, -0.00446319580078125, -0.01544952392578125, 0.002349853515625, 0.0199432373046875, 0.004314422607421875, -0.01026153564453125, 0.04315185546875, -0.01506805419921875, -0.014434814453125, -0.061248779296875, -0.0289764404296875, -0.0277557373046875, 0.039031982421875, -0.0030269622802734375, -0.006908416748046875, 0.0276641845703125, 0.01454925537109375, -0.07916259765625, -0.000980377197265625, -0.048126220703125, 0.04638671875, -0.06268310546875, -0.044586181640625, -0.01377105712890625, -0.0020885467529296875, 0.004825592041015625, -0.022430419921875, -0.004108428955078125, -0.02178955078125, 0.0143585205078125, -0.01073455810546875, -0.017364501953125, -0.00804901123046875, -0.043914794921875, -0.0498046875, 0.0005407333374023438, 0.0184326171875, -0.0465087890625, -0.004535675048828125, 0.0312347412109375, 0.0118865966796875, 0.0123138427734375, -0.0034122467041015625, -0.0191650390625, -0.01235198974609375, -0.01175689697265625, 0.0011873245239257812, 0.10150146484375, -0.01163482666015625, -0.01375579833984375, -0.01503753662109375, -0.0201416015625, -0.0260162353515625, 0.0262603759765625, 0.0298309326171875, 0.002033233642578125, 0.01210784912109375, 0.036407470703125, -0.05340576171875, -0.03594970703125, -0.0304718017578125, -0.0226287841796875, -0.008697509765625, -0.08453369140625, -0.02691650390625, -0.028045654296875, 0.06414794921875, 0.0271759033203125, 0.0056304931640625, -0.01617431640625, 0.01342010498046875, 0.05194091796875, -0.0276947021484375, 0.022857666015625, 0.0213165283203125, -0.02874755859375, -0.003505706787109375, -0.0010557174682617188, -0.022918701171875, -0.0165252685546875, -0.02276611328125, -0.0504150390625, 0.0196685791015625, -0.038330078125, -0.007526397705078125, -0.0318603515625, 0.006900787353515625, 0.07525634765625, -0.048248291015625, -0.007358551025390625, 0.0171661376953125, 0.0078887939453125, 0.0289764404296875, -0.01214599609375, -0.0115814208984375, 0.019989013671875, -0.001224517822265625, -0.00595855712890625, 0.037139892578125, -0.0157928466796875, 0.023162841796875, 0.0152740478515625, -0.005840301513671875, 0.033416748046875, -0.00363922119140625, 0.02227783203125, -0.0222015380859375, 0.06683349609375, 0.0174560546875, 0.07421875, -0.0330810546875, 0.0044097900390625, -0.0179443359375, 0.036590576171875, -0.0233154296875, 0.01033782958984375, 0.06060791015625, -0.041839599609375, -0.007411956787109375, 0.034149169921875, -0.01428985595703125, -0.02581787109375, -0.004741668701171875, -0.0230865478515625, 0.04376220703125, -0.007190704345703125 ]
9ef4a3c9dc42ecb26d9904d129a757f660528f9a
Wordpress Stackexchange Q: How can I define a custom template for woocommerce [products] shortcode? WooCommerce [products] shortcode has many features but lacks some 'template' feature. How can I define custom template like this: [products class="simple-list"] A: Open your theme's function.php and add following add_action( 'woocommerce_shortcode_before_products_loop', 'roka_before_products_shortcode_loop', 1, 10 ); add_action( 'woocommerce_shortcode_after_products_loop', 'roka_after_products_shortcode_loop', 0, 10 ); function roka_before_products_shortcode_loop( $atts ) { $GLOBALS[ 'roka_woocommerce_loop_template' ] = ( isset( $atts[ 'class' ] ) ? $atts[ 'class' ] : '' ); } function roka_after_products_shortcode_loop( $atts ) { $GLOBALS[ 'roka_woocommerce_loop_template' ] = ''; } Then override the file content-product.php by copying it to your theme's woocommerce folder. find the line <li <?php post_class(); ?>> and add following after that: <?php if( isset( $GLOBALS[ 'roka_woocommerce_loop_template' ] ) && $GLOBALS[ 'roka_woocommerce_loop_template' ] == 'simple-list' ) { echo '<a href="' . get_the_permalink() . '">' . get_the_title() . '</a>'; return; } ?>
Q: How can I define a custom template for woocommerce [products] shortcode? WooCommerce [products] shortcode has many features but lacks some 'template' feature. How can I define custom template like this: [products class="simple-list"] A: Open your theme's function.php and add following add_action( 'woocommerce_shortcode_before_products_loop', 'roka_before_products_shortcode_loop', 1, 10 ); add_action( 'woocommerce_shortcode_after_products_loop', 'roka_after_products_shortcode_loop', 0, 10 ); function roka_before_products_shortcode_loop( $atts ) { $GLOBALS[ 'roka_woocommerce_loop_template' ] = ( isset( $atts[ 'class' ] ) ? $atts[ 'class' ] : '' ); } function roka_after_products_shortcode_loop( $atts ) { $GLOBALS[ 'roka_woocommerce_loop_template' ] = ''; } Then override the file content-product.php by copying it to your theme's woocommerce folder. find the line <li <?php post_class(); ?>> and add following after that: <?php if( isset( $GLOBALS[ 'roka_woocommerce_loop_template' ] ) && $GLOBALS[ 'roka_woocommerce_loop_template' ] == 'simple-list' ) { echo '<a href="' . get_the_permalink() . '">' . get_the_title() . '</a>'; return; } ?>
wordpress
{ "language": "en", "length": 141, "provenance": "stackexchange_00019.jsonl.gz:483350", "question_score": "5", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/291936" }
[ -0.005558013916015625, -0.009002685546875, -0.01259613037109375, -0.0504150390625, 0.002033233642578125, 0.006809234619140625, 0.0047454833984375, -0.0027637481689453125, -0.01274871826171875, 0.005146026611328125, -0.0033855438232421875, 0.0220184326171875, -0.055908203125, -0.019378662109375, 0.010101318359375, -0.018280029296875, 0.052215576171875, -0.0078887939453125, 0.056976318359375, 0.0017309188842773438, -0.002544403076171875, 0.03228759765625, 0.0200042724609375, 0.07879638671875, 0.01544189453125, -0.055206298828125, 0.10723876953125, -0.023284912109375, 0.0133514404296875, -0.038330078125, 0.016082763671875, 0.0288543701171875, 0.062286376953125, -0.022735595703125, -0.033233642578125, 0.01532745361328125, -0.0052032470703125, -0.00933074951171875, -0.0159454345703125, -0.0009055137634277344, 0.0304412841796875, -0.017333984375, 0.006252288818359375, 0.004611968994140625, -0.024261474609375, -0.0177001953125, 0.0167694091796875, -0.01529693603515625, 0.01450347900390625, -0.01132965087890625, 0.0033702850341796875, 0.003620147705078125, 0.006778717041015625, -0.017852783203125, -0.01143646240234375, 0.0219879150390625, -0.042816162109375, -0.03167724609375, 0.0194244384765625, 0.04486083984375, 0.01678466796875, -0.034942626953125, 0.0084686279296875, -0.021881103515625, 0.0195159912109375, -0.003002166748046875, 0.0125885009765625, 0.045928955078125, -0.02728271484375, 0.005146026611328125, 0.01361083984375, -0.0241546630859375, -0.00783538818359375, -0.018951416015625, 0.00508880615234375, -0.006134033203125, 0.01506805419921875, -0.0227203369140625, -0.017913818359375, 0.036834716796875, -0.00977325439453125, -0.0155181884765625, -0.0096893310546875, -0.03692626953125, 0.0247955322265625, -0.01087188720703125, -0.01239013671875, 0.0120849609375, 0.01551055908203125, -0.0487060546875, -0.00945281982421875, 0.00396728515625, 0.0020046234130859375, -0.0068511962890625, -0.048553466796875, -0.043121337890625, -0.00876617431640625, 0.024627685546875, 0.01593017578125, 0.047027587890625, -0.0026760101318359375, -0.0421142578125, 0.04931640625, -0.035064697265625, -0.0105438232421875, 0.00567626953125, -0.00394439697265625, 0.043701171875, 0.04754638671875, 0.048187255859375, -0.0023345947265625, -0.0007586479187011719, -0.0170745849609375, -0.009124755859375, -0.035888671875, 0.010498046875, -0.04071044921875, -0.00881195068359375, 0.0048065185546875, 0.004177093505859375, 0.03271484375, 0.045867919921875, 0.08197021484375, -0.0216522216796875, -0.01611328125, 0.019073486328125, -0.0171966552734375, -0.1171875, 0.0283660888671875, 0.0242462158203125, -0.0321044921875, -0.0200042724609375, 0.0219879150390625, 0.0504150390625, 0.024810791015625, -0.022979736328125, 0.02459716796875, 0.054779052734375, -0.00852203369140625, -0.0024776458740234375, 0.017578125, 0.00024080276489257812, -0.0226593017578125, 0.00089263916015625, 0.0408935546875, 0.0107269287109375, 0.01294708251953125, 0.03338623046875, 0.0167999267578125, -0.035247802734375, 0.0572509765625, 0.0005259513854980469, 0.0012998580932617188, 0.03668212890625, 0.01152801513671875, 0.0193634033203125, 0.01763916015625, -0.0016469955444335938, -0.003753662109375, -0.0141448974609375, -0.048828125, -0.026092529296875, 0.007656097412109375, -0.0859375, -0.080810546875, 0.030426025390625, 0.0084381103515625, -0.0031337738037109375, 0.024139404296875, 0.05145263671875, 0.03997802734375, -0.004222869873046875, -0.01837158203125, 0.026824951171875, 0.002452850341796875, -0.020965576171875, -0.02093505859375, -0.00298309326171875, 0.055419921875, -0.027099609375, -0.019439697265625, -0.036163330078125, 0.052734375, -0.00701141357421875, -0.071533203125, -0.0007333755493164062, 0.0290679931640625, 0.07574462890625, 0.0173187255859375, 0.020263671875, 0.0599365234375, -0.0169525146484375, -0.0338134765625, 0.026580810546875, 0.0088653564453125, -0.029205322265625, -0.0290069580078125, 0.0033626556396484375, -0.022705078125, -0.013763427734375, -0.003986358642578125, 0.002811431884765625, 0.021881103515625, 0.00031948089599609375, -0.0179595947265625, 0.036346435546875, -0.021026611328125, 0.036712646484375, -0.02056884765625, 0.0076904296875, 0.0374755859375, 0.02398681640625, -0.042144775390625, -0.036041259765625, -0.01334381103515625, 0.0259857177734375, -0.008148193359375, 0.06695556640625, 0.0224456787109375, 0.030609130859375, 0.04571533203125, -0.0419921875, 0.04608154296875, 0.0172119140625, 0.011993408203125, 0.0130615234375, -0.0281982421875, -0.0027027130126953125, -0.0203857421875, 0.04083251953125, -0.056427001953125, 0.0098114013671875, -0.006732940673828125, -0.029327392578125, -0.039520263671875, 0.01259613037109375, -0.005908966064453125, -0.01824951171875, -0.0153045654296875, 0.036834716796875, 0.03314208984375, 0.040802001953125, -0.00028204917907714844, -0.013153076171875, 0.0863037109375, 0.01198577880859375, 0.0225830078125, -0.018524169921875, -0.006103515625, 0.043182373046875, 0.00850677490234375, 0.03167724609375, -0.0015583038330078125, 0.0079345703125, -0.0024261474609375, 0.0177001953125, -0.030120849609375, -0.00406646728515625, 0.01045989990234375, 0.0143890380859375, -0.0117645263671875, 0.0138397216796875, 0.01983642578125, -0.00820159912109375, 0.059967041015625, 0.0232086181640625, 0.06011962890625, 0.032806396484375, -0.043731689453125, 0.01016998291015625, 0.016876220703125, 0.0201263427734375, -0.00676727294921875, 0.006855010986328125, -0.017974853515625, 0.0007228851318359375, -0.0484619140625, 0.0138092041015625, 0.0291900634765625, -0.016937255859375, 0.01824951171875, 0.053680419921875, -0.01406097412109375, -0.011871337890625, -0.018096923828125, -0.06781005859375, -0.010986328125, 0.0384521484375, 0.007457733154296875, -0.022369384765625, 0.00830078125, 0.01413726806640625, -0.048858642578125, 0.054412841796875, -0.0010623931884765625, -0.037689208984375, 0.04791259765625, -0.018035888671875, 0.04144287109375, -0.045074462890625, 0.038116455078125, 0.039947509765625, -0.04693603515625, 0.0273284912109375, 0.006809234619140625, 0.01061248779296875, 0.0018482208251953125, -0.00679779052734375, -0.01447296142578125, -0.02020263671875, -0.00818634033203125, 0.033935546875, 0.037567138671875, 0.08642578125, 0.005855560302734375, -0.03900146484375, 0.01194000244140625, 0.06298828125, 0.0002884864807128906, -0.0305023193359375, 0.05535888671875, -0.0577392578125, 0.0312347412109375, -0.0333251953125, -0.0244293212890625, -0.055511474609375, 0.006244659423828125, 0.004817962646484375, -0.017791748046875, -0.0224456787109375, -0.0155029296875, -0.056915283203125, -0.056121826171875, -0.0149688720703125, 0.01311492919921875, 0.0073394775390625, -0.004917144775390625, 0.0254364013671875, -0.005458831787109375, -0.0173797607421875, 0.01497650146484375, 0.0237884521484375, -0.0186004638671875, -0.0161895751953125, 0.04034423828125, -0.0472412109375, -0.00399017333984375, -0.0007872581481933594, -0.038238525390625, 0.022125244140625, -0.019073486328125, -0.0109710693359375, -0.01495361328125, -0.01416015625, 0.010040283203125, 0.0252685546875, 0.0224151611328125, -0.01302337646484375, 0.0214996337890625, -0.053741455078125, -0.058074951171875, 0.00628662109375, -0.05975341796875, 0.04052734375, 0.04315185546875, -0.009674072265625, -0.006404876708984375, 0.01361083984375, 0.0096282958984375, 0.0002493858337402344, 0.0142669677734375, -0.0157470703125, -0.00249481201171875, 0.01216888427734375, 0.01300811767578125, -0.0112762451171875, 0.03814697265625, -0.023681640625, -0.0179443359375, 0.01959228515625, 0.0004601478576660156, 0.01041412353515625, -0.007747650146484375, -0.010650634765625, -0.049652099609375, 0.06500244140625, -0.0175323486328125, 0.02490234375, -0.061279296875, -0.039154052734375, -0.00775909423828125, 0.08984375, -0.031646728515625, -0.022216796875, 0.004077911376953125, 0.0013952255249023438, 0.005855560302734375, 0.0090179443359375, -0.0328369140625, -0.030426025390625, -0.07464599609375, 0.022918701171875, -0.0184783935546875, -0.006591796875, -0.009307861328125, -0.004512786865234375, -0.0347900390625, -0.044403076171875, 0.00582122802734375, 0.01007080078125, 0.035400390625, 0.006397247314453125, -0.0155792236328125, 0.0286407470703125, 0.005489349365234375, -0.05908203125, -0.0450439453125, -0.0257415771484375, 0.0025234222412109375, 0.0819091796875, 0.03607177734375, -0.02264404296875, -0.031585693359375, 0.038726806640625, -0.01042938232421875, 0.0181884765625, -0.018157958984375, 0.0259552001953125, -0.0197601318359375, -0.00342559814453125, -0.021942138671875, -0.003787994384765625, 0.00687408447265625, 0.01018524169921875, -0.0029659271240234375, 0.02752685546875, -0.0250091552734375, -0.0216827392578125, 0.017486572265625, -0.035888671875, -0.09857177734375, -0.040069580078125, 0.05230712890625, 0.0258636474609375, -0.0008864402770996094, 0.029510498046875, -0.03607177734375, -0.06280517578125, 0.0277557373046875, -0.0220947265625, -0.03363037109375, 0.032012939453125, 0.0301666259765625, 0.0189971923828125, -0.01434326171875, -0.037384033203125, 0.0284881591796875, 0.042327880859375, -0.0069732666015625, 0.01119232177734375, 0.00406646728515625, -0.0279693603515625, 0.041229248046875, 0.0022830963134765625, -0.0038604736328125, 0.0206298828125, 0.04876708984375, -0.01041412353515625, -0.024505615234375, 0.01355743408203125, -0.0299835205078125, -0.020477294921875, 0.01351165771484375, 0.0070648193359375, 0.0034008026123046875, 0.004619598388671875, 0.0013408660888671875, 0.02740478515625, -0.02191162109375, -0.01288604736328125, -0.036712646484375, 0.00359344482421875, -0.0084686279296875, -0.005641937255859375, 0.02423095703125, 0.004833221435546875, -0.0030460357666015625, -0.01444244384765625, 0.0012254714965820312, -0.00738525390625, -0.0423583984375, 0.002208709716796875, 0.004596710205078125, 0.002674102783203125, -0.00762939453125, 0.030609130859375, 0.00496673583984375, 0.0167236328125, 0.01502227783203125, -0.0044403076171875, -0.0452880859375, -0.01235198974609375, -0.046173095703125, -0.033233642578125, -0.036468505859375, 0.04974365234375, 0.043731689453125, -0.002349853515625, 0.00458526611328125, -0.072998046875, 0.00823211669921875, -0.044921875, 0.01435089111328125, 0.0213623046875, -0.005859375, -0.0012912750244140625, 0.036895751953125, 0.01506805419921875, 0.0104522705078125, -0.001239776611328125, 0.03631591796875, 0.03717041015625, 0.046966552734375, 0.01222991943359375, -0.024658203125, -0.0262603759765625, 0.0270233154296875, -0.027618408203125, -0.053131103515625, -0.03936767578125, 0.0294342041015625, 0.0748291015625, -0.042144775390625, -0.029937744140625, 0.01238250732421875, -0.04730224609375, -0.0253143310546875, -0.00025010108947753906, -0.0165557861328125, -0.0009551048278808594, -0.0328369140625, -0.0037746429443359375, 0.047576904296875, 0.0362548828125, -0.003826141357421875, -0.0021209716796875, -0.038604736328125, -0.01200103759765625, 0.00652313232421875, -0.028167724609375, -0.005443572998046875, -0.0038471221923828125, -0.01136016845703125, 0.01136016845703125, 0.0181121826171875, -0.049163818359375, -0.0439453125, -0.01241302490234375, -0.0066986083984375, 0.04254150390625, -0.0242919921875, 0.060302734375, -0.04052734375, -0.0287933349609375, -0.07159423828125, 0.0149078369140625, 0.04193115234375, 0.056488037109375, -0.0241241455078125, -0.007648468017578125, -0.01515960693359375, -0.0218353271484375, 0.0106353759765625, -0.0204010009765625, -0.032318115234375, -0.0030364990234375, -0.005893707275390625, 0.02923583984375, -0.035552978515625, -0.0379638671875, -0.0020465850830078125, 0.00597381591796875, -0.01136016845703125, 0.05133056640625, -0.0005030632019042969, 0.0034656524658203125, 0.03131103515625, 0.04278564453125, 0.0130615234375, -0.03228759765625, -0.0279083251953125, -0.0250244140625, 0.01421356201171875, -0.0173492431640625, -0.0401611328125, -0.04058837890625, -0.017242431640625, 0.05072021484375, 0.0894775390625, -0.0015811920166015625, -0.0034046173095703125, -0.004222869873046875, 0.006618499755859375, -0.0172882080078125, 0.0018138885498046875, -0.021697998046875, -0.045501708984375, 0.03265380859375, -0.0247802734375, 0.00748443603515625, -0.00786590576171875, -0.048828125, 0.051300048828125, -0.019775390625, 0.02801513671875, 0.0279998779296875, -0.039642333984375, 0.0894775390625, 0.06573486328125, -0.012298583984375, 0.01678466796875, 0.004177093505859375, -0.031280517578125, -0.025115966796875, 0.048004150390625, -0.0065460205078125, -0.017120361328125, 0.0748291015625, 0.01026153564453125, -0.037689208984375, 0.0423583984375, -0.0416259765625, 0.025115966796875, 0.072265625, 0.0908203125, -0.06878662109375, -0.00836944580078125, 0.033905029296875, -0.031829833984375, -0.01331329345703125, 0.02032470703125, -0.0186614990234375, -0.0086669921875, 0.040618896484375, -0.038543701171875, 0.0029773712158203125, 0.02093505859375, -0.006053924560546875, 0.01824951171875, -0.0232696533203125, 0.08099365234375, 0.01090240478515625, -0.024078369140625, -0.0231781005859375, 0.004993438720703125, -0.0015316009521484375, -0.0357666015625, 0.03521728515625, -0.0290985107421875, 0.01512908935546875, -0.003421783447265625, 0.05206298828125, -0.01555633544921875, 0.042388916015625, 0.038116455078125, 0.0120697021484375, -0.0259552001953125, 0.025634765625, -0.01812744140625, 0.040679931640625, -0.01375579833984375, -0.0309906005859375, 0.0196380615234375, -0.0118255615234375, 0.00861358642578125, 0.017303466796875, -0.06201171875, -0.003292083740234375, -0.0484619140625, 0.0294647216796875, -0.014678955078125, 0.0093994140625, 0.06298828125, -0.005512237548828125, -0.0262908935546875, 0.037261962890625, 0.032135009765625, -0.0232696533203125, 0.006153106689453125, 0.03570556640625, -0.0311279296875, 0.00940704345703125, 0.01861572265625, -0.0195159912109375, -0.05401611328125, -0.006988525390625, -0.08148193359375, 0.0775146484375, -0.0159454345703125, 0.0188751220703125, 0.004665374755859375, 0.02490234375, -0.004711151123046875, -0.01004791259765625, -0.00835418701171875, 0.007625579833984375, 0.0201263427734375, 0.040496826171875, -0.046142578125, -0.038848876953125, 0.018829345703125, 0.0985107421875, 0.03607177734375, 0.0028972625732421875, -0.00269317626953125, 0.006195068359375, 0.054290771484375, 0.0111846923828125, -0.031829833984375, 0.0127410888671875, -0.0293426513671875, 0.00637054443359375, 0.00841522216796875, -0.03326416015625, 0.01049041748046875, -0.0000407099723815918, -0.0272064208984375, 0.0027923583984375, 0.0080413818359375, 0.00152587890625, 0.03424072265625, 0.05035400390625, -0.0124359130859375, 0.0038967132568359375, 0.0157318115234375, -0.0281982421875, 0.005218505859375, 0.0207977294921875, -0.01287841796875, -0.0177459716796875, -0.01490020751953125, -0.0303802490234375, 0.021636962890625, -0.0294189453125, 0.02862548828125, 0.0462646484375, 0.0146331787109375, 0.060394287109375, 0.0225677490234375, 0.023162841796875, 0.0243377685546875, 0.001918792724609375, 0.01047515869140625, -0.0016336441040039062, -0.0034236907958984375, -0.0172271728515625, 0.05255126953125, 0.01369476318359375, -0.01422119140625, -0.044281005859375, -0.003536224365234375, 0.0107269287109375, 0.0030670166015625, -0.02587890625, -0.042266845703125, -0.0275421142578125, -0.034423828125, -0.0063934326171875, -0.034149169921875, -0.006320953369140625, 0.0182952880859375, 0.0272064208984375, -0.00008779764175415039, 0.0076904296875, -0.0258941650390625, -0.01788330078125, -0.045501708984375, 0.02593994140625, 0.020843505859375, 0.07598876953125, 0.0094757080078125, 0.0670166015625, -0.059234619140625, -0.051422119140625, -0.00884246826171875, 0.01233673095703125, -0.006916046142578125, 0.000637054443359375, -0.03900146484375, -0.0164337158203125, -0.016357421875, 0.04791259765625, 0.039520263671875, 0.002979278564453125, -0.003387451171875, -0.0012865066528320312, 0.037994384765625, 0.0026264190673828125, -0.0001780986785888672, -0.0083465576171875, 0.00439453125, 0.00264739990234375, -0.00017595291137695312, -0.00337982177734375, -0.0164337158203125, -0.0292205810546875, 0.05694580078125, 0.0079498291015625, -0.056365966796875, 0.05950927734375, -0.02191162109375, -0.025970458984375, 0.034759521484375, -0.0237884521484375, 0.09991455078125, -0.0119171142578125, -0.050201416015625, 0.007297515869140625, -0.037811279296875, -0.0810546875, 0.03912353515625, 0.059539794921875, -0.03851318359375, 0.0172271728515625, -0.037139892578125, -0.0023136138916015625, 0.0019006729125976562, 0.0290679931640625, -0.027801513671875, -0.004711151123046875, 0.0316162109375, -0.03448486328125, -0.048431396484375, -0.007537841796875, -0.038482666015625, 0.0145721435546875, 0.049896240234375, 0.0240020751953125, 0.0039520263671875, 0.049591064453125, -0.03802490234375, 0.004364013671875, -0.01666259765625, -0.0426025390625, 0.06103515625, 0.02239990234375, 0.0013675689697265625, -0.0208282470703125, 0.003025054931640625, 0.0022792816162109375, 0.055572509765625, -0.054779052734375, 0.007503509521484375, -0.0195465087890625, 0.0181121826171875, -0.047943115234375, 0.0233917236328125, -0.025146484375, -0.04815673828125, -0.032196044921875, 0.032318115234375, -0.0102081298828125, -0.00762176513671875, -0.022430419921875, 0.027679443359375, -0.0016727447509765625, -0.018890380859375, 0.022003173828125, -0.0227203369140625, 0.037872314453125, 0.029815673828125, -0.01047515869140625, -0.008148193359375, -0.00732421875, -0.0240936279296875, 0.019378662109375, -0.009918212890625, 0.022552490234375, -0.006500244140625, -0.034210205078125, 0.0240020751953125, 0.032867431640625, -0.0028972625732421875, -0.0460205078125, -0.00682830810546875, 0.08392333984375, -0.04876708984375, -0.039794921875, 0.0005412101745605469, -0.035797119140625, -0.029998779296875, 0.023681640625, 0.01509857177734375, 0.0099945068359375, -0.0148773193359375, -0.050140380859375, -0.0306854248046875, 0.0223541259765625, 0.017669677734375, -0.049652099609375, -0.01401519775390625, 0.01210784912109375, 0.029052734375, -0.0141754150390625, -0.0198822021484375, 0.01496124267578125, 0.00244903564453125, -0.020294189453125, -0.00872039794921875, -0.0281524658203125, -0.002445220947265625, -0.0140533447265625, 0.01053619384765625, 0.017608642578125, -0.0146026611328125, -0.040740966796875, -0.01245880126953125, -0.007297515869140625, 0.045745849609375, 0.0110015869140625, -0.02520751953125, 0.055328369140625, -0.0072174072265625, -0.0229949951171875, -0.0926513671875, -0.022247314453125, -0.0933837890625, 0.0499267578125, 0.039764404296875, -0.0231475830078125, 0.01212310791015625, -0.030914306640625, -0.03759765625, 0.04931640625, 0.01593017578125, -0.027801513671875, -0.04248046875, 0.0037975311279296875, -0.01453399658203125, 0.0300140380859375, -0.002346038818359375, -0.040130615234375, -0.0203094482421875, 0.03814697265625, 0.00814056396484375, 0.006610870361328125, 0.046234130859375, 0.01702880859375, 0.00498199462890625, -0.00569915771484375, -0.027984619140625, -0.04266357421875, 0.05133056640625, -0.0277557373046875, 0.0185546875, 0.0099945068359375, -0.056884765625, -0.0312347412109375, -0.0379638671875, -0.01219940185546875, 0.00513458251953125, -0.0189208984375, -0.027496337890625, -0.0479736328125, 0.040435791015625, 0.0085296630859375, 0.0033931732177734375, 0.01000213623046875, -0.00605010986328125, 0.006011962890625, -0.01398468017578125, -0.006046295166015625, 0.0199737548828125, -0.05804443359375, -0.0264129638671875, 0.01494598388671875, -0.0135345458984375, -0.0088958740234375, -0.0095977783203125, -0.066162109375, 0.004909515380859375, -0.037353515625, 0.0028076171875, -0.06488037109375, 0.01120758056640625, 0.021270751953125, -0.0135650634765625, 0.0238494873046875, -0.026336669921875, 0.0057373046875, 0.009185791015625, -0.035797119140625, 0.01224517822265625, 0.00817108154296875, -0.048614501953125, -0.0016202926635742188, 0.00946044921875, 0.013458251953125, -0.0252838134765625, -0.00800323486328125, -0.015716552734375, 0.0067138671875, 0.0077362060546875, -0.00998687744140625, -0.0312347412109375, 0.0435791015625, -0.003955841064453125, 0.106201171875, 0.00243377685546875, 0.052459716796875, 0.01389312744140625, 0.0284271240234375, -0.02801513671875, 0.0011548995971679688, -0.0025615692138671875, -0.03546142578125, 0.00005251169204711914, -0.00799560546875, -0.01904296875, -0.045806884765625, 0.000042438507080078125, 0.01251220703125, 0.0093536376953125, 0.009002685546875 ]
da8ae79a19b514ec7a6ffd7c031ee03ab2312ff8
Wordpress Stackexchange Q: To Disable Wordpress Rest API or Not To Disable? I have my blog self hosted running WordPress and I Do NOT need the Wp-Rest API. But as it turns out disabling it is causing to Contact Form 7 To not work. Contact form 7 simply shows the spinning circle infinitely. As I read on wpbeginner (link here) that disabling will boost security. So my question is if I leave it enabled, which I intend to do. What safety precautions should I take? Thanks A: You personally might not need or rely on the WP REST API, but clearly Contact Form 7 does. And so does WordPress core. Especially future versions (think Gutenberg) will heavily rely on the REST API and won‘t work without it. There might be plugins that disable the API, but that‘s at your own risk and certainly doesn‘t make your site suddenly secure. It might decrease the possible attack surface, sure, but at the cost of breaking all parts that rely on the API. tl;dr: There‘s no point in disabling the WordPress REST API.
Q: To Disable Wordpress Rest API or Not To Disable? I have my blog self hosted running WordPress and I Do NOT need the Wp-Rest API. But as it turns out disabling it is causing to Contact Form 7 To not work. Contact form 7 simply shows the spinning circle infinitely. As I read on wpbeginner (link here) that disabling will boost security. So my question is if I leave it enabled, which I intend to do. What safety precautions should I take? Thanks A: You personally might not need or rely on the WP REST API, but clearly Contact Form 7 does. And so does WordPress core. Especially future versions (think Gutenberg) will heavily rely on the REST API and won‘t work without it. There might be plugins that disable the API, but that‘s at your own risk and certainly doesn‘t make your site suddenly secure. It might decrease the possible attack surface, sure, but at the cost of breaking all parts that rely on the API. tl;dr: There‘s no point in disabling the WordPress REST API. A: In addition to the accepted answer, if you wish to keep your website secure even with WP REST API enabled, may I recommend Wordfence? I'm not affiliated with them, but we use them on all our sites as security measures. To read more about their WAF (Web Application Firewall) and counter-attack for REST API, have a look at this.
wordpress
{ "language": "en", "length": 238, "provenance": "stackexchange_00019.jsonl.gz:483376", "question_score": "5", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/292065" }
[ 0.061279296875, 0.0027942657470703125, -0.036041259765625, -0.0304107666015625, 0.01444244384765625, -0.054962158203125, 0.053192138671875, 0.0029621124267578125, 0.0458984375, -0.0008306503295898438, -0.01904296875, -0.039825439453125, 0.0016965866088867188, -0.03778076171875, -0.0077667236328125, -0.041961669921875, 0.0148162841796875, 0.0253753662109375, 0.01351165771484375, -0.0121307373046875, 0.015655517578125, -0.00945281982421875, -0.003864288330078125, 0.03143310546875, -0.00518035888671875, -0.0120697021484375, 0.045806884765625, -0.020294189453125, -0.01465606689453125, -0.02801513671875, 0.0067138671875, 0.0100555419921875, 0.0225677490234375, 0.060150146484375, -0.08935546875, -0.0174560546875, -0.00472259521484375, 0.018035888671875, -0.0299224853515625, 0.042724609375, -0.00461578369140625, 0.0027599334716796875, 0.002964019775390625, -0.041412353515625, -0.0311279296875, -0.0008034706115722656, -0.01885986328125, -0.007503509521484375, 0.013671875, 0.027313232421875, -0.01457977294921875, 0.0276336669921875, 0.0019855499267578125, -0.0173492431640625, -0.015350341796875, -0.050567626953125, 0.02130126953125, -0.005176544189453125, 0.021820068359375, -0.0076904296875, -0.00466156005859375, 0.01395416259765625, 0.0101318359375, 0.005786895751953125, 0.0501708984375, -0.0250701904296875, -0.0262603759765625, 0.031646728515625, -0.053009033203125, 0.07891845703125, 0.07232666015625, -0.07073974609375, 0.00443267822265625, -0.010345458984375, 0.0201416015625, -0.053863525390625, 0.0061187744140625, -0.04034423828125, 0.0091705322265625, 0.03887939453125, -0.004150390625, -0.0308990478515625, 0.0084228515625, -0.01444244384765625, -0.002460479736328125, 0.020050048828125, -0.000804901123046875, 0.0069580078125, -0.004306793212890625, -0.006328582763671875, -0.0097503662109375, -0.0487060546875, -0.0241851806640625, 0.026123046875, 0.01250457763671875, -0.03167724609375, 0.00568389892578125, -0.04278564453125, 0.0145263671875, -0.01348876953125, 0.055908203125, -0.056549072265625, 0.0255889892578125, 0.0103912353515625, 0.003398895263671875, 0.022125244140625, -0.00870513916015625, 0.00696563720703125, 0.046844482421875, 0.0201568603515625, 0.0017099380493164062, 0.058502197265625, 0.00426483154296875, 0.00577545166015625, -0.01453399658203125, -0.01439666748046875, -0.040069580078125, 0.0316162109375, -0.0117340087890625, 0.01244354248046875, -0.0321044921875, 0.0157623291015625, -0.0247650146484375, -0.00406646728515625, -0.002429962158203125, -0.0148162841796875, 0.002471923828125, 0.0145263671875, 0.02154541015625, -0.0076141357421875, -0.003322601318359375, 0.0194244384765625, 0.0261077880859375, 0.0316162109375, 0.0136260986328125, 0.002002716064453125, 0.01380157470703125, 0.01345062255859375, 0.01105499267578125, 0.01387786865234375, 0.01551055908203125, -0.041595458984375, -0.00978851318359375, 0.02239990234375, -0.00844573974609375, 0.0070037841796875, 0.02642822265625, 0.01557159423828125, 0.005550384521484375, 0.01180267333984375, -0.057373046875, 0.0321044921875, -0.0088653564453125, 0.0260009765625, 0.053192138671875, 0.014556884765625, 0.06512451171875, -0.0172882080078125, -0.007648468017578125, -0.009613037109375, -0.01473236083984375, -0.013519287109375, 0.035247802734375, -0.0218048095703125, -0.00487518310546875, -0.006893157958984375, -0.022003173828125, 0.006694793701171875, 0.01393890380859375, -0.00308990478515625, 0.0005211830139160156, -0.04693603515625, -0.037017822265625, 0.002918243408203125, 0.011810302734375, 0.041351318359375, 0.039947509765625, 0.0259552001953125, 0.01468658447265625, -0.004924774169921875, -0.0294342041015625, -0.0364990234375, 0.09735107421875, -0.045745849609375, -0.08905029296875, 0.1268310546875, -0.00916290283203125, 0.08154296875, -0.001178741455078125, -0.00954437255859375, 0.047088623046875, 0.0850830078125, 0.0157623291015625, 0.0257110595703125, 0.0015239715576171875, -0.0750732421875, -0.00774383544921875, -0.023834228515625, -0.0146331787109375, 0.005176544189453125, 0.0146636962890625, 0.001964569091796875, -0.00299072265625, -0.04840087890625, -0.05084228515625, -0.027984619140625, -0.007259368896484375, 0.033447265625, -0.035369873046875, 0.0306549072265625, 0.039886474609375, 0.01399993896484375, -0.06011962890625, 0.0640869140625, 0.0245361328125, -0.037841796875, -0.0227813720703125, 0.0540771484375, 0.0013475418090820312, 0.04412841796875, 0.016357421875, -0.03192138671875, 0.0296478271484375, 0.0028209686279296875, 0.01824951171875, -0.036376953125, 0.01311492919921875, -0.03704833984375, 0.05487060546875, -0.037139892578125, 0.0626220703125, 0.0263824462890625, 0.01255035400390625, 0.01470184326171875, -0.0272369384765625, -0.00787353515625, 0.0044403076171875, -0.0440673828125, 0.00688934326171875, 0.050140380859375, 0.0303497314453125, 0.007389068603515625, -0.01605224609375, -0.007640838623046875, 0.00409698486328125, -0.07196044921875, -0.005214691162109375, 0.00937652587890625, 0.0156402587890625, 0.014495849609375, 0.003307342529296875, -0.0239715576171875, 0.032501220703125, -0.018218994140625, 0.002773284912109375, 0.0323486328125, -0.0399169921875, -0.05218505859375, 0.02752685546875, -0.042755126953125, 0.041717529296875, -0.0325927734375, -0.045501708984375, -0.00843048095703125, -0.03485107421875, 0.00396728515625, -0.006175994873046875, 0.01580810546875, -0.01177978515625, -0.0151824951171875, 0.0266265869140625, 0.00312042236328125, 0.0009512901306152344, 0.052642822265625, 0.06182861328125, 0.01204681396484375, -0.024322509765625, -0.042633056640625, 0.014862060546875, 0.05328369140625, -0.02459716796875, -0.005847930908203125, -0.0209503173828125, -0.0063629150390625, -0.0222930908203125, -0.0758056640625, 0.0168609619140625, 0.0185546875, 0.024169921875, 0.03631591796875, 0.0328369140625, 0.037078857421875, 0.018218994140625, 0.028778076171875, 0.0140228271484375, 0.0013666152954101562, -0.0168304443359375, 0.004825592041015625, 0.01513671875, -0.0162811279296875, 0.0185089111328125, 0.052978515625, -0.0098114013671875, 0.031402587890625, 0.009307861328125, -0.024688720703125, 0.01276397705078125, 0.0318603515625, 0.01306915283203125, 0.0016031265258789062, -0.0259857177734375, 0.0369873046875, 0.01153564453125, -0.01383209228515625, 0.00278472900390625, -0.0186614990234375, -0.01493072509765625, -0.004787445068359375, -0.07904052734375, -0.06451416015625, 0.025054931640625, -0.01727294921875, -0.011474609375, 0.0067901611328125, -0.0206451416015625, -0.01494598388671875, 0.02496337890625, -0.007793426513671875, -0.02056884765625, -0.010101318359375, -0.0302276611328125, -0.039794921875, -0.057159423828125, -0.01146697998046875, -0.0033016204833984375, 0.00945281982421875, 0.0009150505065917969, 0.06658935546875, 0.00013899803161621094, -0.0416259765625, -0.0014753341674804688, -0.027496337890625, -0.017669677734375, 0.003528594970703125, -0.048309326171875, 0.059478759765625, 0.0064239501953125, 0.016082763671875, -0.0160369873046875, 0.0011920928955078125, -0.01407623291015625, -0.0279541015625, 0.0124053955078125, -0.03704833984375, -0.0013952255249023438, 0.028533935546875, -0.008575439453125, -0.049041748046875, -0.0030460357666015625, -0.06201171875, -0.01343536376953125, -0.0242462158203125, -0.037750244140625, -0.048858642578125, 0.0124053955078125, 0.0167388916015625, -0.044281005859375, 0.01215362548828125, -0.0087127685546875, -0.0008921623229980469, 0.0006308555603027344, -0.05029296875, 0.07672119140625, -0.0050201416015625, -0.01898193359375, -0.01467132568359375, 0.0753173828125, -0.014495849609375, -0.0302581787109375, 0.0134735107421875, -0.049102783203125, -0.035675048828125, -0.0269927978515625, -0.04144287109375, -0.00612640380859375, 0.048553466796875, 0.00681304931640625, -0.03265380859375, 0.03594970703125, -0.01180267333984375, 0.039215087890625, 0.03955078125, -0.009429931640625, -0.0115509033203125, 0.01910400390625, 0.0281829833984375, -0.04205322265625, -0.04168701171875, -0.021240234375, -0.004924774169921875, 0.020782470703125, -0.008636474609375, -0.033233642578125, 0.0022716522216796875, 0.01171875, -0.041839599609375, 0.0350341796875, -0.0292510986328125, 0.0013227462768554688, -0.055389404296875, -0.010101318359375, -0.01381683349609375, -0.01508331298828125, -0.05157470703125, 0.0177154541015625, -0.058929443359375, -0.09124755859375, -0.010345458984375, 0.0035076141357421875, 0.06573486328125, 0.00376129150390625, -0.02227783203125, -0.0280303955078125, 0.0364990234375, 0.00023996829986572266, -0.0237579345703125, 0.0266876220703125, -0.0015048980712890625, -0.0012989044189453125, 0.06549072265625, 0.027069091796875, 0.004047393798828125, -0.024383544921875, -0.00165557861328125, -0.018829345703125, -0.006496429443359375, -0.004772186279296875, -0.0430908203125, 0.0309295654296875, -0.0223541259765625, -0.0570068359375, -0.0615234375, -0.046630859375, 0.0068206787109375, -0.02813720703125, 0.0051116943359375, -0.054107666015625, -0.0604248046875, 0.0208282470703125, -0.0302734375, -0.0126190185546875, 0.0078582763671875, 0.05712890625, 0.01898193359375, -0.0025482177734375, -0.039093017578125, 0.0095367431640625, 0.0248870849609375, 0.0197601318359375, 0.03509521484375, 0.0096435546875, -0.0201568603515625, 0.055267333984375, 0.019012451171875, 0.000028312206268310547, 0.00452423095703125, 0.0225677490234375, 0.00678253173828125, -0.01021575927734375, 0.01137542724609375, 0.0125579833984375, -0.0239715576171875, 0.01824951171875, 0.029052734375, -0.0267486572265625, 0.06671142578125, 0.031707763671875, -0.046600341796875, 0.001567840576171875, 0.0092010498046875, -0.033416748046875, 0.02142333984375, -0.00933074951171875, -0.00147247314453125, -0.0004982948303222656, 0.011993408203125, -0.005161285400390625, -0.008697509765625, -0.017547607421875, -0.023193359375, -0.004428863525390625, -0.021087646484375, 0.0035400390625, 0.004131317138671875, -0.024688720703125, -0.03289794921875, -0.026031494140625, 0.075927734375, 0.0089569091796875, -0.060882568359375, 0.0394287109375, -0.0096893310546875, 0.010223388671875, 0.031829833984375, 0.0067138671875, 0.027679443359375, 0.0103912353515625, 0.0031719207763671875, -0.0029888153076171875, -0.00323486328125, -0.003856658935546875, -0.029998779296875, 0.00980377197265625, 0.01273345947265625, -0.0156707763671875, -0.034820556640625, 0.06280517578125, 0.011566162109375, 0.01117706298828125, -0.00867462158203125, 0.014129638671875, 0.006427764892578125, 0.0079498291015625, 0.01690673828125, 0.0029754638671875, 0.0220794677734375, -0.03228759765625, 0.028472900390625, -0.06402587890625, -0.03912353515625, 0.058197021484375, 0.076171875, 0.0189361572265625, -0.013580322265625, -0.0300445556640625, -0.004016876220703125, 0.00007855892181396484, 0.0501708984375, -0.00974273681640625, -0.02252197265625, -0.033905029296875, -0.0036067962646484375, 0.039337158203125, -0.022216796875, 0.01373291015625, -0.0031795501708984375, 0.02728271484375, 0.0008893013000488281, 0.0306854248046875, -0.03839111328125, 0.005474090576171875, 0.0194091796875, 0.047943115234375, -0.0291290283203125, -0.043701171875, 0.0291900634765625, 0.0318603515625, -0.0308685302734375, 0.0013570785522460938, 0.0333251953125, -0.033447265625, -0.01528167724609375, -0.006206512451171875, 0.0279388427734375, -0.0321044921875, 0.0345458984375, 0.0157470703125, 0.01263427734375, -0.02838134765625, -0.01751708984375, -0.033447265625, -0.035888671875, -0.0012025833129882812, 0.005184173583984375, -0.0469970703125, 0.0027751922607421875, 0.01345062255859375, 0.01361846923828125, -0.006992340087890625, -0.01506805419921875, -0.0253143310546875, 0.03192138671875, 0.021728515625, 0.05303955078125, -0.032806396484375, 0.058929443359375, -0.01274871826171875, 0.05120849609375, 0.00963592529296875, 0.016143798828125, -0.026580810546875, -0.00887298583984375, 0.028106689453125, -0.0594482421875, -0.043182373046875, -0.043609619140625, -0.0146484375, 0.0389404296875, 0.0322265625, -0.007099151611328125, 0.0128021240234375, -0.0269927978515625, 0.003086090087890625, -0.01541900634765625, 0.04095458984375, -0.05084228515625, 0.0019245147705078125, 0.0027751922607421875, 0.0253448486328125, 0.037933349609375, -0.051422119140625, -0.058807373046875, 0.0292205810546875, 0.0299224853515625, 0.0271759033203125, 0.00298309326171875, -0.0161590576171875, 0.047271728515625, 0.08026123046875, -0.0005364418029785156, 0.04180908203125, 0.03424072265625, 0.0007672309875488281, 0.01174163818359375, 0.053619384765625, -0.01482391357421875, -0.056396484375, -0.03924560546875, -0.0029010772705078125, -0.0013027191162109375, -0.045501708984375, -0.005069732666015625, 0.039825439453125, 0.05908203125, 0.10357666015625, -0.091796875, 0.01209259033203125, 0.023956298828125, -0.01654052734375, 0.037628173828125, -0.04541015625, -0.01580810546875, -0.048187255859375, 0.066162109375, -0.0233612060546875, -0.034332275390625, -0.003948211669921875, -0.0283660888671875, -0.0044708251953125, -0.001384735107421875, 0.0423583984375, 0.024627685546875, 0.02130126953125, -0.0011768341064453125, -0.0182037353515625, 0.049346923828125, -0.004306793212890625, 0.01329803466796875, -0.007068634033203125, -0.053466796875, -0.0892333984375, -0.01702880859375, 0.023590087890625, -0.0673828125, -0.018310546875, 0.003543853759765625, 0.0219573974609375, 0.05914306640625, -0.020660400390625, 0.0007781982421875, 0.02880859375, 0.00527191162109375, -0.01325225830078125, -0.05987548828125, 0.01511383056640625, 0.05950927734375, -0.0282440185546875, 0.034576416015625, 0.04595947265625, -0.055450439453125, -0.019256591796875, -0.00957489013671875, 0.0919189453125, -0.01194000244140625, -0.031494140625, -0.006008148193359375, 0.0252838134765625, 0.0031757354736328125, -0.03607177734375, 0.042327880859375, -0.04095458984375, -0.0001583099365234375, -0.01453399658203125, 0.005687713623046875, 0.0003299713134765625, -0.0347900390625, 0.00043392181396484375, 0.09027099609375, -0.04266357421875, -0.0281982421875, 0.0255279541015625, 0.0577392578125, -0.00844573974609375, 0.058135986328125, 0.0102386474609375, 0.032562255859375, 0.00274658203125, -0.005157470703125, 0.00980377197265625, -0.00615692138671875, 0.006175994873046875, 0.035186767578125, 0.0552978515625, 0.004550933837890625, -0.0140533447265625, -0.018890380859375, 0.030548095703125, 0.0263214111328125, -0.0221710205078125, 0.02838134765625, -0.0367431640625, 0.0302734375, 0.0198974609375, -0.039764404296875, 0.00670623779296875, 0.0276336669921875, -0.057708740234375, 0.00638580322265625, 0.01580810546875, 0.01241302490234375, -0.00354766845703125, 0.059814453125, 0.029449462890625, -0.0159759521484375, -0.00618743896484375, -0.0134124755859375, -0.071044921875, 0.032562255859375, -0.032623291015625, -0.04986572265625, 0.028900146484375, -0.06072998046875, 0.02374267578125, -0.005313873291015625, 0.0121917724609375, 0.0206146240234375, 0.0379638671875, -0.0044708251953125, -0.0170135498046875, 0.01183319091796875, 0.033660888671875, -0.0601806640625, 0.007717132568359375, 0.0099639892578125, 0.050048828125, 0.0082244873046875, -0.0016145706176757812, -0.006778717041015625, -0.0014095306396484375, -0.018707275390625, -0.030914306640625, 0.01363372802734375, 0.0240478515625, 0.032806396484375, -0.018218994140625, 0.03350830078125, -0.0068359375, 0.0223236083984375, -0.0032291412353515625, 0.0145111083984375, 0.006072998046875, 0.00308990478515625, 0.012115478515625, 0.0673828125, -0.04833984375, 0.01361083984375, -0.006565093994140625, -0.0201416015625, -0.0113372802734375, 0.01261138916015625, 0.013580322265625, 0.00835418701171875, -0.0212554931640625, -0.0018711090087890625, -0.022613525390625, 0.0235748291015625, 0.0096588134765625, 0.0099029541015625, -0.0210113525390625, -0.0421142578125, 0.0271453857421875, 0.018310546875, 0.0158538818359375, 0.054351806640625, 0.06756591796875, 0.04364013671875, -0.0242462158203125, -0.0013523101806640625, 0.056427001953125, -0.0128021240234375, -0.0196075439453125, -0.033447265625, -0.0312042236328125, 0.01361846923828125, -0.01096343994140625, 0.0223236083984375, -0.0137481689453125, 0.0213775634765625, 0.003787994384765625, 0.0180511474609375, 0.00824737548828125, -0.024078369140625, 0.002399444580078125, 0.01085662841796875, 0.033416748046875, 0.0230560302734375, -0.055938720703125, -0.00860595703125, -0.00543212890625, -0.021148681640625, -0.005702972412109375, 0.0233306884765625, -0.0286407470703125, 0.03778076171875, -0.0306549072265625, 0.0198516845703125, 0.013427734375, -0.0180206298828125, -0.03643798828125, -0.0178680419921875, 0.045989990234375, -0.02142333984375, -0.058074951171875, -0.0391845703125, -0.0140228271484375, 0.0390625, -0.0345458984375, 0.09429931640625, -0.033416748046875, -0.0045318603515625, -0.051788330078125, 0.0049896240234375, -0.00745391845703125, -0.018463134765625, -0.0290069580078125, 0.03643798828125, 0.0134735107421875, 0.006549835205078125, -0.044647216796875, 0.030029296875, 0.01241302490234375, 0.0160980224609375, 0.06787109375, -0.040771484375, 0.0113983154296875, -0.0238800048828125, -0.043792724609375, -0.054168701171875, -0.0188751220703125, 0.0193634033203125, 0.0127716064453125, -0.044189453125, -0.05303955078125, 0.005367279052734375, -0.004436492919921875, -0.00679779052734375, -0.014984130859375, -0.0131072998046875, 0.01216888427734375, -0.0217132568359375, 0.0119781494140625, 0.008056640625, 0.037994384765625, -0.047210693359375, -0.0367431640625, 0.01398468017578125, -0.016387939453125, -0.044189453125, -0.017913818359375, 0.0167083740234375, -0.037567138671875, 0.0200347900390625, 0.02740478515625, 0.030609130859375, 0.0248870849609375, -0.045318603515625, -0.01251983642578125, -0.010284423828125, -0.0107879638671875, -0.0014801025390625, -0.00882720947265625, 0.0002658367156982422, 0.022705078125, -0.003719329833984375, -0.0093536376953125, -0.01358795166015625, -0.01549530029296875, 0.0127410888671875, -0.00177764892578125, -0.0364990234375, 0.01210784912109375, -0.00969696044921875, 0.0171051025390625, -0.00952911376953125, 0.0055694580078125, -0.00725555419921875, 0.01087188720703125, -0.0234527587890625, -0.0272979736328125, -0.0174713134765625, 0.034423828125, -0.006793975830078125, 0.00276947021484375, 0.0255126953125, -0.0013179779052734375, -0.04339599609375, 0.009979248046875, -0.0038127899169921875, 0.042083740234375, -0.0219879150390625, -0.00635528564453125, -0.00411224365234375, 0.0060272216796875, -0.00914764404296875, 0.005657196044921875, 0.0170745849609375, -0.0170745849609375, -0.036834716796875, -0.0914306640625, 0.033050537109375, 0.016632080078125, -0.050933837890625, -0.060943603515625, -0.0300750732421875, -0.0171051025390625, -0.0305938720703125, -0.041839599609375, -0.0231170654296875, 0.005146026611328125, 0.0192718505859375, -0.0168304443359375, -0.0211181640625, -0.06329345703125, 0.02886962890625, 0.01959228515625, 0.072998046875, 0.0025501251220703125, 0.0179290771484375, 0.0068511962890625, 0.0226898193359375, 0.01404571533203125, 0.023529052734375, -0.01910400390625, 0.0252532958984375, 0.01531982421875, 0.0206146240234375, -0.047821044921875, 0.071533203125, 0.01367950439453125, 0.0433349609375, -0.033477783203125, -0.032012939453125, -0.0181121826171875, -0.0136871337890625, 0.0831298828125, 0.0716552734375, 0.022125244140625, -0.031402587890625, -0.0209808349609375, -0.0260772705078125, 0.03717041015625, -0.0191192626953125, -0.01136016845703125, -0.0433349609375, 0.0006146430969238281, 0.00698089599609375, 0.0210113525390625, 0.0276031494140625, -0.061553955078125, 0.00572967529296875, -0.00988006591796875, -0.018310546875, -0.024688720703125, 0.026641845703125, -0.01287841796875, 0.001674652099609375, -0.01102447509765625, 0.0033740997314453125, -0.021942138671875, 0.028289794921875, -0.0030841827392578125, 0.007572174072265625, -0.039459228515625, -0.00476837158203125, 0.005390167236328125, 0.03436279296875, -0.004505157470703125, 0.01861572265625, -0.0252685546875, 0.0245361328125, -0.02532958984375, 0.0244903564453125, 0.029876708984375, 0.045440673828125, -0.0364990234375, 0.0195159912109375, 0.0310516357421875, -0.00003612041473388672, 0.002872467041015625, 0.0083465576171875, -0.0095672607421875, 0.044219970703125, 0.01471710205078125, -0.020599365234375, 0.04107666015625, -0.035400390625, 0.0133056640625, 0.035980224609375, 0.031707763671875, -0.03582763671875, 0.032501220703125, 0.0008873939514160156, 0.0242767333984375, 0.01244354248046875 ]
4a43d20ac7318fc20482728bb5483344d7353cca
Wordpress Stackexchange Q: Woocommerce My Account Endpoint - how to get ID parameter from URL? I'm using WooCommerce v3.2.6 and WordPress 4.9.1. I've added an endpoint to the WooCommerce myaccount area (view-subscription): function my_custom_endpoints() { add_rewrite_endpoint( 'view-subscription', EP_ROOT | EP_PAGES ); } add_action( 'init', 'my_custom_endpoints' ); function my_custom_query_vars( $vars ) { $vars[] = 'view-subscription'; return $vars; } add_filter( 'query_vars', 'my_custom_query_vars', 0 ); function view_subscription_endpoint_content() { include get_template_directory().'/woocommerce/myaccount/view-subscription.php'; } add_action( 'woocommerce_account_view-subscription_endpoint', 'view_subscription_endpoint_content' ); The endpoint is working but I want to be able to pass the ID of a subscription (a post type) to the endpoint (similar to how view-order works). How can I do this? eg. myaccount/view-order/21313 - Displays details of order #21313 myaccount/view-subscription/35464 - I want this to display the details of the subscription post #35464. If I go to the above URL myaccount/view-subscription/35464 , the view-subscription.php template is still loading, but what is the best way to access the ID, 35464, from the URL? A: I hope it's not too late, but anyway, I know it will help someone else. echo get_query_var('your-endpoint'); So, for your code, it will be: echo get_query_var('view-subscription');
Q: Woocommerce My Account Endpoint - how to get ID parameter from URL? I'm using WooCommerce v3.2.6 and WordPress 4.9.1. I've added an endpoint to the WooCommerce myaccount area (view-subscription): function my_custom_endpoints() { add_rewrite_endpoint( 'view-subscription', EP_ROOT | EP_PAGES ); } add_action( 'init', 'my_custom_endpoints' ); function my_custom_query_vars( $vars ) { $vars[] = 'view-subscription'; return $vars; } add_filter( 'query_vars', 'my_custom_query_vars', 0 ); function view_subscription_endpoint_content() { include get_template_directory().'/woocommerce/myaccount/view-subscription.php'; } add_action( 'woocommerce_account_view-subscription_endpoint', 'view_subscription_endpoint_content' ); The endpoint is working but I want to be able to pass the ID of a subscription (a post type) to the endpoint (similar to how view-order works). How can I do this? eg. myaccount/view-order/21313 - Displays details of order #21313 myaccount/view-subscription/35464 - I want this to display the details of the subscription post #35464. If I go to the above URL myaccount/view-subscription/35464 , the view-subscription.php template is still loading, but what is the best way to access the ID, 35464, from the URL? A: I hope it's not too late, but anyway, I know it will help someone else. echo get_query_var('your-endpoint'); So, for your code, it will be: echo get_query_var('view-subscription'); A: Please use this, it will help me according same as view-order link. wc_get_endpoint_url() eg. myaccount/view-order/21313 - Displays details of order #21313 myaccount/view-coupon/123 - Display details of coupon #123
wordpress
{ "language": "en", "length": 210, "provenance": "stackexchange_00019.jsonl.gz:483377", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/292066" }
[ 0.0247802734375, -0.0264892578125, -0.004791259765625, -0.036041259765625, -0.0175018310546875, -0.01163482666015625, 0.011077880859375, -0.0080108642578125, 0.0270538330078125, 0.03460693359375, -0.036651611328125, -0.0183868408203125, -0.0145721435546875, 0.0005297660827636719, -0.039703369140625, -0.026702880859375, 0.030975341796875, -0.0008654594421386719, 0.0408935546875, -0.005214691162109375, -0.000762939453125, -0.0003724098205566406, 0.04571533203125, 0.052581787109375, 0.020599365234375, 0.02899169921875, 0.08575439453125, -0.0189056396484375, 0.01007080078125, -0.0189361572265625, 0.0247039794921875, -0.03131103515625, 0.039337158203125, -0.06390380859375, 0.051849365234375, 0.01174163818359375, 0.032073974609375, -0.031402587890625, 0.013336181640625, -0.01058197021484375, 0.0460205078125, -0.04241943359375, 0.01142120361328125, -0.0300445556640625, -0.0024871826171875, 0.0006084442138671875, 0.026092529296875, -0.0474853515625, -0.0074615478515625, 0.072021484375, 0.0198211669921875, 0.02874755859375, -0.0017004013061523438, 0.1094970703125, -0.0118255615234375, -0.03765869140625, -0.01654052734375, 0.01215362548828125, 0.0279083251953125, 0.00989532470703125, -0.0204620361328125, -0.006221771240234375, 0.005992889404296875, -0.0298919677734375, -0.0032138824462890625, 0.0107879638671875, 0.046417236328125, 0.033782958984375, -0.025238037109375, -0.0225067138671875, -0.00418853759765625, -0.005214691162109375, -0.00872039794921875, 0.006908416748046875, -0.043304443359375, -0.04302978515625, 0.055267333984375, -0.0166473388671875, -0.01263427734375, 0.0086517333984375, -0.0019588470458984375, -0.02740478515625, -0.06610107421875, 0.0300750732421875, -0.006809234619140625, 0.0379638671875, -0.007251739501953125, -0.01258087158203125, -0.0099334716796875, -0.0211334228515625, -0.019439697265625, 0.01111602783203125, 0.0124969482421875, -0.0080413818359375, -0.05609130859375, -0.00675201416015625, -0.002044677734375, 0.028350830078125, -0.02630615234375, 0.0021343231201171875, 0.0131378173828125, -0.03265380859375, 0.036041259765625, -0.0271759033203125, -0.01336669921875, 0.033355712890625, 0.0190277099609375, 0.0958251953125, 0.05181884765625, 0.03411865234375, 0.0192108154296875, -0.0134735107421875, -0.001953125, 0.0006456375122070312, -0.0198516845703125, 0.006015777587890625, -0.0264892578125, -0.004650115966796875, -0.0184326171875, 0.00182342529296875, -0.0204315185546875, 0.00568389892578125, -0.009002685546875, 0.040313720703125, 0.01140594482421875, 0.010040283203125, 0.0179290771484375, -0.0205841064453125, 0.00847625732421875, -0.01515960693359375, -0.05474853515625, 0.0219573974609375, 0.1021728515625, 0.042724609375, 0.0233154296875, -0.0128021240234375, 0.02569580078125, 0.005725860595703125, 0.01442718505859375, -0.0294952392578125, 0.010284423828125, 0.014892578125, 0.020751953125, -0.01262664794921875, -0.028106689453125, 0.0021419525146484375, 0.0227203369140625, 0.02099609375, -0.002201080322265625, 0.0003905296325683594, -0.041656494140625, 0.004364013671875, 0.0256195068359375, 0.01336669921875, -0.00782012939453125, 0.026336669921875, 0.0033664703369140625, -0.004230499267578125, -0.017242431640625, -0.00797271728515625, -0.012725830078125, -0.022003173828125, -0.000995635986328125, -0.042327880859375, -0.054412841796875, 0.034149169921875, -0.028076171875, -0.01114654541015625, 0.0230712890625, 0.085693359375, -0.02349853515625, -0.005706787109375, -0.022064208984375, 0.007415771484375, -0.03125, -0.0190887451171875, -0.010009765625, 0.060150146484375, 0.034637451171875, -0.0183258056640625, -0.01336669921875, -0.033905029296875, 0.0689697265625, -0.00008475780487060547, -0.05255126953125, 0.062744140625, 0.0192413330078125, 0.06597900390625, -0.02239990234375, 0.0082550048828125, 0.025726318359375, 0.041015625, -0.050994873046875, 0.028778076171875, 0.02520751953125, -0.0015363693237304688, 0.003704071044921875, -0.005214691162109375, 0.027191162109375, -0.031585693359375, 0.007785797119140625, -0.0138092041015625, 0.0391845703125, -0.01096343994140625, 0.0138397216796875, 0.003875732421875, -0.00023221969604492188, 0.033905029296875, -0.04376220703125, 0.006381988525390625, 0.037506103515625, 0.0033588409423828125, -0.031524658203125, -0.0184173583984375, -0.006877899169921875, 0.01268768310546875, -0.04345703125, 0.03338623046875, -0.038360595703125, 0.013397216796875, -0.045318603515625, -0.02972412109375, -0.038482666015625, 0.019012451171875, 0.05169677734375, 0.01491546630859375, 0.0027713775634765625, -0.0114593505859375, 0.05084228515625, 0.028778076171875, -0.043243408203125, -0.0240325927734375, 0.00368499755859375, -0.013763427734375, -0.0183563232421875, 0.0202484130859375, 0.037811279296875, -0.037200927734375, -0.008026123046875, 0.03240966796875, 0.0293121337890625, 0.0338134765625, -0.022857666015625, -0.028839111328125, 0.041656494140625, -0.0276336669921875, 0.001514434814453125, -0.02447509765625, -0.01345062255859375, 0.050048828125, 0.01387786865234375, 0.0244903564453125, -0.0025119781494140625, -0.0079498291015625, -0.005115509033203125, 0.033905029296875, -0.005336761474609375, 0.0007157325744628906, -0.05023193359375, 0.048095703125, -0.02203369140625, 0.0003905296325683594, 0.004058837890625, -0.00904083251953125, 0.0078277587890625, 0.047119140625, 0.057891845703125, 0.0555419921875, -0.0298309326171875, -0.0022525787353515625, 0.00659942626953125, 0.032257080078125, -0.0111541748046875, 0.02557373046875, 0.05072021484375, -0.0252532958984375, -0.0166015625, -0.009033203125, -0.0026874542236328125, -0.0057525634765625, 0.01561737060546875, 0.04901123046875, -0.041046142578125, -0.010986328125, -0.02618408203125, -0.060089111328125, -0.0223388671875, 0.031158447265625, 0.011688232421875, 0.0189666748046875, 0.037811279296875, 0.046722412109375, 0.0025348663330078125, 0.027374267578125, -0.0203094482421875, 0.00201416015625, 0.0457763671875, -0.0474853515625, 0.055755615234375, -0.032745361328125, 0.0238037109375, 0.0628662109375, 0.0004317760467529297, 0.003383636474609375, 0.00322723388671875, -0.043426513671875, -0.006793975830078125, 0.025482177734375, 0.0200042724609375, -0.0003445148468017578, -0.059722900390625, 0.04034423828125, 0.0002624988555908203, 0.0280914306640625, -0.030853271484375, -0.057464599609375, -0.01488494873046875, -0.0189666748046875, -0.08172607421875, -0.0655517578125, 0.0006985664367675781, -0.032989501953125, -0.034759521484375, -0.0229949951171875, -0.0294189453125, 0.007778167724609375, -0.0131683349609375, -0.00481414794921875, -0.03265380859375, -0.01493072509765625, -0.056884765625, -0.0545654296875, -0.05517578125, 0.0121307373046875, -0.0032100677490234375, 0.01611328125, 0.0100250244140625, -0.0032787322998046875, -0.000446319580078125, -0.01538848876953125, 0.028564453125, -0.00897979736328125, -0.002376556396484375, -0.0104522705078125, -0.033233642578125, -0.01041412353515625, -0.04034423828125, -0.0189971923828125, 0.049652099609375, -0.00981903076171875, -0.0005970001220703125, 0.01012420654296875, 0.0021190643310546875, 0.0240631103515625, 0.018096923828125, -0.00765228271484375, -0.00775146484375, 0.0122528076171875, 0.01708984375, -0.032135009765625, -0.0234527587890625, -0.027374267578125, -0.03387451171875, 0.04119873046875, 0.03997802734375, -0.013916015625, 0.0030612945556640625, 0.0087890625, 0.002471923828125, -0.01544952392578125, 0.024505615234375, -0.0335693359375, 0.05078125, -0.01024627685546875, -0.0007348060607910156, -0.032562255859375, 0.035369873046875, 0.0036869049072265625, 0.00042939186096191406, 0.009063720703125, 0.040130615234375, -0.004974365234375, 0.00223541259765625, -0.04132080078125, -0.0638427734375, 0.06982421875, -0.0010995864868164062, 0.0164337158203125, -0.049835205078125, -0.0439453125, -0.026885986328125, 0.119873046875, 0.007404327392578125, -0.018035888671875, 0.01561737060546875, 0.010894775390625, -0.0311126708984375, -0.013153076171875, -0.042449951171875, 0.0027179718017578125, 0.01308441162109375, -0.01546478271484375, -0.018341064453125, -0.0224609375, -0.01556396484375, -0.0400390625, 0.0010690689086914062, -0.0265350341796875, 0.049224853515625, -0.035797119140625, 0.041290283203125, 0.03955078125, 0.0086517333984375, 0.047698974609375, -0.07745361328125, -0.01401519775390625, 0.009368896484375, -0.0188140869140625, 0.061492919921875, 0.005374908447265625, -0.00897979736328125, -0.0283660888671875, 0.003810882568359375, 0.036468505859375, -0.00647735595703125, 0.0309906005859375, -0.022125244140625, 0.035400390625, -0.011810302734375, -0.044769287109375, -0.006435394287109375, -0.04193115234375, -0.0115203857421875, -0.046630859375, -0.054656982421875, -0.02105712890625, -0.0173187255859375, 0.0767822265625, -0.0012197494506835938, -0.0027713775634765625, -0.10504150390625, -0.046600341796875, -0.0078277587890625, 0.01131439208984375, -0.0204010009765625, -0.00048613548278808594, -0.047027587890625, -0.107177734375, 0.05938720703125, -0.01081085205078125, -0.01236724853515625, -0.005405426025390625, 0.04730224609375, 0.0074615478515625, -0.017852783203125, 0.0149078369140625, -0.00847625732421875, 0.039886474609375, -0.02825927734375, 0.044189453125, 0.0220947265625, -0.01377105712890625, 0.05072021484375, -0.0103302001953125, 0.009307861328125, 0.04400634765625, 0.031036376953125, 0.00768280029296875, -0.018310546875, -0.000530242919921875, 0.01024627685546875, -0.057952880859375, 0.04022216796875, -0.02557373046875, -0.0177001953125, 0.01013946533203125, 0.02252197265625, -0.08013916015625, 0.07647705078125, 0.0178070068359375, -0.02655029296875, 0.01448822021484375, -0.031005859375, 0.031280517578125, 0.030975341796875, -0.01071929931640625, 0.024169921875, -0.0074615478515625, -0.00911712646484375, 0.0286865234375, 0.0101318359375, 0.0233917236328125, 0.0225372314453125, 0.0199432373046875, -0.0092620849609375, 0.003387451171875, 0.002288818359375, 0.03009033203125, -0.0247650146484375, -0.049102783203125, -0.030670166015625, -0.0260467529296875, -0.014373779296875, 0.00852203369140625, -0.059356689453125, 0.058563232421875, 0.060760498046875, -0.03350830078125, 0.006591796875, -0.08544921875, 0.01513671875, -0.0733642578125, 0.06341552734375, -0.002288818359375, 0.00540924072265625, -0.0308685302734375, 0.0963134765625, -0.031890869140625, 0.04559326171875, 0.005161285400390625, 0.03326416015625, 0.0230865478515625, 0.042388916015625, 0.035430908203125, -0.048583984375, 0.035064697265625, -0.0298004150390625, -0.0098114013671875, -0.0242462158203125, -0.0196533203125, 0.01007843017578125, -0.00208282470703125, -0.0111236572265625, -0.00510406494140625, 0.021240234375, 0.0025959014892578125, 0.00042557716369628906, -0.00971221923828125, -0.0014543533325195312, 0.00318145751953125, -0.0176849365234375, -0.007114410400390625, 0.00439453125, 0.008544921875, 0.02056884765625, -0.018829345703125, -0.01035308837890625, -0.0026493072509765625, -0.020416259765625, -0.00455474853515625, -0.02001953125, -0.018157958984375, 0.055023193359375, -0.01288604736328125, -0.0345458984375, -0.0290069580078125, 0.002979278564453125, -0.02947998046875, -0.007472991943359375, 0.063232421875, 0.004215240478515625, 0.06298828125, -0.0070343017578125, -0.06317138671875, -0.032928466796875, 0.0203094482421875, 0.026123046875, 0.0164947509765625, -0.04278564453125, -0.0007843971252441406, -0.0306854248046875, -0.0220184326171875, 0.0135040283203125, -0.00568389892578125, -0.0462646484375, -0.01209259033203125, -0.01078033447265625, 0.045867919921875, -0.042633056640625, -0.0188446044921875, 0.00565338134765625, 0.0101318359375, 0.002574920654296875, 0.06842041015625, 0.024383544921875, 0.043121337890625, -0.041961669921875, 0.052978515625, 0.01081085205078125, -0.01311492919921875, -0.06463623046875, -0.0059661865234375, 0.0165557861328125, 0.00930023193359375, -0.0170135498046875, -0.0345458984375, 0.004238128662109375, -0.004283905029296875, 0.044158935546875, -0.013580322265625, 0.028839111328125, -0.00289154052734375, 0.0142822265625, -0.017181396484375, 0.01255035400390625, -0.0200958251953125, 0.012664794921875, 0.037017822265625, -0.01210784912109375, -0.0019817352294921875, 0.01493072509765625, 0.055145263671875, -0.0193023681640625, -0.01161956787109375, 0.003124237060546875, -0.0287322998046875, -0.03594970703125, 0.03106689453125, 0.079833984375, -0.011871337890625, 0.058746337890625, -0.0193939208984375, 0.00225067138671875, 0.08709716796875, 0.05615234375, -0.032379150390625, -0.0560302734375, 0.0221710205078125, 0.006359100341796875, -0.0400390625, 0.01309967041015625, -0.01806640625, 0.022247314453125, 0.0208282470703125, 0.05322265625, -0.04730224609375, -0.0034732818603515625, -0.0026912689208984375, -0.039398193359375, 0.01241302490234375, -0.004505157470703125, 0.00014197826385498047, -0.00917816162109375, 0.03375244140625, -0.0118255615234375, -0.01519775390625, 0.0265350341796875, -0.00811767578125, 0.023956298828125, -0.016082763671875, 0.046875, -0.005390167236328125, 0.006267547607421875, -0.05206298828125, 0.012542724609375, -0.01568603515625, -0.04168701171875, -0.017913818359375, 0.0251922607421875, -0.0091705322265625, -0.0462646484375, 0.04510498046875, -0.032318115234375, 0.0274200439453125, 0.0285797119140625, 0.017120361328125, 0.0293426513671875, 0.03326416015625, 0.022430419921875, -0.00865936279296875, -0.008819580078125, -0.0079345703125, -0.00323486328125, -0.038848876953125, -0.009735107421875, 0.0701904296875, -0.0975341796875, 0.02313232421875, -0.0178680419921875, 0.04437255859375, 0.017791748046875, 0.0272216796875, 0.031768798828125, -0.03363037109375, -0.006755828857421875, 0.047454833984375, 0.0020771026611328125, -0.0090179443359375, 0.00203704833984375, 0.0292816162109375, -0.048858642578125, -0.03619384765625, 0.0185546875, -0.031005859375, -0.013458251953125, 0.000054895877838134766, -0.0726318359375, 0.057586669921875, -0.01273345947265625, 0.002429962158203125, -0.01287841796875, 0.03741455078125, -0.017852783203125, 0.00971221923828125, -0.031707763671875, -0.0002205371856689453, -0.011016845703125, 0.022369384765625, -0.04486083984375, -0.01374053955078125, -0.016693115234375, 0.051055908203125, 0.10772705078125, 0.0254669189453125, -0.0648193359375, -0.024169921875, 0.047698974609375, -0.00437164306640625, -0.0175323486328125, 0.07952880859375, 0.0268707275390625, -0.00296783447265625, 0.048828125, -0.042938232421875, 0.0214691162109375, -0.033966064453125, 0.057891845703125, 0.049224853515625, -0.0183258056640625, -0.024322509765625, 0.013031005859375, -0.007251739501953125, 0.0032901763916015625, -0.01430511474609375, -0.0093841552734375, -0.053436279296875, 0.01264190673828125, 0.01413726806640625, 0.0196685791015625, -0.033172607421875, -0.0110321044921875, -0.0163116455078125, 0.04144287109375, -0.01461029052734375, -0.007343292236328125, 0.016815185546875, 0.0147247314453125, 0.044097900390625, -0.006816864013671875, -0.01343536376953125, 0.004383087158203125, 0.022857666015625, 0.023651123046875, 0.0164947509765625, 0.04718017578125, -0.005710601806640625, 0.01052093505859375, 0.0052642822265625, 0.0088653564453125, -0.0115966796875, 0.01335906982421875, 0.01422882080078125, 0.0010709762573242188, -0.0006918907165527344, -0.0235443115234375, 0.035858154296875, 0.009429931640625, -0.0032176971435546875, -0.04443359375, 0.00588226318359375, 0.03900146484375, 0.053131103515625, -0.009429931640625, 0.0162506103515625, -0.09228515625, -0.0299224853515625, -0.062347412109375, 0.0243682861328125, 0.0004417896270751953, 0.07269287109375, 0.0247650146484375, 0.059783935546875, -0.02691650390625, -0.030487060546875, 0.0148162841796875, 0.0073699951171875, 0.0139923095703125, -0.0305938720703125, 0.0141143798828125, -0.0032863616943359375, -0.00434112548828125, 0.025238037109375, -0.005878448486328125, 0.0077972412109375, 0.00787353515625, -0.005023956298828125, -0.0130157470703125, -0.01149749755859375, 0.01020050048828125, -0.02569580078125, 0.046600341796875, -0.050628662109375, 0.026153564453125, -0.003810882568359375, -0.0175323486328125, -0.005321502685546875, -0.0178680419921875, 0.034210205078125, -0.004611968994140625, 0.047119140625, 0.004917144775390625, 0.006259918212890625, 0.0211029052734375, 0.0082550048828125, 0.0289764404296875, 0.02606201171875, -0.0745849609375, 0.00798797607421875, -0.044403076171875, -0.051177978515625, 0.0007638931274414062, 0.028472900390625, -0.0231781005859375, 0.03924560546875, -0.015777587890625, 0.034881591796875, -0.02606201171875, -0.0219573974609375, 0.01496124267578125, -0.002414703369140625, 0.01145172119140625, 0.01102447509765625, -0.036529541015625, -0.0257110595703125, -0.03594970703125, 0.0161590576171875, 0.02728271484375, 0.05487060546875, 0.0028858184814453125, 0.0416259765625, -0.042022705078125, 0.048614501953125, -0.0576171875, -0.049102783203125, 0.054290771484375, 0.0007863044738769531, -0.016082763671875, 0.00698089599609375, -0.01123809814453125, 0.0236968994140625, 0.01044464111328125, -0.0037822723388671875, 0.0025653839111328125, -0.0120697021484375, 0.0084991455078125, 0.018280029296875, 0.01520538330078125, -0.0206298828125, -0.043426513671875, -0.0113677978515625, 0.0230255126953125, -0.0019435882568359375, 0.047027587890625, 0.01242828369140625, 0.00616455078125, 0.0222930908203125, -0.01468658447265625, 0.031280517578125, -0.00574493408203125, 0.06884765625, 0.043853759765625, -0.035888671875, 0.042572021484375, -0.017578125, -0.023834228515625, 0.02410888671875, -0.0014171600341796875, -0.018310546875, -0.007293701171875, -0.0206146240234375, 0.0428466796875, -0.0044403076171875, 0.00893402099609375, -0.00537109375, -0.0023365020751953125, 0.015228271484375, 0.0030040740966796875, -0.032867431640625, -0.01280975341796875, -0.0169219970703125, 0.002346038818359375, -0.0084686279296875, 0.0010042190551757812, 0.0308837890625, -0.006771087646484375, -0.00036215782165527344, 0.0019502639770507812, 0.01409149169921875, -0.002407073974609375, -0.016937255859375, 0.0012722015380859375, -0.007266998291015625, 0.027801513671875, 0.00677490234375, 0.02490234375, 0.01184844970703125, 0.03466796875, -0.052734375, -0.003082275390625, -0.0129241943359375, -0.00714111328125, -0.004909515380859375, -0.008941650390625, 0.027587890625, -0.01352691650390625, -0.02557373046875, -0.0304107666015625, -0.0172271728515625, 0.01580810546875, -0.02899169921875, -0.047119140625, -0.007541656494140625, 0.017364501953125, 0.012542724609375, -0.04241943359375, -0.0091400146484375, -0.0233154296875, 0.02215576171875, -0.0304107666015625, 0.00395965576171875, 0.0182647705078125, -0.0258331298828125, -0.01047515869140625, 0.0611572265625, -0.005870819091796875, -0.0093231201171875, -0.043731689453125, -0.0103607177734375, 0.006267547607421875, -0.00254058837890625, -0.0271148681640625, -0.0095367431640625, -0.046173095703125, 0.0416259765625, -0.003314971923828125, -0.01824951171875, 0.029296875, -0.0251007080078125, -0.0604248046875, 0.0201263427734375, 0.018890380859375, -0.01568603515625, 0.0010080337524414062, -0.0184783935546875, 0.003276824951171875, -0.002841949462890625, -0.046966552734375, -0.0572509765625, 0.006252288818359375, 0.0141754150390625, -0.0015077590942382812, 0.0150909423828125, -0.006683349609375, 0.00806427001953125, 0.0310211181640625, 0.05218505859375, 0.0015211105346679688, -0.03033447265625, -0.00323486328125, 0.0220794677734375, -0.001556396484375, -0.0140838623046875, 0.022705078125, -0.0657958984375, -0.0311126708984375, 0.01326751708984375, -0.024810791015625, -0.0231781005859375, -0.0167694091796875, -0.0787353515625, 0.0017728805541992188, -0.0552978515625, -0.00591278076171875, -0.0323486328125, -0.0011119842529296875, 0.0122222900390625, -0.043212890625, -0.07122802734375, 0.006839752197265625, 0.01512908935546875, -0.0496826171875, -0.056884765625, -0.025543212890625, -0.0350341796875, -0.00469970703125, 0.0504150390625, -0.0235748291015625, 0.040313720703125, -0.05029296875, -0.0011997222900390625, -0.022705078125, 0.007381439208984375, -0.0031452178955078125, -0.007061004638671875, 0.01611328125, 0.0176849365234375, -0.00641632080078125, 0.09039306640625, 0.019317626953125, 0.043853759765625, 0.017791748046875, 0.03704833984375, -0.0220947265625, -0.01111602783203125, -0.006378173828125, -0.058929443359375, 0.00641632080078125, -0.00930023193359375, 0.0093231201171875, -0.02490234375, 0.0163726806640625, 0.03778076171875, -0.00833892822265625, 0.004802703857421875 ]
4d8d32c0532e7d968a32c6f890bc1788a82ddb9f
Wordpress Stackexchange Q: Installation failed: Download failed. No working transports found 'Installation failed: Download failed. No working transports found'. This error mess came up when I tried to install a theme in WordPress. How do I solve this problem? A: I was getting this error because my PHP (php.ini) did not have the "cURL" extension activated. I simply activated this extension and restarted the server. Solved. Note: this is a similar answer to "Ashish Madhavacharya" above, but specifically solved by activating the php_curl.dll extension (and not the openssl extension, which should have nothing to do with this error you're receiving.)
Q: Installation failed: Download failed. No working transports found 'Installation failed: Download failed. No working transports found'. This error mess came up when I tried to install a theme in WordPress. How do I solve this problem? A: I was getting this error because my PHP (php.ini) did not have the "cURL" extension activated. I simply activated this extension and restarted the server. Solved. Note: this is a similar answer to "Ashish Madhavacharya" above, but specifically solved by activating the php_curl.dll extension (and not the openssl extension, which should have nothing to do with this error you're receiving.) A: The WordPress HTTP API has been built in such a way that it works on many servers as possible, trying out different ways (transports) to do so. According to the error message, there are no working transports and thus WordPress is not able to make any outgoing HTTP requests. I'd recommend you to install something like the Core Control WordPress plugin, which allows you to debug all the existing HTTP transports. It's quite possible that while one transport is not working, another might be OK. This plugin allows you to disable the broken one and test the HTTP API with the new transport. If it turns out that indeed none of the transports are working, you should contact your hosting provider to at least install something like cURL on the server so you can make HTTP requests in PHP. A: The WordPress site was mostly working without a problem except in a dashboard section of the site, where it was having some issues with updating or installing. When I tried to install theme,it gave me error "Installation failed: Download failed. No working transports found". Fortunately, i fixed the problem with following solution. It turns out, this error message occurs when there are missing extensions on a development server, so the WordPress is unable to make external HTTP requests. The solution is pretty simple. The missing extensions that make those HTTP requests possible are already installed with Wamp Server, By default,they are just disabled. To enable them, we need to edit the php.ini configuration file. Editing php.ini file The php.ini file contains a list of many extensions with some of them disabled by default. The only one I had to enable was the openssl extension. Here are the steps to enable that extension: * *Start Wamp Server. *click on Wamp Server Icon and move to PHP->php.ini option. *double click on php.ini. so, it will open php.ini file in your default Text Editor. *search for php_openssl.dll in php.ini file. ->You Will see that the extension is commented out: ;extension=php_openssl.dll *Uncomment that line by removing semi colon(;) *save the changes. *Restart Wamp Server. That's it We Are Done!!! A: The advice on this error message is quite varied and no one seems to provide a comprehensive answer (See some blog, a duplicitous answer and here and here on SO). Hopefully this is a more formal take on the problem. I consider only WordPress on PHP served via Apache (I can not comment on NginX at this time as I haven't tried it with PHP, nor can I comment upon other frameworks). The answer may exhibit a mild bias towards Windows 10 with a self built Apache 2.4.37, extracted thread safe PHP 7.2 and WordPress 4.2.X. Background PHP and cURL explains, rather nicely one might add, that under the hood WordPress relies upon Requests, a wrapper around the cURL and fSockets libraries. Requests prefers the cURL library if available but will supposedly fall back to the fSockets library to download Plugins/Themes/etc. The "No transports" error is indicative that neither library is properly configured within either Apache or PHP. It is also possible ones firewall is interfering with the process too. Check Test the configuration of both Apache and PHP setting up and loading the standard PHPinfo script from your browser. This should have a separate section entitled cURL whose entries show various information. Otherwise setup and load the following script to check. <?php echo 'Curl: ', function_exists('curl_init') ? 'Enabled' : 'Disabled'; ?> I do not know how to test fScokets. cURL To ensure the availability of cURL is seems necessary to enable it within php.ini. * *Ensure that the extentions_dir correctly points to ones extensions folder extentions_dir="ext" (Alternatively extentions_dir="D:PATH/TO/php/ext" is often suggested) *Ensure that the cURL extention is enabled extension=curl (extentions=php_curl(.so|.dll) or extentions="PATH/TO/php_curl(.so|.dll)" are also suggested, possibly for PHP<7.2) *From PHP it seems that the eay32, ssh2 and ssleay32 libraries must also be available upon ones path (With OpenSSL 1.1 eay32 was renamed crypto-* and ssleay32 was renamed ssl-*). Upon windows the ugly hack is to copy these libraries from the PHP root folder into the system32 or wow64 folder. The better solution is to modify ones path variable to include the PHP root folder (Personally I prefer a clean path that I configure as required but this is PHP). On *nix boxes it seems one simply needs to install the php5-curl package for ones distro. Note : The comments on the PHP page suggest that one may simply add LoadFile "PATH/TO/lib(eay32|ssh2)|ssleay32.dll" entries to ones httpd.conf but cURL seems to search for these libraries upon ones path; mooting the suggestion. The XAmpp/Wamp people get away with this step as they seem to dump their own root on ones system path. Once done restart Apache. If you're using Apache monitor you should actually stop and then start Apache; this sets up a new environment for the service to run in (Saving you a restart). fSockets I do not know what is necessary to get this going. A: I had the same problem and the fixes above did not help. I found a page on the WAMP forum where someone fixed it by upgrading to the latest Apache. I tried this and it worked for me. A: Posting my hack here for future Googlers: I downloaded the plugin zip file from respective vendors' sites, put it in /var/www/html/wp-content/plugins/, unzipped it, and activated it from within WordPress dashboard. I was compelled to do the above because once I enabled ;extension=openssl from php.ini and restarted the php server, it could not locate the openssl.so although I compiled php --with-openssl flag.
wordpress
{ "language": "en", "length": 1031, "provenance": "stackexchange_00019.jsonl.gz:483411", "question_score": "14", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/292175" }
[ 0.0265960693359375, -0.023101806640625, 0.0131683349609375, 0.0011386871337890625, -0.028961181640625, -0.02850341796875, 0.0479736328125, -0.020538330078125, 0.05780029296875, 0.0282745361328125, -0.01250457763671875, -0.014495849609375, -0.0088348388671875, -0.03192138671875, -0.031158447265625, -0.00827789306640625, 0.0281219482421875, -0.019317626953125, 0.007137298583984375, -0.0214080810546875, 0.0030364990234375, 0.015869140625, 0.0237884521484375, 0.043365478515625, -0.027313232421875, 0.051788330078125, 0.0120849609375, -0.023284912109375, -0.0279693603515625, -0.03375244140625, -0.0039043426513671875, 0.041168212890625, 0.04461669921875, 0.036773681640625, -0.1011962890625, -0.05999755859375, -0.034637451171875, 0.0223388671875, -0.06341552734375, 0.0390625, -0.036865234375, 0.0245208740234375, 0.053192138671875, 0.01450347900390625, -0.0048065185546875, -0.021484375, -0.02783203125, -0.054901123046875, 0.0169830322265625, 0.0105743408203125, -0.0205230712890625, 0.016571044921875, -0.01561737060546875, 0.03857421875, -0.008148193359375, -0.007110595703125, -0.0099334716796875, 0.11181640625, 0.0138397216796875, -0.0523681640625, -0.052764892578125, 0.048431396484375, 0.001811981201171875, 0.0261077880859375, 0.0170745849609375, -0.0223388671875, 0.009735107421875, 0.01290130615234375, -0.05487060546875, 0.03558349609375, 0.066650390625, -0.0269622802734375, 0.019775390625, -0.033294677734375, 0.033233642578125, -0.036285400390625, 0.00830841064453125, -0.027435302734375, 0.004596710205078125, 0.0240631103515625, 0.0124969482421875, -0.00243377685546875, -0.024658203125, -0.028106689453125, 0.00589752197265625, 0.0019550323486328125, 0.00399017333984375, 0.0015401840209960938, -0.0113372802734375, -0.01398468017578125, -0.024200439453125, -0.0185699462890625, -0.0035400390625, 0.003017425537109375, -0.019775390625, -0.020294189453125, 0.019012451171875, 0.0175018310546875, 0.037384033203125, 0.0277862548828125, -0.0010890960693359375, -0.05828857421875, 0.0782470703125, -0.04791259765625, 0.026123046875, -0.00019407272338867188, -0.020111083984375, -0.016021728515625, 0.068603515625, 0.03143310546875, -0.005462646484375, 0.07568359375, 0.0156402587890625, -0.0283966064453125, 0.01050567626953125, -0.024139404296875, -0.0277862548828125, 0.0546875, 0.012359619140625, 0.0025043487548828125, -0.0109100341796875, 0.0064849853515625, -0.058685302734375, 0.01079559326171875, 0.0128021240234375, -0.00807952880859375, -0.0030345916748046875, 0.04266357421875, 0.0036373138427734375, 0.01091766357421875, -0.030364990234375, 0.028350830078125, 0.018341064453125, -0.01348876953125, -0.032012939453125, -0.0126190185546875, 0.024993896484375, 0.040313720703125, -0.0291748046875, 0.0271759033203125, 0.033843994140625, -0.0472412109375, -0.044403076171875, 0.0167388916015625, -0.00804901123046875, -0.002170562744140625, 0.01788330078125, 0.034027099609375, -0.007747650146484375, -0.0284271240234375, -0.01678466796875, 0.039093017578125, 0.00946807861328125, 0.0192718505859375, -0.0158538818359375, 0.029937744140625, 0.00527191162109375, 0.00528717041015625, -0.033050537109375, -0.01276397705078125, 0.00698089599609375, -0.0089263916015625, 0.02703857421875, 0.01076507568359375, 0.004878997802734375, -0.0017213821411132812, -0.0256805419921875, 0.0048980712890625, 0.0149993896484375, 0.0251617431640625, -0.029022216796875, -0.0125274658203125, 0.02154541015625, 0.0089111328125, -0.01544189453125, 0.02850341796875, 0.0002294778823852539, 0.014892578125, 0.028106689453125, 0.027191162109375, 0.0044097900390625, -0.0237884521484375, 0.06866455078125, -0.02362060546875, -0.041107177734375, 0.0701904296875, 0.0260467529296875, 0.0428466796875, -0.021728515625, 0.01551055908203125, 0.033050537109375, 0.0726318359375, 0.002826690673828125, -0.0022716522216796875, -0.0269622802734375, -0.0285491943359375, -0.021270751953125, 0.004138946533203125, -0.012359619140625, 0.0187835693359375, 0.006988525390625, -0.02923583984375, 0.0146942138671875, -0.00672149658203125, -0.011810302734375, -0.0215911865234375, -0.00498199462890625, -0.00897216796875, -0.00379180908203125, -0.0016279220581054688, 0.007244110107421875, -0.0015516281127929688, 0.0064849853515625, -0.033660888671875, -0.012908935546875, 0.040283203125, -0.019989013671875, 0.03546142578125, -0.0010004043579101562, 0.05706787109375, -0.0302886962890625, -0.0186767578125, -0.0257568359375, -0.030731201171875, -0.026336669921875, 0.0189666748046875, 0.007648468017578125, 0.0278778076171875, 0.050933837890625, 0.01548004150390625, 0.11578369140625, -0.0491943359375, -0.00875091552734375, 0.027313232421875, -0.00829315185546875, -0.007053375244140625, -0.019012451171875, -0.06988525390625, 0.0272674560546875, 0.04010009765625, 0.0419921875, 0.061492919921875, -0.006687164306640625, -0.01593017578125, 0.098876953125, -0.0218048095703125, 0.0005784034729003906, -0.0156707763671875, 0.00994873046875, -0.03717041015625, 0.03509521484375, -0.05035400390625, 0.038665771484375, -0.007770538330078125, 0.046905517578125, 0.00872802734375, 0.01432037353515625, -0.0005903244018554688, 0.00543975830078125, 0.01010894775390625, -0.0101776123046875, -0.0256500244140625, -0.03302001953125, 0.0028018951416015625, -0.01070404052734375, 0.004734039306640625, 0.01361083984375, 0.0205841064453125, -0.00513458251953125, -0.0295562744140625, 0.0164947509765625, 0.0089111328125, -0.0049896240234375, 0.0355224609375, 0.036224365234375, 0.044708251953125, -0.0389404296875, -0.006473541259765625, -0.01038360595703125, 0.04302978515625, -0.018341064453125, 0.0159759521484375, 0.020050048828125, 0.00008034706115722656, -0.0175628662109375, -0.0262298583984375, 0.022369384765625, 0.00870513916015625, -0.022369384765625, -0.0092010498046875, 0.0035400390625, 0.0338134765625, -0.035552978515625, 0.04815673828125, 0.01557159423828125, -0.0087432861328125, 0.056396484375, -0.0124053955078125, 0.01352691650390625, -0.017669677734375, 0.01322174072265625, 0.031707763671875, -0.0032482147216796875, -0.023834228515625, -0.004364013671875, 0.027008056640625, 0.051605224609375, -0.03314208984375, -0.037689208984375, -0.018951416015625, -0.048553466796875, -0.07421875, 0.0272674560546875, -0.009979248046875, 0.0350341796875, -0.00716400146484375, -0.028564453125, 0.0015211105346679688, -0.101806640625, -0.125244140625, -0.10009765625, -0.056549072265625, 0.009002685546875, -0.00292205810546875, -0.0120849609375, 0.01409149169921875, 0.0079498291015625, 0.042083740234375, 0.01062774658203125, -0.02972412109375, -0.059417724609375, -0.0635986328125, -0.087890625, 0.0218505859375, 0.0030498504638671875, 0.03082275390625, 0.0109405517578125, 0.052459716796875, 0.0170440673828125, -0.058319091796875, 0.0225067138671875, -0.00428009033203125, -0.0110015869140625, 0.03350830078125, -0.01519775390625, 0.02142333984375, -0.012725830078125, 0.0032501220703125, 0.035003662109375, 0.01378631591796875, -0.03265380859375, -0.019866943359375, -0.0003466606140136719, -0.039459228515625, -0.021148681640625, 0.00872039794921875, -0.0087127685546875, -0.0782470703125, -0.02691650390625, -0.100341796875, -0.02813720703125, 0.0034618377685546875, -0.02471923828125, 0.0458984375, 0.01544952392578125, -0.0151214599609375, 0.0260009765625, 0.0009217262268066406, -0.020904541015625, -0.0006055831909179688, -0.036163330078125, -0.0294342041015625, 0.034088134765625, -0.0158843994140625, -0.0013189315795898438, 0.0296478271484375, 0.03570556640625, -0.00183868408203125, 0.006587982177734375, 0.010894775390625, 0.0110015869140625, -0.03155517578125, 0.0147857666015625, -0.09197998046875, -0.06488037109375, 0.02886962890625, -0.0223388671875, 0.017059326171875, -0.0289459228515625, -0.01375579833984375, 0.01244354248046875, 0.10443115234375, 0.00228118896484375, -0.0283966064453125, 0.0137939453125, 0.019805908203125, -0.061614990234375, 0.0113677978515625, -0.0187530517578125, 0.00846099853515625, 0.015655517578125, -0.02069091796875, -0.0193634033203125, 0.0031833648681640625, 0.024810791015625, -0.0693359375, 0.035491943359375, -0.036590576171875, 0.0271148681640625, 0.01438140869140625, -0.01068115234375, 0.0037250518798828125, -0.0247039794921875, -0.010040283203125, -0.0203094482421875, -0.005466461181640625, -0.10003662109375, -0.0097198486328125, -0.0413818359375, 0.0467529296875, -0.0201416015625, 0.059356689453125, -0.04034423828125, 0.04241943359375, 0.0516357421875, 0.002269744873046875, -0.0030269622802734375, -0.061767578125, 0.00350189208984375, 0.0428466796875, 0.01099395751953125, 0.0102996826171875, -0.015106201171875, 0.007625579833984375, -0.033905029296875, 0.00397491455078125, -0.0163116455078125, 0.001659393310546875, 0.031646728515625, -0.0263519287109375, 0.01032257080078125, -0.004421234130859375, -0.0004673004150390625, 0.07159423828125, -0.02142333984375, 0.0298919677734375, -0.041839599609375, 0.002376556396484375, 0.0361328125, -0.0255279541015625, -0.01085662841796875, 0.00022900104522705078, 0.0579833984375, 0.0117034912109375, -0.0123291015625, -0.04266357421875, -0.0159912109375, 0.0113525390625, 0.028839111328125, 0.027191162109375, 0.0261993408203125, 0.01739501953125, -0.039764404296875, 0.00513458251953125, -0.0185089111328125, 0.0279998779296875, 0.0036449432373046875, 0.03143310546875, 0.004638671875, -0.0245513916015625, 0.0262298583984375, 0.0228424072265625, -0.007080078125, 0.0107879638671875, 0.01458740234375, 0.019012451171875, -0.0262603759765625, -0.002361297607421875, -0.00910186767578125, 0.022125244140625, -0.060394287109375, 0.04681396484375, -0.0257568359375, -0.0164642333984375, -0.02679443359375, 0.021728515625, -0.007015228271484375, -0.031585693359375, 0.003692626953125, -0.0159912109375, 0.01323699951171875, -0.037628173828125, 0.0297393798828125, 0.006946563720703125, -0.0297698974609375, -0.0086822509765625, -0.01947021484375, 0.0966796875, -0.004367828369140625, -0.06585693359375, 0.0207061767578125, -0.0171356201171875, -0.020660400390625, 0.030120849609375, 0.035858154296875, 0.033966064453125, 0.011260986328125, -0.0237274169921875, -0.0189666748046875, 0.0235137939453125, -0.0004246234893798828, -0.046661376953125, -0.0003325939178466797, -0.01427459716796875, -0.0169830322265625, -0.001129150390625, -0.0059661865234375, -0.0065765380859375, -0.0024318695068359375, -0.0005421638488769531, -0.0081634521484375, 0.0033893585205078125, 0.01251983642578125, -0.001667022705078125, -0.0019550323486328125, 0.0213165283203125, -0.0262298583984375, 0.0628662109375, -0.048919677734375, -0.007472991943359375, 0.0267791748046875, 0.06048583984375, 0.004169464111328125, -0.018768310546875, 0.01165771484375, -0.0266265869140625, -0.00341033935546875, 0.013214111328125, -0.0044708251953125, -0.0416259765625, -0.004726409912109375, 0.0282745361328125, 0.003925323486328125, -0.0250396728515625, -0.0173187255859375, 0.0098114013671875, -0.014984130859375, 0.020904541015625, 0.0163421630859375, -0.038604736328125, 0.009002685546875, 0.023284912109375, 0.00806427001953125, -0.0202484130859375, -0.027801513671875, 0.022918701171875, -0.00402069091796875, -0.0167999267578125, -0.0081634521484375, 0.05108642578125, -0.0450439453125, -0.0297393798828125, 0.005252838134765625, 0.0198211669921875, -0.056610107421875, 0.0274505615234375, 0.0189361572265625, 0.015411376953125, -0.008087158203125, 0.01233673095703125, -0.017486572265625, -0.017547607421875, 0.0163726806640625, -0.0401611328125, -0.04132080078125, -0.036956787109375, -0.01522064208984375, 0.024810791015625, -0.041259765625, -0.005825042724609375, 0.00740814208984375, 0.041107177734375, 0.0022411346435546875, 0.0819091796875, -0.0282745361328125, 0.0026073455810546875, 0.0254974365234375, 0.04632568359375, 0.00359344482421875, 0.0027256011962890625, 0.005313873291015625, -0.0265655517578125, -0.004375457763671875, -0.0155792236328125, -0.042510986328125, 0.0113677978515625, 0.0021305084228515625, 0.023284912109375, 0.04888916015625, -0.0181427001953125, -0.01035308837890625, -0.00476837158203125, 0.01328277587890625, -0.006366729736328125, 0.032623291015625, -0.002506256103515625, -0.0169677734375, 0.024749755859375, -0.0260467529296875, -0.01666259765625, 0.0035305023193359375, 0.0350341796875, -0.0208282470703125, -0.021697998046875, -0.0232391357421875, 0.0162506103515625, -0.018646240234375, 0.0126953125, 0.0833740234375, 0.005126953125, 0.050750732421875, 0.02490234375, 0.01202392578125, 0.027679443359375, 0.0555419921875, -0.06744384765625, -0.048187255859375, -0.0006108283996582031, 0.01617431640625, -0.025634765625, -0.0030155181884765625, -0.00771331787109375, -0.039276123046875, 0.04827880859375, 0.05010986328125, -0.039154052734375, -0.03131103515625, -0.0098114013671875, 0.0019245147705078125, -0.044677734375, -0.03326416015625, 0.005924224853515625, -0.053924560546875, 0.08624267578125, 0.0223846435546875, 0.0005087852478027344, 0.01451873779296875, -0.037139892578125, -0.002780914306640625, -0.0289764404296875, 0.037200927734375, 0.01273345947265625, -0.006259918212890625, -0.028594970703125, 0.03802490234375, -0.0203857421875, -0.0135650634765625, 0.004199981689453125, -0.0181884765625, -0.006114959716796875, -0.052764892578125, -0.03350830078125, -0.038909912109375, -0.0126800537109375, -0.042449951171875, -0.000021755695343017578, 0.049346923828125, 0.0189361572265625, 0.00794219970703125, -0.04217529296875, 0.01026153564453125, 0.0283203125, 0.024505615234375, -0.02789306640625, 0.0281829833984375, 0.038604736328125, -0.03082275390625, 0.015777587890625, 0.0181427001953125, -0.04150390625, -0.00778961181640625, 0.0032253265380859375, 0.0129241943359375, -0.03814697265625, 0.00225067138671875, 0.055816650390625, 0.0212860107421875, -0.012359619140625, 0.0194244384765625, 0.06317138671875, -0.01020050048828125, 0.0125274658203125, 0.016632080078125, 0.0034542083740234375, -0.045654296875, 0.00543212890625, -0.03338623046875, 0.12646484375, 0.037994384765625, -0.01910400390625, -0.0106658935546875, 0.0814208984375, -0.0308990478515625, 0.04498291015625, -0.01226043701171875, 0.0396728515625, 0.00388336181640625, -0.0030307769775390625, -0.00975799560546875, 0.01082611083984375, -0.0016584396362304688, 0.02301025390625, -0.0231475830078125, -0.00814056396484375, -0.009033203125, 0.0025482177734375, 0.047149658203125, 0.0244598388671875, 0.019317626953125, 0.0196380615234375, -0.014923095703125, -0.0214080810546875, 0.0177001953125, 0.00514984130859375, 0.037628173828125, -0.0214385986328125, -0.0330810546875, -0.004161834716796875, 0.006015777587890625, -0.01045989990234375, 0.004123687744140625, 0.06341552734375, -0.0770263671875, 0.012969970703125, 0.04425048828125, 0.04034423828125, 0.007404327392578125, -0.01544189453125, -0.0241546630859375, -0.01396942138671875, -0.04302978515625, -0.00861358642578125, 0.006221771240234375, -0.00039196014404296875, -0.0189361572265625, -0.00722503662109375, -0.0003056526184082031, -0.00531768798828125, -0.034576416015625, -0.0267181396484375, 0.031280517578125, -0.018341064453125, 0.00377655029296875, -0.007232666015625, 0.01361083984375, -0.028076171875, 0.0282440185546875, 0.033203125, 0.0200653076171875, -0.01323699951171875, -0.037261962890625, 0.01337432861328125, -0.013031005859375, 0.0078125, -0.005413055419921875, -0.0052032470703125, -0.0177764892578125, -0.005023956298828125, -0.0308685302734375, -0.0220794677734375, 0.0367431640625, 0.01446533203125, 0.00865936279296875, 0.016387939453125, 0.0139007568359375, -0.036865234375, 0.021026611328125, 0.0017986297607421875, -0.003665924072265625, -0.005096435546875, -0.03582763671875, 0.031707763671875, -0.038787841796875, 0.01470947265625, -0.024993896484375, 0.0264434814453125, -0.0034847259521484375, 0.025054931640625, -0.0433349609375, -0.01299285888671875, 0.0013437271118164062, 0.04248046875, -0.02484130859375, 0.02923583984375, 0.0016412734985351562, 0.062255859375, 0.040924072265625, -0.0024929046630859375, 0.09246826171875, -0.0017223358154296875, -0.0189208984375, -0.0234527587890625, -0.0244140625, -0.0009775161743164062, -0.01065826416015625, 0.03607177734375, 0.0271759033203125, 0.0117645263671875, -0.01490020751953125, 0.0186004638671875, -0.004199981689453125, -0.0184783935546875, 0.01473236083984375, 0.0288543701171875, 0.0523681640625, 0.020660400390625, -0.051116943359375, -0.008270263671875, -0.0274658203125, 0.006626129150390625, 0.011016845703125, 0.01837158203125, 0.00424957275390625, 0.0298309326171875, 0.0121002197265625, -0.036285400390625, -0.01029205322265625, 0.03692626953125, 0.02557373046875, 0.01045989990234375, -0.006130218505859375, 0.0006728172302246094, -0.01849365234375, -0.035858154296875, -0.020477294921875, 0.07745361328125, 0.00728607177734375, 0.08648681640625, -0.031646728515625, 0.0232391357421875, -0.007472991943359375, -0.01654052734375, 0.02215576171875, 0.01105499267578125, -0.050872802734375, 0.0245819091796875, 0.004146575927734375, -0.03131103515625, -0.0141448974609375, 0.0052032470703125, 0.004901885986328125, -0.036163330078125, -0.0137176513671875, -0.0204315185546875, 0.03564453125, 0.0271453857421875, 0.03955078125, -0.0186920166015625, -0.05145263671875, -0.036834716796875, 0.02685546875, 0.00177764892578125, 0.03509521484375, -0.0035190582275390625, -0.0117950439453125, 0.0133209228515625, -0.031036376953125, 0.0218963623046875, 0.01611328125, 0.0273284912109375, 0.0192108154296875, -0.01428985595703125, -0.064453125, 0.004039764404296875, -0.0114288330078125, -0.0062713623046875, 0.00588226318359375, 0.0731201171875, 0.00762176513671875, -0.01200103759765625, 0.0092315673828125, 0.001667022705078125, 0.01092529296875, -0.018768310546875, -0.0025539398193359375, 0.01751708984375, -0.0036563873291015625, 0.0149993896484375, 0.054901123046875, 0.024932861328125, 0.005352020263671875, -0.0284576416015625, -0.0297393798828125, -0.0009965896606445312, 0.007320404052734375, 0.022369384765625, 0.010528564453125, 0.0030231475830078125, -0.036468505859375, 0.0391845703125, -0.0377197265625, -0.035888671875, 0.01959228515625, -0.0156707763671875, -0.006183624267578125, 0.00983428955078125, 0.044403076171875, -0.0196533203125, -0.042633056640625, -0.0086212158203125, 0.026885986328125, -0.01552581787109375, -0.017364501953125, -0.00408172607421875, 0.0008287429809570312, 0.03314208984375, 0.0033550262451171875, -0.0035114288330078125, 0.032318115234375, 0.0261993408203125, -0.0154571533203125, -0.007350921630859375, -0.0269927978515625, -0.0153045654296875, -0.041534423828125, 0.041961669921875, -0.0950927734375, -0.0712890625, -0.039337158203125, 0.04022216796875, 0.038970947265625, -0.03704833984375, -0.09185791015625, 0.05780029296875, -0.042236328125, -0.030242919921875, -0.09796142578125, -0.011688232421875, 0.0015687942504882812, 0.0498046875, -0.031768798828125, 0.004352569580078125, -0.06463623046875, 0.060455322265625, -0.0035305023193359375, 0.0176849365234375, 0.00909423828125, -0.00811004638671875, -0.0299224853515625, -0.00225067138671875, 0.0005507469177246094, -0.0122528076171875, -0.0155029296875, 0.03643798828125, -0.006481170654296875, 0.058685302734375, 0.0017309188842773438, -0.0245819091796875, -0.005802154541015625, -0.046844482421875, -0.0177154541015625, -0.0286407470703125, 0.0308380126953125, -0.0006966590881347656, 0.02752685546875, 0.0098724365234375, -0.00864410400390625, -0.0193939208984375, -0.037384033203125, -0.045867919921875, -0.00722503662109375, -0.008880615234375, 0.0091094970703125, -0.045654296875, 0.014251708984375, 0.0038604736328125, -0.00850677490234375, 0.01849365234375, -0.008941650390625, -0.0207061767578125, -0.01035308837890625, 0.0013513565063476562, -0.01055908203125, -0.01299285888671875, -0.05743408203125, 0.056427001953125, -0.0179901123046875, 0.0322265625, -0.0036869049072265625, 0.04254150390625, 0.05218505859375, 0.060028076171875, 0.00616455078125, -0.00794219970703125, -0.020843505859375, 0.0222625732421875, 0.0012273788452148438, 0.02392578125, -0.0218658447265625, -0.020263671875, 0.034423828125, -0.00372314453125, -0.036590576171875, -0.0172882080078125, 0.0290069580078125, 0.007476806640625, -0.0589599609375, 0.0838623046875, -0.0006208419799804688, -0.03387451171875, -0.034515380859375, 0.03216552734375, 0.0049896240234375, -0.0089263916015625, 0.0253753662109375, -0.0016565322875976562, 0.00858306884765625, 0.0175933837890625, -0.0263824462890625, -0.003570556640625, -0.0273590087890625, -0.036041259765625, -0.0133209228515625, -0.013671875 ]
00eb991cbb5d65a8be2ab5b9f28d5965222e662b
Wordpress Stackexchange Q: rewrite_rule for custom post type doesn't affect get_permalink I have a custom post type named course. I added rewrite rules so I can include post_meta data in the URL. /* Rewrite URLs for generate dynamic template */ add_filter( 'generate_rewrite_rules', 'courses_rewrite_rules' ); function courses_rewrite_rules($wp_rewrite) { $wp_rewrite->rules = [ 'cursos/([^/]+)/([^/]+)/([^/]+)/?$' => 'index.php?post_type=courses&unity=$matches[1]&formation_type=$matches[2]&courses=$matches[3]', 'cursos/([^/]+)/([^/]+)/([^/]+)/([^/]+)/?$' => 'index.php?post_type=courses&unity=$matches[1]&formation_type=$matches[2]&courses=$matches[3]&grade=$matches[4]', ] + $wp_rewrite->rules; return $wp_rewrite->rules; } It works as expected when I try to access the link through the browser. It also shows correctly in the post editor: However, if I use the function get_permalink() or get_permalink, instead of http://dev.unasp.edu.br/cursos/virtual/graduacao/letras-licenciatura/, it's returning http://dev.unasp.edu.br/cursos/letras-licenciatura/0.
Q: rewrite_rule for custom post type doesn't affect get_permalink I have a custom post type named course. I added rewrite rules so I can include post_meta data in the URL. /* Rewrite URLs for generate dynamic template */ add_filter( 'generate_rewrite_rules', 'courses_rewrite_rules' ); function courses_rewrite_rules($wp_rewrite) { $wp_rewrite->rules = [ 'cursos/([^/]+)/([^/]+)/([^/]+)/?$' => 'index.php?post_type=courses&unity=$matches[1]&formation_type=$matches[2]&courses=$matches[3]', 'cursos/([^/]+)/([^/]+)/([^/]+)/([^/]+)/?$' => 'index.php?post_type=courses&unity=$matches[1]&formation_type=$matches[2]&courses=$matches[3]&grade=$matches[4]', ] + $wp_rewrite->rules; return $wp_rewrite->rules; } It works as expected when I try to access the link through the browser. It also shows correctly in the post editor: However, if I use the function get_permalink() or get_permalink, instead of http://dev.unasp.edu.br/cursos/virtual/graduacao/letras-licenciatura/, it's returning http://dev.unasp.edu.br/cursos/letras-licenciatura/0.
wordpress
{ "language": "en", "length": 97, "provenance": "stackexchange_00019.jsonl.gz:483429", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/292231" }
[ 0.0029582977294921875, -0.0017423629760742188, -0.007843017578125, 0.0038661956787109375, -0.0104522705078125, -0.0140838623046875, 0.042083740234375, -0.0248565673828125, -0.051513671875, 0.0120086669921875, 0.00879669189453125, -0.0034637451171875, -0.027984619140625, -0.059417724609375, 0.04840087890625, -0.03143310546875, 0.01306915283203125, 0.03662109375, 0.04510498046875, -0.0374755859375, 0.0258636474609375, -0.025421142578125, -0.01184844970703125, 0.01412200927734375, 0.020233154296875, -0.0202178955078125, 0.051177978515625, -0.0155487060546875, -0.00821685791015625, -0.03228759765625, 0.0177459716796875, 0.0255889892578125, 0.04669189453125, 0.026885986328125, -0.031402587890625, -0.0011844635009765625, 0.031341552734375, -0.0249176025390625, -0.029937744140625, 0.06390380859375, 0.0279388427734375, -0.020904541015625, -0.004169464111328125, 0.0149078369140625, 0.005176544189453125, -0.047210693359375, 0.03759765625, -0.055938720703125, 0.0011196136474609375, 0.0032405853271484375, -0.0192718505859375, 0.00275421142578125, -0.0203857421875, 0.00914764404296875, 0.00803375244140625, 0.00890350341796875, -0.0293121337890625, -0.027740478515625, 0.012786865234375, 0.01308441162109375, 0.022552490234375, -0.01190185546875, 0.00806427001953125, 0.0087890625, -0.0253143310546875, -0.025146484375, -0.0278778076171875, 0.027496337890625, -0.001987457275390625, -0.0289154052734375, 0.00392913818359375, -0.0038280487060546875, -0.00107574462890625, -0.03118896484375, -0.00196075439453125, -0.038543701171875, 0.021575927734375, -0.0631103515625, -0.0214691162109375, 0.030609130859375, 0.03289794921875, 0.0239105224609375, -0.005184173583984375, -0.044769287109375, 0.0292816162109375, -0.009735107421875, -0.00800323486328125, -0.0263824462890625, -0.0343017578125, -0.00756072998046875, -0.01480865478515625, -0.06561279296875, -0.02423095703125, 0.02667236328125, 0.00628662109375, -0.0286865234375, 0.03955078125, 0.061279296875, -0.0099639892578125, -0.004062652587890625, 0.03607177734375, -0.04852294921875, 0.045318603515625, -0.047821044921875, -0.004146575927734375, 0.0362548828125, 0.0294189453125, 0.08245849609375, 0.047088623046875, -0.0075531005859375, 0.003070831298828125, 0.02642822265625, -0.0308074951171875, 0.00272369384765625, -0.0228118896484375, -0.0157012939453125, -0.07867431640625, 0.00103759765625, -0.005100250244140625, -0.01290130615234375, -0.020111083984375, 0.0189971923828125, 0.040802001953125, 0.0003292560577392578, 0.004482269287109375, 0.0100860595703125, 0.0013027191162109375, -0.05645751953125, -0.01983642578125, 0.021514892578125, 0.004573822021484375, 0.020538330078125, -0.003055572509765625, 0.0306549072265625, -0.01611328125, -0.01247406005859375, 0.06707763671875, -0.0223388671875, -0.005352020263671875, 0.039154052734375, -0.039398193359375, -0.0199127197265625, 0.01311492919921875, -0.0261993408203125, -0.006130218505859375, 0.07208251953125, 0.016815185546875, -0.03106689453125, -0.037567138671875, -0.037261962890625, -0.032684326171875, -0.038909912109375, 0.06597900390625, -0.0221405029296875, -0.01496124267578125, -0.043792724609375, 0.035736083984375, -0.030242919921875, -0.0367431640625, -0.052154541015625, 0.043304443359375, 0.00681304931640625, 0.0015811920166015625, 0.00681304931640625, -0.003276824951171875, -0.0263671875, -0.036773681640625, 0.002140045166015625, 0.0176239013671875, 0.05877685546875, 0.0105133056640625, -0.0264129638671875, -0.005382537841796875, 0.00012218952178955078, -0.00726318359375, -0.003662109375, -0.017852783203125, 0.017181396484375, 0.0105133056640625, 0.054595947265625, 0.03955078125, -0.017913818359375, 0.0341796875, -0.005191802978515625, -0.050567626953125, 0.04156494140625, 0.00865936279296875, 0.042388916015625, 0.006656646728515625, 0.0008912086486816406, 0.054779052734375, 0.0189971923828125, 0.02447509765625, -0.005847930908203125, -0.0170745849609375, -0.05120849609375, -0.01319122314453125, -0.01047515869140625, -0.035125732421875, 0.04803466796875, -0.0300140380859375, 0.022308349609375, -0.018524169921875, 0.03875732421875, -0.045440673828125, 0.029541015625, -0.033233642578125, 0.037200927734375, 0.01023101806640625, 0.01824951171875, 0.025787353515625, 0.0269927978515625, -0.05462646484375, 0.006153106689453125, 0.0039825439453125, 0.04754638671875, 0.0193328857421875, -0.0218353271484375, -0.028228759765625, -0.016265869140625, -0.000751495361328125, -0.04248046875, -0.0469970703125, 0.05120849609375, -0.0010852813720703125, 0.0196380615234375, -0.03851318359375, 0.0248565673828125, -0.0084381103515625, 0.032958984375, -0.0059967041015625, 0.009613037109375, 0.032562255859375, 0.0003695487976074219, -0.050567626953125, -0.003162384033203125, -0.034393310546875, -0.042877197265625, 0.0018930435180664062, 0.07232666015625, 0.040740966796875, -0.003570556640625, -0.008758544921875, -0.0131378173828125, -0.0184326171875, -0.052520751953125, 0.0222015380859375, -0.035186767578125, -0.03076171875, 0.0301055908203125, 0.051239013671875, 0.0310821533203125, 0.00833892822265625, 0.0406494140625, -0.004558563232421875, 0.02691650390625, -0.035888671875, 0.014404296875, -0.0092010498046875, -0.014495849609375, -0.00040411949157714844, -0.0083160400390625, 0.0033626556396484375, -0.026580810546875, 0.004955291748046875, 0.0207366943359375, 0.01093292236328125, 0.0173187255859375, -0.03143310546875, 0.00576019287109375, 0.0310211181640625, 0.034454345703125, -0.0013675689697265625, -0.004207611083984375, 0.0102386474609375, -0.0007696151733398438, -0.0236358642578125, 0.0230712890625, 0.0106658935546875, -0.007114410400390625, -0.047515869140625, 0.00865936279296875, -0.0406494140625, -0.01186370849609375, -0.02178955078125, -0.08148193359375, 0.00324249267578125, -0.0058441162109375, 0.0670166015625, 0.0228118896484375, 0.03948974609375, 0.005611419677734375, 0.00621795654296875, 0.01018524169921875, 0.0249481201171875, -0.035552978515625, 0.05145263671875, -0.040069580078125, 0.036376953125, -0.020050048828125, 0.022491455078125, 0.040069580078125, 0.0005440711975097656, -0.0093841552734375, -0.014373779296875, 0.0021610260009765625, -0.043670654296875, 0.031402587890625, -0.0131378173828125, -0.048248291015625, -0.01251220703125, -0.015045166015625, 0.0024871826171875, 0.0288848876953125, 0.0006990432739257812, -0.03289794921875, 0.01476287841796875, 0.00850677490234375, -0.024993896484375, -0.04290771484375, -0.0294952392578125, -0.022552490234375, -0.01031494140625, -0.007694244384765625, -0.0157318115234375, 0.0151824951171875, -0.0151519775390625, 0.006412506103515625, 0.025238037109375, 0.0210418701171875, -0.08477783203125, -0.01800537109375, -0.0872802734375, 0.005138397216796875, -0.019439697265625, 0.034393310546875, 0.004848480224609375, -0.0082855224609375, 0.0084228515625, -0.01348876953125, 0.040283203125, 0.048736572265625, -0.019989013671875, -0.0256500244140625, -0.037750244140625, -0.0023956298828125, -0.0177459716796875, -0.0038967132568359375, 0.0867919921875, 0.02435302734375, -0.0281982421875, 0.01556396484375, 0.018218994140625, -0.012908935546875, 0.033172607421875, -0.05987548828125, -0.017669677734375, 0.0183563232421875, 0.01261138916015625, -0.0474853515625, -0.025787353515625, -0.029144287109375, -0.03619384765625, 0.060546875, 0.0238800048828125, 0.0006022453308105469, 0.00470733642578125, 0.033905029296875, 0.0022430419921875, 0.002437591552734375, 0.0322265625, -0.041595458984375, 0.0733642578125, -0.005420684814453125, 0.0011472702026367188, -0.0379638671875, 0.0736083984375, 0.0003504753112792969, 0.031219482421875, 0.044403076171875, -0.00537872314453125, -0.026214599609375, 0.00445556640625, -0.08721923828125, -0.0413818359375, 0.03118896484375, -0.08416748046875, -0.028350830078125, -0.044219970703125, -0.011566162109375, -0.0045013427734375, 0.055908203125, -0.0145263671875, 0.0027904510498046875, -0.01641845703125, 0.003406524658203125, -0.03857421875, -0.07843017578125, -0.033447265625, 0.01739501953125, -0.06329345703125, 0.002498626708984375, -0.00666046142578125, -0.04132080078125, 0.003589630126953125, -0.0182952880859375, -0.03143310546875, -0.019561767578125, 0.053436279296875, -0.006664276123046875, -0.0090484619140625, 0.022369384765625, -0.0007028579711914062, -0.01386260986328125, -0.062042236328125, 0.0215301513671875, -0.061920166015625, -0.0364990234375, 0.05078125, 0.048583984375, -0.022705078125, -0.016937255859375, -0.0186309814453125, 0.07867431640625, 0.04266357421875, 0.00583648681640625, 0.0014562606811523438, -0.036376953125, -0.007099151611328125, 0.0178375244140625, 0.0100860595703125, -0.003963470458984375, 0.00945281982421875, 0.0222625732421875, -0.028717041015625, 0.0224761962890625, -0.006053924560546875, -0.01123809814453125, 0.041229248046875, -0.0484619140625, -0.038818359375, -0.007289886474609375, -0.0157470703125, 0.039947509765625, 0.0097808837890625, -0.03289794921875, -0.0214385986328125, -0.049652099609375, 0.029327392578125, -0.035064697265625, -0.0016632080078125, 0.009979248046875, 0.06170654296875, 0.0221405029296875, -0.014404296875, 0.01409149169921875, 0.03155517578125, 0.0212249755859375, -0.034881591796875, 0.025482177734375, -0.0028476715087890625, -0.0026531219482421875, 0.0391845703125, -0.0601806640625, 0.0026569366455078125, -0.003253936767578125, 0.01824951171875, 0.00711822509765625, 0.0230560302734375, -0.0031414031982421875, 0.00804901123046875, 0.0212249755859375, 0.040130615234375, -0.0009183883666992188, -0.0210418701171875, 0.011322021484375, 0.036956787109375, -0.0291595458984375, 0.017852783203125, -0.0318603515625, -0.0122833251953125, 0.0157623291015625, -0.027191162109375, 0.060791015625, -0.004161834716796875, -0.00075531005859375, 0.0098876953125, -0.00554656982421875, -0.004180908203125, 0.0022869110107421875, 0.00995635986328125, 0.019622802734375, 0.0182037353515625, 0.02459716796875, 0.004970550537109375, -0.03411865234375, -0.0011186599731445312, 0.08270263671875, 0.030029296875, 0.0019073486328125, 0.0009756088256835938, -0.0399169921875, -0.02899169921875, -0.0296783447265625, -0.01145172119140625, -0.00215911865234375, -0.0021038055419921875, -0.01055908203125, 0.02130126953125, 0.0270233154296875, -0.01513671875, -0.027618408203125, 0.024627685546875, -0.0008187294006347656, 0.0094451904296875, 0.01003265380859375, 0.059234619140625, 0.00762176513671875, 0.036590576171875, -0.00029850006103515625, -0.0013675689697265625, -0.01067352294921875, 0.030426025390625, 0.051055908203125, -0.047454833984375, 0.017913818359375, -0.0205078125, 0.01108551025390625, -0.05084228515625, -0.02325439453125, 0.039154052734375, 0.07635498046875, 0.00582122802734375, -0.00701904296875, -0.006679534912109375, -0.039825439453125, -0.0301971435546875, -0.0023326873779296875, 0.0235748291015625, 0.022003173828125, -0.0127105712890625, 0.006313323974609375, 0.02215576171875, 0.04144287109375, -0.0250091552734375, 0.004810333251953125, -0.005779266357421875, 0.0189361572265625, 0.00415802001953125, -0.0361328125, 0.0323486328125, 0.0309295654296875, 0.022064208984375, -0.045379638671875, 0.007526397705078125, -0.0306549072265625, 0.010101318359375, -0.0203399658203125, 0.002468109130859375, 0.02166748046875, 0.01155853271484375, 0.0343017578125, -0.032470703125, -0.00904083251953125, 0.04168701171875, -0.01404571533203125, 0.044647216796875, -0.00641632080078125, -0.04217529296875, -0.0110015869140625, -0.01177978515625, 0.01140594482421875, -0.005420684814453125, -0.0281524658203125, 0.0200958251953125, 0.006488800048828125, -0.00394439697265625, 0.022216796875, 0.013580322265625, 0.0181732177734375, 0.0014677047729492188, 0.02874755859375, -0.01247406005859375, 0.06201171875, -0.01360321044921875, 0.0902099609375, -0.0352783203125, 0.05712890625, -0.01216888427734375, 0.009033203125, -0.033477783203125, 0.00913238525390625, 0.0004978179931640625, -0.04766845703125, -0.0160064697265625, -0.0210723876953125, -0.02032470703125, 0.05487060546875, 0.07403564453125, 0.0164031982421875, -0.0013818740844726562, 0.0186004638671875, 0.0016193389892578125, -0.0303497314453125, -0.0303955078125, 0.0112457275390625, 0.040435791015625, -0.0340576171875, 0.03167724609375, 0.10479736328125, 0.00015604496002197266, -0.037445068359375, -0.005828857421875, -0.01097869873046875, 0.0265350341796875, 0.020477294921875, 0.0182647705078125, 0.00031304359436035156, 0.05706787109375, 0.00386810302734375, 0.03875732421875, 0.0147857666015625, 0.006687164306640625, 0.034210205078125, 0.0184173583984375, 0.057464599609375, 0.03155517578125, 0.051971435546875, -0.0011425018310546875, 0.027862548828125, 0.03948974609375, -0.00847625732421875, -0.0008521080017089844, 0.03857421875, 0.04998779296875, -0.060089111328125, -0.01153564453125, 0.0002658367156982422, -0.01369476318359375, 0.015594482421875, 0.0225982666015625, 0.038116455078125, 0.08563232421875, -0.0308074951171875, -0.04052734375, -0.0306396484375, -0.0000928640365600586, 0.005657196044921875, -0.0146942138671875, -0.01093292236328125, 0.040313720703125, -0.003322601318359375, 0.0244293212890625, -0.01396942138671875, -0.021728515625, 0.007549285888671875, -0.0024204254150390625, 0.0112152099609375, 0.01348114013671875, -0.007328033447265625, -0.0265045166015625, 0.01983642578125, -0.0440673828125, -0.00746917724609375, 0.006847381591796875, -0.01264190673828125, 0.0298309326171875, 0.0133209228515625, -0.0258026123046875, -0.00678253173828125, -0.00888824462890625, -0.047698974609375, 0.035491943359375, -0.0222015380859375, 0.0193939208984375, -0.004428863525390625, -0.0142059326171875, 0.003772735595703125, -0.002414703369140625, -0.045562744140625, -0.02069091796875, -0.040435791015625, 0.0673828125, -0.03497314453125, -0.007602691650390625, 0.0012340545654296875, 0.0267181396484375, 0.0039825439453125, 0.0014438629150390625, -0.03173828125, -0.026397705078125, -0.0133514404296875, -0.032989501953125, -0.067626953125, 0.010162353515625, -0.05084228515625, -0.045562744140625, 0.0667724609375, 0.01467132568359375, 0.047149658203125, 0.035491943359375, 0.0187530517578125, -0.029541015625, -0.0005664825439453125, -0.0185699462890625, 0.04376220703125, 0.0004703998565673828, 0.0254058837890625, -0.0601806640625, -0.026214599609375, 0.0107269287109375, 0.061767578125, 0.043426513671875, 0.0038166046142578125, -0.052215576171875, -0.0010442733764648438, 0.072021484375, 0.01300811767578125, -0.00409698486328125, 0.0265350341796875, -0.0036411285400390625, 0.06658935546875, 0.046142578125, -0.0694580078125, 0.0180511474609375, -0.0021381378173828125, -0.0287933349609375, 0.0274200439453125, -0.0030364990234375, -0.0105438232421875, 0.0091552734375, 0.0045318603515625, -0.0596923828125, 0.01617431640625, 0.047576904296875, -0.039215087890625, -0.0147857666015625, 0.00727081298828125, 0.049652099609375, -0.11981201171875, -0.06243896484375, -0.035491943359375, 0.044708251953125, 0.030487060546875, -0.004444122314453125, -0.003337860107421875, -0.0033016204833984375, 0.05438232421875, -0.0408935546875, -0.01125335693359375, -0.0122528076171875, 0.023529052734375, 0.052398681640625, 0.0433349609375, 0.0318603515625, 0.01904296875, 0.03668212890625, 0.044281005859375, 0.048248291015625, -0.0523681640625, -0.0246734619140625, 0.005863189697265625, 0.00576019287109375, 0.00010573863983154297, -0.015045166015625, 0.01045989990234375, -0.0182952880859375, -0.00746917724609375, -0.02459716796875, 0.0023517608642578125, -0.00872039794921875, 0.01412200927734375, -0.0266265869140625, -0.037567138671875, 0.02056884765625, 0.024688720703125, -0.05804443359375, 0.01229095458984375, 0.01800537109375, 0.0274200439453125, 0.04852294921875, 0.034942626953125, 0.061248779296875, -0.020965576171875, -0.00452423095703125, 0.045623779296875, -0.052490234375, 0.053497314453125, -0.0648193359375, -0.045867919921875, -0.00481414794921875, 0.05084228515625, 0.0462646484375, 0.0357666015625, 0.03326416015625, -0.01294708251953125, -0.0018072128295898438, 0.01247406005859375, 0.013641357421875, -0.0280914306640625, 0.04620361328125, -0.043426513671875, 0.00891876220703125, -0.0167694091796875, -0.0258941650390625, -0.038238525390625, -0.026123046875, 0.03387451171875, 0.000606536865234375, 0.030914306640625, 0.000026285648345947266, -0.00972747802734375, 0.01107025146484375, -0.01519775390625, 0.03546142578125, 0.016510009765625, -0.052947998046875, 0.01116943359375, -0.01549530029296875, -0.09185791015625, 0.0227508544921875, 0.05181884765625, 0.00022614002227783203, -0.0186614990234375, 0.014556884765625, -0.01032257080078125, 0.0221099853515625, 0.016082763671875, -0.01482391357421875, -0.004180908203125, 0.03240966796875, -0.0158538818359375, -0.05859375, -0.03680419921875, 0.0005245208740234375, 0.0286865234375, 0.00409698486328125, 0.1060791015625, -0.03680419921875, 0.00615692138671875, 0.0029506683349609375, 0.00872802734375, -0.0070648193359375, 0.01285552978515625, 0.01515960693359375, -0.0004470348358154297, 0.00867462158203125, -0.0181884765625, -0.0335693359375, 0.0223541259765625, 0.0216522216796875, -0.0280303955078125, 0.00504302978515625, -0.03155517578125, 0.0196990966796875, -0.0016918182373046875, 0.009002685546875, -0.0311126708984375, -0.07220458984375, -0.06866455078125, -0.009857177734375, 0.013031005859375, 0.03216552734375, 0.004207611083984375, 0.043365478515625, 0.0017528533935546875, 0.0025196075439453125, 0.0172271728515625, -0.04595947265625, 0.05682373046875, 0.053802490234375, -0.0298004150390625, 0.037689208984375, 0.045654296875, -0.01019287109375, -0.004169464111328125, 0.038055419921875, -0.0182952880859375, 0.007663726806640625, -0.006500244140625, 0.004924774169921875, -0.009033203125, 0.037689208984375, -0.0089263916015625, 0.00890350341796875, -0.00955963134765625, 0.00910186767578125, 0.0013856887817382812, -0.0009565353393554688, -0.0128173828125, 0.00024044513702392578, -0.0199432373046875, 0.0017843246459960938, -0.00201416015625, -0.047637939453125, -0.020538330078125, 0.016143798828125, 0.033477783203125, -0.00455474853515625, -0.06884765625, 0.0469970703125, -0.04376220703125, 0.07025146484375, -0.00862884521484375, 0.017333984375, 0.0006952285766601562, 0.042724609375, -0.0210723876953125, -0.007007598876953125, -0.014617919921875, 0.01314544677734375, -0.0219879150390625, 0.01409149169921875, 0.036163330078125, -0.01702880859375, 0.006927490234375, -0.0029430389404296875, -0.005748748779296875, 0.0633544921875, -0.039093017578125, -0.0006356239318847656, -0.006763458251953125, 0.0243682861328125, -0.033233642578125, -0.0714111328125, 0.0037403106689453125, -0.047607421875, -0.008544921875, 0.00843048095703125, -0.0179901123046875, 0.006214141845703125, -0.04400634765625, -0.05029296875, 0.0423583984375, 0.01441192626953125, -0.022125244140625, -0.0094451904296875, -0.00955963134765625, -0.0262603759765625, 0.0284271240234375, -0.003871917724609375, -0.0220794677734375, -0.00804901123046875, 0.022552490234375, 0.018402099609375, 0.060546875, 0.0142669677734375, 0.0260467529296875, 0.0138702392578125, 0.02947998046875, 0.0055389404296875, 0.00569915771484375, 0.01983642578125, -0.02252197265625, 0.06988525390625, 0.05450439453125, -0.0052337646484375, 0.01464080810546875, 0.0101318359375, -0.042755126953125, 0.0114898681640625, -0.047210693359375, -0.049591064453125, -0.049102783203125, 0.047332763671875, 0.01413726806640625, 0.0037250518798828125, 0.011627197265625, -0.01453399658203125, -0.0076446533203125, -0.07635498046875, -0.01383209228515625, 0.058685302734375, -0.07672119140625, -0.0116729736328125, -0.015594482421875, -0.01386260986328125, -0.0299835205078125, 0.01226043701171875, -0.054229736328125, -0.000270843505859375, -0.0025730133056640625, -0.00909423828125, -0.052001953125, -0.003643035888671875, 0.039794921875, -0.02703857421875, -0.0143585205078125, -0.00936126708984375, 0.020355224609375, 0.004863739013671875, -0.03265380859375, -0.015869140625, 0.0135345458984375, -0.0267181396484375, -0.0010728836059570312, 0.004302978515625, 0.0159454345703125, -0.0086669921875, -0.0005054473876953125, -0.01114654541015625, 0.022857666015625, -0.01715087890625, 0.008575439453125, -0.001651763916015625, 0.0535888671875, 0.004669189453125, 0.06781005859375, -0.01158905029296875, 0.01611328125, -0.01096343994140625, 0.027435302734375, -0.0103759765625, 0.00182342529296875, 0.033477783203125, -0.0484619140625, 0.002445220947265625, 0.00621795654296875, -0.058349609375, -0.030426025390625, -0.0313720703125, -0.00867462158203125, -0.0033855438232421875, -0.005031585693359375 ]
1e96610f1e96b92151f8fc5a2d689b978f976a08
Wordpress Stackexchange Q: Stop unwanted WP redirection to new url I had a custom type post, for which I changed the url. I have refreshed permalinks and cleared site and browser cache. The old url now redirects to the new url automatically. Possibly because the post ID is the same (?). Is it possible the stop the old url to direct to the new url? A: WordPress uses a function called wp_old_slug_redirect() to find out if you're looking for a post whose slug was recently changed and redirect you to its new home. If you want to prevent this behaviour for this specific post, delete the _wp_old_slug post meta entry from the database for that post. If you want to prevent this behaviour for all posts, prevent the function from being used at all: remove_action( 'template_redirect', 'wp_old_slug_redirect' );
Q: Stop unwanted WP redirection to new url I had a custom type post, for which I changed the url. I have refreshed permalinks and cleared site and browser cache. The old url now redirects to the new url automatically. Possibly because the post ID is the same (?). Is it possible the stop the old url to direct to the new url? A: WordPress uses a function called wp_old_slug_redirect() to find out if you're looking for a post whose slug was recently changed and redirect you to its new home. If you want to prevent this behaviour for this specific post, delete the _wp_old_slug post meta entry from the database for that post. If you want to prevent this behaviour for all posts, prevent the function from being used at all: remove_action( 'template_redirect', 'wp_old_slug_redirect' );
wordpress
{ "language": "en", "length": 136, "provenance": "stackexchange_00019.jsonl.gz:483511", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/292488" }
[ 0.09857177734375, 0.0224151611328125, 0.039947509765625, -0.01255035400390625, 0.0270843505859375, -0.0341796875, 0.055908203125, -0.06854248046875, 0.003185272216796875, -0.002208709716796875, 0.0296783447265625, -0.00527191162109375, 0.004268646240234375, -0.059234619140625, 0.03497314453125, -0.0009627342224121094, 0.0631103515625, -0.062744140625, 0.019134521484375, -0.009429931640625, 0.0162811279296875, 0.0254364013671875, 0.049957275390625, 0.0697021484375, -0.004680633544921875, 0.0023479461669921875, 0.05963134765625, -0.0288543701171875, -0.01467132568359375, -0.034332275390625, 0.0127105712890625, 0.0203399658203125, -0.01824951171875, 0.07330322265625, -0.04571533203125, -0.0491943359375, -0.0004968643188476562, 0.04229736328125, 0.0213775634765625, -0.0009183883666992188, 0.02618408203125, -0.023773193359375, -0.03448486328125, -0.0146026611328125, -0.0218963623046875, -0.038177490234375, 0.0237579345703125, -0.0199432373046875, 0.0004940032958984375, 0.01136016845703125, 0.00815582275390625, -0.00032401084899902344, 0.028961181640625, 0.01055145263671875, -0.029449462890625, -0.036834716796875, -0.0207672119140625, 0.01654052734375, 0.01230621337890625, -0.0180816650390625, 0.00478363037109375, 0.022003173828125, 0.01235198974609375, 0.0248565673828125, -0.005023956298828125, -0.00553131103515625, -0.0141143798828125, 0.020263671875, -0.0697021484375, -0.02581787109375, 0.0338134765625, -0.03851318359375, -0.01267242431640625, -0.02508544921875, -0.01953125, -0.0204620361328125, 0.034210205078125, -0.0187835693359375, -0.0267486572265625, 0.038543701171875, 0.01081085205078125, -0.0259246826171875, 0.01708984375, -0.042083740234375, 0.0289154052734375, -0.01395416259765625, -0.01100921630859375, -0.0081024169921875, -0.0287933349609375, -0.0244598388671875, -0.038330078125, -0.01517486572265625, -0.021240234375, -0.0079803466796875, -0.0308074951171875, -0.007572174072265625, 0.05218505859375, 0.054351806640625, -0.0158843994140625, -0.01374053955078125, -0.0133819580078125, -0.03375244140625, -0.0015277862548828125, -0.0209503173828125, -0.009124755859375, 0.047607421875, 0.021240234375, 0.0225372314453125, 0.03228759765625, 0.01061248779296875, 0.0248565673828125, 0.0372314453125, -0.0258636474609375, -0.0205230712890625, -0.02838134765625, 0.0276641845703125, -0.04095458984375, -0.022003173828125, -0.006656646728515625, 0.001708984375, 0.00354766845703125, 0.028900146484375, 0.05499267578125, -0.046142578125, 0.024017333984375, -0.0008263587951660156, -0.0323486328125, -0.054534912109375, -0.026397705078125, -0.00951385498046875, -0.0386962890625, -0.004253387451171875, 0.056488037109375, 0.0780029296875, 0.052642822265625, -0.0250244140625, 0.043304443359375, -0.007572174072265625, -0.01361846923828125, 0.02557373046875, 0.002170562744140625, -0.043731689453125, -0.050872802734375, -0.0089569091796875, 0.067138671875, 0.038818359375, -0.004787445068359375, 0.01015472412109375, 0.0203094482421875, -0.0113525390625, 0.01000213623046875, -0.037872314453125, 0.05499267578125, -0.0211944580078125, 0.003108978271484375, -0.069580078125, 0.038818359375, -0.047607421875, 0.00528717041015625, -0.06646728515625, 0.0171966552734375, 0.0007853507995605469, 0.006137847900390625, -0.042236328125, -0.08551025390625, -0.0025424957275390625, -0.0537109375, -0.025146484375, 0.0132904052734375, 0.027618408203125, 0.00876617431640625, 0.0032749176025390625, -0.038970947265625, -0.005970001220703125, -0.00481414794921875, -0.0190582275390625, 0.00826263427734375, 0.016510009765625, 0.0052337646484375, 0.07562255859375, 0.0171966552734375, -0.033233642578125, 0.022216796875, -0.0066070556640625, -0.07550048828125, 0.07379150390625, 0.004093170166015625, 0.06610107421875, 0.004528045654296875, -0.0057220458984375, 0.066162109375, 0.024749755859375, -0.044677734375, 0.045867919921875, -0.01328277587890625, -0.024658203125, 0.0211181640625, 0.003894805908203125, -0.0038700103759765625, 0.00704193115234375, 0.01137542724609375, 0.056976318359375, -0.049072265625, -0.00833892822265625, -0.068603515625, 0.01558685302734375, -0.0226287841796875, 0.05206298828125, 0.01279449462890625, 0.035736083984375, 0.004093170166015625, -0.00730133056640625, -0.01171112060546875, -0.022430419921875, -0.00911712646484375, 0.00839996337890625, -0.013519287109375, -0.006504058837890625, -0.017547607421875, -0.0006127357482910156, -0.03399658203125, 0.0019683837890625, -0.059722900390625, -0.02911376953125, 0.0291900634765625, -0.053375244140625, -0.00899505615234375, -0.047882080078125, -0.057464599609375, -0.0078582763671875, -0.09869384765625, 0.0885009765625, 0.0177459716796875, 0.01058197021484375, -0.035675048828125, 0.007419586181640625, 0.00568389892578125, -0.042724609375, 0.0019197463989257812, 0.05548095703125, 0.030059814453125, 0.00652313232421875, -0.01666259765625, 0.01096343994140625, -0.036285400390625, -0.07159423828125, 0.00939178466796875, -0.0005464553833007812, 0.006816864013671875, 0.016693115234375, -0.0030384063720703125, -0.0174407958984375, 0.02899169921875, -0.043792724609375, -0.004627227783203125, 0.042938232421875, -0.01506805419921875, -0.02252197265625, 0.0008645057678222656, -0.01425933837890625, 0.0177764892578125, -0.02880859375, -0.03271484375, -0.004901885986328125, -0.007213592529296875, -0.018310546875, 0.004302978515625, 0.00205230712890625, 0.004932403564453125, -0.03515625, 0.0170135498046875, -0.0222930908203125, -0.002532958984375, -0.0164794921875, 0.0528564453125, -0.043212890625, -0.02191162109375, 0.0021190643310546875, 0.025238037109375, -0.006687164306640625, -0.0271759033203125, 0.01763916015625, -0.015777587890625, -0.021636962890625, -0.01145172119140625, -0.06268310546875, 0.0024127960205078125, -0.01739501953125, 0.0245513916015625, 0.0018253326416015625, 0.03399658203125, -0.008819580078125, -0.0269012451171875, 0.0299530029296875, 0.049102783203125, -0.0433349609375, 0.0005946159362792969, -0.005916595458984375, 0.01349639892578125, 0.0014867782592773438, 0.06927490234375, 0.07373046875, -0.0009164810180664062, 0.032989501953125, 0.0087432861328125, 0.0341796875, 0.006103515625, -0.004718780517578125, -0.018768310546875, 0.0264739990234375, -0.10540771484375, -0.048675537109375, 0.0270843505859375, 0.006011962890625, 0.0162811279296875, -0.0191650390625, 0.0159149169921875, 0.00940704345703125, -0.041748046875, -0.0233306884765625, -0.0190277099609375, -0.036834716796875, -0.0136871337890625, 0.0102996826171875, -0.01262664794921875, 0.0007805824279785156, 0.0206756591796875, 0.01326751708984375, 0.0408935546875, -0.026702880859375, -0.09429931640625, -0.0380859375, -0.07781982421875, 0.01045989990234375, -0.006519317626953125, 0.0015077590942382812, 0.00514984130859375, -0.0021724700927734375, -0.01311492919921875, -0.0246734619140625, 0.0171356201171875, -0.0026912689208984375, 0.0013942718505859375, -0.01187896728515625, -0.0182952880859375, -0.038360595703125, 0.04229736328125, -0.0188751220703125, 0.07196044921875, 0.023712158203125, -0.011627197265625, 0.004848480224609375, -0.0206298828125, -0.006595611572265625, 0.00011807680130004883, -0.006244659423828125, 0.0215911865234375, 0.00047779083251953125, 0.012908935546875, -0.0293426513671875, -0.026702880859375, -0.0008530616760253906, -0.050933837890625, -0.00102996826171875, 0.0224761962890625, -0.0026302337646484375, -0.019683837890625, 0.005527496337890625, 0.032867431640625, 0.0041656494140625, 0.0264434814453125, -0.0150604248046875, 0.053466796875, 0.003475189208984375, 0.0269775390625, -0.06292724609375, 0.052093505859375, 0.00867462158203125, -0.018951416015625, 0.016571044921875, 0.02630615234375, 0.019195556640625, -0.0279083251953125, -0.035430908203125, -0.0679931640625, 0.0321044921875, -0.058258056640625, 0.0034885406494140625, -0.0188751220703125, -0.01026153564453125, 0.028472900390625, 0.0966796875, -0.0355224609375, 0.007022857666015625, -0.02789306640625, -0.0025806427001953125, 0.0133209228515625, -0.02301025390625, -0.047637939453125, -0.005207061767578125, -0.06787109375, -0.00817108154296875, -0.004878997802734375, -0.020965576171875, -0.0299530029296875, 0.07147216796875, -0.04840087890625, -0.021575927734375, 0.051544189453125, -0.00592803955078125, 0.015380859375, 0.00673675537109375, 0.01142120361328125, -0.02752685546875, -0.04180908203125, 0.007480621337890625, -0.074951171875, -0.01425933837890625, 0.01012420654296875, 0.04339599609375, 0.00018465518951416016, -0.02447509765625, -0.0165557861328125, 0.037017822265625, 0.01247406005859375, 0.052581787109375, -0.0208740234375, -0.027679443359375, 0.01233673095703125, 0.0369873046875, 0.00736236572265625, 0.0134429931640625, 0.01123809814453125, -0.032806396484375, -0.05126953125, -0.003143310546875, -0.018463134765625, 0.0238037109375, 0.0011768341064453125, -0.013885498046875, -0.0498046875, -0.0302886962890625, -0.005046844482421875, 0.0229949951171875, 0.004241943359375, -0.02099609375, -0.04150390625, -0.0611572265625, 0.022613525390625, -0.0158233642578125, -0.004291534423828125, 0.005077362060546875, 0.051727294921875, 0.021820068359375, -0.0015840530395507812, 0.0290069580078125, 0.013275146484375, 0.02728271484375, 0.00452423095703125, 0.02813720703125, -0.01499176025390625, 0.0081634521484375, 0.0202484130859375, -0.0224609375, -0.01427459716796875, -0.01166534423828125, 0.046966552734375, -0.0044708251953125, -0.013336181640625, 0.010650634765625, -0.045318603515625, 0.030059814453125, 0.057769775390625, 0.002109527587890625, -0.0164947509765625, -0.0019855499267578125, 0.0328369140625, -0.0090789794921875, -0.01366424560546875, -0.036224365234375, -0.0531005859375, 0.033111572265625, 0.0318603515625, 0.0013790130615234375, 0.0164642333984375, -0.00799560546875, 0.0220947265625, -0.034423828125, 0.01885986328125, -0.0411376953125, -0.0010995864868164062, -0.037567138671875, 0.039276123046875, -0.0282745361328125, -0.0012922286987304688, -0.024200439453125, -0.002838134765625, 0.045654296875, 0.00017499923706054688, -0.0219573974609375, 0.007335662841796875, -0.023590087890625, -0.03466796875, 0.029754638671875, -0.0193328857421875, 0.046875, 0.057037353515625, -0.018829345703125, -0.01537322998046875, -0.017242431640625, 0.0037555694580078125, -0.05938720703125, 0.006145477294921875, 0.01812744140625, 0.0015039443969726562, 0.040008544921875, 0.03802490234375, 0.056884765625, 0.0239715576171875, -0.037750244140625, 0.01203155517578125, 0.00925445556640625, 0.02227783203125, 0.0107879638671875, 0.020599365234375, 0.0014963150024414062, -0.01007080078125, 0.00811004638671875, -0.055908203125, -0.0216522216796875, 0.03582763671875, 0.07037353515625, -0.0190277099609375, -0.048065185546875, 0.0273590087890625, -0.0263214111328125, -0.0036525726318359375, 0.046875, 0.0223388671875, -0.03564453125, -0.012115478515625, 0.01174163818359375, 0.0256500244140625, -0.01041412353515625, -0.0240478515625, 0.021484375, -0.0440673828125, 0.0211181640625, 0.0182342529296875, 0.01212310791015625, -0.016204833984375, -0.0267333984375, -0.0196380615234375, -0.05889892578125, -0.00968170166015625, 0.0097503662109375, 0.054779052734375, -0.034942626953125, -0.028778076171875, 0.0218963623046875, -0.01407623291015625, 0.032867431640625, -0.0253753662109375, -0.0157470703125, 0.0027599334716796875, 0.005809783935546875, 0.06781005859375, 0.0262298583984375, -0.049774169921875, 0.0037078857421875, -0.0555419921875, -0.01479339599609375, -0.01102447509765625, -0.025665283203125, -0.023773193359375, -0.0020313262939453125, 0.026611328125, 0.015350341796875, 0.007354736328125, -0.00550079345703125, 0.00897979736328125, 0.0174102783203125, 0.002544403076171875, 0.026031494140625, -0.035736083984375, 0.02362060546875, 0.0167236328125, 0.034027099609375, -0.024505615234375, -0.006320953369140625, 0.0196685791015625, -0.00919342041015625, 0.01396942138671875, -0.0136871337890625, -0.048797607421875, 0.0019121170043945312, -0.035400390625, 0.01067352294921875, 0.04510498046875, -0.025177001953125, -0.00830078125, -0.01171875, 0.0088958740234375, -0.0303192138671875, 0.0188751220703125, -0.0309295654296875, 0.00824737548828125, -0.042816162109375, -0.0018825531005859375, 0.006412506103515625, 0.009429931640625, 0.00472259521484375, 0.0083770751953125, -0.005931854248046875, 0.0027408599853515625, -0.0200958251953125, -0.01959228515625, 0.00945281982421875, 0.045623779296875, 0.006923675537109375, 0.0474853515625, 0.01061248779296875, 0.03387451171875, 0.05157470703125, -0.023834228515625, 0.045135498046875, 0.006011962890625, 0.055084228515625, -0.00939178466796875, 0.0130462646484375, 0.04486083984375, -0.02099609375, -0.004512786865234375, 0.054840087890625, 0.041107177734375, -0.0811767578125, 0.00261688232421875, 0.011962890625, 0.007205963134765625, 0.01000213623046875, -0.007442474365234375, -0.011199951171875, 0.011810302734375, 0.006694793701171875, -0.025848388671875, -0.043792724609375, -0.01018524169921875, 0.0121917724609375, 0.0090789794921875, -0.00695037841796875, 0.032379150390625, 0.0003440380096435547, -0.04913330078125, -0.00495147705078125, 0.0509033203125, -0.0279083251953125, -0.03033447265625, -0.019805908203125, 0.0132904052734375, -0.011993408203125, -0.038726806640625, 0.0460205078125, -0.0296478271484375, 0.034942626953125, 0.04248046875, -0.01416015625, 0.0262603759765625, 0.049285888671875, -0.01548004150390625, 0.042724609375, 0.011474609375, -0.04071044921875, 0.01238250732421875, -0.037322998046875, 0.0010118484497070312, 0.024993896484375, -0.030975341796875, 0.015625, 0.005962371826171875, -0.032196044921875, -0.0135498046875, 0.0008955001831054688, 0.05682373046875, -0.022735595703125, -0.01519775390625, 0.04803466796875, -0.00934600830078125, -0.0243377685546875, -0.027191162109375, 0.0106048583984375, -0.0352783203125, -0.0010929107666015625, -0.0249176025390625, -0.0158843994140625, 0.002330780029296875, -0.028778076171875, -0.08392333984375, 0.0833740234375, 0.0159912109375, 0.05621337890625, 0.003204345703125, 0.01457977294921875, -0.01374053955078125, 0.00897216796875, -0.0186004638671875, 0.07672119140625, 0.017364501953125, 0.004970550537109375, -0.035736083984375, -0.00424957275390625, -0.002544403076171875, 0.005710601806640625, 0.06982421875, 0.0189208984375, -0.032440185546875, 0.0193328857421875, 0.039947509765625, -0.00998687744140625, -0.0399169921875, 0.06207275390625, -0.01554107666015625, 0.042694091796875, 0.0478515625, -0.078369140625, 0.01168060302734375, 0.0049285888671875, -0.00815582275390625, -0.0121307373046875, 0.01300811767578125, 0.01018524169921875, -0.038787841796875, -0.0254364013671875, -0.06756591796875, -0.0026683807373046875, 0.042236328125, 0.0189971923828125, 0.0311737060546875, -0.037445068359375, 0.016998291015625, -0.072998046875, 0.041778564453125, -0.035125732421875, 0.053192138671875, 0.01366424560546875, 0.01006317138671875, -0.006397247314453125, 0.001956939697265625, 0.027099609375, -0.0240936279296875, -0.0010519027709960938, 0.0301971435546875, -0.0243072509765625, 0.0794677734375, 0.0562744140625, 0.045074462890625, -0.0101776123046875, -0.0237274169921875, 0.045684814453125, 0.094482421875, -0.04364013671875, 0.00020897388458251953, 0.00673675537109375, 0.0003380775451660156, -0.0041961669921875, -0.031982421875, 0.01544189453125, -0.043548583984375, -0.033172607421875, -0.01513671875, 0.0033721923828125, 0.0633544921875, 0.0201416015625, -0.005985260009765625, -0.0204925537109375, -0.040069580078125, 0.0158843994140625, -0.0430908203125, -0.0239410400390625, 0.0193634033203125, 0.065185546875, 0.03375244140625, 0.0308380126953125, 0.01383209228515625, -0.03179931640625, -0.0102996826171875, 0.0000928044319152832, -0.01593017578125, 0.01462554931640625, -0.06036376953125, -0.046539306640625, 0.022003173828125, 0.059722900390625, 0.046478271484375, 0.00939178466796875, 0.02972412109375, -0.00827789306640625, -0.035919189453125, 0.007205963134765625, 0.0248260498046875, -0.02471923828125, 0.044097900390625, -0.0546875, -0.002307891845703125, -0.0248870849609375, -0.0316162109375, -0.0214385986328125, -0.0408935546875, 0.02166748046875, -0.00853729248046875, 0.03173828125, -0.00597381591796875, -0.023895263671875, 0.042266845703125, -0.0154266357421875, 0.048980712890625, 0.023223876953125, -0.0247802734375, -0.01073455810546875, -0.0137786865234375, -0.0129241943359375, 0.0159759521484375, 0.028839111328125, -0.00048470497131347656, 0.0161590576171875, -0.00861358642578125, 0.01175689697265625, -0.0182342529296875, 0.006832122802734375, -0.01161956787109375, -0.0003752708435058594, 0.029876708984375, 0.004970550537109375, -0.051910400390625, -0.01381683349609375, 0.01271820068359375, -0.004184722900390625, -0.01464080810546875, 0.07135009765625, -0.003391265869140625, -0.0106964111328125, -0.01290130615234375, -0.006622314453125, -0.012603759765625, -0.0218048095703125, 0.03106689453125, -0.0014581680297851562, -0.01412200927734375, -0.0112152099609375, -0.07861328125, 0.00891876220703125, 0.020294189453125, -0.00199127197265625, 0.0545654296875, -0.05377197265625, 0.005657196044921875, -0.031829833984375, -0.0115966796875, -0.058990478515625, -0.0443115234375, -0.05279541015625, -0.031982421875, 0.00036978721618652344, -0.0181121826171875, 0.00785064697265625, 0.05548095703125, -0.0223236083984375, -0.0284271240234375, 0.01399993896484375, -0.0892333984375, 0.017730712890625, 0.04058837890625, 0.0092010498046875, 0.004367828369140625, 0.0200958251953125, -0.01204681396484375, 0.0010328292846679688, 0.012725830078125, -0.007843017578125, 0.022308349609375, -0.0234222412109375, -0.0726318359375, -0.08123779296875, -0.0264434814453125, -0.0028667449951171875, -0.01812744140625, -0.0731201171875, 0.006778717041015625, -0.04864501953125, -0.0260467529296875, -0.0083770751953125, -0.03118896484375, -0.0027256011962890625, 0.01922607421875, -0.006862640380859375, 0.00435638427734375, 0.0295257568359375, 0.00568389892578125, 0.035369873046875, 0.0064239501953125, -0.0841064453125, 0.0316162109375, -0.02923583984375, 0.060882568359375, -0.0308074951171875, 0.004657745361328125, 0.0092315673828125, 0.034942626953125, -0.042388916015625, -0.023651123046875, -0.01201629638671875, 0.0171356201171875, -0.0302276611328125, -0.005764007568359375, 0.0246429443359375, -0.00902557373046875, -0.0316162109375, -0.05145263671875, -0.00832366943359375, -0.00860595703125, -0.0096282958984375, -0.00966644287109375, 0.02130126953125, -0.00010967254638671875, -0.023529052734375, -0.0421142578125, -0.00693511962890625, 0.007274627685546875, 0.01325225830078125, 0.0005335807800292969, -0.0251312255859375, -0.0196075439453125, -0.036956787109375, -0.029571533203125, 0.0020599365234375, 0.0203704833984375, -0.026214599609375, -0.04754638671875, 0.01384735107421875, -0.0012769699096679688, 0.0096435546875, -0.00952911376953125, -0.036773681640625, -0.0206756591796875, 0.022918701171875, -0.00862884521484375, 0.044036865234375, -0.00016069412231445312, -0.00815582275390625, 0.0287322998046875, 0.042877197265625, 0.061614990234375, 0.00925445556640625, 0.0101776123046875, -0.029388427734375, 0.0238800048828125, 0.02581787109375, -0.036163330078125, -0.00946807861328125, 0.01031494140625, 0.0155029296875, -0.040252685546875, -0.02618408203125, -0.0035877227783203125, -0.022796630859375, 0.062042236328125, 0.059112548828125, 0.0010595321655273438, -0.02227783203125, -0.033721923828125, 0.00010442733764648438, -0.0207061767578125, -0.01580810546875, 0.0283966064453125, -0.06121826171875, 0.004901885986328125, -0.0034942626953125, 0.00897979736328125, -0.0032329559326171875, -0.04248046875, -0.01739501953125, -0.0035457611083984375, 0.0139007568359375, 0.032745361328125, -0.0185089111328125, 0.0225830078125, 0.038299560546875, -0.02484130859375, 0.0192718505859375, -0.007129669189453125, 0.014617919921875, 0.016815185546875, -0.0380859375, 0.022735595703125, 0.0301513671875, -0.0033245086669921875, -0.0176239013671875, 0.0285797119140625, 0.0196380615234375, -0.00069427490234375, -0.0244140625, -0.01971435546875, 0.013946533203125, -0.0053863525390625, 0.0010862350463867188, -0.00873565673828125, 0.02154541015625, 0.0186767578125, 0.0288848876953125, 0.01336669921875, 0.036895751953125, -0.005275726318359375, 0.058807373046875, -0.0272369384765625, -0.030059814453125, 0.0009565353393554688, -0.0335693359375, 0.006534576416015625, 0.0226898193359375, 0.00595855712890625, 0.002872467041015625, -0.0099029541015625, -0.00952911376953125, 0.004421234130859375, -0.007671356201171875 ]
091a04eb30c7db26c0674b1ed2226c0733296928
Wordpress Stackexchange Q: default favicon for a theme? I am developing a theme and I wonder if there is a possibility to have a default favicon. Details: The theme already has support for adding favicon and users can go to admin->customize->site identity and select an image for favicon. Is possible that the theme shows a default favicon in case user still hasn't got to it? A: You have to change the defualt Site Icon using the Customizer API. $wp_customize->add_setting( 'site_icon' , array( 'default' => YOUR_IMAGE_URL_HERE, ) );
Q: default favicon for a theme? I am developing a theme and I wonder if there is a possibility to have a default favicon. Details: The theme already has support for adding favicon and users can go to admin->customize->site identity and select an image for favicon. Is possible that the theme shows a default favicon in case user still hasn't got to it? A: You have to change the defualt Site Icon using the Customizer API. $wp_customize->add_setting( 'site_icon' , array( 'default' => YOUR_IMAGE_URL_HERE, ) );
wordpress
{ "language": "en", "length": 85, "provenance": "stackexchange_00019.jsonl.gz:483618", "question_score": "4", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/292883" }
[ 0.04986572265625, -0.007541656494140625, 0.03863525390625, 0.002841949462890625, 0.004146575927734375, 0.0025806427001953125, 0.06512451171875, -0.052734375, -0.001682281494140625, 0.00524139404296875, -0.0208892822265625, -0.016326904296875, -0.041229248046875, -0.022308349609375, -0.03399658203125, -0.0703125, 0.04473876953125, 0.00772857666015625, 0.0592041015625, -0.006610870361328125, -0.0019550323486328125, 0.036285400390625, 0.04913330078125, 0.07562255859375, 0.0189361572265625, 0.00225830078125, 0.08416748046875, -0.0155792236328125, 0.0019216537475585938, -0.011138916015625, 0.032012939453125, -0.018463134765625, 0.01029205322265625, 0.0057525634765625, 0.017852783203125, 0.053131103515625, 0.01061248779296875, 0.019805908203125, 0.01522064208984375, 0.0217132568359375, 0.006778717041015625, 0.001941680908203125, 0.034942626953125, 0.03662109375, -0.01654052734375, -0.01268768310546875, -0.01096343994140625, -0.05072021484375, 0.007598876953125, -0.0211944580078125, 0.01256561279296875, 0.0245361328125, 0.027496337890625, -0.040557861328125, -0.02178955078125, -0.024169921875, 0.01517486572265625, 0.00860595703125, 0.04571533203125, -0.03521728515625, -0.0618896484375, -0.0253143310546875, 0.02581787109375, -0.0149383544921875, 0.0258026123046875, -0.0119781494140625, -0.043304443359375, 0.038177490234375, -0.0164031982421875, 0.042388916015625, 0.021575927734375, -0.029998779296875, 0.0122833251953125, -0.029510498046875, -0.0003876686096191406, 0.020416259765625, -0.040283203125, -0.024627685546875, 0.052032470703125, -0.01190948486328125, 0.01129150390625, -0.031707763671875, -0.0034198760986328125, -0.026763916015625, 0.035186767578125, 0.00171661376953125, -0.00417327880859375, -0.0140533447265625, -0.023284912109375, -0.024688720703125, -0.02178955078125, 0.0227813720703125, -0.046478271484375, -0.0002684593200683594, -0.0140380859375, -0.007137298583984375, -0.0080108642578125, 0.032958984375, -0.0230560302734375, 0.028106689453125, -0.01806640625, -0.03363037109375, 0.056396484375, -0.0572509765625, -0.0242156982421875, 0.0355224609375, 0.00948333740234375, 0.005802154541015625, -0.0213470458984375, 0.045013427734375, -0.01227569580078125, -0.052032470703125, 0.02716064453125, -0.020904541015625, -0.029541015625, -0.01361083984375, -0.01519775390625, 0.00919342041015625, 0.0195465087890625, -0.028564453125, 0.03839111328125, 0.0572509765625, 0.0034198760986328125, -0.044952392578125, -0.01500701904296875, -0.0301361083984375, -0.04547119140625, -0.03741455078125, -0.0156707763671875, 0.0285491943359375, -0.057373046875, -0.005420684814453125, 0.08642578125, 0.053802490234375, 0.03924560546875, -0.0316162109375, 0.0036983489990234375, -0.00592803955078125, 0.0038776397705078125, 0.025054931640625, 0.01348876953125, -0.038116455078125, 0.012969970703125, 0.003948211669921875, 0.01041412353515625, 0.0233612060546875, 0.0095977783203125, 0.006076812744140625, -0.0052032470703125, -0.0478515625, -0.00766754150390625, -0.0027523040771484375, -0.00279998779296875, 0.0182952880859375, 0.04132080078125, -0.01470947265625, 0.037872314453125, -0.0200653076171875, 0.0203857421875, -0.01227569580078125, -0.023956298828125, 0.0010051727294921875, -0.0027217864990234375, 0.0141754150390625, 0.005847930908203125, 0.013458251953125, 0.044769287109375, 0.018890380859375, 0.0158538818359375, 0.00414276123046875, -0.019195556640625, -0.00884246826171875, -0.0009741783142089844, -0.00180816650390625, -0.0083770751953125, 0.0115509033203125, 0.01108551025390625, 0.00843048095703125, 0.01354217529296875, 0.047119140625, 0.003826141357421875, -0.0300140380859375, 0.038970947265625, -0.007785797119140625, -0.039276123046875, 0.03277587890625, 0.000789642333984375, 0.06878662109375, 0.0290374755859375, 0.0321044921875, -0.031951904296875, -0.0009908676147460938, -0.08636474609375, 0.01277923583984375, -0.01013946533203125, 0.006649017333984375, -0.03466796875, -0.00417327880859375, -0.020172119140625, -0.004184722900390625, -0.0033550262451171875, -0.03240966796875, 0.0206451416015625, -0.0101318359375, -0.02508544921875, -0.0117950439453125, -0.00958251953125, 0.024505615234375, 0.03765869140625, 0.004299163818359375, -0.0147857666015625, -0.022857666015625, 0.0215606689453125, -0.05279541015625, -0.051513671875, 0.026092529296875, -0.03167724609375, -0.01158905029296875, -0.00841522216796875, 0.01174163818359375, -0.004669189453125, -0.01503753662109375, -0.01120758056640625, 0.006694793701171875, 0.027191162109375, 0.01605224609375, -0.042694091796875, -0.006244659423828125, 0.035003662109375, 0.0005941390991210938, 0.0035839080810546875, 0.0361328125, -0.0224456787109375, -0.015960693359375, -0.020172119140625, -0.006710052490234375, 0.00952911376953125, -0.060394287109375, 0.021575927734375, 0.05419921875, 0.0278472900390625, 0.0494384765625, 0.0010089874267578125, 0.0036602020263671875, 0.045989990234375, 0.0010118484497070312, 0.03729248046875, -0.0199432373046875, 0.026214599609375, -0.01024627685546875, 0.0017976760864257812, -0.056640625, 0.035186767578125, -0.0908203125, 0.03717041015625, 0.01189422607421875, -0.0174102783203125, -0.02850341796875, 0.0097808837890625, -0.0257110595703125, 0.027740478515625, 0.0278167724609375, -0.029144287109375, 0.0235443115234375, 0.00650787353515625, 0.010345458984375, -0.0028095245361328125, -0.014373779296875, -0.045074462890625, 0.0226898193359375, 0.033721923828125, -0.021881103515625, -0.0086517333984375, 0.0517578125, 0.052703857421875, 0.00658416748046875, -0.029632568359375, -0.019195556640625, 0.025634765625, 0.0340576171875, -0.011474609375, 0.0057220458984375, -0.026092529296875, -0.00937652587890625, 0.005062103271484375, -0.033843994140625, 0.00551605224609375, 0.0273895263671875, -0.017486572265625, -0.016876220703125, 0.0019025802612304688, 0.01617431640625, -0.052581787109375, 0.0245361328125, -0.007137298583984375, -0.0186004638671875, -0.0721435546875, -0.0736083984375, 0.0633544921875, -0.0679931640625, -0.00005638599395751953, 0.081298828125, -0.0192413330078125, 0.039520263671875, 0.025115966796875, 0.00836944580078125, 0.039031982421875, 0.026336669921875, 0.01214599609375, 0.0034847259521484375, -0.033721923828125, 0.0014734268188476562, 0.0026798248291015625, 0.00818634033203125, -0.0250244140625, -0.030914306640625, -0.02301025390625, -0.020721435546875, -0.0584716796875, -0.0238800048828125, -0.044036865234375, -0.03533935546875, -0.01727294921875, -0.02935791015625, -0.0011138916015625, 0.0284576416015625, -0.0283050537109375, 0.00638580322265625, -0.04864501953125, -0.033203125, -0.015899658203125, -0.08380126953125, -0.053253173828125, -0.032623291015625, 0.00690460205078125, 0.0166778564453125, 0.00556182861328125, 0.0015869140625, -0.00870513916015625, -0.007537841796875, 0.01690673828125, 0.00437164306640625, 0.0123138427734375, -0.0270843505859375, 0.026458740234375, -0.036407470703125, -0.02685546875, -0.00811004638671875, 0.022003173828125, 0.03509521484375, -0.026763916015625, 0.00896453857421875, -0.0257568359375, -0.05255126953125, -0.039947509765625, 0.0643310546875, 0.03497314453125, -0.0810546875, 0.001010894775390625, -0.0802001953125, -0.004718780517578125, -0.00447845458984375, -0.033477783203125, 0.039642333984375, -0.005779266357421875, -0.0146484375, 0.0017023086547851562, 0.014190673828125, -0.0160980224609375, -0.033294677734375, 0.0202178955078125, -0.0333251953125, 0.0167388916015625, -0.00823974609375, -0.01152801513671875, -0.0081939697265625, 0.029632568359375, -0.0205841064453125, 0.0306243896484375, 0.0162200927734375, 0.03369140625, -0.0027408599853515625, 0.01003265380859375, -0.06298828125, -0.038330078125, 0.037628173828125, -0.0023937225341796875, 0.04852294921875, -0.0281982421875, -0.02899169921875, -0.01505279541015625, 0.09161376953125, -0.0033588409423828125, -0.0265045166015625, -0.015899658203125, 0.0266265869140625, -0.0227203369140625, -0.0450439453125, 0.028350830078125, -0.02935791015625, -0.09710693359375, 0.013824462890625, -0.0106964111328125, -0.0274658203125, -0.00293731689453125, -0.0162200927734375, -0.050537109375, -0.05291748046875, 0.017730712890625, -0.06207275390625, -0.0244140625, 0.038787841796875, -0.0560302734375, 0.0157012939453125, -0.01422882080078125, -0.058990478515625, -0.0679931640625, -0.0209197998046875, -0.041656494140625, 0.062744140625, 0.039947509765625, -0.039337158203125, 0.0011005401611328125, 0.04290771484375, 0.0204010009765625, 0.025970458984375, -0.022705078125, -0.0015077590942382812, -0.01338958740234375, -0.0312042236328125, -0.0086669921875, -0.0265045166015625, 0.0112457275390625, -0.0189666748046875, -0.0689697265625, 0.004932403564453125, -0.004535675048828125, 0.0618896484375, 0.01486968994140625, -0.029022216796875, -0.0038604736328125, -0.00751495361328125, -0.01268768310546875, 0.0274810791015625, 0.0019006729125976562, -0.0081024169921875, -0.03369140625, -0.034027099609375, 0.0675048828125, 0.01110076904296875, 0.02008056640625, -0.004669189453125, 0.08685302734375, 0.002651214599609375, -0.0286865234375, -0.03369140625, 0.007381439208984375, 0.00762176513671875, 0.0070648193359375, 0.01500701904296875, -0.0245361328125, 0.0086517333984375, 0.019866943359375, -0.02764892578125, 0.028106689453125, 0.00969696044921875, -0.004840850830078125, -0.014434814453125, -0.043548583984375, 0.038970947265625, -0.00627899169921875, -0.005123138427734375, 0.0294036865234375, 0.003551483154296875, 0.0020542144775390625, 0.0079498291015625, 0.00015175342559814453, -0.02935791015625, 0.012054443359375, -0.0026187896728515625, -0.0013370513916015625, 0.005542755126953125, 0.0162200927734375, 0.037261962890625, 0.0013885498046875, 0.016387939453125, -0.0006961822509765625, 0.023712158203125, 0.0113067626953125, -0.02960205078125, 0.01136016845703125, -0.04083251953125, 0.025299072265625, -0.01904296875, -0.0124969482421875, -0.0189208984375, -0.0221710205078125, 0.0919189453125, 0.0196533203125, -0.0277099609375, -0.0186767578125, 0.0009007453918457031, 0.0278472900390625, -0.004730224609375, -0.00946044921875, 0.0211029052734375, -0.0294647216796875, -0.0250244140625, -0.012664794921875, -0.055816650390625, -0.047760009765625, -0.05364990234375, 0.0272216796875, 0.003452301025390625, -0.006465911865234375, 0.038970947265625, 0.023193359375, 0.0261383056640625, 0.0207061767578125, -0.024200439453125, -0.03948974609375, -0.011505126953125, 0.02496337890625, 0.024017333984375, 0.0029506683349609375, -0.0165557861328125, 0.017364501953125, 0.045806884765625, -0.003692626953125, 0.0036067962646484375, -0.025299072265625, 0.037445068359375, -0.034698486328125, -0.0200958251953125, 0.039703369140625, -0.06951904296875, -0.00762176513671875, 0.001987457275390625, -0.06829833984375, -0.087158203125, -0.00827789306640625, 0.017730712890625, 0.0258636474609375, -0.037872314453125, -0.0347900390625, 0.0259246826171875, -0.0209503173828125, 0.014190673828125, -0.0238189697265625, -0.026641845703125, 0.01415252685546875, 0.016693115234375, -0.0369873046875, -0.018218994140625, -0.0009236335754394531, -0.07891845703125, -0.009979248046875, -0.01275634765625, -0.01378631591796875, 0.0243682861328125, -0.00799560546875, 0.035308837890625, -0.017791748046875, -0.02691650390625, 0.003276824951171875, 0.01552581787109375, 0.0548095703125, -0.0026340484619140625, -0.01715087890625, 0.006862640380859375, -0.06634521484375, -0.01488494873046875, 0.003173828125, -0.027435302734375, -0.03204345703125, -0.02679443359375, 0.045806884765625, 0.032989501953125, 0.006488800048828125, -0.0212249755859375, 0.0009217262268066406, 0.03289794921875, 0.0309906005859375, 0.08294677734375, -0.01125335693359375, 0.006153106689453125, 0.0193634033203125, 0.0011816024780273438, -0.00934600830078125, -0.01210784912109375, 0.010406494140625, -0.020599365234375, -0.01371002197265625, -0.048431396484375, -0.00994110107421875, 0.0292510986328125, -0.0281219482421875, 0.03387451171875, 0.052093505859375, 0.0162811279296875, -0.006725311279296875, -0.0223236083984375, -0.003780364990234375, -0.004947662353515625, 0.038482666015625, -0.0022449493408203125, -0.007244110107421875, 0.0184173583984375, 0.0133209228515625, 0.01593017578125, -0.0135040283203125, -0.024993896484375, -0.01177215576171875, 0.02117919921875, -0.03094482421875, 0.0116424560546875, -0.07440185546875, 0.0731201171875, 0.07305908203125, 0.00864410400390625, 0.031646728515625, 0.01070404052734375, -0.010345458984375, -0.015106201171875, 0.038330078125, -0.048980712890625, -0.0684814453125, -0.025482177734375, 0.009857177734375, 0.00244140625, -0.00707244873046875, 0.011260986328125, 0.0147705078125, 0.025970458984375, 0.07830810546875, -0.043243408203125, 0.0206146240234375, 0.0272369384765625, -0.008026123046875, 0.046722412109375, -0.00400543212890625, -0.0003800392150878906, -0.006809234619140625, 0.054290771484375, -0.0703125, -0.020721435546875, 0.01448822021484375, -0.0341796875, 0.001850128173828125, 0.0146484375, 0.033416748046875, -0.0006804466247558594, -0.029541015625, -0.0192108154296875, 0.0170440673828125, -0.01751708984375, -0.022064208984375, 0.01474761962890625, -0.02685546875, -0.002197265625, -0.061859130859375, -0.0016994476318359375, -0.026336669921875, 0.005741119384765625, 0.056121826171875, -0.0006284713745117188, -0.0008816719055175781, 0.041259765625, -0.0167236328125, 0.02801513671875, 0.0006604194641113281, -0.050994873046875, 0.005794525146484375, 0.0068359375, 0.0263671875, 0.01995849609375, -0.0347900390625, 0.0124969482421875, -0.0237579345703125, -0.007221221923828125, -0.01139068603515625, -0.00445556640625, 0.11578369140625, -0.048492431640625, -0.0178070068359375, 0.0218353271484375, 0.049957275390625, -0.01134490966796875, -0.0139923095703125, 0.0240325927734375, -0.03277587890625, -0.0323486328125, -0.0192413330078125, -0.042877197265625, 0.005321502685546875, -0.0308685302734375, -0.04559326171875, 0.0826416015625, -0.0185699462890625, 0.0056915283203125, -0.00021791458129882812, 0.03155517578125, 0.0005335807800292969, 0.0202484130859375, -0.02105712890625, 0.056182861328125, -0.0130767822265625, 0.03497314453125, -0.0180206298828125, 0.01053619384765625, 0.0174560546875, -0.0078887939453125, 0.047821044921875, 0.01409912109375, -0.0005931854248046875, -0.00379180908203125, 0.014495849609375, 0.00726318359375, -0.0198822021484375, 0.017425537109375, -0.036407470703125, -0.0080718994140625, 0.0093994140625, -0.00624847412109375, 0.007480621337890625, 0.01413726806640625, -0.047882080078125, 0.0006551742553710938, 0.028228759765625, 0.035247802734375, 0.02203369140625, 0.0072479248046875, -0.0718994140625, 0.01837158203125, 0.07122802734375, -0.0250396728515625, -0.006450653076171875, 0.0777587890625, 0.0411376953125, -0.00725555419921875, -0.01136016845703125, -0.0247955322265625, 0.06268310546875, 0.002986907958984375, -0.00908660888671875, 0.0193328857421875, 0.0171356201171875, -0.0699462890625, 0.003604888916015625, -0.006206512451171875, 0.044342041015625, -0.03765869140625, 0.0191650390625, -0.006649017333984375, 0.01012420654296875, -0.06878662109375, -0.0345458984375, 0.01419830322265625, 0.04071044921875, -0.0237274169921875, -0.01715087890625, 0.009490966796875, 0.0030879974365234375, 0.0458984375, 0.0032978057861328125, 0.07025146484375, -0.0654296875, -0.072265625, -0.00527191162109375, 0.0256195068359375, 0.039306640625, 0.0085906982421875, 0.007236480712890625, 0.034332275390625, -0.0633544921875, 0.0214385986328125, 0.0089263916015625, 0.007129669189453125, -0.006092071533203125, -0.04736328125, -0.016937255859375, -0.0011043548583984375, 0.04791259765625, 0.041717529296875, 0.0101165771484375, 0.022552490234375, 0.0011739730834960938, -0.020599365234375, -0.0034389495849609375, -0.04168701171875, -0.0272674560546875, 0.0300750732421875, -0.01337432861328125, 0.0272369384765625, 0.0298309326171875, 0.0400390625, 0.01050567626953125, -0.016143798828125, 0.0023250579833984375, -0.0204010009765625, 0.026702880859375, -0.047760009765625, 0.055633544921875, 0.040863037109375, 0.0179901123046875, 0.01177215576171875, -0.0308837890625, 0.099609375, -0.038238525390625, 0.018463134765625, 0.001617431640625, -0.0291595458984375, 0.036285400390625, -0.00653839111328125, 0.043487548828125, -0.01131439208984375, -0.046173095703125, 0.00482177734375, -0.0159149169921875, -0.0750732421875, 0.02020263671875, 0.046142578125, -0.0205535888671875, 0.007495880126953125, 0.00807952880859375, 0.01409912109375, -0.0198516845703125, -0.00909423828125, -0.0005650520324707031, -0.0213775634765625, 0.03948974609375, 0.01042938232421875, -0.036865234375, -0.037933349609375, -0.0011234283447265625, 0.042266845703125, -0.0184478759765625, 0.0281982421875, -0.01412200927734375, 0.004497528076171875, -0.0051116943359375, -0.01409912109375, -0.00377655029296875, 0.0035800933837890625, 0.010528564453125, 0.016937255859375, -0.013763427734375, -0.0217437744140625, -0.0740966796875, 0.03778076171875, 0.01128387451171875, -0.00862884521484375, 0.0299835205078125, -0.01177978515625, 0.017120361328125, -0.019561767578125, 0.00952911376953125, -0.0159912109375, -0.057342529296875, -0.0728759765625, 0.02520751953125, 0.017181396484375, 0.0153656005859375, -0.04620361328125, 0.0199127197265625, -0.044677734375, -0.0308380126953125, 0.031524658203125, -0.02569580078125, 0.01099395751953125, 0.0279541015625, -0.0252227783203125, -0.026031494140625, -0.0296630859375, -0.02288818359375, 0.005878448486328125, -0.00395965576171875, 0.004291534423828125, -0.0127716064453125, 0.014251708984375, 0.06353759765625, 0.00811004638671875, 0.0284881591796875, -0.036834716796875, -0.031463623046875, 0.03973388671875, 0.0096588134765625, 0.0016040802001953125, 0.027679443359375, -0.008941650390625, -0.0217437744140625, -0.0212249755859375, 0.010345458984375, -0.0164642333984375, -0.0140380859375, -0.04681396484375, 0.0159149169921875, 0.03912353515625, -0.007076263427734375, -0.0267486572265625, 0.022796630859375, -0.031280517578125, 0.048126220703125, -0.0124664306640625, 0.0027618408203125, -0.0086822509765625, -0.0218505859375, -0.045745849609375, -0.02215576171875, -0.04205322265625, 0.016937255859375, -0.0283660888671875, 0.01020050048828125, 0.0374755859375, -0.0202178955078125, 0.01448822021484375, 0.00562286376953125, 0.002246856689453125, 0.06121826171875, -0.0277557373046875, -0.027008056640625, -0.01134490966796875, 0.00537872314453125, -0.031585693359375, -0.017669677734375, 0.032684326171875, -0.061798095703125, -0.03973388671875, -0.0207366943359375, -0.0232391357421875, 0.00002658367156982422, -0.059417724609375, -0.08697509765625, 0.038116455078125, -0.013946533203125, -0.049652099609375, -0.03125, 0.00603485107421875, -0.0134735107421875, -0.0062103271484375, -0.0019435882568359375, -0.0236053466796875, -0.0021820068359375, 0.040252685546875, 0.00647735595703125, 0.01824951171875, 0.01136016845703125, 0.016326904296875, -0.00501251220703125, 0.02899169921875, 0.0183563232421875, -0.006580352783203125, 0.047515869140625, -0.028106689453125, 0.0244293212890625, 0.046722412109375, -0.050262451171875, -0.070068359375, -0.05755615234375, -0.00775146484375, -0.0189361572265625, -0.0280914306640625, 0.006381988525390625, -0.00838470458984375, 0.052093505859375, 0.016571044921875, 0.0048828125, -0.0175323486328125, -0.0258026123046875, -0.0428466796875, -0.027435302734375, -0.031341552734375, 0.025054931640625, -0.083251953125, -0.01329803466796875, 0.0182342529296875, -0.006214141845703125, 0.0209808349609375, -0.01654052734375, 0.0087738037109375, 0.005374908447265625, 0.0205841064453125, -0.01091766357421875, -0.0323486328125, 0.0296783447265625, 0.028717041015625, -0.0225372314453125, 0.05517578125, -0.0321044921875, 0.0155029296875, 0.04473876953125, -0.0184783935546875, 0.0386962890625, 0.01508331298828125, -0.0231781005859375, -0.00536346435546875, 0.0298919677734375, 0.01053619384765625, -0.007099151611328125, -0.0288238525390625, -0.0123138427734375, 0.027801513671875, 0.0219879150390625, 0.0673828125, -0.0264892578125, 0.0533447265625, 0.0210723876953125, -0.0097808837890625, -0.01543426513671875, -0.0064544677734375, -0.00988006591796875, 0.01190185546875, -0.08062744140625, 0.0229339599609375, -0.06439208984375, -0.00775909423828125, 0.02691650390625, -0.0064239501953125, 0.021087646484375, -0.0076751708984375, 0.01763916015625, 0.001495361328125, -0.021759033203125, 0.01451873779296875 ]
0e2d811e62c5cf95629d47ce1717f6640cd5fad4
Wordpress Stackexchange Q: What is the difference between the Package Language and the Site Language? What is the difference between the Package Language and the Site Language? If I run: wp core language list I get: en_AU | English (Australia) | English (Australia) | active | available If I run: wp core version --extra I get: Package language: en_US A: As you probably already know, WordPress supports language packs. Translation files that reside in wp-content/languages. Those are used to translate all the strings the user sees in WordPress. WordPress also allows translation teams on WordPress.org to provide localized release packages. These already come with the translation files included, plus a bit more. They can translate the readme file or bundle locale-specific functionality (e.g. custom plugins) to improve the UX for that locale. For example, the Japanese package contains the WP Multibyte Batch plugin and the readme is translated into Japanese as well. This is something the language packs cannot handle, as the readme is a simple HTML file. Similarly, the German package contains the original readme and a translated one.
Q: What is the difference between the Package Language and the Site Language? What is the difference between the Package Language and the Site Language? If I run: wp core language list I get: en_AU | English (Australia) | English (Australia) | active | available If I run: wp core version --extra I get: Package language: en_US A: As you probably already know, WordPress supports language packs. Translation files that reside in wp-content/languages. Those are used to translate all the strings the user sees in WordPress. WordPress also allows translation teams on WordPress.org to provide localized release packages. These already come with the translation files included, plus a bit more. They can translate the readme file or bundle locale-specific functionality (e.g. custom plugins) to improve the UX for that locale. For example, the Japanese package contains the WP Multibyte Batch plugin and the readme is translated into Japanese as well. This is something the language packs cannot handle, as the readme is a simple HTML file. Similarly, the German package contains the original readme and a translated one.
wordpress
{ "language": "en", "length": 178, "provenance": "stackexchange_00019.jsonl.gz:483749", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/293357" }
[ -0.035064697265625, -0.033843994140625, -0.016693115234375, 0.00014865398406982422, -0.047027587890625, -0.01275634765625, -0.008209228515625, 0.006771087646484375, 0.006938934326171875, -0.0005812644958496094, 0.01215362548828125, 0.001003265380859375, -0.0283203125, -0.045440673828125, 0.00049591064453125, -0.018707275390625, 0.05352783203125, -0.01219940185546875, 0.0069732666015625, -0.003444671630859375, -0.0115814208984375, 0.017578125, 0.00502777099609375, 0.06927490234375, 0.03204345703125, -0.06561279296875, 0.04815673828125, -0.019134521484375, 0.0034637451171875, -0.02276611328125, 0.0289459228515625, 0.0176239013671875, 0.038909912109375, 0.0289154052734375, -0.07373046875, -0.03338623046875, -0.0111541748046875, -0.00560760498046875, -0.051422119140625, 0.057647705078125, 0.0224609375, -0.0202178955078125, -0.00531768798828125, 0.02435302734375, -0.023468017578125, 0.005779266357421875, -0.006961822509765625, -0.01366424560546875, 0.0084075927734375, -0.0268402099609375, 0.027923583984375, 0.0085906982421875, 0.04437255859375, -0.031524658203125, -0.0169830322265625, 0.01413726806640625, -0.0186004638671875, 0.076416015625, 0.019500732421875, -0.019561767578125, -0.039276123046875, 0.058807373046875, 0.00030803680419921875, 0.006084442138671875, -0.006977081298828125, 0.01059722900390625, 0.0085601806640625, 0.0125579833984375, -0.03204345703125, -0.00307464599609375, 0.022491455078125, -0.0309600830078125, 0.01385498046875, -0.042083740234375, -0.026824951171875, 0.045623779296875, -0.0244903564453125, 0.0011205673217773438, 0.0335693359375, -0.0338134765625, -0.0016460418701171875, 0.02288818359375, -0.01702880859375, -0.036590576171875, 0.0168914794921875, -0.0170745849609375, -0.0135345458984375, -0.01419830322265625, -0.04766845703125, -0.00861358642578125, -0.0248870849609375, -0.029510498046875, -0.053558349609375, 0.0188751220703125, 0.01537322998046875, -0.02142333984375, -0.01184844970703125, -0.00262451171875, -0.01033782958984375, 0.00594329833984375, -0.0131988525390625, -0.0185546875, 0.0125274658203125, -0.0222625732421875, 0.016265869140625, -0.005275726318359375, -0.01433563232421875, 0.006076812744140625, 0.040374755859375, 0.0287017822265625, -0.0077362060546875, 0.058624267578125, 0.008270263671875, -0.052947998046875, 0.031219482421875, 0.0124359130859375, -0.03173828125, 0.06695556640625, 0.0236968994140625, 0.00586700439453125, 0.01190185546875, 0.046783447265625, -0.01557159423828125, -0.0438232421875, 0.0287628173828125, -0.004146575927734375, -0.0166015625, -0.01617431640625, -0.004169464111328125, 0.052978515625, -0.0322265625, -0.0273284912109375, 0.029876708984375, 0.0295257568359375, 0.001987457275390625, -0.034027099609375, -0.0189361572265625, 0.031463623046875, -0.0006837844848632812, 0.004077911376953125, 0.00321197509765625, -0.02166748046875, 0.021636962890625, 0.00411224365234375, -0.00315093994140625, 0.0014944076538085938, 0.00843048095703125, 0.0236358642578125, -0.0037555694580078125, -0.034454345703125, 0.06134033203125, -0.06072998046875, 0.0162200927734375, -0.0030612945556640625, 0.0142364501953125, -0.041900634765625, 0.012176513671875, -0.038116455078125, 0.0233306884765625, -0.0164947509765625, -0.03289794921875, -0.037811279296875, -0.021697998046875, -0.027191162109375, -0.042816162109375, 0.051849365234375, 0.02294921875, 0.01183319091796875, 0.0183563232421875, -0.0192718505859375, 0.0236663818359375, 0.00482177734375, -0.00029158592224121094, -0.02716064453125, -0.006282806396484375, -0.0059967041015625, -0.02410888671875, 0.00994110107421875, 0.039031982421875, -0.01132965087890625, -0.0121307373046875, -0.01552581787109375, 0.06829833984375, 0.0012454986572265625, -0.023651123046875, -0.03448486328125, 0.032867431640625, 0.0233917236328125, 0.01097869873046875, 0.0183563232421875, 0.036407470703125, -0.028778076171875, -0.0413818359375, 0.036773681640625, 0.004302978515625, -0.0227508544921875, -0.0247344970703125, 0.005451202392578125, -0.007442474365234375, -0.03436279296875, 0.01898193359375, 0.032684326171875, -0.01751708984375, 0.025787353515625, -0.028289794921875, 0.00402069091796875, -0.012908935546875, 0.0218353271484375, -0.0258941650390625, -0.0010480880737304688, 0.020965576171875, -0.0160675048828125, -0.0050201416015625, -0.01401519775390625, -0.0189666748046875, -0.0106201171875, -0.0266571044921875, 0.0291595458984375, 0.0225067138671875, 0.0225677490234375, 0.037872314453125, -0.0184783935546875, 0.0262298583984375, -0.034881591796875, 0.03753662109375, 0.02667236328125, -0.0007829666137695312, 0.0092315673828125, 0.1099853515625, 0.026397705078125, 0.058319091796875, -0.0207977294921875, -0.00896453857421875, 0.0098114013671875, -0.007198333740234375, 0.00435638427734375, 0.00937652587890625, -0.0361328125, 0.0104522705078125, 0.0274810791015625, 0.04803466796875, 0.04620361328125, 0.008636474609375, -0.000015735626220703125, 0.072265625, 0.006591796875, 0.02911376953125, -0.032867431640625, 0.026580810546875, 0.06768798828125, -0.0006132125854492188, -0.0240325927734375, -0.008575439453125, -0.07281494140625, -0.0213623046875, 0.03350830078125, -0.0192413330078125, -0.03717041015625, 0.0015926361083984375, -0.006664276123046875, 0.00814056396484375, -0.05267333984375, -0.045928955078125, -0.0227203369140625, -0.00807952880859375, -0.0322265625, 0.002285003662109375, -0.0035190582275390625, -0.01271820068359375, -0.041168212890625, 0.04095458984375, 0.042938232421875, 0.019134521484375, 0.07073974609375, -0.044403076171875, 0.014129638671875, 0.0177154541015625, -0.0244903564453125, -0.02435302734375, 0.033294677734375, -0.01556396484375, 0.0175933837890625, -0.03839111328125, -0.013671875, 0.009674072265625, -0.01959228515625, -0.0143585205078125, 0.0027923583984375, -0.0167999267578125, -0.0196990966796875, 0.0222930908203125, 0.005367279052734375, -0.0250091552734375, 0.011993408203125, 0.006755828857421875, -0.0305938720703125, 0.0579833984375, -0.016998291015625, 0.01001739501953125, -0.01678466796875, 0.0128326416015625, 0.03326416015625, 0.01512908935546875, -0.0389404296875, 0.01038360595703125, -0.0250091552734375, 0.0009703636169433594, -0.009063720703125, -0.03240966796875, 0.0308074951171875, -0.1072998046875, -0.003887176513671875, 0.01087188720703125, -0.034698486328125, 0.0018329620361328125, -0.0172882080078125, -0.039154052734375, -0.020233154296875, -0.097412109375, -0.072998046875, -0.0202789306640625, -0.06134033203125, 0.06805419921875, 0.004634857177734375, -0.005596160888671875, -0.058807373046875, 0.037109375, 0.0277252197265625, -0.0028018951416015625, -0.0247802734375, -0.0009255409240722656, -0.03558349609375, -0.04583740234375, -0.013580322265625, 0.0153045654296875, -0.0087127685546875, 0.00021398067474365234, 0.032989501953125, -0.0008463859558105469, -0.04852294921875, -0.033660888671875, 0.06390380859375, -0.01531982421875, -0.02484130859375, -0.019561767578125, -0.0247039794921875, 0.0438232421875, -0.0221710205078125, 0.0197296142578125, 0.030059814453125, 0.003215789794921875, -0.0008788108825683594, 0.028533935546875, 0.034637451171875, 0.03204345703125, -0.045928955078125, -0.032562255859375, 0.023681640625, -0.050201416015625, -0.047149658203125, -0.10711669921875, 0.02288818359375, -0.07135009765625, 0.058319091796875, 0.06719970703125, -0.01447296142578125, 0.00799560546875, 0.037811279296875, -0.01401519775390625, -0.016815185546875, 0.0299224853515625, -0.050018310546875, 0.06781005859375, -0.005847930908203125, -0.017974853515625, -0.0235748291015625, 0.057952880859375, 0.004924774169921875, -0.0231781005859375, 0.00982666015625, 0.0106353759765625, -0.0130767822265625, -0.01216888427734375, -0.050048828125, -0.038848876953125, 0.0261993408203125, -0.0357666015625, 0.0059356689453125, 0.013824462890625, -0.0131378173828125, 0.050994873046875, 0.0872802734375, -0.0180816650390625, 0.00904083251953125, -0.00470733642578125, 0.010101318359375, -0.03057861328125, -0.027099609375, -0.043121337890625, -0.00901031494140625, 0.0223846435546875, 0.0252685546875, -0.00396728515625, 0.03192138671875, -0.050994873046875, 0.07159423828125, 0.004657745361328125, -0.0018987655639648438, 0.03436279296875, -0.01320648193359375, 0.00830841064453125, -0.0301971435546875, -0.014923095703125, -0.01558685302734375, -0.0186614990234375, -0.01953125, -0.0236663818359375, -0.01194000244140625, -0.0157928466796875, 0.025360107421875, -0.01128387451171875, 0.005908966064453125, -0.01220703125, 0.026214599609375, -0.005733489990234375, 0.0278472900390625, -0.0014972686767578125, -0.005733489990234375, 0.0523681640625, 0.0026798248291015625, 0.01461029052734375, -0.005535125732421875, -0.0294952392578125, -0.0195465087890625, -0.01288604736328125, 0.035736083984375, 0.0182342529296875, 0.0159149169921875, 0.03228759765625, -0.0243072509765625, 0.0003743171691894531, -0.000576019287109375, -0.0391845703125, -0.0005421638488769531, -0.0179901123046875, -0.0072021484375, -0.0009965896606445312, -0.0096588134765625, 0.058929443359375, 0.05059814453125, -0.0204010009765625, 0.0045928955078125, 0.050384521484375, -0.006099700927734375, -0.04193115234375, -0.11956787109375, 0.031341552734375, 0.043701171875, -0.022857666015625, 0.056396484375, 0.03192138671875, -0.029296875, 0.05963134765625, 0.0165252685546875, -0.0002048015594482422, 0.046630859375, 0.016326904296875, 0.0171356201171875, -0.0015420913696289062, -0.00432586669921875, 0.02581787109375, -0.061676025390625, 0.028839111328125, 0.015625, -0.0311279296875, -0.006542205810546875, 0.0248565673828125, -0.006317138671875, 0.037872314453125, 0.001987457275390625, -0.05816650390625, 0.03125, 0.028167724609375, -0.03704833984375, -0.007503509521484375, 0.005054473876953125, -0.0187835693359375, -0.013671875, -0.010040283203125, 0.05047607421875, 0.031982421875, 0.025115966796875, 0.00579071044921875, 0.045745849609375, -0.0276336669921875, 0.003253936767578125, -0.01061248779296875, 0.06988525390625, -0.007904052734375, -0.061126708984375, 0.01351165771484375, -0.0111846923828125, 0.046844482421875, 0.059234619140625, 0.0012063980102539062, 0.015899658203125, -0.01084136962890625, -0.0209503173828125, 0.0129852294921875, 0.00954437255859375, -0.00940704345703125, -0.038604736328125, -0.0263519287109375, -0.0216064453125, -0.01605224609375, -0.017242431640625, 0.03582763671875, -0.08551025390625, 0.026885986328125, 0.0205841064453125, 0.0043792724609375, 0.0186614990234375, 0.02313232421875, 0.00774383544921875, -0.0168914794921875, 0.0075836181640625, 0.0171966552734375, 0.0183868408203125, 0.0042266845703125, 0.03753662109375, 0.0182647705078125, 0.0276336669921875, -0.0060577392578125, -0.031890869140625, -0.00012612342834472656, -0.05328369140625, -0.01152801513671875, 0.0206451416015625, 0.028472900390625, -0.0258941650390625, -0.006591796875, -0.03076171875, 0.0015869140625, -0.00937652587890625, -0.01103973388671875, 0.00933837890625, -0.01103973388671875, 0.00778961181640625, 0.0947265625, -0.055023193359375, 0.00395965576171875, 0.007526397705078125, 0.003398895263671875, -0.01244354248046875, -0.0020923614501953125, -0.0501708984375, -0.0126800537109375, -0.004673004150390625, 0.019500732421875, 0.01995849609375, 0.014892578125, 0.027557373046875, -0.0133056640625, -0.03887939453125, 0.002349853515625, 0.0106353759765625, 0.030487060546875, -0.0150604248046875, -0.012725830078125, -0.0269927978515625, -0.041473388671875, -0.03411865234375, -0.022857666015625, -0.042877197265625, -0.038330078125, 0.019012451171875, -0.011322021484375, 0.03668212890625, -0.0189361572265625, 0.02911376953125, -0.0118255615234375, 0.039276123046875, -0.0181121826171875, 0.08074951171875, -0.0278472900390625, 0.048858642578125, 0.0160064697265625, 0.01470947265625, 0.004039764404296875, 0.037322998046875, 0.01245880126953125, -0.01861572265625, 0.0149383544921875, -0.05767822265625, -0.013153076171875, -0.0079498291015625, 0.0017728805541992188, -0.0170135498046875, -0.0178070068359375, 0.01007080078125, 0.006473541259765625, -0.0033817291259765625, 0.00397491455078125, -0.0197906494140625, 0.0190887451171875, -0.01149749755859375, 0.02825927734375, 0.0009546279907226562, -0.03131103515625, 0.01453399658203125, -0.0024890899658203125, 0.0013532638549804688, 0.02679443359375, -0.023406982421875, 0.026824951171875, 0.0379638671875, -0.00843048095703125, -0.004638671875, 0.0148773193359375, -0.002323150634765625, 0.043487548828125, 0.010345458984375, 0.03271484375, 0.015838623046875, 0.02587890625, 0.00012505054473876953, -0.0364990234375, 0.026885986328125, 0.005626678466796875, 0.0025482177734375, 0.0179290771484375, -0.004901885986328125, 0.0308837890625, 0.09051513671875, 0.1097412109375, -0.116943359375, 0.003284454345703125, 0.033905029296875, -0.036590576171875, -0.037017822265625, -0.00267791748046875, -0.0338134765625, -0.09478759765625, 0.03662109375, 0.00042128562927246094, -0.02490234375, -0.0037746429443359375, -0.004566192626953125, -0.00902557373046875, -0.020965576171875, 0.0308837890625, 0.03387451171875, 0.00585174560546875, 0.007022857666015625, 0.0005640983581542969, 0.0380859375, -0.0234375, -0.0148773193359375, -0.0269317626953125, -0.0257110595703125, -0.08734130859375, -0.047088623046875, -0.034149169921875, -0.0002104043960571289, 0.0202789306640625, -0.0043182373046875, 0.00449371337890625, 0.05560302734375, -0.0253448486328125, 0.0030002593994140625, 0.0163726806640625, -0.01190185546875, 0.0182342529296875, -0.0012683868408203125, 0.009368896484375, 0.01093292236328125, -0.042266845703125, -0.005008697509765625, -0.047515869140625, 0.004222869873046875, -0.01142120361328125, -0.011749267578125, 0.06365966796875, -0.0218963623046875, -0.0030727386474609375, 0.031280517578125, 0.0215911865234375, 0.00077056884765625, 0.0226287841796875, 0.01242828369140625, -0.054718017578125, -0.040008544921875, 0.023895263671875, -0.03656005859375, -0.006450653076171875, 0.042510986328125, -0.0733642578125, 0.0238800048828125, 0.0204620361328125, 0.03167724609375, 0.007293701171875, -0.013458251953125, -0.02056884765625, -0.0350341796875, -0.0111846923828125, 0.007144927978515625, 0.032745361328125, -0.002094268798828125, -0.00687408447265625, 0.006328582763671875, -0.0033721923828125, 0.0108489990234375, 0.025390625, 0.0027294158935546875, 0.01123046875, -0.0283966064453125, 0.01824951171875, 0.03729248046875, -0.01605224609375, -0.0020351409912109375, -0.0167999267578125, 0.05767822265625, 0.039947509765625, -0.05194091796875, 0.0267791748046875, -0.0136260986328125, -0.040435791015625, -0.002651214599609375, -0.0009365081787109375, -0.05029296875, 0.01800537109375, -0.021331787109375, -0.01165008544921875, 0.0034923553466796875, -0.0240325927734375, 0.017547607421875, 0.00897216796875, 0.0146636962890625, -0.0096588134765625, 0.019073486328125, -0.0175018310546875, -0.01168060302734375, 0.0247955322265625, -0.0010318756103515625, 0.06610107421875, 0.046905517578125, 0.03802490234375, 0.047027587890625, 0.007221221923828125, 0.035858154296875, 0.0200653076171875, -0.0266265869140625, 0.026641845703125, 0.01444244384765625, 0.019439697265625, -0.0110321044921875, 0.04974365234375, 0.0179290771484375, 0.030609130859375, -0.0440673828125, -0.015655517578125, 0.0197906494140625, -0.00235748291015625, -0.0276947021484375, -0.0247955322265625, -0.036224365234375, 0.0021572113037109375, 0.027984619140625, 0.00846099853515625, -0.016021728515625, 0.0241241455078125, 0.026123046875, 0.00975799560546875, 0.003147125244140625, -0.01551055908203125, -0.00829315185546875, -0.049774169921875, 0.0347900390625, 0.032958984375, 0.07159423828125, -0.0000476837158203125, 0.047332763671875, -0.021392822265625, -0.032806396484375, -0.00795745849609375, 0.02374267578125, 0.0216064453125, -0.00948333740234375, -0.035614013671875, -0.031768798828125, 0.035430908203125, 0.0220794677734375, 0.0428466796875, -0.045928955078125, 0.033447265625, 0.05059814453125, -0.01122283935546875, -0.0011434555053710938, 0.035919189453125, 0.004940032958984375, -0.06024169921875, 0.005970001220703125, 0.038299560546875, 0.048919677734375, 0.01555633544921875, 0.0193939208984375, 0.1104736328125, -0.0211334228515625, -0.01316070556640625, 0.0491943359375, -0.0021495819091796875, -0.0236053466796875, 0.006603240966796875, -0.0009002685546875, 0.0738525390625, 0.007293701171875, -0.01291656494140625, -0.007457733154296875, 0.013702392578125, -0.029144287109375, 0.0023326873779296875, 0.03826904296875, 0.0020656585693359375, 0.0079498291015625, 0.02960205078125, -0.035980224609375, -0.02532958984375, 0.0445556640625, 0.0253448486328125, -0.03460693359375, 0.00695037841796875, -0.0016851425170898438, -0.005397796630859375, -0.0184326171875, -0.00893402099609375, 0.040374755859375, -0.000423431396484375, 0.064697265625, -0.0254058837890625, 0.0206451416015625, -0.006130218505859375, 0.06719970703125, -0.0623779296875, -0.03570556640625, 0.0458984375, 0.0039825439453125, 0.040771484375, -0.01593017578125, -0.052520751953125, -0.006633758544921875, 0.01320648193359375, -0.0243988037109375, -0.0243072509765625, -0.00445556640625, 0.019775390625, 0.019744873046875, -0.00792694091796875, -0.04052734375, -0.024383544921875, -0.03265380859375, -0.0033855438232421875, 0.026123046875, -0.0035610198974609375, -0.0132904052734375, 0.0005736351013183594, -0.016143798828125, -0.0546875, 0.042999267578125, -0.038909912109375, 0.006214141845703125, 0.0209503173828125, 0.0277557373046875, -0.04296875, 0.028717041015625, -0.01348114013671875, -0.00914764404296875, 0.0087738037109375, 0.05010986328125, 0.0134124755859375, -0.0240631103515625, -0.061553955078125, -0.01044464111328125, -0.017578125, -0.01239776611328125, -0.007785797119140625, 0.01294708251953125, -0.0252838134765625, -0.043060302734375, -0.0038623809814453125, 0.0027904510498046875, -0.0074005126953125, -0.0181427001953125, 0.01174163818359375, -0.004215240478515625, -0.0201873779296875, -0.00035119056701660156, -0.01461029052734375, -0.0033817291259765625, -0.034820556640625, 0.016357421875, -0.01134490966796875, -0.0265045166015625, -0.0238189697265625, -0.042388916015625, -0.03045654296875, 0.006988525390625, 0.0201873779296875, -0.04852294921875, -0.001575469970703125, -0.0567626953125, -0.05303955078125, -0.03704833984375, 0.0249481201171875, 0.021636962890625, -0.0213165283203125, -0.00637054443359375, 0.061309814453125, 0.0276947021484375, 0.09326171875, -0.003574371337890625, -0.021026611328125, 0.002643585205078125, -0.0040435791015625, -0.002521514892578125, -0.0687255859375, 0.00691986083984375, -0.054931640625, -0.01302337646484375, 0.0044403076171875, -0.0005211830139160156, 0.0255126953125, -0.042144775390625, -0.09759521484375, 0.07061767578125, -0.0157318115234375, -0.03228759765625, -0.0284881591796875, 0.0209197998046875, 0.00677490234375, -0.0247802734375, -0.0169219970703125, -0.01751708984375, -0.01371002197265625, 0.0012826919555664062, 0.0023937225341796875, 0.038299560546875, 0.01287841796875, -0.0033359527587890625, 0.002559661865234375, 0.02313232421875, 0.01580810546875, -0.00418853759765625, 0.0312042236328125, -0.0163116455078125, 0.0156707763671875, 0.0303802490234375, -0.03839111328125, -0.0164794921875, -0.0250091552734375, -0.006366729736328125, -0.0245513916015625, -0.07080078125, 0.035369873046875, -0.0248565673828125, 0.0253753662109375, -0.0017728805541992188, -0.0230865478515625, -0.0159149169921875, 0.042510986328125, 0.0217132568359375, -0.055145263671875, -0.007282257080078125, 0.0177764892578125, -0.044281005859375, -0.0238037109375, -0.01082611083984375, 0.02032470703125, 0.00505828857421875, -0.021270751953125, -0.007808685302734375, -0.0267791748046875, -0.0287628173828125, -0.0009050369262695312, -0.03826904296875, -0.11199951171875, 0.0980224609375, -0.040557861328125, 0.007396697998046875, 0.0276641845703125, 0.054962158203125, 0.0670166015625, 0.07647705078125, -0.038055419921875, 0.00919342041015625, 0.016876220703125, 0.02642822265625, 0.0010528564453125, -0.021575927734375, 0.0021839141845703125, 0.0206451416015625, 0.00951385498046875, 0.005718231201171875, -0.01067352294921875, 0.005985260009765625, -0.00937652587890625, 0.04058837890625, -0.00037932395935058594, 0.021820068359375, 0.0223388671875, -0.00897216796875, 0.02008056640625, 0.0167083740234375, -0.04193115234375, -0.018646240234375, -0.032684326171875, -0.06707763671875, 0.01364898681640625, 0.01215362548828125, 0.0013523101806640625, -0.04327392578125, 0.01154327392578125, -0.01151275634765625, 0.009307861328125, 0.0236663818359375 ]
939a378fd1226530400fa67a4d5567b29960d92d
Wordpress Stackexchange Q: get_template_part execute with ajax I would like to get template part with AJAX. This template part - more-images.php contain of source some wp php and html. I read AJAX is build in WP. So I put code below to my theme files. My code: functions.php function get_img() { ob_start(); get_template_part('more', 'images'); die(); ob_clean(); } add_action( 'wp_ajax_get_img', 'get_img' ); add_action( 'wp_ajax_nopriv_get_img', 'get_img' ) javascript file with other functions, loaded in the footer $.ajax({ url: params.url, type: 'post', data: { action: 'get_img', success: { $( 'main' ).append( data ); }, }); That code doesn't work. A: You don't need buffer here. get_template_part('more', 'images'); die();
Q: get_template_part execute with ajax I would like to get template part with AJAX. This template part - more-images.php contain of source some wp php and html. I read AJAX is build in WP. So I put code below to my theme files. My code: functions.php function get_img() { ob_start(); get_template_part('more', 'images'); die(); ob_clean(); } add_action( 'wp_ajax_get_img', 'get_img' ); add_action( 'wp_ajax_nopriv_get_img', 'get_img' ) javascript file with other functions, loaded in the footer $.ajax({ url: params.url, type: 'post', data: { action: 'get_img', success: { $( 'main' ).append( data ); }, }); That code doesn't work. A: You don't need buffer here. get_template_part('more', 'images'); die();
wordpress
{ "language": "en", "length": 103, "provenance": "stackexchange_00019.jsonl.gz:483845", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/293688" }
[ 0.04010009765625, -0.00176239013671875, -0.01296234130859375, -0.059967041015625, 0.044708251953125, -0.0165252685546875, 0.03778076171875, -0.001220703125, 0.0011663436889648438, 0.025360107421875, -0.03900146484375, -0.0005450248718261719, -0.025665283203125, 0.0028228759765625, -0.0261688232421875, -0.046630859375, 0.0755615234375, -0.09259033203125, 0.011932373046875, 0.0016078948974609375, 0.00894927978515625, 0.044921875, 0.04583740234375, 0.07720947265625, -0.01058197021484375, 0.01129913330078125, 0.059844970703125, -0.0023593902587890625, -0.025604248046875, -0.036529541015625, 0.0082855224609375, 0.0401611328125, 0.03314208984375, 0.005130767822265625, -0.0345458984375, -0.00902557373046875, 0.02142333984375, 0.005069732666015625, -0.01007080078125, 0.0217437744140625, 0.01910400390625, -0.01091766357421875, 0.0379638671875, 0.035125732421875, -0.007587432861328125, 0.003875732421875, 0.0016498565673828125, -0.053619384765625, 0.00928497314453125, 0.053466796875, 0.03985595703125, -0.0284271240234375, 0.03717041015625, 0.03961181640625, -0.0185699462890625, -0.0177764892578125, -0.05340576171875, 0.03765869140625, 0.057647705078125, 0.020263671875, -0.027496337890625, -0.0477294921875, 0.01145172119140625, -0.0496826171875, -0.0096893310546875, 0.0038928985595703125, 0.0222320556640625, 0.0150604248046875, -0.028411865234375, -0.004528045654296875, 0.0237274169921875, -0.008544921875, -0.022186279296875, -0.033203125, 0.0166778564453125, 0.0140838623046875, -0.004299163818359375, -0.016021728515625, -0.015899658203125, 0.017822265625, 0.039276123046875, 0.00765228271484375, -0.0253143310546875, 0.003997802734375, 0.0160675048828125, 0.01155853271484375, -0.005401611328125, -0.0260467529296875, -0.04376220703125, -0.014739990234375, -0.040252685546875, -0.053009033203125, -0.00846099853515625, -0.006969451904296875, -0.0023250579833984375, -0.0220794677734375, -0.00445556640625, 0.017822265625, -0.0191192626953125, 0.0293121337890625, -0.01654052734375, -0.0278472900390625, 0.0509033203125, -0.034942626953125, 0.007564544677734375, -0.00916290283203125, 0.0203399658203125, 0.0249481201171875, 0.03533935546875, 0.02252197265625, -0.0254669189453125, 0.02899169921875, 0.00681304931640625, 0.0121917724609375, -0.0250701904296875, -0.002536773681640625, -0.0171356201171875, -0.0181427001953125, -0.01654052734375, -0.0133514404296875, -0.000942230224609375, -0.0084991455078125, 0.0276031494140625, 0.028656005859375, 0.035675048828125, 0.037750244140625, -0.0256500244140625, -0.038360595703125, -0.02587890625, -0.0034809112548828125, -0.0189666748046875, 0.039581298828125, 0.0261077880859375, 0.003040313720703125, -0.01538848876953125, -0.0016202926635742188, 0.019927978515625, -0.01030731201171875, 0.0345458984375, -0.0210418701171875, 0.007213592529296875, -0.01788330078125, 0.009796142578125, 0.01727294921875, -0.005401611328125, -0.01520538330078125, -0.005084991455078125, 0.0178375244140625, 0.0168914794921875, 0.0110626220703125, -0.007114410400390625, -0.004119873046875, 0.013427734375, 0.0287933349609375, 0.033172607421875, -0.0246124267578125, 0.0256805419921875, -0.0254058837890625, 0.0259246826171875, -0.025482177734375, 0.0165863037109375, 0.0228118896484375, 0.032257080078125, 0.005863189697265625, 0.0023670196533203125, -0.040679931640625, -0.040802001953125, -0.0009684562683105469, 0.020477294921875, 0.057861328125, 0.01361083984375, -0.040863037109375, -0.004825592041015625, 0.007770538330078125, -0.0211029052734375, 0.01422119140625, -0.012542724609375, 0.0090484619140625, 0.040191650390625, -0.03460693359375, -0.031768798828125, -0.03271484375, 0.09259033203125, -0.03375244140625, -0.04345703125, 0.035888671875, 0.0200958251953125, 0.06744384765625, 0.004611968994140625, 0.028839111328125, 0.0171356201171875, 0.0274200439453125, -0.041046142578125, 0.034271240234375, 0.006744384765625, -0.04644775390625, -0.0212554931640625, -0.028045654296875, -0.0030231475830078125, 0.0032863616943359375, 0.02490234375, 0.0229339599609375, -0.01027679443359375, -0.0038967132568359375, -0.059967041015625, -0.004558563232421875, -0.01035308837890625, 0.0343017578125, -0.01276397705078125, 0.044219970703125, 0.032379150390625, 0.046051025390625, -0.0469970703125, -0.032623291015625, -0.01181793212890625, -0.006839752197265625, -0.037322998046875, 0.027069091796875, -0.0187530517578125, 0.06353759765625, -0.011962890625, -0.0694580078125, -0.014892578125, 0.004024505615234375, 0.035736083984375, 0.040863037109375, -0.050140380859375, 0.006900787353515625, -0.0218048095703125, 0.0643310546875, -0.09332275390625, 0.0265960693359375, -0.008087158203125, 0.035675048828125, -0.02288818359375, -0.036834716796875, -0.03143310546875, -0.04327392578125, 0.033966064453125, 0.045623779296875, 0.0258331298828125, 0.062286376953125, 0.000007569789886474609, -0.0008440017700195312, 0.07586669921875, -0.01129913330078125, 0.013946533203125, -0.0131683349609375, 0.02569580078125, 0.046295166015625, -0.013397216796875, -0.027191162109375, 0.01287078857421875, -0.038055419921875, -0.01190948486328125, 0.03289794921875, 0.006587982177734375, 0.01491546630859375, -0.03466796875, 0.033905029296875, -0.00452423095703125, 0.033843994140625, -0.0096282958984375, 0.0021495819091796875, 0.04656982421875, 0.011260986328125, 0.03118896484375, 0.0227203369140625, -0.03076171875, 0.01093292236328125, 0.0161285400390625, -0.01323699951171875, 0.0022220611572265625, 0.0657958984375, -0.018829345703125, 0.0260162353515625, -0.0047607421875, -0.0190582275390625, -0.004627227783203125, 0.04248046875, -0.0138092041015625, -0.0027332305908203125, -0.014404296875, -0.01029205322265625, 0.01190948486328125, -0.035308837890625, 0.01751708984375, 0.028167724609375, 0.0246124267578125, 0.0196380615234375, 0.050323486328125, 0.006954193115234375, 0.0131072998046875, 0.0199127197265625, -0.052520751953125, 0.0003056526184082031, 0.0517578125, -0.030303955078125, 0.030792236328125, -0.01259613037109375, 0.06732177734375, 0.037384033203125, -0.0241851806640625, 0.005413055419921875, 0.001323699951171875, -0.0224456787109375, 0.039398193359375, -0.014617919921875, -0.0220794677734375, -0.032684326171875, -0.042572021484375, 0.0015659332275390625, 0.04278564453125, 0.045166015625, 0.0174102783203125, -0.0307769775390625, 0.0019159317016601562, 0.04620361328125, -0.06103515625, -0.0867919921875, 0.01812744140625, -0.021331787109375, -0.0352783203125, -0.00868988037109375, -0.0191802978515625, 0.0062255859375, -0.00457763671875, -0.0147857666015625, -0.030181884765625, -0.0114593505859375, -0.0283203125, -0.046478271484375, -0.04449462890625, 0.02685546875, -0.00399017333984375, 0.0070648193359375, -0.0064239501953125, 0.043121337890625, -0.0194091796875, -0.037261962890625, -0.0247955322265625, 0.028228759765625, -0.01025390625, -0.04595947265625, 0.03790283203125, -0.037200927734375, -0.048187255859375, -0.005035400390625, 0.0005955696105957031, 0.01416778564453125, -0.029632568359375, 0.00345611572265625, -0.035858154296875, -0.0168304443359375, 0.0223236083984375, 0.055908203125, 0.0186309814453125, -0.00841522216796875, 0.0718994140625, -0.0396728515625, -0.04736328125, -0.0323486328125, -0.0634765625, 0.07568359375, 0.06109619140625, -0.00476837158203125, -0.003673553466796875, 0.0167999267578125, 0.0273590087890625, 0.00872039794921875, 0.002307891845703125, -0.0005116462707519531, 0.05560302734375, -0.0020923614501953125, 0.026092529296875, -0.04302978515625, 0.0026950836181640625, -0.0212249755859375, -0.0261688232421875, -0.022552490234375, -0.0107879638671875, -0.0299224853515625, 0.003688812255859375, -0.035247802734375, -0.042694091796875, 0.063720703125, 0.0322265625, 0.00921630859375, -0.0246124267578125, -0.056884765625, 0.0053863525390625, 0.0806884765625, 0.028656005859375, -0.041412353515625, -0.01166534423828125, 0.018341064453125, -0.0804443359375, -0.049652099609375, -0.00431060791015625, 0.006877899169921875, -0.045867919921875, -0.005054473876953125, -0.006961822509765625, -0.026947021484375, -0.01413726806640625, 0.00412750244140625, -0.037445068359375, -0.0289306640625, 0.0207672119140625, -0.0021953582763671875, -0.011688232421875, 0.0207977294921875, -0.0276336669921875, -0.004199981689453125, -0.0033245086669921875, -0.0193939208984375, -0.042572021484375, -0.02435302734375, -0.018463134765625, 0.057525634765625, 0.019561767578125, -0.01348114013671875, -0.0238494873046875, 0.04095458984375, 0.0003952980041503906, 0.0221405029296875, -0.01287078857421875, 0.02587890625, -0.01085662841796875, -0.03167724609375, -0.0009031295776367188, -0.03900146484375, 0.0039215087890625, -0.01410675048828125, -0.03936767578125, -0.040679931640625, -0.04205322265625, -0.02099609375, -0.00449371337890625, -0.0198974609375, -0.049468994140625, -0.03326416015625, 0.00994110107421875, -0.01155853271484375, 0.0438232421875, -0.04302978515625, -0.03369140625, -0.0185699462890625, 0.025634765625, 0.02484130859375, 0.0032978057861328125, -0.01165008544921875, 0.0229034423828125, 0.0179595947265625, -0.038482666015625, 0.01175689697265625, 0.005100250244140625, 0.051605224609375, -0.01519775390625, 0.0011234283447265625, -0.001575469970703125, -0.0714111328125, 0.09259033203125, 0.0180206298828125, 0.0279693603515625, -0.01279449462890625, 0.048675537109375, 0.00884246826171875, -0.0075531005859375, 0.018585205078125, 0.032135009765625, -0.0689697265625, 0.0273284912109375, -0.0272979736328125, -0.0015201568603515625, 0.0017547607421875, 0.0157928466796875, -0.04486083984375, 0.0391845703125, -0.0204620361328125, -0.0152587890625, -0.01128387451171875, 0.0311279296875, 0.06982421875, -0.006290435791015625, 0.01837158203125, 0.01169586181640625, 0.055023193359375, 0.006717681884765625, 0.0259552001953125, -0.0130615234375, 0.01522064208984375, 0.031494140625, 0.018035888671875, 0.0157318115234375, 0.02081298828125, 0.020751953125, -0.042449951171875, -0.0120849609375, -0.02056884765625, -0.072265625, 0.0176239013671875, 0.01015472412109375, -0.0099334716796875, -0.0142974853515625, 0.03082275390625, 0.038787841796875, -0.00797271728515625, -0.0013294219970703125, 0.00457763671875, -0.0190582275390625, -0.033905029296875, -0.0027790069580078125, 0.034454345703125, -0.01004791259765625, -0.00798797607421875, 0.0496826171875, 0.04241943359375, -0.00395965576171875, -0.0270538330078125, 0.034515380859375, -0.0233306884765625, 0.056304931640625, 0.019500732421875, -0.0399169921875, 0.023162841796875, 0.0005249977111816406, -0.0028781890869140625, -0.0279693603515625, 0.006458282470703125, 0.0089263916015625, 0.05023193359375, 0.002643585205078125, -0.0187835693359375, -0.01294708251953125, -0.041107177734375, -0.036712646484375, 0.032470703125, 0.01654052734375, -0.034332275390625, -0.03961181640625, 0.0247650146484375, 0.051666259765625, 0.034454345703125, -0.01087188720703125, 0.038330078125, 0.0026760101318359375, 0.0360107421875, 0.035003662109375, -0.016632080078125, -0.002071380615234375, -0.001178741455078125, -0.025146484375, -0.00849151611328125, 0.00995635986328125, -0.030853271484375, -0.0287017822265625, -0.00437164306640625, -0.0038509368896484375, 0.039703369140625, -0.0297393798828125, -0.0104522705078125, -0.00807952880859375, 0.0034008026123046875, -0.048309326171875, 0.0125274658203125, 0.040191650390625, 0.014007568359375, 0.0037479400634765625, -0.014190673828125, -0.052947998046875, -0.034759521484375, -0.028167724609375, -0.05841064453125, -0.026947021484375, -0.0062103271484375, -0.0034122467041015625, 0.0160064697265625, 0.003910064697265625, 0.0305633544921875, -0.005458831787109375, 0.03948974609375, -0.00830078125, 0.070068359375, 0.003662109375, 0.08367919921875, -0.017059326171875, 0.041168212890625, 0.0200958251953125, 0.01523590087890625, -0.06732177734375, 0.006378173828125, -0.0306854248046875, -0.03662109375, 0.0175628662109375, 0.033203125, 0.007167816162109375, 0.006931304931640625, 0.027130126953125, 0.01580810546875, -0.0052947998046875, -0.004486083984375, 0.0040435791015625, -0.018829345703125, 0.04266357421875, 0.039520263671875, 0.01300048828125, 0.044921875, -0.0254058837890625, 0.006175994873046875, 0.01464080810546875, -0.035888671875, 0.05792236328125, -0.001834869384765625, 0.0267791748046875, 0.007770538330078125, 0.014007568359375, 0.0242767333984375, 0.07415771484375, -0.0030059814453125, 0.045166015625, 0.028167724609375, 0.003978729248046875, 0.00579833984375, 0.06927490234375, -0.0265045166015625, -0.046722412109375, 0.039947509765625, 0.01319122314453125, -0.0162353515625, 0.008575439453125, -0.02911376953125, 0.021270751953125, 0.0186920166015625, 0.054595947265625, -0.01555633544921875, 0.0005440711975097656, -0.0040283203125, -0.050262451171875, 0.0204010009765625, -0.0282745361328125, 0.017822265625, -0.015869140625, 0.06671142578125, 0.01274871826171875, 0.0082244873046875, 0.03564453125, -0.025726318359375, -0.0170135498046875, -0.008514404296875, 0.061553955078125, 0.0163116455078125, -0.0036754608154296875, 0.00974273681640625, -0.0028743743896484375, 0.005512237548828125, -0.0228271484375, 0.024017333984375, -0.0203399658203125, 0.017608642578125, 0.00965118408203125, 0.051483154296875, -0.01140594482421875, 0.0306854248046875, 0.01351165771484375, 0.03094482421875, 0.0160064697265625, 0.0308837890625, 0.0139617919921875, -0.00835418701171875, 0.0091094970703125, -0.0223236083984375, -0.0238800048828125, 0.01023101806640625, 0.007442474365234375, 0.04852294921875, -0.0501708984375, 0.0171661376953125, -0.04052734375, 0.048919677734375, -0.0212554931640625, 0.00006580352783203125, 0.08111572265625, 0.0012769699096679688, -0.034088134765625, 0.043609619140625, 0.04833984375, -0.05450439453125, 0.007434844970703125, 0.00878143310546875, -0.0239410400390625, -0.004886627197265625, 0.0094451904296875, -0.02777099609375, -0.01276397705078125, 0.011505126953125, -0.07501220703125, 0.1094970703125, 0.043060302734375, 0.0245208740234375, 0.0077056884765625, 0.0426025390625, -0.06011962890625, -0.0052337646484375, -0.053009033203125, 0.00904083251953125, -0.009002685546875, 0.0267333984375, -0.0552978515625, 0.01898193359375, -0.0254058837890625, 0.00365447998046875, 0.0230712890625, -0.008056640625, 0.025665283203125, -0.045440673828125, 0.00249481201171875, 0.061431884765625, -0.0016632080078125, -0.02532958984375, 0.0301666259765625, 0.021728515625, 0.043487548828125, -0.03985595703125, 0.0141754150390625, -0.00878143310546875, 0.0301055908203125, 0.06292724609375, -0.0065765380859375, -0.006740570068359375, 0.02978515625, 0.022186279296875, -0.055084228515625, 0.01245880126953125, 0.051422119140625, -0.06512451171875, 0.0025119781494140625, 0.01326751708984375, 0.0007047653198242188, -0.03753662109375, -0.0037021636962890625, -0.016204833984375, 0.0240936279296875, -0.01410675048828125, 0.01021575927734375, -0.00629425048828125, -0.00522613525390625, 0.0063934326171875, 0.00972747802734375, -0.0220489501953125, 0.018280029296875, 0.02862548828125, 0.045440673828125, 0.025634765625, 0.0335693359375, -0.048187255859375, -0.037445068359375, 0.0631103515625, 0.0784912109375, -0.0162200927734375, -0.03021240234375, 0.01383209228515625, 0.0198211669921875, 0.01110076904296875, 0.01568603515625, 0.04473876953125, -0.00556182861328125, 0.01544952392578125, -0.01824951171875, -0.02801513671875, 0.00753021240234375, 0.01358795166015625, -0.006710052490234375, -0.002117156982421875, 0.0230712890625, -0.0222015380859375, -0.0240631103515625, 0.0140228271484375, 0.01427459716796875, 0.031982421875, -0.00263214111328125, 0.045318603515625, -0.020751953125, -0.0161895751953125, 0.0151519775390625, 0.0156402587890625, -0.037689208984375, 0.002536773681640625, 0.00618743896484375, -0.01384735107421875, -0.048309326171875, 0.0166168212890625, 0.0137786865234375, 0.01131439208984375, 0.0299072265625, 0.036041259765625, 0.01073455810546875, -0.00952911376953125, 0.006343841552734375, -0.005092620849609375, 0.03955078125, -0.0283660888671875, 0.0021877288818359375, -0.00107574462890625, -0.0289764404296875, -0.002410888671875, -0.01885986328125, 0.046356201171875, -0.072021484375, 0.070068359375, -0.0333251953125, -0.0175628662109375, 0.07354736328125, -0.04534912109375, 0.08721923828125, -0.055572509765625, -0.0439453125, 0.0105438232421875, -0.00702667236328125, -0.0601806640625, 0.007389068603515625, 0.0291595458984375, -0.056121826171875, 0.046356201171875, -0.0345458984375, 0.00885772705078125, 0.0049896240234375, -0.038299560546875, 0.00885772705078125, 0.00907135009765625, 0.0182952880859375, 0.00650787353515625, 0.0016574859619140625, 0.00263214111328125, -0.006305694580078125, 0.0306854248046875, 0.01042938232421875, 0.040496826171875, -0.02178955078125, 0.032470703125, 0.0199432373046875, 0.016387939453125, 0.01525115966796875, 0.0103912353515625, 0.0269622802734375, 0.022369384765625, 0.0078125, -0.05047607421875, -0.01374053955078125, 0.022491455078125, 0.034759521484375, 0.0002346038818359375, 0.0374755859375, -0.026092529296875, 0.0013942718505859375, -0.004962921142578125, 0.01544952392578125, -0.033935546875, -0.03814697265625, -0.10150146484375, -0.027618408203125, 0.0491943359375, 0.031341552734375, -0.016845703125, 0.0217132568359375, -0.004772186279296875, -0.031494140625, 0.042236328125, -0.046966552734375, 0.06591796875, 0.040130615234375, -0.04443359375, -0.0238189697265625, -0.01500701904296875, -0.01177215576171875, -0.00307464599609375, -0.00222015380859375, -0.005222320556640625, -0.0093231201171875, -0.045379638671875, -0.042633056640625, -0.0199432373046875, 0.00444793701171875, -0.038177490234375, -0.0020656585693359375, -0.015228271484375, 0.0017070770263671875, 0.0016508102416992188, 0.01263427734375, -0.003993988037109375, -0.0016012191772460938, -0.01513671875, 0.0081634521484375, 0.00637054443359375, -0.0308380126953125, -0.0267791748046875, -0.0029239654541015625, 0.01483917236328125, 0.0290985107421875, -0.04193115234375, 0.0288238525390625, 0.014007568359375, 0.0176239013671875, 0.0088653564453125, -0.058349609375, 0.005329132080078125, 0.026824951171875, -0.0095672607421875, -0.050567626953125, -0.03179931640625, 0.00916290283203125, -0.039276123046875, 0.0120697021484375, 0.0345458984375, -0.009796142578125, 0.005649566650390625, 0.0244598388671875, -0.005184173583984375, 0.08697509765625, -0.05279541015625, -0.01739501953125, 0.001285552978515625, 0.00893402099609375, -0.023468017578125, -0.020416259765625, 0.0160675048828125, -0.0174407958984375, -0.0040435791015625, 0.01102447509765625, -0.001621246337890625, 0.0216522216796875, -0.034698486328125, -0.08453369140625, 0.0009670257568359375, -0.004940032958984375, -0.049346923828125, -0.043212890625, 0.016754150390625, 0.031890869140625, -0.045867919921875, -0.036651611328125, 0.00455474853515625, -0.04296875, 0.017364501953125, 0.0253753662109375, -0.0249176025390625, 0.058135986328125, -0.0245361328125, -0.051910400390625, 0.01336669921875, 0.00688934326171875, 0.0189666748046875, -0.045562744140625, -0.007457733154296875, 0.03717041015625, 0.04339599609375, 0.0019073486328125, -0.0015811920166015625, 0.0589599609375, 0.0125885009765625, -0.027862548828125, -0.01288604736328125, 0.0030040740966796875, 0.018096923828125, 0.06365966796875, 0.0304718017578125, 0.005771636962890625, -0.047149658203125, 0.0126800537109375, 0.0099945068359375, -0.029449462890625, -0.0423583984375, 0.0259246826171875, -0.0638427734375, -0.03546142578125, -0.0250396728515625, -0.0084381103515625, -0.00945281982421875, -0.008758544921875, -0.03790283203125, -0.0150909423828125, -0.034637451171875, 0.0005903244018554688, -0.017730712890625, -0.00754547119140625, 0.07379150390625, -0.0301666259765625, 0.01209259033203125, -0.0220489501953125, 0.0254669189453125, 0.031524658203125, -0.02532958984375, 0.019195556640625, 0.07293701171875, -0.065185546875, -0.019195556640625, 0.023193359375, 0.0023479461669921875, -0.01407623291015625, 0.00453948974609375, -0.00080108642578125, 0.0164337158203125, -0.0090179443359375, -0.00838470458984375, -0.0187530517578125, 0.04278564453125, -0.007617950439453125, 0.058258056640625, -0.032257080078125, 0.0631103515625, 0.00806427001953125, 0.0029354095458984375, -0.0080718994140625, 0.00525665283203125, 0.06884765625, -0.0672607421875, -0.00433349609375, 0.030731201171875, -0.0150909423828125, -0.003711700439453125, -0.020965576171875, -0.0211181640625, 0.022918701171875, -0.0143890380859375 ]
239c6d5fdab858ccc817d0068fd9cba6fdc5fd9d
Wordpress Stackexchange Q: How to run multiple Async HTTP requests in Wordpress? In my plugin, I want to call 10 or more HTTP requests asynchronously in WordPress so that I need not wait for the response of anyone. Is there any way in Wordpress that supports this and also compatible with different WordPress versions? A: The (built-in) Requests class lets you call multiple requests simultaneously: Requests::request_multiple. <?php $requests = Requests::request_multiple([ [ 'url' => 'https://www.mocky.io/v2/5acb821f2f00005300411631', 'type' => 'GET', 'headers' => [ 'Accept' => 'application/json' ], ], [ 'url' => 'https://www.mocky.io/v2/5acb821f2f00005300411631', 'type' => 'POST', 'headers' => [ 'Accept' => 'application/json' ], 'data' => json_encode([ 'text' => 'My POST Data' ]) ], [ 'url' => 'https://www.mocky.io/v2/5acb82ee2f00005100411635', 'type' => 'POST', 'headers' => [ 'Accept' => 'application/json' ], 'data' => json_encode([ 'text' => 'More POST Data' ]) ], ]); foreach ($request as $request) { if ($request->status_code !== 200) { // handle error } // handle success echo $request->body; }
Q: How to run multiple Async HTTP requests in Wordpress? In my plugin, I want to call 10 or more HTTP requests asynchronously in WordPress so that I need not wait for the response of anyone. Is there any way in Wordpress that supports this and also compatible with different WordPress versions? A: The (built-in) Requests class lets you call multiple requests simultaneously: Requests::request_multiple. <?php $requests = Requests::request_multiple([ [ 'url' => 'https://www.mocky.io/v2/5acb821f2f00005300411631', 'type' => 'GET', 'headers' => [ 'Accept' => 'application/json' ], ], [ 'url' => 'https://www.mocky.io/v2/5acb821f2f00005300411631', 'type' => 'POST', 'headers' => [ 'Accept' => 'application/json' ], 'data' => json_encode([ 'text' => 'My POST Data' ]) ], [ 'url' => 'https://www.mocky.io/v2/5acb82ee2f00005100411635', 'type' => 'POST', 'headers' => [ 'Accept' => 'application/json' ], 'data' => json_encode([ 'text' => 'More POST Data' ]) ], ]); foreach ($request as $request) { if ($request->status_code !== 200) { // handle error } // handle success echo $request->body; }
wordpress
{ "language": "en", "length": 152, "provenance": "stackexchange_00019.jsonl.gz:483886", "question_score": "6", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/293846" }
[ 0.07147216796875, -0.020660400390625, -0.01824951171875, -0.09747314453125, 0.0183563232421875, -0.02716064453125, 0.031097412109375, 0.038543701171875, -0.02178955078125, 0.003322601318359375, -0.016510009765625, 0.007411956787109375, -0.026153564453125, -0.0352783203125, 0.01372528076171875, -0.049163818359375, 0.037322998046875, 0.018524169921875, 0.0262908935546875, -0.01256561279296875, -0.01201629638671875, 0.005245208740234375, 0.01386260986328125, 0.0877685546875, 0.0001614093780517578, 0.0209503173828125, 0.0014619827270507812, -0.037322998046875, -0.00980377197265625, -0.0171966552734375, -0.0019474029541015625, 0.037841796875, 0.03607177734375, 0.043609619140625, -0.08447265625, -0.0243682861328125, 0.0002951622009277344, 0.0132598876953125, -0.036224365234375, 0.05908203125, 0.033660888671875, -0.0249481201171875, 0.034027099609375, 0.00783538818359375, 0.0311279296875, -0.040435791015625, 0.059112548828125, -0.070556640625, -0.0389404296875, 0.031585693359375, 0.026397705078125, -0.03753662109375, 0.026947021484375, 0.0433349609375, -0.015533447265625, -0.016693115234375, 0.0264129638671875, -0.015411376953125, 0.042083740234375, -0.026641845703125, -0.044097900390625, -0.0294952392578125, 0.01959228515625, -0.020172119140625, 0.006221771240234375, -0.00859832763671875, 0.0036907196044921875, 0.0308074951171875, -0.022735595703125, -0.01314544677734375, 0.01526641845703125, -0.01331329345703125, 0.0227203369140625, -0.0160369873046875, 0.0277099609375, -0.035919189453125, -0.0139923095703125, -0.0280609130859375, 0.0232391357421875, 0.019134521484375, 0.0218505859375, -0.0263824462890625, -0.0255584716796875, 0.00251007080078125, 0.0283203125, 0.045257568359375, 0.0023555755615234375, -0.03155517578125, -0.047454833984375, 0.005615234375, -0.0300750732421875, -0.0579833984375, -0.016571044921875, 0.034271240234375, -0.00580596923828125, 0.0091552734375, -0.0027103424072265625, -0.041168212890625, 0.0167236328125, -0.00579071044921875, 0.0556640625, -0.05523681640625, 0.0293731689453125, 0.004283905029296875, 0.0165557861328125, -0.0117645263671875, -0.033050537109375, 0.00521087646484375, 0.06707763671875, 0.046417236328125, -0.0021915435791015625, 0.043426513671875, 0.0272979736328125, 0.005237579345703125, -0.0210113525390625, -0.038330078125, -0.0201568603515625, 0.013671875, -0.0094757080078125, -0.01427459716796875, 0.01129913330078125, 0.0304107666015625, 0.0017070770263671875, 0.0011682510375976562, -0.00519561767578125, 0.003925323486328125, -0.00582122802734375, -0.04998779296875, -0.00536346435546875, 0.0080108642578125, -0.01180267333984375, 0.024505615234375, 0.041290283203125, 0.0048370361328125, -0.0201568603515625, -0.0015163421630859375, 0.026763916015625, 0.0139923095703125, 0.01445770263671875, -0.01091766357421875, 0.03057861328125, -0.054046630859375, -0.042144775390625, 0.03643798828125, 0.045684814453125, -0.0247039794921875, 0.017822265625, 0.042999267578125, 0.03399658203125, 0.01593017578125, 0.01078033447265625, 0.0162811279296875, -0.0112762451171875, 0.0157623291015625, 0.0118408203125, 0.034088134765625, -0.00640869140625, 0.004505157470703125, 0.0022258758544921875, 0.01282501220703125, -0.00868988037109375, -0.0126495361328125, 0.03680419921875, -0.0164337158203125, -0.047088623046875, 0.0159759521484375, -0.021942138671875, -0.0166778564453125, 0.019866943359375, 0.027496337890625, -0.02435302734375, -0.01015472412109375, 0.0438232421875, 0.017486572265625, -0.0201416015625, 0.023529052734375, -0.024810791015625, 0.0292816162109375, 0.03515625, -0.0251617431640625, -0.01418304443359375, -0.04119873046875, 0.07269287109375, -0.006252288818359375, -0.061798095703125, 0.0821533203125, -0.021881103515625, 0.08966064453125, 0.0222625732421875, 0.01580810546875, 0.00039315223693847656, 0.00098419189453125, 0.0235137939453125, 0.04156494140625, -0.0174102783203125, -0.05853271484375, 0.00270843505859375, 0.01383209228515625, -0.0328369140625, -0.0203704833984375, 0.0097198486328125, -0.01727294921875, -0.0052337646484375, 0.00518035888671875, -0.04425048828125, -0.0163116455078125, -0.020050048828125, 0.00739288330078125, 0.01139068603515625, 0.036865234375, -0.00748443603515625, 0.00862884521484375, 0.01541900634765625, -0.04425048828125, -0.015167236328125, 0.0152435302734375, -0.0167999267578125, 0.0079803466796875, -0.0162200927734375, 0.026123046875, -0.04656982421875, -0.0219879150390625, -0.0498046875, -0.01158905029296875, 0.0516357421875, -0.01910400390625, -0.00788116455078125, -0.03802490234375, 0.0312347412109375, 0.0157928466796875, -0.053070068359375, 0.019500732421875, 0.0472412109375, 0.05731201171875, -0.0037403106689453125, -0.0240478515625, -0.00797271728515625, -0.07183837890625, 0.0217132568359375, 0.047210693359375, 0.046966552734375, 0.00768280029296875, 0.013031005859375, 0.01363372802734375, 0.00714111328125, -0.06402587890625, 0.0061187744140625, -0.013702392578125, 0.00562286376953125, -0.019012451171875, 0.010223388671875, -0.040252685546875, 0.0269927978515625, -0.06341552734375, 0.03173828125, 0.00731658935546875, 0.0117034912109375, -0.052337646484375, 0.00882720947265625, 0.026275634765625, 0.0032215118408203125, -0.059051513671875, -0.059844970703125, -0.00042724609375, -0.003177642822265625, -0.01004791259765625, 0.0231170654296875, 0.0246734619140625, 0.002262115478515625, -0.0237884521484375, 0.0064239501953125, 0.017364501953125, 0.002197265625, 0.03631591796875, -0.01094818115234375, 0.0146942138671875, -0.033355712890625, 0.010986328125, -0.0255279541015625, 0.012176513671875, -0.0002779960632324219, 0.03662109375, -0.035858154296875, -0.01971435546875, -0.021728515625, 0.0254669189453125, -0.0038604736328125, 0.004642486572265625, 0.0226287841796875, 0.01552581787109375, 0.03814697265625, 0.032440185546875, -0.01806640625, 0.045623779296875, -0.01055145263671875, -0.0177001953125, 0.07843017578125, -0.037933349609375, 0.0131683349609375, -0.01094818115234375, 0.063720703125, 0.042755126953125, -0.0021877288818359375, -0.002773284912109375, -0.005390167236328125, -0.00726318359375, 0.0008683204650878906, -0.006732940673828125, -0.040374755859375, -0.027099609375, -0.05731201171875, -0.0192718505859375, 0.01959228515625, 0.07061767578125, -0.0032711029052734375, -0.055755615234375, -0.005855560302734375, 0.035186767578125, -0.08551025390625, -0.1005859375, 0.05694580078125, -0.06292724609375, 0.00980377197265625, -0.055755615234375, -0.0285186767578125, -0.0256500244140625, -0.040252685546875, -0.00817108154296875, -0.014892578125, 0.020782470703125, -0.044677734375, -0.01375579833984375, -0.057708740234375, 0.033447265625, -0.0219268798828125, 0.02386474609375, -0.018310546875, 0.057952880859375, -0.0102386474609375, -0.05010986328125, -0.06005859375, 0.00148773193359375, -0.0243072509765625, -0.048675537109375, 0.018524169921875, -0.03955078125, -0.005001068115234375, -0.00844573974609375, 0.052398681640625, 0.04443359375, -0.036407470703125, 0.017822265625, -0.015380859375, 0.0166168212890625, 0.0009174346923828125, -0.021697998046875, 0.017822265625, 0.0219268798828125, -0.00920867919921875, -0.0255584716796875, -0.0267333984375, -0.007476806640625, -0.058746337890625, -0.0253448486328125, 0.038543701171875, -0.00021946430206298828, -0.0271148681640625, -0.002471923828125, 0.0007505416870117188, 0.004039764404296875, 0.0086212158203125, -0.0163421630859375, 0.0631103515625, -0.0157470703125, 0.00008219480514526367, -0.020721435546875, 0.0276336669921875, -0.0233001708984375, -0.0017290115356445312, -0.00817108154296875, -0.0136871337890625, -0.0117340087890625, -0.0008687973022460938, -0.0183258056640625, -0.0216827392578125, 0.037811279296875, 0.016326904296875, 0.007312774658203125, -0.017364501953125, -0.0269012451171875, -0.020111083984375, 0.049896240234375, -0.039031982421875, -0.01995849609375, 0.0035610198974609375, 0.031646728515625, -0.061126708984375, -0.03851318359375, -0.04010009765625, 0.005725860595703125, 0.0587158203125, -0.00372314453125, -0.039825439453125, 0.017669677734375, 0.005161285400390625, -0.05084228515625, 0.07135009765625, -0.01335906982421875, 0.0194549560546875, -0.027557373046875, -0.0012969970703125, -0.045867919921875, 0.031524658203125, -0.08892822265625, 0.01548004150390625, -0.018768310546875, -0.036285400390625, -0.0185394287109375, -0.0306396484375, 0.05133056640625, 0.043212890625, -0.05010986328125, 0.011505126953125, 0.046630859375, 0.0174407958984375, 0.029632568359375, 0.0035648345947265625, -0.0264129638671875, 0.017333984375, 0.01654052734375, 0.01070404052734375, -0.0033740997314453125, -0.020660400390625, -0.01032257080078125, 0.006427764892578125, -0.00669097900390625, -0.02587890625, -0.0567626953125, -0.006732940673828125, -0.0301666259765625, -0.03302001953125, -0.01444244384765625, -0.01494598388671875, 0.0096588134765625, -0.004779815673828125, -0.0152587890625, -0.00865936279296875, -0.048675537109375, 0.057861328125, 0.01427459716796875, -0.00617218017578125, 0.004367828369140625, 0.0755615234375, 0.0017881393432617188, -0.0290069580078125, -0.096435546875, -0.007244110107421875, 0.0232696533203125, 0.004253387451171875, 0.0289306640625, 0.0015840530395507812, -0.034942626953125, 0.07763671875, -0.00397491455078125, 0.0247650146484375, 0.05621337890625, -0.042877197265625, 0.0222930908203125, -0.00577545166015625, -0.00667572021484375, 0.0628662109375, -0.04742431640625, 0.01537322998046875, 0.0031585693359375, 0.011322021484375, 0.04901123046875, -0.00836944580078125, -0.041717529296875, -0.00746917724609375, 0.01351165771484375, -0.04791259765625, 0.01190185546875, -0.053375244140625, 0.017913818359375, 0.0258941650390625, -0.007129669189453125, 0.0238189697265625, 0.01922607421875, 0.00543975830078125, -0.046112060546875, 0.01157379150390625, -0.046630859375, 0.019134521484375, 0.00455474853515625, -0.020965576171875, -0.029815673828125, -0.0014028549194335938, 0.036895751953125, -0.01430511474609375, -0.07000732421875, -0.014190673828125, -0.0105133056640625, 0.01019287109375, 0.01506805419921875, -0.036224365234375, 0.016510009765625, 0.038238525390625, -0.0021610260009765625, 0.023101806640625, -0.01459503173828125, -0.014556884765625, -0.007720947265625, 0.0167083740234375, -0.0013103485107421875, -0.00014841556549072266, -0.02734375, 0.03631591796875, 0.004558563232421875, 0.01007843017578125, -0.01285552978515625, 0.060516357421875, 0.047760009765625, 0.0212860107421875, 0.0141754150390625, 0.0015583038330078125, -0.01165008544921875, 0.0147247314453125, -0.0223388671875, -0.03271484375, -0.0233306884765625, 0.0172882080078125, 0.03009033203125, 0.0030994415283203125, -0.00027251243591308594, 0.020416259765625, 0.01058197021484375, -0.03851318359375, 0.0166473388671875, 0.046539306640625, 0.044952392578125, -0.038177490234375, -0.0267791748046875, 0.022613525390625, 0.04815673828125, 0.0198974609375, -0.002410888671875, 0.0399169921875, 0.03387451171875, -0.059051513671875, -0.00867462158203125, -0.005023956298828125, 0.0224151611328125, 0.003818511962890625, -0.01323699951171875, -0.0139312744140625, -0.04351806640625, -0.02740478515625, -0.01398468017578125, 0.0014934539794921875, 0.06304931640625, -0.0164337158203125, 0.01430511474609375, -0.0085601806640625, -0.007106781005859375, 0.0110321044921875, 0.0144195556640625, 0.035736083984375, 0.023345947265625, 0.00508880615234375, -0.0205078125, -0.0197296142578125, -0.0232391357421875, 0.00405120849609375, -0.0198822021484375, -0.00478363037109375, -0.0197601318359375, 0.006244659423828125, 0.0208282470703125, 0.01226806640625, -0.00466156005859375, 0.018218994140625, 0.0255889892578125, -0.00826263427734375, 0.014801025390625, -0.043304443359375, 0.038665771484375, 0.0183258056640625, -0.0062713623046875, -0.0157012939453125, 0.007328033447265625, 0.0176239013671875, 0.0015878677368164062, -0.0074005126953125, -0.07293701171875, -0.0238800048828125, 0.021209716796875, -0.0256805419921875, 0.05169677734375, 0.03326416015625, -0.0019702911376953125, 0.01537322998046875, -0.01480865478515625, 0.00737762451171875, -0.00443267822265625, 0.056732177734375, -0.005031585693359375, -0.0108795166015625, 0.0699462890625, -0.0160675048828125, -0.01104736328125, -0.0023517608642578125, -0.031646728515625, 0.049285888671875, 0.0171356201171875, 0.020111083984375, -0.0185546875, -0.0088348388671875, 0.0016078948974609375, 0.05364990234375, -0.0086517333984375, 0.05224609375, 0.01526641845703125, 0.016357421875, 0.050445556640625, 0.011474609375, 0.0087127685546875, 0.018829345703125, 0.006977081298828125, -0.0280303955078125, -0.0032863616943359375, -0.036102294921875, -0.0104217529296875, -0.004642486572265625, -0.00018143653869628906, 0.03826904296875, -0.037322998046875, 0.0181427001953125, 0.0017671585083007812, -0.0077972412109375, 0.0164794921875, -0.025970458984375, 0.002857208251953125, -0.05426025390625, 0.07135009765625, 0.0260772705078125, -0.0120391845703125, 0.021575927734375, -0.01092529296875, -0.0040283203125, -0.0258331298828125, -0.03265380859375, -0.016937255859375, -0.05560302734375, 0.01995849609375, 0.0545654296875, -0.012176513671875, 0.0201416015625, 0.022979736328125, -0.026519775390625, -0.02581787109375, -0.00443267822265625, 0.0043182373046875, -0.019500732421875, -0.01238250732421875, 0.01514434814453125, 0.0300140380859375, -0.01543426513671875, 0.058868408203125, -0.0225677490234375, 0.032806396484375, 0.031524658203125, -0.0156402587890625, -0.020111083984375, -0.0242462158203125, -0.0251312255859375, 0.0035305023193359375, -0.0294342041015625, 0.0233306884765625, -0.02740478515625, 0.01363372802734375, -0.006023406982421875, -0.0022373199462890625, 0.051025390625, -0.0101776123046875, -0.0257720947265625, 0.038665771484375, 0.01079559326171875, -0.0264129638671875, 0.006687164306640625, 0.019012451171875, -0.060699462890625, -0.032958984375, 0.0101776123046875, -0.04449462890625, -0.007755279541015625, -0.001522064208984375, -0.094482421875, 0.11871337890625, 0.034912109375, 0.0279693603515625, -0.033111572265625, 0.045806884765625, -0.03289794921875, 0.021148681640625, -0.0214691162109375, 0.03521728515625, 0.0001780986785888672, -0.01226043701171875, -0.0209503173828125, 0.0135498046875, -0.0176544189453125, -0.005298614501953125, 0.00786590576171875, -0.0006017684936523438, -0.0308837890625, 0.0201416015625, 0.03350830078125, 0.03125, 0.0028839111328125, 0.0419921875, 0.0219879150390625, -0.01447296142578125, 0.04998779296875, -0.0185394287109375, 0.039031982421875, -0.043487548828125, 0.04376220703125, 0.0318603515625, 0.007770538330078125, 0.01490020751953125, -0.005573272705078125, 0.02569580078125, 0.01081085205078125, -0.01168060302734375, -0.0013790130615234375, 0.0200653076171875, 0.00934600830078125, 0.01099395751953125, -0.0035991668701171875, 0.048797607421875, 0.035797119140625, -0.0205078125, 0.038360595703125, -0.0086212158203125, 0.0002639293670654297, 0.00534820556640625, -0.0034389495849609375, -0.0271148681640625, 0.0087127685546875, -0.0137481689453125, 0.030670166015625, -0.011871337890625, 0.050933837890625, 0.0274505615234375, 0.025726318359375, -0.04443359375, 0.0186614990234375, 0.03338623046875, 0.06268310546875, -0.054962158203125, -0.037139892578125, 0.01015472412109375, 0.01546478271484375, 0.026702880859375, -0.008209228515625, 0.038116455078125, -0.030426025390625, 0.0174102783203125, -0.0005793571472167969, -0.00699615478515625, -0.021942138671875, 0.019073486328125, -0.00574493408203125, -0.003292083740234375, 0.0038547515869140625, -0.00399017333984375, -0.033111572265625, 0.0229644775390625, 0.008270263671875, 0.0555419921875, -0.00835418701171875, 0.056884765625, -0.04974365234375, -0.01549530029296875, 0.0228729248046875, 0.00762939453125, -0.017120361328125, -0.04046630859375, -0.020111083984375, -0.072509765625, -0.0124969482421875, 0.045196533203125, 0.037109375, 0.0179290771484375, 0.048614501953125, 0.055816650390625, 0.015045166015625, 0.01090240478515625, 0.040130615234375, 0.00017368793487548828, -0.0164337158203125, -0.0169525146484375, -0.09930419921875, -0.03192138671875, -0.05194091796875, 0.0273590087890625, -0.0254669189453125, -0.023681640625, -0.01806640625, 0.043304443359375, -0.0176849365234375, -0.0222015380859375, 0.0238494873046875, -0.0281829833984375, 0.066650390625, -0.00991058349609375, -0.0869140625, -0.01447296142578125, -0.0191650390625, -0.0289764404296875, 0.0189208984375, 0.0274810791015625, -0.0278778076171875, 0.034820556640625, 0.05401611328125, -0.0216064453125, -0.0020465850830078125, -0.0007772445678710938, 0.040802001953125, -0.0187835693359375, 0.0057373046875, 0.020263671875, -0.0908203125, -0.04974365234375, -0.01107025146484375, 0.007190704345703125, -0.0279541015625, 0.060150146484375, 0.002376556396484375, -0.01261138916015625, 0.043365478515625, 0.01953125, 0.00861358642578125, 0.047119140625, -0.019012451171875, -0.03167724609375, 0.00826263427734375, -0.0086669921875, -0.0242462158203125, 0.038604736328125, 0.0026569366455078125, -0.01354217529296875, 0.02142333984375, -0.0367431640625, 0.0132598876953125, 0.0118865966796875, 0.0031032562255859375, -0.014190673828125, -0.0350341796875, -0.015777587890625, 0.004528045654296875, 0.0263824462890625, 0.040283203125, -0.0080108642578125, 0.03814697265625, -0.000009715557098388672, -0.002674102783203125, 0.002101898193359375, -0.0089263916015625, -0.01178741455078125, 0.015960693359375, 0.01174163818359375, 0.004528045654296875, -0.00860595703125, -0.01446533203125, 0.0121307373046875, 0.00995635986328125, -0.01617431640625, 0.0047149658203125, -0.006168365478515625, 0.016632080078125, 0.0175323486328125, 0.0108489990234375, -0.032470703125, -0.01245880126953125, 0.06060791015625, -0.023101806640625, -0.0181884765625, 0.00830841064453125, -0.006969451904296875, 0.0038509368896484375, -0.024627685546875, -0.022613525390625, 0.0156402587890625, -0.052886962890625, 0.0250091552734375, -0.041900634765625, -0.01995849609375, -0.0239715576171875, 0.0440673828125, -0.04638671875, -0.00426483154296875, -0.02392578125, -0.03179931640625, 0.0413818359375, -0.0146331787109375, -0.006023406982421875, -0.01538848876953125, -0.01788330078125, -0.018585205078125, 0.052032470703125, 0.020233154296875, -0.039215087890625, -0.016265869140625, -0.0016527175903320312, -0.0142974853515625, -0.040863037109375, -0.0147247314453125, -0.0038967132568359375, 0.03973388671875, 0.005107879638671875, -0.004985809326171875, 0.043060302734375, -0.06304931640625, -0.10382080078125, 0.0170745849609375, -0.0390625, 0.0211181640625, 0.00557708740234375, 0.0325927734375, 0.04833984375, -0.01605224609375, -0.064697265625, 0.054290771484375, -0.0240325927734375, -0.0242156982421875, -0.08056640625, 0.0034332275390625, 0.0181732177734375, 0.00115966796875, -0.033538818359375, 0.00290679931640625, -0.04315185546875, 0.0201873779296875, -0.0195159912109375, 0.0036220550537109375, -0.003780364990234375, -0.0160675048828125, -0.043365478515625, 0.0160980224609375, 0.010223388671875, -0.027130126953125, -0.0244140625, 0.01184844970703125, 0.0364990234375, 0.03863525390625, 0.00893402099609375, 0.044586181640625, 0.031341552734375, -0.01617431640625, -0.027099609375, -0.008880615234375, -0.048675537109375, 0.00946044921875, 0.10650634765625, 0.09661865234375, 0.034149169921875, -0.0634765625, -0.0267486572265625, -0.01219940185546875, 0.0091705322265625, -0.025360107421875, 0.01078033447265625, -0.0718994140625, -0.0185546875, -0.01519012451171875, 0.023284912109375, 0.01727294921875, -0.022491455078125, 0.007099151611328125, -0.03668212890625, 0.000850677490234375, -0.007205963134765625, -0.0269927978515625, 0.0278472900390625, 0.0718994140625, -0.053497314453125, -0.0255889892578125, -0.00725555419921875, -0.003467559814453125, 0.0083465576171875, -0.04278564453125, -0.0097808837890625, 0.0097198486328125, -0.015045166015625, 0.049835205078125, -0.00023865699768066406, 0.00322723388671875, -0.04541015625, 0.01384735107421875, -0.0159454345703125, 0.0230712890625, -0.00211334228515625, 0.037445068359375, 0.0228118896484375, -0.0235443115234375, 0.00013363361358642578, 0.0274810791015625, -0.044586181640625, 0.034820556640625, -0.00252532958984375, -0.01390838623046875, 0.005809783935546875, 0.0227203369140625, 0.06781005859375, -0.035003662109375, 0.0150299072265625, 0.006839752197265625, -0.0160980224609375, -0.0224761962890625, 0.027984619140625, 0.061187744140625, -0.016754150390625, 0.0201416015625 ]
49b77e65677c2684de2d0df8b940e2bacab938cd
Wordpress Stackexchange Q: How can I dequeue a Plugin Stylesheet? I am currently using a Plugin, which has created a Stylesheet within the following directory: /wp-content/uploads/plugin-name/css. I would like to remove this Plugin's Stylesheet, since it is being called after my Custom Stylesheet, where the Plugin is performing unwanted overrides of the Custom Stylesheet. Instead, I want to remove the Plugin's Stylesheet; copying only required styles into the Custom Stylesheet. I tried placing the following into the functions.php file, within the Child Theme: <?php function dequeue_dequeue_plugin_style(){ wp_dequeue_style( 'plugin-css' ); //Name of Style ID. } add_action( 'wp_enqueue_scripts', 'dequeue_dequeue_plugin_style', 999 ); ?> Unfortunately, this did not work. Is anyone able to see if I have gone wrong with my Code or whether Plugin Styles have priority over all files within a Child Theme etc. A: My error. All I had to do was knock off the -css and it worked. Working code: <?php function dequeue_dequeue_plugin_style(){ wp_dequeue_style( 'plugin' ); //Name of Style ID. } add_action( 'wp_enqueue_scripts', 'dequeue_dequeue_plugin_style', 999 ); ?>
Q: How can I dequeue a Plugin Stylesheet? I am currently using a Plugin, which has created a Stylesheet within the following directory: /wp-content/uploads/plugin-name/css. I would like to remove this Plugin's Stylesheet, since it is being called after my Custom Stylesheet, where the Plugin is performing unwanted overrides of the Custom Stylesheet. Instead, I want to remove the Plugin's Stylesheet; copying only required styles into the Custom Stylesheet. I tried placing the following into the functions.php file, within the Child Theme: <?php function dequeue_dequeue_plugin_style(){ wp_dequeue_style( 'plugin-css' ); //Name of Style ID. } add_action( 'wp_enqueue_scripts', 'dequeue_dequeue_plugin_style', 999 ); ?> Unfortunately, this did not work. Is anyone able to see if I have gone wrong with my Code or whether Plugin Styles have priority over all files within a Child Theme etc. A: My error. All I had to do was knock off the -css and it worked. Working code: <?php function dequeue_dequeue_plugin_style(){ wp_dequeue_style( 'plugin' ); //Name of Style ID. } add_action( 'wp_enqueue_scripts', 'dequeue_dequeue_plugin_style', 999 ); ?> A: You can easily do it. For style, you have to follow the following codes- function scp_assets_dequeue() { wp_dequeue_style( 'wpcp-slick' ); // style id } add_action( 'wp_enqueue_scripts', 'scp_assets_dequeue', 9999); Similarly for script, you have to try the following code- function scp_assets_dequeue() { wp_dequeue_script( 'wpcp-slick' ); // script id } add_action( 'wp_enqueue_scripts', 'scp_assets_dequeue', 9999);
wordpress
{ "language": "en", "length": 218, "provenance": "stackexchange_00019.jsonl.gz:483929", "question_score": "4", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/294004" }
[ 0.000019848346710205078, 0.041412353515625, -0.059326171875, 0.0215606689453125, 0.02703857421875, -0.05322265625, 0.0156707763671875, -0.035736083984375, -0.0138397216796875, 0.0197601318359375, 0.010650634765625, -0.007305145263671875, -0.04266357421875, -0.03857421875, -0.006717681884765625, -0.0270538330078125, 0.03497314453125, 0.004669189453125, 0.0216217041015625, -0.0133209228515625, -0.00392913818359375, 0.022491455078125, -0.0019779205322265625, 0.08514404296875, 0.0020751953125, -0.00624847412109375, 0.10211181640625, 0.013946533203125, 0.00261688232421875, -0.016448974609375, 0.0168609619140625, -0.0435791015625, 0.012176513671875, 0.061065673828125, -0.06304931640625, -0.009490966796875, 0.006744384765625, 0.0188751220703125, 0.004512786865234375, 0.03045654296875, 0.0633544921875, -0.0188446044921875, -0.0504150390625, 0.0450439453125, -0.0296783447265625, -0.06884765625, 0.05950927734375, -0.00470733642578125, 0.0005908012390136719, 0.009674072265625, 0.0254058837890625, 0.0247344970703125, 0.035980224609375, 0.0008034706115722656, -0.007537841796875, -0.005565643310546875, -0.0330810546875, 0.0248260498046875, 0.01535797119140625, 0.058349609375, 0.005695343017578125, 0.00397491455078125, -0.003200531005859375, -0.06524658203125, 0.006378173828125, 0.025177001953125, 0.008148193359375, 0.0023975372314453125, -0.0458984375, 0.024810791015625, 0.0304718017578125, -0.052154541015625, 0.01207733154296875, -0.0187225341796875, -0.030975341796875, 0.0027408599853515625, 0.02020263671875, 0.0059356689453125, 0.0276031494140625, -0.0322265625, -0.02008056640625, -0.052032470703125, -0.055816650390625, -0.005008697509765625, 0.00799560546875, 0.0252838134765625, -0.0115966796875, -0.00395965576171875, -0.0200653076171875, -0.02227783203125, -0.0301361083984375, 0.0251922607421875, -0.0298919677734375, -0.0243988037109375, -0.0261077880859375, -0.0111236572265625, 0.04583740234375, 0.0728759765625, 0.0184783935546875, 0.01227569580078125, -0.0024700164794921875, -0.0513916015625, 0.007366180419921875, -0.043731689453125, -0.01093292236328125, 0.0091094970703125, 0.00980377197265625, -0.02423095703125, 0.01134490966796875, 0.0235595703125, -0.0018291473388671875, 0.007793426513671875, -0.0123748779296875, 0.0009026527404785156, -0.0285797119140625, -0.01287078857421875, -0.034759521484375, -0.0014276504516601562, -0.0156402587890625, -0.023651123046875, -0.006488800048828125, 0.0213470458984375, -0.0550537109375, -0.028076171875, -0.0289459228515625, -0.0606689453125, 0.00760650634765625, 0.0144805908203125, 0.01157379150390625, 0.01016998291015625, -0.0311279296875, 0.007686614990234375, 0.06890869140625, 0.0111541748046875, 0.005889892578125, -0.018035888671875, 0.0537109375, -0.0167236328125, -0.02081298828125, -0.0201873779296875, 0.0151824951171875, 0.0024280548095703125, -0.01470947265625, -0.0258636474609375, -0.0247802734375, 0.0207977294921875, 0.01206207275390625, 0.01375579833984375, -0.0247802734375, -0.06317138671875, 0.04345703125, -0.05352783203125, 0.049713134765625, 0.0020008087158203125, -0.0079803466796875, -0.016204833984375, 0.053192138671875, -0.032379150390625, -0.0426025390625, -0.053955078125, -0.0285797119140625, 0.0022983551025390625, 0.024261474609375, 0.00511932373046875, 0.018768310546875, -0.01096343994140625, 0.027069091796875, 0.01210784912109375, 0.0310211181640625, 0.01317596435546875, 0.0294036865234375, -0.03228759765625, -0.00018036365509033203, 0.0187835693359375, 0.004547119140625, 0.031402587890625, -0.003429412841796875, -0.0242462158203125, 0.033935546875, -0.000031828880310058594, -0.03839111328125, -0.035980224609375, 0.0316162109375, -0.02691650390625, -0.042999267578125, -0.0230255126953125, 0.0323486328125, 0.0297698974609375, 0.006839752197265625, 0.027679443359375, 0.0753173828125, 0.007442474365234375, -0.01320648193359375, -0.01355743408203125, 0.01194000244140625, 0.0012569427490234375, -0.01074981689453125, 0.004001617431640625, 0.0158538818359375, -0.00725555419921875, 0.0014333724975585938, 0.00470733642578125, 0.0281219482421875, -0.017578125, -0.04351806640625, 0.01168060302734375, -0.022918701171875, 0.037841796875, -0.0264739990234375, 0.01192474365234375, 0.0039825439453125, 0.002323150634765625, -0.00933837890625, -0.03240966796875, 0.00951385498046875, 0.051055908203125, 0.0034923553466796875, 0.023101806640625, -0.005031585693359375, 0.038818359375, 0.00916290283203125, -0.001087188720703125, 0.01189422607421875, 0.0016069412231445312, -0.0112152099609375, 0.0031585693359375, -0.020843505859375, -0.0072174072265625, -0.027008056640625, -0.00850677490234375, -0.006755828857421875, 0.0469970703125, 0.032012939453125, 0.091796875, 0.006252288818359375, -0.0335693359375, 0.0094757080078125, -0.06707763671875, 0.042083740234375, 0.0301971435546875, 0.03887939453125, 0.05126953125, 0.0001863241195678711, -0.00626373291015625, 0.04278564453125, -0.01348876953125, 0.02294921875, -0.0213470458984375, 0.0305328369140625, 0.031890869140625, -0.0217742919921875, -0.0170440673828125, 0.0291748046875, -0.0305633544921875, 0.0194091796875, 0.026947021484375, -0.015899658203125, -0.03106689453125, -0.0041351318359375, 0.009368896484375, 0.0144805908203125, -0.0007777214050292969, -0.02294921875, 0.00617218017578125, 0.035003662109375, -0.01556396484375, 0.0135345458984375, 0.00905609130859375, -0.0084686279296875, -0.0018157958984375, 0.0276641845703125, -0.0279998779296875, -0.01415252685546875, 0.031402587890625, 0.0197296142578125, -0.002544403076171875, -0.047576904296875, -0.005840301513671875, -0.001247406005859375, 0.022979736328125, -0.024078369140625, 0.0266876220703125, -0.0239105224609375, -0.021209716796875, -0.040863037109375, -0.07470703125, 0.006511688232421875, -0.006443023681640625, -0.013427734375, -0.002582550048828125, 0.01446533203125, 0.041473388671875, -0.00795745849609375, 0.029205322265625, 0.00502777099609375, -0.006317138671875, 0.033111572265625, 0.0111846923828125, 0.012237548828125, 0.00943756103515625, -0.0019893646240234375, 0.044586181640625, 0.0217437744140625, -0.0243072509765625, 0.018707275390625, -0.0172576904296875, 0.0107574462890625, -0.00922393798828125, -0.001323699951171875, 0.034088134765625, -0.07781982421875, 0.026458740234375, 0.042572021484375, 0.045928955078125, 0.0170440673828125, -0.023712158203125, -0.007244110107421875, 0.0697021484375, -0.056732177734375, -0.07952880859375, -0.0147857666015625, -0.071044921875, 0.0284423828125, -0.02191162109375, -0.032440185546875, -0.01580810546875, 0.01181793212890625, 0.0174560546875, -0.0117034912109375, -0.0374755859375, -0.028167724609375, -0.04193115234375, -0.053680419921875, 0.04559326171875, 0.02252197265625, 0.014495849609375, 0.015350341796875, 0.0496826171875, 0.0025272369384765625, -0.04443359375, 0.0053863525390625, -0.001369476318359375, -0.01091766357421875, 0.0160064697265625, 0.0229644775390625, -0.034088134765625, 0.006439208984375, -0.00762939453125, -0.0059967041015625, 0.034698486328125, -0.0160675048828125, 0.0006327629089355469, -0.044219970703125, -0.0233001708984375, -0.0265350341796875, 0.006893157958984375, 0.07415771484375, -0.009490966796875, -0.017486572265625, -0.05010986328125, -0.033782958984375, -0.01163482666015625, -0.042205810546875, 0.064453125, 0.0036602020263671875, -0.005046844482421875, -0.0019817352294921875, 0.048675537109375, 0.0289306640625, 0.0000336766242980957, -0.0024433135986328125, -0.02276611328125, 0.051055908203125, 0.00823974609375, 0.0303955078125, -0.01554107666015625, 0.04180908203125, -0.0135498046875, 0.0204620361328125, 0.0195770263671875, -0.0006089210510253906, 0.01395416259765625, -0.014862060546875, 0.0014352798461914062, -0.0159149169921875, 0.0034656524658203125, -0.044464111328125, 0.03436279296875, -0.0350341796875, 0.0019073486328125, -0.016632080078125, 0.0557861328125, -0.06158447265625, -0.00833892822265625, -0.0010204315185546875, -0.004909515380859375, -0.006160736083984375, -0.02545166015625, -0.045501708984375, -0.01099395751953125, -0.12744140625, 0.01073455810546875, -0.00820159912109375, -0.049102783203125, 0.0206756591796875, -0.04364013671875, -0.061798095703125, -0.061248779296875, 0.0245819091796875, 0.0094146728515625, 0.00167083740234375, 0.004291534423828125, -0.0046539306640625, -0.016082763671875, 0.0106658935546875, -0.01325225830078125, -0.0889892578125, -0.00958251953125, -0.0550537109375, 0.06451416015625, 0.0283966064453125, 0.033172607421875, -0.026336669921875, 0.045318603515625, -0.0009860992431640625, 0.031036376953125, 0.019317626953125, 0.01395416259765625, -0.0009112358093261719, -0.0063018798828125, 0.0167999267578125, -0.0229034423828125, -0.000034689903259277344, 0.026458740234375, -0.024871826171875, 0.01557159423828125, -0.0203704833984375, -0.050018310546875, 0.05291748046875, -0.051361083984375, -0.02520751953125, -0.011688232421875, 0.003253936767578125, -0.024200439453125, -0.00199127197265625, -0.01215362548828125, -0.006855010986328125, 0.0088958740234375, 0.037689208984375, -0.004009246826171875, 0.002948760986328125, 0.00762176513671875, 0.07415771484375, 0.0257415771484375, -0.0225372314453125, -0.035064697265625, 0.0259857177734375, 0.0226287841796875, 0.0207977294921875, 0.0157318115234375, -0.006198883056640625, -0.01885986328125, 0.0218963623046875, 0.00152587890625, 0.01617431640625, -0.01369476318359375, 0.046051025390625, -0.006671905517578125, -0.0665283203125, 0.0589599609375, -0.006988525390625, -0.0185699462890625, 0.0061187744140625, 0.0136260986328125, -0.0269775390625, 0.018951416015625, 0.014251708984375, 0.0272369384765625, -0.0242919921875, -0.0176544189453125, -0.07476806640625, 0.01558685302734375, -0.01065826416015625, 0.0312347412109375, 0.037567138671875, -0.023406982421875, 0.056060791015625, 0.0154876708984375, -0.000010728836059570312, 0.01258087158203125, 0.036376953125, -0.0239105224609375, 0.025238037109375, 0.007030487060546875, -0.01763916015625, -0.0037631988525390625, 0.005420684814453125, 0.02056884765625, -0.01617431640625, -0.0267333984375, -0.078369140625, 0.0128936767578125, 0.037353515625, -0.0029811859130859375, -0.0184783935546875, 0.039825439453125, 0.015869140625, -0.0164794921875, -0.007656097412109375, -0.037994384765625, 0.00876617431640625, -0.0462646484375, 0.011932373046875, -0.0188751220703125, -0.0201263427734375, -0.00797271728515625, 0.00878143310546875, -0.000701904296875, -0.00476837158203125, -0.0012035369873046875, -0.01525115966796875, -0.03875732421875, 0.043914794921875, 0.00824737548828125, -0.04052734375, 0.0516357421875, -0.01166534423828125, 0.061859130859375, -0.002239227294921875, -0.0255279541015625, 0.00167083740234375, 0.0184173583984375, -0.0357666015625, 0.005542755126953125, 0.0301666259765625, -0.0010747909545898438, -0.02197265625, 0.005298614501953125, -0.0172271728515625, -0.0274810791015625, -0.0172576904296875, -0.0020275115966796875, 0.034027099609375, 0.00846099853515625, -0.0012350082397460938, -0.0135345458984375, -0.011566162109375, -0.00555419921875, 0.0214996337890625, -0.045257568359375, 0.0083770751953125, 0.0200042724609375, 0.007762908935546875, -0.0007724761962890625, -0.0034198760986328125, -0.08538818359375, -0.04119873046875, -0.006771087646484375, -0.00010967254638671875, 0.026397705078125, -0.036712646484375, 0.045501708984375, -0.01049041748046875, -0.042022705078125, -0.039520263671875, 0.0189971923828125, 0.034698486328125, 0.03741455078125, -0.0015163421630859375, -0.00394439697265625, -0.030029296875, -0.03662109375, -0.04107666015625, -0.04718017578125, -0.03314208984375, -0.004901885986328125, -0.034393310546875, -0.019622802734375, -0.03143310546875, 0.0013914108276367188, -0.0281524658203125, 0.0382080078125, 0.0269012451171875, -0.003597259521484375, -0.04827880859375, 0.045654296875, 0.038299560546875, -0.039031982421875, 0.0079498291015625, 0.031829833984375, 0.0181884765625, 0.007236480712890625, -0.015167236328125, -0.01047515869140625, 0.006603240966796875, -0.0181427001953125, 0.0008616447448730469, 0.0379638671875, 0.104736328125, 0.0098724365234375, 0.02557373046875, 0.01309967041015625, 0.007389068603515625, -0.028717041015625, -0.035797119140625, -0.0019969940185546875, 0.00977325439453125, -0.00745391845703125, -0.004787445068359375, 0.05474853515625, -0.0167999267578125, 0.0269927978515625, 0.00942230224609375, -0.038543701171875, 0.0469970703125, -0.0216522216796875, -0.02288818359375, 0.037841796875, 0.042510986328125, -0.00930023193359375, 0.0278778076171875, 0.0014123916625976562, 0.011199951171875, 0.0174713134765625, -0.0113677978515625, 0.0307464599609375, 0.0128326416015625, 0.06597900390625, 0.0025920867919921875, 0.0289764404296875, 0.058258056640625, -0.00965118408203125, 0.01064300537109375, 0.0162200927734375, 0.0268402099609375, -0.0443115234375, 0.0038356781005859375, -0.013275146484375, 0.004199981689453125, 0.0372314453125, -0.0244598388671875, 0.01153564453125, 0.01253509521484375, 0.043731689453125, 0.039031982421875, -0.013763427734375, 0.03424072265625, 0.01300811767578125, -0.0019388198852539062, -0.0167999267578125, -0.0292205810546875, 0.0088043212890625, -0.052001953125, 0.0304718017578125, 0.046905517578125, -0.00615692138671875, -0.031707763671875, 0.00867462158203125, 0.00003361701965332031, -0.03521728515625, -0.04754638671875, 0.0177154541015625, 0.0082244873046875, -0.0179290771484375, 0.05010986328125, 0.016021728515625, 0.0036792755126953125, 0.04217529296875, -0.0159149169921875, 0.02496337890625, -0.0133209228515625, 0.00237274169921875, 0.007221221923828125, -0.0299072265625, 0.06671142578125, -0.0247802734375, -0.07635498046875, 0.01515960693359375, -0.026458740234375, -0.04766845703125, -0.005573272705078125, 0.0439453125, 0.0963134765625, -0.04498291015625, -0.0238189697265625, -0.003017425537109375, 0.0288848876953125, 0.0254364013671875, -0.0211334228515625, 0.0325927734375, -0.0767822265625, -0.03253173828125, 0.004253387451171875, -0.02264404296875, -0.029327392578125, -0.032318115234375, -0.06365966796875, 0.10284423828125, -0.01367950439453125, 0.020965576171875, 0.027374267578125, 0.041656494140625, -0.051361083984375, -0.0120849609375, 0.01371002197265625, 0.0418701171875, -0.019012451171875, 0.0038890838623046875, -0.02154541015625, -0.00797271728515625, 0.0115203857421875, 0.050537109375, 0.05523681640625, 0.00846099853515625, -0.0214691162109375, 0.00440216064453125, 0.05670166015625, 0.039398193359375, 0.0128021240234375, 0.0182647705078125, -0.010498046875, -0.0279998779296875, -0.0247344970703125, -0.004184722900390625, 0.0404052734375, -0.05902099609375, -0.03076171875, 0.0036792755126953125, 0.00482177734375, 0.0025310516357421875, -0.0015316009521484375, 0.0212860107421875, -0.01983642578125, 0.00907135009765625, 0.01824951171875, 0.004550933837890625, 0.032379150390625, 0.0347900390625, 0.01111602783203125, 0.0134735107421875, -0.0654296875, 0.01436614990234375, 0.0193939208984375, -0.0142822265625, 0.0328369140625, -0.004268646240234375, 0.017181396484375, 0.02813720703125, -0.0362548828125, 0.005130767822265625, 0.0167999267578125, -0.048736572265625, 0.03839111328125, -0.00823211669921875, 0.015472412109375, -0.0179595947265625, 0.024658203125, -0.04351806640625, 0.00946807861328125, -0.033416748046875, -0.035186767578125, 0.0360107421875, 0.01898193359375, -0.0141143798828125, -0.00328826904296875, -0.006866455078125, -0.10479736328125, -0.04266357421875, -0.0207977294921875, 0.0033435821533203125, 0.007129669189453125, -0.00954437255859375, -0.004673004150390625, 0.03887939453125, -0.016693115234375, 0.0106201171875, -0.03985595703125, 0.02252197265625, -0.01032257080078125, 0.0240631103515625, 0.0172119140625, 0.01024627685546875, -0.00348663330078125, -0.0023651123046875, -0.038665771484375, 0.049224853515625, 0.00797271728515625, 0.040740966796875, -0.048065185546875, 0.0023651123046875, -0.00942230224609375, 0.045501708984375, 0.045867919921875, -0.018798828125, 0.048248291015625, 0.007442474365234375, -0.054443359375, 0.002368927001953125, -0.004154205322265625, -0.02423095703125, 0.01557159423828125, -0.0228118896484375, 0.01256561279296875, -0.0005335807800292969, -0.0157470703125, -0.0025119781494140625, -0.00914764404296875, 0.044464111328125, -0.044830322265625, -0.0213775634765625, 0.0015401840209960938, -0.033111572265625, 0.01458740234375, -0.019744873046875, -0.038543701171875, -0.035980224609375, -0.031585693359375, -0.0168914794921875, -0.0297393798828125, 0.053436279296875, -0.0118408203125, 0.00691986083984375, 0.004329681396484375, 0.05322265625, 0.0643310546875, -0.04248046875, 0.0034542083740234375, -0.001117706298828125, 0.04986572265625, 0.024505615234375, -0.00839996337890625, 0.04083251953125, -0.054046630859375, -0.05377197265625, -0.055511474609375, 0.06585693359375, 0.05462646484375, 0.0177459716796875, -0.01277923583984375, 0.0531005859375, 0.0250396728515625, -0.051239013671875, 0.03692626953125, 0.0126953125, 0.004364013671875, -0.03460693359375, -0.0262298583984375, -0.003971099853515625, -0.0390625, -0.0014591217041015625, 0.045654296875, -0.0069427490234375, -0.027618408203125, 0.022796630859375, 0.02532958984375, -0.0032825469970703125, 0.0273284912109375, -0.03302001953125, -0.03643798828125, -0.0185394287109375, 0.0241546630859375, -0.0172882080078125, -0.02178955078125, -0.025604248046875, 0.01209259033203125, 0.0280303955078125, -0.032012939453125, 0.0467529296875, -0.0211944580078125, 0.0767822265625, 0.03509521484375, 0.00128173828125, -0.05413818359375, 0.0183868408203125, -0.00250244140625, 0.0033664703369140625, 0.0163726806640625, 0.06689453125, 0.0085601806640625, -0.034820556640625, 0.0196533203125, 0.015625, 0.0235443115234375, 0.00475311279296875, 0.0013761520385742188, 0.032562255859375, -0.0263519287109375, -0.04150390625, -0.027008056640625, -0.034454345703125, -0.0792236328125, 0.018524169921875, 0.0228729248046875, -0.01540374755859375, -0.0155792236328125, -0.028564453125, 0.048583984375, 0.033203125, 0.0130157470703125, -0.08966064453125, 0.06500244140625, -0.057861328125, 0.049835205078125, 0.0048980712890625, 0.005115509033203125, -0.0026226043701171875, 0.021728515625, -0.04522705078125, -0.0638427734375, -0.040557861328125, 0.04852294921875, -0.06060791015625, 0.00012165307998657227, 0.0261383056640625, -0.0076446533203125, 0.045745849609375, 0.00473785400390625, 0.0220489501953125, 0.06024169921875, -0.04412841796875, 0.004634857177734375, 0.032196044921875, -0.00446319580078125, -0.0277862548828125, -0.0726318359375, 0.0007176399230957031, -0.056427001953125, -0.0091705322265625, 0.031402587890625, -0.0311431884765625, -0.00441741943359375, -0.0293426513671875, -0.04205322265625, 0.04364013671875, 0.02294921875, -0.045074462890625, -0.015625, 0.0214996337890625, 0.02642822265625, -0.0267486572265625, 0.01015472412109375, -0.0491943359375, -0.04498291015625, -0.01511383056640625, -0.00942230224609375, 0.0703125, -0.01338958740234375, 0.0004417896270751953, -0.0445556640625, 0.003452301025390625, -0.0002307891845703125, 0.01035308837890625, -0.046173095703125, 0.003940582275390625, 0.0198211669921875, 0.003566741943359375, 0.00319671630859375, 0.04132080078125, 0.0738525390625, -0.01061248779296875, -0.0004634857177734375, -0.006778717041015625, 0.0016584396362304688, 0.033721923828125, 0.05517578125, 0.0223236083984375, 0.01537322998046875, -0.0275726318359375, -0.0184326171875, -0.0230560302734375, 0.002239227294921875, -0.01373291015625, 0.0162811279296875, -0.046844482421875, -0.01273345947265625, -0.006938934326171875, -0.0272064208984375, -0.035919189453125, -0.00795745849609375, -0.051055908203125, -0.013519287109375, -0.021728515625, 0.0006189346313476562, -0.0311126708984375, 0.017181396484375, 0.017852783203125, -0.01593017578125, 0.032379150390625, -0.01119232177734375, 0.01202392578125, 0.01541900634765625, 0.027740478515625, -0.0295257568359375, 0.027587890625, -0.06298828125, 0.012969970703125, -0.0295257568359375, 0.056243896484375, -0.048370361328125, 0.0192718505859375, -0.00882720947265625, -0.02667236328125, -0.01512908935546875, -0.03948974609375, 0.0033206939697265625, -0.01251983642578125, -0.03125, 0.084228515625, -0.005466461181640625, 0.0194549560546875, -0.0177154541015625, 0.03759765625, -0.009063720703125, -0.007518768310546875, 0.0124664306640625, -0.005352020263671875, 0.01088714599609375, 0.002044677734375, 0.035064697265625, -0.053314208984375, 0.04998779296875, 0.004756927490234375, 0.0175323486328125, 0.0269622802734375 ]
569a451684302422472482a508ffb9bf33e0270c
Wordpress Stackexchange Q: Local version of a Wordpress site - SSL/HTTPS enforced? I am trying to setup a local version of a website that is live, I have downloaded the files and database and believe it is all ready and sorted, but I am having an issue whereby the site is trying to force HTTPS and so all browsers are reporting 'This site can’t provide a secure connection, localhost sent an invalid response.'. What is the way to handle this? Am I supposed to try to install a certificate? I am running MAMP for the apache and mysql servers. A: WordPress keeps WP_HOME and WP_SITEURL in DB, this is set during initial installation and usually is the domain of your website, in your case it is a domain with https. Your visiting site via local domain, but WordPress redirects to https live domain, causing redirect loop which obviously fails. To fix this, change WP_HOME and WP_SITEURL values in DB. Or simply add this to wp-config.php: define('WP_HOME','http://domain.local'); define('WP_SITEURL','http://domain.local'); Also remember that your browser is caching redirects aggressively. You need to clean cache to see results, or use browser incognito mode.
Q: Local version of a Wordpress site - SSL/HTTPS enforced? I am trying to setup a local version of a website that is live, I have downloaded the files and database and believe it is all ready and sorted, but I am having an issue whereby the site is trying to force HTTPS and so all browsers are reporting 'This site can’t provide a secure connection, localhost sent an invalid response.'. What is the way to handle this? Am I supposed to try to install a certificate? I am running MAMP for the apache and mysql servers. A: WordPress keeps WP_HOME and WP_SITEURL in DB, this is set during initial installation and usually is the domain of your website, in your case it is a domain with https. Your visiting site via local domain, but WordPress redirects to https live domain, causing redirect loop which obviously fails. To fix this, change WP_HOME and WP_SITEURL values in DB. Or simply add this to wp-config.php: define('WP_HOME','http://domain.local'); define('WP_SITEURL','http://domain.local'); Also remember that your browser is caching redirects aggressively. You need to clean cache to see results, or use browser incognito mode. A: you can also check if there are any plugins you have installed to support SSL. If so remove the plugin manually from the plugins folder.
wordpress
{ "language": "en", "length": 213, "provenance": "stackexchange_00019.jsonl.gz:483956", "question_score": "4", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/294105" }
[ 0.030853271484375, 0.01519012451171875, -0.0202789306640625, -0.0087127685546875, 0.02099609375, -0.035919189453125, 0.04681396484375, -0.034942626953125, 0.0276947021484375, -0.0166168212890625, 0.0115814208984375, -0.0147705078125, -0.0362548828125, -0.0556640625, -0.00006902217864990234, -0.015716552734375, 0.0284423828125, -0.0111083984375, -0.001132965087890625, -0.0239715576171875, -0.023040771484375, -0.0005698204040527344, 0.0219573974609375, 0.030303955078125, 0.00829315185546875, 0.0009965896606445312, 0.12054443359375, -0.01070404052734375, 0.006404876708984375, -0.0265655517578125, 0.020172119140625, -0.0299835205078125, 0.005550384521484375, 0.06146240234375, -0.0826416015625, -0.055267333984375, 0.0220184326171875, 0.00989532470703125, -0.048187255859375, 0.07501220703125, -0.0218963623046875, 0.015838623046875, 0.07012939453125, 0.045074462890625, -0.005794525146484375, -0.03814697265625, 0.01171875, -0.035980224609375, -0.0019063949584960938, -0.004486083984375, 0.021453857421875, 0.00780487060546875, 0.031463623046875, -0.0103912353515625, -0.0252685546875, -0.009857177734375, 0.005252838134765625, -0.00409698486328125, 0.0163116455078125, -0.01280975341796875, -0.01947021484375, 0.007602691650390625, 0.02142333984375, 0.00008291006088256836, -0.033172607421875, -0.01438140869140625, 0.034271240234375, 0.005279541015625, -0.0406494140625, -0.0190887451171875, 0.036651611328125, 0.00328826904296875, -0.01041412353515625, -0.031341552734375, -0.017303466796875, 0.017578125, 0.00691986083984375, -0.0110626220703125, 0.00392913818359375, -0.00968170166015625, 0.00738525390625, -0.0185394287109375, -0.05718994140625, -0.0264739990234375, 0.03875732421875, 0.0301666259765625, 0.0019397735595703125, -0.0241241455078125, -0.01216888427734375, -0.0038738250732421875, -0.0225372314453125, -0.023406982421875, 0.0152587890625, 0.00978851318359375, -0.019805908203125, -0.01197052001953125, 0.00551605224609375, 0.042572021484375, -0.0172882080078125, -0.00464630126953125, 0.0020809173583984375, -0.033416748046875, 0.0009946823120117188, -0.0306854248046875, -0.01447296142578125, 0.0234832763671875, 0.0065765380859375, 0.07135009765625, 0.0400390625, 0.0361328125, 0.009918212890625, -0.01306915283203125, -0.038177490234375, -0.042755126953125, -0.01560211181640625, 0.062164306640625, -0.0133819580078125, -0.02032470703125, -0.0099029541015625, 0.0033855438232421875, 0.0013818740844726562, 0.0301055908203125, -0.0247039794921875, 0.0216522216796875, 0.0074615478515625, 0.01546478271484375, -0.01023101806640625, -0.018524169921875, 0.00865936279296875, 0.042510986328125, -0.051361083984375, -0.00975799560546875, 0.0924072265625, 0.03680419921875, 0.0237274169921875, -0.03692626953125, 0.0596923828125, 0.006877899169921875, -0.0229949951171875, 0.051300048828125, -0.02374267578125, -0.02435302734375, -0.0141143798828125, -0.0294952392578125, 0.052764892578125, -0.0037746429443359375, 0.00909423828125, 0.0191802978515625, 0.0275726318359375, -0.0020084381103515625, 0.033935546875, -0.0143890380859375, 0.0499267578125, 0.005340576171875, -0.0076751708984375, -0.033294677734375, 0.041351318359375, -0.04766845703125, -0.0213623046875, -0.0670166015625, 0.0009908676147460938, -0.0014019012451171875, 0.0016107559204101562, -0.031463623046875, -0.0225982666015625, -0.01102447509765625, 0.0005221366882324219, 0.00829315185546875, 0.034912109375, 0.037628173828125, 0.030181884765625, -0.025634765625, -0.0003509521484375, 0.0125885009765625, -0.006320953369140625, 0.02166748046875, -0.021087646484375, 0.02716064453125, 0.034912109375, 0.0163421630859375, 0.02294921875, -0.0146026611328125, 0.08807373046875, 0.00406646728515625, -0.01459503173828125, 0.02459716796875, 0.00008875131607055664, 0.043365478515625, 0.0196380615234375, 0.02178955078125, -0.0303802490234375, 0.0018167495727539062, -0.0254364013671875, 0.037139892578125, -0.04840087890625, -0.045013427734375, -0.004665374755859375, 0.005535125732421875, -0.0292205810546875, 0.01093292236328125, 0.0021915435791015625, -0.004955291748046875, -0.01080322265625, 0.00489044189453125, 0.0147552490234375, -0.031402587890625, 0.00943756103515625, -0.00437164306640625, 0.033233642578125, 0.00426483154296875, -0.007659912109375, -0.0159912109375, 0.00982666015625, -0.056243896484375, -0.043121337890625, 0.00894927978515625, -0.04644775390625, 0.015777587890625, -0.0149993896484375, 0.040557861328125, -0.0270538330078125, -0.036346435546875, -0.034820556640625, -0.0654296875, 0.0035381317138671875, 0.013916015625, -0.0201873779296875, 0.01666259765625, 0.0255584716796875, 0.02301025390625, 0.007080078125, -0.006504058837890625, 0.0295562744140625, 0.017333984375, -0.037139892578125, 0.00388336181640625, -0.025604248046875, -0.05352783203125, -0.02362060546875, 0.057830810546875, 0.04583740234375, -0.018829345703125, 0.0016279220581054688, -0.003803253173828125, 0.026031494140625, -0.07135009765625, 0.00519561767578125, -0.01421356201171875, 0.02020263671875, 0.01038360595703125, 0.00955963134765625, -0.0167236328125, 0.0142822265625, -0.07769775390625, 0.0205535888671875, 0.039581298828125, -0.00013625621795654297, 0.017791748046875, -0.0171356201171875, -0.00029850006103515625, 0.004161834716796875, -0.023895263671875, -0.039459228515625, -0.01027679443359375, 0.002681732177734375, -0.01971435546875, -0.00860595703125, -0.0179595947265625, -0.0024662017822265625, -0.01180267333984375, 0.015655517578125, -0.057708740234375, 0.00200653076171875, 0.037841796875, 0.0247802734375, 0.035064697265625, -0.040008544921875, 0.002605438232421875, 0.00545501708984375, 0.032470703125, -0.0087127685546875, 0.004665374755859375, -0.0032711029052734375, 0.007843017578125, -0.006572723388671875, -0.016845703125, 0.033538818359375, 0.044921875, 0.0077056884765625, 0.01910400390625, 0.033966064453125, -0.007579803466796875, -0.027252197265625, 0.0206756591796875, 0.002193450927734375, -0.018310546875, 0.06866455078125, -0.0228424072265625, 0.01119232177734375, 0.01210784912109375, 0.09405517578125, 0.056884765625, -0.0258331298828125, 0.043426513671875, -0.004619598388671875, -0.00675201416015625, 0.00965118408203125, -0.03887939453125, -0.039764404296875, -0.00798797607421875, -0.07025146484375, -0.017120361328125, 0.023956298828125, -0.057342529296875, 0.060028076171875, -0.00848388671875, 0.004024505615234375, 0.0008425712585449219, -0.07452392578125, -0.058746337890625, -0.06512451171875, -0.0007410049438476562, 0.02569580078125, 0.05242919921875, 0.0193939208984375, -0.01416778564453125, 0.055908203125, 0.0316162109375, -0.0148162841796875, -0.029296875, -0.05438232421875, -0.0677490234375, -0.0975341796875, 0.01485443115234375, 0.006290435791015625, 0.034027099609375, -0.004962921142578125, 0.04351806640625, 0.002544403076171875, -0.030426025390625, 0.0083770751953125, 0.0283355712890625, -0.0026836395263671875, 0.00786590576171875, -0.08416748046875, 0.0186309814453125, 0.03082275390625, 0.0009121894836425781, 0.041595458984375, -0.0267791748046875, 0.0333251953125, -0.0311431884765625, 0.01343536376953125, 0.002475738525390625, 0.007602691650390625, -0.035736083984375, -0.0219573974609375, -0.0173187255859375, -0.035980224609375, -0.050567626953125, -0.003475189208984375, 0.019317626953125, -0.01007843017578125, -0.01145172119140625, 0.007122039794921875, -0.0367431640625, -0.0009484291076660156, -0.01194000244140625, 0.00722503662109375, -0.0185699462890625, 0.0595703125, -0.029144287109375, 0.034210205078125, -0.00423431396484375, -0.017486572265625, -0.06591796875, 0.05828857421875, -0.007541656494140625, -0.034271240234375, 0.0007143020629882812, -0.037628173828125, -0.0455322265625, 0.00045800209045410156, -0.07037353515625, -0.054840087890625, 0.03533935546875, -0.0174102783203125, 0.034210205078125, -0.05426025390625, -0.0238037109375, -0.0460205078125, 0.0711669921875, -0.01398468017578125, -0.01331329345703125, 0.019927978515625, 0.0302276611328125, -0.02532958984375, -0.00836181640625, -0.01107025146484375, -0.014129638671875, -0.07391357421875, -0.00795745849609375, -0.031768798828125, -0.01788330078125, 0.03277587890625, -0.061859130859375, 0.0086822509765625, -0.0703125, 0.0290069580078125, -0.00968170166015625, 0.010009765625, -0.01611328125, -0.01025390625, -0.034912109375, -0.006378173828125, -0.0240020751953125, -0.0751953125, -0.0128936767578125, -0.041778564453125, 0.06634521484375, 0.01528167724609375, 0.01035308837890625, -0.0182647705078125, 0.041595458984375, 0.0153045654296875, 0.0177154541015625, 0.019744873046875, -0.02490234375, 0.034332275390625, 0.062042236328125, 0.035369873046875, 0.01471710205078125, -0.007568359375, -0.0200958251953125, -0.061798095703125, -0.0203857421875, -0.0013475418090820312, 0.01363372802734375, 0.030853271484375, -0.039398193359375, -0.034515380859375, -0.006816864013671875, -0.0215301513671875, 0.022796630859375, -0.00946044921875, -0.00939178466796875, -0.00891876220703125, -0.045867919921875, 0.063232421875, -0.01534271240234375, -0.000988006591796875, 0.0004394054412841797, 0.0703125, -0.0026836395263671875, -0.01708984375, -0.020355224609375, 0.004039764404296875, 0.041656494140625, 0.00489044189453125, 0.0304718017578125, 0.032073974609375, -0.00635528564453125, 0.0230560302734375, 0.0163421630859375, 0.0220489501953125, 0.01335906982421875, -0.003650665283203125, 0.0081024169921875, -0.018157958984375, 0.0137481689453125, 0.031951904296875, -0.039276123046875, 0.01245880126953125, 0.0252532958984375, 0.005641937255859375, 0.03594970703125, -0.03759765625, 0.0177154541015625, -0.046478271484375, 0.03521728515625, -0.04339599609375, 0.02264404296875, -0.045867919921875, 0.043670654296875, 0.0305938720703125, -0.00409698486328125, 0.03857421875, 0.01776123046875, 0.00788116455078125, -0.06622314453125, -0.0144195556640625, -0.0333251953125, 0.035430908203125, -0.04949951171875, 0.01006317138671875, -0.031280517578125, -0.0249176025390625, 0.0980224609375, 0.0070648193359375, -0.059417724609375, 0.03863525390625, -0.00588226318359375, -0.017425537109375, 0.041656494140625, 0.01143646240234375, 0.0083770751953125, -0.039642333984375, 0.0231781005859375, -0.00196075439453125, -0.01491546630859375, -0.034515380859375, -0.019195556640625, 0.021453857421875, 0.0012044906616210938, 0.0036182403564453125, 0.032958984375, 0.04217529296875, 0.0212249755859375, 0.0292816162109375, -0.019744873046875, 0.0303955078125, 0.02789306640625, -0.001316070556640625, -0.0009698867797851562, 0.025177001953125, 0.02166748046875, -0.036865234375, 0.027374267578125, -0.0306549072265625, -0.04644775390625, 0.0142974853515625, 0.044708251953125, 0.00629425048828125, 0.01369476318359375, 0.0217437744140625, 0.018798828125, -0.01267242431640625, 0.033111572265625, -0.0096435546875, -0.040924072265625, -0.0254669189453125, -0.01403045654296875, 0.0295257568359375, -0.0124359130859375, -0.032012939453125, 0.03753662109375, -0.0161590576171875, 0.03033447265625, 0.04437255859375, -0.032318115234375, 0.0177459716796875, 0.006313323974609375, 0.0018463134765625, -0.050537109375, -0.02557373046875, 0.006805419921875, 0.0592041015625, -0.043243408203125, -0.010467529296875, 0.021514892578125, -0.0234222412109375, -0.004566192626953125, 0.01496124267578125, -0.013427734375, 0.0012559890747070312, 0.01303863525390625, 0.03228759765625, 0.0201568603515625, -0.0200042724609375, -0.034515380859375, -0.01666259765625, -0.02215576171875, 0.0377197265625, 0.0240478515625, -0.0246429443359375, 0.012603759765625, 0.053009033203125, 0.028961181640625, -0.025634765625, -0.09979248046875, -0.03326416015625, -0.002777099609375, 0.06683349609375, 0.0249786376953125, -0.00962066650390625, 0.062469482421875, 0.00806427001953125, 0.050445556640625, 0.01396942138671875, 0.014129638671875, -0.052337646484375, -0.01328277587890625, 0.033843994140625, -0.0419921875, -0.052520751953125, -0.031982421875, -0.034210205078125, 0.0092926025390625, 0.055419921875, -0.0182952880859375, -0.00211334228515625, -0.01284027099609375, 0.009185791015625, -0.006336212158203125, -0.0078277587890625, 0.0193634033203125, 0.00667572021484375, 0.006748199462890625, -0.0147247314453125, 0.0102996826171875, -0.01271820068359375, -0.005237579345703125, 0.01824951171875, -0.004894256591796875, 0.01397705078125, -0.005199432373046875, 0.0019626617431640625, 0.0026149749755859375, 0.06292724609375, 0.0338134765625, 0.0731201171875, 0.02545166015625, 0.02978515625, 0.04412841796875, -0.0031452178955078125, -0.041656494140625, -0.058685302734375, -0.0181732177734375, -0.00533294677734375, -0.01519012451171875, -0.007190704345703125, -0.0127716064453125, -0.01357269287109375, 0.08746337890625, 0.06500244140625, -0.08734130859375, -0.0125274658203125, 0.0230255126953125, -0.036407470703125, -0.05291748046875, -0.0160064697265625, 0.006595611572265625, -0.029998779296875, 0.0023441314697265625, 0.022735595703125, -0.0224761962890625, -0.0095977783203125, 0.0202789306640625, -0.02410888671875, -0.0149993896484375, 0.039154052734375, 0.00473785400390625, -0.043365478515625, 0.01123809814453125, 0.01377105712890625, -0.01235198974609375, 0.035308837890625, 0.0245819091796875, -0.006214141845703125, -0.039276123046875, -0.04254150390625, -0.04461669921875, -0.01206207275390625, -0.0640869140625, 0.0208587646484375, 0.0258941650390625, 0.00824737548828125, 0.05194091796875, 0.0020732879638671875, -0.0013475418090820312, 0.0254669189453125, -0.05792236328125, 0.01593017578125, -0.035308837890625, -0.0301361083984375, 0.006023406982421875, -0.029052734375, -0.005779266357421875, -0.0092926025390625, -0.0096588134765625, -0.006099700927734375, -0.0180511474609375, 0.02880859375, -0.0079803466796875, -0.0052337646484375, 0.044189453125, 0.02325439453125, -0.0296478271484375, -0.0170440673828125, 0.03826904296875, -0.032684326171875, 0.0105133056640625, 0.00231170654296875, -0.0035266876220703125, -0.035003662109375, -0.033233642578125, -0.0299835205078125, 0.02691650390625, -0.01210784912109375, 0.01013946533203125, 0.0250244140625, 0.00714111328125, -0.0282135009765625, 0.0009918212890625, -0.00765228271484375, 0.0362548828125, 0.0012025833129882812, -0.0258026123046875, -0.0248260498046875, -0.0017986297607421875, -0.0224761962890625, 0.037445068359375, 0.053436279296875, 0.02337646484375, -0.07806396484375, -0.0185089111328125, 0.01953125, 0.037994384765625, 0.003997802734375, 0.06329345703125, -0.0252685546875, 0.0313720703125, 0.0251617431640625, -0.04534912109375, 0.0275421142578125, -0.0231170654296875, -0.02886962890625, -0.008026123046875, 0.044097900390625, 0.01788330078125, 0.0074462890625, 0.028961181640625, -0.055908203125, 0.0254364013671875, 0.052276611328125, 0.047882080078125, 0.019012451171875, -0.01053619384765625, -0.024810791015625, -0.03607177734375, 0.006229400634765625, -0.02783203125, 0.0238800048828125, -0.0217437744140625, -0.0182342529296875, -0.0168914794921875, 0.0106048583984375, -0.01227569580078125, 0.0213623046875, -0.018768310546875, 0.040557861328125, -0.006526947021484375, 0.0210113525390625, 0.0253143310546875, 0.0288848876953125, 0.0164337158203125, 0.0273895263671875, 0.0240631103515625, 0.045684814453125, -0.036285400390625, -0.039093017578125, -0.0065155029296875, -0.00598907470703125, 0.04449462890625, -0.0015306472778320312, 0.049560546875, 0.03619384765625, 0.032806396484375, 0.0010442733764648438, 0.0172271728515625, 0.0245819091796875, -0.0196533203125, 0.0201873779296875, 0.072998046875, -0.0364990234375, 0.0548095703125, -0.011474609375, -0.044036865234375, 0.011505126953125, 0.031341552734375, 0.024444580078125, 0.0115966796875, -0.0079498291015625, -0.00576019287109375, -0.003047943115234375, 0.0263519287109375, 0.0289459228515625, -0.02313232421875, -0.04632568359375, -0.03900146484375, 0.041351318359375, 0.04833984375, 0.033294677734375, -0.0289306640625, 0.058685302734375, 0.0751953125, -0.006504058837890625, -0.031280517578125, 0.01406097412109375, 0.007755279541015625, -0.02239990234375, -0.0550537109375, -0.01348876953125, -0.01010894775390625, -0.00742340087890625, 0.031280517578125, -0.02398681640625, 0.007526397705078125, 0.00437164306640625, 0.0482177734375, -0.003467559814453125, 0.0011453628540039062, 0.0107269287109375, -0.0127410888671875, 0.0489501953125, 0.028564453125, -0.0281982421875, -0.0007805824279785156, 0.01461029052734375, -0.032379150390625, 0.006755828857421875, 0.040435791015625, 0.00982666015625, -0.003936767578125, 0.00884246826171875, -0.04473876953125, 0.0361328125, 0.055450439453125, -0.0132904052734375, 0.022369384765625, 0.0134429931640625, -0.024932861328125, -0.036346435546875, 0.0006527900695800781, 0.011932373046875, 0.0185546875, -0.042999267578125, 0.150146484375, -0.052764892578125, -0.01357269287109375, 0.01398468017578125, -0.0034942626953125, 0.016143798828125, 0.031463623046875, -0.033355712890625, 0.034332275390625, 0.03192138671875, -0.029327392578125, -0.05218505859375, 0.01114654541015625, 0.0010919570922851562, -0.018218994140625, -0.002529144287109375, -0.0293426513671875, 0.0172271728515625, 0.0002841949462890625, 0.025909423828125, -0.037445068359375, -0.0645751953125, -0.034881591796875, 0.0272369384765625, -0.0159149169921875, 0.04034423828125, 0.037811279296875, 0.03228759765625, -0.053863525390625, -0.013031005859375, 0.0096893310546875, -0.0631103515625, -0.031646728515625, 0.00078582763671875, -0.0146636962890625, -0.0193634033203125, 0.01947021484375, -0.008148193359375, 0.01111602783203125, -0.00482177734375, 0.035614013671875, -0.01430511474609375, 0.014404296875, -0.0230255126953125, 0.01922607421875, -0.0018682479858398438, -0.008026123046875, -0.004520416259765625, 0.03753662109375, -0.033538818359375, -0.0262908935546875, -0.00852203369140625, -0.00513458251953125, 0.002079010009765625, -0.02984619140625, 0.0016508102416992188, 0.005268096923828125, -0.06298828125, -0.0272064208984375, -0.006580352783203125, 0.00919342041015625, -0.0257415771484375, 0.01088714599609375, -0.040679931640625, -0.029876708984375, 0.0789794921875, -0.034393310546875, 0.021759033203125, 0.00791168212890625, 0.03680419921875, -0.058746337890625, -0.021484375, -0.004486083984375, 0.00379180908203125, -0.026763916015625, -0.00539398193359375, 0.031494140625, 0.01551055908203125, -0.05517578125, -0.012176513671875, -0.0242462158203125, 0.0240478515625, -0.0675048828125, -0.004673004150390625, 0.0310211181640625, -0.0238800048828125, -0.04205322265625, -0.060028076171875, 0.0245208740234375, -0.0927734375, -0.003482818603515625, 0.004566192626953125, 0.03912353515625, 0.048675537109375, -0.0269775390625, -0.042083740234375, 0.0133819580078125, 0.0032596588134765625, -0.0215301513671875, -0.050506591796875, 0.01038360595703125, -0.009368896484375, 0.0293731689453125, 0.0028743743896484375, -0.0338134765625, -0.019134521484375, 0.041015625, 0.01062774658203125, 0.0228729248046875, -0.0075225830078125, 0.01239776611328125, 0.0023326873779296875, 0.05377197265625, 0.0521240234375, -0.021484375, -0.0110321044921875, 0.018768310546875, 0.003993988037109375, 0.05072021484375, -0.0305023193359375, 0.00971221923828125, -0.00914764404296875, -0.02166748046875, -0.005229949951171875, -0.01480865478515625, 0.0154266357421875, -0.031585693359375, -0.001834869384765625, 0.00530242919921875, -0.0158233642578125, 0.008270263671875, -0.055999755859375, -0.01629638671875, -0.0279083251953125, -0.017425537109375, 0.0257720947265625, -0.054229736328125, 0.018402099609375, -0.035003662109375, 0.003925323486328125, 0.0098114013671875, 0.005931854248046875, -0.00785064697265625, -0.00392913818359375, 0.01486968994140625, -0.02996826171875, -0.004901885986328125, -0.02783203125, 0.0780029296875, -0.04644775390625, -0.007526397705078125, 0.01546478271484375, 0.02667236328125, 0.017364501953125, 0.006069183349609375, 0.035369873046875, 0.0268402099609375, -0.01265716552734375, -0.017242431640625, 0.03253173828125, -0.0205535888671875, -0.0167999267578125, -0.037384033203125, -0.0194854736328125, 0.0008139610290527344, 0.01465606689453125, 0.00745391845703125, 0.00131988525390625, -0.01406097412109375, 0.00734710693359375, 0.01910400390625, -0.0037670135498046875, -0.038726806640625, -0.0158843994140625, 0.04046630859375, -0.01395416259765625, -0.01532745361328125, 0.0155181884765625, -0.0318603515625, 0.012725830078125, 0.01406097412109375, -0.006267547607421875, 0.01047515869140625, -0.018310546875, -0.05419921875, 0.00279998779296875, -0.0030002593994140625 ]
7ce49d50ae55a8c7442412853df486df164f8209
Wordpress Stackexchange Q: Why is it important to deactivate a plugin before deleting it? I stumbled across this page, where it says that wp plugin delete does this: Deletes plugin files without deactivating or uninstalling. Why is it important to deactivate a plugin before it is deleted? Is it a formality or can something terrible happen? A: Generally, plugins have some functionality hooked onto the deactivation action. This could be clearing cache, resetting options, you name it. Therefore the best practice is to deactivate them first, so they have the opportunity to clean up and execute whatever functionality they have hooked onto the deactivate event. Now if the plugin is broken and can't be executed, or if the deactivation function does something you don't want or is broken in itself, you might need to delete it without running that functionality. In my experience, nothing bad really happens, except some junk files being left. This can be different depending on the plugin however, so always excercise caution with this type of forced deletion.
Q: Why is it important to deactivate a plugin before deleting it? I stumbled across this page, where it says that wp plugin delete does this: Deletes plugin files without deactivating or uninstalling. Why is it important to deactivate a plugin before it is deleted? Is it a formality or can something terrible happen? A: Generally, plugins have some functionality hooked onto the deactivation action. This could be clearing cache, resetting options, you name it. Therefore the best practice is to deactivate them first, so they have the opportunity to clean up and execute whatever functionality they have hooked onto the deactivate event. Now if the plugin is broken and can't be executed, or if the deactivation function does something you don't want or is broken in itself, you might need to delete it without running that functionality. In my experience, nothing bad really happens, except some junk files being left. This can be different depending on the plugin however, so always excercise caution with this type of forced deletion.
wordpress
{ "language": "en", "length": 170, "provenance": "stackexchange_00019.jsonl.gz:483968", "question_score": "11", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/294157" }
[ 0.0537109375, 0.044921875, -0.006221771240234375, -0.02081298828125, 0.041351318359375, -0.0251312255859375, 0.0277252197265625, -0.047607421875, 0.005344390869140625, 0.0264739990234375, -0.0172576904296875, 0.003925323486328125, 0.002628326416015625, -0.0233306884765625, 0.01026153564453125, -0.01267242431640625, 0.0054168701171875, 0.0294342041015625, 0.030303955078125, -0.01415252685546875, 0.004917144775390625, -0.004405975341796875, 0.02685546875, 0.00299072265625, 0.0022563934326171875, -0.01084136962890625, 0.0792236328125, -0.01239776611328125, -0.02557373046875, -0.03857421875, 0.0092315673828125, 0.0230712890625, -0.0153656005859375, 0.043487548828125, 0.0022735595703125, -0.018798828125, -0.0196533203125, 0.02978515625, 0.046234130859375, -0.0227813720703125, 0.01157379150390625, 0.01300048828125, 0.0244140625, -0.007061004638671875, -0.00873565673828125, -0.0377197265625, 0.0191802978515625, -0.00904083251953125, 0.00933074951171875, -0.0248565673828125, -0.002979278564453125, 0.0051116943359375, 0.04638671875, -0.058502197265625, -0.0374755859375, -0.042694091796875, -0.028228759765625, 0.05908203125, 0.0198516845703125, 0.045013427734375, -0.00917816162109375, 0.040679931640625, -0.023406982421875, -0.05743408203125, 0.031097412109375, -0.020538330078125, -0.06341552734375, 0.021026611328125, -0.0736083984375, 0.032806396484375, 0.0792236328125, -0.087158203125, 0.0101776123046875, 0.0219879150390625, 0.03448486328125, -0.0282135009765625, 0.031982421875, 0.058807373046875, 0.006381988525390625, 0.04266357421875, 0.008148193359375, -0.00849151611328125, -0.01219940185546875, -0.0309600830078125, 0.0201873779296875, 0.005260467529296875, -0.008270263671875, -0.0128936767578125, -0.043609619140625, -0.0100555419921875, -0.0379638671875, 0.022125244140625, -0.02197265625, -0.041839599609375, -0.036956787109375, -0.01038360595703125, 0.00390625, 0.0177154541015625, -0.0176849365234375, -0.034759521484375, 0.0302581787109375, -0.0289306640625, -0.01093292236328125, 0.0010175704956054688, -0.00324249267578125, 0.0272979736328125, -0.008575439453125, -0.01169586181640625, 0.01410675048828125, 0.0273895263671875, -0.004840850830078125, -0.01378631591796875, 0.00229644775390625, -0.06915283203125, 0.00958251953125, 0.0083770751953125, -0.028472900390625, 0.0396728515625, 0.050262451171875, 0.0024890899658203125, -0.018829345703125, -0.0028667449951171875, -0.0172882080078125, -0.03704833984375, 0.0179595947265625, -0.0404052734375, -0.028778076171875, 0.039886474609375, -0.031768798828125, 0.01305389404296875, -0.037109375, 0.0291748046875, 0.076416015625, 0.00047087669372558594, -0.0163421630859375, -0.0224151611328125, 0.0037136077880859375, 0.038970947265625, 0.0251007080078125, -0.0302886962890625, 0.0305938720703125, 0.00025963783264160156, 0.0281982421875, 0.02410888671875, -0.0016317367553710938, 0.036041259765625, 0.015228271484375, -0.0081024169921875, 0.00832366943359375, -0.035308837890625, 0.002227783203125, -0.022705078125, 0.015777587890625, 0.0138397216796875, 0.02301025390625, -0.0191497802734375, 0.05096435546875, -0.03289794921875, -0.01110076904296875, -0.03564453125, 0.00276947021484375, -0.00911712646484375, 0.01490020751953125, -0.038360595703125, -0.048126220703125, 0.0142974853515625, -0.041168212890625, -0.005947113037109375, 0.01311492919921875, -0.0204010009765625, 0.038818359375, -0.055450439453125, -0.044158935546875, 0.0209503173828125, 0.0200347900390625, 0.061004638671875, 0.03656005859375, -0.00968170166015625, 0.03387451171875, 0.0182342529296875, -0.0200042724609375, -0.01016998291015625, 0.079833984375, -0.046600341796875, -0.041290283203125, 0.0076751708984375, 0.015106201171875, 0.0704345703125, -0.0009899139404296875, 0.0294952392578125, 0.0236663818359375, -0.00867462158203125, -0.0219573974609375, 0.0250701904296875, -0.007965087890625, -0.019317626953125, 0.01421356201171875, 0.0175628662109375, -0.006519317626953125, -0.032135009765625, 0.04327392578125, 0.020263671875, -0.03302001953125, -0.0416259765625, -0.12103271484375, -0.0208282470703125, -0.03021240234375, 0.037200927734375, 0.0200042724609375, 0.0212554931640625, 0.005596160888671875, 0.01380157470703125, -0.0232391357421875, -0.013214111328125, -0.033294677734375, -0.00775909423828125, -0.0082855224609375, 0.0309906005859375, -0.0124664306640625, 0.0276947021484375, -0.00730133056640625, -0.0240020751953125, -0.0187835693359375, 0.01212310791015625, -0.0061798095703125, 0.01369476318359375, -0.0159454345703125, -0.00228118896484375, -0.0123138427734375, 0.019195556640625, -0.00799560546875, 0.03240966796875, 0.0242767333984375, 0.026397705078125, -0.015350341796875, -0.0182647705078125, -0.0175018310546875, -0.1021728515625, 0.01319122314453125, 0.06610107421875, 0.0011806488037109375, 0.060333251953125, -0.03192138671875, 0.013763427734375, 0.015777587890625, -0.06109619140625, -0.0176544189453125, 0.02685546875, 0.0142059326171875, 0.03167724609375, -0.01560211181640625, -0.0153961181640625, 0.03173828125, -0.02410888671875, -0.01068115234375, 0.040618896484375, -0.0023365020751953125, -0.04168701171875, 0.0007987022399902344, 0.006610870361328125, 0.020599365234375, -0.0164794921875, -0.044036865234375, 0.01445770263671875, 0.0196990966796875, -0.0159912109375, 0.007381439208984375, 0.004730224609375, 0.0191497802734375, -0.003299713134765625, 0.00907135009765625, -0.07745361328125, 0.006107330322265625, 0.04925537109375, 0.047332763671875, 0.0107421875, -0.0214385986328125, -0.047943115234375, 0.0165557861328125, 0.032501220703125, -0.040252685546875, -0.0484619140625, -0.0181884765625, -0.0207366943359375, 0.032562255859375, -0.01666259765625, 0.02166748046875, -0.035614013671875, -0.0156707763671875, -0.007411956787109375, 0.0303497314453125, -0.0194854736328125, -0.040679931640625, 0.00624847412109375, 0.0017795562744140625, -0.030364990234375, 0.0202484130859375, -0.01238250732421875, 0.018402099609375, -0.00850677490234375, 0.0297088623046875, 0.055908203125, 0.007293701171875, 0.0008158683776855469, 0.0207366943359375, 0.0178070068359375, 0.08526611328125, -0.033935546875, -0.02001953125, 0.0458984375, -0.08123779296875, -0.0258026123046875, 0.0162200927734375, 0.08154296875, -0.05047607421875, -0.06414794921875, -0.0389404296875, 0.021697998046875, -0.0687255859375, -0.032318115234375, -0.042236328125, -0.0156402587890625, 0.06011962890625, -0.00949859619140625, 0.019866943359375, -0.0347900390625, 0.0006051063537597656, 0.0240478515625, -0.0256500244140625, -0.0006470680236816406, 0.0225372314453125, -0.02679443359375, -0.004909515380859375, -0.00604248046875, -0.0027713775634765625, -0.01003265380859375, 0.0012521743774414062, 0.07098388671875, -0.00327301025390625, -0.07049560546875, -0.0178680419921875, -0.05975341796875, -0.0280914306640625, 0.020294189453125, 0.0222930908203125, 0.0160980224609375, -0.044219970703125, 0.01678466796875, -0.0121002197265625, 0.0223388671875, -0.04998779296875, -0.01678466796875, 0.029266357421875, -0.0050811767578125, 0.03692626953125, -0.024871826171875, -0.055938720703125, -0.0023651123046875, -0.031463623046875, -0.0767822265625, 0.01268768310546875, -0.035614013671875, -0.0182342529296875, 0.0308990478515625, 0.005306243896484375, 0.0027008056640625, -0.016265869140625, 0.01004791259765625, -0.00949859619140625, -0.005290985107421875, -0.0247955322265625, -0.011077880859375, 0.040496826171875, -0.009613037109375, -0.006381988525390625, 0.005970001220703125, 0.06475830078125, -0.0126495361328125, -0.046295166015625, 0.0027141571044921875, -0.020721435546875, -0.0022182464599609375, -0.0165863037109375, 0.005397796630859375, 0.01522064208984375, 0.0166015625, -0.01076507568359375, -0.007228851318359375, -0.004238128662109375, -0.006687164306640625, -0.003704071044921875, 0.0270538330078125, -0.01885986328125, -0.0338134765625, -0.0158538818359375, -0.005825042724609375, 0.0204010009765625, 0.019500732421875, -0.0005526542663574219, -0.023529052734375, -0.09375, 0.0216522216796875, -0.0018453598022460938, -0.0211639404296875, -0.039276123046875, 0.05865478515625, -0.07086181640625, -0.0305938720703125, 0.03021240234375, -0.0775146484375, 0.0178375244140625, -0.019622802734375, -0.01088714599609375, -0.038970947265625, -0.003231048583984375, -0.066650390625, 0.023895263671875, 0.010650634765625, -0.033538818359375, -0.0081634521484375, 0.0206298828125, 0.01739501953125, -0.0245819091796875, 0.0012722015380859375, -0.00731658935546875, 0.03369140625, -0.00901031494140625, 0.00897216796875, -0.0352783203125, 0.012725830078125, 0.0146026611328125, -0.01435089111328125, 0.00914764404296875, -0.027435302734375, -0.059539794921875, -0.0221099853515625, -0.00616455078125, 0.0187530517578125, 0.03106689453125, -0.030029296875, -0.03875732421875, -0.0458984375, -0.040191650390625, -0.0258941650390625, -0.0185089111328125, -0.007694244384765625, -0.04266357421875, -0.01221466064453125, 0.01448822021484375, -0.0022411346435546875, 0.0168914794921875, 0.00695037841796875, 0.0850830078125, 0.0096588134765625, -0.01435089111328125, -0.03582763671875, -0.0048980712890625, 0.0203704833984375, 0.037933349609375, 0.04766845703125, 0.01309967041015625, -0.01357269287109375, 0.037384033203125, 0.032440185546875, 0.0102996826171875, -0.05889892578125, 0.08685302734375, -0.02471923828125, -0.0175933837890625, 0.0234832763671875, -0.047882080078125, 0.0321044921875, 0.027435302734375, 0.01351165771484375, -0.01438140869140625, 0.032958984375, 0.0010595321655273438, -0.0221710205078125, -0.00598907470703125, 0.003787994384765625, -0.03997802734375, 0.025665283203125, 0.01039886474609375, 0.004100799560546875, 0.0374755859375, -0.0251922607421875, 0.030548095703125, -0.00409698486328125, 0.008819580078125, -0.007335662841796875, 0.01922607421875, -0.048187255859375, 0.0256195068359375, -0.0203399658203125, -0.0303192138671875, -0.003635406494140625, -0.0198516845703125, 0.088623046875, -0.025543212890625, -0.0369873046875, -0.0272979736328125, -0.02459716796875, 0.00943756103515625, 0.040771484375, 0.0036869049072265625, 0.05999755859375, 0.0182647705078125, -0.016876220703125, -0.02056884765625, -0.04949951171875, 0.01334381103515625, -0.0703125, -0.01255035400390625, -0.00867462158203125, -0.0049896240234375, 0.032318115234375, 0.0479736328125, -0.01358795166015625, 0.036590576171875, -0.0172119140625, 0.032562255859375, 0.00916290283203125, 0.0167083740234375, 0.0185089111328125, 0.00811004638671875, 0.004405975341796875, -0.032440185546875, -0.01666259765625, -0.049041748046875, 0.005428314208984375, -0.0023097991943359375, 0.018035888671875, -0.037628173828125, -0.05023193359375, 0.07379150390625, 0.002025604248046875, 0.0083465576171875, 0.041351318359375, 0.042999267578125, -0.039825439453125, -0.007366180419921875, 0.01448822021484375, 0.0239410400390625, -0.031585693359375, -0.01213836669921875, 0.00876617431640625, -0.0163421630859375, -0.0011072158813476562, 0.006683349609375, -0.049957275390625, 0.01371002197265625, 0.0438232421875, 0.032867431640625, -0.0229034423828125, -0.03265380859375, -0.01006317138671875, -0.00470733642578125, -0.02020263671875, -0.0025787353515625, 0.059112548828125, -0.00713348388671875, 0.00946044921875, -0.031951904296875, 0.006214141845703125, 0.0180816650390625, 0.0142669677734375, 0.00772857666015625, -0.00894927978515625, -0.0787353515625, 0.005657196044921875, -0.0294342041015625, -0.025299072265625, -0.068359375, -0.0482177734375, -0.0655517578125, 0.00891876220703125, -0.01508331298828125, 0.01418304443359375, -0.007534027099609375, 0.0228271484375, -0.0033321380615234375, 0.029571533203125, -0.0081329345703125, 0.03778076171875, -0.0027027130126953125, 0.010894775390625, 0.0268096923828125, -0.01229095458984375, 0.029296875, 0.0228118896484375, 0.00685882568359375, -0.0251617431640625, 0.034759521484375, 0.0313720703125, -0.0352783203125, -0.057037353515625, 0.0178680419921875, -0.049346923828125, 0.03692626953125, -0.0262451171875, -0.0218658447265625, 0.02117919921875, -0.01006317138671875, -0.00859832763671875, 0.04400634765625, 0.0465087890625, 0.027069091796875, -0.00835418701171875, -0.0733642578125, -0.028594970703125, -0.004756927490234375, 0.01013946533203125, 0.022552490234375, -0.045257568359375, -0.005939483642578125, 0.059356689453125, -0.00975799560546875, 0.0234832763671875, 0.01422119140625, -0.033203125, -0.0174407958984375, 0.025848388671875, -0.0147705078125, -0.0309295654296875, -0.0024166107177734375, -0.002429962158203125, -0.00899505615234375, 0.032867431640625, -0.00450897216796875, -0.0094757080078125, 0.0271148681640625, -0.0200958251953125, 0.04345703125, 0.033782958984375, 0.065673828125, -0.079833984375, 0.036651611328125, 0.00742340087890625, -0.0203704833984375, 0.06884765625, -0.00450897216796875, -0.007904052734375, -0.01045989990234375, 0.031524658203125, 0.00595855712890625, -0.007404327392578125, 0.021148681640625, 0.0008907318115234375, -0.003326416015625, -0.01392364501953125, 0.007152557373046875, 0.0222320556640625, -0.047698974609375, 0.022705078125, 0.05340576171875, 0.01226043701171875, -0.007396697998046875, 0.022491455078125, 0.003948211669921875, -0.0188140869140625, -0.041961669921875, 0.0092620849609375, -0.0085601806640625, -0.0389404296875, 0.00989532470703125, -0.0183868408203125, 0.036163330078125, 0.042724609375, -0.00742340087890625, -0.00811004638671875, 0.01947021484375, 0.017547607421875, -0.0682373046875, -0.03594970703125, 0.0165863037109375, 0.02740478515625, -0.0479736328125, 0.035400390625, -0.0232696533203125, -0.0357666015625, -0.0202484130859375, 0.00196075439453125, 0.078125, -0.037567138671875, -0.00798797607421875, 0.004604339599609375, 0.04864501953125, 0.01012420654296875, -0.059814453125, 0.0027008056640625, -0.0694580078125, 0.0165252685546875, -0.050811767578125, 0.03363037109375, 0.007354736328125, -0.062164306640625, -0.051361083984375, 0.08685302734375, 0.003131866455078125, 0.01364898681640625, -0.0013275146484375, 0.040252685546875, -0.0193328857421875, 0.023529052734375, -0.01433563232421875, 0.03338623046875, -0.0240936279296875, -0.0021419525146484375, -0.023193359375, 0.01343536376953125, -0.017974853515625, 0.0133056640625, 0.06341552734375, 0.010528564453125, -0.0019350051879882812, 0.00885772705078125, 0.07415771484375, 0.0143280029296875, -0.0183868408203125, 0.032318115234375, -0.0175323486328125, 0.0011510848999023438, -0.01291656494140625, -0.014984130859375, 0.031341552734375, -0.046539306640625, -0.033843994140625, -0.002655029296875, 0.00234222412109375, -0.00302886962890625, -0.014312744140625, 0.040069580078125, 0.0095672607421875, -0.0167388916015625, -0.017120361328125, 0.035369873046875, 0.003658294677734375, 0.0198974609375, -0.00647735595703125, 0.00982666015625, 0.00811767578125, -0.0248870849609375, 0.0457763671875, -0.02197265625, 0.0217437744140625, 0.0677490234375, 0.035308837890625, -0.0010709762573242188, -0.02630615234375, 0.02154541015625, -0.00962066650390625, -0.03033447265625, 0.0303497314453125, -0.005725860595703125, 0.0182952880859375, -0.039520263671875, -0.00475311279296875, 0.003070831298828125, 0.0214080810546875, -0.024993896484375, -0.062347412109375, 0.00943756103515625, -0.0028858184814453125, 0.01708984375, 0.01328277587890625, 0.01751708984375, -0.031768798828125, 0.0170745849609375, -0.0206298828125, 0.00615692138671875, 0.021636962890625, 0.0025787353515625, 0.0144805908203125, 0.026123046875, -0.0222320556640625, -0.004528045654296875, -0.033172607421875, 0.0244140625, 0.01447296142578125, -0.002407073974609375, -0.0084686279296875, 0.017608642578125, 0.055450439453125, 0.00815582275390625, -0.021575927734375, 0.056427001953125, -0.00511932373046875, 0.021881103515625, -0.048004150390625, -0.07806396484375, 0.042388916015625, 0.042755126953125, 0.0291900634765625, 0.0085601806640625, 0.06622314453125, 0.05035400390625, -0.03741455078125, -0.01290130615234375, 0.006519317626953125, -0.0134429931640625, 0.004428863525390625, -0.0141143798828125, 0.03045654296875, 0.032989501953125, 0.00818634033203125, -0.026031494140625, 0.0181427001953125, 0.04437255859375, -0.04296875, 0.0162353515625, -0.0004916191101074219, -0.02880859375, 0.04656982421875, -0.0258331298828125, 0.05401611328125, -0.019561767578125, -0.03704833984375, -0.0125274658203125, -0.0281829833984375, 0.02069091796875, -0.006031036376953125, 0.00954437255859375, 0.005702972412109375, 0.032379150390625, -0.0153045654296875, -0.01180267333984375, 0.00543975830078125, 0.0163726806640625, -0.010101318359375, 0.0218353271484375, 0.036346435546875, -0.00621795654296875, -0.0023784637451171875, -0.0079193115234375, 0.0006089210510253906, 0.04498291015625, 0.0291595458984375, 0.039459228515625, -0.0178985595703125, 0.0201416015625, 0.0303955078125, -0.03607177734375, 0.056304931640625, 0.027313232421875, -0.0139617919921875, 0.00814056396484375, 0.0024814605712890625, -0.0258331298828125, -0.0418701171875, 0.037445068359375, -0.0002193450927734375, 0.003803253173828125, 0.01161956787109375, -0.007659912109375, 0.0169525146484375, 0.029022216796875, -0.0032253265380859375, -0.0277862548828125, -0.037078857421875, 0.0035991668701171875, 0.016326904296875, -0.011962890625, -0.01309967041015625, -0.01971435546875, -0.0286712646484375, -0.003505706787109375, -0.040435791015625, 0.007114410400390625, 0.01067352294921875, -0.040008544921875, 0.01311492919921875, 0.0596923828125, -0.04833984375, 0.00035858154296875, -0.014892578125, -0.0257720947265625, 0.0190887451171875, 0.03326416015625, -0.016021728515625, -0.0012540817260742188, -0.054229736328125, -0.0255126953125, 0.025177001953125, 0.00786590576171875, -0.0011272430419921875, -0.05828857421875, 0.0142669677734375, -0.01470947265625, -0.0272216796875, -0.03509521484375, -0.018768310546875, -0.00682830810546875, 0.0138397216796875, -0.023773193359375, -0.057220458984375, -0.0880126953125, 0.038330078125, 0.04443359375, 0.0304412841796875, -0.0950927734375, 0.06591796875, -0.040924072265625, 0.0008697509765625, 0.0257720947265625, -0.01885986328125, -0.01177978515625, 0.004459381103515625, -0.02862548828125, -0.0413818359375, -0.041046142578125, 0.052825927734375, -0.030670166015625, 0.0259857177734375, -0.002162933349609375, -0.0341796875, 0.031768798828125, 0.02972412109375, 0.054046630859375, 0.0645751953125, 0.05694580078125, -0.023834228515625, 0.01495361328125, -0.01141357421875, 0.0089874267578125, -0.01094818115234375, 0.004459381103515625, -0.01486968994140625, -0.03271484375, -0.03387451171875, 0.038818359375, 0.047607421875, -0.0239715576171875, -0.03802490234375, 0.0660400390625, -0.013427734375, -0.015228271484375, -0.00696563720703125, -0.0055694580078125, -0.0133819580078125, -0.0303497314453125, -0.01267242431640625, 0.0011730194091796875, -0.0129852294921875, 0.025054931640625, -0.00738525390625, 0.06134033203125, -0.006145477294921875, -0.01013946533203125, 0.0300140380859375, 0.0242767333984375, 0.0254669189453125, 0.0171051025390625, -0.0120697021484375, -0.022186279296875, 0.035430908203125, 0.031341552734375, -0.030120849609375, 0.02386474609375, 0.03240966796875, 0.01525115966796875, -0.020965576171875, -0.0287322998046875, 0.010528564453125, 0.0244293212890625, 0.06341552734375, 0.0435791015625, 0.0111236572265625, -0.052947998046875, -0.01971435546875, -0.042449951171875, 0.048675537109375, -0.01210784912109375, -0.014892578125, -0.03558349609375, 0.0031147003173828125, 0.0021648406982421875, -0.0211181640625, 0.003765106201171875, -0.045562744140625, -0.041534423828125, -0.002628326416015625, -0.0165252685546875, 0.021942138671875, -0.0267181396484375, -0.007534027099609375, 0.0030269622802734375, 0.016815185546875, 0.043701171875, -0.028656005859375, 0.023651123046875, 0.026458740234375, 0.03680419921875, -0.00008910894393920898, 0.05108642578125, -0.07464599609375, 0.0091094970703125, -0.00742340087890625, 0.045806884765625, -0.045989990234375, 0.004291534423828125, -0.020355224609375, 0.0183258056640625, 0.0004911422729492188, 0.0196380615234375, 0.007083892822265625, 0.04473876953125, 0.040771484375, -0.0113983154296875, 0.0173797607421875, 0.03369140625, -0.0233612060546875, 0.0775146484375, 0.00818634033203125, -0.037384033203125, 0.0172576904296875, -0.032989501953125, 0.01003265380859375, 0.01434326171875, 0.033721923828125, -0.038970947265625, 0.038604736328125, 0.0168609619140625, 0.01263427734375, 0.0203094482421875 ]
44a54e0db4d2752459c60eb0cc9cd3378620f552
Wordpress Stackexchange Q: add_query_arg() One Key with multiple values The Goal I am wanting to use add_query_arg() like so: $url = add_query_arg(array( 'count' => '100', 'property' => array( 'abc', 'xyz' ) ), $base_url ); The api I am using requires me to repeat the property key in my api call http://api-call.com/?count=100&property=abc&property=xyz The Problem WordPress is outputting the code below because it is an array. http://api-call.com/?count=100&property[0]=abc&property[1]=xyz I have tried this workaround: $url = add_query_arg(array( 'count' => '100', 'property' => 'abc', 'property' => 'xyz' ), $base_url ); but WordPress outputs only the last property value http://api-call.com/?count=100&property=xyz Any help is greatly appreciated! A: You have to do a search and replace on $url like the following - $url = add_query_arg( array( 'count' => '100', 'property' => array( 'abc', 'xyz' ) ), $base_url ); // following line will remove [*] and * can be nothing or 0-9 $api_url = preg_replace( '/\[\d*\]/', '', $url ); // Output will be like the following // http://api-call.com/?count=100&property=abc&property=xyz
Q: add_query_arg() One Key with multiple values The Goal I am wanting to use add_query_arg() like so: $url = add_query_arg(array( 'count' => '100', 'property' => array( 'abc', 'xyz' ) ), $base_url ); The api I am using requires me to repeat the property key in my api call http://api-call.com/?count=100&property=abc&property=xyz The Problem WordPress is outputting the code below because it is an array. http://api-call.com/?count=100&property[0]=abc&property[1]=xyz I have tried this workaround: $url = add_query_arg(array( 'count' => '100', 'property' => 'abc', 'property' => 'xyz' ), $base_url ); but WordPress outputs only the last property value http://api-call.com/?count=100&property=xyz Any help is greatly appreciated! A: You have to do a search and replace on $url like the following - $url = add_query_arg( array( 'count' => '100', 'property' => array( 'abc', 'xyz' ) ), $base_url ); // following line will remove [*] and * can be nothing or 0-9 $api_url = preg_replace( '/\[\d*\]/', '', $url ); // Output will be like the following // http://api-call.com/?count=100&property=abc&property=xyz
wordpress
{ "language": "en", "length": 157, "provenance": "stackexchange_00019.jsonl.gz:483981", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/294213" }
[ 0.1002197265625, -0.020355224609375, 0.000732421875, -0.086669921875, 0.011474609375, -0.048065185546875, 0.0208740234375, 0.0169830322265625, -0.01270294189453125, 0.020050048828125, -0.00029087066650390625, -0.01552581787109375, -0.00997161865234375, -0.0308990478515625, 0.001556396484375, -0.0284881591796875, 0.0117950439453125, 0.0140380859375, -0.00794219970703125, -0.00873565673828125, 0.021575927734375, 0.0004589557647705078, -0.020751953125, 0.03082275390625, -0.0034618377685546875, -0.0183258056640625, 0.054168701171875, -0.035064697265625, 0.01971435546875, -0.0237884521484375, -0.0021877288818359375, 0.0172576904296875, 0.0243988037109375, 0.0386962890625, -0.033935546875, -0.00963592529296875, 0.013458251953125, 0.004001617431640625, 0.007904052734375, 0.0165252685546875, 0.0310516357421875, -0.0240325927734375, -0.0205078125, 0.0183868408203125, -0.0254974365234375, -0.039794921875, 0.06341552734375, 0.020294189453125, -0.0023708343505859375, 0.007740020751953125, 0.004009246826171875, 0.055206298828125, -0.0001671314239501953, 0.03607177734375, 0.0004467964172363281, 0.01419830322265625, 0.01049041748046875, -0.0501708984375, 0.0347900390625, -0.00339508056640625, -0.021820068359375, -0.034576416015625, 0.03753662109375, -0.0305328369140625, -0.01270294189453125, -0.007526397705078125, 0.001255035400390625, 0.02752685546875, -0.0204925537109375, -0.031219482421875, 0.01303863525390625, -0.011688232421875, -0.0194549560546875, -0.0219879150390625, 0.00888824462890625, 0.026092529296875, -0.034393310546875, -0.02325439453125, 0.01549530029296875, 0.041656494140625, 0.052581787109375, 0.03472900390625, 0.0164031982421875, 0.032623291015625, 0.0198211669921875, 0.042755126953125, -0.005718231201171875, -0.04620361328125, -0.0256500244140625, -0.007343292236328125, -0.021820068359375, -0.041351318359375, -0.01105499267578125, -0.023468017578125, 0.0021343231201171875, -0.0238800048828125, -0.042938232421875, -0.06268310546875, 0.003719329833984375, 0.0171661376953125, 0.039398193359375, -0.0292510986328125, 0.02801513671875, -0.01145172119140625, 0.01739501953125, 0.060638427734375, 0.0244140625, 0.0345458984375, 0.0494384765625, -0.006988525390625, 0.0124969482421875, 0.0880126953125, -0.004802703857421875, 0.00641632080078125, -0.07025146484375, 0.002635955810546875, -0.0335693359375, -0.0260467529296875, -0.0220947265625, -0.0276947021484375, -0.032501220703125, -0.0084381103515625, -0.0199127197265625, 0.0030269622802734375, 0.0318603515625, 0.01277923583984375, 0.0069732666015625, 0.01507568359375, -0.0035266876220703125, 0.015777587890625, -0.0256500244140625, 0.02044677734375, 0.041107177734375, -0.0084686279296875, -0.008575439453125, -0.0145721435546875, 0.01128387451171875, -0.0271148681640625, -0.0204925537109375, 0.019989013671875, 0.0244903564453125, -0.0457763671875, 0.015594482421875, 0.01654052734375, 0.015625, 0.006103515625, 0.022125244140625, 0.01482391357421875, 0.033966064453125, -0.0227203369140625, -0.0162811279296875, 0.007495880126953125, 0.0146484375, 0.0435791015625, -0.05096435546875, 0.02423095703125, 0.03125, -0.0283355712890625, -0.017181396484375, -0.0394287109375, 0.00127410888671875, -0.0217437744140625, -0.030303955078125, -0.04443359375, -0.0582275390625, -0.0009293556213378906, 0.0011434555053710938, -0.007389068603515625, 0.00951385498046875, 0.033203125, -0.0032196044921875, 0.04541015625, 0.02862548828125, 0.00016105175018310547, 0.00004935264587402344, -0.026885986328125, -0.01226043701171875, 0.0249481201171875, 0.01483154296875, 0.026397705078125, -0.003818511962890625, -0.04986572265625, 0.040802001953125, -0.006908416748046875, -0.0771484375, 0.128173828125, -0.03753662109375, 0.059539794921875, -0.0022563934326171875, -0.04058837890625, 0.0439453125, 0.0601806640625, -0.0223388671875, 0.01232147216796875, 0.0151824951171875, -0.024261474609375, 0.00789642333984375, -0.0088653564453125, -0.005321502685546875, -0.023712158203125, 0.007381439208984375, 0.004459381103515625, 0.0106658935546875, 0.01142120361328125, -0.027496337890625, 0.0129241943359375, -0.00676727294921875, 0.0177001953125, -0.047821044921875, 0.032440185546875, 0.0270233154296875, 0.00849151611328125, -0.034149169921875, -0.006542205810546875, 0.0170440673828125, 0.007049560546875, 0.039581298828125, 0.001064300537109375, 0.001941680908203125, -0.020111083984375, -0.00524139404296875, 0.0189361572265625, -0.004848480224609375, 0.047149658203125, 0.0611572265625, -0.05126953125, 0.0002332925796508789, -0.05731201171875, 0.03594970703125, -0.0218353271484375, -0.04052734375, 0.057525634765625, 0.046783447265625, 0.038299560546875, -0.0305023193359375, -0.01107025146484375, -0.018402099609375, -0.041046142578125, -0.001468658447265625, 0.05657958984375, 0.03302001953125, 0.003826141357421875, 0.005229949951171875, -0.0007653236389160156, 0.01375579833984375, 0.0071258544921875, 0.039215087890625, -0.045867919921875, -0.01107025146484375, 0.02978515625, -0.02276611328125, -0.02960205078125, -0.00933074951171875, -0.08990478515625, -0.00731658935546875, 0.006664276123046875, 0.005214691162109375, -0.015167236328125, -0.042938232421875, 0.01849365234375, -0.0003075599670410156, -0.0445556640625, -0.036712646484375, -0.0115509033203125, -0.01346588134765625, 0.0195159912109375, 0.02471923828125, 0.038330078125, -0.00598907470703125, -0.002109527587890625, 0.002410888671875, 0.0113067626953125, -0.0390625, -0.0056304931640625, -0.0023326873779296875, -0.0023632049560546875, -0.0244903564453125, 0.038177490234375, -0.060516357421875, -0.01543426513671875, -0.021209716796875, 0.027587890625, -0.01515960693359375, -0.01395416259765625, -0.04290771484375, 0.01270294189453125, 0.01143646240234375, -0.00513458251953125, -0.01480865478515625, -0.01291656494140625, 0.0313720703125, 0.02716064453125, 0.007244110107421875, -0.00591278076171875, -0.00850677490234375, -0.002674102783203125, 0.03125, -0.0316162109375, 0.027374267578125, -0.0282745361328125, 0.0225677490234375, 0.0433349609375, 0.0109100341796875, -0.03143310546875, 0.00551605224609375, 0.004581451416015625, -0.021453857421875, 0.0227813720703125, -0.00861358642578125, 0.01020050048828125, -0.08795166015625, 0.0002570152282714844, 0.018524169921875, 0.019866943359375, 0.03399658203125, -0.039459228515625, 0.0175323486328125, -0.0000845193862915039, -0.12127685546875, -0.1407470703125, 0.0589599609375, -0.01406097412109375, -0.0269775390625, 0.01367950439453125, -0.0284576416015625, -0.0035305023193359375, 0.042083740234375, -0.016143798828125, 0.026214599609375, -0.0198974609375, -0.05926513671875, -0.03204345703125, -0.074951171875, -0.00042128562927246094, 0.0013341903686523438, 0.01001739501953125, 0.02203369140625, 0.054840087890625, 0.0252532958984375, -0.0011272430419921875, 0.045928955078125, 0.0211334228515625, -0.01068115234375, 0.00606536865234375, -0.0080718994140625, 0.0014438629150390625, 0.00856781005859375, -0.01763916015625, 0.0946044921875, 0.0555419921875, -0.056610107421875, 0.039215087890625, 0.036651611328125, 0.00669097900390625, 0.015106201171875, 0.002452850341796875, -0.024444580078125, 0.0129547119140625, -0.0129547119140625, -0.034759521484375, -0.0211181640625, 0.00701904296875, -0.0159912109375, 0.00272369384765625, 0.003231048583984375, -0.0016574859619140625, 0.0009527206420898438, 0.006076812744140625, -0.029205322265625, 0.00531768798828125, 0.012969970703125, -0.028656005859375, 0.03179931640625, -0.027191162109375, -0.039581298828125, -0.01204681396484375, 0.0362548828125, -0.0226287841796875, -0.044097900390625, -0.007137298583984375, -0.0384521484375, 0.00260162353515625, -0.074951171875, -0.009796142578125, -0.01200103759765625, 0.046173095703125, -0.00775909423828125, 0.036041259765625, -0.068603515625, -0.030059814453125, -0.0577392578125, 0.062469482421875, -0.05853271484375, -0.0240936279296875, 0.011474609375, 0.04302978515625, -0.044281005859375, -0.052001953125, -0.036376953125, -0.01506805419921875, 0.017791748046875, -0.0007977485656738281, 0.0018444061279296875, -0.0178070068359375, -0.006839752197265625, -0.0318603515625, 0.011383056640625, -0.00572967529296875, 0.0257720947265625, 0.0021877288818359375, 0.0018243789672851562, 0.00739288330078125, 0.0279388427734375, -0.0100860595703125, 0.0030727386474609375, -0.00035119056701660156, -0.0178070068359375, -0.03228759765625, 0.03387451171875, 0.072021484375, 0.001674652099609375, -0.01493072509765625, -0.01032257080078125, 0.05194091796875, -0.0023479461669921875, -0.031341552734375, 0.0139923095703125, 0.00676727294921875, -0.0333251953125, 0.0411376953125, -0.005615234375, -0.0145416259765625, -0.0160369873046875, -0.007503509521484375, -0.0179595947265625, 0.0202178955078125, -0.010711669921875, -0.01454925537109375, 0.0266571044921875, -0.023590087890625, -0.032867431640625, -0.01509857177734375, 0.031524658203125, 0.006504058837890625, 0.0000851750373840332, -0.0162353515625, -0.003871917724609375, -0.01259613037109375, -0.006866455078125, 0.0005669593811035156, 0.00286865234375, 0.0007772445678710938, 0.0249481201171875, 0.0192108154296875, -0.01274871826171875, 0.026336669921875, -0.016448974609375, 0.0208587646484375, 0.002597808837890625, 0.029083251953125, -0.015655517578125, -0.0171356201171875, 0.05987548828125, -0.024078369140625, 0.03155517578125, 0.020538330078125, -0.017181396484375, 0.043792724609375, -0.02630615234375, 0.0154876708984375, 0.0626220703125, -0.041290283203125, 0.01296234130859375, 0.01102447509765625, 0.01092529296875, 0.039520263671875, -0.006275177001953125, -0.0240936279296875, -0.0129547119140625, 0.00740814208984375, -0.0298614501953125, 0.014434814453125, 0.028717041015625, -0.00849151611328125, -0.008087158203125, 0.0038394927978515625, -0.006595611572265625, -0.00418853759765625, 0.0025196075439453125, 0.0283050537109375, 0.08892822265625, -0.06512451171875, 0.05609130859375, -0.035888671875, -0.052581787109375, -0.025848388671875, -0.001087188720703125, -0.0142974853515625, -0.004528045654296875, -0.031951904296875, -0.004848480224609375, -0.01279449462890625, 0.006427764892578125, 0.007053375244140625, -0.01241302490234375, -0.004306793212890625, 0.049468994140625, 0.0104217529296875, -0.007801055908203125, -0.008026123046875, 0.0269775390625, -0.01227569580078125, 0.01806640625, 0.00788116455078125, 0.0012531280517578125, -0.042694091796875, 0.08270263671875, -0.004486083984375, 0.0288238525390625, -0.0185089111328125, -0.0023975372314453125, 0.00383758544921875, 0.01641845703125, 0.004581451416015625, -0.0017900466918945312, -0.0118560791015625, 0.018096923828125, 0.0223541259765625, -0.0091400146484375, -0.002422332763671875, 0.0165863037109375, 0.0190887451171875, 0.0218963623046875, 0.01407623291015625, -0.008758544921875, -0.021728515625, -0.026947021484375, -0.0172271728515625, -0.019744873046875, 0.004261016845703125, -0.03271484375, -0.01959228515625, 0.01355743408203125, 0.031280517578125, -0.00890350341796875, 0.01345062255859375, -0.002834320068359375, 0.039276123046875, -0.0223541259765625, 0.0233306884765625, -0.0112152099609375, -0.01934814453125, -0.018524169921875, -0.04766845703125, -0.0291900634765625, 0.017974853515625, 0.0154266357421875, -0.028594970703125, -0.022186279296875, 0.03179931640625, -0.01496124267578125, 0.0306396484375, -0.024658203125, -0.01203155517578125, -0.02294921875, 0.004062652587890625, 0.045806884765625, 0.042266845703125, -0.008270263671875, 0.007686614990234375, -0.053863525390625, -0.0234375, 0.0791015625, 0.0305328369140625, -0.0266571044921875, -0.0235137939453125, -0.032501220703125, 0.033782958984375, -0.0190582275390625, 0.026763916015625, 0.00977325439453125, 0.006504058837890625, -0.0340576171875, 0.0282745361328125, -0.0230712890625, 0.042999267578125, -0.04522705078125, 0.0011243820190429688, -0.0163726806640625, 0.01654052734375, -0.0031795501708984375, 0.0013093948364257812, 0.043853759765625, -0.050384521484375, -0.060516357421875, -0.020904541015625, 0.006938934326171875, -0.0009312629699707031, -0.004756927490234375, -0.03509521484375, 0.024444580078125, -0.00485992431640625, 0.007358551025390625, -0.01009368896484375, -0.003246307373046875, -0.0159149169921875, 0.0291748046875, 0.003131866455078125, 0.01197052001953125, 0.038116455078125, -0.029998779296875, -0.0018024444580078125, -0.0184478759765625, -0.0006313323974609375, -0.006587982177734375, 0.00476837158203125, -0.01274871826171875, 0.0057373046875, 0.07464599609375, 0.01534271240234375, 0.0533447265625, 0.0318603515625, 0.04736328125, 0.06463623046875, -0.006313323974609375, 0.035552978515625, 0.0236358642578125, 0.035858154296875, -0.0242462158203125, -0.01346588134765625, 0.0005903244018554688, -0.032989501953125, -0.00476837158203125, 0.0240631103515625, 0.02606201171875, -0.03741455078125, 0.0012083053588867188, -0.03399658203125, -0.01439666748046875, 0.059173583984375, 0.0270538330078125, 0.00704193115234375, -0.0292510986328125, -0.00952911376953125, 0.025604248046875, -0.00824737548828125, 0.0069580078125, 0.034576416015625, 0.005413055419921875, -0.0017910003662109375, -0.03271484375, -0.006229400634765625, 0.00728607177734375, -0.0187835693359375, 0.0159454345703125, -0.0073089599609375, -0.0185089111328125, 0.0032367706298828125, 0.0275115966796875, -0.042755126953125, -0.11834716796875, -0.00743865966796875, 0.0011816024780273438, -0.044586181640625, -0.039093017578125, 0.0214080810546875, 0.0406494140625, 0.038665771484375, 0.005016326904296875, -0.036407470703125, 0.0380859375, -0.0106353759765625, 0.0222320556640625, -0.03717041015625, -0.007808685302734375, -0.0029277801513671875, -0.037750244140625, 0.016143798828125, -0.021392822265625, -0.00504302978515625, 0.005390167236328125, 0.049102783203125, 0.045318603515625, -0.039642333984375, -0.012054443359375, 0.04644775390625, 0.00434112548828125, -0.00958251953125, -0.0026607513427734375, 0.0311431884765625, -0.09002685546875, -0.0771484375, 0.0227203369140625, -0.0660400390625, -0.0035839080810546875, -0.01299285888671875, -0.048004150390625, 0.119873046875, -0.01788330078125, 0.0122222900390625, 0.0006971359252929688, 0.06817626953125, -0.0002574920654296875, 0.05755615234375, -0.0225982666015625, 0.0240020751953125, -0.0184783935546875, 0.010467529296875, -0.060821533203125, -0.023468017578125, 0.0008139610290527344, 0.05621337890625, 0.0662841796875, 0.0212860107421875, -0.06158447265625, -0.0279541015625, -0.0108795166015625, 0.0184326171875, -0.017120361328125, 0.06219482421875, 0.01345062255859375, 0.096435546875, 0.09423828125, -0.0908203125, 0.0271148681640625, -0.01123809814453125, 0.0196533203125, 0.022979736328125, 0.004199981689453125, 0.003902435302734375, 0.0087127685546875, 0.0232391357421875, -0.035736083984375, -0.0007104873657226562, 0.021881103515625, -0.045806884765625, 0.01419830322265625, 0.047943115234375, 0.0098419189453125, -0.0025196075439453125, -0.02880859375, -0.0174560546875, 0.034210205078125, -0.0168304443359375, 0.010162353515625, 0.02685546875, 0.01303863525390625, 0.049041748046875, 0.0090179443359375, 0.007488250732421875, 0.03900146484375, -0.00820159912109375, 0.07305908203125, 0.061614990234375, 0.036376953125, 0.0118560791015625, 0.0160675048828125, 0.02716064453125, 0.0849609375, -0.061981201171875, -0.04620361328125, 0.008270263671875, 0.012115478515625, 0.0019893646240234375, 0.034027099609375, 0.047271728515625, -0.01160430908203125, 0.0255126953125, -0.0413818359375, 0.0177001953125, 0.035614013671875, 0.032501220703125, 0.0022144317626953125, -0.0206298828125, -0.071533203125, -0.00283050537109375, -0.03662109375, -0.003498077392578125, -0.0257110595703125, 0.07403564453125, 0.0384521484375, 0.027618408203125, -0.09161376953125, -0.047576904296875, -0.0286102294921875, 0.0195159912109375, 0.02813720703125, 0.003658294677734375, 0.00004011392593383789, 0.006618499755859375, 0.006153106689453125, 0.0203704833984375, 0.024993896484375, 0.07476806640625, 0.0176849365234375, -0.003307342529296875, 0.0302581787109375, 0.04315185546875, 0.059814453125, -0.0310211181640625, 0.02191162109375, -0.03131103515625, 0.0177459716796875, -0.00872039794921875, -0.003536224365234375, -0.0141448974609375, 0.00984954833984375, 0.018402099609375, 0.007297515869140625, 0.0011692047119140625, 0.013885498046875, -0.01313018798828125, 0.0113372802734375, 0.033477783203125, 0.007457733154296875, 0.0430908203125, 0.0018148422241210938, 0.0046539306640625, 0.0202484130859375, -0.0843505859375, 0.017333984375, 0.035797119140625, -0.0290069580078125, 0.025299072265625, -0.033843994140625, -0.00390625, -0.0037937164306640625, 0.0173187255859375, -0.01505279541015625, 0.002941131591796875, 0.0204315185546875, -0.003330230712890625, -0.032196044921875, -0.00922393798828125, 0.00360870361328125, 0.003192901611328125, -0.0142669677734375, 0.06121826171875, -0.0184783935546875, -0.010467529296875, -0.00909423828125, 0.011077880859375, -0.0089263916015625, 0.0211334228515625, -0.049896240234375, 0.0159759521484375, 0.0177764892578125, -0.004512786865234375, 0.0181427001953125, -0.02496337890625, 0.0518798828125, -0.03533935546875, 0.004978179931640625, -0.0521240234375, 0.0214385986328125, -0.028228759765625, 0.0233306884765625, -0.01910400390625, -0.0107269287109375, -0.029052734375, -0.0282135009765625, 0.0404052734375, 0.02789306640625, 0.002307891845703125, 0.042205810546875, 0.0335693359375, 0.01094818115234375, 0.036651611328125, -0.0277099609375, 0.083984375, 0.0279693603515625, -0.0253753662109375, 0.040679931640625, -0.01078033447265625, -0.0302734375, 0.01329803466796875, 0.008575439453125, -0.0234375, 0.0022525787353515625, 0.027496337890625, -0.016143798828125, -0.01222991943359375, 0.01253509521484375, -0.0027904510498046875, 0.009613037109375, -0.01519775390625, 0.00855255126953125, -0.004119873046875, 0.028045654296875, 0.0001583099365234375, -0.0333251953125, 0.0042266845703125, -0.00676727294921875, 0.01113128662109375, -0.001735687255859375, 0.036346435546875, -0.0186004638671875, 0.00933074951171875, 0.00498199462890625, -0.0233154296875, 0.01806640625, -0.031768798828125, -0.017822265625, -0.039031982421875, -0.0252532958984375, -0.017730712890625, -0.01189422607421875, -0.03875732421875, -0.00431060791015625, -0.07122802734375, -0.00434112548828125, -0.037872314453125, -0.0007033348083496094, 0.036163330078125, -0.01180267333984375, -0.0181884765625, -0.01003265380859375, 0.007724761962890625, 0.03033447265625, 0.0018062591552734375, 0.01031494140625, 0.00684356689453125, 0.032012939453125, -0.07379150390625, -0.08428955078125, 0.0252532958984375, -0.04473876953125, -0.0157318115234375, 0.019500732421875, 0.01171875, 0.032562255859375, -0.016204833984375, -0.047515869140625, 0.0271453857421875, 0.0021419525146484375, -0.040435791015625, -0.034027099609375, -0.025390625, 0.01306915283203125, 0.028656005859375, -0.01238250732421875, -0.0004420280456542969, -0.0543212890625, 0.008148193359375, -0.004299163818359375, 0.033416748046875, -0.0072479248046875, 0.0019989013671875, -0.035430908203125, 0.01113128662109375, -0.019317626953125, -0.01385498046875, 0.0204925537109375, -0.0158843994140625, 0.063720703125, 0.036102294921875, -0.0165557861328125, 0.053253173828125, 0.0292205810546875, -0.043853759765625, -0.0258026123046875, -0.0191192626953125, -0.03912353515625, -0.0082244873046875, 0.08612060546875, 0.05255126953125, 0.0189056396484375, -0.0310516357421875, -0.025390625, -0.0014333724975585938, 0.06182861328125, -0.03515625, -0.020172119140625, -0.04388427734375, -0.0304107666015625, -0.032501220703125, 0.0325927734375, 0.00655364990234375, -0.0275726318359375, 0.0264892578125, -0.038482666015625, 0.022674560546875, -0.0164031982421875, 0.0153656005859375, -0.05377197265625, 0.04736328125, -0.032440185546875, -0.0201873779296875, -0.0021076202392578125, 0.03692626953125, -0.006256103515625, -0.0002722740173339844, -0.0189361572265625, -0.0222930908203125, 0.03668212890625, 0.0213165283203125, 0.027557373046875, -0.0268707275390625, 0.0236053466796875, 0.00214385986328125, -0.05413818359375, 0.0009179115295410156, 0.026947021484375, 0.01087188720703125, -0.01654052734375, -0.006927490234375, 0.0307464599609375, 0.047943115234375, -0.00690460205078125, 0.024993896484375, -0.0027370452880859375, 0.01181793212890625, -0.006877899169921875, 0.004894256591796875, 0.03033447265625, -0.00960540771484375, -0.0029850006103515625, 0.005870819091796875, -0.034271240234375, -0.0635986328125, -0.00738525390625, 0.0216064453125, -0.0024204254150390625, 0.00888824462890625 ]
041e218caf124a7edd472a30c7c0e55d3e36cf74
Wordpress Stackexchange Q: Accessing plugin settings in gutenberg I'm trying to build a gutenberg block (via plugin) that interfaces with a third-party api via credentials. I'm unsure how to, or even if I can, access a plugin's settings in gutenberg in order to grab a potential credentials field for use in the block. (I understand there's potential to put something in the editor's sidebar, but I need a persistent global setting that doesn't have to be set with every block.) Am I missing something in the documentation or is this not possible yet? A: The WordPress way to access PHP variables with JavaScript is to use wp_localize_script(). function wpse_enqueue_scripts(){ wp_enqueue_script( 'wpse', PATH_TO . 'script.js' ); wp_localize_script( 'wpse', 'credentials', $credentials ); } add_action( 'wp_enqueue_scripts', 'wpse_enqueue_scripts' ); Then in your JavaScript, you can access the credentials like console.log( credentials );
Q: Accessing plugin settings in gutenberg I'm trying to build a gutenberg block (via plugin) that interfaces with a third-party api via credentials. I'm unsure how to, or even if I can, access a plugin's settings in gutenberg in order to grab a potential credentials field for use in the block. (I understand there's potential to put something in the editor's sidebar, but I need a persistent global setting that doesn't have to be set with every block.) Am I missing something in the documentation or is this not possible yet? A: The WordPress way to access PHP variables with JavaScript is to use wp_localize_script(). function wpse_enqueue_scripts(){ wp_enqueue_script( 'wpse', PATH_TO . 'script.js' ); wp_localize_script( 'wpse', 'credentials', $credentials ); } add_action( 'wp_enqueue_scripts', 'wpse_enqueue_scripts' ); Then in your JavaScript, you can access the credentials like console.log( credentials ); A: Now, I believe wp_add_inline_script is maybe the better option. (https://developer.wordpress.org/reference/functions/wp_add_inline_script/)
wordpress
{ "language": "en", "length": 147, "provenance": "stackexchange_00019.jsonl.gz:484009", "question_score": "8", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/294321" }
[ 0.0023059844970703125, -0.00521087646484375, -0.036041259765625, -0.010650634765625, 0.0010051727294921875, -0.02252197265625, 0.0111846923828125, 0.006317138671875, 0.00864410400390625, 0.0282745361328125, -0.035614013671875, -0.01544189453125, -0.040924072265625, -0.01070404052734375, -0.037139892578125, -0.04254150390625, 0.026214599609375, 0.01128387451171875, 0.015899658203125, -0.01043701171875, -0.012237548828125, 0.002719879150390625, 0.0043182373046875, 0.04864501953125, 0.02520751953125, -0.04022216796875, 0.0853271484375, -0.021453857421875, 0.0298919677734375, -0.019500732421875, 0.0435791015625, -0.0443115234375, 0.03741455078125, -0.0116729736328125, 0.0025844573974609375, 0.0186309814453125, 0.037811279296875, -0.0212554931640625, -0.0130767822265625, 0.04632568359375, 0.043731689453125, -0.0341796875, -0.0760498046875, 0.03265380859375, -0.04290771484375, -0.03594970703125, 0.026458740234375, -0.00679779052734375, 0.00905609130859375, 0.094970703125, 0.0023822784423828125, -0.0177764892578125, -0.00832366943359375, 0.033782958984375, -0.01070404052734375, -0.039306640625, -0.057342529296875, 0.0200653076171875, 0.005802154541015625, 0.06610107421875, 0.00551605224609375, -0.0011749267578125, -0.01464080810546875, -0.0428466796875, 0.032989501953125, -0.003814697265625, 0.01255035400390625, 0.04620361328125, 0.01763916015625, 0.02203369140625, -0.0214080810546875, -0.00339508056640625, -0.00542449951171875, -0.050323486328125, -0.0400390625, 0.0038356781005859375, -0.0026397705078125, -0.04718017578125, 0.01306915283203125, -0.0213470458984375, -0.0017156600952148438, -0.030548095703125, -0.05804443359375, 0.0084228515625, -0.007770538330078125, 0.029327392578125, -0.006103515625, -0.01346588134765625, 0.0004813671112060547, 0.003765106201171875, -0.023040771484375, -0.004573822021484375, 0.0255279541015625, 0.0248565673828125, -0.039215087890625, 0.0002796649932861328, 0.035675048828125, 0.011932373046875, -0.018707275390625, -0.009368896484375, 0.0103302001953125, -0.043548583984375, 0.0301666259765625, -0.004650115966796875, -0.0014057159423828125, 0.06475830078125, -0.001140594482421875, 0.0201263427734375, 0.01457977294921875, 0.004611968994140625, 0.00716400146484375, -0.059722900390625, 0.00848388671875, -0.03289794921875, 0.02215576171875, 0.004421234130859375, -0.0249176025390625, 0.02874755859375, 0.01352691650390625, -0.0200958251953125, -0.0219879150390625, 0.01033782958984375, -0.0217132568359375, 0.00855255126953125, -0.0161285400390625, -0.04901123046875, -0.009429931640625, 0.0281219482421875, -0.04351806640625, 0.017059326171875, -0.0261383056640625, 0.0009236335754394531, 0.04351806640625, 0.04949951171875, 0.012054443359375, -0.017425537109375, 0.07843017578125, -0.0009899139404296875, -0.004833221435546875, 0.01110076904296875, -0.0147705078125, -0.0017414093017578125, -0.00948333740234375, -0.052215576171875, -0.044342041015625, -0.01248931884765625, 0.0179901123046875, 0.0239715576171875, -0.0283203125, -0.051177978515625, 0.00948333740234375, 0.003238677978515625, 0.0006437301635742188, 0.0201263427734375, 0.0134429931640625, 0.0212554931640625, 0.03765869140625, -0.00670623779296875, -0.014495849609375, -0.0028285980224609375, -0.0195159912109375, -0.015899658203125, 0.0052642822265625, 0.00551605224609375, -0.0059967041015625, 0.005138397216796875, 0.00997161865234375, 0.0083770751953125, 0.0141143798828125, 0.017303466796875, 0.01039886474609375, -0.01540374755859375, -0.03668212890625, -0.007518768310546875, -0.006717681884765625, 0.0013685226440429688, -0.04876708984375, 0.050567626953125, 0.03546142578125, -0.037689208984375, -0.0146331787109375, -0.037567138671875, 0.050262451171875, 0.00373077392578125, -0.033233642578125, -0.0055084228515625, -0.0071258544921875, 0.019500732421875, 0.040313720703125, 0.01023101806640625, -0.0025615692138671875, -0.0259552001953125, -0.0645751953125, 0.00832366943359375, -0.0251922607421875, 0.021881103515625, 0.028350830078125, 0.043609619140625, -0.003570556640625, -0.015838623046875, 0.050262451171875, -0.0302886962890625, 0.047149658203125, -0.02899169921875, -0.020538330078125, -0.00705718994140625, -0.0177154541015625, 0.01242828369140625, -0.0036983489990234375, -0.0294189453125, -0.0025577545166015625, -0.033172607421875, 0.01143646240234375, -0.05328369140625, -0.03704833984375, 0.0256500244140625, -0.01015472412109375, 0.11676025390625, -0.004894256591796875, 0.0635986328125, 0.02191162109375, -0.0799560546875, 0.03143310546875, 0.01259613037109375, 0.042633056640625, 0.0218963623046875, -0.0014190673828125, -0.0012712478637695312, 0.07275390625, 0.01163482666015625, 0.0219879150390625, -0.0239105224609375, -0.0030307769775390625, 0.05694580078125, 0.03515625, -0.0015821456909179688, 0.03717041015625, -0.0577392578125, 0.0285797119140625, 0.012664794921875, 0.053985595703125, 0.0298614501953125, -0.031402587890625, -0.07537841796875, 0.01467132568359375, -0.052642822265625, 0.01296234130859375, -0.04974365234375, 0.03216552734375, 0.048980712890625, -0.0672607421875, 0.0039043426513671875, 0.040618896484375, 0.0095672607421875, 0.00321197509765625, 0.04656982421875, -0.0264129638671875, -0.03216552734375, 0.023529052734375, -0.0173187255859375, 0.0063323974609375, -0.020294189453125, -0.01091766357421875, -0.00420379638671875, 0.07330322265625, 0.016326904296875, 0.046417236328125, 0.035614013671875, -0.06024169921875, 0.0262908935546875, 0.021697998046875, 0.0106964111328125, -0.0128326416015625, -0.0015544891357421875, 0.061614990234375, -0.0221710205078125, -0.055206298828125, 0.0031070709228515625, 0.03643798828125, 0.00957489013671875, -0.0034236907958984375, -0.01004791259765625, -0.056854248046875, -0.002124786376953125, -0.00598907470703125, -0.019775390625, 0.01200103759765625, 0.0499267578125, 0.0218048095703125, 0.00382232666015625, 0.04571533203125, -0.0182952880859375, -0.01380157470703125, 0.01207733154296875, -0.001346588134765625, -0.043853759765625, 0.036376953125, -0.0374755859375, 0.033233642578125, -0.0506591796875, 0.0712890625, 0.039642333984375, -0.046539306640625, 0.0161285400390625, -0.0255889892578125, -0.0220794677734375, -0.0161590576171875, -0.01145172119140625, -0.0266876220703125, -0.0501708984375, 0.0033550262451171875, 0.029266357421875, 0.004856109619140625, -0.01390838623046875, -0.0129241943359375, -0.040130615234375, -0.033966064453125, -0.0005736351013183594, -0.10235595703125, -0.05767822265625, -0.0045166015625, -0.10736083984375, 0.036712646484375, -0.054962158203125, -0.048797607421875, -0.005580902099609375, -0.00887298583984375, 0.01190948486328125, 0.00934600830078125, -0.04345703125, -0.06903076171875, -0.05615234375, -0.06500244140625, -0.016998291015625, -0.01424407958984375, -0.0108489990234375, -0.0066986083984375, 0.0086669921875, -0.0015239715576171875, -0.0183563232421875, -0.01074981689453125, 0.0084381103515625, -0.0030918121337890625, -0.036041259765625, 0.0034885406494140625, -0.017669677734375, 0.0259552001953125, 0.00505828857421875, -0.0024089813232421875, 0.0150146484375, -0.01110076904296875, -0.0238037109375, 0.003879547119140625, 0.01294708251953125, 0.0240936279296875, -0.0019207000732421875, -0.01654052734375, 0.00858306884765625, -0.008056640625, -0.049102783203125, -0.03375244140625, 0.0115203857421875, -0.051361083984375, 0.0219573974609375, 0.0278778076171875, -0.01450347900390625, 0.034454345703125, -0.0024261474609375, 0.0007152557373046875, 0.0025272369384765625, -0.01262664794921875, -0.0135498046875, -0.01214599609375, -0.0212554931640625, 0.009185791015625, 0.024200439453125, 0.0198516845703125, -0.014129638671875, -0.021820068359375, -0.0118865966796875, -0.0012531280517578125, 0.005344390869140625, -0.0302886962890625, -0.040283203125, -0.024078369140625, 0.040374755859375, -0.02178955078125, 0.022064208984375, -0.031707763671875, -0.01483917236328125, -0.0095977783203125, 0.07635498046875, -0.0030345916748046875, 0.0016231536865234375, 0.043121337890625, 0.0275421142578125, -0.090087890625, -0.046783447265625, -0.08172607421875, 0.01306915283203125, -0.0220489501953125, 0.0021648406982421875, 0.0014390945434570312, -0.0330810546875, 0.006313323974609375, -0.0205535888671875, -0.0079803466796875, -0.01519012451171875, 0.0150604248046875, -0.032806396484375, 0.01036834716796875, -0.01435089111328125, -0.017181396484375, -0.03546142578125, 0.004741668701171875, -0.02410888671875, -0.067626953125, -0.0191650390625, 0.01192474365234375, 0.057098388671875, 0.0178680419921875, -0.06610107421875, -0.0003006458282470703, 0.060943603515625, -0.00606536865234375, 0.0019044876098632812, 0.02490234375, 0.0242767333984375, -0.0090789794921875, -0.0258636474609375, 0.01102447509765625, -0.041473388671875, 0.0223388671875, -0.0002980232238769531, -0.072998046875, -0.005863189697265625, -0.00266265869140625, -0.00734710693359375, 0.039703369140625, -0.045501708984375, -0.06390380859375, -0.0184326171875, -0.0148162841796875, -0.0218353271484375, -0.0231475830078125, 0.007244110107421875, -0.00628662109375, -0.04107666015625, 0.08782958984375, 0.00736236572265625, 0.0035247802734375, -0.0186920166015625, 0.0882568359375, 0.006023406982421875, -0.03375244140625, -0.0030574798583984375, -0.00785064697265625, 0.00699615478515625, -0.0202178955078125, 0.0792236328125, 0.0181884765625, -0.002872467041015625, 0.09564208984375, -0.031280517578125, 0.00960540771484375, -0.02484130859375, 0.04595947265625, 0.00974273681640625, -0.0142669677734375, 0.0092620849609375, 0.016815185546875, -0.0178985595703125, -0.01593017578125, -0.01116180419921875, -0.0162353515625, 0.0241241455078125, 0.01503753662109375, -0.035491943359375, 0.037384033203125, -0.004505157470703125, -0.032684326171875, 0.01174163818359375, -0.036163330078125, 0.0271148681640625, 0.0305633544921875, -0.0157318115234375, 0.00860595703125, -0.0007123947143554688, -0.010406494140625, -0.002960205078125, -0.011016845703125, 0.0015506744384765625, 0.017242431640625, 0.00733184814453125, -0.01306915283203125, -0.008087158203125, -0.00615692138671875, 0.031463623046875, -0.0367431640625, -0.06097412109375, -0.00278472900390625, -0.0206756591796875, 0.0421142578125, 0.044891357421875, -0.0213470458984375, 0.040435791015625, 0.031646728515625, -0.07403564453125, -0.004589080810546875, 0.017730712890625, -0.04412841796875, -0.0606689453125, 0.01824951171875, -0.004482269287109375, 0.009521484375, -0.02313232421875, 0.08831787109375, -0.06475830078125, 0.0516357421875, -0.003681182861328125, 0.00019240379333496094, -0.0004100799560546875, -0.007335662841796875, 0.024749755859375, 0.01934814453125, 0.01503753662109375, -0.04400634765625, 0.027862548828125, -0.0079193115234375, -0.03179931640625, 0.0132598876953125, 0.0035419464111328125, -0.01922607421875, 0.02197265625, 0.01317596435546875, 0.01139068603515625, -0.01528167724609375, 0.00711822509765625, -0.0269622802734375, -0.026214599609375, -0.032958984375, 0.012939453125, 0.06103515625, 0.0199127197265625, 0.0214996337890625, -0.03521728515625, -0.00445556640625, -0.0162353515625, 0.008697509765625, -0.01678466796875, -0.020599365234375, -0.0233917236328125, -0.020416259765625, 0.0058441162109375, 0.0146484375, -0.072509765625, -0.040130615234375, -0.0073394775390625, -0.002887725830078125, 0.051544189453125, -0.0379638671875, 0.0150299072265625, -0.029296875, 0.033935546875, -0.00888824462890625, 0.006256103515625, 0.0657958984375, 0.044189453125, -0.0499267578125, -0.0283966064453125, -0.018768310546875, -0.003742218017578125, -0.015350341796875, -0.03997802734375, -0.0296783447265625, 0.01207733154296875, 0.01232147216796875, 0.0180511474609375, -0.01351165771484375, -0.01261138916015625, 0.01380157470703125, 0.0279998779296875, -0.0033321380615234375, 0.0684814453125, -0.01207733154296875, 0.07135009765625, 0.012542724609375, 0.021575927734375, -0.0005640983581542969, 0.0214385986328125, -0.0244293212890625, -0.0013608932495117188, -0.01666259765625, -0.013397216796875, -0.01483917236328125, -0.005157470703125, -0.0012378692626953125, 0.025848388671875, 0.04327392578125, 0.0028476715087890625, 0.0067596435546875, 0.01512908935546875, 0.017303466796875, -0.0146942138671875, 0.01129150390625, 0.0200042724609375, -0.0411376953125, 0.050689697265625, -0.02178955078125, 0.01451873779296875, -0.03558349609375, -0.017974853515625, 0.055084228515625, -0.016387939453125, 0.0287628173828125, 0.0198516845703125, -0.007625579833984375, -0.011627197265625, 0.04302978515625, 0.01378631591796875, 0.0233001708984375, 0.0170745849609375, 0.00936126708984375, 0.01525115966796875, -0.00189208984375, -0.01399993896484375, 0.022491455078125, -0.01094818115234375, -0.01537322998046875, 0.00981903076171875, -0.0280914306640625, 0.01322174072265625, -0.01381683349609375, 0.01531219482421875, 0.0186004638671875, -0.04180908203125, -0.0089111328125, 0.0026836395263671875, -0.01340484619140625, -0.0294036865234375, 0.014312744140625, -0.0269775390625, -0.0239410400390625, 0.01641845703125, -0.03289794921875, -0.0054473876953125, 0.023712158203125, 0.0078887939453125, -0.0167999267578125, 0.0012407302856445312, -0.0012416839599609375, 0.0157470703125, 0.0237884521484375, 0.01462554931640625, -0.013946533203125, 0.02978515625, 0.0078125, -0.0251617431640625, 0.029144287109375, -0.05987548828125, -0.07562255859375, -0.027252197265625, -0.011474609375, -0.04351806640625, -0.01079559326171875, 0.006809234619140625, 0.044403076171875, 0.0428466796875, 0.00897979736328125, -0.021026611328125, 0.00518798828125, 0.0654296875, 0.0200042724609375, -0.042816162109375, 0.01220703125, 0.078857421875, -0.05511474609375, 0.032989501953125, 0.0275421142578125, -0.017547607421875, -0.0098876953125, 0.050750732421875, 0.06658935546875, 0.003997802734375, -0.037506103515625, 0.032318115234375, 0.04034423828125, -0.0206756591796875, 0.01519012451171875, 0.052642822265625, -0.047210693359375, -0.0123748779296875, 0.031097412109375, -0.003910064697265625, -0.0293731689453125, 0.0258026123046875, -0.05712890625, 0.09307861328125, 0.0088653564453125, 0.0036182403564453125, -0.00481414794921875, 0.040618896484375, -0.019622802734375, 0.017578125, -0.0214691162109375, 0.06658935546875, -0.000736236572265625, 0.0090484619140625, -0.047760009765625, -0.0006046295166015625, -0.0033969879150390625, 0.02874755859375, 0.0628662109375, 0.0154876708984375, -0.028472900390625, -0.041259765625, -0.02532958984375, 0.0158843994140625, -0.034027099609375, 0.03759765625, 0.0528564453125, 0.00931549072265625, 0.0232696533203125, -0.026519775390625, 0.034210205078125, -0.0992431640625, 0.048126220703125, 0.062255859375, -0.0010538101196289062, -0.01403045654296875, -0.005859375, 0.051300048828125, -0.0546875, -0.001926422119140625, 0.031402587890625, -0.0203704833984375, -0.0026645660400390625, 0.045928955078125, 0.00988006591796875, 0.01357269287109375, -0.055450439453125, -0.00539398193359375, 0.01812744140625, 0.0026569366455078125, -0.01180267333984375, 0.0137786865234375, 0.018157958984375, -0.0238494873046875, -0.007465362548828125, -0.0147247314453125, 0.00803375244140625, -0.01251220703125, 0.049224853515625, -0.0039215087890625, -0.00026798248291015625, -0.042327880859375, 0.0535888671875, 0.0142669677734375, 0.0211029052734375, -0.053863525390625, -0.06329345703125, -0.0007734298706054688, 0.0142974853515625, 0.044677734375, 0.0258026123046875, 0.054901123046875, 0.0011730194091796875, 0.05767822265625, 0.01885986328125, -0.0161285400390625, -0.01000213623046875, 0.0048065185546875, 0.000019073486328125, 0.0289459228515625, -0.0046234130859375, -0.00893402099609375, -0.04766845703125, -0.00067901611328125, -0.0127716064453125, 0.05084228515625, 0.0272674560546875, 0.033660888671875, 0.0003151893615722656, -0.0207977294921875, -0.033935546875, 0.04656982421875, 0.0246734619140625, 0.02679443359375, -0.032257080078125, -0.0037899017333984375, 0.01488494873046875, 0.0321044921875, 0.0032958984375, 0.015472412109375, 0.0305328369140625, 0.034088134765625, 0.006580352783203125, -0.018463134765625, 0.0095367431640625, -0.005645751953125, 0.0125274658203125, -0.0198516845703125, 0.0231170654296875, -0.00978851318359375, -0.0120697021484375, -0.0115814208984375, 0.061981201171875, -0.01558685302734375, -0.01313018798828125, 0.04779052734375, -0.0037784576416015625, -0.0190277099609375, 0.01336669921875, -0.004695892333984375, 0.0692138671875, 0.01245880126953125, -0.0455322265625, 0.0014238357543945312, 0.000024259090423583984, -0.027679443359375, -0.00768280029296875, 0.032501220703125, -0.0243988037109375, 0.03497314453125, 0.0152130126953125, -0.029205322265625, 0.053253173828125, -0.0221099853515625, 0.0194091796875, 0.034332275390625, 0.00013446807861328125, -0.006504058837890625, -0.0307159423828125, -0.033966064453125, -0.00945281982421875, 0.05230712890625, 0.0212554931640625, -0.0128326416015625, 0.0206756591796875, 0.0374755859375, 0.01122283935546875, -0.008697509765625, 0.039520263671875, 0.03448486328125, -0.034912109375, 0.04522705078125, 0.0312347412109375, -0.0207366943359375, -0.052154541015625, 0.0499267578125, -0.004062652587890625, 0.044158935546875, 0.03033447265625, -0.0170440673828125, 0.021087646484375, 0.043365478515625, 0.055023193359375, -0.0304412841796875, -0.081787109375, -0.0426025390625, 0.03125, -0.0257568359375, 0.043243408203125, 0.03582763671875, 0.0226898193359375, -0.0185394287109375, 0.0210113525390625, 0.00384521484375, 0.006160736083984375, -0.024871826171875, 0.0146484375, -0.058837890625, -0.01186370849609375, -0.02679443359375, -0.0216522216796875, -0.004150390625, -0.00258636474609375, 0.0240020751953125, -0.012237548828125, 0.01097869873046875, 0.017425537109375, 0.0306854248046875, 0.054229736328125, 0.03277587890625, 0.0274200439453125, 0.0131683349609375, -0.00833892822265625, -0.0263824462890625, -0.0306243896484375, -0.0338134765625, -0.053619384765625, -0.0034637451171875, 0.01189422607421875, -0.0173187255859375, -0.050872802734375, -0.041290283203125, 0.007091522216796875, 0.0145263671875, -0.00666046142578125, -0.0494384765625, 0.020599365234375, -0.037139892578125, 0.03863525390625, -0.01061248779296875, 0.01113128662109375, 0.00955963134765625, 0.022705078125, -0.040283203125, -0.006389617919921875, -0.020050048828125, -0.00812530517578125, -0.0140380859375, 0.018646240234375, 0.0221405029296875, -0.0235443115234375, 0.0362548828125, 0.0186767578125, 0.00695037841796875, 0.05718994140625, -0.02606201171875, -0.00664520263671875, 0.023956298828125, 0.021636962890625, -0.0251617431640625, -0.0701904296875, 0.004970550537109375, -0.02886962890625, 0.0316162109375, -0.037506103515625, 0.00421905517578125, 0.006046295166015625, -0.04608154296875, -0.0634765625, 0.0413818359375, -0.01245880126953125, -0.03045654296875, -0.048065185546875, 0.02374267578125, 0.0186767578125, 0.0198516845703125, -0.0208892822265625, 0.01561737060546875, -0.05157470703125, -0.015899658203125, -0.004344940185546875, -0.0114593505859375, 0.01187896728515625, -0.01227569580078125, -0.0799560546875, 0.00917816162109375, 0.005680084228515625, -0.01219940185546875, -0.00933837890625, 0.002979278564453125, 0.00255584716796875, 0.0126800537109375, -0.01505279541015625, -0.0260467529296875, -0.003932952880859375, 0.00550079345703125, -0.0035724639892578125, 0.0220794677734375, -0.0127105712890625, 0.0377197265625, 0.04296875, 0.067626953125, 0.01519012451171875, -0.04736328125, 0.002735137939453125, -0.01245880126953125, -0.042388916015625, -0.0264739990234375, 0.0179443359375, -0.05218505859375, -0.007503509521484375, -0.0205841064453125, 0.0124664306640625, -0.0088958740234375, -0.0254364013671875, -0.00852203369140625, -0.03704833984375, 0.0019102096557617188, -0.0180816650390625, 0.00467681884765625, -0.0487060546875, 0.0704345703125, -0.042877197265625, -0.01546478271484375, 0.045684814453125, 0.0218353271484375, 0.0272979736328125, 0.044158935546875, -0.014923095703125, -0.0197296142578125, -0.01393890380859375, 0.025390625, -0.022186279296875, 0.06402587890625, -0.0390625, -0.0191650390625, 0.007747650146484375, -0.0174407958984375, -0.016448974609375, -0.030029296875, -0.01983642578125, 0.0251312255859375, -0.0269317626953125, 0.013153076171875, -0.02435302734375, -0.052459716796875, -0.02752685546875, 0.0007834434509277344, -0.005558013916015625, 0.0018911361694335938, 0.03594970703125, -0.0257110595703125, -0.00409698486328125, 0.0218963623046875, 0.00852203369140625, -0.048065185546875, 0.0183258056640625, -0.023712158203125, 0.04046630859375, 0.00775146484375 ]
72c35b1b22cba1f136093199ef37260525fc12b3
Wordpress Stackexchange Q: What does the token %1$s in WordPress represent I have seen the token %1$ and similar ones more often in the WordPress code lately, but I can't figure out what it means. Here an example: sprintf( __( '%1$s is deprecated. Use %2$s instead.' ), Does anyone know what it means? A: It's not a WordPress thing, it's a PHP thing. %1$s, %2$s, etc., are placeholders for variables in a formatted string returned by sprintf() (or printed by printf()). The 1$ indicates it's the first variable, 2$ would be the second, and so forth. The s indicates it's a string variable. Other options exist (eg, d would indicate an integer). The example you give is incomplete: it's certainly something like this in its entirety: sprintf( __( '%1$s is deprecated. Use %2$s instead.' ), $string_1, $string_2 );
Q: What does the token %1$s in WordPress represent I have seen the token %1$ and similar ones more often in the WordPress code lately, but I can't figure out what it means. Here an example: sprintf( __( '%1$s is deprecated. Use %2$s instead.' ), Does anyone know what it means? A: It's not a WordPress thing, it's a PHP thing. %1$s, %2$s, etc., are placeholders for variables in a formatted string returned by sprintf() (or printed by printf()). The 1$ indicates it's the first variable, 2$ would be the second, and so forth. The s indicates it's a string variable. Other options exist (eg, d would indicate an integer). The example you give is incomplete: it's certainly something like this in its entirety: sprintf( __( '%1$s is deprecated. Use %2$s instead.' ), $string_1, $string_2 ); A: Read the PHP docs on sprintf(). * *%s is just a placeholder for a string *%d is just a placeholder for a number So an example of sprintf would look like this: $variable = sprintf( 'The %s ran down the %s', // String with placeholders 'dog', // Placed in the first %s placeholder 'street' // Placed in the second %s placeholder ); Which will return a string to our variable $variable: The dog ran down the street By numbering the placeholders it's both a developer-friendly way to quickly tell which following string will be placed where. It also allows us to reuse a string. Let's take another example with numbered placeholders: $variable = sprintf( 'The %1$s ran down the %2$s. The %2$s was made of %3$s', // String with placeholders 'dog', // Will always be used in %1$s placeholder 'street', // Will always be used in %2$s placeholder 'gravel' // Will always be used in %3$s placeholder ); Which will return a string to our variable $variable: The dog ran down the street. The street was made of gravel Finally, the __() function let's us translate strings passed to it. By passing __() placeholders, and then passing that whole string to sprintf(), we can translate whatever is passed to the translating function allowing us to make our string and application a bit more dynamic.
wordpress
{ "language": "en", "length": 361, "provenance": "stackexchange_00019.jsonl.gz:484011", "question_score": "6", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/294327" }
[ 0.006046295166015625, -0.005847930908203125, -0.0096282958984375, -0.033203125, -0.020782470703125, 0.0082244873046875, -0.0230560302734375, -0.0189666748046875, 0.048736572265625, 0.0059967041015625, -0.017333984375, -0.028411865234375, 0.01617431640625, -0.03179931640625, -0.01654052734375, -0.01529693603515625, 0.01255035400390625, -0.033966064453125, -0.0229339599609375, -0.0247650146484375, -0.0155029296875, -0.0261993408203125, 0.02630615234375, 0.0273284912109375, 0.03619384765625, -0.0692138671875, 0.008056640625, -0.04046630859375, 0.0184783935546875, -0.0242156982421875, 0.00803375244140625, 0.040557861328125, -0.005100250244140625, 0.056793212890625, -0.0244293212890625, -0.006031036376953125, -0.0128021240234375, 0.04522705078125, 0.035369873046875, -0.01328277587890625, 0.0179901123046875, -0.00849151611328125, 0.04278564453125, -0.037750244140625, 0.0018110275268554688, 0.016143798828125, -0.0003273487091064453, -0.0166778564453125, -0.00909423828125, 0.0159912109375, 0.02227783203125, -0.0168304443359375, 0.0232696533203125, 0.0261077880859375, -0.017425537109375, -0.01142120361328125, 0.042022705078125, 0.0034389495849609375, 0.012237548828125, 0.026031494140625, -0.00426483154296875, 0.06890869140625, -0.01207733154296875, -0.0270538330078125, -0.00846099853515625, 0.018096923828125, -0.036376953125, 0.0225677490234375, -0.01080322265625, -0.050567626953125, -0.037353515625, -0.03662109375, -0.0088348388671875, -0.0170135498046875, 0.01000213623046875, 0.04376220703125, -0.0024051666259765625, 0.03399658203125, -0.001743316650390625, 0.0080108642578125, 0.03997802734375, -0.041961669921875, 0.006946563720703125, 0.0433349609375, -0.00531005859375, 0.041534423828125, 0.006443023681640625, -0.0335693359375, -0.0169525146484375, -0.003143310546875, -0.0302734375, 0.019317626953125, -0.004917144775390625, -0.0011272430419921875, -0.04254150390625, 0.00885009765625, 0.0002493858337402344, 0.0212554931640625, 0.005153656005859375, -0.008056640625, -0.0120086669921875, -0.01557159423828125, -0.04833984375, -0.01200103759765625, -0.008575439453125, 0.0300445556640625, 0.041259765625, 0.016510009765625, -0.00786590576171875, 0.0019254684448242188, -0.043701171875, 0.00226593017578125, -0.07049560546875, -0.061981201171875, -0.0193634033203125, 0.08642578125, -0.035064697265625, -0.0218963623046875, -0.002140045166015625, -0.002803802490234375, -0.00879669189453125, 0.0226593017578125, 0.0306549072265625, -0.054901123046875, -0.01226806640625, -0.023162841796875, 0.00447845458984375, -0.045440673828125, -0.0094146728515625, 0.0592041015625, -0.0019464492797851562, -0.0036487579345703125, -0.007556915283203125, -0.0035762786865234375, -0.0283050537109375, -0.0321044921875, 0.036163330078125, -0.01019287109375, -0.0254364013671875, 0.034912109375, -0.058929443359375, -0.0202789306640625, 0.060028076171875, -0.05511474609375, -0.02679443359375, -0.029571533203125, 0.022003173828125, 0.052001953125, -0.0221710205078125, -0.02618408203125, 0.0199432373046875, 0.0173797607421875, 0.0205535888671875, -0.01523590087890625, -0.051666259765625, 0.03790283203125, -0.072021484375, 0.031585693359375, -0.0231170654296875, -0.00003123283386230469, 0.0145111083984375, -0.0232391357421875, 0.0247802734375, -0.00438690185546875, -0.0240631103515625, 0.04473876953125, -0.057586669921875, -0.003986358642578125, 0.019866943359375, -0.002605438232421875, 0.0133209228515625, -0.0016956329345703125, 0.0008997917175292969, -0.00472259521484375, 0.0015583038330078125, 0.010467529296875, -0.0182952880859375, 0.0125579833984375, 0.031463623046875, -0.0002465248107910156, -0.01509857177734375, -0.026763916015625, 0.06109619140625, -0.015869140625, -0.0307769775390625, 0.003536224365234375, 0.004108428955078125, 0.0171966552734375, 0.023834228515625, -0.00580596923828125, 0.03143310546875, 0.0003120899200439453, -0.053863525390625, -0.01428985595703125, 0.0121002197265625, 0.004283905029296875, -0.02252197265625, -0.00904083251953125, 0.0089263916015625, 0.021820068359375, 0.045135498046875, 0.0015230178833007812, -0.0081939697265625, -0.02740478515625, -0.0784912109375, -0.01290130615234375, -0.021331787109375, 0.0231475830078125, -0.0262908935546875, 0.0390625, 0.02008056640625, -0.0130615234375, -0.0222015380859375, 0.0274200439453125, 0.01497650146484375, -0.0136260986328125, 0.0013513565063476562, 0.031005859375, 0.003376007080078125, 0.0027256011962890625, -0.012298583984375, -0.0183563232421875, 0.0017805099487304688, 0.032257080078125, 0.0306549072265625, -0.03875732421875, 0.004611968994140625, -0.026947021484375, 0.04888916015625, -0.0274658203125, 0.05804443359375, 0.0413818359375, 0.018096923828125, 0.0450439453125, -0.0248870849609375, -0.01319122314453125, -0.0268402099609375, -0.0211181640625, -0.0033969879150390625, 0.031219482421875, 0.028564453125, 0.02691650390625, -0.0211029052734375, -0.04248046875, 0.0833740234375, 0.027862548828125, 0.0265045166015625, -0.048797607421875, 0.0128936767578125, 0.0282135009765625, -0.04156494140625, -0.0379638671875, 0.0240325927734375, -0.046875, -0.01372528076171875, 0.044036865234375, -0.0026531219482421875, 0.01654052734375, -0.02734375, 0.01922607421875, -0.0228271484375, -0.0672607421875, -0.0225067138671875, -0.04296875, 0.031890869140625, -0.0119171142578125, 0.0184326171875, 0.0107574462890625, 0.00028204917907714844, 0.00044465065002441406, 0.003925323486328125, -0.04693603515625, -0.0128021240234375, 0.0168609619140625, -0.032958984375, -0.00479888916015625, 0.003204345703125, 0.0242462158203125, -0.04278564453125, -0.012542724609375, -0.044830322265625, 0.021728515625, -0.038055419921875, -0.01251220703125, -0.048065185546875, -0.046783447265625, 0.01324462890625, 0.00238800048828125, 0.0084228515625, -0.016204833984375, 0.0046539306640625, 0.041351318359375, 0.002651214599609375, 0.041412353515625, -0.0196685791015625, -0.0139312744140625, -0.0176849365234375, 0.0168914794921875, 0.00180816650390625, 0.0028533935546875, 0.0101776123046875, 0.03436279296875, 0.002323150634765625, -0.005626678466796875, 0.0190887451171875, 0.0139923095703125, 0.0450439453125, 0.00859832763671875, 0.0131378173828125, 0.0231170654296875, -0.041229248046875, -0.00823974609375, 0.0221405029296875, 0.06365966796875, -0.01145172119140625, -0.037445068359375, -0.01380157470703125, 0.028045654296875, -0.0965576171875, -0.0838623046875, 0.0347900390625, -0.0738525390625, -0.0154571533203125, 0.01311492919921875, -0.04779052734375, -0.007740020751953125, 0.051483154296875, -0.0014047622680664062, 0.0008568763732910156, -0.06268310546875, -0.022125244140625, -0.05914306640625, -0.047576904296875, 0.0156402587890625, 0.016448974609375, 0.01371002197265625, 0.0093841552734375, 0.0289306640625, 0.01276397705078125, 0.0080413818359375, 0.041168212890625, 0.0171051025390625, 0.024932861328125, 0.011810302734375, 0.0045013427734375, -0.0249786376953125, -0.02557373046875, 0.002338409423828125, 0.02191162109375, -0.00799560546875, -0.00453948974609375, -0.01488494873046875, -0.021697998046875, 0.032623291015625, -0.0117645263671875, 0.01361846923828125, 0.0233001708984375, 0.0098724365234375, -0.005924224853515625, -0.031005859375, -0.019866943359375, -0.01800537109375, -0.060028076171875, -0.0009469985961914062, 0.064697265625, -0.005138397216796875, -0.01503753662109375, -0.0255279541015625, -0.052703857421875, -0.0259857177734375, -0.03717041015625, -0.0684814453125, 0.027099609375, 0.00800323486328125, 0.0155029296875, 0.05615234375, 0.025238037109375, -0.037353515625, 0.049713134765625, 0.0150604248046875, -0.014739990234375, 0.003879547119140625, -0.03314208984375, -0.0015401840209960938, 0.0032634735107421875, 0.01407623291015625, -0.03948974609375, 0.0196685791015625, -0.028564453125, 0.007598876953125, -0.04193115234375, 0.006275177001953125, -0.019378662109375, -0.00994873046875, -0.009002685546875, 0.0294036865234375, -0.0687255859375, -0.05059814453125, -0.0292510986328125, 0.002948760986328125, -0.0035419464111328125, 0.01690673828125, 0.0012912750244140625, -0.0003437995910644531, -0.02056884765625, 0.0282440185546875, 0.0029888153076171875, -0.01470947265625, 0.0037994384765625, -0.030426025390625, -0.0028171539306640625, -0.0005741119384765625, 0.0014562606811523438, -0.02508544921875, 0.0245819091796875, -0.057342529296875, -0.055572509765625, -0.03167724609375, 0.005107879638671875, 0.06005859375, 0.04949951171875, -0.10748291015625, 0.008209228515625, 0.037567138671875, -0.0179290771484375, -0.0445556640625, 0.0200653076171875, -0.0027141571044921875, -0.0039005279541015625, 0.06463623046875, 0.009368896484375, 0.00934600830078125, -0.0036945343017578125, 0.0120391845703125, -0.0259552001953125, -0.024871826171875, -0.00971221923828125, -0.041748046875, 0.036468505859375, -0.04150390625, -0.0162811279296875, -0.023712158203125, -0.00612640380859375, 0.032562255859375, -0.037567138671875, 0.035125732421875, -0.036376953125, -0.0080718994140625, 0.06634521484375, 0.08563232421875, 0.0019216537475585938, -0.0117034912109375, 0.050750732421875, 0.00981903076171875, -0.07098388671875, -0.083984375, -0.00594329833984375, 0.0496826171875, -0.03375244140625, 0.00914764404296875, 0.038787841796875, -0.02276611328125, 0.0142059326171875, -0.001529693603515625, -0.020477294921875, -0.004413604736328125, 0.026458740234375, -0.00978851318359375, -0.01338958740234375, 0.0020847320556640625, -0.0308380126953125, 0.038818359375, 0.046722412109375, -0.003986358642578125, -0.005466461181640625, -0.0006213188171386719, 0.0195465087890625, -0.036865234375, 0.022979736328125, -0.01122283935546875, -0.096435546875, 0.040252685546875, 0.037109375, -0.0035572052001953125, -0.0001569986343383789, -0.00200653076171875, 0.07269287109375, 0.0164947509765625, -0.0005888938903808594, -0.017059326171875, -0.0109100341796875, -0.00658416748046875, -0.0088653564453125, 0.043487548828125, 0.0003304481506347656, -0.025360107421875, -0.001926422119140625, 0.0039043426513671875, 0.005840301513671875, -0.044647216796875, -0.021881103515625, 0.003299713134765625, 0.047607421875, 0.01544952392578125, 0.050262451171875, -0.0266571044921875, -0.0128326416015625, -0.0121307373046875, 0.0012388229370117188, 0.0814208984375, -0.0189056396484375, -0.004467010498046875, -0.004467010498046875, -0.0157318115234375, -0.01116943359375, -0.025604248046875, 0.049530029296875, 0.0222625732421875, 0.0011205673217773438, -0.0243988037109375, -0.0138702392578125, -0.0134124755859375, -0.005603790283203125, 0.01372528076171875, 0.0201873779296875, 0.0253448486328125, -0.05535888671875, 0.055938720703125, -0.037384033203125, -0.004604339599609375, -0.0009131431579589844, 0.035736083984375, -0.008026123046875, -0.027252197265625, 0.03717041015625, -0.01184844970703125, -0.01500701904296875, -0.00689697265625, -0.020721435546875, 0.0039215087890625, -0.027374267578125, -0.0306396484375, 0.01611328125, 0.019775390625, 0.005008697509765625, 0.01885986328125, -0.006435394287109375, 0.036590576171875, 0.0267181396484375, 0.00838470458984375, -0.0208740234375, -0.0195465087890625, 0.042236328125, -0.007534027099609375, -0.001270294189453125, -0.034454345703125, 0.0086822509765625, -0.0230865478515625, -0.0034275054931640625, 0.0308074951171875, -0.0127716064453125, 0.01438140869140625, -0.0284576416015625, -0.0011034011840820312, -0.004337310791015625, -0.0187225341796875, 0.07867431640625, 0.0350341796875, -0.1126708984375, 0.037841796875, -0.049407958984375, 0.00484466552734375, -0.005725860595703125, -0.042388916015625, -0.07183837890625, -0.0312347412109375, 0.0282440185546875, 0.044952392578125, 0.0170440673828125, 0.0168304443359375, 0.005542755126953125, 0.027923583984375, -0.000007092952728271484, 0.12213134765625, -0.011077880859375, 0.02191162109375, 0.00007855892181396484, 0.0026702880859375, -0.00464630126953125, 0.021453857421875, 0.0080718994140625, -0.015625, 0.030609130859375, 0.036224365234375, -0.020416259765625, -0.052032470703125, 0.038421630859375, -0.050018310546875, 0.0286102294921875, -0.01277923583984375, -0.007537841796875, 0.03558349609375, 0.01641845703125, -0.025970458984375, -0.0251922607421875, 0.044677734375, 0.020843505859375, -0.0196990966796875, -0.019256591796875, 0.026611328125, 0.005298614501953125, 0.03167724609375, -0.03363037109375, -0.025909423828125, -0.0189208984375, 0.059295654296875, -0.01385498046875, 0.0242462158203125, 0.045654296875, 0.0217132568359375, 0.0238800048828125, 0.0072479248046875, 0.008941650390625, -0.02569580078125, -0.054046630859375, 0.0236358642578125, 0.0266876220703125, 0.037384033203125, -0.0269775390625, -0.0038661956787109375, 0.041015625, -0.027435302734375, 0.0267486572265625, 0.017059326171875, 0.042449951171875, -0.040008544921875, 0.01074981689453125, 0.01053619384765625, -0.01763916015625, 0.0340576171875, -0.0017881393432617188, -0.010223388671875, -0.047210693359375, 0.00005829334259033203, 0.060791015625, -0.0092010498046875, 0.0006189346313476562, 0.030120849609375, 0.0007252693176269531, -0.0166168212890625, -0.0004520416259765625, 0.001861572265625, 0.007061004638671875, -0.002643585205078125, -0.015380859375, 0.01384735107421875, -0.02459716796875, -0.0280303955078125, 0.016387939453125, -0.03839111328125, -0.074462890625, -0.015411376953125, -0.0277252197265625, 0.006984710693359375, 0.005313873291015625, 0.0243072509765625, 0.0396728515625, 0.060699462890625, 0.00980377197265625, -0.036956787109375, 0.034912109375, 0.0226287841796875, 0.045684814453125, -0.0030517578125, -0.0020542144775390625, 0.07781982421875, -0.01983642578125, 0.00714111328125, 0.02301025390625, 0.0306243896484375, -0.01262664794921875, -0.0164947509765625, 0.06353759765625, -0.031341552734375, -0.01143646240234375, 0.01476287841796875, 0.00641632080078125, -0.0072479248046875, -0.007633209228515625, -0.038787841796875, -0.06103515625, -0.033843994140625, -0.039886474609375, -0.037078857421875, 0.0286407470703125, -0.0078887939453125, -0.038116455078125, -0.0014982223510742188, 0.040924072265625, -0.00855255126953125, 0.04150390625, -0.01983642578125, -0.076904296875, -0.05218505859375, -0.0114898681640625, 0.00498199462890625, -0.0115814208984375, 0.031890869140625, 0.0302581787109375, 0.01145172119140625, 0.043060302734375, 0.01148223876953125, 0.045166015625, 0.0147705078125, -0.008209228515625, -0.0190887451171875, 0.01480865478515625, 0.0074005126953125, -0.0255126953125, 0.039093017578125, -0.006786346435546875, -0.01715087890625, 0.053619384765625, -0.0265350341796875, 0.0284271240234375, -0.0086212158203125, 0.0108642578125, -0.00803375244140625, 0.04632568359375, 0.050018310546875, -0.004024505615234375, -0.0113677978515625, -0.054962158203125, 0.007213592529296875, 0.042755126953125, -0.0150909423828125, 0.004619598388671875, 0.02496337890625, 0.01213836669921875, -0.01555633544921875, -0.03460693359375, -0.01428985595703125, 0.027740478515625, -0.01212310791015625, 0.032196044921875, 0.052001953125, 0.0100250244140625, 0.08563232421875, 0.0092315673828125, 0.03582763671875, -0.007648468017578125, 0.0185699462890625, 0.070556640625, 0.0513916015625, 0.013519287109375, -0.011566162109375, 0.04180908203125, 0.060791015625, 0.07122802734375, -0.059906005859375, -0.0322265625, -0.021514892578125, -0.007904052734375, 0.061309814453125, -0.0238189697265625, 0.04949951171875, 0.011688232421875, -0.005157470703125, -0.024688720703125, -0.0035037994384765625, 0.046905517578125, -0.0174102783203125, 0.0287628173828125, 0.0360107421875, -0.012054443359375, 0.005672454833984375, -0.0292510986328125, -0.03387451171875, -0.0010824203491210938, 0.038421630859375, 0.04058837890625, 0.0214385986328125, 0.040863037109375, -0.022857666015625, 0.0005698204040527344, 0.022705078125, 0.026275634765625, 0.004894256591796875, 0.01024627685546875, -0.00524139404296875, 0.0160675048828125, 0.0050506591796875, -0.00868988037109375, -0.034149169921875, 0.025482177734375, 0.031524658203125, -0.054962158203125, -0.0291290283203125, -0.0193939208984375, -0.026885986328125, -0.057464599609375, -0.046661376953125, -0.0298004150390625, 0.002376556396484375, -0.01207733154296875, 0.059661865234375, 0.00533294677734375, -0.007843017578125, -0.0052032470703125, 0.0271148681640625, 0.006500244140625, -0.006549835205078125, 0.03497314453125, -0.0272369384765625, 0.024505615234375, 0.0204925537109375, -0.00801849365234375, -0.004940032958984375, -0.03033447265625, -0.028778076171875, -0.021209716796875, 0.0207977294921875, 0.04522705078125, -0.0186004638671875, 0.01493072509765625, -0.02056884765625, -0.00315093994140625, 0.00998687744140625, 0.0176239013671875, -0.012908935546875, 0.019683837890625, -0.00865936279296875, -0.059112548828125, -0.02557373046875, 0.006557464599609375, 0.0088653564453125, -0.01279449462890625, 0.0626220703125, 0.00966644287109375, -0.006443023681640625, 0.01328277587890625, 0.0390625, -0.037384033203125, -0.005428314208984375, 0.06744384765625, -0.014556884765625, -0.0019741058349609375, -0.0215606689453125, -0.0079345703125, 0.01462554931640625, 0.0250091552734375, -0.04547119140625, 0.0018281936645507812, 0.01435089111328125, 0.02020263671875, -0.0023174285888671875, 0.05303955078125, -0.017730712890625, -0.0743408203125, -0.06768798828125, -0.00014448165893554688, 0.0220794677734375, 0.06451416015625, -0.0007991790771484375, 0.035919189453125, 0.027008056640625, -0.039886474609375, 0.0238494873046875, -0.059234619140625, 0.043701171875, 0.039276123046875, 0.0305023193359375, 0.04791259765625, -0.002857208251953125, -0.0277557373046875, 0.031524658203125, 0.0014104843139648438, 0.0040740966796875, -0.00917816162109375, 0.030517578125, -0.00731658935546875, 0.025115966796875, 0.029052734375, 0.01137542724609375, 0.004791259765625, 0.00009751319885253906, -0.01493072509765625, 0.0011081695556640625, -0.027801513671875, -0.01053619384765625, -0.05224609375, 0.0044708251953125, 0.040191650390625, -0.002101898193359375, 0.06414794921875, -0.01125335693359375, -0.005413055419921875, -0.01277923583984375, -0.0250091552734375, 0.04034423828125, -0.0015077590942382812, -0.020294189453125, -0.0285186767578125, -0.01552581787109375, 0.035430908203125, -0.044586181640625, -0.021881103515625, -0.055450439453125, -0.0755615234375, -0.0618896484375, 0.0643310546875, -0.057891845703125, 0.0306396484375, 0.024444580078125, -0.0274810791015625, -0.0021648406982421875, 0.030517578125, 0.032684326171875, 0.08343505859375, 0.00725555419921875, -0.042938232421875, 0.0266876220703125, -0.0264739990234375, 0.012176513671875, -0.0626220703125, -0.01013946533203125, -0.09613037109375, 0.0123291015625, 0.01849365234375, -0.020782470703125, -0.006870269775390625, -0.037017822265625, -0.09039306640625, 0.024261474609375, -0.005321502685546875, -0.037109375, -0.065185546875, -0.052520751953125, -0.0112762451171875, 0.04119873046875, -0.0225677490234375, -0.023223876953125, -0.054901123046875, 0.0662841796875, -0.0015096664428710938, -0.031890869140625, 0.034393310546875, -0.00907135009765625, -0.0628662109375, 0.00024628639221191406, -0.01261138916015625, -0.0272216796875, -0.018890380859375, 0.0029201507568359375, 0.0014505386352539062, 0.014129638671875, -0.0066680908203125, -0.042144775390625, -0.01145172119140625, -0.03778076171875, -0.00977325439453125, -0.03118896484375, 0.000030159950256347656, -0.01412200927734375, -0.0027313232421875, 0.05035400390625, -0.0101318359375, -0.005924224853515625, -0.036224365234375, 0.017822265625, -0.017547607421875, -0.0251617431640625, 0.033416748046875, -0.09521484375, -0.037750244140625, -0.0007166862487792969, 0.0026950836181640625, 0.026580810546875, -0.018585205078125, -0.0198211669921875, -0.00771331787109375, -0.0194244384765625, -0.012725830078125, -0.020904541015625, 0.005794525146484375, 0.0232391357421875, -0.019775390625, 0.00951385498046875, 0.0012235641479492188, -0.006595611572265625, 0.0154266357421875, 0.033599853515625, -0.008331298828125, 0.0462646484375, -0.044647216796875, -0.032684326171875, 0.005550384521484375, 0.041961669921875, 0.0005736351013183594, 0.00565338134765625, -0.001007080078125, 0.0177154541015625, 0.009918212890625, 0.01242828369140625, -0.028289794921875, 0.050140380859375, 0.0244598388671875, 0.011810302734375, -0.018524169921875, 0.0181732177734375, -0.048858642578125, 0.057464599609375, -0.0122833251953125, -0.01800537109375, 0.00293731689453125, 0.003063201904296875, 0.018707275390625, 0.01096343994140625, 0.01910400390625, -0.02532958984375, 0.0211639404296875, 0.03533935546875, 0.0133056640625, 0.0237579345703125 ]
9991fc55d65196cb1231c916ad9215161180748f
Wordpress Stackexchange Q: Email reply to multiple email addresses not working I want that email reply should be received at multiple email address. But it is not working for me. I have tried different ways but none of these working for me. I am trying this header but it is only replying to the last email address. $to = "[email protected]"; $subject = "my email subject"; $message = "my email message"; $headers = array(); $headers []= "MIME-Version: 1.0\r\n"; $headers []= "Content-Type: text/html; charset=UTF-8\r\n"; $headers []= "Reply-To: <" . $EmailAddress1 . "> <" . $EmailAddressss2 . ">" . "\r\n" ; wp_mail($to, $subject, $message, $headers); I have tried without braces as well but this one is also not working $headers []= "Reply-To: [email protected],[email protected]\r\n"; I do not have much idea about this so little guidance about this will be much appreciated. Thank you! A: Unfortunately this is not widely supported, not because WordPress does not support it, but because most email clients do not support it, so it cannot be relied upon. Instead, consider using a mailing list and use the mailing lists address as the reply to field
Q: Email reply to multiple email addresses not working I want that email reply should be received at multiple email address. But it is not working for me. I have tried different ways but none of these working for me. I am trying this header but it is only replying to the last email address. $to = "[email protected]"; $subject = "my email subject"; $message = "my email message"; $headers = array(); $headers []= "MIME-Version: 1.0\r\n"; $headers []= "Content-Type: text/html; charset=UTF-8\r\n"; $headers []= "Reply-To: <" . $EmailAddress1 . "> <" . $EmailAddressss2 . ">" . "\r\n" ; wp_mail($to, $subject, $message, $headers); I have tried without braces as well but this one is also not working $headers []= "Reply-To: [email protected],[email protected]\r\n"; I do not have much idea about this so little guidance about this will be much appreciated. Thank you! A: Unfortunately this is not widely supported, not because WordPress does not support it, but because most email clients do not support it, so it cannot be relied upon. Instead, consider using a mailing list and use the mailing lists address as the reply to field A: Actually, RFC 5322 (from 2008) allows for this: RFC 5322 section-3.6.2: ( https://www.rfc-editor.org/rfc/rfc5322#section-3.6.2 ) 'In either case, an optional reply-to field MAY also be included, which contains the field name "Reply-To" and a comma-separated list of one or more addresses.' And if you think this is new, even RFC 822 (from 1982) says: 'If the "Reply-To" field exists, then the reply should go to the addresses indicated in that field and not to the address(es) indicated in the "From" field.' So Reply-To DOES allow for multiple addresses. It's just that some clients unfortunately do not adhere to the RFC... tsk tsk tsk. You can only have one Reply-To header line, but that line can have unlimited addresses. A: Well that is true however many of my tests on Outlook and Yahoo indicates that all email addresses are dropped after the comma. Only the first email address is being used to populate the "To" field.
wordpress
{ "language": "en", "length": 338, "provenance": "stackexchange_00019.jsonl.gz:484022", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/294356" }
[ 0.04351806640625, -0.0220489501953125, 0.01317596435546875, -0.02581787109375, -0.01299285888671875, -0.01849365234375, 0.033477783203125, -0.0284881591796875, -0.00406646728515625, 0.044891357421875, 0.0035953521728515625, -0.01462554931640625, 0.01324462890625, -0.01495361328125, -0.045867919921875, -0.043670654296875, 0.0227203369140625, 0.017425537109375, -0.0014801025390625, -0.02008056640625, 0.03558349609375, -0.006282806396484375, -0.041259765625, 0.08575439453125, -0.00920867919921875, 0.0248870849609375, 0.07452392578125, -0.0594482421875, 0.0038890838623046875, -0.03277587890625, 0.0088043212890625, 0.0019664764404296875, 0.040924072265625, 0.033599853515625, -0.0860595703125, -0.028411865234375, 0.004459381103515625, -0.0006961822509765625, -0.0229339599609375, 0.044036865234375, 0.021820068359375, -0.0273895263671875, 0.06396484375, -0.018157958984375, 0.05621337890625, -0.0277252197265625, 0.05078125, -0.0782470703125, 0.0265045166015625, 0.0294342041015625, -0.0181884765625, -0.0019969940185546875, -0.0240936279296875, 0.01102447509765625, -0.018310546875, -0.0160369873046875, -0.0037841796875, 0.008148193359375, 0.00273895263671875, -0.019073486328125, -0.0015096664428710938, 0.03515625, 0.0103759765625, 0.035675048828125, -0.034576416015625, 0.0205078125, 0.017547607421875, -0.002460479736328125, -0.00003504753112792969, -0.04425048828125, -0.005672454833984375, 0.0025787353515625, -0.023773193359375, -0.0291748046875, -0.00823974609375, 0.0017576217651367188, -0.0223236083984375, -0.0474853515625, 0.0048370361328125, 0.0101318359375, -0.01273345947265625, -0.006580352783203125, -0.07269287109375, 0.0025119781494140625, -0.00533294677734375, 0.0308990478515625, -0.0196380615234375, -0.0215301513671875, -0.0667724609375, -0.0251312255859375, -0.04095458984375, -0.052093505859375, -0.03692626953125, -0.033966064453125, -0.01190185546875, -0.0238189697265625, -0.025665283203125, -0.0089111328125, -0.039581298828125, -0.061431884765625, -0.0224761962890625, 0.0101165771484375, -0.06451416015625, 0.01219940185546875, -0.01788330078125, 0.01097869873046875, 0.0037059783935546875, -0.03448486328125, -0.00424957275390625, 0.0242462158203125, -0.020965576171875, 0.01708984375, 0.009002685546875, -0.00933074951171875, -0.0012006759643554688, -0.049072265625, -0.057464599609375, 0.034820556640625, 0.007526397705078125, -0.0307464599609375, 0.0128173828125, 0.05072021484375, 0.0167236328125, -0.055419921875, -0.0160980224609375, -0.0019216537475585938, 0.00777435302734375, -0.08355712890625, 0.0540771484375, -0.0011138916015625, -0.03369140625, 0.0157470703125, 0.0247344970703125, -0.01493072509765625, 0.0017309188842773438, -0.00717926025390625, 0.007740020751953125, 0.01320648193359375, -0.01015472412109375, 0.0011377334594726562, 0.0191497802734375, -0.02642822265625, -0.0171051025390625, 0.00965118408203125, -0.030426025390625, -0.013702392578125, 0.026275634765625, 0.0287933349609375, -0.00926971435546875, -0.0195770263671875, -0.01418304443359375, 0.0009870529174804688, 0.0013570785522460938, 0.027618408203125, -0.0267791748046875, -0.008148193359375, -0.017669677734375, -0.0220489501953125, 0.0229339599609375, -0.0167388916015625, 0.0248870849609375, -0.027313232421875, 0.0040283203125, -0.07843017578125, -0.07861328125, 0.0216217041015625, -0.10565185546875, -0.02435302734375, 0.0208740234375, -0.02044677734375, -0.03961181640625, 0.0494384765625, 0.053009033203125, 0.0152587890625, 0.007282257080078125, 0.0082244873046875, -0.0246124267578125, -0.0168914794921875, 0.01335906982421875, 0.02178955078125, 0.005489349365234375, -0.025848388671875, -0.01092529296875, 0.0227508544921875, -0.029815673828125, 0.051055908203125, 0.012451171875, 0.056671142578125, -0.0232086181640625, 0.0221710205078125, 0.00727081298828125, 0.046783447265625, 0.0212249755859375, 0.0039520263671875, -0.023834228515625, -0.0230255126953125, 0.0010013580322265625, 0.0292816162109375, -0.0300445556640625, -0.0151519775390625, -0.006298065185546875, -0.03875732421875, 0.042724609375, 0.0260772705078125, 0.00017940998077392578, 0.0202789306640625, -0.03985595703125, 0.01067352294921875, -0.00833892822265625, 0.01580810546875, 0.017791748046875, -0.00881195068359375, -0.0107574462890625, -0.0306396484375, -0.026336669921875, -0.00917816162109375, -0.00421905517578125, 0.036712646484375, -0.0225830078125, 0.08587646484375, -0.050537109375, -0.0206146240234375, -0.0294036865234375, -0.0020599365234375, 0.0301666259765625, -0.0173797607421875, -0.0160064697265625, -0.0245208740234375, -0.007717132568359375, 0.01690673828125, -0.0721435546875, 0.033660888671875, 0.01629638671875, 0.033935546875, -0.01027679443359375, 0.0262298583984375, 0.03900146484375, 0.0107269287109375, 0.0005326271057128906, 0.0125732421875, 0.028564453125, -0.036651611328125, -0.0152130126953125, 0.01393890380859375, -0.013885498046875, -0.0103302001953125, 0.02142333984375, -0.01207733154296875, 0.0001093149185180664, 0.003841400146484375, -0.0258026123046875, -0.0129241943359375, 0.03131103515625, -0.08111572265625, 0.0249786376953125, 0.0286865234375, 0.0308990478515625, -0.01146697998046875, -0.02593994140625, 0.0300140380859375, 0.006885528564453125, -0.024139404296875, -0.055419921875, 0.01491546630859375, -0.02618408203125, -0.0209808349609375, 0.002101898193359375, -0.004581451416015625, 0.0247955322265625, -0.0504150390625, 0.00156402587890625, -0.0236053466796875, 0.016082763671875, 0.03472900390625, -0.024688720703125, 0.07122802734375, -0.0008516311645507812, -0.0259246826171875, 0.02447509765625, 0.036956787109375, -0.02166748046875, 0.00010913610458374023, -0.017822265625, -0.023193359375, 0.012969970703125, -0.00928497314453125, -0.00553131103515625, -0.03485107421875, 0.00464630126953125, -0.0007462501525878906, 0.0130615234375, 0.073486328125, -0.002033233642578125, 0.050750732421875, -0.004840850830078125, 0.0030460357666015625, -0.0270843505859375, -0.03436279296875, 0.043060302734375, -0.050537109375, -0.016387939453125, 0.060516357421875, 0.01438140869140625, -0.0257415771484375, -0.016326904296875, 0.00627899169921875, -0.0197906494140625, 0.00970458984375, -0.0144805908203125, -0.057769775390625, -0.00016307830810546875, -0.006893157958984375, 0.0215606689453125, 0.0556640625, 0.0012388229370117188, -0.041412353515625, 0.007526397705078125, 0.028564453125, -0.04901123046875, -0.06817626953125, 0.054351806640625, -0.0180816650390625, -0.0240936279296875, -0.007030487060546875, -0.023956298828125, -0.013702392578125, 0.01064300537109375, -0.0268402099609375, 0.051177978515625, -0.046966552734375, -0.06439208984375, -0.052642822265625, -0.1029052734375, -0.038787841796875, 0.005794525146484375, 0.01253509521484375, 0.01007843017578125, 0.04296875, -0.001918792724609375, -0.043609619140625, -0.002147674560546875, -0.014068603515625, -0.00926971435546875, -0.006587982177734375, -0.041259765625, 0.0284423828125, -0.023681640625, 0.00024378299713134766, 0.0192413330078125, 0.00212860107421875, -0.01082611083984375, -0.0046234130859375, -0.0321044921875, 0.0178680419921875, 0.0112152099609375, -0.0142059326171875, 0.01436614990234375, 0.022369384765625, 0.00171661376953125, -0.03948974609375, 0.00830078125, 0.0139617919921875, -0.01268768310546875, -0.0645751953125, -0.01141357421875, -0.0210113525390625, -0.031982421875, 0.0014200210571289062, -0.00289154052734375, -0.0206451416015625, 0.0205841064453125, -0.038726806640625, 0.0305328369140625, 0.00867462158203125, 0.0169525146484375, -0.0165557861328125, -0.0225982666015625, -0.02581787109375, 0.0219573974609375, -0.0263519287109375, 0.033203125, -0.0155029296875, 0.056396484375, -0.060089111328125, -0.09478759765625, 0.059783935546875, -0.042724609375, -0.0303497314453125, -0.030792236328125, -0.018218994140625, 0.005290985107421875, 0.0853271484375, -0.0106353759765625, -0.04351806640625, -0.0027923583984375, 0.027099609375, -0.0364990234375, -0.04278564453125, 0.0258026123046875, -0.01507568359375, -0.0137176513671875, 0.00384521484375, -0.0249786376953125, -0.0014171600341796875, 0.01363372802734375, -0.0223236083984375, 0.051483154296875, -0.0439453125, 0.017425537109375, -0.011505126953125, 0.0217742919921875, -0.007274627685546875, -0.0007395744323730469, 0.002338409423828125, 0.003902435302734375, -0.042388916015625, -0.01922607421875, -0.0198822021484375, 0.0130462646484375, 0.0128631591796875, -0.00745391845703125, -0.007694244384765625, -0.004291534423828125, 0.033416748046875, -0.005229949951171875, 0.06158447265625, -0.032012939453125, -0.0015048980712890625, 0.0178985595703125, -0.01149749755859375, -0.0005311965942382812, -0.00925445556640625, -0.0172119140625, 0.01210784912109375, 0.0087738037109375, 0.037994384765625, -0.0201568603515625, -0.0293426513671875, 0.01934814453125, -0.0265655517578125, -0.0023326873779296875, -0.00260162353515625, -0.004932403564453125, 0.006565093994140625, -0.004467010498046875, -0.0283966064453125, 0.0014066696166992188, -0.0083770751953125, -0.0189971923828125, -0.0169525146484375, -0.016265869140625, 0.023651123046875, 0.0195159912109375, 0.02386474609375, 0.002197265625, -0.0203704833984375, 0.0033397674560546875, 0.055267333984375, 0.01788330078125, -0.03680419921875, -0.004177093505859375, -0.05657958984375, 0.055633544921875, 0.033172607421875, -0.016265869140625, -0.002475738525390625, 0.0626220703125, 0.0095367431640625, -0.0280303955078125, 0.0166473388671875, -0.0100250244140625, -0.01470184326171875, 0.01971435546875, 0.0305938720703125, -0.02520751953125, 0.01324462890625, 0.028961181640625, 0.0197906494140625, -0.0248870849609375, -0.0305328369140625, -0.07806396484375, 0.014984130859375, -0.052947998046875, 0.017974853515625, 0.0303192138671875, -0.01146697998046875, 0.052825927734375, 0.022918701171875, 0.0219879150390625, -0.01364898681640625, -0.014190673828125, -0.01134490966796875, 0.021240234375, 0.024658203125, 0.010162353515625, -0.0038852691650390625, -0.00902557373046875, 0.0618896484375, 0.046478271484375, -0.000560760498046875, -0.0266265869140625, -0.0102996826171875, -0.02618408203125, -0.03302001953125, 0.00015234947204589844, 0.052276611328125, 0.0565185546875, -0.003963470458984375, 0.0139312744140625, -0.018890380859375, 0.0335693359375, -0.03558349609375, 0.00875091552734375, 0.021240234375, -0.0091400146484375, 0.00339508056640625, 0.05462646484375, -0.01092529296875, 0.03887939453125, -0.00577545166015625, 0.01268768310546875, 0.05120849609375, 0.002166748046875, 0.01654052734375, 0.0355224609375, -0.03192138671875, -0.0051422119140625, 0.00817108154296875, -0.028533935546875, -0.009002685546875, 0.03448486328125, 0.038116455078125, 0.05548095703125, 0.0153961181640625, -0.031005859375, -0.01291656494140625, -0.01506805419921875, 0.056243896484375, 0.0274505615234375, -0.0457763671875, -0.017913818359375, 0.0226593017578125, 0.0305023193359375, -0.0238037109375, -0.01241302490234375, -0.0002827644348144531, -0.01605224609375, -0.004795074462890625, 0.00267791748046875, -0.021820068359375, -0.006046295166015625, 0.0023860931396484375, 0.01195526123046875, -0.00502777099609375, -0.0045623779296875, -0.0238800048828125, -0.0177154541015625, -0.0216827392578125, 0.0077362060546875, 0.032806396484375, -0.01163482666015625, -0.0010805130004882812, -0.04730224609375, 0.0262908935546875, -0.06549072265625, 0.000048160552978515625, 0.053741455078125, 0.0443115234375, -0.05926513671875, 0.003692626953125, -0.060302734375, -0.0017881393432617188, -0.00762939453125, -0.0259246826171875, -0.00635528564453125, -0.0186767578125, 0.06671142578125, 0.0186767578125, 0.01425933837890625, -0.06610107421875, -0.0091094970703125, 0.011474609375, 0.0426025390625, 0.040374755859375, -0.0244903564453125, 0.045257568359375, 0.0168609619140625, 0.0034923553466796875, 0.00048732757568359375, 0.03936767578125, 0.0007905960083007812, -0.0035858154296875, 0.01122283935546875, -0.037322998046875, -0.00896453857421875, -0.01006317138671875, -0.004673004150390625, -0.01111602783203125, 0.019195556640625, -0.004924774169921875, -0.022064208984375, -0.0223388671875, 0.01934814453125, -0.0228729248046875, 0.05810546875, -0.036102294921875, -0.042572021484375, 0.00983428955078125, 0.015838623046875, 0.03314208984375, -0.00217437744140625, -0.0084228515625, -0.009735107421875, 0.019683837890625, 0.0223541259765625, -0.0313720703125, 0.004848480224609375, 0.040252685546875, 0.08331298828125, -0.006160736083984375, 0.048370361328125, 0.0264129638671875, 0.00016188621520996094, 0.0276031494140625, 0.0095672607421875, 0.037017822265625, -0.0538330078125, 0.03680419921875, -0.0118560791015625, -0.005859375, 0.021636962890625, -0.031402587890625, 0.0256500244140625, 0.053863525390625, 0.07855224609375, -0.07086181640625, 0.01190185546875, 0.00585174560546875, -0.035797119140625, 0.026611328125, -0.029052734375, -0.014862060546875, -0.057281494140625, 0.07330322265625, 0.03704833984375, -0.00995635986328125, 0.030120849609375, 0.00923919677734375, 0.0033512115478515625, 0.00852203369140625, 0.04766845703125, 0.00615692138671875, -0.03363037109375, -0.044219970703125, 0.033935546875, -0.037353515625, -0.0059814453125, -0.02532958984375, 0.0491943359375, -0.058837890625, -0.05645751953125, 0.01055145263671875, -0.03570556640625, -0.01178741455078125, -0.035400390625, -0.01263427734375, -0.01422119140625, 0.0189971923828125, -0.04107666015625, 0.002681732177734375, 0.00807952880859375, -0.0305328369140625, -0.016021728515625, -0.0038700103759765625, 0.01500701904296875, 0.046142578125, -0.015838623046875, 0.031707763671875, -0.022430419921875, 0.0034732818603515625, 0.01300811767578125, 0.044158935546875, 0.01355743408203125, -0.019744873046875, -0.0310821533203125, 0.041046142578125, 0.00917816162109375, -0.01219940185546875, -0.00786590576171875, -0.0086517333984375, -0.042633056640625, -0.01447296142578125, -0.02691650390625, -0.035400390625, 0.0140838623046875, -0.0284881591796875, -0.0911865234375, 0.09783935546875, 0.00539398193359375, 0.0679931640625, 0.016265869140625, 0.016326904296875, -0.02777099609375, -0.0027027130126953125, -0.0128936767578125, 0.029693603515625, -0.01522064208984375, 0.037841796875, -0.0213470458984375, -0.0104522705078125, 0.01508331298828125, 0.04705810546875, 0.0220489501953125, 0.0169525146484375, -0.037750244140625, 0.001007080078125, 0.030853271484375, 0.0092315673828125, -0.00160980224609375, 0.048431396484375, -0.0014362335205078125, -0.0308380126953125, -0.00624847412109375, -0.00992584228515625, 0.016815185546875, -0.02398681640625, -0.00016987323760986328, 0.0203399658203125, 0.0015764236450195312, -0.018585205078125, 0.00043511390686035156, 0.063720703125, -0.07244873046875, 0.0032405853271484375, 0.04510498046875, -0.043060302734375, -0.005565643310546875, -0.0023345947265625, 0.030731201171875, -0.039886474609375, 0.071533203125, -0.038970947265625, 0.056671142578125, 0.00811004638671875, -0.0020847320556640625, 0.0264892578125, 0.0137176513671875, 0.09423828125, -0.030731201171875, -0.01202392578125, -0.0025348663330078125, 0.01055908203125, 0.021881103515625, -0.0170135498046875, -0.01105499267578125, -0.0882568359375, 0.00795745849609375, 0.049713134765625, 0.039154052734375, -0.043212890625, -0.00490570068359375, 0.0118255615234375, 0.0261077880859375, 0.0330810546875, -0.02813720703125, 0.03570556640625, -0.004985809326171875, 0.01666259765625, -0.033050537109375, -0.0139923095703125, 0.0005350112915039062, 0.0587158203125, 0.001117706298828125, -0.006195068359375, -0.035797119140625, -0.058258056640625, -0.035064697265625, 0.036773681640625, 0.0212554931640625, 0.0168609619140625, -0.038116455078125, 0.060760498046875, -0.01282501220703125, 0.0102386474609375, -0.0005507469177246094, 0.0200653076171875, 0.0164794921875, -0.02337646484375, 0.0151519775390625, -0.0162811279296875, -0.0018749237060546875, 0.01190185546875, 0.00804901123046875, 0.022308349609375, 0.026214599609375, -0.0004076957702636719, -0.02899169921875, -0.0157318115234375, 0.00302886962890625, -0.048828125, 0.021759033203125, -0.050750732421875, -0.03741455078125, -0.02703857421875, -0.03692626953125, 0.00264739990234375, -0.041351318359375, 0.030975341796875, -0.011138916015625, 0.0082855224609375, 0.011444091796875, -0.0022296905517578125, 0.0312347412109375, -0.00408172607421875, -0.01220703125, 0.0232696533203125, -0.08013916015625, -0.0582275390625, 0.0247039794921875, 0.0335693359375, 0.023529052734375, 0.031890869140625, -0.002918243408203125, 0.01517486572265625, 0.0135650634765625, -0.008270263671875, -0.0142822265625, -0.0158843994140625, 0.039306640625, -0.019805908203125, -0.01471710205078125, -0.006145477294921875, -0.036712646484375, -0.017425537109375, -0.01165008544921875, 0.0184783935546875, 0.0033016204833984375, 0.0262451171875, 0.0025806427001953125, 0.0277557373046875, -0.0193939208984375, 0.058258056640625, -0.06427001953125, -0.049041748046875, 0.06817626953125, -0.0171661376953125, -0.01209259033203125, 0.005157470703125, -0.06689453125, 0.0182952880859375, 0.0259246826171875, -0.00769805908203125, 0.03167724609375, 0.007171630859375, -0.00989532470703125, -0.0232696533203125, 0.019927978515625, -0.0210418701171875, -0.0282745361328125, -0.043670654296875, -0.0167694091796875, 0.035308837890625, 0.04730224609375, -0.00939178466796875, 0.048919677734375, 0.03369140625, -0.0022144317626953125, 0.0343017578125, -0.06024169921875, 0.0653076171875, 0.028961181640625, 0.004627227783203125, -0.03228759765625, 0.01025390625, -0.01544189453125, -0.0203857421875, 0.015869140625, 0.045989990234375, -0.01248931884765625, 0.0252532958984375, -0.0006017684936523438, 0.0301361083984375, 0.0458984375, -0.03582763671875, 0.002590179443359375, 0.03759765625, -0.007610321044921875, 0.01404571533203125, -0.06591796875, -0.0224151611328125, -0.060882568359375, 0.0418701171875, 0.043731689453125, -0.0004563331604003906, 0.054718017578125, 0.0117340087890625, -0.00577545166015625, -0.004302978515625, -0.0248260498046875, 0.00588226318359375, -0.0083160400390625, -0.00753021240234375, 0.0238037109375, -0.049713134765625, 0.0171966552734375, -0.01372528076171875, 0.0186767578125, -0.01395416259765625, -0.0477294921875, -0.03192138671875, 0.0787353515625, -0.040679931640625, -0.00238037109375, 0.032318115234375, -0.01142120361328125, -0.039306640625, -0.03167724609375, -0.0191497802734375, 0.012115478515625, 0.0302886962890625, -0.0118255615234375, 0.0023746490478515625, -0.005832672119140625, -0.042816162109375, -0.037445068359375, 0.04296875, -0.06781005859375, -0.0205535888671875, -0.0192108154296875, 0.0200653076171875, 0.01849365234375, -0.03564453125, -0.052825927734375, 0.0745849609375, -0.026275634765625, -0.0234527587890625, -0.0523681640625, -0.043609619140625, 0.00982666015625, -0.02685546875, -0.037353515625, -0.0031070709228515625, -0.051422119140625, 0.061737060546875, -0.006763458251953125, 0.038543701171875, 0.00012165307998657227, 0.00567626953125, -0.01012420654296875, 0.0247802734375, 0.009765625, -0.0218658447265625, -0.0282745361328125, 0.001010894775390625, 0.0167999267578125, 0.03466796875, -0.004253387451171875, -0.01319122314453125, 0.035797119140625, -0.025848388671875, -0.022491455078125, -0.013092041015625, -0.017333984375, 0.0182342529296875, 0.0347900390625, 0.07122802734375, -0.005565643310546875, -0.041595458984375, 0.049285888671875, -0.0111541748046875, -0.0117950439453125, -0.004985809326171875, -0.01445770263671875, 0.0115966796875, -0.01654052734375, -0.026763916015625, 0.005275726318359375, 0.0009264945983886719, -0.04754638671875, 0.0016956329345703125, -0.010467529296875, 0.01242828369140625, 0.00722503662109375, 0.027496337890625, -0.0065155029296875, 0.06011962890625, -0.04638671875, -0.033905029296875, 0.01183319091796875, 0.01171112060546875, 0.00585174560546875, -0.01068115234375, 0.000560760498046875, -0.0399169921875, -0.0023593902587890625, 0.01216888427734375, 0.012054443359375, 0.041107177734375, 0.0030040740966796875, -0.03973388671875, -0.017181396484375, 0.0222320556640625, -0.0267333984375, 0.00788116455078125, 0.00812530517578125, 0.03509521484375, -0.004421234130859375, 0.07037353515625, -0.0241851806640625, -0.012725830078125, -0.03717041015625, 0.042510986328125, 0.0248565673828125, -0.015411376953125, 0.07470703125, -0.031341552734375, 0.0137481689453125, 0.0307159423828125, 0.05169677734375, -0.0152435302734375, 0.04541015625, 0.0787353515625, 0.040496826171875, 0.0146484375 ]
e25cfa1524c8ed399509c00d94117751a641cf90
Wordpress Stackexchange Q: How to stop WP API endpoint from caching? I have a simple endpoint. Its GET, I pass it an ID parameter and it uses this ID to make a curl call. The endpoint then responds with a couple pieces of info json_encoded. The issue is that this endpoint keeps caching its results. How do I keep this from happening? Couple notes: * *No caching plugins installed *WP config doesn't note caching The endpoint code is pretty simple: // Get Number of people in line add_action( 'rest_api_init', function () { register_rest_route( 'cc/v1', '/in_line/(?P<id>\d+)', array( 'methods' => WP_REST_Server::READABLE, 'callback' => 'in_line', 'args' => [ 'id' ], ) ); } ); function in_line($data) { //Do a bunch of Curl stuff $response['queue'] = $number; $response['queueID'] = $data['id']; return json_encode($response); } I call the endpoint via jQuery ajax. A: If you have access to your request header you can add the line. Cache-Control: private or Cache-Control: no-cache. This will force well-behaved hosts to send you fresh results.
Q: How to stop WP API endpoint from caching? I have a simple endpoint. Its GET, I pass it an ID parameter and it uses this ID to make a curl call. The endpoint then responds with a couple pieces of info json_encoded. The issue is that this endpoint keeps caching its results. How do I keep this from happening? Couple notes: * *No caching plugins installed *WP config doesn't note caching The endpoint code is pretty simple: // Get Number of people in line add_action( 'rest_api_init', function () { register_rest_route( 'cc/v1', '/in_line/(?P<id>\d+)', array( 'methods' => WP_REST_Server::READABLE, 'callback' => 'in_line', 'args' => [ 'id' ], ) ); } ); function in_line($data) { //Do a bunch of Curl stuff $response['queue'] = $number; $response['queueID'] = $data['id']; return json_encode($response); } I call the endpoint via jQuery ajax. A: If you have access to your request header you can add the line. Cache-Control: private or Cache-Control: no-cache. This will force well-behaved hosts to send you fresh results. A: You should create a new instance from WP_REST_Response to set the Cache-Control value. <?php // Get Number of people in line add_action( 'rest_api_init', function () { register_rest_route( 'cc/v1', '/in_line/(?P<id>\d+)', array( 'methods' => WP_REST_Server::READABLE, 'callback' => 'in_line', 'args' => [ 'id' ], ) ); } ); function in_line($data) { //Do a bunch of Curl stuff $response['queue'] = $number; $response['queueID'] = $data['id']; $result = new WP_REST_Response($response, 200); // Set headers. $result->set_headers(array('Cache-Control' => 'no-cache')); return $result; } A: Based on @fränk 's comment the correct and more elegant way will be like this: <?php // Get Number of people in line add_action( 'rest_api_init', function () { register_rest_route( 'cc/v1', '/in_line/(?P<id>\d+)', array( 'methods' => WP_REST_Server::READABLE, 'callback' => 'in_line', 'args' => [ 'id' ], ) ); } ); function in_line($data) { //Do a bunch of Curl stuff $response['queue'] = $number; $response['queueID'] = $data['id']; nocache_headers(); $result = new WP_REST_Response($response, 200); return $result; }
wordpress
{ "language": "en", "length": 310, "provenance": "stackexchange_00019.jsonl.gz:484319", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/295511" }
[ 0.059783935546875, -0.00415802001953125, 0.0011262893676757812, -0.024993896484375, 0.00920867919921875, -0.042633056640625, 0.05548095703125, -0.014739990234375, 0.00275421142578125, 0.03375244140625, -0.0215606689453125, 0.017669677734375, -0.0220947265625, -0.0063323974609375, -0.02166748046875, -0.0243377685546875, 0.0421142578125, 0.004535675048828125, 0.0390625, -0.00821685791015625, 0.002593994140625, 0.0221405029296875, 0.034759521484375, 0.07257080078125, 0.0036296844482421875, 0.006275177001953125, 0.010345458984375, -0.03265380859375, -0.0058746337890625, -0.03021240234375, -0.003753662109375, 0.0238037109375, 0.04510498046875, 0.045166015625, -0.11224365234375, -0.0172119140625, -0.0579833984375, 0.0323486328125, -0.030548095703125, 0.012054443359375, 0.0258026123046875, -0.0093536376953125, -0.0347900390625, -0.008392333984375, -0.0504150390625, 0.012786865234375, -0.008392333984375, 0.0148773193359375, 0.010223388671875, 0.0537109375, 0.00925445556640625, -0.0050811767578125, -0.0119781494140625, 0.06292724609375, -0.003597259521484375, 0.022308349609375, 0.02532958984375, -0.06341552734375, 0.03924560546875, -0.0411376953125, -0.043121337890625, -0.04718017578125, 0.059661865234375, 0.005889892578125, 0.0117340087890625, -0.032135009765625, 0.032928466796875, 0.0198822021484375, -0.01520538330078125, 0.0182952880859375, 0.05255126953125, -0.00016629695892333984, 0.011444091796875, -0.03668212890625, 0.0135498046875, 0.00684356689453125, -0.0020751953125, 0.0016422271728515625, 0.003696441650390625, -0.0002720355987548828, -0.030487060546875, -0.01322174072265625, -0.04498291015625, -0.031951904296875, 0.02984619140625, 0.0087738037109375, -0.0184173583984375, 0.006500244140625, -0.0057525634765625, -0.0232391357421875, -0.01523590087890625, -0.06640625, 0.004459381103515625, 0.0204620361328125, -0.0224609375, -0.022979736328125, 0.0086212158203125, 0.00612640380859375, 0.01067352294921875, 0.001544952392578125, -0.01169586181640625, -0.013031005859375, 0.00421905517578125, -0.01114654541015625, 0.0302581787109375, 0.0211181640625, -0.0107421875, 0.02838134765625, 0.07281494140625, 0.0237579345703125, 0.01464080810546875, 0.07183837890625, -0.01007080078125, -0.034393310546875, 0.0093994140625, 0.01114654541015625, -0.02044677734375, 0.04193115234375, 0.01032257080078125, -0.0075531005859375, -0.010284423828125, -0.00799560546875, 0.0037059783935546875, 0.031585693359375, 0.0239410400390625, 0.0162811279296875, -0.022918701171875, -0.00026416778564453125, -0.039215087890625, -0.01137542724609375, -0.02703857421875, 0.031768798828125, 0.06121826171875, 0.03253173828125, 0.0036373138427734375, -0.0150604248046875, 0.0308837890625, 0.03167724609375, -0.00409698486328125, 0.0172882080078125, -0.0211334228515625, -0.031494140625, -0.00775909423828125, -0.035247802734375, 0.0362548828125, -0.0003311634063720703, 0.01277923583984375, 0.0214385986328125, 0.005695343017578125, 0.00267791748046875, -0.0015478134155273438, 0.00522613525390625, 0.031829833984375, 0.0117034912109375, 0.022674560546875, -0.0048370361328125, 0.0308685302734375, -0.007541656494140625, -0.01214599609375, -0.01514434814453125, -0.0255279541015625, -0.040191650390625, -0.004848480224609375, 0.0015420913696289062, -0.0181427001953125, 0.064453125, 0.0240936279296875, -0.0003478527069091797, 0.0228271484375, 0.055572509765625, 0.039947509765625, 0.0014066696166992188, 0.005035400390625, 0.0015134811401367188, -0.008209228515625, -0.038238525390625, 0.0113525390625, 0.04364013671875, -0.005207061767578125, -0.023956298828125, -0.01255035400390625, -0.031158447265625, 0.050201416015625, 0.00012302398681640625, -0.05206298828125, 0.07257080078125, 0.005702972412109375, 0.05633544921875, -0.0207672119140625, 0.00299072265625, 0.049285888671875, 0.059844970703125, -0.0058135986328125, -0.0017490386962890625, 0.0199432373046875, -0.041168212890625, 0.0279541015625, -0.0128326416015625, 0.011993408203125, -0.01129150390625, 0.0306854248046875, 0.00963592529296875, -0.0049591064453125, -0.043731689453125, -0.081787109375, 0.00832366943359375, -0.026947021484375, 0.034576416015625, 0.0025310516357421875, 0.018646240234375, 0.003143310546875, 0.0091094970703125, -0.0015897750854492188, -0.0112762451171875, -0.026123046875, 0.005947113037109375, 0.0043487548828125, 0.0625, 0.0014009475708007812, 0.024139404296875, -0.0211334228515625, -0.0269927978515625, -0.00217437744140625, 0.00391387939453125, 0.027984619140625, -0.040313720703125, -0.0015249252319335938, -0.030303955078125, 0.0594482421875, -0.0460205078125, 0.07769775390625, 0.045074462890625, 0.0693359375, 0.044097900390625, 0.0176544189453125, 0.0171356201171875, 0.015838623046875, -0.12103271484375, -0.00557708740234375, 0.062286376953125, 0.024200439453125, -0.0136260986328125, -0.00606536865234375, 0.0021877288818359375, -0.0005717277526855469, -0.006877899169921875, 0.03887939453125, -0.03973388671875, -0.0228729248046875, -0.0250244140625, 0.007049560546875, -0.038787841796875, 0.020965576171875, -0.112060546875, 0.027099609375, 0.0032749176025390625, 0.00672149658203125, 0.002956390380859375, -0.01213836669921875, 0.017974853515625, 0.0029087066650390625, 0.0137481689453125, -0.0010709762573242188, 0.00812530517578125, -0.006427764892578125, -0.026580810546875, 0.0098724365234375, 0.01605224609375, 0.0016345977783203125, -0.039031982421875, 0.020751953125, 0.01253509521484375, -0.0091094970703125, 0.026580810546875, 0.02288818359375, -0.00455474853515625, -0.028167724609375, -0.0031948089599609375, 0.028717041015625, 0.005352020263671875, -0.007770538330078125, 0.015869140625, 0.0017271041870117188, -0.00879669189453125, -0.006885528564453125, -0.0161285400390625, 0.01654052734375, 0.0087738037109375, 0.00690460205078125, 0.023193359375, 0.01380157470703125, 0.0474853515625, -0.002323150634765625, 0.02728271484375, 0.01111602783203125, -0.00995635986328125, 0.0235595703125, -0.01436614990234375, 0.01383209228515625, -0.021820068359375, 0.01065826416015625, 0.050506591796875, 0.006763458251953125, -0.002994537353515625, -0.019927978515625, 0.01465606689453125, -0.0011777877807617188, 0.004787445068359375, -0.0126495361328125, -0.02716064453125, -0.04217529296875, -0.0281982421875, 0.04132080078125, 0.048004150390625, 0.0355224609375, -0.03411865234375, 0.018463134765625, 0.04779052734375, -0.07763671875, -0.08673095703125, 0.0277862548828125, -0.0161895751953125, -0.000438690185546875, 0.00426483154296875, -0.019775390625, -0.007419586181640625, 0.01448822021484375, -0.01479339599609375, -0.00952911376953125, -0.03350830078125, -0.0347900390625, -0.032745361328125, -0.04376220703125, 0.0231170654296875, 0.00786590576171875, 0.0015544891357421875, 0.006824493408203125, 0.07763671875, 0.000247955322265625, -0.06683349609375, -0.009002685546875, -0.02227783203125, -0.030181884765625, 0.01142120361328125, -0.009185791015625, -0.039886474609375, 0.01457977294921875, 0.00021088123321533203, 0.0438232421875, 0.006221771240234375, -0.0084075927734375, 0.0031681060791015625, -0.0014772415161132812, -0.0209808349609375, 0.0151214599609375, 0.026031494140625, -0.006069183349609375, 0.0092315673828125, 0.036529541015625, -0.0469970703125, -0.0565185546875, 0.0133819580078125, -0.048187255859375, 0.01120758056640625, 0.043365478515625, -0.01099395751953125, -0.00820159912109375, 0.038848876953125, 0.0028076171875, -0.01416015625, -0.02349853515625, -0.039886474609375, 0.0784912109375, 0.0094146728515625, 0.030120849609375, -0.006591796875, 0.06573486328125, 0.027252197265625, -0.0888671875, 0.004909515380859375, 0.006099700927734375, -0.02734375, 0.0284576416015625, -0.05670166015625, -0.0229034423828125, 0.0225830078125, 0.01224517822265625, 0.01971435546875, -0.0039520263671875, -0.02130126953125, 0.0072021484375, 0.060150146484375, -0.00611114501953125, -0.0282745361328125, -0.01244354248046875, 0.0092010498046875, -0.01568603515625, -0.0182342529296875, -0.00783538818359375, -0.010406494140625, 0.0296783447265625, 0.0089569091796875, 0.01250457763671875, -0.006977081298828125, 0.001461029052734375, -0.00787353515625, 0.01465606689453125, -0.004322052001953125, 0.053619384765625, -0.06591796875, 0.0266876220703125, -0.01690673828125, 0.0506591796875, -0.07427978515625, -0.01291656494140625, -0.020904541015625, -0.060394287109375, -0.002986907958984375, -0.04150390625, 0.046783447265625, 0.040496826171875, -0.043060302734375, -0.01824951171875, 0.0160980224609375, 0.00991058349609375, -0.01163482666015625, 0.0024566650390625, -0.02484130859375, -0.0185699462890625, 0.031524658203125, -0.0007963180541992188, -0.016448974609375, -0.0239715576171875, 0.0114288330078125, -0.01525115966796875, -0.00555419921875, -0.0110015869140625, -0.0634765625, 0.03302001953125, -0.031585693359375, -0.08319091796875, -0.057769775390625, -0.0305023193359375, -0.011444091796875, -0.04296875, 0.006900787353515625, -0.04327392578125, -0.050750732421875, 0.007129669189453125, -0.0017852783203125, -0.00579071044921875, 0.0192413330078125, 0.057403564453125, 0.0292205810546875, -0.0033512115478515625, -0.027374267578125, 0.0288848876953125, 0.0036296844482421875, -0.0177154541015625, 0.0723876953125, -0.0157470703125, 0.006038665771484375, 0.09521484375, -0.040618896484375, 0.050933837890625, 0.0268707275390625, 0.0460205078125, 0.0031719207763671875, -0.0139617919921875, 0.03167724609375, 0.0286712646484375, -0.1158447265625, 0.0015306472778320312, -0.00229644775390625, 0.007030487060546875, 0.007232666015625, 0.014404296875, -0.004932403564453125, -0.0063018798828125, -0.013153076171875, -0.056243896484375, 0.04150390625, -0.03582763671875, 0.007343292236328125, -0.0011386871337890625, 0.003849029541015625, 0.034454345703125, -0.003978729248046875, -0.0020656585693359375, -0.0231781005859375, 0.0311431884765625, -0.01464080810546875, 0.0301513671875, 0.002948760986328125, 0.0013561248779296875, -0.049591064453125, -0.01055145263671875, 0.031829833984375, -0.0186309814453125, -0.0732421875, 0.030548095703125, -0.006313323974609375, -0.00818634033203125, 0.050384521484375, 0.006626129150390625, 0.06219482421875, -0.02081298828125, 0.01226806640625, 0.007781982421875, -0.07513427734375, -0.01654052734375, -0.0333251953125, 0.056640625, 0.0011816024780273438, 0.01214599609375, 0.0040130615234375, 0.032318115234375, 0.03265380859375, 0.004974365234375, -0.031036376953125, 0.04974365234375, 0.046783447265625, 0.0252838134765625, 0.004421234130859375, -0.003009796142578125, 0.0141754150390625, -0.0140838623046875, 0.00531005859375, -0.0172271728515625, -0.01262664794921875, 0.032928466796875, 0.013916015625, 0.035247802734375, 0.0023212432861328125, 0.0021915435791015625, 0.01403045654296875, -0.028411865234375, 0.01953125, -0.00501251220703125, -0.01422119140625, -0.05950927734375, -0.03692626953125, 0.037750244140625, 0.03350830078125, 0.0283203125, -0.0296173095703125, 0.0305328369140625, -0.018951416015625, -0.00978851318359375, -0.05999755859375, -0.002590179443359375, 0.021392822265625, 0.0017576217651367188, -0.032257080078125, -0.03277587890625, -0.00018548965454101562, 0.01470947265625, -0.015594482421875, -0.0244140625, 0.0229034423828125, -0.027801513671875, -0.0032138824462890625, -0.01258087158203125, 0.019256591796875, -0.08404541015625, 0.01361846923828125, 0.0430908203125, 0.050537109375, -0.033721923828125, -0.018402099609375, -0.028411865234375, -0.01995849609375, 0.0231170654296875, -0.0173492431640625, -0.005054473876953125, -0.00791168212890625, 0.0274810791015625, 0.03924560546875, -0.026611328125, -0.061798095703125, 0.009063720703125, 0.0206146240234375, 0.0215606689453125, 0.079833984375, -0.01507568359375, 0.051361083984375, -0.00771331787109375, 0.05645751953125, -0.00685882568359375, -0.0037746429443359375, -0.033203125, 0.0078582763671875, 0.007389068603515625, -0.0760498046875, -0.0268096923828125, 0.006259918212890625, -0.042694091796875, 0.042510986328125, 0.01418304443359375, -0.00933074951171875, 0.0255126953125, -0.02728271484375, -0.01016998291015625, -0.0220794677734375, 0.069580078125, -0.025909423828125, 0.0179290771484375, 0.0034923553466796875, 0.01873779296875, -0.0021209716796875, -0.0244598388671875, -0.00624847412109375, 0.0151214599609375, 0.01316070556640625, 0.020904541015625, -0.055267333984375, -0.0006341934204101562, 0.0137481689453125, 0.10107421875, 0.034820556640625, 0.0831298828125, 0.032012939453125, 0.048583984375, 0.063720703125, 0.043670654296875, 0.0240325927734375, -0.048583984375, 0.01088714599609375, -0.005031585693359375, -0.026458740234375, -0.0092010498046875, -0.036468505859375, -0.0023097991943359375, -0.019012451171875, 0.0238494873046875, -0.01302337646484375, 0.01422882080078125, -0.014617919921875, -0.021820068359375, 0.01483917236328125, -0.0016269683837890625, -0.012847900390625, -0.017486572265625, 0.043182373046875, -0.009063720703125, -0.0189971923828125, 0.017303466796875, -0.007312774658203125, -0.0033130645751953125, -0.0146331787109375, 0.012786865234375, 0.01422882080078125, 0.01192474365234375, -0.0176544189453125, 0.024932861328125, -0.00791168212890625, -0.0143280029296875, 0.0268096923828125, 0.046783447265625, 0.00542449951171875, -0.0855712890625, 0.034881591796875, 0.0022754669189453125, -0.03887939453125, 0.02154541015625, -0.00586700439453125, 0.01033782958984375, 0.059295654296875, -0.0281829833984375, 0.038330078125, 0.0261688232421875, -0.0239715576171875, -0.0176239013671875, -0.03509521484375, -0.002552032470703125, 0.0440673828125, -0.023406982421875, 0.022735595703125, -0.00020968914031982422, -0.027984619140625, -0.01232147216796875, 0.0328369140625, 0.07470703125, -0.037841796875, -0.020172119140625, 0.040496826171875, 0.0178680419921875, -0.009735107421875, -0.029754638671875, 0.043975830078125, -0.0192108154296875, 0.0154266357421875, -0.0031185150146484375, 0.005290985107421875, -0.01132965087890625, -0.007843017578125, -0.0309600830078125, 0.1019287109375, 0.0345458984375, -0.007167816162109375, -0.004077911376953125, 0.04339599609375, -0.033660888671875, 0.029937744140625, -0.0271453857421875, 0.025238037109375, -0.0293731689453125, 0.015838623046875, -0.0538330078125, -0.011474609375, -0.009918212890625, 0.026336669921875, -0.002735137939453125, 0.0031108856201171875, -0.020294189453125, -0.006450653076171875, -0.035888671875, -0.02984619140625, -0.03533935546875, 0.052490234375, 0.01273345947265625, 0.07000732421875, 0.017059326171875, -0.09039306640625, -0.0002646446228027344, -0.036895751953125, -0.00009870529174804688, 0.0265655517578125, 0.00986480712890625, 0.0230712890625, -0.03289794921875, 0.04461669921875, -0.04827880859375, -0.0127410888671875, 0.0247802734375, 0.0245361328125, 0.003879547119140625, 0.0309295654296875, 0.025390625, -0.048614501953125, 0.0024700164794921875, -0.03887939453125, 0.04339599609375, 0.004917144775390625, 0.025634765625, -0.0069732666015625, 0.0190582275390625, 0.01904296875, -0.033721923828125, -0.003406524658203125, 0.024932861328125, -0.040802001953125, -0.002918243408203125, 0.01294708251953125, 0.034332275390625, -0.0160369873046875, -0.016693115234375, 0.035614013671875, 0.0236663818359375, -0.0120697021484375, -0.03173828125, 0.00028634071350097656, 0.0216827392578125, 0.027618408203125, -0.006450653076171875, 0.05828857421875, -0.0809326171875, -0.0201263427734375, 0.0404052734375, 0.0174713134765625, 0.0017719268798828125, 0.001392364501953125, 0.0194854736328125, 0.059814453125, -0.0626220703125, 0.0236968994140625, -0.022613525390625, -0.0023288726806640625, 0.00971221923828125, 0.03546142578125, 0.0199127197265625, -0.0258026123046875, -0.03399658203125, -0.0172882080078125, -0.01450347900390625, 0.0068359375, 0.01319122314453125, 0.01457977294921875, -0.02685546875, -0.032440185546875, 0.03759765625, 0.03680419921875, 0.00830078125, 0.0160675048828125, 0.0498046875, 0.007602691650390625, -0.0738525390625, 0.010711669921875, 0.065185546875, -0.0321044921875, -0.005863189697265625, -0.0186004638671875, -0.04119873046875, -0.000042319297790527344, -0.0284423828125, 0.018035888671875, -0.0228271484375, 0.027191162109375, -0.031280517578125, -0.00923919677734375, -0.0135345458984375, -0.0465087890625, 0.03485107421875, -0.0302276611328125, 0.041656494140625, -0.0305633544921875, 0.00855255126953125, -0.01080322265625, 0.0141143798828125, 0.01428985595703125, -0.003986358642578125, 0.020904541015625, -0.00476837158203125, 0.03741455078125, 0.0357666015625, 0.0190277099609375, 0.00890350341796875, -0.017913818359375, -0.01015472412109375, -0.0287322998046875, 0.04840087890625, -0.0034389495849609375, -0.03192138671875, -0.02716064453125, 0.01491546630859375, 0.024993896484375, 0.0044403076171875, 0.005657196044921875, 0.02398681640625, 0.023681640625, 0.0199737548828125, -0.024627685546875, 0.035003662109375, 0.03448486328125, -0.03192138671875, 0.02374267578125, -0.0015783309936523438, -0.014312744140625, -0.0310516357421875, 0.02178955078125, 0.01995849609375, -0.0039043426513671875, 0.039825439453125, -0.040313720703125, 0.023956298828125, -0.015350341796875, -0.0218963623046875, -0.036529541015625, -0.0101318359375, -0.0284423828125, -0.023345947265625, 0.0188140869140625, -0.01197052001953125, -0.029083251953125, 0.032928466796875, -0.011474609375, -0.0284423828125, 0.03424072265625, -0.050079345703125, 0.047088623046875, 0.0162811279296875, -0.004726409912109375, 0.0450439453125, -0.044342041015625, -0.050140380859375, 0.0023670196533203125, -0.01084136962890625, -0.04534912109375, -0.0400390625, 0.0084075927734375, -0.03924560546875, -0.0284881591796875, 0.004222869873046875, -0.0299224853515625, -0.01495361328125, -0.00920867919921875, 0.0154266357421875, -0.04931640625, 0.06427001953125, -0.00014913082122802734, -0.00323486328125, -0.00907135009765625, -0.01433563232421875, -0.00009453296661376953, -0.01123809814453125, 0.0027446746826171875, 0.041473388671875, 0.02496337890625, -0.0117645263671875, -0.054931640625, 0.05078125, -0.05169677734375, 0.032257080078125, 0.0014314651489257812, -0.005710601806640625, 0.0009822845458984375, 0.0310516357421875, -0.025146484375, -0.0379638671875, -0.03125, 0.024017333984375, -0.031494140625, -0.04498291015625, 0.017059326171875, 0.051788330078125, 0.0288848876953125, -0.0823974609375, -0.06500244140625, -0.0305023193359375, -0.0928955078125, 0.0162353515625, 0.0262908935546875, 0.0204620361328125, -0.0247650146484375, -0.07989501953125, -0.016876220703125, -0.0001024007797241211, -0.0021114349365234375, -0.01239776611328125, 0.02850341796875, 0.03924560546875, -0.032440185546875, -0.045196533203125, 0.046173095703125, -0.0119476318359375, -0.01187896728515625, -0.08221435546875, -0.037567138671875, 0.0179443359375, 0.0192108154296875, -0.048919677734375, -0.0084381103515625, -0.06866455078125, 0.0458984375, 0.0016031265258789062, 0.045257568359375, 0.004535675048828125, -0.0039005279541015625, -0.03363037109375, 0.0018548965454101562, -0.03302001953125, 0.01482391357421875, -0.01282501220703125, 0.0097503662109375, 0.029296875, 0.037872314453125, -0.026702880859375, 0.0271759033203125, 0.0211944580078125, 0.020843505859375, -0.01206207275390625, -0.027679443359375, 0.02105712890625, 0.0380859375, 0.0190582275390625, 0.04266357421875, -0.01186370849609375, -0.0635986328125, -0.0035648345947265625, 0.007808685302734375, -0.0020313262939453125, -0.021331787109375, -0.0019178390502929688, -0.050079345703125, -0.0114593505859375, -0.03790283203125, 0.0008683204650878906, 0.0011959075927734375, -0.050262451171875, -0.0095977783203125, -0.0015230178833007812, 0.033599853515625, 0.001861572265625, 0.0245208740234375, -0.04205322265625, -0.01320648193359375, -0.00557708740234375, -0.025390625, -0.0134124755859375, 0.0438232421875, -0.025787353515625, 0.0224761962890625, -0.0185546875, -0.00180816650390625, -0.0166015625, 0.0220947265625, -0.00237274169921875, -0.033843994140625, -0.021270751953125, 0.016448974609375, -0.0171051025390625, -0.001857757568359375, 0.021942138671875, 0.000009953975677490234, -0.007232666015625, -0.006824493408203125, 0.0107574462890625, -0.04931640625, -0.0191802978515625, -0.0165252685546875, -0.00970458984375, 0.003997802734375, -0.0123443603515625, 0.023681640625, 0.032684326171875, -0.0282135009765625, -0.0015888214111328125, 0.0160675048828125, -0.024627685546875, -0.042449951171875, -0.0037250518798828125, -0.046875, -0.002300262451171875, 0.005725860595703125 ]
b0c0dccbdd691a2fc13dfa2af83e5cb0bdd1a320
Wordpress Stackexchange Q: Overriding single plugin translation Is it possible to override single plugin translation in function.php file and how that can be done? A: Here's an example where a string from a certain text domain is translated using the gettext filter: /** * Translate a certain string from a particular text domain. * * @param string $translation Translated text. * @param string $text Text to translate. * @param string $domain Text domain. Unique identifier for retrieving translated strings. * * @return string */ add_filter( 'gettext', 'wpse_translate_string', 10, 3 ); function wpse_translate_string( $translation, $text, $domain ) { if ( 'plugin_text_domain' === $domain ) { if ( 'Original string...' === $text ) { $translation = 'New string!'; } } return $translation; }
Q: Overriding single plugin translation Is it possible to override single plugin translation in function.php file and how that can be done? A: Here's an example where a string from a certain text domain is translated using the gettext filter: /** * Translate a certain string from a particular text domain. * * @param string $translation Translated text. * @param string $text Text to translate. * @param string $domain Text domain. Unique identifier for retrieving translated strings. * * @return string */ add_filter( 'gettext', 'wpse_translate_string', 10, 3 ); function wpse_translate_string( $translation, $text, $domain ) { if ( 'plugin_text_domain' === $domain ) { if ( 'Original string...' === $text ) { $translation = 'New string!'; } } return $translation; } A: The best approach is overriding translation file .po add_filter( 'load_textdomain_mofile', 'load_custom_plugin_translation_file', 10, 2 ); function load_custom_plugin_translation_file( $mofile, $domain ) { if ('woocommerce' === $domain) { $mofile = get_stylesheet_directory() . '/languages/woocommerce-' . get_locale() . '.mo'; } return $mofile; } A: You can even override single messages if you go directly to your source code. function foo(){ // old message is commented, so you can go back anytime. //echo wp_send_json(array('status' => 'error', 'error_message' => esc_html__('Error Message', 'osetin'))); // message is overriden echo wp_send_json(array('status' => 'error', 'error_message' => esc_html__('Overriden message with any text you want', 'osetin'))); }
wordpress
{ "language": "en", "length": 214, "provenance": "stackexchange_00019.jsonl.gz:484364", "question_score": "5", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/295714" }
[ 0.042510986328125, -0.014434814453125, -0.004367828369140625, -0.005176544189453125, 0.0010442733764648438, -0.031097412109375, 0.050384521484375, -0.0138702392578125, -0.0255279541015625, 0.03765869140625, 0.00772857666015625, -0.0168914794921875, 0.0164337158203125, -0.0286407470703125, -0.007434844970703125, -0.0361328125, 0.00873565673828125, 0.0222320556640625, 0.0253448486328125, -0.01959228515625, 0.00504302978515625, -0.002391815185546875, -0.01296234130859375, 0.0195159912109375, -0.000270843505859375, -0.04095458984375, 0.1317138671875, -0.0244598388671875, -0.00870513916015625, -0.038055419921875, 0.017242431640625, 0.0156402587890625, 0.015716552734375, 0.0289306640625, -0.0401611328125, -0.10015869140625, -0.0012292861938476562, -0.007091522216796875, -0.03765869140625, 0.0158843994140625, 0.044464111328125, -0.032562255859375, -0.053436279296875, 0.0787353515625, -0.0082550048828125, -0.09246826171875, 0.09295654296875, -0.040863037109375, 0.0023899078369140625, 0.0665283203125, 0.02410888671875, -0.0010786056518554688, 0.015594482421875, 0.0019407272338867188, -0.0016927719116210938, -0.009033203125, -0.06719970703125, 0.05755615234375, 0.0233001708984375, 0.038970947265625, -0.01036834716796875, 0.004070281982421875, 0.0012083053588867188, -0.0210113525390625, -0.01210784912109375, -0.0071563720703125, -0.00821685791015625, -0.003543853759765625, -0.01436614990234375, -0.01512908935546875, 0.0207061767578125, -0.02154541015625, 0.0243072509765625, -0.0278778076171875, -0.00728607177734375, 0.01401519775390625, -0.0235443115234375, -0.00447845458984375, 0.0390625, -0.0224609375, 0.0435791015625, -0.023712158203125, 0.0214996337890625, -0.004772186279296875, 0.0006742477416992188, 0.01221466064453125, 0.002292633056640625, -0.0158538818359375, -0.07025146484375, -0.0158538818359375, -0.0345458984375, -0.00432586669921875, -0.0989990234375, 0.0177154541015625, 0.01641845703125, -0.0087127685546875, 0.016082763671875, 0.0210418701171875, -0.013397216796875, -0.0011081695556640625, 0.0308990478515625, -0.05181884765625, 0.029632568359375, -0.0115509033203125, -0.0058135986328125, -0.01560211181640625, -0.0085906982421875, 0.0303955078125, 0.040313720703125, 0.050811767578125, -0.01189422607421875, 0.040283203125, -0.007381439208984375, -0.0170135498046875, 0.001682281494140625, 0.01062774658203125, -0.03314208984375, 0.008453369140625, -0.01181793212890625, -0.0093841552734375, -0.0208740234375, -0.0259552001953125, 0.0289154052734375, -0.00005936622619628906, 0.00386810302734375, -0.01837158203125, -0.03326416015625, 0.004344940185546875, -0.003574371337890625, 0.007701873779296875, -0.0254974365234375, -0.0213623046875, 0.03240966796875, 0.0552978515625, 0.033935546875, -0.0129547119140625, 0.050689697265625, 0.044525146484375, -0.005298614501953125, 0.0200042724609375, -0.0041351318359375, -0.016082763671875, -0.023162841796875, -0.0035457611083984375, -0.019256591796875, -0.00243377685546875, 0.019744873046875, 0.021087646484375, 0.00049591064453125, -0.01251220703125, -0.002445220947265625, -0.0168609619140625, 0.030364990234375, 0.006256103515625, -0.0017061233520507812, -0.00998687744140625, 0.042999267578125, -0.02410888671875, -0.026947021484375, -0.03790283203125, -0.005706787109375, -0.044647216796875, -0.04095458984375, 0.0023975372314453125, -0.042938232421875, 0.061492919921875, 0.031280517578125, 0.005863189697265625, 0.013275146484375, 0.0180511474609375, -0.0302886962890625, 0.03753662109375, 0.0263519287109375, 0.0127716064453125, -0.005702972412109375, 0.0007882118225097656, -0.04754638671875, 0.04913330078125, 0.0203704833984375, 0.0146331787109375, -0.00846099853515625, -0.057769775390625, 0.0244293212890625, 0.0218963623046875, -0.0299224853515625, 0.00429534912109375, -0.006298065185546875, 0.0236968994140625, 0.040252685546875, 0.01323699951171875, -0.01384735107421875, -0.01325225830078125, -0.01355743408203125, -0.0177459716796875, -0.006862640380859375, 0.00023746490478515625, 0.011505126953125, 0.0270843505859375, 0.004337310791015625, -0.01299285888671875, 0.0255889892578125, -0.0177154541015625, 0.0291290283203125, 0.02691650390625, -0.01300811767578125, 0.018890380859375, -0.015960693359375, 0.01157379150390625, 0.0325927734375, 0.0284576416015625, 0.003879547119140625, 0.0148773193359375, -0.016510009765625, -0.007656097412109375, -0.03375244140625, -0.006198883056640625, 0.00876617431640625, 0.021240234375, -0.0017986297607421875, 0.004566192626953125, 0.0245819091796875, -0.0286712646484375, 0.0112152099609375, 0.042938232421875, -0.00386810302734375, 0.031585693359375, -0.0157318115234375, 0.0233917236328125, 0.04437255859375, 0.002513885498046875, 0.05609130859375, -0.0014753341674804688, 0.01806640625, 0.0017328262329101562, -0.01042938232421875, 0.0196380615234375, -0.01186370849609375, -0.064453125, -0.0242462158203125, 0.046356201171875, 0.03851318359375, 0.01203155517578125, -0.012298583984375, 0.0116424560546875, 0.03045654296875, -0.0236358642578125, -0.001888275146484375, 0.01178741455078125, 0.053253173828125, 0.0592041015625, -0.041229248046875, -0.0297393798828125, 0.0243072509765625, -0.070068359375, 0.044921875, 0.032196044921875, -0.002742767333984375, -0.03570556640625, 0.011566162109375, 0.0016813278198242188, 0.01312255859375, 0.004138946533203125, -0.03082275390625, 0.0276947021484375, 0.0181732177734375, -0.00458526611328125, 0.0003552436828613281, 0.0111846923828125, -0.037994384765625, 0.000885009765625, 0.036041259765625, 0.0061798095703125, -0.0211944580078125, -0.0086822509765625, -0.01438140869140625, -0.00969696044921875, -0.033843994140625, 0.038665771484375, -0.0296630859375, -0.0244293212890625, 0.0017986297607421875, 0.0391845703125, -0.038421630859375, -0.02227783203125, 0.0114288330078125, 0.01404571533203125, -0.026763916015625, -0.033843994140625, 0.00478363037109375, -0.03131103515625, 0.01317596435546875, -0.0030059814453125, -0.0467529296875, 0.040374755859375, -0.0025005340576171875, -0.03216552734375, 0.0117950439453125, -0.05853271484375, 0.049560546875, -0.049835205078125, 0.0304107666015625, 0.05877685546875, 0.0115509033203125, -0.01120758056640625, -0.00925445556640625, -0.0308380126953125, 0.0006546974182128906, -0.021728515625, -0.04290771484375, 0.005443572998046875, -0.11083984375, -0.02972412109375, -0.0013666152954101562, 0.0215606689453125, -0.039947509765625, -0.057464599609375, -0.0355224609375, -0.0189971923828125, -0.10211181640625, -0.0364990234375, 0.025909423828125, -0.0296630859375, 0.001312255859375, 0.01534271240234375, -0.0114288330078125, -0.023956298828125, 0.0233612060546875, -0.00914764404296875, 0.0250244140625, -0.0256805419921875, -0.033843994140625, -0.0271453857421875, -0.059906005859375, -0.039794921875, 0.0175628662109375, 0.00446319580078125, 0.0181427001953125, -0.01904296875, 0.0256500244140625, -0.0095977783203125, 0.047027587890625, 0.11627197265625, -0.007404327392578125, -0.0021190643310546875, 0.029388427734375, -0.03106689453125, -0.004146575927734375, 0.0030364990234375, 0.00433349609375, 0.0347900390625, -0.0252532958984375, -0.012054443359375, 0.0171966552734375, 0.018035888671875, 0.04608154296875, -0.074462890625, -0.04571533203125, 0.045135498046875, -0.0123443603515625, -0.03857421875, -0.0274658203125, -0.0024394989013671875, -0.033447265625, 0.033721923828125, -0.0243072509765625, -0.00104522705078125, 0.007366180419921875, 0.0535888671875, 0.03759765625, 0.010589599609375, 0.036468505859375, -0.0004248619079589844, -0.01000213623046875, 0.0133514404296875, 0.01377105712890625, -0.05126953125, 0.0307464599609375, -0.01511383056640625, -0.0426025390625, -0.01148223876953125, 0.0018405914306640625, -0.0027141571044921875, 0.00789642333984375, 0.006816864013671875, -0.03546142578125, 0.04052734375, -0.0291748046875, -0.010894775390625, 0.00110626220703125, -0.0176239013671875, 0.019744873046875, 0.06585693359375, 0.0121612548828125, -0.01458740234375, 0.0180206298828125, 0.015411376953125, -0.034759521484375, -0.029083251953125, -0.04522705078125, -0.00829315185546875, -0.03411865234375, 0.00972747802734375, -0.01482391357421875, -0.0005435943603515625, 0.00016641616821289062, 0.00893402099609375, 0.0105438232421875, -0.0306243896484375, 0.0241241455078125, -0.027435302734375, 0.006710052490234375, 0.005054473876953125, -0.0117950439453125, -0.022186279296875, -0.006412506103515625, -0.04248046875, -0.0188751220703125, 0.00951385498046875, -0.090576171875, 0.028472900390625, 0.0535888671875, -0.017333984375, -0.0023899078369140625, 0.00902557373046875, 0.0176544189453125, 0.061614990234375, -0.003101348876953125, 0.003940582275390625, 0.03411865234375, -0.01204681396484375, 0.0243072509765625, -0.0118560791015625, 0.0007166862487792969, 0.03076171875, -0.0158538818359375, 0.081787109375, -0.006366729736328125, 0.0150299072265625, 0.026397705078125, -0.049713134765625, -0.0538330078125, -0.033203125, -0.048065185546875, 0.0019321441650390625, -0.0016450881958007812, -0.032196044921875, -0.0284423828125, -0.06988525390625, 0.0565185546875, 0.047760009765625, -0.016845703125, 0.00650787353515625, 0.032989501953125, 0.0009164810180664062, -0.04656982421875, -0.07373046875, 0.01497650146484375, 0.025238037109375, 0.0528564453125, -0.005176544189453125, -0.00778961181640625, -0.0350341796875, 0.0262451171875, 0.01349639892578125, -0.0005936622619628906, 0.019317626953125, 0.0188446044921875, 0.01171875, -0.03125, 0.0252838134765625, 0.0119476318359375, -0.03350830078125, 0.0145721435546875, -0.006855010986328125, -0.021331787109375, -0.01149749755859375, 0.0406494140625, -0.014007568359375, 0.0233001708984375, -0.0228729248046875, -0.0706787109375, 0.0232086181640625, 0.0672607421875, -0.0780029296875, -0.00690460205078125, 0.003643035888671875, -0.03118896484375, -0.0288238525390625, -0.0160980224609375, 0.00855255126953125, 0.0277099609375, -0.0013570785522460938, 0.0263519287109375, 0.0129852294921875, -0.036285400390625, -0.022979736328125, 0.004741668701171875, 0.02337646484375, -0.01336669921875, -0.04339599609375, -0.004856109619140625, -0.003467559814453125, 0.0010671615600585938, 0.03948974609375, 0.006885528564453125, -0.0133819580078125, -0.01202392578125, -0.03277587890625, 0.0303802490234375, 0.01494598388671875, -0.01325225830078125, -0.01554107666015625, -0.006500244140625, 0.0048828125, -0.008544921875, 0.028045654296875, 0.013336181640625, -0.038299560546875, 0.0269622802734375, -0.0010738372802734375, 0.005626678466796875, 0.018310546875, 0.0272979736328125, 0.0243988037109375, -0.021209716796875, -0.002857208251953125, 0.006500244140625, 0.020233154296875, -0.0179595947265625, 0.018463134765625, 0.0254974365234375, 0.028961181640625, -0.0188140869140625, -0.02496337890625, 0.007366180419921875, -0.031890869140625, -0.0245513916015625, 0.03363037109375, 0.059173583984375, -0.0200653076171875, -0.0224151611328125, 0.005279541015625, 0.031097412109375, 0.015655517578125, 0.0226593017578125, -0.0306854248046875, -0.0137786865234375, -0.01885986328125, 0.0254058837890625, -0.028289794921875, -0.0196990966796875, -0.01043701171875, -0.019378662109375, -0.0146636962890625, 0.0242156982421875, -0.057220458984375, -0.0204315185546875, -0.00897979736328125, -0.0014677047729492188, 0.01560211181640625, -0.001495361328125, 0.040679931640625, -0.0087890625, -0.029632568359375, 0.0259857177734375, -0.00478363037109375, 0.064697265625, 0.020172119140625, -0.059661865234375, -0.0085906982421875, -0.05462646484375, -0.0240936279296875, -0.057861328125, -0.059112548828125, -0.056610107421875, 0.0215911865234375, 0.00319671630859375, 0.0271759033203125, -0.0031642913818359375, -0.01287841796875, 0.0209197998046875, 0.0046234130859375, -0.00308990478515625, 0.05096435546875, -0.0440673828125, 0.0831298828125, 0.02703857421875, -0.0211029052734375, -0.0019664764404296875, 0.09552001953125, 0.0445556640625, -0.00684356689453125, -0.005802154541015625, -0.00421905517578125, -0.010467529296875, -0.006561279296875, 0.0088958740234375, -0.00152587890625, 0.051055908203125, -0.0010223388671875, 0.031402587890625, -0.01947021484375, 0.0046844482421875, -0.0240478515625, 0.014801025390625, -0.037933349609375, 0.01372528076171875, 0.006359100341796875, -0.046051025390625, 0.01275634765625, -0.0187835693359375, 0.0170440673828125, 0.038116455078125, -0.04425048828125, 0.01824951171875, 0.051116943359375, -0.0083465576171875, -0.00019085407257080078, 0.0019235610961914062, -0.0011911392211914062, 0.0208892822265625, -0.0085601806640625, 0.0263214111328125, 0.0143585205078125, -0.0307159423828125, 0.03570556640625, 0.040496826171875, -0.011505126953125, -0.039276123046875, 0.044677734375, -0.0252532958984375, 0.010345458984375, 0.00809478759765625, 0.078857421875, 0.045166015625, -0.11224365234375, 0.0014047622680664062, 0.012237548828125, -0.01233673095703125, -0.02020263671875, 0.035797119140625, -0.0064544677734375, 0.00632476806640625, 0.01387786865234375, -0.02142333984375, 0.0030307769775390625, 0.0300445556640625, 0.01029205322265625, -0.0175018310546875, -0.0013532638549804688, 0.035675048828125, 0.0179290771484375, 0.01253509521484375, -0.011199951171875, -0.029449462890625, 0.024505615234375, 0.01372528076171875, 0.00421905517578125, 0.04833984375, -0.0253448486328125, -0.0318603515625, 0.050537109375, -0.026275634765625, -0.0128021240234375, 0.00921630859375, -0.01132965087890625, 0.01898193359375, 0.04876708984375, -0.0234375, 0.006107330322265625, 0.01236724853515625, 0.01369476318359375, 0.0268402099609375, -0.042816162109375, -0.0252838134765625, 0.06378173828125, -0.034576416015625, 0.016448974609375, 0.0038433074951171875, 0.0080413818359375, 0.00518035888671875, -0.031219482421875, 0.035400390625, -0.0213470458984375, -0.005130767822265625, 0.02734375, -0.000499725341796875, -0.0067291259765625, -0.01049041748046875, 0.01419830322265625, -0.041595458984375, -0.0361328125, -0.004840850830078125, -0.0633544921875, 0.0097198486328125, -0.0267181396484375, -0.08056640625, 0.104736328125, 0.034271240234375, 0.049407958984375, 0.01120758056640625, 0.034271240234375, -0.04791259765625, 0.0029506683349609375, -0.038055419921875, 0.00986480712890625, -0.017364501953125, 0.05108642578125, 0.0133209228515625, 0.0112457275390625, 0.01386260986328125, 0.006153106689453125, 0.04296875, 0.02252197265625, -0.033905029296875, -0.0002760887145996094, 0.0274810791015625, 0.037109375, -0.005687713623046875, 0.03265380859375, 0.006908416748046875, 0.021453857421875, -0.01580810546875, -0.00992584228515625, 0.032196044921875, -0.058868408203125, -0.03125, 0.04193115234375, 0.0097198486328125, -0.01617431640625, 0.002529144287109375, -0.0007734298706054688, -0.05572509765625, 0.0048370361328125, 0.03857421875, -0.00803375244140625, -0.004718780517578125, 0.005035400390625, -0.006908416748046875, 0.01110076904296875, 0.050750732421875, -0.020751953125, 0.03485107421875, -0.006023406982421875, 0.020111083984375, 0.054412841796875, 0.0180816650390625, 0.022491455078125, 0.0022335052490234375, 0.006511688232421875, -0.0002301931381225586, 0.01432037353515625, 0.01393890380859375, 0.024322509765625, 0.0122528076171875, 0.0142669677734375, 0.0640869140625, 0.016876220703125, 0.005672454833984375, -0.03375244140625, -0.0202484130859375, 0.007167816162109375, -0.003543853759765625, 0.0206298828125, -0.0016193389892578125, 0.02435302734375, -0.032257080078125, -0.015838623046875, 0.016326904296875, -0.0251007080078125, 0.01305389404296875, 0.02777099609375, 0.01605224609375, 0.0135040283203125, 0.0009145736694335938, -0.0333251953125, -0.09600830078125, 0.06793212890625, 0.0242767333984375, 0.101806640625, -0.002349853515625, 0.1011962890625, -0.015899658203125, -0.052398681640625, 0.005382537841796875, 0.0225830078125, -0.005153656005859375, -0.0185546875, -0.0150604248046875, -0.0452880859375, -0.00765228271484375, 0.02117919921875, 0.01324462890625, 0.0230712890625, 0.026397705078125, 0.0032024383544921875, -0.0224761962890625, -0.002307891845703125, 0.032379150390625, -0.0153350830078125, -0.01071929931640625, -0.01004791259765625, 0.0018243789672851562, 0.0251007080078125, -0.00260162353515625, -0.008514404296875, 0.014739990234375, 0.0180511474609375, 0.0244140625, 0.0293121337890625, 0.0022983551025390625, -0.0160064697265625, 0.0018787384033203125, 0.0038166046142578125, 0.0625, 0.0399169921875, -0.06549072265625, -0.021026611328125, -0.0222625732421875, -0.033782958984375, 0.0323486328125, 0.052337646484375, -0.01355743408203125, 0.0277557373046875, 0.0291900634765625, -0.037628173828125, 0.053924560546875, -0.037445068359375, 0.0165863037109375, -0.0013036727905273438, -0.0011882781982421875, -0.0137786865234375, -0.025482177734375, -0.021697998046875, -0.010101318359375, 0.046295166015625, 0.014862060546875, 0.0014867782592773438, 0.007419586181640625, 0.031829833984375, -0.01488494873046875, -0.0025272369384765625, -0.0023250579833984375, -0.01212310791015625, -0.0005521774291992188, -0.004512786865234375, -0.0005750656127929688, -0.004856109619140625, -0.07879638671875, 0.0067596435546875, 0.034393310546875, 0.00548553466796875, 0.033782958984375, -0.0158233642578125, 0.022552490234375, -0.0207977294921875, 0.0545654296875, -0.0250396728515625, -0.052001953125, -0.06072998046875, -0.01511383056640625, 0.0184783935546875, 0.030731201171875, -0.0009188652038574219, 0.031829833984375, -0.00780487060546875, -0.01531219482421875, 0.01425933837890625, -0.0224609375, 0.0036907196044921875, 0.020477294921875, -0.0186920166015625, -0.036712646484375, -0.0188140869140625, -0.0297698974609375, -0.0322265625, -0.0060577392578125, 0.037933349609375, -0.03753662109375, -0.0212554931640625, -0.0269012451171875, -0.061859130859375, -0.004978179931640625, -0.02947998046875, -0.0035037994384765625, -0.036468505859375, 0.0294647216796875, -0.0262603759765625, -0.01461029052734375, -0.0260162353515625, -0.03729248046875, -0.00069427490234375, 0.0037670135498046875, -0.0230255126953125, -0.041473388671875, -0.0350341796875, 0.01493072509765625, 0.0227813720703125, 0.001743316650390625, -0.0355224609375, 0.0229644775390625, -0.048980712890625, 0.0169525146484375, -0.0105743408203125, -0.0240020751953125, 0.0194091796875, 0.01045989990234375, -0.055694580078125, -0.050506591796875, -0.018402099609375, 0.01102447509765625, -0.0207061767578125, 0.019134521484375, 0.044281005859375, -0.0061187744140625, -0.01103973388671875, 0.06396484375, -0.007205963134765625, 0.10284423828125, -0.0509033203125, -0.01052093505859375, 0.0411376953125, -0.0237884521484375, -0.044952392578125, -0.08673095703125, 0.0201263427734375, -0.109130859375, -0.0222625732421875, -0.02056884765625, -0.006114959716796875, -0.0188140869140625, -0.031463623046875, -0.021026611328125, 0.029571533203125, 0.00264739990234375, -0.0182342529296875, -0.039642333984375, -0.01488494873046875, -0.010009765625, 0.0528564453125, -0.009979248046875, 0.0084228515625, -0.0184783935546875, 0.042633056640625, 0.0036334991455078125, 0.0701904296875, -0.01727294921875, 0.028167724609375, -0.00923919677734375, 0.0341796875, 0.029632568359375, -0.007537841796875, -0.0026378631591796875, -0.0026874542236328125, 0.007289886474609375, 0.0017652511596679688, -0.05224609375, -0.0139617919921875, -0.0018281936645507812, 0.033172607421875, -0.01094818115234375, -0.042236328125, -0.0251312255859375, 0.015350341796875, 0.063232421875, 0.0738525390625, 0.006580352783203125, -0.07000732421875, 0.0053558349609375, -0.00391387939453125, -0.0128326416015625, 0.01532745361328125, 0.0103912353515625, -0.050262451171875, -0.006317138671875, 0.043243408203125, -0.0308837890625, 0.01678466796875, 0.0165557861328125, -0.03704833984375, 0.0113983154296875, -0.003627777099609375, -0.05645751953125, -0.0285797119140625, -0.0294189453125, 0.09844970703125, -0.050689697265625, 0.006450653076171875, 0.0120086669921875, 0.027252197265625, 0.046478271484375, -0.0228424072265625, -0.01514434814453125, 0.045135498046875, 0.0120849609375, -0.005001068115234375, 0.038726806640625, 0.00873565673828125, 0.037261962890625, 0.0109100341796875, -0.0223388671875, 0.022796630859375, 0.032440185546875, 0.04998779296875, -0.0526123046875, 0.03448486328125, 0.0164947509765625, -0.024139404296875, -0.025482177734375, 0.053558349609375, -0.007598876953125, 0.01617431640625, -0.051544189453125, 0.0210723876953125, -0.01824951171875, -0.00980377197265625, 0.0219573974609375, 0.0341796875, -0.00580596923828125, 0.016265869140625, 0.007171630859375, -0.044189453125, 0.0028018951416015625, -0.006931304931640625 ]
abb3fcb2c257a363513e386042e475fced7847f1
Wordpress Stackexchange Q: Hide admin notices/notifications from everyone but super admin? I have a Multisite setup, and I would like to hide all notices/notifications from the admin pages for everyone but me (the Super Admin). How would I manage to do this? Thank you! A: Try this code in your custom plugin which is better to activate for the network. if ( !is_super_admin() ) { remove_all_actions('admin_notices'); }
Q: Hide admin notices/notifications from everyone but super admin? I have a Multisite setup, and I would like to hide all notices/notifications from the admin pages for everyone but me (the Super Admin). How would I manage to do this? Thank you! A: Try this code in your custom plugin which is better to activate for the network. if ( !is_super_admin() ) { remove_all_actions('admin_notices'); } A: This is an old question, but I thought I'd share in case it helps someone else. Notices are added by the following actions (in this order): * *network_admin_notices (for network admin--aka super admin. You don't want to remove these.) *user_admin_notices (for site admin) *admin_notices (for other users) The last action to be run before these is in_admin_header so that would be the best place to hook into to remove the notices. function my_hide_notices_to_all_but_super_admin(){ if (!is_super_admin()) { remove_all_actions( 'user_admin_notices' ); remove_all_actions( 'admin_notices' ); } } add_action('in_admin_header', 'my_hide_notices_to_all_but_super_admin', 99); I'm using a high priority of 99 to make it unlikely that notices get added in after this runs. A: Try adding this function in the functions.php file of your theme. function hide_update_noticee_to_all_but_admin_users() { if (!is_super_admin()) { remove_all_actions( 'admin_notices' ); } } add_action( 'admin_head', 'hide_update_noticee_to_all_but_admin_users', 1 );
wordpress
{ "language": "en", "length": 200, "provenance": "stackexchange_00019.jsonl.gz:484443", "question_score": "5", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/296056" }
[ 0.040313720703125, 0.0164947509765625, -0.0014257431030273438, -0.0234375, 0.01543426513671875, -0.032562255859375, 0.0122222900390625, -0.0270538330078125, 0.028961181640625, 0.0210113525390625, -0.00911712646484375, -0.035308837890625, 0.017547607421875, -0.0380859375, -0.028106689453125, -0.023712158203125, 0.0139617919921875, 0.034149169921875, 0.048248291015625, -0.01727294921875, 0.01248931884765625, -0.006351470947265625, 0.01482391357421875, 0.030670166015625, -0.005878448486328125, -0.0274505615234375, 0.07098388671875, -0.017822265625, 0.01117706298828125, -0.01428985595703125, 0.01320648193359375, -0.006290435791015625, -0.017547607421875, 0.038848876953125, -0.0052032470703125, -0.0501708984375, -0.016754150390625, 0.0311279296875, 0.0281219482421875, -0.0220489501953125, 0.01209259033203125, 0.003116607666015625, 0.0570068359375, 0.005405426025390625, 0.0225067138671875, -0.02386474609375, 0.00136566162109375, -0.0799560546875, 0.00197601318359375, -0.044921875, 0.004512786865234375, -0.006561279296875, 0.0264739990234375, -0.044219970703125, -0.016021728515625, -0.006801605224609375, -0.0182647705078125, 0.051666259765625, 0.04052734375, -0.01360321044921875, -0.04840087890625, -0.005199432373046875, 0.008026123046875, -0.0380859375, -0.01113128662109375, -0.005645751953125, -0.01114654541015625, 0.0113372802734375, -0.0657958984375, -0.0173797607421875, 0.05279541015625, -0.034698486328125, 0.0305328369140625, 0.00592041015625, -0.03558349609375, -0.036712646484375, 0.0026111602783203125, -0.0130157470703125, 0.049530029296875, -0.0401611328125, 0.0127105712890625, 0.0014543533325195312, -0.021209716796875, -0.01265716552734375, -0.0026092529296875, 0.0205078125, -0.005199432373046875, -0.00823974609375, -0.01268768310546875, 0.0009756088256835938, -0.0158233642578125, -0.023345947265625, -0.0198211669921875, 0.04473876953125, 0.01085662841796875, -0.0191497802734375, 0.06475830078125, 0.10882568359375, -0.0260162353515625, -0.0301361083984375, -0.05712890625, 0.0052947998046875, -0.0802001953125, -0.01175689697265625, -0.006809234619140625, 0.042083740234375, -0.021270751953125, 0.01348876953125, 0.034332275390625, 0.031829833984375, 0.0203094482421875, -0.04193115234375, -0.003688812255859375, 0.027740478515625, -0.006343841552734375, -0.01010894775390625, -0.046539306640625, 0.028228759765625, -0.0276641845703125, 0.02508544921875, 0.00750732421875, 0.01328277587890625, -0.008209228515625, -0.0190887451171875, -0.0158843994140625, -0.0246734619140625, -0.04052734375, 0.00405120849609375, -0.0025959014892578125, 0.018463134765625, -0.03961181640625, 0.0218048095703125, 0.0499267578125, 0.0014677047729492188, -0.00811767578125, -0.0121612548828125, 0.0286712646484375, 0.0474853515625, 0.013763427734375, -0.0098114013671875, 0.0285491943359375, -0.00534820556640625, -0.025238037109375, -0.004505157470703125, -0.049346923828125, 0.005863189697265625, 0.0038051605224609375, 0.0159759521484375, -0.0086669921875, -0.0263671875, -0.04229736328125, -0.039886474609375, 0.039154052734375, -0.008758544921875, 0.00502777099609375, 0.0118560791015625, 0.058990478515625, -0.01012420654296875, -0.07293701171875, -0.0152740478515625, -0.005855560302734375, -0.00565338134765625, 0.056854248046875, -0.00000864267349243164, -0.01788330078125, 0.0308380126953125, -0.053375244140625, -0.0184326171875, 0.022918701171875, -0.04425048828125, 0.040252685546875, -0.0057220458984375, 0.055755615234375, 0.01282501220703125, 0.007266998291015625, 0.0239715576171875, 0.00420379638671875, -0.00826263427734375, 0.025054931640625, -0.0238189697265625, -0.043426513671875, -0.039031982421875, 0.0231170654296875, -0.01959228515625, -0.07733154296875, 0.017791748046875, 0.0119781494140625, 0.044097900390625, 0.0308990478515625, 0.007354736328125, 0.0843505859375, -0.003978729248046875, 0.03125, -0.0243682861328125, -0.01349639892578125, -0.0054473876953125, 0.0082244873046875, 0.037353515625, -0.0191192626953125, -0.031341552734375, -0.01422882080078125, -0.0181732177734375, 0.0266876220703125, 0.0171661376953125, -0.005218505859375, 0.0128173828125, -0.01233673095703125, 0.01776123046875, 0.0156707763671875, 0.0171051025390625, -0.004146575927734375, 0.0181121826171875, -0.0185394287109375, -0.052642822265625, -0.046966552734375, 0.0018815994262695312, -0.00826263427734375, 0.02178955078125, -0.0069122314453125, 0.037628173828125, -0.0007963180541992188, -0.0264129638671875, 0.0024433135986328125, 0.01611328125, 0.00920867919921875, -0.0364990234375, -0.003143310546875, -0.0161895751953125, 0.00955963134765625, -0.017120361328125, 0.001903533935546875, 0.04180908203125, -0.042694091796875, -0.013275146484375, -0.003143310546875, 0.004871368408203125, 0.0030918121337890625, -0.06707763671875, 0.0115509033203125, 0.0248260498046875, 0.040496826171875, 0.00778961181640625, 0.0090179443359375, 0.0364990234375, 0.0723876953125, -0.04351806640625, -0.01227569580078125, 0.0277252197265625, 0.0023288726806640625, -0.02923583984375, -0.0064849853515625, -0.042816162109375, 0.05279541015625, -0.046234130859375, 0.0296783447265625, 0.036895751953125, 0.02569580078125, -0.005626678466796875, -0.02044677734375, 0.00690460205078125, 0.0207061767578125, -0.02227783203125, -0.062103271484375, 0.01354217529296875, -0.0266571044921875, -0.0213165283203125, 0.01904296875, 0.0169830322265625, 0.0217742919921875, -0.04693603515625, 0.01422882080078125, 0.01006317138671875, 0.0009703636169433594, 0.005222320556640625, 0.040191650390625, -0.009857177734375, -0.04193115234375, -0.0048828125, 0.012359619140625, -0.0097503662109375, -0.031768798828125, -0.0229644775390625, -0.0042877197265625, -0.01081085205078125, 0.016937255859375, -0.007778167724609375, 0.0244140625, -0.0313720703125, -0.0168914794921875, -0.03167724609375, -0.021484375, 0.075927734375, -0.0003428459167480469, 0.05291748046875, 0.006591796875, 0.0031261444091796875, -0.07904052734375, -0.0509033203125, 0.0323486328125, -0.04779052734375, 0.0015010833740234375, 0.07568359375, 0.03790283203125, -0.020660400390625, 0.0089111328125, -0.00949859619140625, 0.0361328125, 0.007556915283203125, 0.011260986328125, 0.01442718505859375, -0.040191650390625, -0.0025920867919921875, 0.006214141845703125, 0.0041961669921875, -0.0218658447265625, -0.04302978515625, -0.013092041015625, 0.00501251220703125, -0.041107177734375, 0.017822265625, -0.035400390625, -0.032623291015625, 0.01052093505859375, -0.0150604248046875, -0.009490966796875, 0.0078582763671875, 0.0004930496215820312, 0.0190582275390625, -0.040069580078125, 0.0118560791015625, -0.0189208984375, 0.01525115966796875, 0.0024051666259765625, 0.07305908203125, -0.0173797607421875, 0.006893157958984375, 0.0035953521728515625, 0.05511474609375, 0.01027679443359375, -0.05377197265625, 0.00905609130859375, -0.0037631988525390625, -0.01535797119140625, 0.0260162353515625, -0.0246124267578125, -0.00525665283203125, 0.0272674560546875, 0.0186614990234375, -0.0028324127197265625, 0.00022017955780029297, 0.005924224853515625, -0.032470703125, 0.021331787109375, -0.0238494873046875, 0.04443359375, -0.035430908203125, -0.047882080078125, 0.0074920654296875, -0.004650115966796875, -0.04595947265625, -0.004550933837890625, -0.0029144287109375, -0.041778564453125, 0.0205535888671875, 0.005901336669921875, -0.028167724609375, 0.03143310546875, -0.0155792236328125, 0.032928466796875, -0.0008573532104492188, -0.0010480880737304688, 0.0104522705078125, -0.04718017578125, -0.00014221668243408203, 0.0170440673828125, -0.008544921875, -0.033538818359375, -0.04156494140625, 0.036163330078125, -0.0295867919921875, 0.00991058349609375, -0.0016574859619140625, 0.031646728515625, 0.01251220703125, -0.01491546630859375, 0.02777099609375, -0.028045654296875, 0.0094146728515625, -0.0254058837890625, -0.007328033447265625, -0.0043487548828125, 0.059600830078125, -0.029937744140625, -0.0255584716796875, 0.0060882568359375, 0.016876220703125, -0.00734710693359375, -0.0247039794921875, -0.013641357421875, -0.0171356201171875, -0.08544921875, 0.027801513671875, -0.0013017654418945312, -0.0216217041015625, -0.037109375, 0.040863037109375, -0.0482177734375, -0.0321044921875, 0.01361846923828125, -0.01507568359375, 0.00640869140625, -0.0109100341796875, -0.00998687744140625, -0.032318115234375, 0.0060882568359375, -0.034698486328125, -0.044189453125, 0.0032253265380859375, -0.048187255859375, 0.035797119140625, 0.0200347900390625, 0.03619384765625, 0.0012121200561523438, 0.0202484130859375, 0.0152587890625, 0.029815673828125, -0.05316162109375, -0.021484375, 0.01318359375, -0.00007361173629760742, -0.0269775390625, 0.0068511962890625, -0.0201416015625, 0.00460052490234375, -0.02825927734375, -0.00791168212890625, -0.02020263671875, -0.039520263671875, 0.028106689453125, -0.04107666015625, -0.039337158203125, -0.040283203125, -0.07550048828125, -0.008880615234375, -0.0302886962890625, -0.01505279541015625, -0.0274810791015625, -0.057098388671875, -0.040679931640625, -0.0084686279296875, -0.0670166015625, 0.040130615234375, -0.024444580078125, 0.04071044921875, 0.0032520294189453125, -0.058807373046875, 0.00695037841796875, 0.0243988037109375, -0.0167388916015625, 0.035491943359375, 0.043487548828125, -0.004444122314453125, -0.002838134765625, 0.005527496337890625, -0.002605438232421875, -0.018524169921875, 0.047088623046875, -0.037200927734375, -0.0787353515625, 0.059356689453125, -0.0660400390625, 0.0212860107421875, 0.005954742431640625, 0.009613037109375, -0.016571044921875, -0.0159454345703125, 0.0266571044921875, 0.032867431640625, -0.0186309814453125, -0.03826904296875, -0.01348114013671875, 0.00852203369140625, -0.00586700439453125, 0.002002716064453125, -0.001689910888671875, 0.0035915374755859375, -0.02264404296875, -0.0138092041015625, 0.0087890625, -0.02587890625, 0.0249481201171875, -0.062469482421875, 0.0139923095703125, -0.0150299072265625, -0.0389404296875, -0.006420135498046875, -0.005889892578125, 0.038238525390625, -0.006359100341796875, -0.043243408203125, -0.0207672119140625, -0.001819610595703125, 0.01654052734375, 0.00646209716796875, -0.01309967041015625, 0.035125732421875, 0.0396728515625, -0.018585205078125, -0.0163116455078125, 0.0269317626953125, -0.026702880859375, -0.0518798828125, -0.031280517578125, -0.018310546875, -0.00498199462890625, 0.018829345703125, 0.055206298828125, -0.0287017822265625, 0.03997802734375, -0.0186309814453125, 0.01416778564453125, 0.0037441253662109375, -0.029449462890625, 0.0026702880859375, 0.053558349609375, 0.0201873779296875, -0.0572509765625, 0.03900146484375, 0.0122833251953125, -0.0106353759765625, 0.0443115234375, 0.0160369873046875, 0.0867919921875, 0.057037353515625, -0.07843017578125, -0.00007849931716918945, -0.046478271484375, 0.0970458984375, 0.049285888671875, -0.066650390625, -0.0562744140625, -0.014404296875, 0.04876708984375, -0.01006317138671875, -0.0168914794921875, 0.0340576171875, -0.01947021484375, -0.00687408447265625, 0.0009140968322753906, -0.06683349609375, 0.0017766952514648438, 0.0275115966796875, -0.03448486328125, 0.00848388671875, 0.00946807861328125, -0.095458984375, -0.06475830078125, 0.0046539306640625, 0.00966644287109375, 0.036346435546875, -0.0134124755859375, -0.029083251953125, -0.01079559326171875, 0.01354217529296875, -0.0036220550537109375, -0.00510406494140625, 0.05108642578125, 0.008148193359375, -0.06182861328125, 0.019287109375, -0.052825927734375, -0.01258087158203125, -0.0830078125, -0.0699462890625, -0.0294342041015625, 0.0033054351806640625, 0.01509857177734375, -0.005901336669921875, 0.0026702880859375, -0.0248260498046875, -0.0179443359375, 0.038421630859375, 0.0248565673828125, 0.00751495361328125, 0.004581451416015625, 0.05474853515625, -0.003856658935546875, 0.07696533203125, 0.020660400390625, 0.0213165283203125, -0.0335693359375, -0.028717041015625, 0.01129913330078125, -0.058441162109375, -0.007534027099609375, 0.007358551025390625, -0.0296478271484375, -0.027435302734375, -0.028076171875, 0.0004911422729492188, 0.0179290771484375, 0.004238128662109375, 0.0026702880859375, -0.037322998046875, -0.0071258544921875, -0.01110076904296875, 0.0377197265625, -0.052764892578125, -0.02362060546875, 0.031646728515625, 0.0030879974365234375, -0.059356689453125, 0.0272369384765625, 0.0074310302734375, 0.03167724609375, 0.014923095703125, -0.00992584228515625, 0.02935791015625, 0.048248291015625, -0.0018167495727539062, 0.040924072265625, 0.015472412109375, 0.0245208740234375, 0.0230865478515625, -0.01473236083984375, -0.0019779205322265625, -0.0088653564453125, 0.05859375, 0.006084442138671875, 0.0056915283203125, 0.065673828125, -0.005336761474609375, 0.00705718994140625, 0.080810546875, 0.0689697265625, -0.11810302734375, 0.006237030029296875, 0.019805908203125, 0.0224151611328125, 0.017608642578125, -0.003910064697265625, -0.037078857421875, -0.08935546875, -0.007183074951171875, -0.017242431640625, -0.0341796875, -0.02752685546875, 0.0002486705780029297, -0.01439666748046875, -0.003574371337890625, 0.01084136962890625, 0.00675201416015625, 0.0253753662109375, -0.0177154541015625, -0.0311431884765625, 0.017852783203125, -0.0082244873046875, 0.02081298828125, 0.0011157989501953125, -0.05889892578125, -0.06878662109375, -0.0207977294921875, 0.033477783203125, -0.06396484375, 0.016357421875, 0.0225067138671875, -0.0232391357421875, 0.07025146484375, -0.0267791748046875, 0.029388427734375, 0.03216552734375, -0.05865478515625, -0.019805908203125, -0.05194091796875, -0.00972747802734375, 0.006679534912109375, -0.05670166015625, 0.0197296142578125, -0.0089874267578125, -0.03118896484375, -0.01107025146484375, -0.02178955078125, 0.0859375, -0.0457763671875, -0.0200958251953125, -0.00792694091796875, 0.0233306884765625, 0.00783538818359375, 0.002323150634765625, 0.00983428955078125, -0.022186279296875, 0.0209503173828125, 0.0024013519287109375, 0.005207061767578125, -0.004608154296875, 0.00785064697265625, -0.056427001953125, 0.05706787109375, 0.0248565673828125, 0.00119781494140625, -0.002735137939453125, 0.01708984375, -0.032867431640625, 0.005260467529296875, -0.04437255859375, 0.054718017578125, -0.00815582275390625, 0.043792724609375, -0.041961669921875, 0.00638580322265625, 0.00890350341796875, 0.010345458984375, 0.06268310546875, 0.017364501953125, -0.018463134765625, -0.01580810546875, 0.0166778564453125, 0.00379180908203125, -0.02716064453125, 0.048583984375, -0.01641845703125, -0.00600433349609375, 0.0047149658203125, -0.01419830322265625, 0.0360107421875, -0.06365966796875, -0.0277557373046875, 0.008148193359375, 0.01140594482421875, 0.01506805419921875, 0.0236968994140625, -0.00399017333984375, -0.028717041015625, 0.0179290771484375, 0.02593994140625, -0.047943115234375, -0.00008851289749145508, -0.00015294551849365234, 0.00847625732421875, -0.01026153564453125, 0.052459716796875, -0.0295562744140625, 0.050384521484375, 0.0142669677734375, 0.00995635986328125, 0.0201416015625, 0.00939178466796875, -0.00284576416015625, 0.01520538330078125, 0.0037078857421875, 0.0294952392578125, -0.0192413330078125, -0.0215301513671875, -0.01145172119140625, 0.01513671875, -0.052093505859375, -0.0229034423828125, 0.0200347900390625, 0.00600433349609375, 0.005237579345703125, -0.003997802734375, 0.0188446044921875, 0.010040283203125, 0.01251220703125, 0.0007066726684570312, 0.0291900634765625, -0.01242828369140625, -0.0076446533203125, -0.041259765625, -0.02691650390625, 0.00826263427734375, 0.062042236328125, -0.0022335052490234375, -0.0256500244140625, -0.0038623809814453125, -0.08575439453125, -0.03753662109375, -0.03253173828125, 0.036346435546875, 0.039886474609375, 0.04205322265625, 0.0194549560546875, 0.03631591796875, -0.0206146240234375, -0.002086639404296875, -0.01378631591796875, 0.01091766357421875, -0.022186279296875, -0.0216522216796875, -0.01177215576171875, 0.038970947265625, 0.0114593505859375, 0.028717041015625, -0.0036163330078125, 0.05010986328125, 0.037261962890625, -0.022705078125, -0.01454925537109375, -0.00933074951171875, -0.01068115234375, 0.041046142578125, -0.060821533203125, 0.037506103515625, -0.003986358642578125, 0.00606536865234375, -0.0037384033203125, 0.00202178955078125, 0.04156494140625, -0.002857208251953125, -0.036834716796875, 0.012969970703125, -0.03472900390625, 0.046142578125, -0.0146026611328125, -0.006671905517578125, 0.00299072265625, -0.044830322265625, -0.03759765625, -0.019134521484375, 0.00432586669921875, 0.0301513671875, 0.0249786376953125, -0.0286865234375, 0.045654296875, 0.0185394287109375, 0.038238525390625, -0.0248565673828125, -0.02978515625, 0.01074981689453125, -0.03240966796875, 0.016143798828125, 0.00757598876953125, -0.01451873779296875, -0.032470703125, -0.0039520263671875, 0.045196533203125, 0.040191650390625, 0.024566650390625, 0.0030307769775390625, 0.033935546875, 0.004726409912109375, 0.024017333984375, -0.0433349609375, -0.0237274169921875, 0.034332275390625, -0.034393310546875, -0.007778167724609375, 0.0018014907836914062, -0.0704345703125, 0.07476806640625, 0.0269317626953125, -0.025146484375, 0.08013916015625, 0.04193115234375, -0.03790283203125, -0.067138671875, 0.014892578125, -0.0191497802734375, -0.0238037109375, -0.015716552734375, 0.01528167724609375, 0.0177001953125, 0.01430511474609375, -0.04400634765625, 0.0162353515625, -0.0249481201171875, -0.047119140625, -0.00128173828125, -0.026763916015625, -0.0234527587890625, 0.033966064453125, 0.0092926025390625, 0.0167694091796875, 0.0036106109619140625, -0.0185699462890625, 0.04327392578125, 0.00821685791015625, 0.0203704833984375, 0.0033397674560546875, 0.058197021484375, -0.048919677734375, -0.01271820068359375, -0.0055999755859375, -0.032806396484375, 0.00513458251953125, -0.007183074951171875, -0.01476287841796875, -0.0208587646484375, 0.012664794921875, -0.01007843017578125, -0.020050048828125, -0.02227783203125, 0.0288848876953125, -0.0411376953125, -0.004367828369140625, -0.0943603515625, 0.017578125, 0.0211944580078125, -0.0171356201171875, -0.046051025390625, 0.016876220703125, -0.04974365234375, 0.07598876953125, -0.03948974609375, 0.04302978515625, -0.02960205078125, -0.00823974609375, 0.000003933906555175781, -0.011199951171875, -0.04156494140625, 0.051910400390625, 0.004634857177734375, -0.0091552734375, 0.015625, -0.002490997314453125, -0.004001617431640625, -0.036895751953125, -0.0157012939453125, 0.028900146484375, -0.016265869140625, -0.0276031494140625, -0.05535888671875, 0.028472900390625, 0.010009765625, -0.0117034912109375, 0.02313232421875, -0.021759033203125, -0.050689697265625, 0.0191497802734375, -0.017608642578125, 0.0153961181640625, -0.034698486328125, -0.06756591796875, 0.06201171875, 0.007160186767578125, -0.0312347412109375, 0.00922393798828125, 0.01274871826171875, 0.000652313232421875, -0.01273345947265625, 0.004268646240234375, -0.0235595703125, -0.002655029296875, 0.0055389404296875, 0.025848388671875, -0.019012451171875, 0.017547607421875, 0.0228271484375, -0.024627685546875, 0.0289306640625, 0.014129638671875, -0.0280303955078125, -0.0235595703125, -0.0199127197265625, 0.03424072265625, 0.01641845703125, -0.0258941650390625, -0.025909423828125, 0.0462646484375, -0.0022449493408203125, 0.002796173095703125, 0.005252838134765625, -0.06939697265625, -0.03070068359375, 0.09283447265625, 0.077392578125, 0.03533935546875, -0.034942626953125, 0.017608642578125, -0.01885986328125, -0.03125, -0.0111083984375, 0.0179290771484375, -0.046112060546875, -0.0166778564453125, 0.0182647705078125, 0.006481170654296875, 0.0125732421875, 0.003662109375, -0.006427764892578125, -0.022369384765625, 0.0035648345947265625, -0.0083465576171875, -0.029693603515625, -0.01514434814453125, -0.007022857666015625, -0.01126861572265625, -0.0183563232421875, -0.005619049072265625, 0.004611968994140625, -0.0275726318359375, 0.0305328369140625, -0.036163330078125, -0.040924072265625, -0.0189361572265625, 0.04608154296875, -0.0288543701171875, 0.0288238525390625, -0.04571533203125, 0.005916595458984375, -0.02130126953125, 0.0248260498046875, 0.00769805908203125, 0.0491943359375, -0.0209808349609375, 0.005596160888671875, 0.0300445556640625, -0.0106353759765625, -0.01503753662109375, 0.0789794921875, -0.0199737548828125, 0.03326416015625, 0.00421142578125, -0.0149688720703125, 0.042266845703125, -0.0129241943359375, 0.0076751708984375, 0.028045654296875, 0.0404052734375, -0.04058837890625, 0.046356201171875, -0.00605010986328125, 0.042388916015625, 0.01456451416015625 ]
86d3dca12d76c3faade09f704a7a59310799996f
Wordpress Stackexchange Q: how to add custom user capabilities using add_user_meta or something else? i have two WordPress sites with SSO Configurations as described here but the plugin in the answer didn't work for me so i tried to write a code to add capabilities for second site users: $wp_user_query = new WP_User_Query(array('role' => 'author')); $users = $wp_user_query->get_results(); if (!empty($users)) { foreach ($users as $user) { add_user_meta( $user->id, 'orewpst_capabilities', "a:1:{s:6:'author';b:1;}", true ); add_user_meta( $user->id, 'orewpst_user_level', '2', true ); } } the problem is the output result for "a:1:{s:6:'author';b:1;}" is s:23:"a:1:{s:6:'author';b:1;}" i don't know what "s:23" means and why it appears in database! update: I want the string "a:1:{s:6:'author';b:1;}" to store in database with out any change! but somehow my code adds an "s:23:" before it. A: Try passing the value without serializing it manually, because WordPress will do it for you anyway: add_user_meta( $user->id, 'orewpst_capabilities', array( 'author' => 1 ), true ); or update_user_meta( $user->id, 'orewpst_capabilities', array( 'author' => 1 ) ); // it will create the meta data for you if it doesn't exist already. The s:23 means that you stored a string with 23 chars. Hope it helps!
Q: how to add custom user capabilities using add_user_meta or something else? i have two WordPress sites with SSO Configurations as described here but the plugin in the answer didn't work for me so i tried to write a code to add capabilities for second site users: $wp_user_query = new WP_User_Query(array('role' => 'author')); $users = $wp_user_query->get_results(); if (!empty($users)) { foreach ($users as $user) { add_user_meta( $user->id, 'orewpst_capabilities', "a:1:{s:6:'author';b:1;}", true ); add_user_meta( $user->id, 'orewpst_user_level', '2', true ); } } the problem is the output result for "a:1:{s:6:'author';b:1;}" is s:23:"a:1:{s:6:'author';b:1;}" i don't know what "s:23" means and why it appears in database! update: I want the string "a:1:{s:6:'author';b:1;}" to store in database with out any change! but somehow my code adds an "s:23:" before it. A: Try passing the value without serializing it manually, because WordPress will do it for you anyway: add_user_meta( $user->id, 'orewpst_capabilities', array( 'author' => 1 ), true ); or update_user_meta( $user->id, 'orewpst_capabilities', array( 'author' => 1 ) ); // it will create the meta data for you if it doesn't exist already. The s:23 means that you stored a string with 23 chars. Hope it helps! A: That's right the s:23 is serialized data. WordPress automatically store the data in serialized format. Also, To set the user capabilities use function add_cap() instead of updating the user meta. For more details check WordPress handbook user roles and capabilities.
wordpress
{ "language": "en", "length": 229, "provenance": "stackexchange_00019.jsonl.gz:484457", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/296095" }
[ 0.068115234375, 0.0010805130004882812, 0.00231170654296875, -0.0562744140625, 0.0158233642578125, -0.02752685546875, 0.015106201171875, -0.01690673828125, 0.00959014892578125, 0.04473876953125, 0.0164947509765625, -0.008514404296875, 0.01372528076171875, -0.029052734375, -0.0135955810546875, -0.01505279541015625, 0.005401611328125, 0.034149169921875, 0.0166778564453125, -0.0218963623046875, 0.017486572265625, -0.01800537109375, -0.01467132568359375, 0.039520263671875, 0.0162811279296875, -0.06561279296875, 0.031646728515625, -0.041015625, 0.01934814453125, -0.022705078125, 0.009735107421875, 0.0279083251953125, 0.03466796875, -0.00946044921875, -0.01079559326171875, -0.027191162109375, 0.041107177734375, -0.036651611328125, -0.036346435546875, 0.044342041015625, 0.01177978515625, -0.010162353515625, 0.0208587646484375, 0.020660400390625, -0.000453948974609375, -0.0533447265625, 0.052734375, -0.0309295654296875, 0.015716552734375, 0.01355743408203125, 0.01450347900390625, 0.008026123046875, 0.020751953125, 0.0218505859375, -0.0086822509765625, -0.00331878662109375, -0.0361328125, 0.013641357421875, 0.00965118408203125, 0.0166168212890625, 0.0113372802734375, 0.00988006591796875, 0.0049591064453125, 0.00835418701171875, 0.01122283935546875, -0.01210784912109375, -0.0012083053588867188, 0.024749755859375, -0.0241241455078125, -0.0243072509765625, -0.011199951171875, -0.01059722900390625, -0.005977630615234375, 0.01180267333984375, 0.004840850830078125, -0.0243377685546875, -0.0258941650390625, -0.0308380126953125, 0.03179931640625, 0.0340576171875, -0.036895751953125, -0.01007080078125, 0.01611328125, -0.0077972412109375, -0.031768798828125, -0.0089569091796875, -0.0250244140625, 0.003757476806640625, 0.02734375, 0.0175018310546875, 0.0112152099609375, -0.0297698974609375, 0.0531005859375, 0.041595458984375, -0.01071929931640625, -0.027557373046875, 0.042694091796875, 0.05206298828125, -0.0199432373046875, 0.0012226104736328125, 0.01702880859375, -0.045928955078125, 0.0238189697265625, -0.032196044921875, 0.018768310546875, 0.062408447265625, -0.01116180419921875, -0.0122528076171875, 0.0283660888671875, 0.0127410888671875, 0.0027179718017578125, -0.007678985595703125, -0.0258026123046875, -0.0341796875, 0.00982666015625, 0.01433563232421875, -0.047637939453125, 0.03271484375, 0.0086822509765625, -0.016265869140625, 0.0006427764892578125, 0.00927734375, -0.032379150390625, -0.02593994140625, 0.02978515625, -0.0184173583984375, -0.0204925537109375, 0.034881591796875, -0.04290771484375, 0.000030100345611572266, -0.02239990234375, 0.04656982421875, 0.046844482421875, 0.0270233154296875, -0.011322021484375, -0.005100250244140625, 0.0167999267578125, -0.056976318359375, -0.0236358642578125, 0.04400634765625, -0.023773193359375, -0.05145263671875, 0.00811767578125, -0.0265350341796875, -0.0192718505859375, 0.0138702392578125, 0.0233306884765625, 0.0133056640625, -0.00684356689453125, -0.036865234375, -0.0247344970703125, -0.00798797607421875, 0.01439666748046875, -0.0245361328125, -0.0021266937255859375, 0.0287628173828125, -0.01273345947265625, -0.0010347366333007812, -0.0338134765625, 0.0139312744140625, -0.0211181640625, -0.0081329345703125, 0.02447509765625, -0.01092529296875, -0.01898193359375, 0.01235198974609375, -0.0182647705078125, -0.004558563232421875, 0.0182952880859375, 0.012908935546875, -0.003818511962890625, -0.00603485107421875, 0.0269622802734375, -0.017333984375, -0.0271453857421875, -0.01885986328125, -0.0199737548828125, 0.039031982421875, 0.03033447265625, 0.0275726318359375, 0.001068115234375, -0.02801513671875, 0.094970703125, -0.0247955322265625, -0.05377197265625, 0.0640869140625, -0.0175018310546875, 0.04705810546875, 0.0196990966796875, -0.007434844970703125, 0.016082763671875, 0.04315185546875, -0.00083160400390625, 0.017547607421875, -0.01568603515625, -0.052520751953125, 0.015655517578125, -0.01445770263671875, -0.016021728515625, 0.0172271728515625, 0.06964111328125, -0.00536346435546875, 0.03704833984375, -0.0192108154296875, -0.078857421875, 0.05145263671875, -0.04168701171875, 0.0206298828125, -0.03192138671875, -0.0188446044921875, 0.01087188720703125, -0.0252838134765625, -0.0137786865234375, 0.0037136077880859375, -0.004177093505859375, -0.006549835205078125, 0.01134490966796875, 0.0850830078125, 0.01448822021484375, 0.025238037109375, -0.0003771781921386719, -0.041595458984375, 0.01421356201171875, 0.031829833984375, 0.01806640625, -0.02685546875, -0.00469207763671875, -0.0146942138671875, 0.045440673828125, -0.0150604248046875, 0.06597900390625, 0.004344940185546875, 0.04864501953125, 0.036376953125, -0.0254669189453125, -0.004619598388671875, -0.0062408447265625, -0.06585693359375, -0.01270294189453125, 0.060791015625, 0.03155517578125, 0.00934600830078125, -0.007335662841796875, 0.029937744140625, 0.003681182861328125, -0.0156707763671875, 0.02294921875, 0.00875091552734375, -0.015869140625, 0.05364990234375, -0.01241302490234375, 0.02947998046875, -0.00951385498046875, -0.043487548828125, -0.00856781005859375, 0.0406494140625, -0.072021484375, -0.006450653076171875, -0.009124755859375, -0.0227813720703125, 0.00968170166015625, -0.0650634765625, 0.0216522216796875, -0.0224456787109375, 0.041961669921875, 0.0236358642578125, 0.049285888671875, 0.02972412109375, -0.043182373046875, 0.02392578125, 0.01531219482421875, 0.007843017578125, 0.0037441253662109375, -0.0433349609375, -0.00395965576171875, -0.02435302734375, -0.013092041015625, 0.0283660888671875, -0.004489898681640625, -0.039154052734375, 0.01497650146484375, 0.034759521484375, -0.038360595703125, -0.002262115478515625, -0.0278472900390625, -0.0267333984375, -0.007061004638671875, 0.0499267578125, -0.01328277587890625, -0.0242156982421875, 0.038482666015625, 0.0034275054931640625, -0.0258331298828125, 0.0269775390625, -0.02911376953125, -0.02349853515625, 0.05181884765625, -0.0273284912109375, 0.020599365234375, -0.00986480712890625, 0.031951904296875, 0.06927490234375, 0.01300048828125, -0.015289306640625, -0.00543975830078125, -0.046966552734375, -0.035308837890625, 0.0606689453125, 0.0313720703125, -0.05218505859375, 0.0198822021484375, 0.07421875, 0.016204833984375, -0.019439697265625, 0.0396728515625, -0.00754547119140625, 0.018310546875, 0.0156402587890625, -0.0304412841796875, -0.0379638671875, 0.031951904296875, -0.07098388671875, -0.0197906494140625, -0.01038360595703125, -0.04693603515625, -0.00731658935546875, 0.0202178955078125, -0.00439453125, -0.01068115234375, -0.024505615234375, -0.039947509765625, -0.05072021484375, -0.057952880859375, -0.006549835205078125, 0.00502777099609375, 0.0070343017578125, -0.01288604736328125, 0.026092529296875, -0.008453369140625, -0.019927978515625, -0.019378662109375, 0.00768280029296875, 0.0098724365234375, -0.02227783203125, 0.0318603515625, -0.032562255859375, 0.0477294921875, 0.0037899017333984375, 0.02783203125, 0.033721923828125, -0.01947021484375, -0.0298004150390625, -0.01332855224609375, 0.0163116455078125, 0.04345703125, -0.046295166015625, -0.01006317138671875, 0.08416748046875, 0.055908203125, 0.0200347900390625, -0.0419921875, 0.035797119140625, -0.0278167724609375, -0.01432037353515625, -0.0004184246063232422, -0.01044464111328125, -0.008087158203125, 0.0268096923828125, -0.00945281982421875, -0.0019092559814453125, -0.00021219253540039062, 0.0099334716796875, -0.06951904296875, -0.019561767578125, -0.03253173828125, 0.0272216796875, 0.0215911865234375, -0.0020694732666015625, 0.0290069580078125, 0.0216827392578125, 0.01538848876953125, -0.0030040740966796875, -0.00008481740951538086, -0.043548583984375, -0.043487548828125, 0.024169921875, -0.0484619140625, 0.053253173828125, -0.07867431640625, -0.0159149169921875, -0.036529541015625, 0.12261962890625, -0.0455322265625, -0.01214599609375, 0.037384033203125, 0.020660400390625, -0.019012451171875, -0.0019855499267578125, -0.0650634765625, -0.02374267578125, 0.01192474365234375, -0.027252197265625, 0.000028431415557861328, -0.043853759765625, -0.00888824462890625, -0.0509033203125, -0.00943756103515625, 0.0008788108825683594, 0.02801513671875, -0.007335662841796875, 0.034881591796875, -0.01274871826171875, 0.012359619140625, -0.0284881591796875, -0.011444091796875, -0.035369873046875, -0.1092529296875, -0.0306396484375, 0.01593017578125, 0.06884765625, -0.00726318359375, -0.0285491943359375, -0.027099609375, 0.06658935546875, 0.00039768218994140625, 0.01555633544921875, 0.0070037841796875, 0.01116943359375, -0.0231475830078125, -0.0182037353515625, 0.0023212432861328125, -0.03045654296875, -0.0163116455078125, 0.00543975830078125, 0.0242462158203125, -0.002960205078125, -0.051483154296875, -0.056243896484375, -0.034576416015625, -0.0213623046875, -0.0301055908203125, -0.04083251953125, 0.0010251998901367188, 0.02716064453125, -0.030059814453125, 0.00988006591796875, -0.0293426513671875, -0.0264739990234375, 0.0494384765625, -0.0111236572265625, 0.007526397705078125, -0.01491546630859375, 0.0648193359375, 0.0127105712890625, -0.0281219482421875, 0.02008056640625, 0.00043201446533203125, 0.03265380859375, -0.00855255126953125, -0.011383056640625, 0.033447265625, -0.0052490234375, -0.066162109375, -0.006465911865234375, 0.0390625, -0.05633544921875, 0.01293182373046875, -0.003498077392578125, -0.032135009765625, 0.03948974609375, 0.01374053955078125, 0.003604888916015625, -0.0310516357421875, -0.00461578369140625, 0.0302276611328125, 0.035858154296875, -0.018035888671875, -0.01483917236328125, 0.0008211135864257812, 0.02496337890625, -0.0343017578125, 0.0186767578125, -0.058349609375, 0.00449371337890625, -0.0030975341796875, -0.002777099609375, -0.01438140869140625, -0.041015625, -0.0085296630859375, -0.0150299072265625, -0.01032257080078125, -0.0187530517578125, 0.03240966796875, -0.046112060546875, -0.02191162109375, -0.0143585205078125, -0.01181793212890625, 0.11224365234375, -0.00783538818359375, -0.052642822265625, -0.0222320556640625, -0.0113067626953125, 0.0902099609375, 0.01763916015625, 0.0330810546875, 0.042999267578125, 0.00567626953125, 0.0267791748046875, 0.0013360977172851562, -0.0230560302734375, 0.040374755859375, -0.01396942138671875, 0.0215301513671875, 0.0088958740234375, 0.00567626953125, -0.051422119140625, 0.0784912109375, 0.0352783203125, -0.00925445556640625, -0.0212554931640625, 0.046875, 0.003627777099609375, 0.01305389404296875, -0.0015230178833007812, 0.036590576171875, 0.0143585205078125, -0.01471710205078125, -0.0176849365234375, -0.0214691162109375, -0.00453948974609375, 0.023284912109375, 0.026885986328125, 0.0124053955078125, 0.007801055908203125, -0.002490997314453125, -0.01342010498046875, -0.0125885009765625, 0.003269195556640625, 0.0144805908203125, -0.0293121337890625, -0.0032634735107421875, 0.0106353759765625, -0.00522613525390625, -0.0252227783203125, 0.01129913330078125, 0.011566162109375, -0.004016876220703125, 0.029541015625, -0.0171356201171875, 0.0411376953125, -0.047454833984375, -0.059783935546875, -0.034210205078125, -0.0200347900390625, -0.00019609928131103516, 0.0005135536193847656, 0.005893707275390625, -0.0081634521484375, -0.040069580078125, 0.0021228790283203125, -0.0287628173828125, 0.033782958984375, -0.063232421875, 0.03253173828125, -0.046661376953125, 0.00547027587890625, 0.026763916015625, 0.0205078125, -0.054901123046875, -0.0142059326171875, 0.00878143310546875, 0.00835418701171875, 0.0447998046875, -0.0131378173828125, -0.0072784423828125, -0.0200347900390625, 0.00925445556640625, 0.01549530029296875, -0.006195068359375, -0.0247650146484375, -0.01605224609375, 0.018524169921875, 0.0214385986328125, 0.030242919921875, -0.0035247802734375, 0.060211181640625, -0.0250091552734375, 0.0391845703125, 0.027374267578125, 0.058929443359375, 0.021270751953125, -0.0307769775390625, -0.00969696044921875, -0.01061248779296875, 0.0005006790161132812, -0.0386962890625, 0.0304107666015625, 0.00989532470703125, 0.054412841796875, -0.0031986236572265625, 0.0143280029296875, 0.0234832763671875, 0.01229095458984375, -0.0091705322265625, -0.02191162109375, 0.037628173828125, 0.02008056640625, 0.01398468017578125, -0.02880859375, 0.043792724609375, -0.00616455078125, 0.03326416015625, -0.030975341796875, -0.04364013671875, -0.0284576416015625, 0.04058837890625, -0.007198333740234375, 0.00687408447265625, 0.0499267578125, -0.01251220703125, 0.0179443359375, 0.0245819091796875, 0.0125579833984375, 0.0104522705078125, -0.0294952392578125, -0.0216064453125, 0.03411865234375, 0.005420684814453125, -0.019775390625, 0.015869140625, 0.01094818115234375, 0.01299285888671875, 0.005168914794921875, 0.06756591796875, 0.059112548828125, -0.059722900390625, 0.0011186599731445312, 0.002056121826171875, -0.01476287841796875, 0.049896240234375, -0.0071868896484375, -0.00707244873046875, -0.03253173828125, 0.01605224609375, 0.00789642333984375, -0.0278472900390625, -0.012725830078125, 0.00835418701171875, -0.0303497314453125, -0.037109375, -0.0399169921875, 0.016326904296875, 0.0469970703125, 0.0252532958984375, 0.00640106201171875, 0.005413055419921875, -0.006191253662109375, -0.004146575927734375, 0.00797271728515625, -0.025054931640625, -0.048004150390625, -0.00379180908203125, -0.008087158203125, -0.0177764892578125, 0.003131866455078125, 0.009765625, 0.09344482421875, 0.042724609375, 0.022430419921875, -0.01049041748046875, 0.01800537109375, 0.02618408203125, -0.023681640625, -0.05401611328125, -0.018218994140625, 0.037506103515625, -0.04229736328125, 0.029388427734375, 0.0016965866088867188, -0.00809478759765625, -0.025390625, 0.0004107952117919922, 0.052764892578125, 0.007747650146484375, -0.041717529296875, 0.0364990234375, 0.031829833984375, -0.017852783203125, 0.02423095703125, 0.022857666015625, -0.0887451171875, -0.046173095703125, 0.02691650390625, -0.0426025390625, -0.0118408203125, 0.05108642578125, -0.050689697265625, 0.0567626953125, -0.0069122314453125, 0.0008697509765625, 0.040496826171875, 0.01190948486328125, -0.052947998046875, -0.029205322265625, -0.06622314453125, 0.067626953125, -0.0097503662109375, 0.0411376953125, -0.07354736328125, 0.009368896484375, -0.023681640625, -0.0106964111328125, 0.123291015625, 0.041046142578125, -0.040496826171875, -0.0226898193359375, 0.0137786865234375, -0.01715087890625, -0.061370849609375, 0.065185546875, -0.02264404296875, 0.01141357421875, 0.06243896484375, -0.058258056640625, 0.0174102783203125, -0.00870513916015625, 0.004535675048828125, -0.0191497802734375, -0.0218963623046875, -0.04058837890625, -0.0252838134765625, 0.021453857421875, -0.048095703125, -0.023590087890625, -0.0038433074951171875, -0.0117034912109375, 0.0017042160034179688, 0.03094482421875, 0.02276611328125, -0.03009033203125, -0.008636474609375, -0.03167724609375, 0.0467529296875, 0.0036602020263671875, 0.007762908935546875, 0.059600830078125, 0.018402099609375, 0.05059814453125, 0.0135345458984375, 0.0196990966796875, 0.01215362548828125, 0.022796630859375, 0.06927490234375, 0.00020575523376464844, 0.02789306640625, -0.05450439453125, 0.03887939453125, 0.01480865478515625, 0.07440185546875, -0.062042236328125, -0.048675537109375, -0.003139495849609375, 0.00423431396484375, 0.01031494140625, 0.0181732177734375, 0.00748443603515625, 0.031097412109375, 0.06085205078125, -0.036590576171875, 0.0261993408203125, 0.028778076171875, -0.01081085205078125, 0.0019292831420898438, 0.0396728515625, -0.036773681640625, 0.024169921875, -0.03857421875, -0.01399993896484375, -0.0053863525390625, 0.017913818359375, 0.047027587890625, -0.0038928985595703125, 0.06353759765625, -0.0127716064453125, -0.03326416015625, 0.032501220703125, 0.027801513671875, 0.0194244384765625, -0.0491943359375, -0.006847381591796875, 0.04241943359375, 0.03338623046875, -0.031280517578125, 0.015655517578125, 0.01806640625, 0.038818359375, -0.0025005340576171875, -0.01690673828125, 0.0650634765625, -0.0188446044921875, -0.0052947998046875, -0.0615234375, 0.04815673828125, 0.024505615234375, 0.026580810546875, 0.0063629150390625, 0.040679931640625, 0.0458984375, 0.026641845703125, -0.01806640625, 0.009002685546875, -0.01288604736328125, 0.0294647216796875, 0.02178955078125, 0.00827789306640625, 0.06414794921875, -0.03546142578125, 0.015472412109375, -0.055755615234375, -0.06243896484375, 0.0191497802734375, 0.0305633544921875, -0.04388427734375, 0.05841064453125, -0.00135040283203125, -0.04827880859375, 0.03082275390625, 0.016021728515625, -0.00274658203125, 0.0181732177734375, -0.0001417398452758789, -0.026275634765625, -0.045989990234375, 0.00789642333984375, 0.020416259765625, -0.0204925537109375, -0.01343536376953125, 0.004467010498046875, 0.027130126953125, -0.0128173828125, -0.023223876953125, 0.019622802734375, -0.0345458984375, -0.01525115966796875, -0.006618499755859375, 0.0251007080078125, 0.006084442138671875, -0.0111541748046875, -0.027618408203125, 0.018310546875, 0.0223236083984375, -0.00799560546875, 0.00949859619140625, -0.005046844482421875, 0.0124664306640625, -0.007419586181640625, -0.0528564453125, -0.054931640625, -0.0221710205078125, -0.05712890625, -0.041656494140625, 0.01904296875, -0.0299224853515625, -0.01580810546875, 0.0192413330078125, 0.0253448486328125, -0.0245361328125, 0.011383056640625, -0.01233673095703125, 0.0103759765625, 0.033935546875, 0.0284271240234375, -0.00783538818359375, -0.0079345703125, -0.0148773193359375, 0.0011577606201171875, 0.0079345703125, -0.0015811920166015625, 0.0263519287109375, -0.057281494140625, 0.044708251953125, 0.0472412109375, 0.0379638671875, 0.005046844482421875, 0.0022106170654296875, 0.043243408203125, -0.038116455078125, 0.0008296966552734375, -0.017547607421875, -0.0176239013671875, -0.037506103515625, -0.00018656253814697266, 0.0279998779296875, -0.01085662841796875, 0.00260162353515625, -0.051727294921875, -0.053863525390625, 0.06280517578125, 0.043426513671875, -0.0728759765625, 0.0102691650390625, -0.001720428466796875, 0.01427459716796875, 0.016448974609375, -0.024627685546875, 0.006740570068359375, 0.04315185546875, -0.0223388671875, -0.0214691162109375, -0.025909423828125, -0.002315521240234375, -0.0268707275390625, 0.0165252685546875, 0.0006313323974609375, -0.002475738525390625, -0.0200958251953125, 0.037139892578125, -0.01468658447265625, 0.088134765625, -0.006900787353515625, -0.027862548828125, 0.019622802734375, -0.0198516845703125, 0.0173492431640625, -0.062042236328125, -0.024871826171875, -0.07977294921875, 0.01088714599609375, 0.00937652587890625, 0.0066375732421875, 0.020233154296875, -0.0094451904296875, -0.0293731689453125, 0.0374755859375, 0.0171051025390625, -0.0306854248046875, -0.003631591796875, 0.002727508544921875, -0.01381683349609375, 0.020599365234375, 0.003894805908203125, -0.00040721893310546875, -0.0186767578125, -0.00380706787109375, 0.023895263671875, -0.017791748046875, 0.0251617431640625, 0.0228729248046875, -0.05670166015625, 0.023345947265625, 0.00762939453125, -0.0295257568359375, 0.006237030029296875, -0.0009484291076660156, 0.0198822021484375, 0.0306396484375, -0.02288818359375, 0.00691986083984375, -0.01029205322265625, -0.005443572998046875, -0.04766845703125, -0.023956298828125, 0.0126953125, 0.0217132568359375, 0.040863037109375, 0.0784912109375, -0.00457000732421875, -0.059234619140625, -0.029937744140625, -0.03131103515625, -0.005245208740234375, -0.00972747802734375, 0.017822265625, -0.055999755859375, 0.0004324913024902344, 0.004062652587890625, -0.0194854736328125, 0.01352691650390625, 0.003986358642578125, -0.015960693359375, 0.0009198188781738281, 0.0292205810546875, 0.005512237548828125, -0.04290771484375, -0.021453857421875, 0.025115966796875, -0.0230712890625, -0.043548583984375, -0.00823974609375, 0.0150604248046875, -0.037139892578125, -0.043670654296875, -0.02154541015625, -0.0274810791015625, 0.004230499267578125, 0.043701171875, -0.0104522705078125, 0.014617919921875, -0.037261962890625, -0.006122589111328125, -0.004486083984375, 0.0159759521484375, -0.018463134765625, -0.00516510009765625, 0.0161285400390625, 0.01209259033203125, -0.006481170654296875, 0.04345703125, -0.030670166015625, -0.0195465087890625, -0.07489013671875, 0.034149169921875, 0.0130157470703125, -0.0121002197265625, 0.04449462890625, 0.01678466796875, 0.0276947021484375, -0.02587890625, -0.0156402587890625, -0.039154052734375, 0.009613037109375, 0.05926513671875, -0.0419921875, 0.03228759765625 ]
b0511969762a16bbf134ee7e61b575263772dde1
Wordpress Stackexchange Q: How do I execute a wp_remote_get call using NTLM authentication? I need to use ntlm authentication for a remote call, and I'm not sure how to configure the wp_remote_get call to do so. I have used wp_remote_get successfully in other situations without NTLM by passing the appropriate header: headers -> authentication -> basic u:p but I haven't been able to find any information about using NTLM. I tried changing 'Basic' to 'NTLM' but it didn't work. Wishful thinking I guess!
Q: How do I execute a wp_remote_get call using NTLM authentication? I need to use ntlm authentication for a remote call, and I'm not sure how to configure the wp_remote_get call to do so. I have used wp_remote_get successfully in other situations without NTLM by passing the appropriate header: headers -> authentication -> basic u:p but I haven't been able to find any information about using NTLM. I tried changing 'Basic' to 'NTLM' but it didn't work. Wishful thinking I guess!
wordpress
{ "language": "en", "length": 81, "provenance": "stackexchange_00019.jsonl.gz:484464", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/296113" }
[ 0.044952392578125, 0.011474609375, -0.0157318115234375, -0.035675048828125, 0.01806640625, -0.031494140625, 0.03814697265625, 0.001605987548828125, -0.037353515625, 0.00841522216796875, 0.01526641845703125, -0.00940704345703125, -0.0220184326171875, -0.030029296875, 0.0240478515625, -0.042083740234375, -0.006763458251953125, 0.0007886886596679688, 0.005130767822265625, -0.02960205078125, 0.01294708251953125, -0.056610107421875, 0.04229736328125, -0.00574493408203125, -0.0015811920166015625, -0.032928466796875, 0.041839599609375, -0.01250457763671875, 0.0165557861328125, -0.004817962646484375, 0.0201263427734375, -0.018280029296875, -0.00371551513671875, 0.04498291015625, -0.0269012451171875, -0.0269775390625, -0.014739990234375, 0.031036376953125, 0.0070953369140625, 0.02362060546875, 0.01149749755859375, -0.010467529296875, 0.03582763671875, 0.02197265625, -0.0152740478515625, 0.020751953125, -0.01837158203125, -0.044525146484375, -0.004535675048828125, 0.036376953125, 0.0054931640625, 0.0046234130859375, 0.00656890869140625, 0.006015777587890625, -0.0186920166015625, -0.042572021484375, 0.0035610198974609375, -0.006000518798828125, 0.0124969482421875, -0.04547119140625, -0.031341552734375, 0.0018568038940429688, 0.0316162109375, 0.038482666015625, 0.0234832763671875, 0.0205230712890625, 0.032501220703125, 0.0433349609375, -0.0399169921875, 0.005889892578125, 0.0035762786865234375, -0.02069091796875, -0.002986907958984375, -0.040008544921875, 0.009674072265625, 0.006053924560546875, -0.01092529296875, -0.0243072509765625, 0.00850677490234375, 0.0163726806640625, 0.00702667236328125, 0.00194549560546875, -0.021820068359375, -0.035919189453125, 0.01849365234375, -0.0170135498046875, -0.007709503173828125, -0.0177764892578125, -0.0457763671875, -0.0155181884765625, -0.032440185546875, -0.017669677734375, -0.045562744140625, 0.0020122528076171875, -0.030792236328125, 0.00897979736328125, 0.01224517822265625, 0.00533294677734375, 0.00826263427734375, 0.01312255859375, 0.0206451416015625, -0.02923583984375, -0.00009810924530029297, -0.0184783935546875, -0.01206207275390625, 0.02838134765625, -0.005260467529296875, 0.034515380859375, 0.033538818359375, 0.0252685546875, 0.0035800933837890625, 0.0108184814453125, 0.0202178955078125, -0.035858154296875, 0.001590728759765625, 0.008453369140625, -0.0020351409912109375, 0.0294647216796875, 0.00978851318359375, -0.0038814544677734375, -0.01171875, -0.00384521484375, -0.0019016265869140625, 0.064453125, -0.005779266357421875, 0.01358795166015625, -0.0027618408203125, -0.008758544921875, -0.00038051605224609375, 0.0548095703125, -0.0285797119140625, 0.011810302734375, 0.030670166015625, -0.021575927734375, -0.0300445556640625, -0.025115966796875, 0.0518798828125, 0.0283966064453125, 0.04656982421875, -0.038421630859375, 0.042938232421875, -0.028411865234375, -0.0379638671875, 0.05853271484375, 0.002994537353515625, 0.01393890380859375, 0.02801513671875, 0.005786895751953125, -0.00710296630859375, -0.0240631103515625, -0.0289306640625, 0.0145721435546875, -0.042755126953125, 0.0226593017578125, 0.123291015625, 0.019683837890625, 0.060394287109375, -0.008758544921875, 0.021697998046875, 0.034820556640625, -0.01373291015625, -0.03070068359375, -0.0102996826171875, -0.015716552734375, -0.041595458984375, 0.04229736328125, -0.0044708251953125, -0.00690460205078125, 0.0189971923828125, 0.01482391357421875, -0.0038299560546875, -0.0435791015625, -0.0042572021484375, 0.0002894401550292969, -0.001789093017578125, 0.034912109375, 0.00963592529296875, 0.048065185546875, 0.033294677734375, -0.035552978515625, -0.025421142578125, -0.02947998046875, 0.11932373046875, -0.045684814453125, -0.027557373046875, 0.0367431640625, 0.00734710693359375, 0.06878662109375, -0.00409698486328125, 0.0134429931640625, -0.025054931640625, 0.01486968994140625, -0.01267242431640625, 0.051483154296875, 0.004375457763671875, -0.07330322265625, 0.00904083251953125, -0.02874755859375, -0.01178741455078125, 0.015625, -0.0014581680297851562, -0.0061798095703125, -0.00107574462890625, -0.017608642578125, 0.0020885467529296875, -0.0462646484375, 0.01488494873046875, 0.01291656494140625, 0.055419921875, 0.01078033447265625, -0.026763916015625, -0.0017023086547851562, 0.029571533203125, -0.08526611328125, -0.07257080078125, 0.033538818359375, -0.018890380859375, 0.044952392578125, -0.005054473876953125, 0.034454345703125, -0.038970947265625, -0.025421142578125, -0.01435089111328125, -0.00737762451171875, -0.004108428955078125, -0.006740570068359375, -0.01245880126953125, -0.0080108642578125, 0.0015707015991210938, -0.019378662109375, 0.0298614501953125, 0.04010009765625, -0.01324462890625, 0.0455322265625, 0.0010986328125, -0.020050048828125, 0.005870819091796875, -0.0312042236328125, 0.0491943359375, 0.0207366943359375, 0.02606201171875, 0.00542449951171875, -0.005329132080078125, -0.00507354736328125, -0.0115509033203125, -0.03546142578125, 0.034393310546875, -0.032318115234375, -0.01064300537109375, -0.01189422607421875, 0.042938232421875, -0.0312347412109375, 0.0218353271484375, -0.05364990234375, -0.01088714599609375, 0.03204345703125, -0.0196380615234375, -0.0254669189453125, 0.00605010986328125, -0.00753021240234375, -0.007709503173828125, -0.031982421875, -0.00711822509765625, -0.0200347900390625, 0.0083160400390625, -0.0206298828125, -0.006038665771484375, -0.0070648193359375, -0.02203369140625, -0.00106048583984375, 0.031463623046875, -0.0124969482421875, -0.01000213623046875, 0.040802001953125, 0.055633544921875, 0.01383209228515625, -0.0113677978515625, -0.0216522216796875, -0.0161895751953125, 0.035675048828125, -0.034942626953125, 0.027069091796875, 0.019500732421875, -0.01111602783203125, -0.0323486328125, -0.006755828857421875, 0.032196044921875, -0.0299835205078125, 0.066162109375, 0.0159454345703125, 0.052734375, -0.003376007080078125, -0.01320648193359375, 0.055816650390625, -0.0386962890625, -0.0447998046875, -0.00768280029296875, -0.02777099609375, 0.0301513671875, -0.0399169921875, -0.01450347900390625, 0.050445556640625, 0.0088653564453125, -0.017181396484375, 0.00453948974609375, 0.045623779296875, 0.0015993118286132812, 0.033111572265625, 0.02001953125, -0.0202789306640625, -0.0191497802734375, -0.0270233154296875, 0.006969451904296875, 0.0083465576171875, -0.0227203369140625, -0.039031982421875, -0.0247955322265625, -0.0033435821533203125, -0.08197021484375, -0.061370849609375, 0.0245819091796875, -0.0169525146484375, 0.03704833984375, -0.030670166015625, 0.009185791015625, -0.0287322998046875, -0.00693511962890625, -0.005001068115234375, -0.02484130859375, -0.005420684814453125, -0.0404052734375, -0.072265625, -0.061187744140625, -0.03240966796875, -0.018951416015625, 0.0050048828125, 0.01544952392578125, 0.00893402099609375, -0.0123138427734375, -0.03228759765625, -0.0141143798828125, 0.012054443359375, -0.020111083984375, -0.0265960693359375, -0.032257080078125, 0.006175994873046875, -0.001529693603515625, -0.0181732177734375, 0.05242919921875, -0.003711700439453125, 0.0017862319946289062, 0.0114898681640625, 0.017822265625, -0.0290069580078125, -0.0035724639892578125, -0.0006732940673828125, -0.0221405029296875, -0.058868408203125, -0.047210693359375, -0.081298828125, 0.0172576904296875, -0.02093505859375, -0.0384521484375, 0.0010309219360351562, 0.032928466796875, -0.028900146484375, -0.0257415771484375, -0.008453369140625, 0.007904052734375, 0.0130157470703125, -0.01245880126953125, -0.0299835205078125, 0.0215911865234375, 0.0034122467041015625, 0.0207977294921875, 0.004268646240234375, 0.054046630859375, -0.007801055908203125, -0.02740478515625, 0.01020050048828125, -0.003963470458984375, -0.031494140625, 0.00702667236328125, -0.07080078125, -0.006488800048828125, 0.0517578125, -0.01464080810546875, -0.03424072265625, -0.01232147216796875, -0.02093505859375, -0.0081939697265625, 0.035552978515625, 0.004730224609375, -0.0355224609375, -0.022369384765625, 0.021881103515625, -0.03912353515625, -0.074462890625, 0.04052734375, -0.0104522705078125, 0.0013551712036132812, -0.019287109375, -0.01485443115234375, -0.035400390625, 0.0291900634765625, -0.10009765625, 0.021240234375, -0.042022705078125, 0.01227569580078125, -0.0289459228515625, 0.00466156005859375, 0.00205230712890625, -0.0001456737518310547, -0.047607421875, 0.011871337890625, -0.030487060546875, -0.0462646484375, -0.01153564453125, -0.05364990234375, 0.0723876953125, 0.03411865234375, -0.025909423828125, -0.0048980712890625, 0.055908203125, 0.009368896484375, -0.03289794921875, 0.0161285400390625, -0.011932373046875, -0.00290679931640625, 0.060760498046875, 0.028076171875, 0.0043792724609375, -0.0128021240234375, -0.01861572265625, -0.025299072265625, -0.00991058349609375, -0.0068511962890625, -0.01059722900390625, 0.0144195556640625, -0.03375244140625, -0.03582763671875, -0.0244140625, 0.01334381103515625, 0.0258026123046875, 0.0109710693359375, 0.0134429931640625, -0.03887939453125, -0.022613525390625, 0.04150390625, -0.00739288330078125, -0.00653076171875, -0.012786865234375, 0.0288238525390625, 0.025299072265625, -0.0193023681640625, 0.0170135498046875, -0.01003265380859375, 0.006435394287109375, -0.0145416259765625, 0.0159759521484375, -0.041534423828125, -0.016448974609375, 0.0926513671875, -0.037139892578125, 0.026947021484375, 0.022735595703125, 0.01364898681640625, 0.0273895263671875, -0.01012420654296875, 0.0130767822265625, 0.043609619140625, -0.077880859375, 0.037506103515625, 0.005222320556640625, -0.03662109375, 0.0235443115234375, 0.038177490234375, -0.025360107421875, -0.0014667510986328125, -0.0265350341796875, -0.052703857421875, 0.0313720703125, -0.095703125, 0.0038852691650390625, -0.00553131103515625, 0.008880615234375, -0.01398468017578125, -0.028656005859375, 0.0245208740234375, -0.004695892333984375, 0.0210723876953125, -0.037841796875, 0.06317138671875, -0.0231170654296875, -0.00630950927734375, 0.0026950836181640625, -0.019989013671875, 0.053436279296875, 0.01556396484375, -0.07666015625, 0.05963134765625, -0.01084136962890625, 0.041259765625, 0.0180511474609375, -0.0283203125, 0.01535797119140625, 0.02044677734375, -0.0086517333984375, 0.015869140625, -0.0031414031982421875, -0.040374755859375, -0.0306549072265625, 0.0253143310546875, 0.01085662841796875, 0.0008540153503417969, 0.0129547119140625, 0.085693359375, -0.0128936767578125, 0.05291748046875, -0.016754150390625, 0.0176849365234375, 0.0438232421875, -0.006603240966796875, 0.00797271728515625, 0.0249786376953125, 0.0285797119140625, -0.0517578125, 0.02215576171875, -0.06317138671875, -0.040191650390625, 0.0455322265625, 0.06927490234375, -0.0164337158203125, -0.0278472900390625, -0.0079345703125, -0.0181884765625, -0.03546142578125, 0.041168212890625, 0.033782958984375, -0.01788330078125, -0.052978515625, -0.015655517578125, 0.04388427734375, 0.037872314453125, -0.01016998291015625, 0.015869140625, -0.0199127197265625, 0.01312255859375, 0.0511474609375, -0.000988006591796875, -0.022186279296875, -0.0266571044921875, -0.01398468017578125, -0.0272064208984375, -0.019439697265625, 0.01216888427734375, 0.017364501953125, -0.0258941650390625, -0.033355712890625, 0.04541015625, 0.00815582275390625, -0.0038127899169921875, -0.027587890625, -0.006916046142578125, -0.01345062255859375, -0.0163726806640625, 0.06707763671875, 0.010528564453125, 0.0104217529296875, -0.03265380859375, -0.021148681640625, -0.0229949951171875, 0.04522705078125, 0.0254058837890625, -0.0091705322265625, -0.01629638671875, -0.0018339157104492188, 0.006259918212890625, 0.0012693405151367188, 0.033203125, -0.01415252685546875, 0.053985595703125, -0.00292205810546875, 0.04058837890625, 0.0172119140625, 0.050750732421875, -0.034454345703125, 0.037750244140625, -0.0037937164306640625, 0.01549530029296875, -0.033538818359375, 0.00019466876983642578, 0.0198211669921875, -0.0384521484375, -0.021087646484375, -0.0218353271484375, -0.004116058349609375, -0.01427459716796875, 0.00827789306640625, -0.00585174560546875, 0.004016876220703125, -0.056060791015625, -0.007671356201171875, -0.0215606689453125, 0.07501220703125, -0.07135009765625, -0.023101806640625, 0.006816864013671875, -0.0293426513671875, 0.020599365234375, -0.0213775634765625, -0.007511138916015625, 0.032196044921875, -0.0274810791015625, 0.0155181884765625, 0.035247802734375, -0.007274627685546875, 0.024993896484375, 0.0836181640625, -0.0013294219970703125, 0.051544189453125, 0.034210205078125, 0.005405426025390625, 0.033538818359375, 0.033050537109375, 0.0112152099609375, -0.021087646484375, -0.00649261474609375, -0.004852294921875, 0.0093994140625, -0.02008056640625, -0.006587982177734375, 0.037841796875, 0.05645751953125, 0.09173583984375, -0.0733642578125, 0.016998291015625, 0.0275115966796875, -0.043121337890625, 0.021881103515625, 0.0003075599670410156, -0.033935546875, -0.08819580078125, 0.0765380859375, -0.06292724609375, 0.01213836669921875, 0.018310546875, -0.043304443359375, -0.005680084228515625, -0.0168609619140625, 0.052398681640625, 0.03558349609375, 0.05462646484375, -0.00012969970703125, -0.015167236328125, 0.047119140625, -0.0025959014892578125, 0.04986572265625, -0.0265350341796875, -0.00978851318359375, -0.04400634765625, 0.0017223358154296875, 0.00555419921875, -0.03155517578125, 0.021270751953125, 0.004405975341796875, 0.002483367919921875, 0.03363037109375, -0.012603759765625, 0.0023651123046875, -0.0021114349365234375, -0.0275115966796875, 0.01465606689453125, -0.036376953125, 0.0201263427734375, 0.0199737548828125, -0.00762176513671875, 0.019805908203125, 0.00991058349609375, -0.04931640625, -0.0088958740234375, 0.00251007080078125, 0.06158447265625, 0.005741119384765625, -0.022552490234375, 0.050445556640625, 0.02490234375, -0.042724609375, 0.03143310546875, 0.007770538330078125, -0.04791259765625, -0.04217529296875, 0.01271820068359375, -0.040008544921875, 0.01149749755859375, 0.01030731201171875, -0.034881591796875, 0.083740234375, 0.01084136962890625, 0.011474609375, -0.0170440673828125, 0.04034423828125, -0.00848388671875, 0.043365478515625, -0.040283203125, 0.051025390625, 0.02960205078125, 0.00824737548828125, -0.0296783447265625, -0.0110931396484375, 0.003658294677734375, 0.00835418701171875, 0.0026493072509765625, 0.00787353515625, -0.0478515625, -0.00867462158203125, 0.018341064453125, 0.02618408203125, 0.005992889404296875, 0.05316162109375, 0.0076446533203125, 0.017181396484375, 0.05462646484375, -0.020751953125, 0.0238800048828125, 0.01064300537109375, -0.014923095703125, 0.0226593017578125, 0.01004791259765625, -0.0174407958984375, 0.011810302734375, 0.0177001953125, -0.08416748046875, 0.0238037109375, 0.05438232421875, -0.016845703125, 0.0236968994140625, 0.019012451171875, 0.0016222000122070312, 0.0225372314453125, 0.0122833251953125, -0.0211029052734375, 0.03314208984375, -0.0266571044921875, 0.004024505615234375, 0.05096435546875, 0.0274658203125, 0.0191497802734375, -0.005687713623046875, 0.0037899017333984375, 0.0107879638671875, -0.00702667236328125, 0.07196044921875, 0.0184783935546875, 0.035369873046875, -0.0288848876953125, -0.00574493408203125, -0.00855255126953125, 0.0654296875, -0.039459228515625, -0.019287109375, -0.0014743804931640625, 0.003971099853515625, 0.033905029296875, -0.03619384765625, 0.05517578125, 0.00717926025390625, -0.006931304931640625, -0.0218963623046875, 0.016387939453125, 0.039154052734375, 0.0275421142578125, 0.0057220458984375, 0.0065765380859375, -0.059417724609375, 0.0111541748046875, 0.01229095458984375, -0.049896240234375, 0.0017900466918945312, 0.0263824462890625, 0.0312347412109375, 0.00748443603515625, -0.038421630859375, 0.0010023117065429688, 0.03375244140625, 0.0255584716796875, 0.004093170166015625, -0.0360107421875, -0.0006718635559082031, -0.0765380859375, 0.0180511474609375, 0.0282135009765625, 0.03692626953125, -0.0049896240234375, 0.0526123046875, 0.01447296142578125, -0.07110595703125, 0.000789642333984375, 0.033843994140625, -0.031951904296875, 0.017181396484375, -0.01483917236328125, 0.029327392578125, 0.0310821533203125, 0.0019989013671875, -0.035919189453125, 0.00415802001953125, 0.057586669921875, -0.04364013671875, 0.103759765625, -0.01605224609375, 0.0010423660278320312, 0.0021610260009765625, -0.058349609375, 0.045166015625, -0.035797119140625, -0.052001953125, -0.01508331298828125, -0.0246734619140625, -0.0034694671630859375, 0.024169921875, 0.034210205078125, -0.004444122314453125, 0.02032470703125, 0.02044677734375, -0.0037670135498046875, 0.0182647705078125, 0.0005087852478027344, -0.02325439453125, -0.01261138916015625, 0.03887939453125, -0.01837158203125, -0.05987548828125, -0.039215087890625, -0.042083740234375, 0.05682373046875, -0.019256591796875, 0.07366943359375, -0.0312347412109375, 0.022186279296875, -0.00518798828125, -0.01505279541015625, 0.0217437744140625, 0.022674560546875, -0.021270751953125, 0.0196685791015625, -0.004642486572265625, -0.02325439453125, -0.032257080078125, 0.0653076171875, -0.0362548828125, 0.037750244140625, 0.0770263671875, -0.05859375, 0.00711822509765625, 0.0307769775390625, 0.059722900390625, -0.027191162109375, -0.03662109375, -0.0548095703125, 0.004611968994140625, 0.0221099853515625, 0.012420654296875, -0.040496826171875, 0.042816162109375, -0.021697998046875, 0.0200347900390625, -0.0082855224609375, -0.0328369140625, -0.0272979736328125, 0.012939453125, -0.05859375, -0.01214599609375, -0.0214996337890625, -0.0129852294921875, -0.010986328125, 0.0182037353515625, -0.0048675537109375, -0.0026798248291015625, -0.0345458984375, -0.0203094482421875, -0.0182037353515625, 0.01824951171875, -0.010223388671875, -0.00514984130859375, -0.041961669921875, 0.0028839111328125, -0.0218505859375, -0.0210723876953125, -0.033782958984375, -0.0382080078125, 0.03924560546875, 0.0274658203125, 0.0188446044921875, -0.01611328125, -0.033416748046875, -0.0129241943359375, 0.05615234375, -0.00722503662109375, -0.004299163818359375, -0.01276397705078125, -0.0197601318359375, 0.0300445556640625, 0.0248260498046875, -0.0128326416015625, -0.0008521080017089844, 0.035675048828125, -0.0298309326171875, -0.018341064453125, -0.0269012451171875, -0.0156402587890625, -0.037261962890625, 0.04083251953125, 0.047515869140625, -0.0189971923828125, -0.01666259765625, 0.03656005859375, -0.0008554458618164062, 0.08917236328125, -0.009857177734375, -0.0149993896484375, 0.011138916015625, -0.01190185546875, -0.0181427001953125, 0.016387939453125, 0.027862548828125, -0.0160675048828125, -0.04083251953125, 0.01110076904296875, 0.0294189453125, 0.062042236328125, -0.0172576904296875, -0.04498291015625, 0.0241241455078125, 0.0049591064453125, -0.0202178955078125, -0.07830810546875, -0.0076446533203125, 0.03173828125, -0.04229736328125, -0.046875, 0.00733184814453125, -0.06512451171875, 0.02899169921875, 0.03582763671875, -0.00421142578125, 0.0076141357421875, 0.049072265625, 0.0015850067138671875, 0.062347412109375, 0.051239013671875, -0.004108428955078125, -0.0271759033203125, -0.0056610107421875, -0.0006413459777832031, 0.005794525146484375, -0.036529541015625, -0.0171051025390625, 0.00995635986328125, 0.0304718017578125, -0.01120758056640625, -0.045745849609375, 0.01424407958984375, 0.01113128662109375, 0.0190887451171875, 0.023529052734375, -0.00972747802734375, -0.038818359375, -0.018646240234375, -0.0264129638671875, -0.00569915771484375, -0.045623779296875, 0.01204681396484375, -0.0743408203125, -0.0305938720703125, -0.01160430908203125, 0.016326904296875, -0.028839111328125, -0.0084686279296875, -0.0036487579345703125, -0.0249786376953125, 0.00434112548828125, -0.011077880859375, -0.0186767578125, 0.0014677047729492188, 0.0999755859375, -0.0555419921875, -0.005527496337890625, -0.0091400146484375, 0.0301055908203125, 0.037841796875, -0.064697265625, -0.038299560546875, 0.033905029296875, -0.047637939453125, -0.0048065185546875, -0.01203155517578125, 0.013519287109375, -0.02423095703125, 0.0227508544921875, -0.035797119140625, 0.01001739501953125, 0.007419586181640625, 0.0161895751953125, -0.025970458984375, 0.028411865234375, 0.031982421875, -0.01593017578125, -0.0275421142578125, -0.0267333984375, -0.029205322265625, 0.0011739730834960938, 0.00029850006103515625, 0.00969696044921875, 0.0362548828125, -0.0144195556640625, 0.01342010498046875, 0.025115966796875, -0.007534027099609375, -0.0291900634765625, 0.01100921630859375, 0.0278472900390625, 0.01067352294921875, 0.013397216796875 ]
2eb445b09bc18bd1b26bfa443254df8a506fe04a
Wordpress Stackexchange Q: Get woocommerce product price by id i make one shortcode for get product title, image and price. i am getting all title, link and image properly but not getting price. but problem is add_shortcode('product_data','custom_product_function'); function custom_product_function($atts) { $post_id = $atts['id']; $title = get_the_title($post_id); $link = get_the_permalink($post_id); $price = get_the_price($post_id); $image = get_the_post_thumbnail($post_id, 'thumbnail'); $data ='<div class="releated-products wow fadeInUp"><a href="'.$link.'">'.$image.'<h5>'.$title.'</h5><h6>'.$price.'</h6></a></div>'; return $data; } $price = get_the_price($post_id); i guess this function not correct any idea how to get price now. Thanks you A: You can create a product object using the following function: $product = wc_get_product( $post_id ); And after that you will be able to access to all product's data. All available methods can be found here, but the ones you need are: $product->get_regular_price(); $product->get_sale_price(); $product->get_price();
Q: Get woocommerce product price by id i make one shortcode for get product title, image and price. i am getting all title, link and image properly but not getting price. but problem is add_shortcode('product_data','custom_product_function'); function custom_product_function($atts) { $post_id = $atts['id']; $title = get_the_title($post_id); $link = get_the_permalink($post_id); $price = get_the_price($post_id); $image = get_the_post_thumbnail($post_id, 'thumbnail'); $data ='<div class="releated-products wow fadeInUp"><a href="'.$link.'">'.$image.'<h5>'.$title.'</h5><h6>'.$price.'</h6></a></div>'; return $data; } $price = get_the_price($post_id); i guess this function not correct any idea how to get price now. Thanks you A: You can create a product object using the following function: $product = wc_get_product( $post_id ); And after that you will be able to access to all product's data. All available methods can be found here, but the ones you need are: $product->get_regular_price(); $product->get_sale_price(); $product->get_price();
wordpress
{ "language": "en", "length": 126, "provenance": "stackexchange_00019.jsonl.gz:484485", "question_score": "17", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/296193" }
[ 0.004680633544921875, -0.022857666015625, 0.0018720626831054688, -0.0218505859375, -0.00823211669921875, 0.0067138671875, 0.026702880859375, 0.01189422607421875, -0.0185089111328125, 0.033477783203125, -0.0276641845703125, -0.003940582275390625, -0.037109375, -0.01393890380859375, -0.009521484375, -0.059478759765625, 0.06707763671875, -0.013031005859375, 0.04571533203125, 0.0171051025390625, -0.0134735107421875, 0.059173583984375, 0.0526123046875, 0.081787109375, 0.04437255859375, -0.038299560546875, 0.0657958984375, -0.0108795166015625, 0.0290374755859375, -0.004520416259765625, 0.036224365234375, -0.03271484375, 0.02410888671875, -0.0084381103515625, 0.0225372314453125, 0.06341552734375, 0.007427215576171875, 0.00679779052734375, 0.0406494140625, -0.006267547607421875, 0.0277557373046875, -0.0087738037109375, 0.00455474853515625, 0.033477783203125, -0.0295257568359375, -0.03387451171875, 0.00945281982421875, -0.034698486328125, 0.031646728515625, 0.0223388671875, 0.018585205078125, 0.0216522216796875, 0.0212249755859375, -0.00241851806640625, -0.02264404296875, -0.051971435546875, 0.010986328125, -0.047515869140625, 0.02850341796875, -0.0251312255859375, -0.0506591796875, -0.044525146484375, 0.044342041015625, -0.0229644775390625, -0.007083892822265625, 0.0121002197265625, 0.052703857421875, 0.00945281982421875, -0.010772705078125, -0.00506591796875, 0.0171051025390625, -0.0112152099609375, -0.01019287109375, 0.0228118896484375, -0.00766754150390625, -0.06494140625, 0.0199432373046875, -0.05352783203125, 0.00927734375, 0.036102294921875, -0.00797271728515625, -0.049896240234375, -0.0311126708984375, 0.0162353515625, 0.0033092498779296875, 0.025177001953125, -0.0096435546875, 0.0064239501953125, -0.025482177734375, -0.055816650390625, -0.0158538818359375, -0.01363372802734375, -0.041656494140625, -0.026275634765625, -0.043426513671875, -0.040802001953125, 0.003330230712890625, 0.03875732421875, 0.005290985107421875, 0.03656005859375, 0.004085540771484375, -0.0292816162109375, 0.01055145263671875, -0.05169677734375, 0.0106201171875, 0.0016450881958007812, -0.007175445556640625, 0.0281982421875, 0.040069580078125, 0.0308074951171875, -0.0107574462890625, 0.032745361328125, -0.037750244140625, -0.027252197265625, -0.016082763671875, 0.058074951171875, -0.05450439453125, 0.00904083251953125, -0.0004456043243408203, 0.0364990234375, 0.01157379150390625, 0.034820556640625, 0.0535888671875, -0.0321044921875, -0.01366424560546875, 0.000598907470703125, -0.00865936279296875, -0.07891845703125, -0.035675048828125, 0.036651611328125, -0.037017822265625, 0.01534271240234375, 0.058929443359375, 0.0142364501953125, -0.0113677978515625, -0.021636962890625, 0.0282135009765625, 0.0272674560546875, 0.0096893310546875, -0.003505706787109375, 0.02215576171875, 0.0165252685546875, 0.01227569580078125, 0.007568359375, 0.02459716796875, -0.00699615478515625, 0.007965087890625, 0.0355224609375, 0.005069732666015625, -0.0245208740234375, 0.0321044921875, 0.030059814453125, 0.0168609619140625, 0.01412200927734375, 0.023193359375, 0.02081298828125, 0.06671142578125, -0.00836944580078125, -0.03387451171875, -0.020050048828125, 0.009185791015625, -0.0082550048828125, -0.01849365234375, -0.00662994384765625, -0.036346435546875, -0.005496978759765625, 0.003978729248046875, -0.00797271728515625, 0.0310211181640625, 0.08197021484375, 0.00923919677734375, 0.00409698486328125, -0.007747650146484375, 0.0191497802734375, -0.0084686279296875, -0.00855255126953125, -0.0061798095703125, 0.0189361572265625, 0.04559326171875, -0.0197601318359375, -0.0299224853515625, -0.035369873046875, 0.0794677734375, -0.034454345703125, -0.04730224609375, 0.02996826171875, 0.01184844970703125, 0.0745849609375, 0.011199951171875, 0.0232086181640625, 0.00698089599609375, 0.0006461143493652344, -0.041748046875, 0.03607177734375, 0.01256561279296875, -0.038726806640625, -0.017730712890625, -0.026641845703125, -0.0051727294921875, 0.010833740234375, -0.0193328857421875, 0.002536773681640625, -0.00014674663543701172, 0.028717041015625, -0.006458282470703125, 0.00878143310546875, -0.0008139610290527344, 0.01261138916015625, -0.07000732421875, -0.00821685791015625, 0.044464111328125, -0.01953125, -0.048004150390625, 0.034759521484375, 0.042388916015625, -0.00435638427734375, -0.037139892578125, 0.0550537109375, -0.0182647705078125, 0.0416259765625, -0.0147247314453125, -0.054779052734375, 0.003910064697265625, 0.0282440185546875, 0.040618896484375, 0.038726806640625, -0.0128631591796875, 0.0209197998046875, 0.0692138671875, 0.048675537109375, -0.00450897216796875, -0.050445556640625, -0.015716552734375, -0.0037288665771484375, -0.02874755859375, 0.0022296905517578125, 0.0062103271484375, -0.049835205078125, 0.016082763671875, 0.038238525390625, 0.032470703125, 0.038116455078125, -0.0163421630859375, -0.0155029296875, 0.09197998046875, 0.0025959014892578125, -0.0016193389892578125, -0.0155029296875, 0.006816864013671875, 0.055816650390625, -0.00614166259765625, 0.01119232177734375, -0.001178741455078125, -0.0242919921875, -0.004486083984375, 0.05181884765625, -0.0198822021484375, 0.020721435546875, -0.0228729248046875, 0.0303192138671875, -0.0243072509765625, -0.006855010986328125, 0.0384521484375, -0.038970947265625, 0.01465606689453125, 0.0511474609375, 0.033477783203125, 0.0350341796875, -0.047821044921875, 0.02825927734375, -0.0014448165893554688, 0.0175628662109375, -0.0198822021484375, -0.001373291015625, -0.024444580078125, -0.06695556640625, -0.01372528076171875, 0.034881591796875, -0.0160369873046875, -0.048126220703125, 0.0377197265625, 0.0670166015625, 0.02044677734375, 0.00384521484375, 0.0011224746704101562, -0.039276123046875, -0.0014019012451171875, 0.03656005859375, -0.006969451904296875, -0.02392578125, 0.0047607421875, 0.044097900390625, -0.04217529296875, 0.06982421875, 0.006443023681640625, -0.00858306884765625, -0.006256103515625, -0.037689208984375, 0.053436279296875, -0.04681396484375, 0.0225677490234375, 0.06475830078125, -0.036224365234375, 0.031829833984375, 0.0113677978515625, -0.0302276611328125, 0.01345062255859375, 0.003391265869140625, -0.021575927734375, 0.033477783203125, -0.0948486328125, 0.0194854736328125, -0.00849151611328125, 0.09381103515625, -0.057464599609375, -0.06878662109375, -0.00678253173828125, 0.005748748779296875, -0.0943603515625, -0.097412109375, -0.0091094970703125, -0.09906005859375, -0.00008285045623779297, -0.0281829833984375, -0.060272216796875, 0.01302337646484375, -0.00141143798828125, 0.012847900390625, -0.0092010498046875, 0.0037403106689453125, -0.02850341796875, -0.0236358642578125, -0.0545654296875, -0.006389617919921875, -0.0087432861328125, 0.01222991943359375, 0.005466461181640625, -0.0182647705078125, 0.003753662109375, -0.0100555419921875, 0.034759521484375, 0.060028076171875, -0.0084991455078125, -0.0197601318359375, -0.01450347900390625, -0.027252197265625, -0.007686614990234375, -0.0071258544921875, 0.0161590576171875, -0.003093719482421875, 0.0128021240234375, -0.0053863525390625, -0.0125579833984375, -0.005706787109375, 0.0220794677734375, 0.05584716796875, 0.003047943115234375, -0.002674102783203125, 0.0706787109375, -0.029632568359375, -0.04315185546875, -0.031646728515625, -0.0755615234375, 0.04437255859375, 0.04302978515625, 0.0123138427734375, -0.017364501953125, 0.02227783203125, 0.01302337646484375, 0.0241546630859375, 0.021026611328125, -0.0181884765625, -0.0009484291076660156, -0.000030517578125, 0.0073089599609375, -0.03533935546875, 0.0254669189453125, -0.0088958740234375, 0.0265655517578125, 0.0219268798828125, 0.0291290283203125, -0.00801849365234375, 0.024566650390625, -0.0153045654296875, -0.041412353515625, 0.08258056640625, 0.043060302734375, 0.015960693359375, -0.0147247314453125, -0.079833984375, 0.0039005279541015625, 0.1090087890625, 0.003662109375, -0.00737762451171875, -0.01493072509765625, -0.005649566650390625, -0.036773681640625, -0.0217437744140625, -0.03173828125, 0.01207733154296875, -0.0655517578125, 0.007843017578125, -0.01837158203125, 0.006038665771484375, 0.00482940673828125, 0.004947662353515625, -0.01200103759765625, -0.04736328125, 0.03155517578125, 0.00458526611328125, 0.0133056640625, 0.0241851806640625, -0.01410675048828125, 0.02978515625, -0.04339599609375, -0.0040435791015625, -0.0027332305908203125, -0.0234527587890625, 0.05194091796875, 0.003936767578125, 0.007610321044921875, -0.033935546875, -0.0278472900390625, 0.0134124755859375, -0.01023101806640625, 0.03192138671875, -0.008392333984375, 0.03399658203125, -0.00661468505859375, -0.04669189453125, -0.0085601806640625, -0.045318603515625, -0.003387451171875, -0.013580322265625, 0.003810882568359375, 0.035125732421875, -0.03436279296875, 0.03704833984375, -0.0389404296875, -0.0181121826171875, -0.0638427734375, -0.020660400390625, 0.035125732421875, 0.0108795166015625, -0.0006499290466308594, 0.0174102783203125, 0.0003459453582763672, -0.055267333984375, 0.049072265625, 0.0250701904296875, -0.03411865234375, 0.0020542144775390625, 0.055023193359375, 0.0177764892578125, -0.0312347412109375, -0.05419921875, 0.045135498046875, 0.049896240234375, 0.00807952880859375, -0.004123687744140625, -0.01153564453125, -0.04351806640625, 0.03753662109375, 0.02392578125, 0.0022106170654296875, 0.0005035400390625, 0.07183837890625, -0.0162353515625, -0.0011196136474609375, -0.0002593994140625, -0.0203704833984375, -0.0153656005859375, 0.0109405517578125, -0.027069091796875, 0.00460052490234375, 0.002506256103515625, 0.023162841796875, -0.0259246826171875, 0.041748046875, -0.0029735565185546875, -0.01529693603515625, -0.0004897117614746094, 0.0308837890625, -0.007904052734375, 0.019500732421875, 0.002532958984375, -0.0043182373046875, -0.0027618408203125, 0.020721435546875, 0.007701873779296875, 0.02288818359375, -0.01012420654296875, 0.04498291015625, -0.01403045654296875, -0.0011644363403320312, -0.0034427642822265625, -0.00446319580078125, 0.0154876708984375, 0.0170135498046875, -0.015625, -0.0194091796875, -0.015625, -0.0211944580078125, -0.01519012451171875, -0.0321044921875, 0.04888916015625, 0.0697021484375, -0.0169830322265625, -0.01142120361328125, -0.045623779296875, 0.0413818359375, -0.03936767578125, -0.0004124641418457031, 0.0006031990051269531, -0.00763702392578125, 0.015899658203125, 0.071533203125, -0.04608154296875, 0.07275390625, 0.00830841064453125, 0.02410888671875, 0.0251617431640625, 0.034637451171875, 0.0238037109375, -0.03204345703125, -0.0006895065307617188, 0.00658416748046875, 0.0038623809814453125, -0.034271240234375, -0.019622802734375, 0.061065673828125, 0.059844970703125, -0.01788330078125, -0.0274200439453125, -0.0277099609375, -0.035614013671875, -0.0238494873046875, -0.008087158203125, 0.029144287109375, -0.016326904296875, -0.00244140625, 0.027191162109375, 0.008087158203125, 0.042388916015625, 0.01006317138671875, -0.01458740234375, -0.00899505615234375, 0.0015935897827148438, -0.050048828125, 0.0136871337890625, -0.0160064697265625, -0.02032470703125, 0.008087158203125, -0.0205230712890625, -0.00009018182754516602, 0.020416259765625, 0.000659942626953125, -0.012481689453125, -0.006748199462890625, 0.033294677734375, -0.03936767578125, 0.053802490234375, -0.03216552734375, -0.02337646484375, -0.023712158203125, 0.01519012451171875, 0.0594482421875, 0.051483154296875, -0.021331787109375, -0.01453399658203125, -0.0007538795471191406, -0.006031036376953125, 0.054046630859375, -0.03350830078125, -0.00482177734375, -0.037353515625, -0.0171661376953125, 0.0162200927734375, -0.0108184814453125, -0.005535125732421875, 0.00860595703125, 0.0087738037109375, -0.0120086669921875, 0.015960693359375, 0.005313873291015625, 0.01480865478515625, 0.01245880126953125, 0.041748046875, 0.032073974609375, 0.01129150390625, -0.0416259765625, -0.028900146484375, 0.0259246826171875, -0.00850677490234375, -0.03668212890625, -0.049652099609375, 0.028656005859375, -0.01480865478515625, -0.008056640625, -0.01113128662109375, -0.0143280029296875, -0.006809234619140625, -0.00653076171875, -0.030792236328125, 0.028533935546875, 0.005218505859375, -0.004779815673828125, -0.0276641845703125, -0.06500244140625, -0.01000213623046875, 0.0200958251953125, 0.00727081298828125, 0.0399169921875, -0.04473876953125, 0.027069091796875, 0.045440673828125, -0.004146575927734375, 0.005157470703125, 0.08416748046875, 0.005161285400390625, 0.05889892578125, 0.025146484375, 0.0201416015625, 0.04058837890625, 0.0247802734375, 0.011962890625, -0.045928955078125, 0.036834716796875, -0.0086212158203125, -0.03509521484375, 0.0099945068359375, -0.03448486328125, 0.039794921875, 0.01105499267578125, 0.09619140625, -0.019012451171875, 0.00811004638671875, 0.04925537109375, -0.058319091796875, -0.0133056640625, 0.0169525146484375, 0.00911712646484375, 0.0052490234375, -0.00489044189453125, 0.0011882781982421875, -0.0279388427734375, 0.0008916854858398438, 0.01123046875, 0.0238494873046875, -0.0018415451049804688, 0.0435791015625, -0.0124664306640625, -0.0758056640625, -0.0310821533203125, 0.049072265625, -0.0297393798828125, -0.01273345947265625, 0.018280029296875, -0.0167694091796875, -0.00031113624572753906, -0.050323486328125, 0.01549530029296875, -0.0027332305908203125, -0.0027294158935546875, 0.034210205078125, -0.003086090087890625, 0.01171112060546875, 0.04681396484375, -0.00986480712890625, 0.0081329345703125, 0.0228271484375, -0.031036376953125, 0.02496337890625, -0.009033203125, 0.0054473876953125, 0.031982421875, -0.0623779296875, -0.0013513565063476562, -0.026153564453125, 0.04150390625, 0.007381439208984375, 0.0299530029296875, 0.01513671875, -0.023345947265625, -0.0212554931640625, 0.05718994140625, 0.029541015625, -0.0134429931640625, -0.015899658203125, 0.0008554458618164062, -0.01506805419921875, 0.052276611328125, -0.0029811859130859375, 0.0469970703125, -0.012908935546875, -0.0127410888671875, -0.057952880859375, 0.04071044921875, -0.0209808349609375, 0.004680633544921875, 0.0032196044921875, 0.0159454345703125, 0.01198577880859375, 0.00006967782974243164, -0.0166015625, -0.0033111572265625, -0.022247314453125, 0.0268402099609375, -0.042938232421875, -0.019683837890625, 0.0006461143493652344, 0.058135986328125, 0.0557861328125, 0.0162353515625, -0.01045989990234375, 0.01058197021484375, 0.0293121337890625, 0.00980377197265625, -0.035125732421875, 0.021697998046875, 0.0166778564453125, 0.01190948486328125, 0.06304931640625, -0.0234222412109375, 0.031829833984375, -0.0272369384765625, 0.0292510986328125, 0.0460205078125, 0.01372528076171875, 0.0016155242919921875, -0.006504058837890625, 0.0176544189453125, -0.00579833984375, 0.00466156005859375, -0.0017642974853515625, -0.011749267578125, 0.0154571533203125, 0.02410888671875, 0.0173492431640625, -0.008087158203125, -0.00911712646484375, -0.017578125, 0.039276123046875, -0.007572174072265625, 0.01190185546875, 0.034912109375, 0.005451202392578125, 0.0263214111328125, 0.01898193359375, 0.01232147216796875, 0.0172882080078125, 0.01540374755859375, 0.0199432373046875, -0.0003662109375, -0.01325225830078125, -0.058990478515625, 0.051727294921875, 0.049102783203125, 0.040863037109375, -0.06005859375, -0.00469970703125, 0.014739990234375, -0.005352020263671875, -0.002040863037109375, -0.01206207275390625, 0.01300811767578125, -0.0260009765625, -0.0111846923828125, -0.046051025390625, 0.0133209228515625, 0.045013427734375, 0.04534912109375, 0.0094451904296875, -0.01806640625, -0.0682373046875, -0.027435302734375, -0.047393798828125, 0.027496337890625, -0.004207611083984375, 0.063720703125, 0.0010671615600585938, 0.07464599609375, -0.052978515625, -0.0276336669921875, 0.0254058837890625, 0.04315185546875, -0.0217742919921875, -0.017608642578125, -0.02740478515625, -0.0706787109375, -0.049468994140625, 0.0440673828125, 0.056732177734375, 0.036895751953125, 0.054901123046875, 0.0200958251953125, 0.007213592529296875, 0.0161285400390625, 0.0440673828125, -0.005496978759765625, 0.007350921630859375, -0.0118560791015625, 0.0061798095703125, -0.0201416015625, -0.01317596435546875, -0.0386962890625, 0.047607421875, -0.0161285400390625, -0.0269775390625, 0.08636474609375, -0.017364501953125, -0.00675201416015625, 0.01251983642578125, -0.049591064453125, 0.06707763671875, -0.02227783203125, -0.04351806640625, 0.0003495216369628906, -0.041656494140625, -0.0177764892578125, -0.0018072128295898438, 0.00736236572265625, -0.0285491943359375, 0.05584716796875, -0.032958984375, 0.002208709716796875, 0.01412200927734375, 0.0026264190673828125, -0.0031909942626953125, -0.0017976760864257812, 0.020172119140625, -0.007099151611328125, 0.01311492919921875, 0.01100921630859375, 0.026519775390625, 0.0026397705078125, 0.0146331787109375, -0.008148193359375, 0.00414276123046875, 0.01009368896484375, -0.0196075439453125, 0.00954437255859375, -0.023712158203125, -0.0312042236328125, 0.051116943359375, -0.01690673828125, -0.0166473388671875, -0.01436614990234375, 0.0265655517578125, 0.01316070556640625, 0.032562255859375, -0.01500701904296875, 0.0013904571533203125, -0.057708740234375, 0.042724609375, 0.01552581787109375, 0.030975341796875, -0.0191650390625, -0.024200439453125, -0.0621337890625, -0.021514892578125, 0.041107177734375, 0.0141754150390625, -0.0230865478515625, 0.019866943359375, 0.050537109375, -0.013397216796875, 0.039825439453125, -0.0386962890625, 0.10247802734375, 0.047882080078125, -0.01250457763671875, -0.0034694671630859375, -0.0016326904296875, -0.0163726806640625, -0.005245208740234375, 0.01094818115234375, -0.0012989044189453125, 0.01401519775390625, -0.041595458984375, 0.0119781494140625, 0.0212860107421875, 0.0168914794921875, -0.0328369140625, 0.001163482666015625, 0.06976318359375, -0.03729248046875, -0.040313720703125, -0.036102294921875, -0.00557708740234375, -0.04449462890625, -0.0016584396362304688, 0.003841400146484375, -0.00848388671875, 0.00783538818359375, 0.00988006591796875, -0.01934814453125, 0.0225372314453125, -0.01412200927734375, -0.0108795166015625, -0.0330810546875, -0.00939178466796875, 0.03778076171875, -0.01378631591796875, -0.04998779296875, 0.0183563232421875, 0.015960693359375, -0.019073486328125, -0.0223846435546875, -0.044219970703125, -0.017669677734375, -0.03045654296875, 0.027740478515625, 0.01088714599609375, -0.0343017578125, 0.009552001953125, 0.05218505859375, 0.0253448486328125, 0.10516357421875, 0.026092529296875, -0.052825927734375, 0.00940704345703125, -0.00388336181640625, 0.0279693603515625, -0.060791015625, -0.0083160400390625, -0.0723876953125, 0.01352691650390625, 0.006893157958984375, -0.0099029541015625, 0.0316162109375, -0.0282440185546875, -0.0419921875, 0.03179931640625, 0.002468109130859375, -0.039947509765625, -0.042633056640625, 0.0013608932495117188, -0.0191650390625, 0.04632568359375, -0.001018524169921875, -0.03265380859375, -0.0256500244140625, 0.0278778076171875, 0.0034008026123046875, 0.006961822509765625, 0.035736083984375, 0.004169464111328125, -0.03131103515625, -0.01519775390625, -0.033111572265625, -0.0152740478515625, 0.0165252685546875, -0.0264892578125, 0.0160980224609375, -0.00024700164794921875, -0.0550537109375, -0.046295166015625, -0.0068359375, 0.031494140625, -0.005023956298828125, -0.044891357421875, 0.01070404052734375, -0.03131103515625, 0.02734375, -0.003307342529296875, -0.0043487548828125, -0.0019969940185546875, 0.0182952880859375, -0.00927734375, -0.01032257080078125, -0.01015472412109375, 0.0010251998901367188, -0.0328369140625, -0.0230560302734375, 0.00579833984375, -0.03375244140625, 0.021942138671875, -0.00022935867309570312, -0.044769287109375, 0.01532745361328125, -0.0164642333984375, -0.0196685791015625, -0.045684814453125, 0.01129150390625, 0.0244598388671875, -0.03399658203125, -0.014190673828125, -0.0060272216796875, 0.004047393798828125, 0.003322601318359375, -0.0457763671875, -0.028228759765625, 0.0169525146484375, -0.015655517578125, 0.002719879150390625, -0.0014886856079101562, 0.040374755859375, -0.0014524459838867188, 0.0166473388671875, -0.0308380126953125, 0.013702392578125, 0.012725830078125, 0.003971099853515625, -0.004215240478515625, 0.01000213623046875, 0.0294647216796875, 0.0406494140625, -0.0098724365234375, 0.0823974609375, 0.02935791015625, 0.035064697265625, -0.0269012451171875, -0.007549285888671875, 0.00897979736328125, -0.053680419921875, 0.0032329559326171875, 0.0310821533203125, -0.02008056640625, 0.002956390380859375, -0.01152801513671875, 0.00135040283203125, -0.01727294921875, -0.01198577880859375 ]
6d642f69ffc8478449b85e29e804f87376116a37
Wordpress Stackexchange Q: Filter out results from REST API I want to build a plugin to remove all posts by specific users from rest json output. How can I add a filter or hook to do that? A: If you're using WP 4.7+ you can filter the query using the rest_{$this->post_type}_query hook wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:L267 This is a working example that filters current query by given terms $types = [ 'post', 'page', ]; foreach ( $types as $type ) { add_filter( 'rest_' . $type . '_query', 'filter_rest_query_by_zone', 10, 2 ); } function filter_rest_query_by_zone( $args, $request ) { $zones = [ 'term1', 'term2', 'term3' ]; $args['tax_query'] = array( 'relation' => 'AND', array( 'taxonomy' => 'zones', 'field' => 'term_id', 'terms' => $zones ) ); return $args; }
Q: Filter out results from REST API I want to build a plugin to remove all posts by specific users from rest json output. How can I add a filter or hook to do that? A: If you're using WP 4.7+ you can filter the query using the rest_{$this->post_type}_query hook wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:L267 This is a working example that filters current query by given terms $types = [ 'post', 'page', ]; foreach ( $types as $type ) { add_filter( 'rest_' . $type . '_query', 'filter_rest_query_by_zone', 10, 2 ); } function filter_rest_query_by_zone( $args, $request ) { $zones = [ 'term1', 'term2', 'term3' ]; $args['tax_query'] = array( 'relation' => 'AND', array( 'taxonomy' => 'zones', 'field' => 'term_id', 'terms' => $zones ) ); return $args; } A: Starting to feel like a parrot, but here it goes again :(... If you need results which are different than those returned by the API by default, just create your own end point. The more core will move into utilizing those APIs for admin, the more risky it will get to modify them in any way. A: Filtering posts based on multiple custom taxonomy terms based on logical "AND", "OR" condition in wordpress rest api. Here is what you need to do in the newer versions of Wordpress (v5 and above) Lets say you have two custom taxonomies: sector and offerings. Getting all posts that are tagged with taxonomy ID 51 "OR" 52 beloning to the taxonmy term "sector" "OR" Getting all posts that are tagged with taxonomy ID 57 "AND" 58 beloning to the taxonomy term "offering" https://mywordpressbackend.com/wp-json/wp/v2/posts?sector=51+52&offering=57,58&tax_relation=OR Getting all posts that are tagged with taxonomy ID 51 "OR" 52 beloning to the taxonmy term "sector" "AND" Getting all posts that are tagged with taxonomy ID 57 "AND" 58 beloning to the taxonomy term "offering" https://mywordpressbackend.com/wp-json/wp/v2/posts?sector=51+52&offering=57,58&tax_relation=AN
wordpress
{ "language": "en", "length": 299, "provenance": "stackexchange_00019.jsonl.gz:484548", "question_score": "4", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/296440" }
[ 0.060211181640625, 0.01035308837890625, -0.0254669189453125, -0.00022673606872558594, 0.0321044921875, -0.060028076171875, 0.08282470703125, -0.004268646240234375, -0.004695892333984375, 0.049774169921875, 0.00537109375, 0.0109100341796875, -0.041015625, -0.0093841552734375, -0.046173095703125, -0.03399658203125, 0.004669189453125, 0.00206756591796875, -0.0012483596801757812, -0.0246429443359375, 0.002147674560546875, -0.0242767333984375, 0.016815185546875, 0.05035400390625, 0.0035381317138671875, 0.049560546875, 0.0518798828125, -0.03338623046875, 0.0135650634765625, -0.0177764892578125, 0.0090179443359375, -0.03558349609375, -0.0016050338745117188, 0.026519775390625, -0.02093505859375, 0.0017976760864257812, 0.0140838623046875, 0.0021228790283203125, 0.0005350112915039062, 0.01065826416015625, 0.03680419921875, -0.0307159423828125, -0.06378173828125, 0.0175933837890625, -0.025482177734375, -0.031341552734375, 0.060028076171875, -0.0204925537109375, 0.03240966796875, 0.0289306640625, 0.0028095245361328125, -0.0075225830078125, -0.0018281936645507812, 0.0196990966796875, -0.01568603515625, 0.00572967529296875, 0.01548004150390625, -0.0020236968994140625, 0.044708251953125, -0.040679931640625, -0.035858154296875, -0.03900146484375, 0.042510986328125, 0.01043701171875, 0.0048828125, -0.00270843505859375, 0.0183563232421875, 0.00909423828125, -0.031280517578125, 0.0109405517578125, 0.03411865234375, -0.0271148681640625, -0.00870513916015625, 0.01000213623046875, -0.038421630859375, -0.03668212890625, 0.0301666259765625, -0.032623291015625, 0.01471710205078125, 0.001453399658203125, -0.006443023681640625, -0.021392822265625, -0.003940582275390625, 0.0195770263671875, -0.03436279296875, 0.00888824462890625, -0.00815582275390625, 0.002704620361328125, -0.0299072265625, 0.007110595703125, -0.0163726806640625, -0.092041015625, -0.05828857421875, 0.054962158203125, 0.0380859375, -0.0230865478515625, 0.00397491455078125, -0.0194854736328125, 0.00821685791015625, 0.00865936279296875, 0.02459716796875, -0.047149658203125, 0.02056884765625, -0.0015163421630859375, 0.019287109375, -0.005413055419921875, -0.0193328857421875, 0.016845703125, 0.0655517578125, 0.04443359375, -0.0012416839599609375, 0.0609130859375, -0.02178955078125, 0.005176544189453125, -0.052764892578125, -0.01141357421875, -0.038726806640625, -0.02276611328125, -0.0206451416015625, -0.0146484375, -0.0138702392578125, -0.00994873046875, 0.007785797119140625, -0.00342559814453125, 0.01177215576171875, -0.0176239013671875, -0.031341552734375, 0.0029296875, 0.00447845458984375, 0.008575439453125, -0.00911712646484375, 0.032562255859375, 0.005908966064453125, 0.01375579833984375, -0.0237579345703125, -0.0020599365234375, 0.0192413330078125, -0.0025005340576171875, 0.006572723388671875, -0.007785797119140625, 0.038238525390625, -0.028594970703125, -0.009490966796875, 0.02349853515625, 0.039398193359375, 0.00200653076171875, 0.024658203125, 0.0120849609375, 0.0208282470703125, -0.0006852149963378906, -0.03619384765625, 0.046173095703125, 0.04193115234375, -0.006977081298828125, 0.01499176025390625, -0.031341552734375, 0.07379150390625, -0.047882080078125, -0.01450347900390625, -0.04376220703125, 0.034912109375, -0.00597381591796875, 0.0009551048278808594, -0.01348114013671875, -0.0438232421875, 0.01270294189453125, -0.0423583984375, -0.00327301025390625, 0.02294921875, -0.0089874267578125, 0.0132293701171875, -0.0313720703125, -0.00007867813110351562, 0.0163421630859375, 0.006961822509765625, 0.037994384765625, 0.006622314453125, 0.05609130859375, -0.0030269622802734375, 0.0216064453125, 0.005100250244140625, -0.0350341796875, 0.044158935546875, 0.0079803466796875, -0.06195068359375, 0.055999755859375, 0.020660400390625, 0.04132080078125, -0.0275421142578125, 0.01505279541015625, 0.086181640625, 0.08343505859375, 0.027496337890625, -0.0230560302734375, 0.00061798095703125, -0.0712890625, 0.0267791748046875, -0.033203125, -0.0009722709655761719, 0.047882080078125, 0.027252197265625, 0.0191192626953125, 0.004535675048828125, -0.0170440673828125, -0.07611083984375, 0.0099945068359375, -0.033172607421875, 0.0391845703125, -0.044891357421875, 0.02105712890625, 0.036376953125, 0.0297088623046875, -0.06500244140625, 0.06378173828125, 0.020294189453125, -0.007659912109375, -0.00670623779296875, 0.0164947509765625, 0.0160980224609375, 0.0000457763671875, 0.02227783203125, -0.01055908203125, 0.013580322265625, 0.0010900497436523438, 0.037689208984375, -0.04522705078125, 0.01456451416015625, -0.05029296875, 0.053619384765625, -0.0300750732421875, 0.034423828125, 0.0253143310546875, 0.046661376953125, 0.03363037109375, -0.0242462158203125, 0.018890380859375, 0.0244140625, -0.01442718505859375, -0.0062103271484375, 0.0298309326171875, 0.0266265869140625, 0.04931640625, -0.005680084228515625, 0.0019702911376953125, 0.053558349609375, -0.06640625, -0.003269195556640625, 0.0123748779296875, 0.031829833984375, 0.03436279296875, 0.0018663406372070312, -0.029266357421875, 0.023162841796875, -0.04620361328125, 0.016387939453125, 0.032012939453125, -0.007129669189453125, 0.0147705078125, -0.0085906982421875, -0.01247406005859375, 0.00982666015625, -0.04803466796875, -0.032135009765625, -0.0185699462890625, 0.01084136962890625, -0.025238037109375, 0.00644683837890625, 0.006988525390625, -0.04315185546875, -0.023712158203125, 0.05328369140625, 0.050445556640625, -0.0146942138671875, 0.030487060546875, 0.041961669921875, 0.0303955078125, -0.039581298828125, -0.021514892578125, 0.0333251953125, 0.036163330078125, 0.00006073713302612305, 0.00640869140625, 0.013671875, -0.0007572174072265625, -0.003192901611328125, -0.007373809814453125, 0.044403076171875, 0.0261688232421875, -0.01280975341796875, 0.002750396728515625, -0.00014078617095947266, 0.058868408203125, -0.0015611648559570312, 0.029876708984375, -0.004123687744140625, 0.01422119140625, -0.00283050537109375, -0.043182373046875, 0.033050537109375, -0.0408935546875, 0.00879669189453125, 0.0523681640625, 0.01959228515625, -0.0160675048828125, 0.014373779296875, -0.012054443359375, -0.01678466796875, 0.01415252685546875, 0.002925872802734375, -0.01010894775390625, -0.0225067138671875, 0.05364990234375, 0.005298614501953125, -0.01212310791015625, -0.0115814208984375, -0.039642333984375, -0.0276641845703125, -0.00640869140625, -0.07958984375, -0.040191650390625, 0.07330322265625, -0.0135650634765625, 0.00231170654296875, -0.01178741455078125, -0.01873779296875, -0.0210113525390625, 0.019256591796875, -0.0265350341796875, 0.027191162109375, -0.0245361328125, -0.060455322265625, 0.00560760498046875, -0.0298004150390625, 0.06317138671875, -0.0081939697265625, -0.01140594482421875, -0.00027942657470703125, 0.0980224609375, 0.0158233642578125, -0.0665283203125, -0.0089569091796875, 0.0216827392578125, -0.0304107666015625, 0.003940582275390625, 0.005054473876953125, 0.01398468017578125, -0.004199981689453125, 0.006092071533203125, 0.021636962890625, 0.03656005859375, -0.045989990234375, -0.005825042724609375, 0.00400543212890625, 0.01261138916015625, 0.0010404586791992188, -0.007099151611328125, -0.0008540153503417969, 0.006435394287109375, -0.003002166748046875, -0.035491943359375, 0.0031375885009765625, -0.0266571044921875, -0.0252227783203125, 0.0193023681640625, -0.002166748046875, 0.00023436546325683594, -0.028778076171875, 0.041046142578125, 0.03125, -0.01534271240234375, 0.00428009033203125, 0.0011243820190429688, 0.006256103515625, 0.0126495361328125, 0.025238037109375, -0.0273590087890625, 0.0654296875, -0.005176544189453125, -0.043670654296875, 0.0059356689453125, -0.0258331298828125, -0.042266845703125, -0.01202392578125, -0.075927734375, -0.023406982421875, 0.055755615234375, 0.042236328125, -0.01873779296875, 0.01169586181640625, -0.034942626953125, 0.01497650146484375, 0.063232421875, -0.056732177734375, -0.0304412841796875, 0.001739501953125, -0.003665924072265625, 0.058837890625, 0.0186004638671875, -0.001068115234375, -0.036834716796875, -0.045013427734375, 0.0099334716796875, 0.00278472900390625, -0.027984619140625, -0.017303466796875, -0.026641845703125, -0.02880859375, -0.0210723876953125, 0.03009033203125, -0.039459228515625, 0.0292510986328125, -0.0302276611328125, 0.01146697998046875, -0.027069091796875, -0.01395416259765625, -0.032440185546875, -0.07147216796875, -0.015625, -0.01134490966796875, 0.050750732421875, 0.01507568359375, -0.02239990234375, -0.017974853515625, 0.01361846923828125, 0.020904541015625, 0.0164794921875, -0.01453399658203125, -0.0322265625, 0.0030727386474609375, 0.0186920166015625, -0.005615234375, -0.0084686279296875, -0.0077667236328125, 0.00555419921875, 0.00811767578125, 0.015838623046875, -0.019317626953125, -0.013153076171875, -0.01062774658203125, -0.03204345703125, -0.05804443359375, -0.051910400390625, -0.039947509765625, -0.01216888427734375, -0.04669189453125, 0.0017681121826171875, -0.033294677734375, -0.053375244140625, 0.039794921875, 0.03173828125, -0.0174560546875, 0.00194549560546875, 0.025299072265625, 0.0007691383361816406, -0.03009033203125, -0.0560302734375, -0.01120758056640625, 0.01248931884765625, -0.0266265869140625, 0.0750732421875, -0.0013971328735351562, -0.01457977294921875, 0.11920166015625, -0.0380859375, 0.01526641845703125, -0.02191162109375, 0.033935546875, 0.01123809814453125, -0.031951904296875, 0.03717041015625, 0.0257720947265625, -0.0138702392578125, 0.0005373954772949219, -0.0040130615234375, -0.0195770263671875, 0.031341552734375, 0.0294647216796875, -0.01702880859375, 0.0159759521484375, -0.01593017578125, -0.0439453125, 0.025146484375, -0.046630859375, 0.0101776123046875, -0.01287078857421875, 0.004634857177734375, -0.0051727294921875, -0.0110015869140625, -0.006145477294921875, -0.0123291015625, 0.037841796875, -0.046539306640625, 0.05450439453125, -0.049560546875, -0.0302886962890625, -0.039276123046875, -0.01418304443359375, 0.07525634765625, -0.005702972412109375, -0.065673828125, 0.01265716552734375, 0.004970550537109375, 0.030364990234375, 0.039306640625, 0.00638580322265625, 0.0250091552734375, 0.035797119140625, 0.006183624267578125, -0.0235748291015625, -0.01441192626953125, 0.0205841064453125, -0.043060302734375, 0.0286712646484375, -0.0101470947265625, 0.0011043548583984375, 0.0146484375, 0.04620361328125, -0.0168609619140625, 0.05755615234375, -0.0241851806640625, 0.023468017578125, -0.00885772705078125, 0.023162841796875, 0.0168304443359375, -0.004596710205078125, 0.01465606689453125, 0.0028133392333984375, 0.00838470458984375, -0.027923583984375, -0.0169830322265625, 0.03106689453125, -0.00299072265625, -0.034942626953125, -0.0184478759765625, 0.0399169921875, 0.01971435546875, -0.050750732421875, 0.01263427734375, -0.0171661376953125, -0.0141754150390625, -0.053070068359375, 0.004840850830078125, 0.034759521484375, 0.039825439453125, 0.00690460205078125, -0.01029205322265625, 0.0160980224609375, 0.019439697265625, -0.005565643310546875, -0.03216552734375, 0.0180206298828125, 0.019195556640625, -0.027557373046875, -0.045562744140625, -0.00682830810546875, -0.049530029296875, -0.007965087890625, -0.0012836456298828125, 0.0055389404296875, 0.002933502197265625, -0.020751953125, 0.0269622802734375, -0.015380859375, -0.006320953369140625, -0.0311737060546875, 0.007335662841796875, 0.04632568359375, 0.03924560546875, -0.039306640625, -0.010345458984375, -0.04150390625, -0.02349853515625, 0.020416259765625, 0.00620269775390625, -0.01107025146484375, -0.011749267578125, 0.012420654296875, 0.0239715576171875, 0.0027866363525390625, -0.02813720703125, 0.02655029296875, -0.0219879150390625, -0.0192718505859375, -0.0011119842529296875, -0.0148162841796875, 0.07366943359375, -0.034027099609375, 0.07080078125, 0.01023101806640625, 0.01904296875, -0.041748046875, -0.01355743408203125, -0.0030689239501953125, -0.0880126953125, -0.04071044921875, 0.0229644775390625, -0.0845947265625, 0.06903076171875, 0.04718017578125, 0.002132415771484375, 0.00994110107421875, -0.01113128662109375, 0.0075531005859375, -0.032684326171875, 0.029510498046875, -0.0278778076171875, 0.0083465576171875, -0.003757476806640625, 0.0214080810546875, 0.0249786376953125, -0.027252197265625, -0.0179901123046875, 0.0019989013671875, 0.0268707275390625, 0.0154266357421875, -0.0299835205078125, 0.01361083984375, 0.0255889892578125, 0.0679931640625, -0.0194244384765625, 0.03289794921875, 0.040771484375, 0.005390167236328125, 0.0279998779296875, -0.030059814453125, 0.03955078125, 0.00530242919921875, 0.0178070068359375, -0.020111083984375, -0.0165863037109375, 0.01001739501953125, -0.0428466796875, -0.005939483642578125, 0.013427734375, 0.0023822784423828125, -0.0640869140625, 0.00856781005859375, -0.0201873779296875, 0.01305389404296875, 0.03289794921875, -0.00847625732421875, 0.0132598876953125, -0.037078857421875, 0.00377655029296875, 0.007221221923828125, -0.032928466796875, -0.0166015625, -0.00720977783203125, -0.0239105224609375, 0.00704193115234375, 0.03277587890625, 0.01519012451171875, 0.002986907958984375, 0.01409912109375, -0.0259857177734375, 0.021942138671875, 0.01432037353515625, 0.0086517333984375, 0.03387451171875, -0.024658203125, -0.07867431640625, 0.0009746551513671875, -0.03448486328125, -0.053619384765625, 0.0294952392578125, -0.036376953125, 0.0300140380859375, 0.045257568359375, -0.03375244140625, 0.0106353759765625, 0.02655029296875, -0.0367431640625, -0.052398681640625, -0.03314208984375, -0.0161285400390625, 0.0386962890625, -0.028076171875, 0.0355224609375, -0.008697509765625, -0.0163726806640625, -0.01534271240234375, -0.053253173828125, 0.071044921875, -0.050384521484375, -0.002971649169921875, 0.00026798248291015625, 0.0175323486328125, 0.00824737548828125, 0.0080108642578125, 0.0009565353393554688, -0.042938232421875, -0.019317626953125, 0.005359649658203125, -0.0169830322265625, -0.00159454345703125, 0.02276611328125, -0.08233642578125, 0.07550048828125, 0.01163482666015625, 0.0504150390625, -0.0184173583984375, 0.0203704833984375, -0.0007004737854003906, 0.00726318359375, -0.0263824462890625, 0.0684814453125, 0.01053619384765625, 0.03643798828125, -0.022308349609375, -0.007205963134765625, 0.0213775634765625, 0.0288848876953125, 0.064208984375, 0.0196685791015625, -0.026336669921875, -0.0474853515625, -0.0253448486328125, 0.0109710693359375, -0.0303955078125, 0.038543701171875, 0.027191162109375, 0.052215576171875, 0.07470703125, -0.0477294921875, 0.03271484375, -0.01528167724609375, 0.0262603759765625, 0.048675537109375, 0.02001953125, 0.0303497314453125, 0.01166534423828125, 0.062103271484375, 0.0235595703125, -0.0170135498046875, 0.0042572021484375, -0.01849365234375, -0.0034770965576171875, 0.064697265625, 0.051239013671875, -0.0743408203125, -0.01495361328125, -0.043212890625, 0.04931640625, 0.00759124755859375, 0.0633544921875, 0.05218505859375, 0.046844482421875, 0.025726318359375, -0.009490966796875, 0.048675537109375, 0.023956298828125, -0.0711669921875, 0.018280029296875, 0.0216522216796875, 0.026458740234375, -0.018310546875, -0.01285552978515625, 0.025177001953125, 0.0255584716796875, -0.015411376953125, -0.047882080078125, 0.013458251953125, 0.01220703125, 0.012908935546875, 0.04486083984375, 0.032012939453125, -0.037109375, 0.0197906494140625, -0.05401611328125, 0.0183563232421875, 0.024261474609375, 0.0305633544921875, -0.0220184326171875, -0.027435302734375, -0.0225067138671875, 0.015655517578125, -0.0247955322265625, -0.00372314453125, 0.004047393798828125, 0.0295562744140625, 0.0081939697265625, 0.021636962890625, -0.02764892578125, -0.0118408203125, 0.0157623291015625, -0.001529693603515625, -0.0014820098876953125, -0.01248931884765625, 0.0008244514465332031, -0.020477294921875, 0.006580352783203125, 0.008087158203125, 0.0270538330078125, 0.007030487060546875, 0.04339599609375, 0.0283203125, -0.039520263671875, -0.0038661956787109375, 0.02691650390625, -0.0269622802734375, -0.0260772705078125, -0.0292205810546875, -0.00847625732421875, 0.016143798828125, -0.0126800537109375, 0.016082763671875, 0.002635955810546875, 0.015045166015625, -0.004528045654296875, 0.0217742919921875, -0.0026950836181640625, -0.0340576171875, 0.00960540771484375, -0.005764007568359375, 0.049560546875, 0.01454925537109375, -0.03216552734375, 0.005016326904296875, -0.0257568359375, -0.0278472900390625, -0.005092620849609375, 0.0133514404296875, -0.03643798828125, 0.0462646484375, 0.047821044921875, -0.025360107421875, 0.003692626953125, -0.000728607177734375, 0.0297393798828125, -0.034271240234375, -0.00508880615234375, -0.005229949951171875, -0.00756072998046875, -0.01345062255859375, 0.01421356201171875, 0.027374267578125, 0.00443267822265625, 0.05352783203125, -0.0172271728515625, -0.0006313323974609375, -0.045562744140625, -0.023834228515625, 0.00023365020751953125, -0.02655029296875, 0.00830078125, 0.026275634765625, -0.01096343994140625, 0.0117340087890625, -0.0280303955078125, -0.027587890625, 0.03955078125, -0.02276611328125, 0.0127105712890625, -0.034027099609375, 0.01708984375, -0.0273284912109375, 0.01448822021484375, -0.0079193115234375, 0.02423095703125, 0.01043701171875, -0.0235595703125, 0.0489501953125, 0.045562744140625, 0.007251739501953125, 0.00278472900390625, 0.004108428955078125, -0.016510009765625, 0.02606201171875, 0.0115203857421875, 0.03369140625, 0.0268402099609375, -0.0266265869140625, 0.06732177734375, -0.02288818359375, -0.030792236328125, 0.03057861328125, 0.005245208740234375, -0.036468505859375, 0.003459930419921875, 0.0247802734375, -0.0164031982421875, -0.046356201171875, 0.025848388671875, 0.02508544921875, -0.00727081298828125, -0.054931640625, 0.0125274658203125, -0.062164306640625, 0.03424072265625, -0.036285400390625, -0.0303497314453125, 0.003887176513671875, 0.00847625732421875, -0.007061004638671875, -0.055877685546875, -0.070556640625, -0.0216217041015625, -0.0027523040771484375, -0.011871337890625, -0.04193115234375, 0.015869140625, -0.0143890380859375, 0.013946533203125, -0.040740966796875, -0.0106353759765625, -0.010009765625, 0.018310546875, -0.019683837890625, -0.01198577880859375, -0.04364013671875, 0.00765228271484375, -0.0101318359375, -0.03668212890625, 0.0174102783203125, 0.0158233642578125, -0.0413818359375, -0.0228271484375, -0.02618408203125, 0.00519561767578125, -0.01312255859375, -0.007213592529296875, 0.00945281982421875, 0.01157379150390625, -0.036773681640625, -0.05157470703125, 0.0211944580078125, -0.03564453125, -0.0083160400390625, -0.008941650390625, 0.01152801513671875, 0.02728271484375, -0.0391845703125, -0.10565185546875, 0.0718994140625, -0.037872314453125, -0.0300140380859375, -0.07855224609375, 0.0143280029296875, 0.051788330078125, -0.0146484375, -0.034912109375, 0.003894805908203125, -0.09503173828125, -0.011871337890625, 0.0027675628662109375, 0.025665283203125, -0.00667572021484375, 0.00031256675720214844, -0.05145263671875, 0.018829345703125, -0.0007066726684570312, 0.03277587890625, -0.0168304443359375, 0.0026378631591796875, 0.02740478515625, 0.02630615234375, -0.0284881591796875, 0.07073974609375, 0.0124053955078125, 0.0106964111328125, -0.0270538330078125, -0.01910400390625, -0.05029296875, -0.0031108856201171875, 0.105712890625, 0.06390380859375, 0.03857421875, -0.042633056640625, -0.03411865234375, -0.053558349609375, 0.034912109375, -0.036376953125, -0.0006465911865234375, -0.051239013671875, -0.003696441650390625, -0.0038547515869140625, 0.01470947265625, 0.03082275390625, -0.05517578125, -0.0017194747924804688, -0.037750244140625, -0.01885986328125, 0.01235198974609375, -0.0149383544921875, 0.007541656494140625, -0.04071044921875, -0.00666046142578125, -0.0249481201171875, -0.0248260498046875, 0.0189361572265625, -0.047576904296875, -0.00051116943359375, -0.038543701171875, -0.045623779296875, 0.026336669921875, 0.0556640625, -0.00786590576171875, 0.0084228515625, -0.0295867919921875, 0.0107574462890625, -0.0440673828125, 0.00754547119140625, 0.04559326171875, 0.00921630859375, -0.042449951171875, -0.0097198486328125, 0.0237274169921875, 0.0197601318359375, -0.004215240478515625, 0.04852294921875, -0.0174407958984375, 0.0244293212890625, 0.0031566619873046875, -0.0228118896484375, 0.041229248046875, -0.021026611328125, -0.00847625732421875, 0.00931549072265625, -0.0135345458984375, -0.0849609375, 0.059112548828125, 0.0224609375, 0.0171966552734375, 0.03936767578125 ]
e09f3604c4a187718e206e1b0e49b73f989e60e1
Wordpress Stackexchange Q: How to use custom Html file instead of wordpress homepage I have wordpress installed in root folder of domain.com I want to load index.html when domain.com is visited and domain.com/my-posts/ should load normal wordpress posts. I am doing this to increase speed of my wordpress homepage.I dont want any php to be involved. Will renaming index.php to index.html and putting my html content will work ? A: If your concern is that PHP or MySQL is causing the page load speed to decrease, I recommend installing a Caching plugin and configuring Page Caching. A free plugin that I've used for this purpose is W3 Total Cache Page caching essentially does what you are looking for, which is to serve a static HTML file with CSS and Javascript assets, instead of running PHP and MySQL queries whenever a page is loaded. It does this by pre-generating each page as a static HTML file, and then serves those static files in place of the dynamic PHP / MySQL Wordpress engine. It's much easier to set up than having to manage a separate static HTML file for your landing page.
Q: How to use custom Html file instead of wordpress homepage I have wordpress installed in root folder of domain.com I want to load index.html when domain.com is visited and domain.com/my-posts/ should load normal wordpress posts. I am doing this to increase speed of my wordpress homepage.I dont want any php to be involved. Will renaming index.php to index.html and putting my html content will work ? A: If your concern is that PHP or MySQL is causing the page load speed to decrease, I recommend installing a Caching plugin and configuring Page Caching. A free plugin that I've used for this purpose is W3 Total Cache Page caching essentially does what you are looking for, which is to serve a static HTML file with CSS and Javascript assets, instead of running PHP and MySQL queries whenever a page is loaded. It does this by pre-generating each page as a static HTML file, and then serves those static files in place of the dynamic PHP / MySQL Wordpress engine. It's much easier to set up than having to manage a separate static HTML file for your landing page. A: I strongly advise you to heed the advice already given. If your PHP is well structured and you take advantage of caching methods, it won't have a significant increase on your page load time. We've got pages with extremely complex queries that are hardly optimized, but using some clever caching methods, we're able to get those pages served in 500-900ms, or 2-3s for some of the much more complex pages. It's a much better long term solution than using a static HTML page as your homepage. That said - if you still wish to proceed with a static HTML homepage instead (again, please don't, especially if the only reason is "page speed", since there are so many other ways to decrease your page load time) ... Still reading? Method 1: .htaccess The… … "generally accepted" way to do this is with a .htaccess rule that targets your homepage only, such as RewriteRule ^$ http://example.com/path-to-html.html [L,R=301] Method 2: Page Template Alternatively, to maintain some semblance to the WordPress ecosystem would be to set up a Page Template * *Add a home.php (yes, PHP file) to your active theme directory: /wp-content/themes/CURRENT-THEME/home.php. *Place the following "Page Template Header" code in that file (leave a note to your future self/fellow devs that say where the file is so it's less confusing): <?php /* * Template Name: My HTML Homepage */ ?> <!-- This page is generated outside of WP by: /wp-content/themes/CURRENT-THEME/home.php --> <!-- Your HTML Code Here --> *Add a new Page with Pages > Add New with a recognizable name, such as "My HTML Homepage" *On the right hand side, in the Template selector, choose "My HTML Homepage" as the template. *In Settings > Reading change "Your Homepage Displays:" to "A Static Page", and pick the "My HTML Homepage" page you just added. Method 3: Move your WordPress Install You can also just install WordPress on a subdirectory, have index.html in the root directory, and use .htaccess to remove the /wp from your URLs. Method 4: Don't. Again, I strongly urge you to consider other methods: * *Taking advantaged of PHP 7.x and memcache/d *Caching plugins like WP Super Cache/W3 Total Cache *Optimizing your images (manually or with WP Smush) * *Serve images from a CDN *Optimizing Script/Style delivery (WP Hummingbird can help with this): * *Combine files where appropriate/able *Minify those files *Serve those files from a CDN *Remove unnecessary plugins from WP, optimize JS functions, remove unused CSS selectors, etc. A: Another method if you're using Apache is to name your index file something special and prepend that name to your DirectoryIndexes. For example: * *Save your static index file as index-static.html *Open httpd.conf and edit the DirectoryIndex list <IfModule dir_module> DirectoryIndex index-static.html index.php index.html </IfModule> *Save httpd.conf and run sudo service httpd restart Compared to Method 1 in the previous answer, this method has the benefit of not modifying your homepage URL — that is, visitors won't see static-index.html appended to the domain when they visit your site because no redirect occurs. This is probably better for SEO purposes in addition to being transparent to visitors.
wordpress
{ "language": "en", "length": 705, "provenance": "stackexchange_00019.jsonl.gz:484581", "question_score": "4", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/296592" }
[ 0.053802490234375, 0.0009570121765136719, -0.01494598388671875, -0.023284912109375, 0.024749755859375, -0.042694091796875, 0.045928955078125, -0.0194549560546875, -0.061004638671875, 0.01446533203125, -0.002025604248046875, 0.01125335693359375, -0.024078369140625, -0.0257568359375, 0.04254150390625, -0.039581298828125, 0.033782958984375, 0.0013475418090820312, 0.038848876953125, 0.000492095947265625, 0.01421356201171875, 0.00800323486328125, 0.042083740234375, 0.01515960693359375, 0.013763427734375, -0.0657958984375, 0.061492919921875, -0.0216522216796875, -0.0033416748046875, -0.0276641845703125, 0.0203399658203125, 0.0278472900390625, 0.040313720703125, 0.023529052734375, -0.04608154296875, 0.01995849609375, -0.01490020751953125, 0.023406982421875, -0.0006394386291503906, 0.016876220703125, 0.019989013671875, -0.0176849365234375, 0.0599365234375, 0.00711822509765625, 0.017425537109375, -0.0307159423828125, 0.043304443359375, -0.049468994140625, 0.0155792236328125, -0.0283966064453125, 0.0197906494140625, 0.0172271728515625, 0.037109375, -0.049468994140625, -0.0155487060546875, 0.0177001953125, 0.00217437744140625, 0.00439453125, 0.0118560791015625, -0.059661865234375, -0.0154266357421875, 0.0160064697265625, 0.03607177734375, 0.06494140625, -0.031463623046875, -0.019317626953125, -0.0203094482421875, 0.002742767333984375, -0.0279998779296875, -0.03863525390625, 0.031585693359375, -0.0100250244140625, 0.007091522216796875, -0.0283050537109375, -0.006107330322265625, 0.0025997161865234375, -0.004703521728515625, -0.0246429443359375, 0.0142059326171875, 0.015777587890625, -0.049896240234375, -0.011260986328125, -0.0160064697265625, -0.0810546875, 0.01070404052734375, -0.0460205078125, -0.0209808349609375, 0.0165557861328125, -0.005126953125, -0.016510009765625, -0.0163421630859375, -0.00908660888671875, 0.0024738311767578125, -0.01117706298828125, -0.031005859375, -0.01264190673828125, -0.0322265625, -0.00638580322265625, -0.014190673828125, 0.01403045654296875, -0.007045745849609375, -0.018585205078125, 0.051666259765625, -0.024017333984375, 0.005008697509765625, 0.07867431640625, 0.015411376953125, 0.06097412109375, 0.054412841796875, 0.005878448486328125, 0.035064697265625, 0.027435302734375, -0.00919342041015625, -0.01491546630859375, -0.0288238525390625, 0.02252197265625, -0.0137176513671875, -0.031036376953125, -0.00965118408203125, -0.01082611083984375, 0.02105712890625, 0.042083740234375, -0.001590728759765625, -0.0087890625, -0.00934600830078125, -0.0157470703125, -0.005207061767578125, -0.037689208984375, 0.0020313262939453125, -0.0037250518798828125, -0.018096923828125, 0.02557373046875, 0.020965576171875, 0.01554107666015625, -0.015289306640625, -0.002468109130859375, 0.0234832763671875, -0.0189361572265625, -0.03973388671875, 0.04425048828125, -0.0030574798583984375, -0.082275390625, -0.053985595703125, -0.032562255859375, 0.01248931884765625, 0.01348876953125, 0.011566162109375, 0.0276947021484375, 0.007358551025390625, -0.0352783203125, 0.017059326171875, -0.0147705078125, 0.03857421875, -0.006561279296875, 0.022186279296875, -0.05126953125, 0.00279998779296875, -0.0251312255859375, 0.015594482421875, -0.0166015625, -0.0036563873291015625, -0.0135650634765625, -0.006397247314453125, -0.047760009765625, -0.047515869140625, -0.016815185546875, 0.0029315948486328125, 0.00726318359375, 0.022308349609375, -0.0302734375, 0.038604736328125, -0.0498046875, -0.00641632080078125, 0.00775909423828125, 0.01727294921875, 0.035888671875, 0.00415802001953125, 0.056884765625, 0.0139923095703125, 0.07073974609375, 0.038665771484375, -0.0183563232421875, 0.1004638671875, -0.0149993896484375, -0.06036376953125, 0.0305023193359375, 0.00605010986328125, 0.05316162109375, 0.014984130859375, 0.0161590576171875, 0.03485107421875, 0.01313018798828125, -0.04248046875, 0.051025390625, 0.033294677734375, -0.0052947998046875, -0.072509765625, -0.01904296875, -0.002475738525390625, -0.046112060546875, -0.01029205322265625, -0.01122283935546875, 0.01419830322265625, 0.01204681396484375, 0.009552001953125, -0.01168060302734375, -0.0072174072265625, 0.0217742919921875, 0.0159454345703125, 0.02886962890625, 0.0111846923828125, 0.038604736328125, -0.0221710205078125, -0.06817626953125, -0.0587158203125, -0.0233612060546875, 0.002063751220703125, 0.06060791015625, 0.01446533203125, 0.020050048828125, 0.032379150390625, -0.0222930908203125, 0.0160369873046875, 0.005817413330078125, 0.03570556640625, 0.002864837646484375, -0.0217437744140625, -0.0136871337890625, 0.004070281982421875, 0.0119781494140625, -0.06390380859375, 0.03375244140625, 0.04815673828125, 0.03216552734375, -0.0260772705078125, -0.00455474853515625, -0.010040283203125, -0.0667724609375, -0.01416778564453125, 0.055511474609375, 0.02813720703125, 0.0160064697265625, -0.01611328125, -0.01385498046875, 0.045654296875, -0.018798828125, 0.0034084320068359375, -0.004573822021484375, -0.01126861572265625, -0.010223388671875, -0.0158233642578125, -0.03179931640625, 0.038970947265625, -0.09490966796875, -0.022735595703125, 0.045562744140625, 0.05224609375, 0.0191802978515625, -0.0207366943359375, 0.0117034912109375, 0.0229949951171875, 0.043060302734375, -0.06927490234375, 0.0338134765625, -0.0180816650390625, 0.01053619384765625, -0.0013303756713867188, 0.00968170166015625, -0.02392578125, -0.004077911376953125, 0.0209808349609375, -0.00429534912109375, -0.0018777847290039062, 0.002826690673828125, 0.003215789794921875, -0.0028820037841796875, -0.0303497314453125, 0.00588226318359375, 0.037078857421875, -0.007305145263671875, -0.0223388671875, -0.0170135498046875, -0.06597900390625, -0.007236480712890625, -0.01183319091796875, -0.06719970703125, 0.0011911392211914062, 0.039031982421875, 0.0287628173828125, 0.058868408203125, 0.052337646484375, 0.018096923828125, -0.0176849365234375, 0.038177490234375, 0.0345458984375, -0.001007080078125, -0.007720947265625, -0.049224853515625, 0.0294342041015625, -0.00487518310546875, 0.03668212890625, 0.08404541015625, 0.042694091796875, -0.00002753734588623047, 0.0022563934326171875, 0.009674072265625, 0.02392578125, -0.0033855438232421875, -0.0198211669921875, -0.005390167236328125, -0.051513671875, -0.01273345947265625, 0.020660400390625, 0.0213775634765625, 0.0033092498779296875, -0.027435302734375, 0.005344390869140625, 0.0184173583984375, -0.08575439453125, -0.1036376953125, 0.01207733154296875, -0.0292205810546875, -0.021697998046875, 0.0234375, -0.0229949951171875, -0.018035888671875, 0.044952392578125, 0.002910614013671875, -0.00962066650390625, -0.056396484375, -0.048095703125, -0.07177734375, -0.090576171875, -0.0271453857421875, 0.0085296630859375, 0.007049560546875, 0.00508880615234375, -0.01306915283203125, -0.00786590576171875, -0.033294677734375, -0.0031585693359375, 0.04742431640625, -0.0094451904296875, -0.0179443359375, 0.0224761962890625, -0.040618896484375, 0.0209197998046875, -0.00116729736328125, 0.017608642578125, 0.02606201171875, -0.0208587646484375, -0.013092041015625, -0.0239410400390625, -0.03173828125, -0.0294952392578125, 0.0253143310546875, 0.0295867919921875, -0.0080718994140625, 0.00041961669921875, -0.041412353515625, -0.0202484130859375, 0.01256561279296875, -0.034515380859375, -0.056732177734375, 0.0261077880859375, -0.03155517578125, -0.01375579833984375, -0.03021240234375, 0.0181732177734375, -0.00853729248046875, 0.03167724609375, -0.0079803466796875, -0.01959228515625, 0.00026679039001464844, 0.01355743408203125, -0.032806396484375, 0.05389404296875, -0.0037364959716796875, 0.004489898681640625, 0.031768798828125, 0.0027027130126953125, -0.0088348388671875, -0.01611328125, -0.0667724609375, -0.03167724609375, 0.0133514404296875, -0.00824737548828125, 0.04522705078125, -0.010894775390625, -0.016815185546875, 0.0037288665771484375, 0.07159423828125, -0.033843994140625, 0.00978851318359375, 0.053253173828125, 0.0008268356323242188, -0.01397705078125, -0.015045166015625, -0.111572265625, -0.0269775390625, -0.03472900390625, 0.0121002197265625, -0.007160186767578125, -0.01190185546875, -0.00628662109375, 0.00742340087890625, 0.002605438232421875, -0.0256500244140625, 0.01354217529296875, 0.0024242401123046875, 0.006809234619140625, -0.010040283203125, -0.0014162063598632812, -0.021820068359375, 0.00711822509765625, -0.027923583984375, -0.0278778076171875, 0.0004417896270751953, -0.0263519287109375, 0.01593017578125, 0.041534423828125, -0.02288818359375, 0.005084991455078125, 0.029205322265625, 0.0090179443359375, 0.03204345703125, 0.03765869140625, -0.0004754066467285156, 0.037017822265625, -0.02911376953125, 0.033111572265625, -0.043426513671875, 0.01495361328125, -0.01995849609375, -0.029327392578125, 0.0028209686279296875, -0.02880859375, -0.00450897216796875, -0.01267242431640625, -0.0143890380859375, -0.0325927734375, -0.0394287109375, -0.028106689453125, -0.001697540283203125, 0.01410675048828125, -0.030609130859375, -0.0188140869140625, -0.0122833251953125, 0.054901123046875, 0.0185089111328125, 0.00757598876953125, -0.0173492431640625, 0.059417724609375, 0.01222991943359375, -0.038360595703125, 0.0313720703125, -0.005855560302734375, 0.0297088623046875, 0.005645751953125, 0.05694580078125, 0.0056915283203125, -0.02008056640625, 0.07940673828125, -0.01219940185546875, 0.00914764404296875, 0.00942230224609375, 0.025390625, 0.004329681396484375, -0.0160369873046875, 0.01451873779296875, 0.0295867919921875, -0.0301361083984375, 0.063720703125, 0.0247955322265625, -0.01267242431640625, 0.004390716552734375, 0.0107574462890625, -0.01526641845703125, -0.0287322998046875, -0.0196990966796875, -0.0164794921875, -0.0020847320556640625, 0.00018262863159179688, 0.05413818359375, 0.05157470703125, -0.0006823539733886719, 0.046234130859375, 0.053985595703125, -0.0038127899169921875, 0.037811279296875, 0.02490234375, 0.007518768310546875, -0.0004756450653076172, 0.05938720703125, -0.016571044921875, 0.004238128662109375, -0.00240325927734375, 0.01291656494140625, 0.006317138671875, -0.0478515625, -0.01386260986328125, 0.0102996826171875, -0.01506805419921875, 0.0086517333984375, -0.009979248046875, 0.0287933349609375, 0.019378662109375, 0.00009340047836303711, -0.002246856689453125, -0.023040771484375, 0.0061492919921875, -0.037200927734375, -0.0103302001953125, 0.010467529296875, -0.017669677734375, 0.00774383544921875, 0.032073974609375, 0.01532745361328125, 0.004093170166015625, -0.0167083740234375, 0.04437255859375, 0.018280029296875, 0.0523681640625, -0.02044677734375, 0.01385498046875, 0.006664276123046875, 0.0175323486328125, -0.0017080307006835938, -0.0093231201171875, 0.001148223876953125, -0.01302337646484375, 0.0628662109375, -0.04327392578125, -0.0274200439453125, 0.01873779296875, -0.06719970703125, 0.001361846923828125, 0.039093017578125, -0.034942626953125, -0.03814697265625, -0.04522705078125, -0.0252685546875, 0.04608154296875, -0.0043792724609375, -0.0157318115234375, 0.0256500244140625, 0.0006136894226074219, 0.048828125, 0.0024623870849609375, -0.0008234977722167969, 0.0084381103515625, 0.005462646484375, 0.033294677734375, 0.0024852752685546875, -0.002468109130859375, -0.04730224609375, 0.00223541259765625, -0.04052734375, -0.0154266357421875, 0.053619384765625, -0.0013246536254882812, 0.029052734375, -0.0283355712890625, -0.0205230712890625, -0.015533447265625, 0.0247344970703125, -0.0021839141845703125, -0.005962371826171875, -0.07977294921875, 0.002346038818359375, -0.05303955078125, -0.01293182373046875, -0.0264892578125, -0.026092529296875, -0.0736083984375, 0.006847381591796875, 0.029205322265625, 0.01114654541015625, -0.007419586181640625, -0.0626220703125, -0.05572509765625, -0.002105712890625, 0.0540771484375, 0.00881195068359375, -0.03814697265625, 0.030731201171875, -0.006267547607421875, 0.012786865234375, -0.0231781005859375, 0.01291656494140625, 0.05706787109375, -0.0205078125, 0.034759521484375, -0.033233642578125, -0.056793212890625, -0.015899658203125, -0.06622314453125, 0.03289794921875, 0.054046630859375, -0.008514404296875, 0.0131683349609375, -0.016510009765625, -0.005306243896484375, -0.025146484375, 0.0168914794921875, -0.0242462158203125, 0.01415252685546875, -0.0265655517578125, 0.006870269775390625, -0.0008292198181152344, 0.0118255615234375, -0.023712158203125, 0.013092041015625, 0.0155181884765625, 0.002719879150390625, -0.029937744140625, -0.05242919921875, 0.0582275390625, 0.08941650390625, 0.02728271484375, 0.0721435546875, -0.0020427703857421875, 0.0323486328125, 0.053314208984375, 0.04534912109375, -0.004421234130859375, -0.035858154296875, 0.065673828125, 0.01108551025390625, -0.04937744140625, 0.029815673828125, -0.032958984375, -0.0190887451171875, 0.07073974609375, 0.034393310546875, -0.07562255859375, -0.019805908203125, -0.0207977294921875, -0.0168304443359375, 0.0084381103515625, -0.0024623870849609375, -0.011016845703125, -0.0288543701171875, 0.0291290283203125, 0.027130126953125, -0.00711822509765625, 0.00397491455078125, 0.0262603759765625, 0.000007987022399902344, 0.005290985107421875, 0.060577392578125, 0.00395965576171875, -0.038330078125, -0.035125732421875, 0.0309295654296875, -0.015472412109375, -0.01239013671875, 0.025543212890625, 0.003177642822265625, -0.0020694732666015625, -0.043365478515625, 0.01342010498046875, -0.005279541015625, -0.0301361083984375, 0.026153564453125, 0.01375579833984375, 0.016204833984375, 0.025726318359375, -0.0050506591796875, 0.00806427001953125, -0.0066680908203125, 0.01346588134765625, 0.00836181640625, 0.005832672119140625, 0.01377105712890625, -0.01047515869140625, -0.0166168212890625, 0.003986358642578125, -0.0306854248046875, -0.0150604248046875, -0.006374359130859375, -0.0256805419921875, 0.030364990234375, -0.01053619384765625, -0.0174407958984375, 0.0031414031982421875, 0.01430511474609375, 0.0003070831298828125, -0.03607177734375, 0.00243377685546875, -0.0305328369140625, 0.023651123046875, -0.01528167724609375, -0.01142120361328125, -0.03363037109375, -0.056365966796875, -0.05255126953125, 0.1087646484375, -0.04180908203125, 0.056060791015625, 0.026763916015625, 0.043243408203125, -0.0014562606811523438, 0.043792724609375, -0.00960540771484375, 0.0233154296875, -0.0221710205078125, 0.024871826171875, -0.034210205078125, -0.01187896728515625, 0.0115814208984375, 0.031829833984375, -0.02984619140625, 0.01016998291015625, -0.048797607421875, -0.0218963623046875, -0.0087890625, 0.0238037109375, 0.0179290771484375, 0.03662109375, -0.05059814453125, 0.0328369140625, -0.00533294677734375, -0.06829833984375, -0.0060882568359375, 0.02191162109375, -0.076171875, -0.0105438232421875, 0.0126800537109375, -0.0128326416015625, 0.01641845703125, -0.0193939208984375, -0.08770751953125, 0.037109375, 0.044464111328125, 0.0557861328125, -0.003082275390625, 0.031951904296875, 0.038116455078125, -0.042877197265625, -0.047271728515625, -0.0223388671875, 0.0406494140625, 0.00588226318359375, -0.01308441162109375, -0.0154876708984375, 0.004421234130859375, -0.00844573974609375, -0.01207733154296875, -0.0232696533203125, 0.035491943359375, -0.00931549072265625, 0.0231170654296875, 0.0002589225769042969, 0.0276336669921875, -0.035614013671875, -0.0282440185546875, 0.01222991943359375, 0.0472412109375, -0.020172119140625, -0.02020263671875, -0.0016107559204101562, -0.0150299072265625, 0.02197265625, -0.027099609375, 0.0222015380859375, -0.01776123046875, -0.0252227783203125, 0.0284881591796875, -0.01172637939453125, 0.0017604827880859375, -0.029022216796875, 0.0128021240234375, 0.05010986328125, 0.0199432373046875, 0.0193634033203125, 0.0036907196044921875, -0.0099029541015625, -0.0110321044921875, 0.00020134449005126953, 0.0193328857421875, -0.000438690185546875, 0.00951385498046875, 0.0046844482421875, -0.0222320556640625, 0.0535888671875, -0.0115966796875, 0.033416748046875, -0.07012939453125, -0.06072998046875, 0.0283660888671875, 0.051422119140625, 0.02581787109375, 0.0287017822265625, 0.056671142578125, 0.05242919921875, -0.0018186569213867188, -0.007720947265625, 0.048614501953125, 0.00040984153747558594, 0.03094482421875, -0.00726318359375, 0.00995635986328125, -0.0079803466796875, -0.023193359375, -0.0153045654296875, 0.007476806640625, 0.03076171875, -0.015838623046875, 0.0279541015625, -0.0038509368896484375, -0.0234832763671875, 0.043212890625, -0.01398468017578125, 0.059814453125, 0.01178741455078125, 0.011932373046875, -0.0196533203125, 0.015625, 0.0009198188781738281, -0.0008120536804199219, 0.035369873046875, 0.011810302734375, 0.0207366943359375, 0.043548583984375, -0.01052093505859375, -0.00476837158203125, -0.01495361328125, 0.0374755859375, 0.0097503662109375, 0.011077880859375, 0.031890869140625, -0.041015625, -0.016937255859375, -0.0082855224609375, 0.0177001953125, 0.006351470947265625, 0.10052490234375, -0.0316162109375, 0.01491546630859375, 0.0126800537109375, -0.006488800048828125, 0.008697509765625, 0.0164031982421875, -0.0113372802734375, -0.0038242340087890625, 0.01837158203125, -0.02288818359375, -0.05645751953125, 0.024200439453125, 0.018218994140625, -0.0297393798828125, 0.02935791015625, -0.01290130615234375, 0.0092926025390625, -0.026458740234375, -0.0112457275390625, -0.035675048828125, -0.053497314453125, -0.042388916015625, 0.0108642578125, -0.0015192031860351562, -0.0186920166015625, -0.029541015625, 0.054840087890625, 0.00875091552734375, -0.0082244873046875, 0.034454345703125, -0.0654296875, 0.05621337890625, 0.0355224609375, 0.00189971923828125, -0.050567626953125, 0.04229736328125, -0.008026123046875, 0.0247650146484375, -0.004222869873046875, 0.0673828125, 0.0433349609375, -0.068603515625, -0.004459381103515625, 0.01666259765625, 0.038177490234375, 0.0024814605712890625, 0.0305023193359375, -0.00946807861328125, -0.008758544921875, 0.02899169921875, -0.00634765625, -0.0190887451171875, -0.02203369140625, 0.00015914440155029297, 0.030120849609375, -0.034942626953125, -0.0205841064453125, -0.07879638671875, -0.0170440673828125, 0.0213775634765625, 0.00830841064453125, -0.058685302734375, 0.0281982421875, -0.02752685546875, 0.028533935546875, -0.02197265625, 0.010498046875, -0.02423095703125, 0.00659942626953125, -0.00746917724609375, -0.0305328369140625, -0.0391845703125, 0.049530029296875, -0.01349639892578125, 0.0264892578125, 0.066650390625, 0.00205230712890625, -0.004302978515625, -0.01485443115234375, -0.031097412109375, 0.053436279296875, -0.09893798828125, 0.01506805419921875, 0.02520751953125, 0.003429412841796875, -0.0546875, -0.06402587890625, 0.0158233642578125, -0.0194091796875, -0.0186767578125, -0.02142333984375, -0.0039043426513671875, -0.008575439453125, -0.0472412109375, -0.078857421875, 0.0190887451171875, -0.0053558349609375, -0.03509521484375, -0.0390625, 0.0190887451171875, -0.01021575927734375, -0.0024051666259765625, -0.01515960693359375, -0.0433349609375, 0.00406646728515625, 0.04217529296875, 0.016571044921875, 0.0465087890625, 0.009552001953125, 0.007717132568359375, -0.050384521484375, 0.0135498046875, -0.0028533935546875, 0.030670166015625, -0.0113525390625, 0.023406982421875, 0.021881103515625, 0.0455322265625, -0.00344085693359375, 0.03155517578125, 0.00876617431640625, -0.046295166015625, -0.005615234375, -0.04217529296875, 0.0006022453308105469, -0.0021514892578125, 0.0212249755859375, 0.021453857421875, 0.0014667510986328125, -0.029998779296875, -0.01389312744140625, -0.0443115234375, -0.0208282470703125, -0.027191162109375, 0.0188140869140625, -0.09033203125, -0.003757476806640625, 0.033905029296875, -0.0221405029296875, 0.01123046875, 0.003948211669921875, -0.051239013671875, 0.012451171875, 0.003025054931640625, -0.0059661865234375, -0.04742431640625, 0.016693115234375, 0.087646484375, -0.037689208984375, 0.0328369140625, -0.0006432533264160156, 0.01125335693359375, 0.07220458984375, -0.0010290145874023438, 0.0170135498046875, 0.033721923828125, -0.0242462158203125, -0.00298309326171875, 0.020538330078125, 0.01294708251953125, -0.01305389404296875, -0.019561767578125, 0.006011962890625, 0.01453399658203125, -0.0032253265380859375, 0.01483154296875, -0.01447296142578125, 0.0279083251953125, -0.017242431640625, 0.05914306640625, -0.009185791015625, -0.018096923828125, -0.0153045654296875, 0.02337646484375, -0.01328277587890625, -0.01418304443359375, 0.014312744140625, -0.03240966796875, 0.0059814453125, -0.039794921875, -0.007083892822265625, -0.0088043212890625, -0.02203369140625, -0.0732421875, -0.0269012451171875, -0.005519866943359375 ]
c80ba778c9ccac0dab8567859f8e93fddd496307
Wordpress Stackexchange Q: How to hide a specific user role option in a user role list? I have to hide Administrator user role in the "User roles" area for these pages: * */wp-admin/users.php */wp-admin/user-new.php */wp-admin/user-edit.php I would like to hide this role option for other users that have an ability to select the Administrator role in order to prevent anyone other to give admin rights. A: SOLUTION: // Remove Administrator role from roles list add_action( 'editable_roles' , 'hide_adminstrator_editable_roles' ); function hide_adminstrator_editable_roles( $roles ){ if ( isset( $roles['administrator'] ) && !current_user_can('level_10') ){ unset( $roles['administrator'] ); } return $roles; }
Q: How to hide a specific user role option in a user role list? I have to hide Administrator user role in the "User roles" area for these pages: * */wp-admin/users.php */wp-admin/user-new.php */wp-admin/user-edit.php I would like to hide this role option for other users that have an ability to select the Administrator role in order to prevent anyone other to give admin rights. A: SOLUTION: // Remove Administrator role from roles list add_action( 'editable_roles' , 'hide_adminstrator_editable_roles' ); function hide_adminstrator_editable_roles( $roles ){ if ( isset( $roles['administrator'] ) && !current_user_can('level_10') ){ unset( $roles['administrator'] ); } return $roles; }
wordpress
{ "language": "en", "length": 96, "provenance": "stackexchange_00019.jsonl.gz:484604", "question_score": "6", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/296681" }
[ 0.07476806640625, -0.0021209716796875, 0.0345458984375, 0.004634857177734375, 0.0117034912109375, -0.04388427734375, 0.082275390625, -0.05767822265625, -0.002719879150390625, 0.019317626953125, 0.03076171875, -0.033599853515625, -0.01137542724609375, -0.043121337890625, -0.0216827392578125, -0.02960205078125, -0.01079559326171875, 0.02703857421875, 0.022308349609375, -0.019805908203125, 0.01202392578125, -0.0288543701171875, 0.0015935897827148438, 0.01490020751953125, -0.00020074844360351562, -0.010711669921875, 0.050079345703125, -0.024749755859375, 0.00666046142578125, -0.006465911865234375, 0.016357421875, -0.022796630859375, -0.03070068359375, 0.01812744140625, 0.04248046875, 0.004459381103515625, -0.0174560546875, 0.028961181640625, 0.053070068359375, -0.0272979736328125, -0.0003094673156738281, -0.0020999908447265625, -0.017181396484375, -0.020904541015625, -0.020263671875, -0.04425048828125, 0.02142333984375, -0.003833770751953125, 0.000858306884765625, -0.0106048583984375, 0.04559326171875, 0.00830078125, 0.0574951171875, -0.0287017822265625, -0.0112762451171875, 0.01436614990234375, 0.0062408447265625, 0.0369873046875, 0.03076171875, -0.004367828369140625, -0.043182373046875, -0.0013532638549804688, 0.0110015869140625, -0.0396728515625, -0.00995635986328125, 0.0124053955078125, 0.0214996337890625, 0.0198516845703125, -0.0350341796875, -0.019805908203125, 0.00879669189453125, -0.03240966796875, 0.015838623046875, -0.0218505859375, -0.039031982421875, 0.02447509765625, -0.01158905029296875, 0.009307861328125, 0.04852294921875, -0.040618896484375, 0.0180511474609375, -0.007625579833984375, -0.01001739501953125, -0.011016845703125, 0.023681640625, 0.01535797119140625, 0.0008492469787597656, -0.0172882080078125, 0.0037078857421875, 0.034820556640625, -0.01131439208984375, 0.005168914794921875, 0.0115509033203125, 0.032501220703125, 0.0018949508666992188, -0.0130767822265625, 0.03564453125, 0.04888916015625, 0.00870513916015625, -0.039093017578125, 0.00714111328125, -0.03375244140625, -0.054962158203125, -0.0022106170654296875, -0.01004791259765625, 0.050872802734375, 0.0189056396484375, 0.00720977783203125, -0.0160675048828125, 0.00785064697265625, 0.003986358642578125, -0.038238525390625, -0.0161590576171875, 0.005023956298828125, -0.0163421630859375, -0.0186614990234375, -0.048980712890625, 0.0239715576171875, -0.0088043212890625, 0.0144195556640625, -0.0244598388671875, -0.0016260147094726562, 0.0374755859375, -0.044158935546875, 0.00507354736328125, -0.0165863037109375, -0.047821044921875, -0.01180267333984375, 0.019805908203125, 0.0218048095703125, -0.042633056640625, 0.0005540847778320312, 0.06781005859375, 0.0321044921875, 0.029632568359375, -0.0265350341796875, -0.004085540771484375, -0.001613616943359375, -0.00830841064453125, 0.01318359375, 0.01531219482421875, -0.035491943359375, -0.004985809326171875, 0.0129852294921875, -0.0088043212890625, 0.01800537109375, 0.003971099853515625, 0.0067596435546875, 0.03375244140625, -0.01062774658203125, -0.050140380859375, -0.0032253265380859375, -0.005970001220703125, 0.025146484375, 0.030853271484375, 0.047332763671875, 0.0142822265625, 0.01395416259765625, -0.0170440673828125, 0.01953125, 0.0194244384765625, 0.001346588134765625, 0.020538330078125, -0.006786346435546875, -0.0435791015625, -0.0000355839729309082, -0.0228424072265625, -0.01187896728515625, 0.0197906494140625, -0.05633544921875, 0.0372314453125, -0.0474853515625, -0.0005550384521484375, -0.00418853759765625, 0.01004791259765625, 0.056396484375, 0.0030574798583984375, 0.005023956298828125, 0.00954437255859375, 0.014068603515625, -0.00701904296875, -0.040740966796875, 0.00551605224609375, 0.01332855224609375, -0.03570556640625, 0.006198883056640625, -0.0008707046508789062, -0.00501251220703125, 0.01507568359375, 0.00724029541015625, 0.03173828125, 0.05804443359375, 0.0143280029296875, -0.03759765625, -0.0072784423828125, -0.015899658203125, 0.0118865966796875, -0.0028629302978515625, -0.01180267333984375, 0.017578125, 0.04095458984375, 0.0019483566284179688, -0.020843505859375, -0.01132965087890625, -0.056549072265625, -0.03369140625, -0.01122283935546875, 0.015350341796875, -0.007740020751953125, 0.01114654541015625, 0.00433349609375, 0.0022125244140625, -0.01070404052734375, -0.05914306640625, -0.0146484375, 0.034332275390625, 0.000949859619140625, 0.05255126953125, 0.01053619384765625, 0.014556884765625, 0.038909912109375, -0.02362060546875, 0.0394287109375, 0.016387939453125, 0.0256805419921875, -0.0028400421142578125, -0.0013513565063476562, 0.0009284019470214844, 0.061767578125, 0.006320953369140625, 0.058135986328125, -0.01499176025390625, 0.06610107421875, 0.034423828125, -0.0252838134765625, -0.0032520294189453125, 0.0019502639770507812, -0.05975341796875, -0.0169677734375, 0.05999755859375, 0.039794921875, 0.0262603759765625, 0.0005960464477539062, 0.0030002593994140625, 0.04498291015625, -0.0919189453125, -0.014892578125, 0.01009368896484375, -0.02899169921875, 0.00920867919921875, 0.031768798828125, 0.0149688720703125, 0.0250396728515625, 0.0022125244140625, -0.018798828125, 0.0443115234375, -0.0304718017578125, 0.0159454345703125, -0.0007991790771484375, -0.0269317626953125, -0.005970001220703125, -0.0634765625, 0.003864288330078125, -0.0303802490234375, -0.0204315185546875, -0.00597381591796875, -0.007183074951171875, -0.005580902099609375, -0.0321044921875, -0.0162353515625, 0.03277587890625, 0.0291595458984375, 0.01471710205078125, -0.00614166259765625, -0.01433563232421875, -0.0318603515625, -0.028900146484375, -0.00091552734375, 0.0205078125, -0.019500732421875, 0.00238037109375, 0.01428985595703125, 0.0003483295440673828, -0.006603240966796875, 0.005859375, -0.0087738037109375, 0.02197265625, 0.0277557373046875, -0.0000775456428527832, -0.0153350830078125, 0.00255584716796875, 0.0104827880859375, -0.01824951171875, 0.056549072265625, -0.01396942138671875, -0.01526641845703125, -0.0389404296875, -0.062744140625, 0.042633056640625, -0.04168701171875, 0.0149078369140625, 0.07177734375, 0.02178955078125, -0.0162353515625, 0.026885986328125, -0.059906005859375, 0.0119781494140625, 0.0357666015625, 0.0279541015625, -0.00594329833984375, -0.0181732177734375, 0.058563232421875, 0.0032672882080078125, -0.03167724609375, 0.01398468017578125, -0.0234375, -0.0139923095703125, 0.0015850067138671875, -0.017486572265625, 0.03118896484375, -0.0002338886260986328, -0.053009033203125, 0.0005278587341308594, 0.01548004150390625, -0.0294189453125, -0.0177001953125, 0.060272216796875, 0.0084228515625, -0.016754150390625, 0.002567291259765625, -0.0173492431640625, 0.007198333740234375, -0.00962066650390625, 0.035888671875, -0.01479339599609375, 0.00411224365234375, -0.011383056640625, 0.0966796875, -0.01192474365234375, -0.0831298828125, -0.0273590087890625, -0.0226898193359375, -0.00835418701171875, 0.030914306640625, 0.00307464599609375, -0.01548004150390625, -0.017852783203125, 0.003963470458984375, 0.030853271484375, -0.027313232421875, 0.0140380859375, -0.0217132568359375, 0.008026123046875, -0.020751953125, 0.04473876953125, -0.007053375244140625, -0.032562255859375, 0.0255584716796875, 0.03839111328125, -0.02386474609375, -0.001903533935546875, -0.01282501220703125, -0.033538818359375, 0.03668212890625, -0.005863189697265625, 0.0010423660278320312, 0.0137176513671875, 0.006031036376953125, 0.029998779296875, 0.032806396484375, -0.037322998046875, 0.0058746337890625, 0.015045166015625, 0.0279388427734375, 0.040557861328125, 0.02032470703125, 0.026214599609375, -0.01800537109375, 0.01090240478515625, 0.008514404296875, -0.0149078369140625, -0.00582122802734375, 0.0272369384765625, 0.0150146484375, -0.08941650390625, 0.0606689453125, -0.025146484375, -0.038848876953125, -0.03668212890625, -0.023651123046875, 0.012481689453125, 0.09674072265625, -0.0225982666015625, -0.003292083740234375, -0.0108184814453125, -0.003833770751953125, -0.0175933837890625, -0.019439697265625, -0.05499267578125, -0.004779815673828125, -0.10009765625, 0.0201263427734375, -0.005649566650390625, -0.00717926025390625, -0.044921875, 0.01995849609375, -0.0814208984375, -0.032562255859375, 0.050140380859375, -0.0789794921875, 0.0032634735107421875, 0.019805908203125, -0.002285003662109375, -0.039459228515625, -0.031646728515625, -0.03192138671875, -0.09625244140625, -0.0124359130859375, -0.022613525390625, 0.06219482421875, 0.0025615692138671875, 0.0012521743774414062, -0.032257080078125, 0.034912109375, 0.01525115966796875, 0.02093505859375, -0.0210723876953125, -0.0191497802734375, 0.005352020263671875, 0.0008168220520019531, -0.0117034912109375, 0.006923675537109375, -0.0261383056640625, -0.0224761962890625, -0.00168609619140625, -0.0191192626953125, -0.046844482421875, -0.0421142578125, -0.00705718994140625, -0.00685882568359375, -0.046478271484375, -0.025238037109375, -0.045440673828125, 0.0017099380493164062, -0.0172119140625, 0.006195068359375, -0.03460693359375, -0.082763671875, 0.0255584716796875, -0.01788330078125, -0.00635528564453125, 0.0257568359375, 0.05194091796875, 0.01364898681640625, -0.0137176513671875, -0.036834716796875, 0.025482177734375, 0.0345458984375, 0.0254974365234375, 0.06494140625, 0.05706787109375, -0.006908416748046875, 0.00521087646484375, 0.03216552734375, 0.003162384033203125, -0.01268768310546875, 0.045928955078125, 0.00817108154296875, -0.0281219482421875, 0.02630615234375, 0.0086669921875, -0.02264404296875, 0.0034275054931640625, 0.01397705078125, -0.015838623046875, 0.0289306640625, 0.0325927734375, -0.0010128021240234375, -0.0274658203125, -0.018951416015625, -0.056732177734375, 0.005950927734375, -0.033782958984375, 0.00714874267578125, 0.0146484375, 0.002777099609375, 0.029388427734375, 0.0184478759765625, 0.00997161865234375, -0.02349853515625, 0.004238128662109375, -0.054351806640625, 0.058868408203125, -0.0521240234375, -0.0037212371826171875, -0.006145477294921875, -0.0063323974609375, 0.06109619140625, -0.01192474365234375, -0.05810546875, 0.00849151611328125, -0.0292816162109375, 0.052764892578125, 0.047149658203125, -0.004726409912109375, 0.0164947509765625, 0.0308990478515625, 0.01239776611328125, 0.0013875961303710938, 0.00762176513671875, 0.0211029052734375, -0.0212554931640625, 0.01221466064453125, 0.01898193359375, -0.0118865966796875, 0.033843994140625, 0.057220458984375, 0.0181121826171875, 0.0357666015625, -0.0264739990234375, 0.043060302734375, 0.0537109375, -0.01235198974609375, -0.00711822509765625, 0.038909912109375, -0.00803375244140625, -0.031280517578125, 0.026275634765625, -0.02569580078125, -0.01418304443359375, 0.03155517578125, 0.02337646484375, 0.00177001953125, -0.011077880859375, -0.01445770263671875, -0.0012140274047851562, -0.0168609619140625, 0.06622314453125, -0.0233917236328125, -0.075439453125, -0.0401611328125, 0.0240478515625, 0.059356689453125, -0.0419921875, -0.00714874267578125, -0.018951416015625, -0.0142822265625, -0.0301361083984375, 0.05621337890625, -0.0963134765625, 0.00473785400390625, 0.033905029296875, -0.051483154296875, 0.004138946533203125, -0.0167388916015625, -0.0082550048828125, -0.048980712890625, 0.021942138671875, -0.01233673095703125, -0.004421234130859375, -0.0182952880859375, 0.004764556884765625, -0.0230255126953125, 0.0037441253662109375, -0.033599853515625, 0.00901031494140625, 0.047698974609375, 0.0312347412109375, -0.047576904296875, 0.0094451904296875, -0.06854248046875, -0.0085296630859375, -0.053497314453125, -0.059600830078125, -0.032623291015625, -0.003917694091796875, 0.004657745361328125, 0.0165252685546875, -0.00710296630859375, -0.00208282470703125, -0.017425537109375, 0.0298309326171875, 0.0224761962890625, 0.049468994140625, -0.0025310516357421875, 0.053192138671875, -0.01377105712890625, 0.0209197998046875, 0.013702392578125, 0.021575927734375, -0.020172119140625, -0.0092010498046875, -0.0001577138900756836, -0.015411376953125, -0.0087127685546875, -0.00571441650390625, 0.01371002197265625, -0.01000213623046875, 0.03680419921875, -0.006557464599609375, 0.0150604248046875, -0.01425933837890625, 0.01081085205078125, -0.0257110595703125, -0.008209228515625, -0.023040771484375, 0.01678466796875, -0.031097412109375, -0.006916046142578125, 0.026123046875, -0.0063629150390625, -0.0261993408203125, 0.01183319091796875, -0.00513458251953125, 0.0289459228515625, 0.0022792816162109375, -0.01035308837890625, 0.041656494140625, 0.0948486328125, -0.005859375, 0.0562744140625, 0.041412353515625, 0.0210723876953125, 0.038330078125, -0.0163421630859375, -0.00931549072265625, 0.004116058349609375, 0.032318115234375, 0.00888824462890625, 0.01104736328125, 0.0294342041015625, -0.01122283935546875, 0.032806396484375, 0.07354736328125, 0.06396484375, -0.1170654296875, 0.0166778564453125, -0.0125732421875, 0.006931304931640625, 0.0703125, -0.002056121826171875, -0.025970458984375, -0.07342529296875, 0.0504150390625, -0.056640625, -0.0159912109375, 0.004596710205078125, -0.036773681640625, -0.027557373046875, -0.00841522216796875, -0.0088043212890625, 0.0310821533203125, 0.0467529296875, 0.0240936279296875, -0.034637451171875, 0.0411376953125, -0.012359619140625, 0.014984130859375, 0.01385498046875, -0.040618896484375, -0.107421875, -0.03753662109375, 0.007114410400390625, -0.0548095703125, 0.0017766952514648438, 0.00536346435546875, 0.01221466064453125, 0.049713134765625, -0.0223236083984375, -0.0009307861328125, 0.038543701171875, -0.043487548828125, -0.0162353515625, -0.064208984375, 0.00583648681640625, -0.017578125, -0.040252685546875, 0.019744873046875, -0.0032520294189453125, -0.0555419921875, -0.0203399658203125, -0.023101806640625, 0.069580078125, -0.00982666015625, -0.0150604248046875, 0.0244598388671875, 0.047149658203125, -0.01480865478515625, -0.0015611648559570312, 0.004184722900390625, -0.022003173828125, 0.0052490234375, -0.0154571533203125, -0.0195770263671875, 0.019073486328125, -0.00681304931640625, -0.056884765625, 0.03717041015625, -0.0197296142578125, 0.0272979736328125, -0.0037784576416015625, 0.0038547515869140625, 0.01416015625, 0.0014295578002929688, -0.0131988525390625, 0.05718994140625, 0.005741119384765625, 0.0131988525390625, 0.005786895751953125, 0.017547607421875, 0.01446533203125, 0.00319671630859375, 0.0175018310546875, 0.0222015380859375, -0.044830322265625, -0.0128021240234375, 0.0110931396484375, 0.0279388427734375, 0.0136566162109375, 0.05255126953125, -0.000957489013671875, 0.026885986328125, 0.007518768310546875, -0.026519775390625, 0.04095458984375, -0.0477294921875, -0.03912353515625, 0.0261688232421875, 0.01544952392578125, 0.02423095703125, 0.019683837890625, 0.052398681640625, -0.02532958984375, 0.0011310577392578125, 0.036895751953125, -0.045135498046875, 0.00637054443359375, -0.0077972412109375, 0.022216796875, -0.0186614990234375, 0.0162200927734375, -0.017852783203125, 0.038787841796875, 0.0279083251953125, 0.013397216796875, 0.00351715087890625, 0.0233154296875, -0.0166778564453125, 0.004207611083984375, 0.01154327392578125, 0.051361083984375, -0.042755126953125, -0.007343292236328125, 0.026519775390625, 0.01123046875, -0.0044708251953125, 0.0654296875, 0.0228271484375, -0.004383087158203125, -0.0289154052734375, -0.0260009765625, 0.0172271728515625, 0.0108184814453125, -0.005321502685546875, -0.006565093994140625, -0.01171112060546875, -0.02008056640625, 0.046630859375, -0.05322265625, -0.0016012191772460938, 0.028106689453125, 0.0020732879638671875, -0.022186279296875, -0.01092529296875, 0.016082763671875, 0.007801055908203125, 0.0016727447509765625, -0.05926513671875, 0.00928497314453125, -0.0037841796875, 0.05853271484375, -0.034454345703125, 0.056488037109375, 0.007076263427734375, 0.002201080322265625, 0.0372314453125, -0.031494140625, -0.014678955078125, -0.0309600830078125, -0.0789794921875, -0.0160980224609375, 0.0273590087890625, -0.0179290771484375, -0.0106658935546875, 0.0044708251953125, 0.03582763671875, 0.005107879638671875, -0.03173828125, 0.019744873046875, -0.0026721954345703125, 0.01788330078125, -0.0178375244140625, 0.051177978515625, 0.039398193359375, 0.0195770263671875, -0.04644775390625, 0.046630859375, 0.07037353515625, -0.0265045166015625, 0.028961181640625, -0.00920867919921875, -0.004302978515625, -0.02679443359375, -0.03521728515625, -0.0248260498046875, -0.0087890625, -0.04119873046875, 0.01166534423828125, -0.033935546875, -0.0765380859375, 0.019195556640625, 0.035400390625, -0.0330810546875, 0.034820556640625, 0.0169219970703125, 0.006473541259765625, -0.01068878173828125, -0.008544921875, 0.0261077880859375, -0.01035308837890625, 0.0060882568359375, 0.0091552734375, -0.005542755126953125, -0.0046844482421875, -0.0055389404296875, 0.0251007080078125, 0.01192474365234375, 0.06475830078125, -0.0325927734375, 0.013519287109375, -0.047119140625, 0.04443359375, -0.08319091796875, -0.061676025390625, 0.060546875, -0.00850677490234375, -0.00528717041015625, 0.0201416015625, -0.045135498046875, 0.030303955078125, 0.014312744140625, -0.01666259765625, 0.031402587890625, -0.00469207763671875, -0.007720947265625, -0.02789306640625, 0.0338134765625, -0.00962066650390625, -0.023193359375, -0.0460205078125, -0.00821685791015625, 0.025848388671875, 0.0272369384765625, -0.024200439453125, 0.0109100341796875, -0.02978515625, -0.0230560302734375, -0.0167236328125, 0.007049560546875, -0.049072265625, 0.021209716796875, -0.0255889892578125, -0.0060882568359375, 0.023834228515625, -0.006374359130859375, -0.01076507568359375, 0.035797119140625, -0.0191497802734375, 0.0276336669921875, -0.013763427734375, -0.0504150390625, 0.01435089111328125, 0.0265045166015625, -0.005680084228515625, 0.006206512451171875, -0.021026611328125, -0.0276336669921875, -0.01036834716796875, -0.01104736328125, -0.043182373046875, -0.01220703125, -0.0095062255859375, 0.0218505859375, -0.00348663330078125, -0.07110595703125, -0.08502197265625, -0.00009953975677490234, 0.042449951171875, 0.031585693359375, -0.0953369140625, 0.03533935546875, -0.0007104873657226562, 0.07470703125, -0.0005288124084472656, -0.007415771484375, 0.0389404296875, 0.08062744140625, -0.044769287109375, 0.0157012939453125, 0.012451171875, -0.047454833984375, -0.005680084228515625, -0.0016832351684570312, 0.017974853515625, 0.023193359375, -0.0027065277099609375, 0.01398468017578125, -0.04559326171875, 0.061309814453125, -0.09149169921875, -0.0142822265625, -0.041107177734375, 0.031280517578125, -0.02252197265625, -0.03497314453125, 0.037078857421875, -0.02587890625, -0.06085205078125, -0.0191650390625, 0.01380157470703125, 0.0276641845703125, -0.013031005859375, -0.02203369140625, 0.062469482421875, 0.0022125244140625, -0.01079559326171875, 0.01474761962890625, 0.0179595947265625, -0.0146026611328125, -0.0011501312255859375, 0.023529052734375, -0.04730224609375, 0.016693115234375, 0.010162353515625, 0.01349639892578125, -0.003231048583984375, 0.0018682479858398438, 0.01161956787109375, -0.0200347900390625, 0.03973388671875, 0.045928955078125, -0.0146331787109375, -0.003131866455078125, 0.019287109375, 0.0150604248046875, 0.058441162109375, 0.010986328125, -0.010406494140625, -0.002655029296875, -0.0533447265625, 0.01201629638671875, -0.002567291259765625, -0.037078857421875, -0.03143310546875, 0.036468505859375, 0.052154541015625, 0.0173187255859375, -0.006011962890625, -0.03436279296875, -0.02734375, -0.0103302001953125, 0.0017147064208984375, 0.032379150390625, -0.083984375, -0.00916290283203125, 0.04119873046875, -0.01334381103515625, 0.020965576171875, 0.0252227783203125, -0.019317626953125, -0.006664276123046875, 0.01215362548828125, -0.0123291015625, -0.08673095703125, 0.0576171875, 0.0025882720947265625, -0.0394287109375, -0.0369873046875, -0.01313018798828125, -0.0251312255859375, -0.0302581787109375, -0.035003662109375, -0.04443359375, -0.0222625732421875, -0.036773681640625, 0.052337646484375, -0.052825927734375, 0.03759765625, -0.06927490234375, 0.0180816650390625, -0.006824493408203125, 0.0178070068359375, 0.0008807182312011719, 0.013153076171875, 0.0012302398681640625, 0.053466796875, 0.0194244384765625, 0.0171661376953125, -0.021240234375, 0.06866455078125, -0.04364013671875, 0.055145263671875, 0.0200042724609375, -0.01291656494140625, 0.06842041015625, 0.01013946533203125, 0.0110931396484375, 0.0025177001953125, 0.0100555419921875, -0.0115966796875, 0.0011997222900390625, -0.0196380615234375, -0.016204833984375, 0.0035457611083984375 ]
9271b4f78a238159bb33e22a562568a7f98d62a3
Wordpress Stackexchange Q: Stop admin-ajax? Is it possible to simply disable/stop admin-ajax.php from running? Have searched WordPress Doc. Have searched Google. Have searched this forum. Found no answer. Have also tried this, but it doesn't work: function stop_ajax() { define( 'DOING_AJAX', false ); } add_action( 'admin_init', 'stop_ajax' ); A: The first thing admin-ajax.php does is define DOING_AJAX. Then, it loads wp-load.php. It does some other stuff, and the first thing it comes across that you have control over is wp-config.php. So if you want to stop all ajax, you can add to following to your wp-config.php file. if( defined( 'DOING_AJAX' ) && DOING_AJAX ) { wp_die( '0', 400 ); } If you don't have access to the wp-config file, or just want to do it via a plugin, you can do that too. No need to add it to a hook since if it's a request that doing ajax, it's already defined. /** * Plugin Name: Stop Ajax */ if( defined( 'DOING_AJAX' ) && DOING_AJAX ) { wp_die( '0', 400 ); } There will be side effects if you're using plugins or themes that require ajax, so be careful.
Q: Stop admin-ajax? Is it possible to simply disable/stop admin-ajax.php from running? Have searched WordPress Doc. Have searched Google. Have searched this forum. Found no answer. Have also tried this, but it doesn't work: function stop_ajax() { define( 'DOING_AJAX', false ); } add_action( 'admin_init', 'stop_ajax' ); A: The first thing admin-ajax.php does is define DOING_AJAX. Then, it loads wp-load.php. It does some other stuff, and the first thing it comes across that you have control over is wp-config.php. So if you want to stop all ajax, you can add to following to your wp-config.php file. if( defined( 'DOING_AJAX' ) && DOING_AJAX ) { wp_die( '0', 400 ); } If you don't have access to the wp-config file, or just want to do it via a plugin, you can do that too. No need to add it to a hook since if it's a request that doing ajax, it's already defined. /** * Plugin Name: Stop Ajax */ if( defined( 'DOING_AJAX' ) && DOING_AJAX ) { wp_die( '0', 400 ); } There will be side effects if you're using plugins or themes that require ajax, so be careful.
wordpress
{ "language": "en", "length": 187, "provenance": "stackexchange_00019.jsonl.gz:484652", "question_score": "7", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/296836" }
[ 0.099609375, -0.011077880859375, 0.007114410400390625, -0.06787109375, 0.03240966796875, -0.028656005859375, 0.033294677734375, -0.009368896484375, 0.0086517333984375, 0.0250244140625, -0.0015459060668945312, 0.0004668235778808594, -0.007293701171875, -0.0189971923828125, -0.0191802978515625, -0.00852203369140625, 0.0338134765625, -0.0128021240234375, 0.020599365234375, -0.017181396484375, 0.0024394989013671875, 0.0176849365234375, 0.01500701904296875, 0.053070068359375, -0.026611328125, 0.01247406005859375, 0.0699462890625, -0.01364898681640625, -0.0265350341796875, -0.035369873046875, -0.00876617431640625, 0.0212860107421875, -0.01070404052734375, 0.06475830078125, -0.055999755859375, -0.0312347412109375, -0.026123046875, 0.05615234375, 0.0164031982421875, 0.0006952285766601562, 0.041015625, -0.0254669189453125, 0.01316070556640625, 0.0165557861328125, -0.0021381378173828125, 0.00482940673828125, 0.031768798828125, -0.031951904296875, 0.024749755859375, -0.02142333984375, 0.0080718994140625, -0.005523681640625, 0.0299072265625, -0.03179931640625, -0.025665283203125, -0.0112152099609375, -0.0084381103515625, 0.006359100341796875, 0.0419921875, 0.0132598876953125, -0.033599853515625, -0.0302886962890625, 0.011871337890625, -0.053924560546875, 0.01232147216796875, -0.0231781005859375, -0.0263214111328125, 0.0182342529296875, -0.0160064697265625, 0.05157470703125, 0.048431396484375, -0.03375244140625, 0.007114410400390625, 0.0018291473388671875, 0.015869140625, -0.03363037109375, 0.02960205078125, -0.00738525390625, -0.01517486572265625, 0.02398681640625, 0.04876708984375, -0.0016546249389648438, -0.0010919570922851562, 0.029541015625, 0.00457000732421875, 0.0438232421875, 0.0011730194091796875, -0.03753662109375, -0.0416259765625, -0.047515869140625, -0.043609619140625, -0.028411865234375, -0.04083251953125, -0.032745361328125, -0.029205322265625, -0.01447296142578125, 0.032318115234375, 0.003292083740234375, -0.00618743896484375, -0.0288848876953125, -0.00772857666015625, -0.02191162109375, -0.02740478515625, 0.006107330322265625, 0.0069427490234375, 0.0693359375, -0.006076812744140625, 0.00739288330078125, 0.034393310546875, 0.01282501220703125, 0.026336669921875, 0.00946807861328125, -0.00034427642822265625, 0.01544952392578125, -0.00917816162109375, -0.006587982177734375, -0.033050537109375, 0.02288818359375, -0.017181396484375, 0.033294677734375, -0.00783538818359375, -0.0173797607421875, -0.0014066696166992188, 0.031463623046875, 0.0276336669921875, 0.008575439453125, -0.0285491943359375, 0.0124664306640625, 0.0032634735107421875, -0.00463104248046875, -0.04779052734375, 0.01323699951171875, 0.0679931640625, 0.05340576171875, 0.04736328125, -0.0105133056640625, 0.040557861328125, 0.048126220703125, 0.019012451171875, -0.01299285888671875, 0.044769287109375, -0.0282135009765625, -0.0270843505859375, 0.00860595703125, -0.0149688720703125, -0.01302337646484375, 0.005649566650390625, 0.0281524658203125, 0.00516510009765625, -0.005641937255859375, -0.0118255615234375, -0.0176849365234375, 0.044158935546875, 0.0201416015625, 0.00841522216796875, 0.0114898681640625, 0.06378173828125, -0.022918701171875, -0.04632568359375, -0.030853271484375, -0.02032470703125, 0.01068878173828125, 0.029876708984375, -0.0033817291259765625, -0.00916290283203125, -0.00708770751953125, -0.0002448558807373047, 0.006206512451171875, 0.0269775390625, -0.0002942085266113281, 0.044830322265625, -0.011260986328125, 0.00920867919921875, -0.00246429443359375, -0.0026493072509765625, -0.005260467529296875, 0.003932952880859375, 0.0251007080078125, 0.033721923828125, -0.044158935546875, -0.050262451171875, -0.041168212890625, 0.076904296875, -0.0302276611328125, -0.039520263671875, 0.05426025390625, 0.0005221366882324219, 0.0212860107421875, -0.0158233642578125, -0.003719329833984375, 0.025634765625, 0.0638427734375, 0.00878143310546875, 0.032958984375, -0.003582000732421875, -0.0726318359375, -0.035980224609375, -0.01708984375, -0.033203125, 0.0159149169921875, 0.0447998046875, 0.0185546875, -0.011322021484375, -0.037628173828125, -0.11883544921875, 0.021575927734375, -0.03521728515625, 0.049835205078125, 0.0282745361328125, 0.04364013671875, -0.002468109130859375, 0.0283203125, -0.0162353515625, -0.030059814453125, -0.0267333984375, -0.007045745849609375, -0.059295654296875, 0.0687255859375, 0.000652313232421875, 0.06634521484375, -0.019989013671875, -0.0557861328125, 0.00861358642578125, -0.0577392578125, 0.0096588134765625, 0.004291534423828125, -0.0248260498046875, -0.00563812255859375, 0.007183074951171875, -0.0200347900390625, 0.043548583984375, 0.0654296875, 0.04156494140625, 0.0645751953125, -0.005008697509765625, -0.0286407470703125, -0.030914306640625, -0.11785888671875, 0.0127410888671875, 0.06170654296875, 0.037445068359375, 0.0157928466796875, -0.036407470703125, -0.0279388427734375, -0.01309967041015625, -0.099365234375, -0.006649017333984375, -0.005718231201171875, 0.0028533935546875, 0.0089111328125, -0.021087646484375, -0.035888671875, 0.0264739990234375, -0.0209808349609375, -0.01552581787109375, 0.03802490234375, -0.00583648681640625, -0.0228729248046875, 0.010162353515625, -0.0284271240234375, 0.0273895263671875, 0.0021457672119140625, -0.046142578125, 0.01491546630859375, 0.0183258056640625, -0.0367431640625, 0.0291900634765625, 0.03314208984375, 0.01477813720703125, -0.05462646484375, 0.01116943359375, 0.0089263916015625, -0.0189208984375, 0.031646728515625, 0.06695556640625, 0.001628875732421875, -0.07086181640625, 0.0031890869140625, 0.0118255615234375, 0.033416748046875, -0.03277587890625, -0.014617919921875, -0.0088348388671875, -0.0130157470703125, 0.0109710693359375, -0.049041748046875, 0.0213470458984375, -0.01343536376953125, 0.00688934326171875, -0.0022430419921875, 0.012908935546875, 0.01904296875, -0.0252532958984375, 0.0233154296875, 0.0035991668701171875, -0.0184478759765625, -0.003398895263671875, -0.01279449462890625, 0.0094146728515625, -0.01084136962890625, 0.05859375, 0.04534912109375, 0.0246429443359375, -0.0254058837890625, 0.0006270408630371094, -0.017578125, 0.0073394775390625, -0.0175018310546875, -0.028717041015625, 0.0295562744140625, -0.10174560546875, -0.00787353515625, 0.038818359375, 0.050567626953125, 0.01983642578125, -0.04290771484375, 0.0118560791015625, 0.043365478515625, -0.06280517578125, -0.090576171875, -0.027191162109375, -0.020904541015625, 0.011688232421875, 0.004474639892578125, 0.006137847900390625, -0.01537322998046875, 0.0247650146484375, 0.0176239013671875, -0.0279693603515625, -0.016448974609375, -0.029327392578125, -0.0374755859375, -0.0379638671875, 0.01381683349609375, -0.002655029296875, 0.013214111328125, -0.0005779266357421875, 0.058868408203125, -0.000888824462890625, -0.0472412109375, 0.01003265380859375, -0.0054931640625, -0.0157470703125, 0.020904541015625, 0.030059814453125, -0.0489501953125, -0.0391845703125, 0.0023860931396484375, 0.01251220703125, 0.00186920166015625, -0.0005521774291992188, -0.00960540771484375, -0.0157623291015625, -0.029754638671875, 0.0377197265625, 0.035797119140625, -0.0107269287109375, 0.01165771484375, 0.06585693359375, -0.0272064208984375, -0.040008544921875, 0.004276275634765625, -0.04766845703125, 0.015472412109375, 0.0213623046875, -0.0093536376953125, 0.0272979736328125, 0.003238677978515625, 0.0333251953125, 0.018218994140625, -0.037445068359375, 0.004848480224609375, 0.0147552490234375, 0.00849151611328125, 0.049774169921875, 0.0091400146484375, 0.01471710205078125, -0.027374267578125, -0.0102386474609375, -0.00685882568359375, -0.0148468017578125, -0.0003159046173095703, -0.0166473388671875, 0.001987457275390625, -0.0333251953125, 0.0272369384765625, -0.042236328125, -0.032806396484375, -0.0017786026000976562, 0.00038623809814453125, 0.0153961181640625, 0.048370361328125, -0.0007114410400390625, -0.020355224609375, -0.03509521484375, -0.003948211669921875, -0.0207977294921875, -0.0400390625, -0.006214141845703125, 0.00518035888671875, -0.07208251953125, 0.00890350341796875, 0.00531768798828125, -0.036346435546875, -0.007549285888671875, 0.041015625, -0.041168212890625, -0.02191162109375, 0.0113677978515625, -0.060516357421875, 0.00318145751953125, -0.005809783935546875, -0.01556396484375, -0.039794921875, -0.01056671142578125, -0.0362548828125, -0.0843505859375, -0.01465606689453125, -0.046783447265625, 0.082763671875, 0.0303802490234375, -0.004276275634765625, -0.030792236328125, 0.03369140625, 0.001995086669921875, 0.0157928466796875, -0.00958251953125, -0.01253509521484375, -0.004817962646484375, 0.03436279296875, 0.0151824951171875, 0.00878143310546875, -0.005382537841796875, 0.01474761962890625, -0.0054931640625, 0.0280914306640625, -0.016204833984375, -0.03900146484375, 0.01299285888671875, -0.03485107421875, -0.049224853515625, -0.045379638671875, -0.07037353515625, 0.01007080078125, -0.0301361083984375, -0.00759124755859375, -0.053802490234375, -0.0712890625, 0.035400390625, -0.0147705078125, 0.00801849365234375, 0.001781463623046875, 0.05072021484375, 0.01502227783203125, -0.01009368896484375, -0.016021728515625, -0.0002875328063964844, 0.0208892822265625, -0.037811279296875, 0.056304931640625, -0.00473785400390625, -0.016937255859375, 0.10430908203125, -0.032684326171875, 0.01280975341796875, -0.0399169921875, 0.0821533203125, -0.004909515380859375, -0.0033931732177734375, 0.019989013671875, 0.0009455680847167969, -0.0203704833984375, -0.0029735565185546875, -0.0014247894287109375, -0.006305694580078125, 0.03173828125, 0.0173492431640625, -0.03936767578125, 0.04266357421875, 0.0005879402160644531, -0.01476287841796875, 0.01031494140625, -0.0274505615234375, 0.048980712890625, 0.035736083984375, -0.011566162109375, 0.020843505859375, 0.00470733642578125, -0.0014715194702148438, 0.00250244140625, 0.06414794921875, -0.039154052734375, 0.01410675048828125, 0.03570556640625, -0.033111572265625, -0.0285491943359375, 0.0020771026611328125, 0.0277862548828125, -0.005340576171875, -0.0179595947265625, -0.05645751953125, 0.0149383544921875, 0.018157958984375, 0.006683349609375, 0.02105712890625, 0.040924072265625, 0.023284912109375, -0.0028076171875, 0.0011653900146484375, 0.05712890625, -0.035614013671875, -0.021148681640625, 0.07501220703125, 0.042694091796875, -0.0032367706298828125, 0.016693115234375, 0.044952392578125, 0.08050537109375, -0.007511138916015625, -0.032318115234375, 0.056610107421875, 0.01056671142578125, 0.0513916015625, -0.00033164024353027344, -0.0194854736328125, 0.0306396484375, -0.0038928985595703125, 0.00799560546875, -0.044525146484375, -0.00010341405868530273, 0.0291748046875, 0.0279083251953125, 0.02435302734375, -0.01471710205078125, 0.00554656982421875, -0.0020389556884765625, -0.0102081298828125, 0.07470703125, 0.020538330078125, -0.0645751953125, -0.038665771484375, -0.0171356201171875, 0.040069580078125, -0.0251007080078125, -0.007343292236328125, 0.0322265625, -0.0106048583984375, 0.0102691650390625, -0.010711669921875, -0.025299072265625, -0.018280029296875, 0.0084686279296875, -0.0298614501953125, -0.0212554931640625, 0.01248931884765625, -0.04949951171875, -0.0235137939453125, -0.01751708984375, 0.006557464599609375, 0.0278472900390625, -0.020904541015625, 0.0196685791015625, -0.0211029052734375, -0.0006051063537597656, -0.025115966796875, 0.0130767822265625, 0.01371002197265625, 0.0022735595703125, -0.057403564453125, -0.0154876708984375, -0.0595703125, -0.023651123046875, -0.058135986328125, -0.03851318359375, -0.041748046875, 0.018524169921875, 0.0256195068359375, 0.0172119140625, -0.0025577545166015625, -0.01861572265625, 0.0010328292846679688, 0.01024627685546875, 0.01030731201171875, 0.042694091796875, -0.01611328125, 0.046905517578125, 0.014556884765625, 0.014923095703125, 0.0084381103515625, 0.01593017578125, 0.0012731552124023438, -0.01248931884765625, 0.005191802978515625, -0.024749755859375, -0.0267333984375, 0.01873779296875, -0.021087646484375, -0.0184173583984375, 0.01485443115234375, -0.018707275390625, -0.0094451904296875, 0.0107421875, 0.00787353515625, -0.03167724609375, 0.0155487060546875, 0.020050048828125, 0.023223876953125, -0.0394287109375, -0.00858306884765625, 0.01413726806640625, -0.0212554931640625, -0.05889892578125, 0.046875, 0.0053863525390625, 0.0150604248046875, 0.034912109375, 0.0185394287109375, 0.0012493133544921875, 0.0391845703125, 0.027618408203125, 0.061676025390625, 0.0279388427734375, 0.05963134765625, -0.007038116455078125, 0.05352783203125, -0.006011962890625, -0.0994873046875, 0.020416259765625, 0.0259246826171875, 0.01320648193359375, 0.045654296875, -0.007965087890625, 0.0288238525390625, 0.048065185546875, 0.0574951171875, -0.0775146484375, 0.0245819091796875, 0.004932403564453125, -0.015716552734375, 0.030548095703125, -0.050506591796875, 0.0162811279296875, -0.051177978515625, 0.06109619140625, 0.04180908203125, -0.0149688720703125, 0.0017423629760742188, -0.023651123046875, -0.00926971435546875, -0.0225982666015625, 0.01325225830078125, 0.01020050048828125, -0.04010009765625, 0.02667236328125, 0.0185699462890625, 0.009521484375, -0.0172271728515625, 0.007526397705078125, 0.0092315673828125, -0.01934814453125, -0.05938720703125, 0.01488494873046875, 0.00634002685546875, -0.01273345947265625, 0.0261688232421875, 0.0261993408203125, 0.04852294921875, 0.06878662109375, -0.0031223297119140625, 0.0218963623046875, 0.03961181640625, 0.004436492919921875, -0.061431884765625, -0.0123443603515625, 0.01239776611328125, 0.0193634033203125, -0.051300048828125, 0.03265380859375, -0.045379638671875, -0.024627685546875, -0.0008978843688964844, 0.036529541015625, 0.061004638671875, -0.0142974853515625, -0.024688720703125, 0.03729248046875, 0.0222015380859375, -0.0204925537109375, -0.039154052734375, -0.00476837158203125, -0.016693115234375, 0.031402587890625, -0.03155517578125, -0.007274627685546875, 0.0014753341674804688, -0.043792724609375, -0.031280517578125, 0.1011962890625, -0.0032253265380859375, -0.014739990234375, -0.00412750244140625, 0.058990478515625, -0.0180511474609375, 0.042938232421875, -0.01483917236328125, 0.0555419921875, -0.03289794921875, 0.0017681121826171875, -0.0416259765625, 0.0149078369140625, -0.00872802734375, 0.0026073455810546875, -0.001537322998046875, 0.0081634521484375, 0.0257720947265625, -0.0202484130859375, -0.01454925537109375, 0.023834228515625, -0.01247406005859375, -0.0012884140014648438, 0.0030155181884765625, 0.0082244873046875, 0.0187835693359375, -0.0361328125, 0.023223876953125, -0.03857421875, -0.00897979736328125, 0.0278778076171875, 0.02960205078125, 0.03839111328125, -0.014739990234375, -0.00949859619140625, -0.046844482421875, 0.01336669921875, 0.03558349609375, 0.007354736328125, -0.001712799072265625, -0.00623321533203125, -0.0123748779296875, -0.029876708984375, 0.03765869140625, -0.0287933349609375, 0.0276947021484375, 0.0034160614013671875, -0.0128173828125, -0.0242156982421875, -0.0005311965942382812, -0.01427459716796875, -0.026947021484375, -0.0213165283203125, 0.0489501953125, -0.039794921875, 0.0220947265625, 0.030426025390625, 0.04144287109375, -0.03179931640625, -0.07000732421875, 0.029571533203125, 0.050048828125, 0.0023250579833984375, -0.0439453125, 0.013427734375, 0.0207366943359375, 0.015625, 0.027313232421875, 0.051483154296875, -0.01284027099609375, 0.01043701171875, 0.0247344970703125, -0.01105499267578125, -0.0085906982421875, 0.01275634765625, 0.01403045654296875, 0.03778076171875, -0.000682830810546875, -0.00846099853515625, -0.03594970703125, -0.0185394287109375, 0.00726318359375, 0.0285186767578125, 0.035247802734375, 0.0189208984375, -0.0011720657348632812, -0.0294342041015625, -0.0024547576904296875, 0.03106689453125, -0.049346923828125, 0.0209503173828125, -0.0447998046875, -0.0601806640625, -0.034149169921875, 0.053436279296875, 0.02435302734375, 0.0223541259765625, 0.040985107421875, 0.058441162109375, 0.03375244140625, 0.007659912109375, 0.031982421875, -0.0024433135986328125, -0.04296875, -0.040496826171875, 0.018218994140625, 0.01261138916015625, 0.0238189697265625, 0.0254974365234375, 0.038970947265625, -0.004718780517578125, -0.0301666259765625, 0.0345458984375, -0.0167083740234375, -0.043121337890625, 0.01062774658203125, -0.0178680419921875, 0.059967041015625, -0.0136566162109375, -0.0843505859375, -0.04022216796875, 0.01483154296875, 0.0020599365234375, 0.0263214111328125, 0.0267333984375, -0.0357666015625, 0.048828125, -0.0241546630859375, 0.0038909912109375, 0.01067352294921875, -0.00421142578125, -0.03363037109375, -0.031707763671875, 0.04022216796875, -0.027984619140625, 0.0227508544921875, -0.00045871734619140625, 0.02203369140625, 0.04278564453125, -0.0151214599609375, 0.0253753662109375, -0.0301666259765625, -0.00799560546875, 0.004375457763671875, -0.0401611328125, 0.015960693359375, 0.005428314208984375, -0.0212860107421875, -0.0097808837890625, -0.02276611328125, -0.00806427001953125, -0.05426025390625, 0.040863037109375, 0.020965576171875, 0.0117950439453125, 0.041748046875, -0.005260467529296875, 0.00795745849609375, -0.01708984375, 0.0499267578125, -0.01198577880859375, -0.03564453125, -0.07012939453125, -0.0016660690307617188, 0.035064697265625, 0.02056884765625, -0.036651611328125, -0.00952911376953125, -0.006160736083984375, -0.0229644775390625, 0.01081085205078125, 0.006633758544921875, 0.0034427642822265625, 0.026275634765625, -0.0260772705078125, -0.029571533203125, 0.014984130859375, -0.01349639892578125, 0.016998291015625, 0.0159454345703125, 0.03204345703125, 0.0234832763671875, -0.0660400390625, -0.039794921875, -0.011566162109375, 0.0242462158203125, -0.0091552734375, 0.0131072998046875, -0.0309906005859375, 0.00284576416015625, -0.0043182373046875, 0.007602691650390625, -0.0221405029296875, 0.0010976791381835938, -0.0025959014892578125, 0.0038127899169921875, 0.012664794921875, -0.058319091796875, -0.048248291015625, 0.020263671875, 0.05194091796875, -0.0013322830200195312, -0.05487060546875, 0.019561767578125, -0.044219970703125, 0.0712890625, 0.001373291015625, 0.0229034423828125, -0.0286102294921875, 0.0284576416015625, -0.0269012451171875, -0.072509765625, -0.045745849609375, 0.072998046875, -0.05975341796875, -0.01312255859375, 0.01523590087890625, 0.00006514787673950195, 0.0095367431640625, -0.04547119140625, -0.02294921875, -0.0016937255859375, 0.0070037841796875, 0.002925872802734375, 0.005126953125, 0.03314208984375, -0.0271453857421875, -0.0794677734375, -0.006092071533203125, -0.032012939453125, 0.00017321109771728516, 0.0077667236328125, -0.0009660720825195312, 0.019927978515625, -0.0262908935546875, -0.0640869140625, 0.00725555419921875, 0.0118560791015625, -0.040191650390625, 0.003986358642578125, -0.0215301513671875, 0.00994873046875, -0.033538818359375, -0.012603759765625, -0.047698974609375, -0.0312347412109375, 0.0188751220703125, 0.0187835693359375, -0.01238250732421875, 0.0277099609375, 0.006130218505859375, -0.03509521484375, 0.02532958984375, 0.026702880859375, 0.018829345703125, -0.0179901123046875, 0.01041412353515625, 0.049163818359375, 0.0484619140625, 0.005977630615234375, 0.05975341796875, 0.02410888671875, -0.0210113525390625, -0.003963470458984375, -0.0218658447265625, 0.00925445556640625, 0.034271240234375, 0.04339599609375, 0.029754638671875, -0.004680633544921875, -0.050811767578125, -0.030029296875, -0.053558349609375, 0.03924560546875, -0.01071929931640625, -0.0168304443359375, -0.061187744140625, -0.004901885986328125, 0.032684326171875, 0.0011568069458007812, 0.0236968994140625, -0.002040863037109375, -0.01461029052734375, -0.010101318359375, 0.0035915374755859375, -0.0269317626953125, -0.00598907470703125, -0.0219573974609375, 0.0188751220703125, -0.01165008544921875, 0.00455474853515625, 0.0150909423828125, 0.01087188720703125, 0.004184722900390625, 0.0279388427734375, 0.0113677978515625, 0.03717041015625, -0.033172607421875, 0.015655517578125, 0.0142059326171875, 0.0172271728515625, -0.0307464599609375, -0.0014324188232421875, -0.0264892578125, -0.00006556510925292969, 0.005401611328125, -0.00017762184143066406, 0.01319122314453125, -0.023681640625, 0.01091766357421875, -0.033203125, -0.01544952392578125, 0.0264892578125, -0.00423431396484375, 0.02227783203125, 0.0196533203125, -0.004062652587890625, 0.05902099609375, -0.04119873046875, 0.019378662109375, 0.038330078125, 0.042938232421875, 0.01387786865234375, 0.0180206298828125, 0.01546478271484375, 0.02142333984375, 0.004642486572265625 ]
a8be6ef3bc37f7edef546f7ca06e2a7f28642114
Wordpress Stackexchange Q: How do I remove/delete an old super admin user? I have googled this on the web and also searched for the answer on StackExchange but I can't find a clear set of instructions for removing and deleting a super admin user! I'm performing some admin tasks on a multisite with 100+ sites and need to remove/clean up some old developer accounts within the dashboard. I go to network > users and see a list of super admin and cannot remove any of them. I can disable their accounts (which is a logical first step). Do I need to individually remove them from each of the 100+ sites and then I can remove their account from the WPMU? Alternatively, is there a quick/simple way to demote their role to subscriber from super admin? A: Oh I feel fairly stupid now. When looking at the user page again I noticed a checkbox for demoting the users access rights: Super Admin - Grant this user super admin privileges for the Network. Since unchecking that box, it appears that I can now remove/delete the user.
Q: How do I remove/delete an old super admin user? I have googled this on the web and also searched for the answer on StackExchange but I can't find a clear set of instructions for removing and deleting a super admin user! I'm performing some admin tasks on a multisite with 100+ sites and need to remove/clean up some old developer accounts within the dashboard. I go to network > users and see a list of super admin and cannot remove any of them. I can disable their accounts (which is a logical first step). Do I need to individually remove them from each of the 100+ sites and then I can remove their account from the WPMU? Alternatively, is there a quick/simple way to demote their role to subscriber from super admin? A: Oh I feel fairly stupid now. When looking at the user page again I noticed a checkbox for demoting the users access rights: Super Admin - Grant this user super admin privileges for the Network. Since unchecking that box, it appears that I can now remove/delete the user.
wordpress
{ "language": "en", "length": 182, "provenance": "stackexchange_00019.jsonl.gz:484662", "question_score": "13", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/296862" }
[ 0.0645751953125, 0.025604248046875, -0.0121612548828125, 0.00005269050598144531, 0.025360107421875, -0.056182861328125, 0.045166015625, -0.042938232421875, 0.034576416015625, 0.0304718017578125, 0.005153656005859375, -0.041748046875, 0.0204010009765625, -0.02978515625, -0.037811279296875, -0.029266357421875, 0.032318115234375, -0.01461029052734375, 0.020965576171875, -0.005706787109375, -0.01125335693359375, 0.01812744140625, 0.0246124267578125, -0.006618499755859375, 0.00023305416107177734, 0.01200103759765625, 0.007526397705078125, -0.005260467529296875, -0.01131439208984375, -0.02911376953125, -0.0038738250732421875, 0.037567138671875, -0.0440673828125, 0.03375244140625, 0.050872802734375, -0.030181884765625, -0.0131378173828125, 0.016204833984375, 0.055694580078125, -0.0275421142578125, 0.0174560546875, 0.0072479248046875, -0.022613525390625, 0.011077880859375, -0.026641845703125, -0.0816650390625, 0.046661376953125, -0.007381439208984375, 0.006832122802734375, -0.043914794921875, 0.022216796875, -0.052520751953125, 0.052276611328125, -0.054168701171875, -0.03546142578125, -0.005306243896484375, -0.0100555419921875, 0.0134429931640625, 0.0382080078125, -0.01511383056640625, -0.0132598876953125, -0.0029048919677734375, 0.030731201171875, -0.006969451904296875, 0.024658203125, -0.007495880126953125, 0.014068603515625, 0.0212249755859375, -0.041259765625, 0.007190704345703125, 0.0271453857421875, -0.019744873046875, 0.0008440017700195312, 0.016998291015625, -0.000865936279296875, -0.0147857666015625, 0.0224151611328125, 0.050811767578125, 0.020416259765625, 0.0178375244140625, 0.01446533203125, 0.0399169921875, -0.045806884765625, -0.004840850830078125, 0.0090789794921875, 0.0242919921875, -0.0184478759765625, -0.03668212890625, 0.007213592529296875, -0.005519866943359375, -0.008209228515625, -0.03680419921875, 0.0185394287109375, 0.042449951171875, -0.02008056640625, -0.01776123046875, 0.06402587890625, 0.08026123046875, -0.00995635986328125, -0.0572509765625, -0.01360321044921875, -0.023651123046875, -0.086669921875, -0.00024509429931640625, 0.00530242919921875, 0.03985595703125, -0.033966064453125, -0.00504302978515625, 0.029449462890625, 0.031463623046875, 0.0145416259765625, -0.048370361328125, -0.0198822021484375, -0.04058837890625, -0.00757598876953125, 0.042877197265625, -0.0228424072265625, -0.006927490234375, 0.00237274169921875, -0.0167388916015625, -0.0281219482421875, -0.014068603515625, -0.0207977294921875, 0.01195526123046875, 0.0235748291015625, -0.007404327392578125, -0.0296783447265625, 0.038604736328125, 0.003185272216796875, -0.00244140625, -0.050811767578125, 0.0316162109375, 0.074951171875, 0.01230621337890625, 0.0018329620361328125, -0.01116943359375, 0.0211181640625, 0.003963470458984375, 0.027130126953125, 0.017547607421875, 0.02166748046875, -0.053680419921875, -0.040496826171875, 0.022186279296875, 0.02099609375, 0.061279296875, 0.02044677734375, -0.0323486328125, 0.010345458984375, -0.0219268798828125, -0.049530029296875, -0.0263214111328125, 0.0028667449951171875, 0.024749755859375, 0.062286376953125, -0.0018796920776367188, 0.07379150390625, -0.04998779296875, -0.006465911865234375, -0.022705078125, 0.0271453857421875, -0.004085540771484375, 0.0207061767578125, 0.0141448974609375, -0.0136260986328125, -0.0013799667358398438, -0.0311279296875, -0.0174102783203125, 0.0296630859375, -0.0673828125, 0.00980377197265625, -0.04052734375, 0.039581298828125, -0.00165557861328125, 0.006256103515625, 0.05084228515625, 0.02264404296875, -0.007171630859375, 0.009033203125, 0.0207672119140625, -0.0290374755859375, -0.04656982421875, -0.00579071044921875, -0.00948333740234375, -0.033660888671875, -0.058746337890625, 0.00492095947265625, -0.0067138671875, 0.03802490234375, 0.01061248779296875, 0.049713134765625, -0.0167999267578125, 0.0201873779296875, 0.01499176025390625, 0.0219879150390625, -0.023345947265625, -0.031646728515625, 0.006885528564453125, -0.006290435791015625, -0.04205322265625, 0.034027099609375, 0.0190887451171875, 0.0228424072265625, -0.0160675048828125, -0.039215087890625, 0.022552490234375, -0.0171356201171875, 0.034210205078125, -0.012054443359375, 0.01983642578125, 0.0145721435546875, -0.03131103515625, -0.0170135498046875, -0.02423095703125, -0.005054473876953125, -0.019805908203125, -0.00711822509765625, 0.036956787109375, -0.00594329833984375, 0.0290374755859375, -0.00534820556640625, -0.0279693603515625, 0.00511932373046875, 0.01007843017578125, 0.016815185546875, -0.019439697265625, -0.02362060546875, -0.01277923583984375, 0.006343841552734375, 0.00016641616821289062, -0.016448974609375, 0.046722412109375, 0.017669677734375, -0.0006966590881347656, -0.0231781005859375, 0.01467132568359375, -0.0014591217041015625, -0.035369873046875, -0.01340484619140625, 0.0413818359375, 0.0292205810546875, 0.00797271728515625, -0.0218353271484375, 0.0107879638671875, 0.004978179931640625, -0.05120849609375, -0.004756927490234375, 0.0203094482421875, 0.0012407302856445312, 0.02532958984375, -0.00952911376953125, -0.003757476806640625, 0.01169586181640625, 0.01511383056640625, 0.002593994140625, 0.01184844970703125, -0.0191192626953125, -0.005462646484375, -0.0077362060546875, -0.0240631103515625, 0.02093505859375, -0.0447998046875, -0.06146240234375, -0.01287841796875, 0.002849578857421875, -0.0197296142578125, 0.015960693359375, 0.0161285400390625, 0.01849365234375, -0.036590576171875, 0.01934814453125, -0.031707763671875, -0.01322174072265625, 0.0250701904296875, 0.02294921875, -0.0046234130859375, -0.0322265625, -0.013946533203125, 0.01389312744140625, -0.0048675537109375, -0.01042938232421875, 0.02520751953125, 0.03472900390625, -0.0127716064453125, -0.0025424957275390625, 0.00482940673828125, 0.03729248046875, -0.01009368896484375, 0.0384521484375, -0.01003265380859375, 0.0218048095703125, 0.020965576171875, -0.0148162841796875, 0.0650634765625, -0.0180816650390625, -0.030975341796875, 0.0108489990234375, -0.047454833984375, 0.0369873046875, -0.019195556640625, 0.040252685546875, 0.08056640625, 0.01427459716796875, -0.0027675628662109375, 0.009002685546875, 0.00392913818359375, -0.014495849609375, 0.031585693359375, 0.022003173828125, 0.00026679039001464844, -0.006561279296875, 0.052093505859375, 0.022308349609375, 0.033233642578125, 0.0010280609130859375, -0.0212249755859375, -0.0000514984130859375, 0.0200347900390625, -0.0275115966796875, -0.0256805419921875, -0.01788330078125, -0.047027587890625, 0.01511383056640625, 0.00553131103515625, -0.0137939453125, -0.01076507568359375, 0.0333251953125, 0.0044403076171875, 0.06072998046875, -0.0245361328125, -0.0283355712890625, 0.00870513916015625, -0.048187255859375, -0.02532958984375, -0.0065765380859375, -0.01032257080078125, -0.0015745162963867188, 0.0251617431640625, -0.029052734375, -0.069091796875, -0.046112060546875, -0.0260772705078125, 0.00817108154296875, 0.004673004150390625, 0.01543426513671875, 0.01087188720703125, 0.00555419921875, 0.01311492919921875, -0.0030879974365234375, 0.0177154541015625, -0.040008544921875, -0.029205322265625, 0.0178375244140625, -0.022216796875, 0.03802490234375, -0.05255126953125, -0.039703369140625, 0.006916046142578125, -0.01412200927734375, -0.060638427734375, 0.034149169921875, 0.00846099853515625, 0.006305694580078125, -0.01163482666015625, -0.024078369140625, -0.02276611328125, 0.0207977294921875, -0.0243988037109375, 0.028961181640625, 0.028045654296875, -0.0025482177734375, 0.0211334228515625, -0.036163330078125, -0.0027980804443359375, -0.0102996826171875, 0.0005359649658203125, 0.033966064453125, -0.0462646484375, -0.01297760009765625, -0.007343292236328125, -0.036590576171875, -0.0016584396362304688, -0.028167724609375, 0.0171356201171875, -0.04620361328125, 0.046356201171875, -0.044708251953125, 0.0300140380859375, -0.0533447265625, -0.0205230712890625, -0.030517578125, 0.0909423828125, -0.0243682861328125, -0.0260162353515625, -0.020782470703125, -0.0070953369140625, 0.002620697021484375, 0.02972412109375, -0.04351806640625, -0.004062652587890625, -0.11224365234375, 0.0094146728515625, 0.0186004638671875, -0.06097412109375, -0.0310821533203125, -0.0016574859619140625, -0.080810546875, -0.02154541015625, 0.0266265869140625, -0.053253173828125, 0.01337432861328125, -0.0223236083984375, -0.005931854248046875, -0.04913330078125, -0.004352569580078125, -0.031890869140625, -0.0229949951171875, -0.005931854248046875, -0.06488037109375, 0.0482177734375, 0.043609619140625, 0.00372314453125, -0.0100555419921875, 0.0174102783203125, -0.0198516845703125, 0.00041484832763671875, -0.04718017578125, 0.01244354248046875, -0.05096435546875, 0.0267486572265625, -0.024322509765625, -0.0012054443359375, -0.02777099609375, -0.02923583984375, 0.016754150390625, 0.018646240234375, -0.0132293701171875, 0.02313232421875, -0.01337432861328125, 0.01641845703125, -0.034912109375, -0.05584716796875, -0.0767822265625, 0.001827239990234375, -0.05926513671875, 0.008575439453125, -0.04248046875, -0.06378173828125, 0.01068878173828125, 0.01158905029296875, -0.0225677490234375, 0.0113677978515625, 0.0177459716796875, 0.00965118408203125, -0.0255889892578125, 0.006786346435546875, 0.050933837890625, 0.0296173095703125, -0.03118896484375, 0.0244598388671875, 0.0308074951171875, 0.0128326416015625, -0.0306854248046875, -0.0247344970703125, 0.00971221923828125, -0.0016345977783203125, -0.028961181640625, 0.00624847412109375, -0.043609619140625, 0.038238525390625, 0.013702392578125, 0.0193634033203125, -0.0195159912109375, -0.00838470458984375, -0.0187530517578125, -0.0116729736328125, 0.047271728515625, 0.019805908203125, -0.0098876953125, -0.07659912109375, -0.055999755859375, 0.017578125, -0.08734130859375, 0.0211944580078125, -0.0262603759765625, 0.005199432373046875, -0.0012922286987304688, 0.0013170242309570312, 0.0284271240234375, -0.058013916015625, -0.0125885009765625, -0.05438232421875, 0.056793212890625, -0.08526611328125, -0.006763458251953125, -0.0112152099609375, -0.026031494140625, 0.08294677734375, 0.0284271240234375, -0.046173095703125, 0.022064208984375, -0.01654052734375, 0.050628662109375, 0.006702423095703125, 0.012054443359375, 0.04095458984375, 0.06195068359375, -0.041046142578125, -0.0124664306640625, -0.00047087669372558594, -0.001850128173828125, -0.07391357421875, -0.0303802490234375, -0.030242919921875, 0.0131378173828125, 0.047149658203125, 0.050872802734375, 0.007686614990234375, 0.058837890625, -0.043548583984375, 0.0421142578125, 0.01000213623046875, 0.0101318359375, -0.0004277229309082031, 0.061126708984375, -0.0204010009765625, -0.0137176513671875, -0.0197906494140625, -0.0083770751953125, -0.005828857421875, 0.01357269287109375, 0.02764892578125, 0.060638427734375, 0.032379150390625, -0.035675048828125, -0.02838134765625, 0.00946044921875, 0.070556640625, 0.02117919921875, -0.045867919921875, -0.0231781005859375, 0.01105499267578125, 0.047149658203125, -0.052947998046875, -0.00145721435546875, -0.0298004150390625, -0.0208282470703125, 0.00855255126953125, 0.0182952880859375, 0.00684356689453125, -0.0260009765625, -0.028961181640625, -0.03192138671875, -0.02630615234375, -0.01155853271484375, -0.031646728515625, -0.01096343994140625, -0.018280029296875, -0.04339599609375, 0.06622314453125, -0.006153106689453125, 0.00699615478515625, -0.029998779296875, 0.028594970703125, 0.048828125, -0.01186370849609375, 0.060394287109375, 0.006786346435546875, -0.0236053466796875, 0.00959014892578125, -0.065673828125, -0.0296478271484375, -0.05413818359375, -0.044952392578125, -0.0533447265625, 0.013702392578125, 0.01385498046875, 0.0250091552734375, 0.0113067626953125, 0.01470184326171875, 0.00691986083984375, 0.0318603515625, -0.00972747802734375, 0.0654296875, -0.00873565673828125, 0.05230712890625, -0.031402587890625, 0.03887939453125, 0.015716552734375, 0.034759521484375, 0.0270538330078125, -0.027313232421875, 0.0255126953125, 0.0166473388671875, -0.04754638671875, -0.048797607421875, -0.01457977294921875, -0.036468505859375, 0.050048828125, -0.028076171875, -0.0129852294921875, 0.0157012939453125, -0.001407623291015625, -0.0265655517578125, 0.01971435546875, 0.022918701171875, 0.0257720947265625, -0.057708740234375, -0.034271240234375, 0.0548095703125, 0.01715087890625, -0.00801849365234375, -0.02880859375, -0.02880859375, -0.020263671875, 0.083251953125, 0.031890869140625, -0.00655364990234375, 0.0099945068359375, -0.0283355712890625, 0.0211639404296875, 0.00930023193359375, 0.016571044921875, 0.03521728515625, -0.034881591796875, -0.0162811279296875, 0.024566650390625, 0.0078887939453125, -0.0010890960693359375, 0.026611328125, 0.0180816650390625, -0.004047393798828125, 0.018463134765625, 0.0635986328125, 0.052154541015625, -0.07708740234375, 0.01099395751953125, 0.0129241943359375, 0.0144805908203125, 0.054443359375, -0.007366180419921875, -0.00142669677734375, -0.06866455078125, 0.04498291015625, 0.0193634033203125, 0.0037136077880859375, 0.01168060302734375, -0.0197296142578125, -0.025421142578125, 0.0242156982421875, -0.0360107421875, 0.0022563934326171875, 0.04656982421875, -0.0207672119140625, -0.0352783203125, 0.036590576171875, -0.0234222412109375, -0.00212860107421875, 0.0170135498046875, -0.038116455078125, -0.08538818359375, -0.0294036865234375, -0.0099639892578125, -0.02545166015625, 0.0095367431640625, 0.0117034912109375, 0.049774169921875, 0.049957275390625, -0.0038242340087890625, 0.0261077880859375, 0.003223419189453125, 0.02435302734375, -0.002246856689453125, -0.06329345703125, 0.03173828125, -0.03045654296875, -0.056396484375, 0.035980224609375, -0.00823974609375, -0.0797119140625, -0.0026302337646484375, -0.0103302001953125, 0.06341552734375, -0.0421142578125, -0.00037407875061035156, 0.0219879150390625, 0.013824462890625, -0.0063323974609375, -0.007740020751953125, 0.0050048828125, -0.050384521484375, -0.018768310546875, -0.00031638145446777344, -0.01264190673828125, 0.03369140625, 0.01666259765625, -0.03466796875, 0.01381683349609375, 0.0110626220703125, -0.01334381103515625, -0.0162353515625, 0.018829345703125, -0.0204010009765625, -0.0042266845703125, -0.006237030029296875, 0.023895263671875, -0.011260986328125, 0.0080108642578125, -0.0340576171875, -0.0020465850830078125, -0.008026123046875, 0.024444580078125, 0.0838623046875, 0.0325927734375, -0.01629638671875, -0.0196075439453125, -0.006420135498046875, 0.00738525390625, -0.036163330078125, 0.03985595703125, -0.01107025146484375, 0.001277923583984375, 0.0167083740234375, -0.01477813720703125, 0.040283203125, -0.030120849609375, -0.040496826171875, -0.0022182464599609375, 0.01094818115234375, 0.00582122802734375, 0.009307861328125, 0.0011606216430664062, -0.024444580078125, 0.0086212158203125, 0.0174560546875, -0.006885528564453125, 0.021514892578125, -0.0167388916015625, -0.025604248046875, 0.030120849609375, 0.06951904296875, -0.00800323486328125, 0.039947509765625, -0.0007615089416503906, 0.0217132568359375, 0.038299560546875, 0.043609619140625, -0.02825927734375, 0.0166473388671875, 0.031982421875, 0.04205322265625, -0.065673828125, 0.040130615234375, 0.00860595703125, 0.0183563232421875, -0.033966064453125, 0.005008697509765625, 0.03912353515625, 0.050048828125, -0.0249176025390625, -0.039520263671875, 0.00896453857421875, -0.0016765594482421875, 0.01496124267578125, 0.025909423828125, 0.024658203125, -0.0219573974609375, -0.0101776123046875, -0.049041748046875, 0.019927978515625, 0.0169830322265625, 0.04107666015625, -0.006282806396484375, 0.01085662841796875, -0.041107177734375, -0.0152435302734375, -0.0196990966796875, -0.0313720703125, -0.0030307769775390625, -0.00846099853515625, 0.04638671875, -0.018157958984375, 0.06878662109375, -0.01045989990234375, 0.01409912109375, 0.007328033447265625, 0.00620269775390625, -0.0254058837890625, 0.0027256011962890625, -0.045166015625, 0.0258636474609375, 0.0206451416015625, 0.002872467041015625, -0.0350341796875, 0.0210113525390625, 0.03594970703125, -0.0277252197265625, -0.041473388671875, -0.00934600830078125, -0.0103912353515625, 0.007099151611328125, -0.0269927978515625, -0.01061248779296875, -0.0108184814453125, -0.020599365234375, -0.023681640625, 0.01342010498046875, 0.0210723876953125, -0.005588531494140625, -0.0010366439819335938, -0.0033512115478515625, -0.0055694580078125, 0.04254150390625, -0.0021152496337890625, 0.00955963134765625, 0.0137176513671875, -0.024566650390625, 0.002712249755859375, -0.0323486328125, 0.009307861328125, 0.0010204315185546875, 0.0187225341796875, -0.01119232177734375, 0.031951904296875, -0.0089263916015625, 0.003658294677734375, 0.00396728515625, 0.0100250244140625, -0.00843048095703125, 0.0166778564453125, 0.0226898193359375, -0.004302978515625, -0.0150909423828125, -0.006610870361328125, 0.040496826171875, 0.0157012939453125, -0.0181884765625, 0.005340576171875, 0.002956390380859375, 0.00768280029296875, -0.037353515625, 0.008697509765625, -0.01474761962890625, -0.021331787109375, 0.0182647705078125, 0.038055419921875, -0.009307861328125, -0.0115203857421875, -0.03497314453125, 0.09149169921875, 0.01206207275390625, 0.015899658203125, 0.061798095703125, -0.0013980865478515625, -0.01031494140625, 0.00652313232421875, -0.0243682861328125, -0.036102294921875, -0.039581298828125, -0.01617431640625, 0.01271820068359375, 0.0156402587890625, 0.0273590087890625, -0.031494140625, 0.0074462890625, 0.01427459716796875, -0.01727294921875, -0.005680084228515625, -0.005558013916015625, 0.00846099853515625, 0.040771484375, 0.005786895751953125, 0.00411224365234375, 0.04254150390625, -0.0079193115234375, 0.0148162841796875, 0.00763702392578125, 0.01396942138671875, 0.038360595703125, -0.031494140625, -0.0139617919921875, -0.0312347412109375, 0.0174560546875, -0.0038166046142578125, -0.0089569091796875, -0.0287628173828125, 0.0149078369140625, -0.0019683837890625, 0.011749267578125, -0.0303802490234375, -0.003940582275390625, 0.0025501251220703125, 0.0430908203125, -0.0035381317138671875, -0.0031833648681640625, -0.1107177734375, 0.0157012939453125, 0.040008544921875, 0.0300140380859375, -0.1151123046875, 0.09222412109375, -0.023468017578125, -0.0013256072998046875, -0.0022678375244140625, -0.03460693359375, -0.0029201507568359375, 0.005710601806640625, -0.026824951171875, -0.0411376953125, -0.047119140625, 0.02740478515625, -0.025726318359375, 0.01580810546875, 0.013336181640625, -0.0194549560546875, 0.031463623046875, 0.0092620849609375, 0.0079498291015625, 0.0557861328125, 0.016693115234375, -0.0006003379821777344, -0.0014333724975585938, 0.0307159423828125, -0.0278778076171875, -0.068359375, -0.0011072158813476562, -0.0174407958984375, 0.003116607666015625, -0.01433563232421875, 0.038543701171875, 0.059967041015625, -0.0097808837890625, -0.040435791015625, -0.01160430908203125, -0.0024051666259765625, -0.029541015625, -0.005702972412109375, 0.0233612060546875, 0.01556396484375, -0.0245361328125, -0.013519287109375, -0.00290679931640625, -0.0133514404296875, -0.013824462890625, 0.0275115966796875, -0.0032291412353515625, 0.0216522216796875, 0.01555633544921875, -0.0164794921875, 0.045745849609375, 0.041290283203125, 0.00530242919921875, -0.00890350341796875, -0.0072021484375, 0.02978515625, 0.061279296875, -0.00475311279296875, 0.0186767578125, 0.00815582275390625, -0.0531005859375, -0.033050537109375, 0.00749969482421875, -0.0557861328125, -0.02490234375, 0.0869140625, 0.1005859375, 0.03216552734375, -0.036468505859375, -0.001861572265625, -0.004047393798828125, -0.034210205078125, -0.03094482421875, 0.031768798828125, -0.0655517578125, -0.021575927734375, -0.01788330078125, -0.0263824462890625, 0.00908660888671875, -0.03143310546875, -0.042022705078125, 0.01358795166015625, -0.0129241943359375, 0.0037593841552734375, -0.0155487060546875, 0.0307159423828125, 0.00899505615234375, -0.0280914306640625, -0.04156494140625, -0.0268096923828125, -0.00026726722717285156, -0.036041259765625, -0.058624267578125, -0.056121826171875, -0.040252685546875, -0.0091094970703125, 0.0565185546875, -0.048126220703125, 0.0377197265625, -0.04962158203125, 0.0318603515625, -0.021514892578125, 0.0107421875, -0.0100860595703125, 0.013397216796875, -0.019439697265625, 0.0350341796875, 0.022552490234375, 0.049102783203125, -0.006916046142578125, 0.059051513671875, -0.035186767578125, 0.064697265625, 0.012237548828125, -0.02581787109375, 0.033935546875, -0.0117950439453125, -0.002460479736328125, 0.006359100341796875, -0.01445770263671875, -0.07135009765625, 0.07171630859375, 0.0679931640625, 0.0178375244140625, 0.053558349609375 ]
067b0d03eddeca20da7275d6e4f449fd72165ed4
Wordpress Stackexchange Q: Debug.log file is never created? It's the first I have seen this. In a project I'm working on, I tried to switch on the debug mode for wordpress to see logs. Even if I activate the debug_log in wp-config.php, debug.log file is never created in /htdocs/wp-content/ wp-config.php define('WP_DEBUG', true); define('WP_DEBUG_LOG', true); define('WP_DEBUG_DISPLAY', false); @ini_set('display_errors',0); define('SCRIPT_DEBUG', true); wp-content dir rights load.php if ( WP_DEBUG_LOG ) { ini_set( 'log_errors', 1 ); var_dump( WP_CONTENT_DIR . '/debug.log' ); // display correctly this => "/htdocs/wp-content/debug.log"; ini_set( 'error_log', WP_CONTENT_DIR . '/debug.log' ); } A: I found the problem. In the Apache server, inside the php.ini, the variable... track_errors = Off To get this information, you can do in a phpfile phpinfo();. So, to write the debug log file, you need to set track_errors as 'On'.
Q: Debug.log file is never created? It's the first I have seen this. In a project I'm working on, I tried to switch on the debug mode for wordpress to see logs. Even if I activate the debug_log in wp-config.php, debug.log file is never created in /htdocs/wp-content/ wp-config.php define('WP_DEBUG', true); define('WP_DEBUG_LOG', true); define('WP_DEBUG_DISPLAY', false); @ini_set('display_errors',0); define('SCRIPT_DEBUG', true); wp-content dir rights load.php if ( WP_DEBUG_LOG ) { ini_set( 'log_errors', 1 ); var_dump( WP_CONTENT_DIR . '/debug.log' ); // display correctly this => "/htdocs/wp-content/debug.log"; ini_set( 'error_log', WP_CONTENT_DIR . '/debug.log' ); } A: I found the problem. In the Apache server, inside the php.ini, the variable... track_errors = Off To get this information, you can do in a phpfile phpinfo();. So, to write the debug log file, you need to set track_errors as 'On'. A: None of the above solutions worked for me. So I ran phpinfo() and found that error_log = /var/log/php-fpm/www-error.log on my machine and I was finally able to see the error. In my case, a script was exceeding 30 seconds allowed of execution time. So use phpinfo() and find out where your logs are stored!
wordpress
{ "language": "en", "length": 185, "provenance": "stackexchange_00019.jsonl.gz:484684", "question_score": "7", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/296942" }
[ 0.051483154296875, -0.04119873046875, -0.01303863525390625, -0.08038330078125, -0.015472412109375, -0.0166778564453125, -0.01023101806640625, 0.0304412841796875, 0.020660400390625, -0.005016326904296875, -0.033355712890625, -0.0202178955078125, -0.01412200927734375, -0.02093505859375, -0.026153564453125, -0.04791259765625, 0.012786865234375, -0.01181793212890625, 0.01611328125, -0.0158233642578125, -0.003360748291015625, -0.010101318359375, 0.004100799560546875, 0.036895751953125, 0.024017333984375, -0.00817108154296875, 0.0037479400634765625, -0.004299163818359375, 0.00968170166015625, -0.005001068115234375, 0.0189208984375, -0.00168609619140625, 0.037078857421875, 0.05328369140625, -0.08636474609375, 0.0089263916015625, -0.0022296905517578125, 0.007415771484375, -0.0209197998046875, 0.060577392578125, -0.00675201416015625, 0.01264190673828125, 0.10430908203125, -0.031036376953125, 0.029510498046875, -0.0267181396484375, 0.009552001953125, -0.042877197265625, 0.0208587646484375, -0.034576416015625, -0.0069122314453125, 0.01386260986328125, 0.0036907196044921875, 0.0064239501953125, -0.0220947265625, -0.0187835693359375, -0.031829833984375, 0.050689697265625, 0.0173492431640625, 0.005115509033203125, -0.0308990478515625, 0.0179443359375, -0.00296783447265625, -0.007320404052734375, 0.009796142578125, 0.00649261474609375, -0.01477813720703125, 0.0204010009765625, -0.0277099609375, 0.02056884765625, 0.028076171875, -0.045928955078125, -0.0009050369262695312, 0.0129547119140625, -0.0298614501953125, -0.0181121826171875, 0.05328369140625, 0.002368927001953125, -0.01031494140625, 0.01226043701171875, 0.034820556640625, -0.057586669921875, 0.005100250244140625, 0.0333251953125, 0.0002503395080566406, 0.05859375, 0.00885009765625, -0.0293121337890625, 0.0018644332885742188, -0.00850677490234375, -0.010101318359375, 0.0171051025390625, -0.0084686279296875, -0.0301513671875, -0.01319122314453125, -0.050537109375, -0.006450653076171875, 0.025299072265625, 0.0039043426513671875, -0.0105743408203125, -0.0289154052734375, -0.0011768341064453125, -0.041656494140625, -0.00304412841796875, 0.0159454345703125, 0.05914306640625, -0.01146697998046875, -0.01532745361328125, 0.033416748046875, 0.018829345703125, 0.018035888671875, 0.006153106689453125, -0.027679443359375, -0.044769287109375, -0.014617919921875, 0.0443115234375, -0.014678955078125, 0.00012683868408203125, 0.010711669921875, 0.01267242431640625, 0.001865386962890625, 0.042633056640625, -0.053802490234375, 0.0204620361328125, -0.0192718505859375, -0.032745361328125, 0.025421142578125, -0.005275726318359375, 0.019989013671875, 0.021484375, -0.0260162353515625, 0.0178070068359375, -0.003597259521484375, -0.01366424560546875, -0.0160675048828125, -0.0066070556640625, 0.007293701171875, -0.0311431884765625, -0.016021728515625, 0.031585693359375, 0.00299835205078125, -0.0291595458984375, 0.0084381103515625, -0.01116943359375, -0.039306640625, 0.0186767578125, 0.02178955078125, 0.0196075439453125, -0.035003662109375, -0.0721435546875, 0.0031566619873046875, 0.00551605224609375, 0.007183074951171875, 0.01019287109375, 0.0318603515625, -0.048004150390625, 0.0130462646484375, -0.043121337890625, 0.0443115234375, -0.036163330078125, 0.0249481201171875, -0.0030651092529296875, -0.0034942626953125, -0.0183868408203125, -0.0283050537109375, -0.00921630859375, -0.0159149169921875, -0.0004906654357910156, 0.019866943359375, -0.007091522216796875, 0.045623779296875, -0.040069580078125, -0.03253173828125, -0.019561767578125, -0.0020580291748046875, 0.01593017578125, -0.040069580078125, 0.000057697296142578125, 0.0262603759765625, 0.00492095947265625, 0.0164031982421875, -0.004009246826171875, -0.00341796875, 0.046875, -0.050506591796875, 0.037689208984375, -0.0101318359375, 0.04376220703125, 0.0367431640625, 0.001255035400390625, 0.0035343170166015625, -0.0014066696166992188, -0.0158538818359375, 0.042755126953125, -0.01506805419921875, -0.054901123046875, -0.023681640625, -0.01467132568359375, -0.02301025390625, 0.016357421875, -0.03192138671875, 0.00191497802734375, -0.00475311279296875, 0.0036029815673828125, -0.08746337890625, 0.00983428955078125, -0.046112060546875, 0.048492431640625, 0.02899169921875, -0.018585205078125, 0.0092620849609375, -0.0007410049438476562, 0.0025043487548828125, -0.016265869140625, -0.052825927734375, 0.06463623046875, -0.03759765625, 0.07403564453125, 0.01210784912109375, 0.0447998046875, -0.001323699951171875, -0.028900146484375, 0.01012420654296875, -0.0482177734375, 0.02008056640625, 0.01035308837890625, -0.006473541259765625, 0.0002446174621582031, 0.0770263671875, -0.0016260147094726562, 0.07086181640625, 0.01132965087890625, 0.0252227783203125, 0.032379150390625, -0.018951416015625, -0.0275421142578125, -0.017303466796875, -0.08306884765625, 0.01580810546875, 0.0615234375, 0.05194091796875, 0.030731201171875, 0.005535125732421875, 0.0079498291015625, 0.01715087890625, -0.05303955078125, 0.030029296875, -0.0287628173828125, 0.0019254684448242188, -0.0202484130859375, -0.0099334716796875, -0.0208282470703125, 0.058074951171875, -0.027557373046875, 0.023162841796875, 0.0309600830078125, -0.01461029052734375, -0.037139892578125, 0.0037784576416015625, 0.042236328125, -0.012298583984375, 0.00836181640625, 0.0158233642578125, -0.00855255126953125, -0.01529693603515625, 0.0250396728515625, -0.0019235610961914062, -0.0004391670227050781, -0.033203125, 0.031341552734375, 0.023345947265625, -0.041290283203125, 0.006450653076171875, 0.026824951171875, -0.01123809814453125, 0.01483154296875, -0.03521728515625, 0.01580810546875, 0.01445770263671875, 0.00101470947265625, -0.03912353515625, -0.005687713623046875, 0.01099395751953125, -0.0118865966796875, -0.0009603500366210938, -0.050079345703125, 0.018341064453125, -0.0282440185546875, 0.009124755859375, 0.002902984619140625, 0.01169586181640625, 0.0311737060546875, -0.043670654296875, 0.060150146484375, 0.007671356201171875, -0.016876220703125, 0.01739501953125, -0.0498046875, 0.03497314453125, -0.0087127685546875, 0.04180908203125, 0.07806396484375, 0.01557159423828125, -0.005146026611328125, -0.0001310110092163086, 0.02752685546875, 0.0012331008911132812, -0.018463134765625, -0.033966064453125, 0.0084991455078125, -0.046966552734375, 0.024658203125, 0.0103912353515625, 0.0034542083740234375, -0.00279998779296875, -0.031707763671875, -0.041534423828125, 0.0209197998046875, -0.061737060546875, -0.059417724609375, -0.0576171875, -0.10369873046875, 0.01258087158203125, -0.00644683837890625, -0.05072021484375, 0.0033092498779296875, 0.0341796875, 0.027008056640625, 0.014404296875, -0.040863037109375, -0.03564453125, -0.049346923828125, -0.035614013671875, 0.0022068023681640625, -0.0021076202392578125, -0.0106201171875, -0.000095367431640625, 0.0537109375, -0.0097503662109375, -0.0596923828125, -0.0252685546875, -0.0031375885009765625, -0.00733184814453125, 0.007049560546875, -0.0290985107421875, 0.026336669921875, 0.0184173583984375, 0.01013946533203125, -0.03692626953125, 0.00215911865234375, 0.00506591796875, -0.043609619140625, -0.0175628662109375, 0.0046844482421875, -0.0149688720703125, -0.01020050048828125, 0.030426025390625, -0.031585693359375, -0.0240936279296875, -0.05438232421875, -0.0140533447265625, 0.0111236572265625, -0.0235137939453125, 0.00760650634765625, 0.01039886474609375, -0.01517486572265625, 0.01244354248046875, -0.01104736328125, 0.021728515625, 0.037261962890625, 0.005199432373046875, -0.001728057861328125, 0.0443115234375, -0.01641845703125, -0.0106201171875, -0.0390625, 0.0125274658203125, -0.01500701904296875, -0.036346435546875, 0.0034542083740234375, -0.0118865966796875, -0.0233001708984375, -0.0028057098388671875, -0.031646728515625, 0.00577545166015625, -0.006572723388671875, -0.0660400390625, 0.0172882080078125, -0.01531219482421875, 0.0244598388671875, -0.0174102783203125, 0.0188446044921875, -0.055206298828125, -0.00968170166015625, -0.002208709716796875, 0.0163116455078125, -0.03363037109375, -0.057708740234375, -0.0399169921875, -0.01319122314453125, -0.0203857421875, 0.0233306884765625, 0.02923583984375, -0.0183868408203125, -0.006267547607421875, -0.00910186767578125, -0.0355224609375, -0.02679443359375, 0.019317626953125, -0.03314208984375, 0.00682830810546875, 0.0007100105285644531, 0.039398193359375, -0.03680419921875, 0.015167236328125, -0.04229736328125, -0.1031494140625, -0.015899658203125, -0.053070068359375, 0.06488037109375, 0.0190277099609375, -0.00955963134765625, -0.013580322265625, 0.047119140625, -0.0198211669921875, -0.05059814453125, 0.038818359375, 0.0303802490234375, -0.039459228515625, 0.03594970703125, 0.01398468017578125, -0.0229644775390625, -0.0090484619140625, -0.024322509765625, -0.0193939208984375, 0.021636962890625, -0.0145111083984375, 0.0250396728515625, 0.00977325439453125, -0.00925445556640625, -0.01995849609375, -0.014251708984375, -0.0210113525390625, -0.004360198974609375, 0.002590179443359375, -0.024200439453125, -0.006671905517578125, -0.0204010009765625, 0.00972747802734375, -0.06109619140625, -0.023468017578125, 0.01468658447265625, 0.07891845703125, 0.029296875, 0.0206298828125, 0.000003516674041748047, -0.00710296630859375, 0.021331787109375, -0.020477294921875, 0.052703857421875, 0.0298309326171875, -0.003204345703125, 0.03253173828125, -0.02825927734375, -0.004344940185546875, 0.00229644775390625, -0.01134490966796875, 0.0078887939453125, -0.038604736328125, 0.0027637481689453125, -0.00908660888671875, 0.042083740234375, 0.016571044921875, -0.01453399658203125, 0.0177154541015625, 0.044525146484375, 0.0014848709106445312, -0.051910400390625, 0.02569580078125, 0.012115478515625, -0.0264892578125, 0.00441741943359375, -0.0238189697265625, 0.0311279296875, 0.0374755859375, -0.0012826919555664062, 0.033294677734375, 0.023284912109375, 0.005157470703125, 0.03997802734375, 0.05621337890625, 0.0097808837890625, 0.0221405029296875, 0.08477783203125, 0.003719329833984375, -0.037689208984375, -0.0135650634765625, 0.033905029296875, -0.0097503662109375, -0.055999755859375, 0.043670654296875, -0.0237579345703125, -0.01611328125, 0.0136260986328125, -0.018768310546875, 0.057525634765625, 0.016937255859375, -0.0357666015625, 0.00699615478515625, -0.04083251953125, -0.0165557861328125, -0.054290771484375, 0.00820159912109375, -0.043060302734375, 0.0019588470458984375, -0.0003304481506347656, 0.040435791015625, -0.052978515625, 0.033905029296875, -0.0005636215209960938, 0.01525115966796875, -0.0208740234375, 0.049652099609375, 0.0455322265625, -0.07305908203125, 0.026214599609375, -0.014312744140625, 0.00531005859375, -0.057525634765625, -0.044219970703125, -0.013885498046875, 0.05889892578125, -0.040985107421875, -0.0304412841796875, 0.0523681640625, -0.00890350341796875, 0.032806396484375, 0.022186279296875, -0.0278167724609375, -0.0614013671875, 0.01462554931640625, -0.024078369140625, 0.006381988525390625, -0.09356689453125, 0.01291656494140625, 0.005645751953125, -0.0002493858337402344, 0.0240631103515625, -0.021209716796875, -0.01328277587890625, -0.014801025390625, -0.007007598876953125, -0.034698486328125, -0.041900634765625, -0.0134429931640625, -0.0271759033203125, -0.00246429443359375, -0.0079498291015625, -0.021026611328125, 0.0282440185546875, -0.06549072265625, -0.006877899169921875, 0.0028781890869140625, 0.01294708251953125, -0.02880859375, 0.0255126953125, 0.045989990234375, 0.048675537109375, -0.004001617431640625, 0.0064544677734375, -0.021392822265625, -0.031219482421875, 0.01047515869140625, -0.01445770263671875, -0.034088134765625, -0.0251007080078125, -0.0184783935546875, -0.004894256591796875, -0.025543212890625, -0.03271484375, -0.03741455078125, 0.02923583984375, 0.032440185546875, -0.002559661865234375, -0.00980377197265625, 0.0293121337890625, -0.003932952880859375, -0.0006356239318847656, 0.00731658935546875, 0.0278472900390625, 0.0070953369140625, -0.013671875, 0.00981903076171875, 0.0106353759765625, -0.033660888671875, -0.0280914306640625, 0.0070343017578125, 0.007419586181640625, 0.08367919921875, -0.0244903564453125, -0.00426483154296875, -0.002288818359375, 0.011993408203125, -0.01007843017578125, 0.00255584716796875, 0.0239715576171875, -0.00933837890625, 0.0195770263671875, -0.01641845703125, -0.034881591796875, -0.0200653076171875, 0.019927978515625, -0.01070404052734375, 0.0067596435546875, -0.0288848876953125, -0.01183319091796875, -0.005260467529296875, 0.045196533203125, 0.077392578125, -0.004428863525390625, 0.047119140625, 0.033721923828125, -0.002777099609375, 0.0169219970703125, 0.044586181640625, -0.03729248046875, -0.0175323486328125, 0.05517578125, 0.0185394287109375, -0.024749755859375, 0.0195465087890625, -0.015106201171875, 0.00794219970703125, 0.046966552734375, 0.060089111328125, -0.08648681640625, 0.0252227783203125, 0.039581298828125, 0.019500732421875, 0.00811767578125, -0.0229644775390625, 0.0173797607421875, 0.0127410888671875, 0.044403076171875, -0.0300140380859375, -0.0232391357421875, 0.011871337890625, -0.02532958984375, 0.000583648681640625, 0.00687408447265625, 0.033355712890625, 0.012176513671875, -0.07086181640625, 0.01678466796875, 0.041412353515625, 0.01117706298828125, -0.02587890625, 0.02191162109375, -0.0198974609375, -0.0218658447265625, -0.06298828125, 0.00092315673828125, 0.00954437255859375, -0.0141448974609375, 0.007160186767578125, -0.0033016204833984375, 0.03955078125, 0.03741455078125, -0.0015249252319335938, -0.006076812744140625, 0.0109405517578125, 0.01119232177734375, 0.005306243896484375, -0.0216522216796875, 0.037750244140625, 0.0288543701171875, -0.04986572265625, 0.01116943359375, -0.0122222900390625, -0.03570556640625, -0.0012655258178710938, 0.0162200927734375, 0.064697265625, -0.062408447265625, -0.01220703125, 0.004947662353515625, 0.0016269683837890625, 0.02020263671875, -0.02374267578125, 0.03717041015625, -0.053680419921875, -0.0004546642303466797, 0.004207611083984375, -0.004413604736328125, -0.0325927734375, -0.027313232421875, -0.017608642578125, 0.11383056640625, -0.01367950439453125, -0.01291656494140625, 0.0286102294921875, 0.052154541015625, -0.045989990234375, 0.020843505859375, -0.0345458984375, 0.10345458984375, 0.024200439453125, 0.07330322265625, -0.09442138671875, -0.039215087890625, 0.055450439453125, 0.08685302734375, 0.052978515625, 0.00396728515625, 0.0188446044921875, 0.00720977783203125, 0.05523681640625, -0.019073486328125, -0.035308837890625, 0.0219573974609375, 0.006412506103515625, -0.0137786865234375, -0.00572967529296875, -0.0220184326171875, 0.031646728515625, -0.043365478515625, -0.0013875961303710938, 0.0261383056640625, -0.000843048095703125, -0.029144287109375, 0.00728607177734375, -0.008514404296875, -0.03778076171875, 0.019683837890625, -0.0033016204833984375, 0.060821533203125, -0.02886962890625, 0.04931640625, 0.03662109375, -0.048980712890625, -0.06634521484375, -0.02301025390625, 0.03094482421875, 0.00960540771484375, -0.027618408203125, -0.005939483642578125, 0.014984130859375, -0.027740478515625, -0.0391845703125, -0.03204345703125, 0.0298614501953125, -0.0284271240234375, -0.0218963623046875, 0.0263824462890625, 0.0188751220703125, 0.0265045166015625, 0.0404052734375, 0.0008859634399414062, -0.021820068359375, -0.00942230224609375, -0.044189453125, 0.0031070709228515625, -0.00130462646484375, -0.00011581182479858398, -0.00031566619873046875, 0.0070343017578125, -0.0227203369140625, 0.017913818359375, -0.036834716796875, -0.0179290771484375, 0.0005655288696289062, 0.0004353523254394531, -0.0022182464599609375, 0.0172119140625, 0.0180816650390625, -0.0193023681640625, -0.0131988525390625, -0.0185394287109375, 0.0050811767578125, 0.04010009765625, 0.036285400390625, -0.012054443359375, -0.0238494873046875, -0.017059326171875, -0.03485107421875, 0.035003662109375, -0.00771331787109375, 0.0367431640625, -0.048858642578125, -0.02166748046875, 0.01097869873046875, 0.0477294921875, 0.035125732421875, 0.02044677734375, 0.07147216796875, 0.04248046875, -0.03338623046875, -0.0118408203125, 0.0223388671875, -0.021026611328125, -0.036468505859375, -0.0380859375, 0.0244140625, 0.041839599609375, 0.0247650146484375, 0.03302001953125, 0.0186920166015625, 0.021148681640625, -0.01369476318359375, -0.00038170814514160156, 0.00853729248046875, -0.0281524658203125, 0.0228424072265625, -0.0179290771484375, 0.020660400390625, 0.0009055137634277344, -0.0288848876953125, -0.0153350830078125, -0.014923095703125, 0.01151275634765625, 0.01343536376953125, 0.03985595703125, 0.04742431640625, -0.01485443115234375, 0.0418701171875, 0.030242919921875, -0.050872802734375, -0.00794219970703125, 0.01441192626953125, -0.052276611328125, 0.022369384765625, 0.01508331298828125, -0.06597900390625, -0.041595458984375, -0.0374755859375, 0.042327880859375, 0.03009033203125, 0.06353759765625, -0.005279541015625, 0.02777099609375, 0.00856781005859375, 0.01415252685546875, -0.0250244140625, 0.0204925537109375, -0.01141357421875, -0.00856781005859375, -0.007503509521484375, -0.0080413818359375, -0.048614501953125, 0.06341552734375, -0.0009016990661621094, 0.01557159423828125, 0.059326171875, -0.04620361328125, 0.004024505615234375, -0.006313323974609375, 0.002231597900390625, -0.02313232421875, -0.025848388671875, 0.005474090576171875, 0.025970458984375, 0.01052093505859375, 0.011627197265625, -0.016815185546875, 0.0255279541015625, -0.0060272216796875, -0.0296783447265625, 0.00732421875, -0.0258331298828125, 0.00202178955078125, 0.0298919677734375, -0.00846099853515625, -0.01415252685546875, -0.055694580078125, -0.03106689453125, -0.00875091552734375, -0.0064544677734375, 0.0228729248046875, -0.048309326171875, 0.0306396484375, -0.0113983154296875, 0.01186370849609375, 0.0206298828125, -0.0145416259765625, 0.0007338523864746094, 0.0018596649169921875, -0.01264190673828125, 0.0161895751953125, -0.0026912689208984375, 0.00788116455078125, 0.00241851806640625, -0.037139892578125, -0.0004134178161621094, -0.005916595458984375, -0.023834228515625, 0.0158538818359375, 0.0212554931640625, 0.032958984375, -0.00982666015625, -0.02667236328125, 0.005893707275390625, -0.04522705078125, 0.045989990234375, 0.00849151611328125, -0.0088958740234375, 0.0032329559326171875, 0.01006317138671875, -0.04632568359375, -0.03814697265625, -0.039825439453125, 0.0236663818359375, -0.033203125, 0.032867431640625, 0.04376220703125, -0.02337646484375, -0.0063629150390625, 0.01338958740234375, -0.002895355224609375, 0.07275390625, -0.05133056640625, -0.033477783203125, -0.03302001953125, 0.01229095458984375, -0.0015850067138671875, -0.01377105712890625, 0.0213165283203125, -0.036773681640625, -0.043487548828125, 0.00885772705078125, -0.023681640625, -0.01033782958984375, -0.06915283203125, -0.09783935546875, 0.0142669677734375, 0.00007873773574829102, -0.044677734375, -0.06463623046875, -0.0224761962890625, -0.006053924560546875, 0.04107666015625, -0.0113372802734375, -0.0309906005859375, -0.0516357421875, 0.054962158203125, 0.024078369140625, 0.0012035369873046875, 0.039703369140625, -0.00588226318359375, -0.05242919921875, 0.0081787109375, 0.0014352798461914062, 0.01248931884765625, 0.0193634033203125, -0.00539398193359375, 0.04376220703125, 0.046173095703125, -0.0177764892578125, 0.0533447265625, -0.00412750244140625, -0.022552490234375, 0.01171112060546875, -0.0350341796875, -0.051544189453125, -0.0296630859375, 0.11785888671875, -0.0026702880859375, 0.036041259765625, -0.018951416015625, -0.062103271484375, -0.0445556640625, -0.0187835693359375, -0.011505126953125, 0.0194549560546875, -0.07611083984375, 0.01486968994140625, 0.0016803741455078125, 0.00148773193359375, -0.021728515625, 0.016937255859375, -0.0182037353515625, 0.0009512901306152344, 0.057586669921875, -0.004673004150390625, -0.0037364959716796875, -0.042755126953125, 0.044036865234375, -0.013275146484375, 0.031646728515625, -0.0352783203125, 0.050933837890625, 0.041534423828125, -0.0103607177734375, 0.01214599609375, 0.01439666748046875, -0.059722900390625, 0.0164794921875, -0.005710601806640625, 0.03466796875, -0.030975341796875, -0.038330078125, 0.004608154296875, -0.012359619140625, -0.0175018310546875, -0.028106689453125, 0.028411865234375, -0.01198577880859375, -0.040283203125, 0.09271240234375, 0.0160064697265625, -0.046844482421875, -0.021331787109375, 0.040985107421875, -0.04608154296875, -0.022735595703125, -0.051361083984375, -0.01140594482421875, 0.00858306884765625, 0.0221405029296875, 0.02557373046875, -0.034210205078125, 0.0286865234375, 0.0028018951416015625, 0.02252197265625, 0.01318359375 ]
c76d95684ee25becdd5cd101f7064a6202bca4f3
Wordpress Stackexchange Q: "Warning: count()" error on php 7.2 I'm currently working with php 7.2 and when I use get_the_content() or get_the_excerpt() outside of a single template, in the functions.php for example, I get the following Warning: Warning: count(): Parameter must be an array or an object that implements Countable in /Applications/MAMP/htdocs/wordpress/wp-kona/wp-includes/post-template.php on line 284 What's wrong with it? Is it a wordpress core bug? Am I missing something. A: Yes, I already knew the cause of what you're experiencing: The $page and $pages global variable have not been set up and a call to get_the_content or get_the_excerpt would return that error: count(pages) That said, pages global variable is set to null, calling count(pages) triggers that error because a null value cannot be counted. To fix this, one can easily tell that you're calling get_the_content or get_the_excerpt outside the loop. So you have to set up the post data correctly before usage, that's what the loop is meant to do: while ( have_post(): the_post() ) : // get_the_content() or get_the_excerpt() will work fine now the_content(); endwhile;
Q: "Warning: count()" error on php 7.2 I'm currently working with php 7.2 and when I use get_the_content() or get_the_excerpt() outside of a single template, in the functions.php for example, I get the following Warning: Warning: count(): Parameter must be an array or an object that implements Countable in /Applications/MAMP/htdocs/wordpress/wp-kona/wp-includes/post-template.php on line 284 What's wrong with it? Is it a wordpress core bug? Am I missing something. A: Yes, I already knew the cause of what you're experiencing: The $page and $pages global variable have not been set up and a call to get_the_content or get_the_excerpt would return that error: count(pages) That said, pages global variable is set to null, calling count(pages) triggers that error because a null value cannot be counted. To fix this, one can easily tell that you're calling get_the_content or get_the_excerpt outside the loop. So you have to set up the post data correctly before usage, that's what the loop is meant to do: while ( have_post(): the_post() ) : // get_the_content() or get_the_excerpt() will work fine now the_content(); endwhile; A: As of v5.2, this will no longer be an issue. get_the_content() and wp_trim_excerpt() are getting an optional new parameter (third and second respectively) of $post so you can use it outside the loop, bringing it in line with the functionality of all the other get_the_* functions. It only took 16 years... Reference on Trac A: This bug related to WordPress core bug https://core.trac.wordpress.org/ticket/42814 Most often it occurs when you call the function get_the_excerpt or get_the_content outside the Loop provided that excerpt or content is empty. So to fix it yourself you should find error place and check excerpt/content existing manually. For example: if(has_excerpt($post_id)) { $meta[] = sprintf('<meta name="description" content="%s">', get_the_excerpt($post_id) ); } A: If someone bumps in to this issue, the solution is to get the_content from the meta field and run it trough the_content filter like this: apply_filters('the_content', get_post_field('post_content', $post->id)); I made a short video explayining the whole thing if you wait untill the TLDR section... https://www.youtube.com/watch?v=vMguTNzFoUk
wordpress
{ "language": "en", "length": 333, "provenance": "stackexchange_00019.jsonl.gz:484811", "question_score": "5", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/298453" }
[ 0.0157470703125, -0.0203399658203125, 0.006328582763671875, -0.020751953125, -0.0015277862548828125, -0.030181884765625, 0.039794921875, -0.0200347900390625, 0.042144775390625, -0.0014047622680664062, -0.06439208984375, -0.03851318359375, -0.020843505859375, -0.019561767578125, -0.00823211669921875, -0.04571533203125, 0.0216827392578125, 0.002513885498046875, 0.04876708984375, -0.006916046142578125, 0.0147857666015625, 0.0161895751953125, 0.0184478759765625, 0.0309295654296875, 0.0014276504516601562, -0.033905029296875, 0.045379638671875, -0.01232147216796875, -0.015472412109375, -0.0455322265625, 0.0017747879028320312, 0.062286376953125, 0.032440185546875, 0.04315185546875, -0.1192626953125, -0.011566162109375, -0.007720947265625, 0.00380706787109375, -0.0300445556640625, 0.03509521484375, -0.01064300537109375, 0.0164642333984375, 0.0188751220703125, -0.0107269287109375, -0.0037250518798828125, -0.033538818359375, 0.010894775390625, -0.0594482421875, -0.0010318756103515625, 0.0265960693359375, 0.0135955810546875, 0.0033779144287109375, 0.00988006591796875, 0.0240631103515625, 0.005374908447265625, 0.009735107421875, 0.0215911865234375, 0.0016384124755859375, 0.0256195068359375, -0.0309295654296875, -0.036346435546875, 0.018707275390625, 0.02392578125, -0.0109710693359375, 0.006984710693359375, 0.0187835693359375, 0.014556884765625, 0.0308074951171875, -0.048309326171875, -0.01171875, 0.00785064697265625, -0.03094482421875, -0.0175018310546875, -0.03375244140625, 0.047332763671875, -0.023834228515625, -0.0244903564453125, -0.035125732421875, -0.01448822021484375, 0.06317138671875, -0.037689208984375, -0.03106689453125, -0.05902099609375, 0.0213165283203125, 0.01207733154296875, 0.05816650390625, -0.016754150390625, -0.019561767578125, 0.00897979736328125, -0.0142974853515625, 0.0011034011840820312, 0.03131103515625, 0.0447998046875, -0.041717529296875, -0.05438232421875, -0.047882080078125, 0.021728515625, 0.059173583984375, -0.0296478271484375, -0.0235137939453125, 0.0079193115234375, -0.033935546875, -0.00260162353515625, -0.0298919677734375, 0.01898193359375, 0.039886474609375, -0.017425537109375, 0.037841796875, 0.07647705078125, 0.0246734619140625, 0.0174713134765625, 0.03594970703125, -0.0175018310546875, -0.055328369140625, -0.004146575927734375, 0.039215087890625, -0.031585693359375, 0.0037631988525390625, 0.053314208984375, 0.0002932548522949219, 0.0081634521484375, 0.00664520263671875, -0.0117340087890625, -0.01177978515625, 0.00429534912109375, -0.0126953125, -0.0217132568359375, 0.0017843246459960938, 0.060699462890625, 0.03216552734375, -0.0201568603515625, -0.004581451416015625, 0.004100799560546875, 0.00527191162109375, 0.00115203857421875, -0.0232391357421875, 0.0030059814453125, -0.01410675048828125, -0.025543212890625, 0.0216064453125, -0.012176513671875, -0.0094451904296875, 0.019744873046875, -0.0296783447265625, 0.0018215179443359375, 0.0084686279296875, 0.046905517578125, 0.0206451416015625, -0.036468505859375, -0.074951171875, 0.029998779296875, 0.00887298583984375, 0.04119873046875, -0.0171356201171875, -0.03289794921875, -0.04052734375, -0.0258331298828125, -0.04144287109375, 0.0074920654296875, -0.0299530029296875, 0.049346923828125, -0.01380157470703125, -0.030242919921875, -0.0308990478515625, -0.0338134765625, -0.0022411346435546875, -0.056976318359375, -0.00421905517578125, 0.0202484130859375, 0.0085906982421875, 0.000797271728515625, -0.01324462890625, -0.008819580078125, -0.0032978057861328125, -0.007678985595703125, 0.013427734375, -0.02239990234375, -0.02215576171875, 0.034454345703125, 0.0213165283203125, -0.042083740234375, -0.0328369140625, 0.03131103515625, -0.02142333984375, -0.07781982421875, 0.034210205078125, 0.0007929801940917969, 0.01044464111328125, 0.034637451171875, -0.0181732177734375, 0.07080078125, 0.04803466796875, 0.00275421142578125, 0.0183258056640625, 0.0048675537109375, -0.027740478515625, -0.0087890625, 0.00836944580078125, -0.0028781890869140625, -0.01360321044921875, 0.0931396484375, -0.03570556640625, 0.0237274169921875, -0.0498046875, -0.054718017578125, -0.022918701171875, 0.0026531219482421875, 0.0067901611328125, -0.0203704833984375, 0.02734375, 0.0458984375, 0.039825439453125, -0.06640625, 0.025421142578125, -0.03045654296875, -0.00569915771484375, -0.0556640625, -0.01934814453125, -0.0174102783203125, 0.03741455078125, -0.00372314453125, -0.00038504600524902344, -0.0157928466796875, -0.022796630859375, 0.068359375, -0.0253753662109375, -0.0043792724609375, -0.0382080078125, 0.02197265625, -0.003681182861328125, -0.038818359375, 0.035491943359375, 0.019439697265625, 0.00981903076171875, -0.024993896484375, 0.0112457275390625, 0.00208282470703125, -0.04998779296875, -0.00568389892578125, 0.042694091796875, 0.04888916015625, 0.0416259765625, -0.021209716796875, -0.0438232421875, 0.0628662109375, -0.07794189453125, -0.0241851806640625, -0.024505615234375, 0.006198883056640625, 0.018310546875, 0.0634765625, -0.019134521484375, 0.019744873046875, 0.008575439453125, 0.00009328126907348633, 0.029022216796875, -0.0039825439453125, -0.0426025390625, -0.034912109375, 0.030792236328125, 0.0200653076171875, -0.011260986328125, -0.02606201171875, 0.002361297607421875, -0.0015106201171875, -0.0022373199462890625, 0.0284881591796875, 0.0178680419921875, 0.01262664794921875, -0.054595947265625, 0.00493621826171875, 0.0294036865234375, -0.0038623809814453125, 0.0171661376953125, -0.0007061958312988281, 0.0262603759765625, -0.053924560546875, 0.00896453857421875, 0.01206207275390625, 0.0007481575012207031, -0.0126953125, 0.032501220703125, -0.031951904296875, -0.01284027099609375, -0.01245880126953125, -0.00965118408203125, 0.0003116130828857422, 0.00839996337890625, 0.0117645263671875, -0.032623291015625, 0.0009446144104003906, 0.03570556640625, -0.028564453125, 0.05145263671875, -0.0088958740234375, -0.013458251953125, 0.078125, -0.0164031982421875, 0.0168609619140625, -0.0160064697265625, 0.0772705078125, 0.02899169921875, -0.0217742919921875, -0.00890350341796875, 0.0034923553466796875, 0.00399017333984375, 0.0104217529296875, 0.0235595703125, 0.0328369140625, -0.00304412841796875, -0.039093017578125, 0.01934814453125, 0.035430908203125, 0.0509033203125, 0.00921630859375, -0.026153564453125, -0.0196380615234375, 0.0513916015625, -0.10858154296875, -0.0855712890625, 0.0595703125, -0.054473876953125, -0.022491455078125, -0.006683349609375, -0.046112060546875, -0.0181121826171875, 0.020050048828125, -0.01401519775390625, -0.007274627685546875, -0.0222625732421875, -0.057647705078125, -0.0546875, -0.08905029296875, 0.0166473388671875, 0.00420379638671875, 0.05059814453125, -0.0033473968505859375, 0.054931640625, 0.007274627685546875, -0.06787109375, -0.01708984375, 0.03509521484375, 0.005527496337890625, 0.01136016845703125, -0.0210113525390625, 0.041473388671875, -0.03753662109375, 0.0177459716796875, -0.00008559226989746094, -0.0078277587890625, -0.00250244140625, -0.033477783203125, 0.0115203857421875, 0.01421356201171875, 0.02276611328125, 0.02691650390625, 0.005218505859375, 0.00737762451171875, 0.0227813720703125, -0.039337158203125, -0.05242919921875, 0.014617919921875, -0.06805419921875, -0.00995635986328125, 0.0760498046875, -0.006748199462890625, -0.0192108154296875, -0.024871826171875, -0.0222320556640625, 0.032135009765625, -0.0161285400390625, -0.007389068603515625, 0.07757568359375, -0.0194549560546875, -0.04400634765625, 0.00664520263671875, 0.017974853515625, 0.00901031494140625, 0.015716552734375, 0.00850677490234375, 0.054718017578125, 0.0174407958984375, 0.0020923614501953125, -0.04644775390625, -0.03680419921875, 0.0633544921875, 0.0362548828125, -0.0172576904296875, -0.0085601806640625, -0.0421142578125, -0.0032176971435546875, 0.05120849609375, -0.01001739501953125, -0.035888671875, -0.027130126953125, 0.0176239013671875, 0.0199737548828125, -0.043792724609375, 0.04638671875, -0.03656005859375, 0.00717926025390625, -0.0244598388671875, -0.01385498046875, -0.004230499267578125, -0.019073486328125, 0.0308685302734375, 0.01035308837890625, -0.004360198974609375, 0.02685546875, 0.00295257568359375, 0.005401611328125, 0.035888671875, -0.007457733154296875, 0.0030078887939453125, -0.0122528076171875, -0.01082611083984375, -0.0950927734375, -0.02001953125, 0.0185546875, 0.07452392578125, -0.0255279541015625, -0.005718231201171875, -0.038848876953125, 0.051605224609375, 0.036834716796875, -0.0091552734375, 0.035980224609375, -0.005336761474609375, 0.0103912353515625, 0.01079559326171875, 0.04058837890625, -0.033050537109375, 0.002227783203125, -0.0174713134765625, -0.038543701171875, -0.0037670135498046875, -0.052032470703125, 0.0159454345703125, -0.036163330078125, -0.016143798828125, -0.043182373046875, -0.00797271728515625, 0.0278167724609375, 0.00823974609375, -0.006137847900390625, 0.0238800048828125, 0.014495849609375, -0.016815185546875, 0.058746337890625, 0.024139404296875, -0.0341796875, -0.0133209228515625, 0.08465576171875, 0.03326416015625, -0.036224365234375, -0.0160980224609375, -0.0309600830078125, 0.048431396484375, -0.017730712890625, 0.051361083984375, 0.056549072265625, -0.04266357421875, 0.06817626953125, 0.0289154052734375, -0.0174102783203125, 0.00927734375, 0.03875732421875, 0.006526947021484375, -0.0263214111328125, 0.0047454833984375, -0.0180511474609375, 0.0246734619140625, 0.01515960693359375, -0.01500701904296875, -0.00954437255859375, 0.03143310546875, 0.0110015869140625, -0.045745849609375, 0.06671142578125, 0.0169525146484375, -0.029266357421875, 0.014373779296875, 0.0250701904296875, 0.01084136962890625, -0.0187835693359375, 0.0379638671875, 0.0138092041015625, 0.0273590087890625, 0.0184326171875, 0.0180816650390625, 0.06201171875, -0.025634765625, 0.038482666015625, 0.032562255859375, 0.005641937255859375, -0.026397705078125, -0.00833892822265625, 0.01424407958984375, -0.0259857177734375, -0.08624267578125, 0.0220184326171875, -0.0044097900390625, 0.0248565673828125, 0.0201263427734375, 0.01543426513671875, 0.02276611328125, 0.0222015380859375, 0.0147705078125, -0.00740814208984375, 0.0119171142578125, 0.0160064697265625, -0.0213165283203125, -0.00981903076171875, -0.0030975341796875, -0.014068603515625, -0.0286865234375, 0.08795166015625, -0.0129241943359375, 0.02886962890625, -0.0160980224609375, 0.009185791015625, 0.0234222412109375, 0.068359375, 0.01171112060546875, -0.0362548828125, -0.0181427001953125, 0.05853271484375, -0.008392333984375, -0.039703369140625, -0.0283203125, 0.0263671875, 0.053863525390625, -0.0143280029296875, -0.015533447265625, 0.0009479522705078125, -0.007549285888671875, 0.001956939697265625, 0.004459381103515625, -0.036468505859375, -0.021209716796875, -0.0152435302734375, 0.05023193359375, 0.041839599609375, -0.0023250579833984375, 0.0037364959716796875, -0.0161590576171875, 0.0038661956787109375, 0.01226806640625, 0.00710296630859375, -0.0026702880859375, 0.006305694580078125, -0.0084075927734375, -0.004608154296875, -0.043731689453125, 0.0250396728515625, -0.005847930908203125, 0.0160980224609375, -0.00644683837890625, -0.0030345916748046875, 0.01383209228515625, -0.01229095458984375, 0.0200347900390625, -0.0286407470703125, -0.001796722412109375, -0.060333251953125, 0.01258087158203125, 0.044403076171875, 0.048187255859375, -0.0174102783203125, 0.029083251953125, -0.05401611328125, -0.037109375, 0.0033664703369140625, -0.01525115966796875, -0.06884765625, -0.0225067138671875, -0.01338958740234375, -0.01285552978515625, -0.026611328125, -0.027557373046875, -0.020233154296875, 0.04022216796875, 0.0242462158203125, 0.044158935546875, -0.006572723388671875, 0.051422119140625, 0.0357666015625, 0.0030269622802734375, 0.029144287109375, 0.00841522216796875, -0.0135955810546875, -0.00858306884765625, 0.0095367431640625, -0.056884765625, -0.004917144775390625, -0.0007762908935546875, 0.029632568359375, 0.0141754150390625, -0.024627685546875, -0.0015106201171875, -0.00098419189453125, 0.0005092620849609375, 0.0010051727294921875, -0.01393890380859375, 0.01107025146484375, 0.01438140869140625, -0.057586669921875, 0.060089111328125, -0.005580902099609375, 0.049224853515625, 0.026641845703125, 0.00783538818359375, 0.0222930908203125, -0.0212554931640625, 0.03399658203125, 0.00548553466796875, -0.0128021240234375, 0.0209503173828125, 0.04986572265625, 0.0119781494140625, 0.02978515625, 0.0116424560546875, -0.0010366439819335938, -0.00385284423828125, 0.048736572265625, 0.00775909423828125, -0.047698974609375, 0.039276123046875, 0.00376129150390625, -0.00679779052734375, 0.0070343017578125, -0.0299835205078125, 0.004894256591796875, 0.01155853271484375, 0.045257568359375, -0.043731689453125, 0.01415252685546875, 0.0181427001953125, -0.00567626953125, -0.0222320556640625, -0.00342559814453125, -0.00661468505859375, 0.01568603515625, 0.06103515625, -0.01605224609375, -0.0200958251953125, 0.0380859375, -0.000040411949157714844, -0.0197296142578125, 0.0019931793212890625, 0.042388916015625, 0.023956298828125, -0.016693115234375, 0.024383544921875, 0.01849365234375, 0.0158538818359375, -0.0128936767578125, 0.032196044921875, -0.060943603515625, 0.008331298828125, 0.00016498565673828125, -0.002960205078125, -0.0035610198974609375, -0.003414154052734375, -0.034912109375, 0.034088134765625, -0.006298065185546875, 0.057861328125, -0.0214996337890625, 0.007625579833984375, 0.049041748046875, -0.039642333984375, -0.0066680908203125, 0.01384735107421875, 0.0094757080078125, 0.0300140380859375, -0.0185546875, 0.0113067626953125, -0.0238494873046875, 0.00838470458984375, 0.0025882720947265625, 0.032440185546875, 0.07489013671875, -0.0253143310546875, -0.035430908203125, 0.033050537109375, -0.0157623291015625, -0.01152801513671875, -0.01107025146484375, 0.05078125, -0.06365966796875, -0.0114593505859375, 0.03582763671875, 0.036376953125, -0.0303802490234375, 0.0069122314453125, -0.0350341796875, 0.09539794921875, -0.036407470703125, -0.01081085205078125, 0.01325225830078125, 0.03509521484375, -0.02783203125, 0.0176239013671875, -0.06640625, 0.08013916015625, 0.0396728515625, 0.053253173828125, -0.074951171875, -0.0155792236328125, 0.0023956298828125, 0.0225830078125, 0.0394287109375, -0.002227783203125, 0.007427215576171875, -0.0273284912109375, -0.001911163330078125, 0.0273284912109375, -0.01496124267578125, 0.0010652542114257812, 0.026702880859375, 0.036834716796875, 0.0234527587890625, -0.042388916015625, 0.01041412353515625, -0.028717041015625, -0.006290435791015625, 0.052886962890625, 0.024871826171875, 0.02008056640625, -0.00919342041015625, -0.014801025390625, -0.0318603515625, -0.0151214599609375, 0.0187225341796875, 0.0218505859375, -0.028076171875, 0.07598876953125, 0.0225982666015625, -0.06866455078125, -0.004276275634765625, -0.06085205078125, 0.059051513671875, -0.017974853515625, 0.0269775390625, 0.01360321044921875, 0.017181396484375, 0.05224609375, 0.00249481201171875, -0.0010251998901367188, 0.024169921875, -0.016571044921875, 0.0244293212890625, 0.0299530029296875, 0.02081298828125, -0.023162841796875, -0.00907135009765625, 0.0153045654296875, 0.0238189697265625, -0.0175628662109375, -0.0211334228515625, 0.00247955322265625, 0.00626373291015625, -0.004764556884765625, 0.0005230903625488281, 0.0012025833129882812, 0.0631103515625, 0.05816650390625, -0.02667236328125, -0.03369140625, 0.00531005859375, 0.0252227783203125, -0.0032749176025390625, 0.0002033710479736328, 0.036407470703125, -0.0458984375, -0.048248291015625, 0.005252838134765625, 0.042755126953125, 0.0615234375, -0.0042572021484375, 0.06781005859375, -0.04345703125, -0.03057861328125, 0.00954437255859375, 0.0243072509765625, -0.039154052734375, -0.0097808837890625, -0.01287078857421875, -0.05194091796875, 0.0273284912109375, 0.003932952880859375, 0.016998291015625, -0.032440185546875, 0.0191802978515625, 0.0205535888671875, -0.034149169921875, -0.0097198486328125, 0.020111083984375, -0.0224456787109375, -0.0269317626953125, -0.018310546875, -0.04119873046875, -0.00705718994140625, -0.008453369140625, -0.01308441162109375, 0.00836181640625, -0.006183624267578125, 0.020050048828125, -0.00269317626953125, 0.00653076171875, -0.0185699462890625, 0.022979736328125, 0.035858154296875, 0.03125, 0.052978515625, -0.073974609375, -0.00891876220703125, 0.004940032958984375, -0.053253173828125, 0.005115509033203125, 0.036712646484375, -0.0379638671875, 0.030364990234375, -0.020599365234375, 0.0264434814453125, 0.053558349609375, -0.0287017822265625, -0.03863525390625, 0.032073974609375, 0.052276611328125, 0.00844573974609375, -0.024993896484375, -0.0255889892578125, -0.004741668701171875, 0.057952880859375, -0.020538330078125, 0.0802001953125, -0.038116455078125, 0.032379150390625, -0.0257568359375, 0.03436279296875, -0.04541015625, -0.030792236328125, 0.0241546630859375, 0.01525115966796875, 0.02691650390625, -0.006900787353515625, -0.06658935546875, 0.016815185546875, 0.045745849609375, -0.02392578125, 0.04278564453125, 0.004100799560546875, -0.00907135009765625, -0.0439453125, 0.0106201171875, -0.004665374755859375, 0.029388427734375, 0.0097808837890625, -0.0203857421875, 0.0570068359375, 0.046722412109375, -0.00966644287109375, 0.0309295654296875, 0.009735107421875, -0.036773681640625, 0.0165252685546875, -0.031341552734375, 0.0170440673828125, 0.0330810546875, 0.0186309814453125, -0.00830078125, -0.029266357421875, -0.0219879150390625, 0.01556396484375, 0.0238494873046875, -0.00774383544921875, 0.0150604248046875, -0.00476837158203125, 0.017578125, -0.034393310546875, 0.0181121826171875, -0.02838134765625, -0.00887298583984375, -0.0016489028930664062, 0.02191162109375, 0.03216552734375, 0.0013437271118164062, 0.0002923011779785156, -0.042236328125, -0.0313720703125, -0.014678955078125, -0.01396942138671875, -0.0170135498046875, 0.027496337890625, 0.000020325183868408203, 0.018798828125, 0.005611419677734375, -0.0390625, 0.0119781494140625, -0.01222991943359375, 0.0426025390625, -0.036773681640625, 0.0024852752685546875, 0.0031566619873046875, -0.000060439109802246094, -0.055999755859375, 0.0037860870361328125, -0.04046630859375, 0.0006127357482910156, -0.007236480712890625, 0.0175933837890625, 0.037811279296875, -0.016082763671875, -0.04498291015625, 0.015380859375, -0.006038665771484375, 0.056640625, -0.00720977783203125, 0.011444091796875, 0.0421142578125, 0.0074615478515625, -0.0399169921875, -0.08123779296875, 0.005039215087890625, -0.046051025390625, 0.01416778564453125, 0.0012254714965820312, 0.007198333740234375, 0.0185546875, -0.0271759033203125, -0.0423583984375, -0.0021724700927734375, 0.0172576904296875, -0.0234375, -0.04656982421875, 0.00341033935546875, 0.024627685546875, 0.033111572265625, -0.0010080337524414062, -0.0066070556640625, -0.058349609375, -0.005916595458984375, 0.002960205078125, -0.03143310546875, 0.06829833984375, -0.02191162109375, -0.0672607421875, -0.02655029296875, -0.025390625, -0.01036834716796875, -0.0284271240234375, 0.0201873779296875, -0.01519012451171875, 0.036956787109375, -0.01366424560546875, -0.006343841552734375, -0.01151275634765625, -0.0191802978515625, -0.0126953125, -0.01552581787109375, -0.026641845703125, -0.0169525146484375, 0.059844970703125, 0.035614013671875, 0.01776123046875, -0.0306396484375, -0.01123809814453125, -0.01064300537109375, -0.033782958984375, -0.0216217041015625, 0.032318115234375, -0.07366943359375, -0.015777587890625, -0.0115966796875, -0.0287933349609375, 0.01548004150390625, 0.0017328262329101562, -0.047760009765625, -0.0020694732666015625, -0.043426513671875, 0.012237548828125, -0.045440673828125, -0.0660400390625, -0.002887725830078125, 0.00331878662109375, -0.01143646240234375, -0.006259918212890625, 0.038818359375, -0.03521728515625, 0.0516357421875, 0.0243988037109375, 0.00037217140197753906, -0.03912353515625, 0.019989013671875, 0.0001596212387084961, 0.006107330322265625, -0.04388427734375, -0.0185394287109375, 0.005237579345703125, 0.0149688720703125, -0.001628875732421875, 0.0208282470703125, 0.0124969482421875, 0.01910400390625, -0.00882720947265625, 0.004486083984375, -0.04052734375, 0.06689453125, 0.005279541015625, -0.0015125274658203125, -0.0172271728515625, 0.0194244384765625, 0.026702880859375, -0.0181427001953125, -0.00225830078125, 0.0215911865234375, -0.03399658203125, -0.03997802734375, -0.0027751922607421875, -0.00424957275390625, 0.01486968994140625, -0.0002434253692626953 ]
39eda66e5d8627e91cded0f9af2796e52599031c
Wordpress Stackexchange Q: GitHub .md files to WordPress pages I saw some websites that manage their information/documentation in a GitHub repository. This allows everyone to create issues if something is wrong or outdated, propose changes by forking/request push etc. Is it possible to link WordPress to a GitHub repository? Expected behavior: every .md-file in the repository becomes a page (or post) in WordPress (ideally keeping the markdown layout). When a change is made in the GitHub repository, the changes should immediately reflect in WordPress. A: I have found a plugin called WordPress GitHub Sync. It should be able to synchronize both ways. It hasn't been updated in 5 months and it lacks a lot of documentation but I was able to import a file from my GitHub repository into WordPress. I still have to figure out how it exactly works, but it's what I have been looking for.
Q: GitHub .md files to WordPress pages I saw some websites that manage their information/documentation in a GitHub repository. This allows everyone to create issues if something is wrong or outdated, propose changes by forking/request push etc. Is it possible to link WordPress to a GitHub repository? Expected behavior: every .md-file in the repository becomes a page (or post) in WordPress (ideally keeping the markdown layout). When a change is made in the GitHub repository, the changes should immediately reflect in WordPress. A: I have found a plugin called WordPress GitHub Sync. It should be able to synchronize both ways. It hasn't been updated in 5 months and it lacks a lot of documentation but I was able to import a file from my GitHub repository into WordPress. I still have to figure out how it exactly works, but it's what I have been looking for.
wordpress
{ "language": "en", "length": 146, "provenance": "stackexchange_00019.jsonl.gz:484859", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/298600" }
[ 0.027801513671875, -0.01009368896484375, -0.0160369873046875, -0.01218414306640625, -0.002349853515625, -0.0269775390625, 0.019683837890625, -0.0117950439453125, 0.003108978271484375, 0.0275726318359375, -0.015838623046875, 0.00844573974609375, 0.023193359375, -0.018218994140625, 0.0068206787109375, -0.0107269287109375, 0.053131103515625, -0.00928497314453125, 0.0645751953125, 0.01404571533203125, 0.0003719329833984375, 0.0312042236328125, 0.0804443359375, -0.01641845703125, 0.03155517578125, 0.01042938232421875, 0.05035400390625, -0.0177001953125, 0.01535797119140625, 0.004535675048828125, 0.034332275390625, -0.059417724609375, 0.03790283203125, -0.01277923583984375, -0.0185546875, -0.034881591796875, 0.056121826171875, -0.04156494140625, -0.0304412841796875, 0.046539306640625, 0.038421630859375, -0.01467132568359375, 0.0782470703125, -0.0302734375, 0.025054931640625, -0.011199951171875, 0.02752685546875, -0.0660400390625, -0.000255584716796875, 0.00397491455078125, 0.0269775390625, 0.01435089111328125, 0.0207061767578125, 0.02923583984375, 0.01580810546875, 0.0303497314453125, 0.00018656253814697266, -0.02239990234375, 0.0271759033203125, -0.031982421875, -0.0245361328125, -0.0202484130859375, 0.0268402099609375, 0.02130126953125, -0.01506805419921875, -0.01245880126953125, -0.052276611328125, 0.019317626953125, -0.053131103515625, -0.01947021484375, 0.03863525390625, -0.058624267578125, -0.01617431640625, -0.0164337158203125, 0.006931304931640625, 0.033782958984375, 0.0006132125854492188, 0.0189056396484375, -0.00009775161743164062, 0.032745361328125, 0.006137847900390625, -0.0258026123046875, 0.01898193359375, -0.049957275390625, -0.009033203125, -0.03778076171875, -0.01045989990234375, 0.01528167724609375, -0.041168212890625, 0.00997161865234375, -0.0195465087890625, -0.00823974609375, -0.092041015625, 0.055816650390625, 0.0298919677734375, 0.00794219970703125, -0.0285186767578125, -0.024688720703125, -0.0002104043960571289, 0.050994873046875, -0.0011529922485351562, -0.0350341796875, 0.07421875, -0.037750244140625, -0.00980377197265625, 0.08746337890625, -0.007904052734375, -0.0254364013671875, -0.0025501251220703125, 0.0032405853271484375, 0.005535125732421875, -0.036468505859375, -0.03546142578125, -0.060577392578125, 0.04022216796875, 0.062164306640625, -0.02520751953125, 0.035858154296875, 0.00928497314453125, -0.004901885986328125, 0.00504302978515625, 0.0238037109375, 0.0216827392578125, 0.004261016845703125, -0.0143585205078125, -0.0046539306640625, -0.0009813308715820312, -0.055938720703125, -0.043365478515625, 0.0160980224609375, -0.00848388671875, 0.005279541015625, 0.06658935546875, 0.056732177734375, 0.01033782958984375, -0.00920867919921875, 0.00550079345703125, -0.017669677734375, -0.003940582275390625, 0.04150390625, -0.0267791748046875, -0.026397705078125, 0.029815673828125, -0.036224365234375, 0.0055999755859375, 0.023712158203125, 0.01515960693359375, 0.0185546875, -0.004913330078125, -0.0292510986328125, 0.003124237060546875, -0.004150390625, 0.026031494140625, -0.00550079345703125, 0.051971435546875, -0.07159423828125, 0.026123046875, -0.057525634765625, 0.0521240234375, -0.03228759765625, 0.001964569091796875, -0.00428009033203125, 0.034393310546875, 0.0173492431640625, 0.006572723388671875, 0.0122833251953125, -0.01275634765625, 0.000024318695068359375, 0.023193359375, -0.0164031982421875, 0.0165863037109375, -0.01175689697265625, 0.034027099609375, -0.006206512451171875, -0.00682830810546875, 0.0203704833984375, 0.0516357421875, 0.006572723388671875, -0.00522613525390625, 0.07293701171875, 0.00484466552734375, -0.02008056640625, 0.05499267578125, -0.032989501953125, -0.00994110107421875, 0.0149688720703125, 0.00846099853515625, 0.0306396484375, 0.0104522705078125, 0.0272979736328125, -0.0174560546875, 0.00534820556640625, -0.03143310546875, 0.013092041015625, -0.01161956787109375, -0.04034423828125, 0.04156494140625, 0.00716400146484375, -0.00609588623046875, -0.004810333251953125, -0.042236328125, 0.012664794921875, -0.0084991455078125, 0.01580810546875, -0.037872314453125, -0.0022945404052734375, -0.021881103515625, 0.041717529296875, -0.02667236328125, -0.0190582275390625, 0.014892578125, -0.0228729248046875, -0.00437164306640625, -0.0158538818359375, -0.0227203369140625, 0.010498046875, 0.01390838623046875, 0.0021514892578125, -0.015350341796875, 0.01201629638671875, -0.028900146484375, 0.01824951171875, -0.03619384765625, 0.03717041015625, -0.0177001953125, -0.0035572052001953125, -0.042816162109375, -0.01387786865234375, -0.06427001953125, 0.0084686279296875, -0.039581298828125, 0.044830322265625, -0.014068603515625, 0.0249786376953125, -0.0039520263671875, -0.0079803466796875, -0.0202789306640625, -0.0477294921875, 0.016143798828125, 0.0306396484375, 0.0350341796875, 0.0172119140625, -0.01023101806640625, -0.006641387939453125, 0.044586181640625, -0.0027446746826171875, 0.0272064208984375, -0.026885986328125, 0.01314544677734375, 0.03082275390625, 0.03900146484375, -0.00965118408203125, 0.00510406494140625, 0.00562286376953125, 0.0178680419921875, 0.0021610260009765625, -0.018341064453125, -0.037322998046875, -0.0190277099609375, 0.0018892288208007812, 0.011383056640625, -0.08203125, -0.06280517578125, -0.027923583984375, -0.01502227783203125, 0.0018377304077148438, 0.0343017578125, 0.03485107421875, -0.00983428955078125, -0.0226593017578125, 0.01806640625, 0.035003662109375, 0.0146484375, 0.047027587890625, 0.058929443359375, 0.034027099609375, -0.005336761474609375, -0.051605224609375, 0.03460693359375, 0.05535888671875, -0.0176544189453125, 0.0019054412841796875, 0.024261474609375, -0.0118408203125, 0.0146636962890625, -0.004276275634765625, 0.0254058837890625, -0.0235595703125, -0.053619384765625, 0.0042572021484375, 0.0120086669921875, 0.031890869140625, 0.0018815994262695312, -0.0103607177734375, 0.0114288330078125, 0.01593017578125, 0.066650390625, -0.03411865234375, 0.043426513671875, -0.043975830078125, 0.060302734375, 0.057037353515625, -0.033111572265625, 0.0174407958984375, 0.0068206787109375, -0.01293182373046875, 0.01837158203125, 0.01239013671875, -0.00981903076171875, -0.0157623291015625, -0.03875732421875, -0.01340484619140625, -0.005390167236328125, -0.00576019287109375, -0.0260772705078125, -0.0487060546875, -0.033111572265625, -0.01352691650390625, -0.11639404296875, -0.05560302734375, 0.037261962890625, -0.02581787109375, 0.0309600830078125, 0.007755279541015625, -0.01093292236328125, -0.043609619140625, 0.056915283203125, 0.0105438232421875, -0.005535125732421875, -0.045623779296875, -0.07720947265625, -0.08514404296875, -0.0753173828125, 0.00844573974609375, 0.0004839897155761719, 0.00371551513671875, 0.01336669921875, 0.005390167236328125, 0.0005908012390136719, -0.033355712890625, 0.0193634033203125, 0.08599853515625, -0.005176544189453125, -0.025115966796875, 0.029144287109375, -0.035064697265625, 0.020111083984375, -0.0019025802612304688, 0.0797119140625, 0.045074462890625, -0.03515625, -0.00336456298828125, 0.0020236968994140625, 0.006145477294921875, 0.01279449462890625, 0.0141448974609375, -0.005466461181640625, -0.010711669921875, 0.00859832763671875, -0.044677734375, 0.03271484375, -0.0063018798828125, 0.00274658203125, -0.0238037109375, -0.00258636474609375, -0.041900634765625, -0.00777435302734375, -0.01227569580078125, 0.00875091552734375, 0.022430419921875, 0.0367431640625, 0.0178375244140625, -0.02978515625, -0.042877197265625, -0.05291748046875, -0.04412841796875, 0.00562286376953125, -0.0019741058349609375, 0.02020263671875, -0.0135650634765625, 0.0300140380859375, -0.034576416015625, 0.06842041015625, -0.08074951171875, 0.0031414031982421875, 0.049346923828125, 0.0287628173828125, 0.035064697265625, -0.013641357421875, -0.033416748046875, -0.0240631103515625, 0.0653076171875, -0.0165557861328125, -0.01348114013671875, 0.004863739013671875, 0.004116058349609375, -0.021484375, 0.0098724365234375, -0.037353515625, -0.01476287841796875, -0.0031299591064453125, 0.020721435546875, -0.019317626953125, 0.005924224853515625, 0.006488800048828125, -0.0018205642700195312, 0.03076171875, -0.034454345703125, -0.005359649658203125, 0.034881591796875, -0.014984130859375, 0.0123291015625, -0.01024627685546875, -0.01470947265625, 0.0174407958984375, -0.0070037841796875, -0.052978515625, 0.00861358642578125, -0.030517578125, 0.02056884765625, 0.0162811279296875, -0.0550537109375, -0.01265716552734375, 0.0087890625, 0.01392364501953125, 0.0223388671875, 0.01209259033203125, -0.00463104248046875, -0.01434326171875, -0.01806640625, 0.032806396484375, -0.04620361328125, 0.0036106109619140625, -0.0133514404296875, -0.053985595703125, 0.020538330078125, -0.01132965087890625, 0.0244293212890625, 0.004222869873046875, -0.03424072265625, -0.07147216796875, -0.02020263671875, 0.01611328125, -0.002162933349609375, 0.00559234619140625, -0.0062713623046875, -0.00769805908203125, -0.042724609375, 0.010467529296875, -0.0067291259765625, -0.0196685791015625, 0.0126495361328125, 0.01434326171875, 0.018218994140625, -0.0136260986328125, -0.0273284912109375, 0.045806884765625, 0.040802001953125, 0.0007987022399902344, 0.06005859375, 0.0384521484375, -0.004894256591796875, 0.0262603759765625, 0.0201873779296875, -0.015045166015625, 0.0117950439453125, -0.030792236328125, 0.0266265869140625, -0.0130767822265625, -0.007015228271484375, 0.032012939453125, 0.0184478759765625, 0.025787353515625, -0.0163421630859375, -0.0140380859375, 0.0183868408203125, 0.0216064453125, -0.0261993408203125, 0.031097412109375, -0.0027866363525390625, -0.0275726318359375, 0.01093292236328125, -0.06353759765625, 0.0552978515625, 0.019256591796875, -0.0080413818359375, 0.0374755859375, 0.0253143310546875, -0.01438140869140625, -0.01812744140625, -0.049102783203125, -0.005947113037109375, -0.019744873046875, 0.01132965087890625, -0.012298583984375, -0.0022125244140625, -0.0310821533203125, 0.12017822265625, 0.047515869140625, -0.0304107666015625, 0.030181884765625, -0.0285186767578125, 0.0173187255859375, -0.0250244140625, 0.01003265380859375, 0.0292816162109375, -0.0142364501953125, -0.0236663818359375, 0.007144927978515625, -0.006175994873046875, -0.050201416015625, -0.039886474609375, 0.0282745361328125, -0.008331298828125, -0.0077056884765625, 0.005367279052734375, 0.0185699462890625, 0.003719329833984375, 0.0016222000122070312, -0.016815185546875, 0.04595947265625, 0.055999755859375, -0.0177764892578125, 0.012542724609375, 0.0150604248046875, -0.00745391845703125, -0.037384033203125, -0.002368927001953125, -0.029144287109375, 0.0231475830078125, 0.007099151611328125, 0.02386474609375, -0.00980377197265625, -0.051422119140625, 0.029388427734375, -0.0439453125, -0.002719879150390625, -0.01824951171875, -0.01288604736328125, 0.01473236083984375, -0.00799560546875, -0.01471710205078125, 0.0164642333984375, 0.00397491455078125, 0.01073455810546875, -0.0007982254028320312, 0.0247344970703125, 0.01439666748046875, -0.01039886474609375, -0.0189971923828125, -0.019622802734375, 0.00275421142578125, 0.002349853515625, -0.021453857421875, -0.01035308837890625, -0.058258056640625, 0.0099945068359375, -0.03173828125, -0.0160675048828125, 0.03826904296875, -0.022125244140625, 0.00843048095703125, -0.0465087890625, 0.0152587890625, -0.1029052734375, -0.0174713134765625, 0.08056640625, 0.0650634765625, -0.0615234375, -0.005138397216796875, -0.042144775390625, -0.025054931640625, 0.0116729736328125, -0.0157318115234375, -0.042236328125, 0.0002994537353515625, 0.006099700927734375, 0.00997161865234375, -0.007518768310546875, 0.004642486572265625, -0.0222625732421875, 0.0246124267578125, 0.01171875, 0.0181732177734375, 0.021331787109375, 0.028900146484375, -0.0360107421875, 0.03704833984375, 0.01513671875, 0.008575439453125, -0.02642822265625, -0.0278472900390625, 0.004474639892578125, -0.04443359375, 0.00847625732421875, -0.003604888916015625, -0.0284881591796875, 0.012939453125, 0.033538818359375, 0.0157318115234375, 0.016815185546875, -0.0156707763671875, 0.009674072265625, -0.0105133056640625, -0.0030765533447265625, -0.0029201507568359375, -0.0254364013671875, 0.038970947265625, 0.002040863037109375, 0.03277587890625, -0.01151275634765625, 0.00310516357421875, -0.018402099609375, 0.002941131591796875, -0.00464630126953125, 0.00328826904296875, -0.044036865234375, 0.05657958984375, 0.05841064453125, -0.0028247833251953125, 0.03851318359375, 0.00738525390625, -0.00492095947265625, 0.007053375244140625, 0.054656982421875, -0.02154541015625, -0.01157379150390625, -0.006671905517578125, -0.01416778564453125, -0.030426025390625, -0.050201416015625, -0.026275634765625, 0.01081085205078125, 0.027191162109375, 0.020294189453125, -0.036163330078125, -0.003093719482421875, -0.0241546630859375, -0.022705078125, 0.0311431884765625, 0.0074920654296875, -0.04864501953125, -0.0499267578125, -0.01125335693359375, -0.050445556640625, -0.03253173828125, -0.0241241455078125, 0.01849365234375, -0.005161285400390625, -0.00872802734375, 0.04412841796875, 0.033599853515625, 0.037017822265625, -0.01025390625, -0.0212554931640625, 0.027435302734375, -0.01268768310546875, -0.0196685791015625, 0.0116424560546875, -0.00998687744140625, -0.01047515869140625, 0.050994873046875, -0.04840087890625, 0.047149658203125, 0.01003265380859375, -0.00447845458984375, 0.0184326171875, 0.0185089111328125, -0.01030731201171875, -0.005893707275390625, 0.00226593017578125, -0.008636474609375, -0.0284881591796875, -0.0277099609375, 0.00682830810546875, 0.0278472900390625, -0.00998687744140625, 0.024322509765625, -0.00635528564453125, -0.01528167724609375, 0.00821685791015625, 0.05853271484375, 0.056396484375, -0.0252685546875, -0.0197296142578125, 0.0552978515625, -0.00673675537109375, -0.0390625, -0.03240966796875, 0.0127410888671875, -0.0291900634765625, 0.01407623291015625, -0.023193359375, -0.0033321380615234375, 0.00839996337890625, -0.05230712890625, -0.030670166015625, 0.08441162109375, -0.0013360977172851562, -0.01406097412109375, 0.031463623046875, 0.0419921875, -0.044586181640625, 0.02294921875, -0.01824951171875, 0.044219970703125, 0.002552032470703125, 0.006744384765625, -0.01419830322265625, -0.00269317626953125, 0.005634307861328125, 0.01363372802734375, 0.03192138671875, 0.022308349609375, -0.06439208984375, -0.00835418701171875, 0.044921875, 0.0132904052734375, 0.01018524169921875, 0.08001708984375, -0.0198211669921875, -0.04144287109375, -0.0252838134765625, -0.0096282958984375, 0.020172119140625, -0.06304931640625, -0.0182037353515625, -0.006134033203125, 0.00726318359375, -0.0086212158203125, -0.0107574462890625, 0.03826904296875, -0.0151824951171875, -0.007904052734375, -0.00017118453979492188, -0.0079803466796875, 0.055511474609375, -0.00507354736328125, 0.04296875, 0.0261993408203125, 0.0374755859375, -0.01184844970703125, 0.04937744140625, -0.012725830078125, -0.0002560615539550781, 0.0232086181640625, 0.00972747802734375, 0.049530029296875, -0.03277587890625, -0.0169830322265625, -0.0085906982421875, 0.00457763671875, 0.11566162109375, 0.0083770751953125, 0.04364013671875, -0.08538818359375, -0.054779052734375, 0.0127105712890625, 0.11956787109375, -0.04498291015625, -0.03302001953125, 0.0148468017578125, -0.004985809326171875, -0.0048370361328125, -0.03582763671875, -0.0242919921875, -0.031158447265625, -0.0035686492919921875, -0.0151824951171875, -0.01068878173828125, -0.00722503662109375, 0.0211181640625, -0.016998291015625, -0.0145721435546875, 0.00533294677734375, -0.00965118408203125, -0.03668212890625, 0.07379150390625, 0.0257720947265625, -0.01119232177734375, -0.03790283203125, 0.048614501953125, 0.046875, 0.018157958984375, 0.004871368408203125, 0.056427001953125, -0.02490234375, 0.007015228271484375, -0.051361083984375, -0.09991455078125, 0.00731658935546875, 0.048858642578125, -0.006885528564453125, 0.018890380859375, 0.0416259765625, 0.047698974609375, -0.005580902099609375, -0.02587890625, 0.01406097412109375, -0.0235137939453125, -0.0023555755615234375, -0.014404296875, 0.00165557861328125, 0.021331787109375, -0.0115966796875, 0.0003662109375, 0.00013065338134765625, 0.045501708984375, -0.022918701171875, 0.008819580078125, -0.00864410400390625, -0.03729248046875, 0.042266845703125, -0.027374267578125, 0.035064697265625, -0.00917816162109375, -0.028472900390625, -0.036285400390625, 0.004352569580078125, 0.0297698974609375, -0.008148193359375, 0.031646728515625, 0.0123291015625, 0.0002598762512207031, 0.047119140625, -0.01348114013671875, -0.0006933212280273438, 0.0086517333984375, 0.01232147216796875, -0.03826904296875, 0.0167083740234375, -0.0148162841796875, -0.03173828125, -0.0204010009765625, -0.0143280029296875, 0.03515625, 0.00821685791015625, 0.052032470703125, -0.01236724853515625, 0.0219573974609375, -0.01097869873046875, -0.01546478271484375, -0.0065765380859375, -0.0097198486328125, -0.0018911361694335938, -0.0220489501953125, -0.02325439453125, 0.00916290283203125, -0.0265655517578125, 0.016510009765625, -0.006927490234375, -0.034027099609375, -0.005489349365234375, -0.03857421875, 0.0210723876953125, 0.041534423828125, -0.003387451171875, -0.0369873046875, -0.00970458984375, 0.0189056396484375, -0.0005784034729003906, -0.00687408447265625, -0.0260162353515625, 0.0066680908203125, 0.0305633544921875, 0.0234222412109375, -0.01197052001953125, -0.006011962890625, -0.01512908935546875, -0.006916046142578125, 0.0263519287109375, 0.024139404296875, -0.0023899078369140625, 0.01070404052734375, -0.01788330078125, 0.0037250518798828125, 0.0070037841796875, 0.00449371337890625, 0.00493621826171875, -0.07464599609375, 0.0028324127197265625, 0.0426025390625, 0.0406494140625, -0.0023403167724609375, 0.01448822021484375, 0.0185394287109375, -0.0238800048828125, 0.0074920654296875, -0.013031005859375, -0.017578125, -0.04547119140625, -0.00817108154296875, 0.0293121337890625, -0.0285797119140625, -0.001796722412109375, -0.038116455078125, -0.0037250518798828125, 0.022674560546875, -0.021148681640625, -0.02001953125, 0.01342010498046875, -0.03570556640625, 0.03826904296875, -0.0283660888671875, 0.0293426513671875, -0.037506103515625, -0.01174163818359375, -0.022613525390625, -0.06695556640625, -0.048370361328125, 0.08233642578125, -0.03363037109375, 0.02587890625, 0.03314208984375, -0.0236663818359375, -0.00780487060546875, 0.0179443359375, 0.0377197265625, 0.07269287109375, 0.018035888671875, -0.011474609375, -0.0206298828125, 0.0074310302734375, -0.0115814208984375, -0.04644775390625, 0.0287322998046875, -0.06915283203125, -0.0305328369140625, -0.03765869140625, -0.0053863525390625, -0.0107879638671875, -0.06634521484375, -0.11248779296875, 0.005645751953125, -0.0162811279296875, -0.05975341796875, -0.0372314453125, -0.055267333984375, -0.0308074951171875, 0.06573486328125, -0.01358795166015625, -0.022918701171875, -0.0305328369140625, 0.07562255859375, 0.0017042160034179688, 0.06243896484375, -0.0171661376953125, 0.00608062744140625, 0.0179595947265625, 0.0672607421875, 0.0653076171875, 0.0153045654296875, -0.01052093505859375, 0.02105712890625, 0.005809783935546875, 0.04217529296875, -0.01092529296875, -0.0233917236328125, -0.0176544189453125, -0.031707763671875, 0.01213836669921875, -0.00894927978515625, -0.03839111328125, -0.00662994384765625, 0.04473876953125, 0.055755615234375, 0.0283355712890625, -0.0289306640625, -0.00484466552734375, -0.0196990966796875, -0.06353759765625, -0.0215301513671875, 0.019683837890625, -0.04693603515625, 0.01067352294921875, -0.0162506103515625, 0.030426025390625, 0.00501251220703125, -0.01690673828125, -0.00689697265625, -0.0323486328125, 0.00443267822265625, 0.014495849609375, -0.0212860107421875, -0.0082855224609375, 0.042022705078125, -0.0283660888671875, 0.032562255859375, 0.0136566162109375, 0.0031566619873046875, 0.035003662109375, 0.042816162109375, -0.0071563720703125, 0.036041259765625, -0.034088134765625, 0.01427459716796875, -0.0016260147094726562, 0.00713348388671875, -0.0218658447265625, 0.001750946044921875, -0.0029296875, 0.0228424072265625, -0.0171051025390625, 0.024688720703125, 0.02545166015625, -0.0031642913818359375, -0.01259613037109375, 0.06805419921875, 0.0167999267578125, -0.061553955078125, -0.0139923095703125, 0.037750244140625, -0.0634765625, -0.00867462158203125, -0.0511474609375, -0.03033447265625, 0.00374603271484375, 0.005146026611328125, 0.0271148681640625, -0.07666015625, 0.06549072265625, -0.018768310546875, 0.0172576904296875, 0.03973388671875 ]
5fa61dad744ebe5395298b73432056d6aadeb366
Wordpress Stackexchange Q: single-product.php template not working for single products single-product.php template not working for my Woo commerce single products and instead it is using single.php file of my theme. I do not have woocommerce.php file in my theme but still single-product.php not executing. Any idea about this will be much appreciated.
Q: single-product.php template not working for single products single-product.php template not working for my Woo commerce single products and instead it is using single.php file of my theme. I do not have woocommerce.php file in my theme but still single-product.php not executing. Any idea about this will be much appreciated.
wordpress
{ "language": "en", "length": 50, "provenance": "stackexchange_00019.jsonl.gz:484868", "question_score": "5", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/298634" }
[ 0.0025539398193359375, -0.057952880859375, 0.007724761962890625, -0.04705810546875, -0.0406494140625, 0.0120086669921875, -0.008056640625, 0.0206451416015625, -0.01506805419921875, 0.049713134765625, -0.00027942657470703125, -0.004001617431640625, -0.0198822021484375, -0.01045989990234375, -0.0133056640625, -0.02459716796875, 0.01473236083984375, -0.0013704299926757812, 0.007610321044921875, -0.0021343231201171875, -0.00653839111328125, 0.02734375, -0.0275115966796875, 0.06048583984375, 0.00872802734375, -0.01515960693359375, 0.047698974609375, -0.0277557373046875, 0.0214691162109375, -0.0203857421875, 0.0150299072265625, 0.01532745361328125, 0.0111541748046875, 0.01544952392578125, -0.01055145263671875, 0.0027332305908203125, -0.0238189697265625, 0.02972412109375, 0.003643035888671875, 0.00926971435546875, 0.0284576416015625, -0.0223846435546875, 0.0285491943359375, 0.0252838134765625, 0.01849365234375, -0.0406494140625, 0.02081298828125, -0.07550048828125, 0.035980224609375, -0.0189056396484375, -0.0004010200500488281, -0.0014867782592773438, 0.003360748291015625, -0.036529541015625, -0.0289154052734375, -0.029327392578125, -0.07281494140625, 0.0249481201171875, 0.00864410400390625, 0.00435638427734375, 0.01306915283203125, -0.0130615234375, 0.007122039794921875, 0.0261077880859375, -0.0113677978515625, 0.0165863037109375, -0.0227813720703125, 0.0311126708984375, -0.04833984375, -0.0071868896484375, 0.0295867919921875, -0.043121337890625, 0.020965576171875, 0.031402587890625, -0.0071563720703125, -0.0643310546875, 0.0106048583984375, -0.028350830078125, 0.024749755859375, 0.0294189453125, -0.0119476318359375, -0.01532745361328125, -0.01934814453125, -0.059539794921875, 0.0213470458984375, -0.032501220703125, -0.00618743896484375, 0.006992340087890625, -0.045745849609375, -0.02978515625, -0.04156494140625, -0.0207366943359375, -0.0545654296875, -0.0064239501953125, -0.032958984375, -0.006328582763671875, 0.0153350830078125, 0.02288818359375, 0.00746917724609375, 0.01177215576171875, 0.043548583984375, -0.06781005859375, 0.0478515625, -0.0281219482421875, -0.0018978118896484375, 0.00040221214294433594, 0.006015777587890625, 0.0171356201171875, 0.015625, 0.021270751953125, -0.014801025390625, 0.017242431640625, -0.00531005859375, -0.06201171875, 0.01087188720703125, 0.00250244140625, -0.0352783203125, 0.042083740234375, 0.035430908203125, -0.01029205322265625, 0.03302001953125, 0.072509765625, 0.03680419921875, -0.037811279296875, -0.038299560546875, -0.00939178466796875, -0.00731658935546875, -0.08941650390625, 0.03082275390625, -0.029327392578125, -0.0099639892578125, 0.010040283203125, 0.007701873779296875, 0.050018310546875, 0.01459503173828125, 0.01018524169921875, 0.037445068359375, 0.035858154296875, 0.0099945068359375, -0.007457733154296875, 0.056854248046875, 0.00864410400390625, -0.040771484375, 0.0140380859375, 0.0272064208984375, 0.0001455545425415039, 0.019989013671875, 0.0177764892578125, 0.01116180419921875, 0.010406494140625, -0.01324462890625, 0.041351318359375, -0.03515625, 0.042266845703125, 0.084228515625, 0.01021575927734375, 0.03717041015625, -0.00977325439453125, 0.03436279296875, 0.007389068603515625, 0.012359619140625, -0.0060882568359375, 0.0219268798828125, -0.022125244140625, -0.046051025390625, 0.006229400634765625, -0.053009033203125, -0.0199432373046875, 0.0194854736328125, 0.02667236328125, -0.0408935546875, -0.0160369873046875, 0.03765869140625, 0.00511932373046875, -0.0198516845703125, 0.022064208984375, -0.019256591796875, 0.024658203125, 0.023529052734375, 0.01556396484375, -0.0174560546875, -0.04266357421875, 0.041534423828125, -0.009033203125, -0.048583984375, 0.0279693603515625, 0.0262298583984375, 0.02203369140625, -0.007694244384765625, 0.0011377334594726562, 0.06646728515625, 0.05450439453125, -0.01009368896484375, 0.0234832763671875, 0.032196044921875, -0.043365478515625, -0.03369140625, -0.02606201171875, -0.0172271728515625, -0.0159149169921875, 0.0019207000732421875, -0.00511932373046875, 0.020782470703125, 0.006618499755859375, -0.009368896484375, 0.007152557373046875, -0.015655517578125, 0.0211181640625, -0.043853759765625, -0.0021114349365234375, 0.035369873046875, 0.0079193115234375, -0.026397705078125, -0.0221099853515625, -0.006168365478515625, 0.0011281967163085938, 0.01580810546875, 0.07781982421875, 0.01556396484375, 0.03582763671875, 0.022064208984375, -0.05194091796875, 0.0232391357421875, 0.0137786865234375, 0.03912353515625, 0.033111572265625, -0.035980224609375, 0.0023937225341796875, 0.033905029296875, 0.0117645263671875, 0.01430511474609375, 0.03485107421875, -0.02252197265625, -0.0124053955078125, -0.03289794921875, 0.01395416259765625, -0.017425537109375, -0.0103302001953125, -0.006824493408203125, 0.029052734375, 0.024932861328125, 0.027618408203125, -0.0121307373046875, 0.01451873779296875, 0.050811767578125, -0.0179901123046875, 0.0014495849609375, 0.006435394287109375, -0.0095977783203125, -0.021026611328125, 0.00360107421875, -0.016571044921875, 0.03314208984375, -0.042724609375, 0.00254058837890625, 0.028106689453125, -0.0076141357421875, -0.0143280029296875, -0.016143798828125, 0.061981201171875, -0.03082275390625, 0.037689208984375, 0.040679931640625, -0.01248931884765625, 0.0215606689453125, 0.01514434814453125, 0.0272369384765625, 0.0204925537109375, -0.01555633544921875, -0.0013341903686523438, -0.0005140304565429688, -0.00678253173828125, -0.0167999267578125, 0.0303802490234375, 0.0006561279296875, 0.016387939453125, -0.0509033203125, -0.0012998580932617188, 0.0018768310546875, 0.003818511962890625, 0.01556396484375, 0.0290985107421875, 0.043914794921875, -0.00672149658203125, 0.003910064697265625, -0.0260009765625, 0.01323699951171875, 0.02056884765625, 0.026397705078125, -0.016387939453125, 0.004192352294921875, 0.0323486328125, -0.0343017578125, 0.079345703125, 0.00007903575897216797, -0.02349853515625, 0.0304718017578125, -0.040679931640625, 0.04632568359375, -0.0390625, 0.05181884765625, 0.051666259765625, -0.045623779296875, 0.046112060546875, 0.02191162109375, 0.006687164306640625, 0.07147216796875, -0.0142669677734375, -0.00868988037109375, 0.024688720703125, -0.05462646484375, -0.0206298828125, 0.01280975341796875, 0.06072998046875, 0.0156097412109375, -0.042205810546875, 0.032135009765625, 0.0286865234375, -0.044403076171875, -0.09649658203125, -0.036834716796875, -0.05413818359375, 0.056976318359375, -0.046722412109375, -0.0007257461547851562, -0.01378631591796875, -0.0390625, 0.0254364013671875, -0.0214385986328125, -0.0033130645751953125, -0.059295654296875, -0.041107177734375, -0.0653076171875, 0.0333251953125, -0.0142974853515625, 0.03338623046875, 0.003086090087890625, 0.0245819091796875, 0.005096435546875, -0.04437255859375, 0.0011157989501953125, 0.01485443115234375, -0.025909423828125, 0.001209259033203125, 0.0177154541015625, -0.04302978515625, -0.016448974609375, 0.00377655029296875, -0.0196685791015625, 0.0000896453857421875, -0.0125732421875, -0.00826263427734375, 0.0149383544921875, -0.0230255126953125, 0.0340576171875, -0.01715087890625, -0.0256195068359375, -0.0176544189453125, 0.0231781005859375, -0.052490234375, -0.04766845703125, -0.016754150390625, -0.051116943359375, 0.050872802734375, 0.033782958984375, 0.00460052490234375, -0.0062713623046875, 0.0323486328125, 0.0035877227783203125, 0.017333984375, -0.041748046875, -0.01800537109375, 0.0224609375, 0.0153961181640625, 0.01247406005859375, 0.027587890625, -0.00708770751953125, -0.032501220703125, 0.0095367431640625, -0.00878143310546875, -0.001953125, -0.0199737548828125, 0.01513671875, -0.05224609375, -0.006145477294921875, 0.0418701171875, 0.0106048583984375, 0.039276123046875, -0.0175628662109375, -0.0271759033203125, 0.00250244140625, 0.0701904296875, -0.017364501953125, -0.0350341796875, 0.0117034912109375, 0.017913818359375, -0.030670166015625, -0.023834228515625, -0.0124359130859375, -0.026641845703125, -0.022552490234375, -0.00215911865234375, -0.005847930908203125, -0.01422119140625, 0.01419830322265625, -0.033294677734375, -0.006317138671875, -0.0293731689453125, 0.01094818115234375, -0.049163818359375, 0.0152130126953125, 0.0276641845703125, -0.032012939453125, 0.0050811767578125, 0.007762908935546875, -0.0621337890625, -0.004871368408203125, -0.00429534912109375, 0.0176849365234375, 0.020172119140625, -0.008880615234375, 0.036865234375, -0.04351806640625, 0.00917816162109375, -0.01436614990234375, 0.00001823902130126953, -0.0015516281127929688, 0.00997161865234375, 0.010986328125, 0.0179290771484375, -0.0216064453125, 0.004558563232421875, -0.0172119140625, -0.01401519775390625, -0.00533294677734375, 0.03680419921875, 0.0016574859619140625, 0.00013434886932373047, 0.013946533203125, -0.011016845703125, -0.0855712890625, -0.01508331298828125, 0.04412841796875, 0.0203857421875, 0.0247039794921875, 0.01384735107421875, -0.0206146240234375, -0.045928955078125, 0.032867431640625, 0.0006003379821777344, -0.0278167724609375, 0.0101165771484375, 0.039398193359375, 0.01885986328125, -0.03155517578125, -0.057220458984375, 0.0189208984375, 0.02423095703125, 0.04840087890625, 0.0143890380859375, -0.011322021484375, -0.0229339599609375, 0.0195465087890625, 0.0303955078125, 0.007965087890625, 0.0038471221923828125, 0.048583984375, -0.0011472702026367188, -0.0096588134765625, 0.0080413818359375, -0.004436492919921875, -0.01158905029296875, 0.03125, -0.00849151611328125, -0.027801513671875, -0.016510009765625, 0.035308837890625, -0.0018157958984375, -0.007801055908203125, -0.04736328125, -0.0364990234375, -0.002048492431640625, -0.005092620849609375, 0.017913818359375, 0.0313720703125, 0.00017774105072021484, 0.03228759765625, 0.00690460205078125, -0.0036716461181640625, -0.0474853515625, -0.0067596435546875, -0.01395416259765625, -0.0244293212890625, 0.0275115966796875, -0.00406646728515625, -0.04876708984375, -0.0095367431640625, 0.0282135009765625, 0.059051513671875, 0.00701904296875, -0.0013332366943359375, 0.00018465518951416016, -0.03375244140625, -0.034515380859375, -0.031280517578125, 0.01180267333984375, 0.037811279296875, -0.0228271484375, 0.00397491455078125, -0.0281219482421875, 0.00701904296875, -0.0290985107421875, 0.00933074951171875, 0.0123291015625, -0.0124969482421875, 0.0477294921875, 0.008758544921875, 0.0188140869140625, 0.021209716796875, -0.0180816650390625, 0.0137786865234375, 0.0302886962890625, 0.038543701171875, 0.0276336669921875, -0.047149658203125, -0.0140533447265625, 0.0057373046875, 0.00971221923828125, -0.053802490234375, -0.046630859375, -0.0028972625732421875, 0.0296173095703125, -0.01035308837890625, -0.004390716552734375, 0.037567138671875, 0.0285797119140625, -0.0054168701171875, 0.0225677490234375, -0.020172119140625, -0.04669189453125, -0.014556884765625, 0.032501220703125, 0.036773681640625, -0.0108489990234375, -0.0141143798828125, 0.0015306472778320312, -0.061309814453125, -0.01381683349609375, 0.039520263671875, -0.0208282470703125, -0.005596160888671875, -0.020599365234375, 0.032684326171875, -0.00205230712890625, 0.01506805419921875, -0.0439453125, 0.0002846717834472656, -0.04534912109375, -0.0163421630859375, 0.050537109375, -0.0086669921875, 0.04974365234375, -0.034637451171875, -0.038330078125, 0.001308441162109375, -0.01131439208984375, 0.0733642578125, 0.054351806640625, -0.038360595703125, 0.002422332763671875, -0.048553466796875, -0.03155517578125, 0.04718017578125, 0.01062774658203125, -0.043975830078125, -0.0164031982421875, 0.003162384033203125, 0.0208282470703125, -0.01244354248046875, -0.0235748291015625, -0.00984954833984375, 0.0124053955078125, -0.004322052001953125, 0.0303497314453125, -0.03875732421875, 0.07489013671875, 0.005794525146484375, 0.04266357421875, -0.0013265609741210938, 0.017974853515625, -0.027557373046875, -0.00141143798828125, -0.0141754150390625, -0.0161590576171875, 0.0015583038330078125, -0.01568603515625, 0.01016998291015625, 0.0287322998046875, 0.07342529296875, 0.008697509765625, -0.0062103271484375, -0.041046142578125, -0.0027408599853515625, -0.01345062255859375, 0.03619384765625, -0.02960205078125, -0.06256103515625, 0.045440673828125, -0.041046142578125, 0.01386260986328125, -0.01084136962890625, -0.021575927734375, 0.03314208984375, -0.01514434814453125, 0.0023670196533203125, 0.0723876953125, -0.0219879150390625, 0.048736572265625, 0.039306640625, -0.0084228515625, 0.01141357421875, -0.0184478759765625, -0.01067352294921875, -0.02581787109375, 0.03558349609375, -0.019683837890625, -0.046539306640625, 0.00000667572021484375, -0.017425537109375, -0.002147674560546875, -0.00749969482421875, -0.01160430908203125, 0.0180816650390625, 0.08154296875, 0.0810546875, -0.1259765625, -0.0028400421142578125, 0.0255584716796875, 0.0006198883056640625, 0.0010385513305664062, -0.004756927490234375, 0.005374908447265625, -0.0533447265625, 0.039031982421875, 0.05230712890625, 0.01190948486328125, 0.0230255126953125, -0.01214599609375, 0.01611328125, -0.0024585723876953125, 0.06854248046875, 0.0018768310546875, -0.109130859375, -0.003582000732421875, 0.07177734375, -0.038055419921875, -0.03692626953125, -0.00022363662719726562, 0.017364501953125, -0.021209716796875, -0.01861572265625, 0.06500244140625, -0.01136016845703125, 0.043548583984375, 0.031341552734375, 0.01702880859375, 0.0013952255249023438, 0.06060791015625, -0.013275146484375, 0.03076171875, 0.01300811767578125, -0.004791259765625, -0.012908935546875, -0.0174407958984375, 0.01959228515625, 0.029876708984375, -0.08660888671875, 0.01418304443359375, -0.040130615234375, 0.01021575927734375, -0.01142120361328125, 0.01210784912109375, 0.024688720703125, -0.004329681396484375, -0.0126953125, 0.036895751953125, 0.056640625, -0.0031070709228515625, 0.0194244384765625, 0.01568603515625, -0.002727508544921875, 0.025421142578125, 0.0197601318359375, -0.01198577880859375, -0.0035533905029296875, 0.03289794921875, -0.107421875, 0.06146240234375, -0.0206146240234375, 0.0487060546875, 0.01251983642578125, -0.0013675689697265625, -0.028564453125, -0.03411865234375, -0.02362060546875, 0.0131683349609375, -0.0221099853515625, 0.0662841796875, -0.00450897216796875, 0.00798797607421875, 0.026214599609375, 0.034423828125, -0.0195159912109375, -0.0163421630859375, 0.003265380859375, 0.0170745849609375, 0.062164306640625, 0.0014085769653320312, -0.0185394287109375, 0.0226287841796875, -0.021087646484375, -0.08856201171875, -0.011962890625, 0.0162811279296875, 0.0235595703125, -0.0233917236328125, -0.017974853515625, -0.0092620849609375, 0.0096282958984375, -0.01123809814453125, 0.01114654541015625, 0.004207611083984375, -0.0217742919921875, 0.007617950439453125, 0.01332855224609375, -0.0187835693359375, -0.00762176513671875, 0.028533935546875, 0.000774383544921875, 0.0271453857421875, 0.05963134765625, -0.033050537109375, 0.050506591796875, -0.0006771087646484375, 0.01354217529296875, -0.00009554624557495117, -0.001956939697265625, 0.055389404296875, -0.0243377685546875, -0.00875091552734375, 0.022430419921875, -0.0081024169921875, -0.0035724639892578125, 0.01641845703125, 0.0064697265625, -0.01226806640625, 0.07012939453125, 0.01177978515625, -0.0205841064453125, -0.0302886962890625, -0.014129638671875, -0.003551483154296875, -0.0275726318359375, -0.00017893314361572266, -0.03765869140625, -0.01202392578125, 0.0025348663330078125, -0.004955291748046875, -0.019287109375, -0.01114654541015625, 0.027008056640625, 0.0171051025390625, 0.009002685546875, 0.0285797119140625, -0.033660888671875, -0.0310211181640625, -0.043487548828125, 0.0216217041015625, 0.00620269775390625, 0.09716796875, 0.0201568603515625, 0.0775146484375, -0.087158203125, -0.06298828125, 0.02001953125, -0.003814697265625, -0.05767822265625, -0.0150909423828125, -0.0775146484375, -0.10357666015625, 0.0200958251953125, 0.062286376953125, 0.0272979736328125, 0.06829833984375, 0.042694091796875, 0.046478271484375, 0.04327392578125, 0.004688262939453125, 0.07177734375, 0.0008578300476074219, -0.024200439453125, 0.0124053955078125, -0.01483917236328125, 0.0103607177734375, -0.015625, -0.012664794921875, 0.07647705078125, -0.0100555419921875, -0.05670166015625, 0.05511474609375, -0.02581787109375, -0.050201416015625, 0.0220794677734375, -0.0175628662109375, 0.11761474609375, -0.0225830078125, -0.039581298828125, -0.00386810302734375, -0.025848388671875, -0.0046234130859375, 0.000270843505859375, 0.03594970703125, -0.006511688232421875, 0.03399658203125, -0.002986907958984375, 0.035980224609375, -0.0069122314453125, -0.0172576904296875, 0.005901336669921875, -0.0516357421875, 0.0245513916015625, 0.001556396484375, -0.020599365234375, -0.022125244140625, 0.01861572265625, 0.05145263671875, -0.0007205009460449219, 0.033355712890625, -0.02593994140625, 0.0162811279296875, 0.0207977294921875, 0.03369140625, -0.031707763671875, 0.00432586669921875, 0.052154541015625, -0.03118896484375, -0.01300811767578125, -0.01358795166015625, -0.057159423828125, -0.0016984939575195312, 0.06365966796875, -0.021331787109375, 0.01318359375, -0.005771636962890625, 0.0248565673828125, -0.031494140625, 0.027374267578125, -0.0201568603515625, -0.0202484130859375, -0.04351806640625, -0.004241943359375, 0.02862548828125, 0.02374267578125, 0.01308441162109375, 0.033203125, -0.01047515869140625, -0.06298828125, 0.0182037353515625, -0.056060791015625, 0.0045166015625, 0.0234527587890625, 0.059783935546875, -0.006534576416015625, 0.00823974609375, -0.02587890625, -0.01035308837890625, 0.0162353515625, 0.017425537109375, -0.012969970703125, -0.03131103515625, 0.04425048828125, 0.02642822265625, -0.00238800048828125, -0.04095458984375, -0.0156402587890625, 0.10418701171875, -0.03692626953125, -0.0201263427734375, 0.01702880859375, -0.01396942138671875, -0.0115509033203125, -0.0018405914306640625, 0.0033416748046875, -0.006053924560546875, -0.03173828125, -0.03955078125, -0.050628662109375, 0.050872802734375, -0.015380859375, 0.0270233154296875, -0.056640625, -0.0232391357421875, 0.004413604736328125, 0.0157623291015625, -0.04400634765625, 0.023712158203125, 0.038543701171875, -0.0198516845703125, 0.0033473968505859375, -0.03369140625, -0.028472900390625, -0.0132904052734375, -0.003154754638671875, 0.0083465576171875, 0.0008482933044433594, -0.030029296875, -0.0035305023193359375, -0.026611328125, 0.0458984375, 0.016937255859375, -0.030792236328125, 0.01425933837890625, -0.00518798828125, -0.0075225830078125, -0.0272216796875, 0.0191192626953125, -0.0469970703125, -0.0178680419921875, 0.0119476318359375, -0.005451202392578125, 0.0202178955078125, -0.039520263671875, -0.07159423828125, 0.040008544921875, 0.005523681640625, -0.032562255859375, -0.034912109375, -0.01052093505859375, -0.019989013671875, -0.0013494491577148438, -0.045928955078125, 0.0189361572265625, -0.006168365478515625, 0.08251953125, 0.00528717041015625, 0.002910614013671875, 0.043609619140625, -0.027496337890625, 0.044708251953125, 0.0235137939453125, 0.04156494140625, -0.0214080810546875, 0.0031795501708984375, -0.019561767578125, 0.01050567626953125, 0.0244598388671875, -0.04437255859375, -0.046539306640625, 0.0033111572265625, 0.028900146484375, 0.0277099609375, 0.0215911865234375, -0.02679443359375, -0.02923583984375, -0.013336181640625, 0.0345458984375, 0.00923919677734375, 0.0115814208984375, 0.01141357421875, -0.0174102783203125, -0.034698486328125, 0.034210205078125, 0.01922607421875, -0.022552490234375, 0.0301971435546875, 0.02191162109375, -0.03125, 0.01849365234375, 0.047576904296875, -0.035186767578125, 0.01540374755859375, 0.0078887939453125, -0.0352783203125, -0.042877197265625, -0.028717041015625, 0.0145721435546875, -0.01284027099609375, -0.00458526611328125, -0.005859375, 0.0246124267578125, -0.0030460357666015625, 0.0164947509765625, 0.0294952392578125, 0.03631591796875, -0.01103973388671875, -0.01513671875, 0.050628662109375, 0.012786865234375, 0.0139923095703125, -0.01053619384765625, -0.0105133056640625, 0.042816162109375, -0.00864410400390625, 0.05218505859375, 0.00701141357421875, 0.043182373046875, 0.010528564453125, 0.076904296875, -0.01371002197265625, -0.0187835693359375, -0.036956787109375, 0.038848876953125, -0.01338958740234375, -0.0007686614990234375, 0.007110595703125, -0.0013799667358398438, 0.0022125244140625, -0.01202392578125, -0.03607177734375, -0.033233642578125, -0.000009059906005859375, 0.04022216796875, -0.036651611328125, 0.0162200927734375 ]
cb12958ca89ea198443ee0241bb5e2f20b0b324e
Wordpress Stackexchange Q: wp_add_inline_script without dependency I have a javascript snippet that I want to inject into the footer of the page. It's a tracking code, let's say similar to Google analytics. It has no dependencies, it's a standalone snippet. I can do something like this function render_tracking_code(){ wp_enqueue_script( 'depends-js', 'https://rdiv.com/dummy.js', array(), '0.01', true ); wp_add_inline_script( 'depends-js', 'aWholeBunchOfJavascriptCode' ); } add_action( 'wp_enqueue_scripts', 'render_tracking_code' ); Seems a little stupid (dummy.js is a blank file), but works. Is there a way to skip the dependency? A: One way to do this is to create a function that echoes your script inside a <script> tag, and hook it to the wp_print_footer_scripts action. You should take care to escape anything that you don't strictly control, but this a generally safe and easy method otherwise. For example: add_action( 'wp_print_footer_scripts', function () { ?> <script> (function myFunction() { /* your code here */ })(); </script> <?php } );
Q: wp_add_inline_script without dependency I have a javascript snippet that I want to inject into the footer of the page. It's a tracking code, let's say similar to Google analytics. It has no dependencies, it's a standalone snippet. I can do something like this function render_tracking_code(){ wp_enqueue_script( 'depends-js', 'https://rdiv.com/dummy.js', array(), '0.01', true ); wp_add_inline_script( 'depends-js', 'aWholeBunchOfJavascriptCode' ); } add_action( 'wp_enqueue_scripts', 'render_tracking_code' ); Seems a little stupid (dummy.js is a blank file), but works. Is there a way to skip the dependency? A: One way to do this is to create a function that echoes your script inside a <script> tag, and hook it to the wp_print_footer_scripts action. You should take care to escape anything that you don't strictly control, but this a generally safe and easy method otherwise. For example: add_action( 'wp_print_footer_scripts', function () { ?> <script> (function myFunction() { /* your code here */ })(); </script> <?php } ); A: wp_add_inline_style() - without dependency The wp_add_inline_style() can be used without a source file dependency. Here's an example from @Flix: wp_register_style( 'dummy-handle', false ); wp_enqueue_style( 'dummy-handle' ); wp_add_inline_style( 'dummy-handle', '* { color: red; }' ); where we would hook this into the wp_enqueue_scripts action. wp_add_inline_script() - without dependency According to ticket #43565, similar will be supported for wp_add_inline_script() in version 4.9.9 5.0 (thanks to @MarcioDuarte, @dev101 and @DaveRomsey for the verification in comments): wp_register_script( 'dummy-handle-header', '' ); wp_enqueue_script( 'dummy-handle-header' ); wp_add_inline_script( 'dummy-handle-header', 'console.log( "header" );' ); that will display the following in the header, i.e.between the <head>...</head> tags: <script type='text/javascript'> console.log( "header" ); </script> To display it in the footer: wp_register_script( 'dummy-handle-footer', '', [], '', true ); wp_enqueue_script( 'dummy-handle-footer' ); wp_add_inline_script( 'dummy-handle-footer', 'console.log( "footer" );' ); The default of $position input argument in wp_add_inline_script() is 'after'. The 'before' value prints it above 'after'. A: Update: WordPress added support for adding inline scripts and styles without a dependency in v5.0. See @birgire's answer for implementations. When using wp_add_inline_script(), WP_Scripts::print_inline_script() will ultimately be used to output inline scripts. By design, print_inline_script() requires a valid dependency, $handle. Since there is no dependency in this case, wp_add_inline_script() is not the right tool for the job. Instead of creating a fake dependency file (and undesirable additional HTTP request), use wp_head or wp_footer to output the inline script: add_action( 'wp_head', 'wpse_add_inline_script' ); function wpse_add_inline_script() { echo '<script>' . PHP_EOL; // aWholeBunchOfJavascriptCode echo '</script>' . PHP_EOL; } Generally, JavaScript should be added to a .js file and enqueued using wp_enqueue_script() on the wp_enqueue_scripts hook. Data can be made available to the script using wp_localize_script(). Sometimes it may still be necessary to add a script inline though.
wordpress
{ "language": "en", "length": 429, "provenance": "stackexchange_00019.jsonl.gz:484905", "question_score": "24", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/298762" }
[ 0.0665283203125, 0.01042938232421875, -0.05792236328125, -0.092041015625, 0.03619384765625, -0.0360107421875, -0.0019130706787109375, 0.0225067138671875, -0.04339599609375, -0.038970947265625, -0.03759765625, 0.01385498046875, -0.08245849609375, -0.030975341796875, 0.03680419921875, -0.07843017578125, 0.06793212890625, -0.01220703125, 0.042022705078125, -0.014434814453125, -0.01015472412109375, 0.034942626953125, 0.052947998046875, 0.10546875, 0.00751495361328125, -0.02142333984375, 0.0762939453125, -0.01593017578125, 0.00470733642578125, -0.005970001220703125, 0.0152130126953125, -0.02166748046875, -0.0012836456298828125, 0.034942626953125, -0.004974365234375, -0.0312042236328125, -0.006072998046875, 0.02288818359375, 0.022552490234375, 0.003814697265625, 0.01293182373046875, 0.00466156005859375, -0.011932373046875, -0.0086517333984375, -0.027496337890625, -0.049072265625, 0.039581298828125, -0.01277923583984375, -0.0003437995910644531, -0.00009447336196899414, 0.0156402587890625, 0.01593017578125, 0.022552490234375, 0.025146484375, -0.01181793212890625, 0.0033283233642578125, -0.02288818359375, 0.009429931640625, -0.007297515869140625, 0.056610107421875, 0.017791748046875, 0.046966552734375, -0.017852783203125, -0.0243988037109375, -0.0135040283203125, -0.0249176025390625, -0.09429931640625, -0.01284027099609375, -0.0018434524536132812, 0.0289306640625, 0.051544189453125, -0.0325927734375, 0.003452301025390625, 0.00881195068359375, 0.0128936767578125, -0.056915283203125, 0.035003662109375, 0.004604339599609375, -0.004047393798828125, 0.03790283203125, 0.0119476318359375, -0.010345458984375, -0.03753662109375, -0.004070281982421875, -0.0186614990234375, -0.0030002593994140625, -0.004100799560546875, -0.01024627685546875, -0.0374755859375, -0.0301666259765625, -0.0307769775390625, -0.031005859375, -0.005664825439453125, -0.0255889892578125, -0.032684326171875, -0.00600433349609375, 0.03857421875, 0.0703125, -0.00368499755859375, 0.026947021484375, 0.0258941650390625, -0.05029296875, 0.04986572265625, -0.047027587890625, 0.0017614364624023438, 0.09222412109375, -0.001453399658203125, -0.05206298828125, -0.016387939453125, -0.0087127685546875, 0.0247802734375, -0.0726318359375, 0.050445556640625, 0.022430419921875, -0.0269927978515625, -0.02618408203125, 0.0063934326171875, 0.0071868896484375, -0.0205230712890625, 0.0158538818359375, 0.00661468505859375, 0.02996826171875, -0.003429412841796875, -0.0147705078125, 0.004718780517578125, -0.0013570785522460938, -0.0011644363403320312, -0.0279388427734375, 0.050872802734375, -0.023040771484375, -0.035552978515625, 0.03094482421875, 0.051666259765625, 0.01319122314453125, 0.01495361328125, -0.0118560791015625, 0.03387451171875, 0.0194244384765625, 0.02801513671875, -0.005062103271484375, 0.005161285400390625, -0.058807373046875, -0.0232391357421875, 0.033660888671875, 0.02093505859375, 0.0112762451171875, 0.00919342041015625, 0.0106964111328125, 0.0111236572265625, -0.0130157470703125, 0.0401611328125, -0.03179931640625, 0.02471923828125, -0.014068603515625, -0.033294677734375, -0.04595947265625, -0.0291900634765625, -0.027435302734375, 0.02325439453125, -0.025146484375, -0.0404052734375, 0.0009322166442871094, 0.03399658203125, -0.05487060546875, -0.03802490234375, -0.0230560302734375, 0.006011962890625, 0.0023136138916015625, 0.0288543701171875, 0.045257568359375, -0.00579071044921875, -0.032867431640625, -0.004940032958984375, 0.040771484375, -0.00661468505859375, 0.03411865234375, -0.01410675048828125, 0.07373046875, 0.0299530029296875, -0.08282470703125, -0.044403076171875, -0.05889892578125, 0.09356689453125, -0.03765869140625, -0.06304931640625, 0.02423095703125, 0.021148681640625, 0.07452392578125, 0.01641845703125, 0.01824951171875, 0.0498046875, -0.00742340087890625, -0.002674102783203125, -0.0173187255859375, -0.010406494140625, -0.03167724609375, 0.00536346435546875, -0.0008835792541503906, -0.004215240478515625, 0.0325927734375, 0.01450347900390625, -0.00013816356658935547, 0.004421234130859375, 0.01134490966796875, -0.0205230712890625, 0.0022296905517578125, -0.010772705078125, 0.01715087890625, -0.013946533203125, 0.005458831787109375, 0.0305023193359375, 0.0267791748046875, -0.040435791015625, -0.002475738525390625, -0.0263214111328125, 0.0016984939575195312, -0.0278472900390625, 0.0433349609375, 0.0145111083984375, 0.0253753662109375, 0.02032470703125, -0.00841522216796875, 0.0161590576171875, -0.0283050537109375, 0.0198211669921875, -0.0156402587890625, -0.022369384765625, -0.036865234375, 0.009185791015625, -0.0238189697265625, -0.0188446044921875, 0.0845947265625, 0.020416259765625, 0.0254669189453125, -0.021514892578125, -0.005336761474609375, -0.01248931884765625, -0.05517578125, 0.004413604736328125, 0.04473876953125, 0.03985595703125, 0.058563232421875, 0.0214080810546875, 0.01218414306640625, 0.048583984375, -0.0295867919921875, 0.0224151611328125, -0.0260009765625, 0.0000017881393432617188, 0.031982421875, 0.0252532958984375, 0.01236724853515625, 0.0207977294921875, -0.0386962890625, 0.0158843994140625, 0.042449951171875, -0.001220703125, 0.00392913818359375, 0.005321502685546875, 0.01727294921875, -0.005077362060546875, 0.0293121337890625, 0.006992340087890625, 0.0048828125, -0.00554656982421875, -0.004116058349609375, 0.00238037109375, 0.005901336669921875, -0.034820556640625, -0.0032405853271484375, 0.0333251953125, 0.03125, -0.0003418922424316406, 0.00411224365234375, 0.0199737548828125, -0.045318603515625, -0.01052093505859375, -0.00667572021484375, 0.0236663818359375, -0.01447296142578125, 0.0026454925537109375, 0.0272216796875, -0.0032901763916015625, -0.01210784912109375, 0.01038360595703125, 0.01447296142578125, -0.0005593299865722656, -0.0032405853271484375, -0.005237579345703125, 0.026214599609375, 0.052032470703125, -0.00003331899642944336, -0.011627197265625, -0.0117645263671875, 0.006053924560546875, -0.01397705078125, 0.0377197265625, -0.03240966796875, 0.0262451171875, -0.0136871337890625, 0.05706787109375, 0.057830810546875, 0.0093994140625, 0.0056610107421875, -0.0017147064208984375, 0.031951904296875, 0.018646240234375, -0.01509857177734375, -0.01934814453125, -0.030029296875, -0.0014190673828125, 0.030120849609375, 0.0233306884765625, 0.0164794921875, -0.0120391845703125, -0.0350341796875, -0.0274505615234375, -0.0005559921264648438, -0.11083984375, -0.09234619140625, 0.02606201171875, -0.07757568359375, 0.01085662841796875, 0.0489501953125, -0.0462646484375, -0.03912353515625, 0.10687255859375, 0.0062713623046875, -0.0255889892578125, -0.00890350341796875, -0.0284271240234375, -0.0278167724609375, -0.044891357421875, 0.00653076171875, 0.00005435943603515625, -0.0084381103515625, 0.030059814453125, 0.0055084228515625, 0.00797271728515625, -0.057708740234375, 0.01444244384765625, 0.00714874267578125, -0.040679931640625, 0.009979248046875, -0.01206207275390625, -0.052886962890625, -0.0131378173828125, -0.0033969879150390625, -0.0305938720703125, -0.032989501953125, 0.05316162109375, -0.0173797607421875, -0.007175445556640625, -0.033660888671875, -0.01488494873046875, 0.064208984375, 0.005039215087890625, -0.021331787109375, 0.018646240234375, -0.047027587890625, -0.0022125244140625, 0.0313720703125, 0.0033721923828125, -0.0256500244140625, -0.0244140625, -0.0195159912109375, 0.019561767578125, -0.00010758638381958008, 0.0625, 0.04327392578125, 0.0106201171875, 0.02386474609375, -0.006626129150390625, 0.0033721923828125, 0.0213470458984375, -0.03485107421875, 0.03131103515625, -0.0068817138671875, 0.01056671142578125, 0.0033283233642578125, 0.034210205078125, -0.0073394775390625, 0.022857666015625, -0.05609130859375, -0.0224456787109375, -0.0017766952514648438, -0.019195556640625, 0.01273345947265625, -0.0009622573852539062, 0.01427459716796875, 0.0021343231201171875, 0.042633056640625, -0.0318603515625, -0.004329681396484375, 0.0011510848999023438, -0.0030975341796875, -0.0618896484375, -0.0250396728515625, -0.05548095703125, 0.0104522705078125, 0.0236358642578125, 0.00780487060546875, -0.0178375244140625, 0.0157012939453125, -0.025299072265625, -0.00205230712890625, 0.008941650390625, -0.01473236083984375, 0.017730712890625, -0.024139404296875, -0.057708740234375, 0.017578125, -0.06494140625, -0.007904052734375, -0.0064697265625, -0.02001953125, -0.051422119140625, 0.00909423828125, -0.062042236328125, 0.04205322265625, 0.016754150390625, 0.0019378662109375, 0.00524139404296875, 0.03692626953125, -0.020355224609375, 0.0014734268188476562, 0.02001953125, 0.059539794921875, -0.02947998046875, -0.03759765625, -0.00894927978515625, -0.05279541015625, -0.0014448165893554688, 0.008056640625, -0.030242919921875, 0.061431884765625, 0.0083465576171875, 0.051300048828125, 0.037567138671875, -0.0242156982421875, -0.0249481201171875, -0.01070404052734375, 0.00406646728515625, 0.0156707763671875, 0.00589752197265625, -0.0180816650390625, -0.0138397216796875, -0.0217742919921875, 0.0039215087890625, 0.0008311271667480469, 0.001857757568359375, -0.0078582763671875, 0.049102783203125, 0.0325927734375, -0.01271820068359375, 0.039764404296875, 0.03192138671875, 0.038299560546875, -0.0382080078125, 0.0225830078125, 0.01023101806640625, -0.0173492431640625, 0.039581298828125, -0.0136871337890625, 0.0138397216796875, -0.0352783203125, 0.0513916015625, 0.026580810546875, 0.0026798248291015625, 0.010498046875, 0.0328369140625, -0.004840850830078125, 0.0264129638671875, -0.0191650390625, -0.01412200927734375, 0.0023441314697265625, 0.0265655517578125, -0.05328369140625, 0.0635986328125, -0.0166015625, -0.007022857666015625, -0.0081024169921875, -0.0162811279296875, 0.047637939453125, 0.047760009765625, -0.01163482666015625, 0.00933074951171875, 0.0240478515625, 0.006015777587890625, 0.023284912109375, 0.0025882720947265625, 0.00836181640625, 0.0396728515625, 0.023101806640625, 0.015106201171875, -0.0026073455810546875, -0.0008726119995117188, 0.041259765625, 0.0150299072265625, -0.029449462890625, -0.02606201171875, 0.0132293701171875, 0.0258026123046875, -0.0128326416015625, 0.039764404296875, 0.0499267578125, 0.00411224365234375, 0.0147705078125, -0.0015277862548828125, 0.00939178466796875, -0.006801605224609375, -0.0193328857421875, 0.0282440185546875, 0.0236968994140625, -0.020782470703125, -0.0189208984375, 0.03668212890625, -0.0211334228515625, 0.00333404541015625, -0.00052642822265625, 0.040771484375, -0.01031494140625, 0.055450439453125, 0.009185791015625, -0.0242156982421875, -0.0029048919677734375, 0.04412841796875, -0.0248565673828125, -0.01751708984375, 0.058624267578125, -0.000396728515625, 0.0228424072265625, -0.0287322998046875, -0.05584716796875, 0.0372314453125, -0.053619384765625, -0.03033447265625, 0.006824493408203125, -0.000576019287109375, -0.01012420654296875, -0.0335693359375, -0.054412841796875, 0.006893157958984375, 0.0303955078125, 0.00827789306640625, 0.02655029296875, -0.00603485107421875, -0.00608062744140625, 0.005290985107421875, -0.022979736328125, -0.0282745361328125, -0.01380157470703125, 0.01247406005859375, 0.0011081695556640625, -0.0255584716796875, -0.042022705078125, -0.036712646484375, -0.003154754638671875, 0.0059661865234375, 0.046630859375, -0.0164031982421875, 0.0157012939453125, -0.024749755859375, -0.00484466552734375, -0.036041259765625, 0.002277374267578125, 0.042724609375, 0.03173828125, 0.00841522216796875, -0.030975341796875, -0.0399169921875, -0.051300048828125, -0.037841796875, -0.0345458984375, -0.02435302734375, 0.022705078125, -0.00418853759765625, 0.011474609375, -0.0181427001953125, -0.02294921875, -0.014678955078125, 0.031219482421875, 0.02374267578125, 0.048919677734375, -0.0124053955078125, 0.051849365234375, -0.010589599609375, 0.00475311279296875, 0.007904052734375, 0.0487060546875, 0.02374267578125, -0.02557373046875, 0.012176513671875, -0.06158447265625, -0.00669097900390625, -0.0242156982421875, 0.0242767333984375, 0.02288818359375, 0.00717926025390625, 0.0066986083984375, 0.00525665283203125, 0.02703857421875, 0.007354736328125, -0.003177642822265625, -0.0176849365234375, 0.059112548828125, 0.024017333984375, 0.043426513671875, 0.0002434253692626953, -0.0160675048828125, 0.0092010498046875, -0.005405426025390625, 0.01273345947265625, 0.01273345947265625, -0.0008940696716308594, -0.0447998046875, -0.045166015625, 0.0172576904296875, 0.0443115234375, 0.0312347412109375, 0.033935546875, -0.0108489990234375, 0.0173187255859375, 0.0188140869140625, 0.039886474609375, -0.02593994140625, -0.0270538330078125, 0.001678466796875, -0.0196990966796875, -0.0236053466796875, -0.0304107666015625, -0.022247314453125, 0.006702423095703125, 0.03936767578125, 0.039459228515625, -0.0616455078125, 0.0167694091796875, 0.0031909942626953125, -0.00797271728515625, 0.018280029296875, 0.007720947265625, 0.003116607666015625, -0.0108795166015625, 0.0197906494140625, 0.03643798828125, 0.001270294189453125, 0.035858154296875, 0.0301055908203125, -0.005359649658203125, 0.0112457275390625, -0.0499267578125, 0.0065460205078125, -0.020263671875, 0.018707275390625, 0.01401519775390625, 0.037353515625, -0.034515380859375, 0.019500732421875, -0.0024814605712890625, -0.00946044921875, -0.042999267578125, 0.0181427001953125, -0.00658416748046875, -0.01013946533203125, -0.001277923583984375, -0.0272674560546875, 0.034698486328125, 0.037628173828125, -0.013671875, -0.0026683807373046875, 0.002231597900390625, 0.0167236328125, -0.0019483566284179688, -0.025054931640625, 0.006328582763671875, 0.0091400146484375, -0.01284027099609375, 0.018096923828125, 0.0005545616149902344, -0.03497314453125, -0.0032863616943359375, -0.0256195068359375, 0.01531982421875, -0.0118560791015625, -0.01555633544921875, 0.01079559326171875, 0.01385498046875, 0.0107574462890625, -0.042724609375, 0.04608154296875, -0.062469482421875, -0.051361083984375, -0.004058837890625, -0.069580078125, -0.05340576171875, -0.08331298828125, -0.01342010498046875, 0.1484375, -0.01058197021484375, -0.02374267578125, 0.034454345703125, 0.08184814453125, -0.05889892578125, 0.050079345703125, -0.03564453125, 0.057647705078125, -0.01190185546875, 0.046142578125, -0.0428466796875, -0.0126800537109375, 0.0141448974609375, 0.0377197265625, 0.032958984375, 0.001708984375, -0.034881591796875, -0.014617919921875, 0.038421630859375, 0.07073974609375, 0.03533935546875, -0.005290985107421875, -0.017730712890625, 0.0211334228515625, 0.0215606689453125, -0.0241851806640625, 0.01531219482421875, -0.001354217529296875, -0.040863037109375, 0.007110595703125, 0.006961822509765625, 0.00785064697265625, -0.0236358642578125, -0.032867431640625, 0.0104522705078125, -0.00439453125, -0.0119476318359375, 0.049041748046875, -0.0020923614501953125, 0.03375244140625, -0.042633056640625, 0.0310211181640625, -0.0157470703125, -0.0122833251953125, 0.002651214599609375, -0.0341796875, -0.0292816162109375, -0.00673675537109375, 0.016998291015625, -0.046600341796875, -0.01416778564453125, -0.029632568359375, 0.032257080078125, -0.0260772705078125, 0.01499176025390625, 0.0143890380859375, 0.03582763671875, -0.02838134765625, -0.006832122802734375, 0.042633056640625, 0.029205322265625, -0.01181793212890625, -0.00359344482421875, 0.0015058517456054688, -0.0224151611328125, -0.003627777099609375, -0.03802490234375, 0.005352020263671875, 0.0031070709228515625, -0.0278778076171875, 0.0017080307006835938, -0.01513671875, -0.004558563232421875, 0.021240234375, 0.01023101806640625, 0.0241546630859375, -0.0101776123046875, -0.01812744140625, -0.032806396484375, 0.0210723876953125, 0.00839996337890625, 0.06890869140625, -0.0006399154663085938, 0.053619384765625, -0.05548095703125, -0.0310516357421875, -0.058685302734375, 0.0213165283203125, 0.04791259765625, 0.055023193359375, -0.01158905029296875, 0.050689697265625, 0.032989501953125, 0.01258087158203125, 0.008056640625, 0.044769287109375, 0.0281219482421875, 0.00766754150390625, -0.02154541015625, -0.00643157958984375, 0.016845703125, -0.03192138671875, 0.003307342529296875, -0.010528564453125, 0.00580596923828125, 0.016876220703125, -0.005214691162109375, -0.0021114349365234375, 0.02581787109375, 0.032806396484375, -0.019805908203125, -0.0030574798583984375, 0.007129669189453125, -0.0211029052734375, 0.016937255859375, 0.01436614990234375, 0.040496826171875, 0.01507568359375, 0.01459503173828125, 0.004852294921875, -0.041351318359375, -0.03466796875, 0.040252685546875, 0.035247802734375, -0.0243072509765625, 0.04296875, 0.06890869140625, -0.0084991455078125, 0.01073455810546875, -0.00823211669921875, 0.0294036865234375, -0.0190887451171875, 0.0244598388671875, 0.0215301513671875, 0.022705078125, -0.00031566619873046875, 0.02783203125, 0.044525146484375, 0.0345458984375, 0.01629638671875, -0.0185089111328125, 0.0154571533203125, 0.0272216796875, -0.0206298828125, 0.017181396484375, 0.015655517578125, -0.048797607421875, -0.0253448486328125, 0.018524169921875, -0.00571441650390625, -0.060638427734375, 0.0019779205322265625, 0.0014925003051757812, 0.022369384765625, 0.00695037841796875, -0.023773193359375, 0.0328369140625, 0.0309600830078125, -0.0195770263671875, -0.0306243896484375, -0.055450439453125, -0.05499267578125, -0.0194244384765625, 0.01010894775390625, 0.024932861328125, 0.00299072265625, -0.01425933837890625, 0.0325927734375, -0.04534912109375, 0.005352020263671875, 0.00884246826171875, 0.0171051025390625, 0.0191802978515625, 0.03863525390625, 0.028076171875, 0.01442718505859375, -0.0172576904296875, 0.022735595703125, 0.01385498046875, -0.01006317138671875, 0.022064208984375, -0.03765869140625, -0.022735595703125, 0.06439208984375, 0.038055419921875, -0.0058746337890625, 0.0246124267578125, 0.0196075439453125, -0.053863525390625, 0.001995086669921875, 0.002574920654296875, -0.00737762451171875, -0.00951385498046875, -0.01036834716796875, 0.0220794677734375, -0.0078887939453125, 0.00534820556640625, -0.018096923828125, 0.01451873779296875, 0.030059814453125, 0.00244903564453125, -0.0562744140625, 0.0092620849609375, -0.00982666015625, 0.05987548828125, -0.01629638671875, 0.046478271484375, -0.036468505859375, 0.00479888916015625, -0.03302001953125, -0.05438232421875, -0.048431396484375, 0.0714111328125, -0.060150146484375, 0.0255584716796875, 0.045379638671875, -0.017852783203125, 0.034912109375, 0.04217529296875, 0.01366424560546875, 0.10882568359375, -0.045684814453125, -0.00705718994140625, 0.013458251953125, 0.01727294921875, -0.015838623046875, -0.041534423828125, -0.0103302001953125, -0.00042724609375, -0.0082855224609375, -0.0201263427734375, -0.003330230712890625, -0.005428314208984375, -0.061126708984375, -0.11016845703125, 0.05511474609375, -0.0233306884765625, -0.040008544921875, -0.057830810546875, -0.0037593841552734375, 0.0195770263671875, -0.01016998291015625, -0.029815673828125, -0.01291656494140625, -0.05694580078125, 0.0233917236328125, 0.0277862548828125, 0.0273590087890625, 0.0516357421875, -0.0226287841796875, -0.01201629638671875, 0.00901031494140625, 0.0057220458984375, 0.0308685302734375, -0.0173187255859375, -0.002422332763671875, 0.0447998046875, 0.034423828125, -0.0250244140625, 0.04571533203125, 0.0137481689453125, 0.0224456787109375, -0.02105712890625, -0.044036865234375, -0.04656982421875, -0.016998291015625, 0.1346435546875, 0.01177978515625, 0.0289764404296875, -0.02734375, -0.00878143310546875, -0.0321044921875, -0.00907135009765625, -0.005016326904296875, 0.006359100341796875, -0.039306640625, 0.018798828125, -0.001842498779296875, 0.0142974853515625, -0.0214080810546875, -0.00835418701171875, -0.0204925537109375, -0.0188446044921875, 0.033782958984375, 0.0155181884765625, -0.029693603515625, -0.0245361328125, 0.0784912109375, -0.0188751220703125, 0.01387786865234375, 0.02545166015625, 0.01224517822265625, 0.04302978515625, 0.05010986328125, 0.023284912109375, 0.01593017578125, -0.056243896484375, 0.01529693603515625, -0.0015859603881835938, 0.033355712890625, -0.0501708984375, -0.0307159423828125, 0.0176544189453125, 0.0233306884765625, 0.0104217529296875, 0.03955078125, -0.0273590087890625, 0.024383544921875, -0.020751953125, 0.0099029541015625, -0.025970458984375, 0.0013532638549804688, -0.0263519287109375, 0.01605224609375, -0.0037689208984375, 0.00008046627044677734, 0.022979736328125, -0.00890350341796875, -0.01190948486328125, 0.00772857666015625, -0.03173828125, -0.048828125, -0.018157958984375, -0.0723876953125, 0.004230499267578125, 0.0028743743896484375 ]
523f98edd529d539683820e170496e7e17825110
Wordpress Stackexchange Q: How can change heartbeat hasFocus option to false After I check heartbeat.js file I found that by default WordPress set heartbeat hasFocuse option to true, I want to change this option to false what can I do? What am I trying to achieve? I have a live notification and messages system working depending on heartbeat.js the problem that if I switch from my site tab to any another tab the heartbeat stop working so I don't receive the messages and notification until I switch to my site again. Also if the mouse doesn't move and not using the keyboard on my site the heartbeat stopped working. I want to make something like Facebook to receive the notifications also if I switch from facebook tab.
Q: How can change heartbeat hasFocus option to false After I check heartbeat.js file I found that by default WordPress set heartbeat hasFocuse option to true, I want to change this option to false what can I do? What am I trying to achieve? I have a live notification and messages system working depending on heartbeat.js the problem that if I switch from my site tab to any another tab the heartbeat stop working so I don't receive the messages and notification until I switch to my site again. Also if the mouse doesn't move and not using the keyboard on my site the heartbeat stopped working. I want to make something like Facebook to receive the notifications also if I switch from facebook tab.
wordpress
{ "language": "en", "length": 125, "provenance": "stackexchange_00019.jsonl.gz:484920", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/298805" }
[ 0.04083251953125, -0.019256591796875, 0.036285400390625, 0.047698974609375, -0.0118408203125, -0.044189453125, 0.0872802734375, -0.035125732421875, 0.013458251953125, 0.031646728515625, -0.02490234375, -0.01139068603515625, 0.0038738250732421875, 0.0022602081298828125, -0.045501708984375, -0.03369140625, 0.062408447265625, -0.0390625, 0.02410888671875, 0.01117706298828125, -0.003910064697265625, 0.049560546875, 0.02142333984375, 0.0743408203125, 0.032928466796875, 0.005313873291015625, 0.027191162109375, -0.01319122314453125, -0.004730224609375, -0.0272064208984375, 0.015533447265625, 0.017547607421875, 0.0142364501953125, 0.0638427734375, -0.07525634765625, -0.00026535987854003906, -0.024017333984375, 0.0279388427734375, -0.0127105712890625, 0.042449951171875, -0.0104217529296875, -0.00832366943359375, -0.0237884521484375, -0.039276123046875, -0.026947021484375, 0.001544952392578125, -0.01922607421875, -0.047271728515625, 0.00316619873046875, -0.0157012939453125, -0.01187896728515625, 0.0236968994140625, 0.003238677978515625, -0.032928466796875, -0.007244110107421875, -0.035003662109375, -0.040679931640625, 0.0163116455078125, -0.0004799365997314453, 0.05877685546875, 0.035980224609375, 0.03753662109375, -0.03179931640625, -0.0198974609375, -0.0013875961303710938, -0.0256195068359375, -0.0499267578125, 0.027618408203125, -0.0268402099609375, 0.004787445068359375, 0.024658203125, -0.033538818359375, 0.01313018798828125, -0.0011959075927734375, -0.0055084228515625, -0.01085662841796875, 0.00330352783203125, -0.00510406494140625, 0.014373779296875, 0.0180206298828125, 0.03668212890625, -0.062225341796875, 0.004489898681640625, -0.00528717041015625, 0.0160064697265625, 0.0248565673828125, 0.0198822021484375, -0.00402069091796875, -0.0164642333984375, -0.01253509521484375, -0.0036487579345703125, 0.046783447265625, -0.04205322265625, 0.0037078857421875, -0.0295257568359375, -0.0123443603515625, 0.04241943359375, 0.0182647705078125, 0.0178985595703125, -0.016754150390625, 0.01255035400390625, -0.035369873046875, -0.0307464599609375, -0.00731658935546875, -0.01751708984375, 0.05389404296875, -0.022216796875, -0.0782470703125, -0.02032470703125, 0.0278778076171875, -0.00494384765625, -0.0638427734375, 0.0284881591796875, -0.0176849365234375, -0.00023305416107177734, -0.046112060546875, -0.04217529296875, 0.054107666015625, 0.01346588134765625, -0.005786895751953125, 0.0443115234375, 0.0728759765625, -0.0338134765625, -0.05377197265625, -0.0155487060546875, -0.020355224609375, -0.0194854736328125, -0.0216522216796875, 0.00042128562927246094, 0.0026302337646484375, -0.01322174072265625, -0.0068206787109375, 0.050262451171875, 0.085205078125, 0.04815673828125, -0.006244659423828125, 0.0302886962890625, -0.0233917236328125, -0.015869140625, 0.01006317138671875, 0.0015888214111328125, -0.029144287109375, -0.0231475830078125, -0.007450103759765625, 0.00978851318359375, -0.0279083251953125, 0.01293182373046875, 0.03961181640625, 0.037506103515625, 0.045745849609375, -0.041046142578125, 0.037689208984375, 0.00939178466796875, 0.006500244140625, -0.006763458251953125, -0.0249481201171875, 0.00040221214294433594, -0.006572723388671875, 0.00876617431640625, -0.024139404296875, 0.01255035400390625, 0.0014524459838867188, 0.0531005859375, -0.039581298828125, -0.061309814453125, 0.0037441253662109375, -0.0684814453125, -0.01403045654296875, 0.0301971435546875, -0.01514434814453125, 0.06866455078125, -0.00153350830078125, -0.019256591796875, -0.007785797119140625, 0.004146575927734375, -0.005031585693359375, 0.024017333984375, 0.01727294921875, 0.0264129638671875, -0.061737060546875, -0.050872802734375, -0.055419921875, 0.06085205078125, -0.0523681640625, -0.056884765625, 0.049072265625, 0.0016574859619140625, 0.0850830078125, 0.032684326171875, 0.028411865234375, -0.029541015625, -0.0055084228515625, -0.009063720703125, 0.037689208984375, -0.0236053466796875, -0.02294921875, -0.0421142578125, 0.007080078125, -0.026519775390625, 0.0052490234375, 0.01080322265625, -0.0110931396484375, -0.00821685791015625, -0.0161895751953125, -0.0716552734375, -0.0018520355224609375, -0.033721923828125, 0.047698974609375, 0.059173583984375, 0.023651123046875, -0.0149078369140625, 0.02923583984375, -0.0107574462890625, -0.0273284912109375, -0.05352783203125, 0.0184173583984375, -0.0330810546875, -0.006641387939453125, -0.053802490234375, -0.0015239715576171875, -0.0462646484375, -0.03546142578125, -0.030914306640625, 0.0239410400390625, 0.01090240478515625, -0.032257080078125, -0.00337982177734375, -0.0266571044921875, -0.006679534912109375, -0.01953125, 0.00623321533203125, 0.05145263671875, -0.010955810546875, -0.024566650390625, -0.042510986328125, 0.0017747879028320312, 0.0220184326171875, -0.03045654296875, -0.004299163818359375, 0.033966064453125, 0.01702880859375, 0.05023193359375, -0.01107025146484375, 0.03497314453125, 0.009002685546875, -0.007965087890625, 0.0236053466796875, -0.0038394927978515625, 0.024505615234375, 0.03155517578125, -0.0205535888671875, -0.0211181640625, 0.035888671875, -0.035491943359375, 0.029571533203125, 0.046844482421875, 0.003803253173828125, -0.01433563232421875, 0.006824493408203125, 0.016815185546875, -0.009765625, 0.0010671615600585938, 0.0007424354553222656, 0.0003838539123535156, -0.0256805419921875, -0.0280303955078125, -0.00009298324584960938, -0.00299835205078125, 0.01450347900390625, -0.0198974609375, 0.00931549072265625, -0.0450439453125, 0.01019287109375, 0.04296875, 0.0626220703125, 0.0019512176513671875, -0.0253143310546875, -0.021697998046875, 0.01029205322265625, 0.023834228515625, -0.057037353515625, -0.0703125, -0.058990478515625, -0.0121612548828125, 0.053741455078125, -0.03875732421875, -0.0025501251220703125, -0.0408935546875, 0.00537872314453125, -0.043609619140625, -0.00908660888671875, 0.005214691162109375, -0.0240020751953125, 0.048095703125, 0.048980712890625, -0.03948974609375, -0.021087646484375, -0.062744140625, 0.0316162109375, -0.0142059326171875, 0.028594970703125, 0.086181640625, 0.044921875, 0.0045166015625, 0.00101470947265625, -0.02374267578125, -0.0179901123046875, 0.006481170654296875, -0.0172119140625, 0.007221221923828125, -0.0367431640625, 0.07525634765625, 0.004848480224609375, 0.02447509765625, -0.032684326171875, -0.0278472900390625, -0.021697998046875, 0.00048661231994628906, -0.04534912109375, -0.038970947265625, -0.01364898681640625, -0.024993896484375, -0.019012451171875, -0.004306793212890625, -0.0135650634765625, -0.0004019737243652344, 0.033843994140625, 0.004573822021484375, -0.055694580078125, 0.01494598388671875, 0.0175323486328125, -0.0206756591796875, 0.01751708984375, 0.0164031982421875, -0.0021800994873046875, 0.003833770751953125, 0.007526397705078125, 0.0186920166015625, 0.0260162353515625, 0.0026397705078125, 0.042999267578125, 0.0007319450378417969, -0.023956298828125, 0.0123443603515625, 0.0161285400390625, -0.043121337890625, -0.02178955078125, -0.01158905029296875, -0.030426025390625, 0.00897216796875, -0.00534820556640625, 0.01258087158203125, -0.0281982421875, 0.0233001708984375, -0.0240631103515625, 0.036468505859375, 0.035797119140625, 0.012237548828125, -0.01421356201171875, -0.0299224853515625, -0.01023101806640625, 0.0396728515625, -0.0206298828125, -0.0714111328125, -0.009613037109375, -0.042266845703125, -0.0190277099609375, -0.02178955078125, 0.07318115234375, 0.01678466796875, -0.01041412353515625, -0.01248931884765625, 0.06573486328125, 0.01739501953125, 0.0560302734375, -0.049591064453125, 0.011444091796875, -0.04302978515625, -0.00220489501953125, -0.01102447509765625, -0.0220794677734375, -0.0187835693359375, 0.01496124267578125, -0.00275421142578125, 0.0085601806640625, 0.0023174285888671875, -0.01544189453125, -0.0164794921875, 0.0311279296875, 0.006000518798828125, 0.032806396484375, 0.028961181640625, 0.0010471343994140625, -0.0160675048828125, 0.0224609375, 0.0155487060546875, -0.0439453125, -0.02130126953125, -0.032196044921875, -0.0024242401123046875, -0.00921630859375, 0.020904541015625, 0.006256103515625, 0.004131317138671875, -0.02154541015625, 0.0245361328125, 0.0120391845703125, -0.0210418701171875, 0.0165863037109375, -0.02960205078125, -0.0169219970703125, 0.007808685302734375, -0.0195159912109375, -0.0128021240234375, -0.01204681396484375, -0.02862548828125, -0.07891845703125, -0.0207977294921875, 0.0234527587890625, 0.0305633544921875, -0.037017822265625, 0.00750732421875, -0.01023101806640625, 0.0545654296875, 0.05950927734375, 0.04449462890625, 0.007843017578125, -0.05816650390625, 0.0501708984375, -0.0080413818359375, 0.034454345703125, -0.0029430389404296875, 0.00026869773864746094, -0.032623291015625, -0.044525146484375, -0.00885009765625, -0.0123291015625, 0.0198822021484375, 0.0135498046875, -0.0267791748046875, -0.0557861328125, -0.034912109375, -0.034759521484375, 0.018646240234375, -0.0309906005859375, 0.01019287109375, -0.044921875, -0.04998779296875, 0.0286865234375, -0.0014486312866210938, 0.0088653564453125, -0.0006680488586425781, 0.07135009765625, 0.0217742919921875, -0.011322021484375, 0.0134735107421875, -0.047607421875, 0.01271820068359375, 0.034332275390625, -0.00630950927734375, -0.0350341796875, -0.032470703125, 0.09027099609375, -0.01873779296875, 0.0174102783203125, -0.0430908203125, 0.052703857421875, 0.0022068023681640625, 0.0005030632019042969, 0.0205230712890625, -0.00490570068359375, 0.007785797119140625, 0.014068603515625, -0.003307342529296875, 0.007175445556640625, 0.004505157470703125, 0.0152740478515625, 0.01303863525390625, -0.04510498046875, -0.036956787109375, 0.007266998291015625, -0.0016965866088867188, -0.017913818359375, 0.0302734375, 0.03472900390625, -0.0017271041870117188, 0.01099395751953125, 0.04534912109375, 0.0117645263671875, -0.039764404296875, -0.0073394775390625, -0.047149658203125, 0.0284423828125, 0.0027065277099609375, -0.003017425537109375, -0.02655029296875, 0.0065765380859375, -0.01477813720703125, -0.00511932373046875, -0.0494384765625, -0.01055908203125, 0.0138702392578125, 0.0257415771484375, 0.01058197021484375, 0.0021343231201171875, 0.038970947265625, 0.05169677734375, -0.01123809814453125, -0.004245758056640625, 0.0004661083221435547, 0.0306549072265625, -0.05438232421875, 0.038330078125, 0.0469970703125, -0.0309600830078125, 0.0004010200500488281, 0.0236663818359375, 0.03753662109375, -0.0238037109375, -0.0110321044921875, 0.0421142578125, 0.038909912109375, -0.0207061767578125, 0.022430419921875, 0.035064697265625, 0.0189971923828125, -0.07623291015625, -0.00548553466796875, -0.0245208740234375, 0.0027599334716796875, 0.0081787109375, 0.033538818359375, -0.0173187255859375, -0.021514892578125, 0.017547607421875, -0.041290283203125, 0.00702667236328125, 0.0084075927734375, -0.0210418701171875, -0.0178070068359375, -0.0213165283203125, -0.0197601318359375, 0.01134490966796875, -0.0308837890625, 0.0141448974609375, -0.01407623291015625, 0.006191253662109375, 0.01038360595703125, 0.040313720703125, -0.040252685546875, -0.01024627685546875, 0.0036067962646484375, 0.003978729248046875, -0.004283905029296875, -0.020263671875, -0.08197021484375, -0.040496826171875, 0.000461578369140625, 0.0026378631591796875, 0.078369140625, 0.0025615692138671875, 0.0164794921875, -0.0298919677734375, -0.0217437744140625, -0.039947509765625, 0.01531219482421875, 0.006824493408203125, -0.01265716552734375, -0.0279998779296875, -0.01091766357421875, -0.062255859375, -0.035186767578125, -0.06298828125, -0.00714111328125, -0.04400634765625, 0.023712158203125, 0.0103759765625, 0.0330810546875, -0.0009760856628417969, -0.034423828125, -0.031494140625, -0.00849151611328125, 0.01552581787109375, 0.03326416015625, 0.00968170166015625, 0.0138702392578125, -0.017791748046875, 0.00569915771484375, 0.007068634033203125, -0.0160369873046875, -0.04388427734375, -0.002643585205078125, 0.030120849609375, 0.00865936279296875, -0.0183258056640625, -0.026397705078125, -0.0017986297607421875, -0.034271240234375, 0.0223236083984375, -0.0200958251953125, 0.02642822265625, -0.024139404296875, -0.0037860870361328125, -0.030914306640625, 0.0283355712890625, -0.069091796875, 0.02435302734375, -0.02105712890625, -0.0028076171875, -0.003055572509765625, -0.02960205078125, -0.038909912109375, -0.007671356201171875, 0.01264190673828125, -0.0179443359375, 0.0085296630859375, -0.008392333984375, 0.0290374755859375, -0.00008791685104370117, -0.0157623291015625, 0.0220184326171875, 0.00530242919921875, 0.022308349609375, 0.00958251953125, 0.0855712890625, -0.0682373046875, -0.07305908203125, 0.047332763671875, 0.0474853515625, -0.03570556640625, 0.03143310546875, -0.029266357421875, -0.004512786865234375, 0.056610107421875, 0.0823974609375, -0.07757568359375, -0.0025577545166015625, 0.032928466796875, -0.004970550537109375, -0.0244598388671875, -0.003940582275390625, -0.0404052734375, -0.0838623046875, 0.06036376953125, -0.03997802734375, -0.004764556884765625, 0.01035308837890625, -0.0224456787109375, -0.006359100341796875, 0.00749969482421875, 0.001201629638671875, 0.01141357421875, -0.00011205673217773438, -0.004787445068359375, 0.006206512451171875, 0.034881591796875, 0.0009965896606445312, 0.051422119140625, -0.00769805908203125, -0.035186767578125, -0.0633544921875, -0.03143310546875, 0.00948333740234375, -0.06365966796875, 0.02716064453125, 0.0235748291015625, 0.0239105224609375, 0.022247314453125, -0.00978851318359375, 0.01082611083984375, -0.01012420654296875, -0.00153350830078125, -0.01003265380859375, -0.015869140625, 0.0186767578125, 0.0168304443359375, -0.025787353515625, 0.01262664794921875, -0.02777099609375, -0.014801025390625, -0.00832366943359375, -0.01024627685546875, 0.04608154296875, -0.01568603515625, -0.004276275634765625, 0.0279541015625, 0.0443115234375, -0.00399017333984375, -0.0100250244140625, 0.0006823539733886719, -0.044677734375, -0.00879669189453125, -0.01026153564453125, -0.035064697265625, 0.00899505615234375, -0.0126495361328125, -0.01788330078125, 0.0758056640625, -0.032928466796875, -0.01514434814453125, 0.008392333984375, 0.04498291015625, -0.0250244140625, 0.0364990234375, -0.0169830322265625, 0.0307464599609375, -0.0360107421875, 0.0238037109375, -0.060638427734375, -0.00864410400390625, -0.02325439453125, 0.0300750732421875, 0.050872802734375, -0.0182037353515625, 0.06878662109375, -0.0014677047729492188, 0.0948486328125, 0.06048583984375, 0.00415802001953125, -0.04241943359375, -0.02447509765625, 0.006450653076171875, -0.003810882568359375, -0.05096435546875, 0.0025386810302734375, -0.006862640380859375, -0.0164794921875, 0.026336669921875, 0.02587890625, 0.03369140625, -0.004207611083984375, -0.02978515625, 0.01360321044921875, -0.0099945068359375, -0.00604248046875, -0.004940032958984375, -0.033172607421875, 0.020599365234375, 0.005176544189453125, -0.039459228515625, -0.0012083053588867188, -0.04058837890625, 0.04827880859375, 0.0015268325805664062, -0.04107666015625, 0.0197296142578125, 0.0003829002380371094, 0.0007867813110351562, -0.022613525390625, -0.034942626953125, 0.0031642913818359375, 0.01471710205078125, 0.020233154296875, 0.00571441650390625, 0.0194549560546875, -0.02056884765625, 0.053680419921875, 0.0300140380859375, 0.022064208984375, -0.0283355712890625, -0.046661376953125, 0.0105743408203125, -0.0024700164794921875, 0.0174407958984375, 0.0031299591064453125, 0.030487060546875, -0.0293121337890625, 0.0052337646484375, 0.0011205673217773438, 0.0265655517578125, 0.01500701904296875, 0.0110321044921875, 0.0203704833984375, 0.101318359375, -0.09564208984375, 0.0292816162109375, -0.040252685546875, 0.007144927978515625, 0.01274871826171875, -0.00484466552734375, 0.0225982666015625, -0.005523681640625, 0.081787109375, 0.01032257080078125, -0.01172637939453125, -0.00972747802734375, -0.0010004043579101562, 0.0206298828125, -0.0506591796875, -0.0098419189453125, 0.0012493133544921875, 0.041046142578125, 0.048553466796875, 0.045867919921875, 0.052520751953125, 0.037841796875, -0.01131439208984375, 0.03045654296875, 0.0709228515625, -0.01172637939453125, -0.00041103363037109375, -0.049957275390625, 0.0226898193359375, 0.0306854248046875, 0.0031890869140625, 0.021240234375, 0.0019159317016601562, 0.05438232421875, 0.03887939453125, -0.0006284713745117188, 0.02294921875, -0.0067138671875, -0.01195526123046875, 0.033111572265625, 0.001956939697265625, 0.07501220703125, -0.006011962890625, -0.014495849609375, -0.0256195068359375, -0.033203125, 0.01317596435546875, 0.0301971435546875, -0.00586700439453125, 0.01474761962890625, -0.044158935546875, 0.037506103515625, -0.0011425018310546875, -0.03546142578125, -0.008056640625, 0.016693115234375, 0.0212249755859375, -0.00025653839111328125, -0.0460205078125, -0.0247650146484375, -0.002162933349609375, -0.005138397216796875, -0.0231781005859375, 0.072998046875, 0.00946807861328125, -0.0103759765625, 0.029998779296875, 0.01226806640625, 0.022308349609375, 0.007289886474609375, 0.0207672119140625, 0.01480865478515625, 0.005008697509765625, -0.025390625, -0.05609130859375, 0.04718017578125, 0.0012807846069335938, 0.025634765625, 0.08306884765625, -0.040374755859375, 0.005886077880859375, -0.003971099853515625, -0.007038116455078125, -0.03411865234375, -0.041748046875, -0.049224853515625, 0.0016145706176757812, 0.0027103424072265625, -0.01152801513671875, -0.0482177734375, 0.030181884765625, -0.00559234619140625, -0.018218994140625, -0.00010329484939575195, -0.0394287109375, 0.007335662841796875, 0.033172607421875, -0.01480865478515625, 0.006153106689453125, -0.00487518310546875, -0.03448486328125, 0.0105133056640625, 0.007801055908203125, 0.0162200927734375, -0.00940704345703125, 0.0059814453125, 0.021026611328125, 0.00785064697265625, -0.0175018310546875, -0.055908203125, -0.03900146484375, 0.05767822265625, -0.01134490966796875, 0.0131988525390625, -0.034423828125, -0.0029296875, -0.028289794921875, -0.0010766983032226562, 0.0133819580078125, -0.01434326171875, 0.005405426025390625, -0.0003809928894042969, 0.00992584228515625, 0.0064849853515625, -0.0224609375, -0.0202178955078125, 0.0010900497436523438, -0.016845703125, 0.047088623046875, -0.038848876953125, 0.0325927734375, -0.01024627685546875, 0.0026874542236328125, -0.017303466796875, -0.033782958984375, -0.0232696533203125, 0.04620361328125, 0.0016298294067382812, -0.033233642578125, 0.0032825469970703125, 0.00649261474609375, -0.022918701171875, -0.055877685546875, -0.01139068603515625, -0.007678985595703125, -0.0092926025390625, -0.032135009765625, -0.040771484375, -0.0051727294921875, -0.0162811279296875, 0.03839111328125, 0.06219482421875, -0.05682373046875, -0.08599853515625, -0.021240234375, -0.042999267578125, -0.041717529296875, -0.06787109375, -0.044281005859375, 0.05291748046875, 0.0008788108825683594, -0.018524169921875, -0.0765380859375, -0.010955810546875, 0.0006771087646484375, 0.00594329833984375, -0.035430908203125, 0.006778717041015625, -0.040771484375, 0.050079345703125, 0.019378662109375, 0.006885528564453125, 0.0094146728515625, -0.002063751220703125, -0.02227783203125, 0.03076171875, 0.03173828125, 0.0253753662109375, -0.0479736328125, 0.0185699462890625, -0.0230865478515625, 0.01434326171875, -0.0271759033203125, -0.0484619140625, 0.02783203125, 0.00836181640625, -0.008026123046875, 0.0029354095458984375, -0.02886962890625, -0.0009336471557617188, 0.07110595703125, 0.0704345703125, 0.0270843505859375, -0.042083740234375, -0.048095703125, -0.062255859375, -0.0082244873046875, 0.0016012191772460938, 0.01271820068359375, -0.036956787109375, 0.05938720703125, 0.04620361328125, -0.01462554931640625, 0.02130126953125, -0.02471923828125, -0.03326416015625, 0.0130157470703125, 0.007625579833984375, -0.01314544677734375, -0.0117340087890625, -0.01410675048828125, -0.012542724609375, -0.00937652587890625, -0.0206451416015625, 0.032012939453125, 0.0009737014770507812, -0.018646240234375, 0.0714111328125, 0.03741455078125, 0.001880645751953125, -0.00435638427734375, 0.0013990402221679688, 0.02874755859375, -0.015350341796875, 0.0168609619140625, -0.036590576171875, 0.015045166015625, -0.022979736328125, -0.007110595703125, 0.0016498565673828125, 0.0244293212890625, -0.058807373046875, -0.026397705078125, -0.033416748046875, 0.0036792755126953125, 0.0097503662109375, -0.031524658203125, 0.043365478515625, 0.00333404541015625, -0.026611328125, 0.035675048828125, -0.0301513671875, 0.0142059326171875, 0.018463134765625, 0.02642822265625, -0.05767822265625, 0.055267333984375, -0.0200347900390625, 0.01360321044921875, 0.03558349609375 ]
a0171ff317d9154c07ce9ae82980fa4011c0dd8d
Wordpress Stackexchange Q: Remove year and month in URL using .htaccess For example, to redirect old URLs of the form: /2016/10/mukunda-murari-kannada-songs-download.html To /mukunda-murari-kannada-songs-download.html I have already changed the permalink structure in WordPress, but wish to redirect the old URLs to the new, in the most efficient way, in order to help preserve SEO. This is my code: # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^([^/.]+)/?$ $1.html [L,R=301] RewriteRule . /index.php [L] </IfModule> # END WordPress A: Why not change your permalinks to "Post Name" in Settings, Permalinks?
Q: Remove year and month in URL using .htaccess For example, to redirect old URLs of the form: /2016/10/mukunda-murari-kannada-songs-download.html To /mukunda-murari-kannada-songs-download.html I have already changed the permalink structure in WordPress, but wish to redirect the old URLs to the new, in the most efficient way, in order to help preserve SEO. This is my code: # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^([^/.]+)/?$ $1.html [L,R=301] RewriteRule . /index.php [L] </IfModule> # END WordPress A: Why not change your permalinks to "Post Name" in Settings, Permalinks? A: Assuming you have already changed the permalinks structure as @RickHellewell suggests, then you can do something like the following near the top of your .htaccess file (before the existing WP front-controller) to redirect the old URLs (with the stated format) in order to preserve SEO. RewriteRule ^\d{4}/\d\d/([a-z-]+\.html)$ /$1 [R=301,L]
wordpress
{ "language": "en", "length": 148, "provenance": "stackexchange_00019.jsonl.gz:484925", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/298819" }
[ 0.0482177734375, -0.01067352294921875, -0.03131103515625, -0.042633056640625, -0.008575439453125, -0.0380859375, 0.0241851806640625, -0.0118255615234375, 0.006877899169921875, 0.019378662109375, 0.05126953125, -0.051116943359375, 0.01678466796875, -0.072265625, 0.0006809234619140625, -0.007061004638671875, 0.0130157470703125, -0.0285186767578125, 0.0006399154663085938, -0.007595062255859375, 0.01398468017578125, 0.01015472412109375, 0.0142059326171875, -0.0135650634765625, 0.035552978515625, -0.01476287841796875, 0.06378173828125, -0.0535888671875, 0.0374755859375, -0.0278167724609375, 0.0232391357421875, -0.005962371826171875, 0.01425933837890625, 0.0389404296875, -0.0096282958984375, 0.01357269287109375, -0.032318115234375, 0.034027099609375, 0.047576904296875, -0.021331787109375, 0.02667236328125, -0.040557861328125, -0.003940582275390625, -0.00791168212890625, 0.01490020751953125, -0.0325927734375, 0.0450439453125, -0.05401611328125, -0.009796142578125, -0.01418304443359375, 0.01134490966796875, 0.015716552734375, 0.011749267578125, 0.0352783203125, -0.010040283203125, 0.017852783203125, 0.005977630615234375, 0.0164947509765625, 0.0013217926025390625, 0.016082763671875, 0.0085601806640625, 0.07037353515625, -0.023834228515625, 0.0066680908203125, -0.0266571044921875, -0.0182647705078125, -0.006427764892578125, 0.0289306640625, -0.06396484375, -0.059600830078125, 0.042877197265625, -0.015350341796875, -0.01033782958984375, -0.045562744140625, 0.0260162353515625, 0.026275634765625, -0.012298583984375, 0.01039886474609375, 0.002201080322265625, 0.0206146240234375, 0.02301025390625, -0.00469970703125, 0.000324249267578125, -0.05096435546875, 0.042327880859375, -0.047271728515625, 0.00141143798828125, -0.003749847412109375, -0.053009033203125, -0.020416259765625, -0.04620361328125, -0.0621337890625, -0.0323486328125, -0.00962066650390625, -0.0266876220703125, -0.0014448165893554688, 0.05889892578125, 0.0506591796875, 0.01251983642578125, -0.026519775390625, 0.002590179443359375, -0.037078857421875, -0.04144287109375, 0.0074310302734375, 0.00769805908203125, 0.079833984375, 0.0242462158203125, 0.0231170654296875, 0.050262451171875, -0.0196533203125, 0.0285186767578125, 0.0689697265625, -0.04766845703125, -0.0139312744140625, -0.0310821533203125, 0.06622314453125, -0.00982666015625, -0.049591064453125, -0.0161895751953125, 0.006954193115234375, -0.003803253173828125, 0.0295257568359375, 0.0038890838623046875, -0.019134521484375, -0.002399444580078125, -0.01267242431640625, -0.0206451416015625, -0.0187530517578125, 0.0020751953125, 0.018341064453125, -0.0156097412109375, 0.01470184326171875, -0.0142822265625, -0.0017185211181640625, -0.01194000244140625, -0.017913818359375, 0.0611572265625, -0.036163330078125, -0.027435302734375, 0.06610107421875, -0.04595947265625, -0.059783935546875, -0.02276611328125, -0.037139892578125, 0.01512908935546875, 0.021453857421875, -0.00597381591796875, 0.021728515625, 0.0244140625, -0.044586181640625, 0.01125335693359375, -0.041473388671875, 0.037689208984375, 0.009765625, -0.0284423828125, -0.0233306884765625, 0.00722503662109375, -0.01506805419921875, -0.0011186599731445312, -0.0221099853515625, 0.03759765625, -0.01000213623046875, -0.0228271484375, -0.006740570068359375, -0.06378173828125, -0.0026683807373046875, -0.053436279296875, -0.006313323974609375, 0.01971435546875, -0.0016155242919921875, -0.0098724365234375, -0.021881103515625, -0.0103302001953125, -0.032745361328125, -0.021331787109375, 0.00670623779296875, -0.01004791259765625, -0.0218505859375, 0.0010366439819335938, 0.06292724609375, 0.038787841796875, -0.004062652587890625, -0.01541900634765625, 0.0249786376953125, -0.07586669921875, 0.024169921875, -0.0005936622619628906, 0.01617431640625, 0.00789642333984375, -0.0006198883056640625, 0.119140625, 0.025848388671875, -0.07135009765625, 0.0277557373046875, -0.0037403106689453125, -0.0099945068359375, 0.01367950439453125, 0.002338409423828125, 0.0069427490234375, -0.0030460357666015625, -0.0067901611328125, 0.05572509765625, -0.06134033203125, 0.051055908203125, -0.0176544189453125, 0.0200653076171875, -0.00727081298828125, 0.0267486572265625, -0.0372314453125, 0.035064697265625, 0.032196044921875, 0.03155517578125, -0.056304931640625, -0.0211029052734375, 0.01239013671875, 0.01605224609375, 0.01143646240234375, 0.033905029296875, 0.004085540771484375, 0.00475311279296875, 0.0230712890625, 0.0094146728515625, 0.0338134765625, 0.043670654296875, 0.0168609619140625, -0.045013427734375, -0.004974365234375, -0.04840087890625, -0.0297393798828125, -0.0006875991821289062, -0.0811767578125, 0.053314208984375, 0.0081329345703125, 0.035858154296875, -0.025665283203125, -0.01523590087890625, -0.02386474609375, -0.07177734375, 0.01898193359375, 0.062255859375, 0.04254150390625, 0.034454345703125, 0.003299713134765625, 0.0064697265625, 0.0026721954345703125, -0.10986328125, -0.0165863037109375, -0.0088043212890625, -0.0139923095703125, 0.0007500648498535156, 0.0340576171875, -0.002838134765625, 0.0225982666015625, -0.027984619140625, -0.006099700927734375, 0.032745361328125, -0.0242156982421875, -0.0188140869140625, -0.0263671875, 0.006809234619140625, 0.016937255859375, -0.014984130859375, -0.032135009765625, -0.0009083747863769531, 0.01126861572265625, 0.01216888427734375, 0.04156494140625, 0.0364990234375, 0.0106964111328125, -0.0087432861328125, 0.00305938720703125, -0.019561767578125, 0.006671905517578125, 0.0272064208984375, 0.01068115234375, -0.017425537109375, 0.00089263916015625, -0.004726409912109375, 0.0046234130859375, 0.00907135009765625, -0.00472259521484375, 0.0055999755859375, -0.03009033203125, -0.00765228271484375, 0.0137176513671875, 0.00022649765014648438, -0.00018131732940673828, 0.009490966796875, 0.01904296875, 0.0123138427734375, 0.04290771484375, 0.002777099609375, 0.00905609130859375, 0.0018472671508789062, 0.034088134765625, -0.0316162109375, 0.0158233642578125, -0.01000213623046875, 0.0390625, -0.035614013671875, -0.00052642822265625, 0.044464111328125, 0.00193023681640625, 0.0008940696716308594, 0.01174163818359375, -0.00394439697265625, 0.032989501953125, -0.00299835205078125, -0.01506805419921875, 0.009552001953125, -0.060760498046875, -0.015655517578125, 0.02520751953125, 0.0049285888671875, 0.004131317138671875, -0.019805908203125, -0.0037784576416015625, 0.00675201416015625, -0.0665283203125, -0.070556640625, -0.03509521484375, -0.00656890869140625, 0.007843017578125, 0.05938720703125, 0.0091552734375, -0.00812530517578125, 0.057281494140625, 0.0100555419921875, 0.056793212890625, -0.0058746337890625, -0.077880859375, -0.0360107421875, -0.08282470703125, -0.029052734375, -0.0070037841796875, -0.002986907958984375, -0.005672454833984375, 0.00702667236328125, -0.01354217529296875, -0.031463623046875, -0.03228759765625, 0.0094757080078125, 0.0175933837890625, -0.02130126953125, 0.0189208984375, -0.002197265625, 0.0044097900390625, -0.0034427642822265625, 0.0810546875, 0.043670654296875, -0.05584716796875, 0.00616455078125, -0.0023021697998046875, 0.00009953975677490234, 0.0012416839599609375, -0.01313018798828125, 0.01416015625, -0.0074462890625, 0.01129150390625, -0.055511474609375, -0.032470703125, -0.01007080078125, -0.041778564453125, -0.0254364013671875, 0.0229644775390625, 0.01007080078125, -0.0178375244140625, 0.0005536079406738281, -0.0002715587615966797, -0.01552581787109375, 0.02691650390625, -0.048492431640625, 0.0305633544921875, -0.0036525726318359375, 0.00435638427734375, -0.0411376953125, 0.0540771484375, -0.0107574462890625, -0.007595062255859375, 0.01491546630859375, -0.006656646728515625, 0.01062774658203125, -0.0472412109375, -0.0287933349609375, -0.042327880859375, 0.035491943359375, -0.084228515625, -0.017425537109375, -0.05535888671875, 0.0006208419799804688, -0.0175018310546875, 0.061279296875, -0.0143890380859375, -0.01654052734375, -0.013824462890625, -0.003444671630859375, 0.0164031982421875, -0.0036411285400390625, -0.01142120361328125, -0.01168060302734375, -0.08953857421875, -0.0153961181640625, -0.0037937164306640625, -0.0184783935546875, -0.0052337646484375, -0.007099151611328125, -0.03570556640625, -0.0421142578125, 0.0305328369140625, 0.054412841796875, -0.018798828125, 0.0055694580078125, -0.0272369384765625, 0.0147247314453125, -0.032257080078125, 0.047943115234375, -0.01432037353515625, -0.0243072509765625, 0.011199951171875, 0.040985107421875, 0.01849365234375, -0.03863525390625, 0.001590728759765625, 0.0391845703125, -0.0013523101806640625, -0.004180908203125, 0.0008816719055175781, -0.00691986083984375, -0.00012934207916259766, 0.06585693359375, -0.0010089874267578125, 0.01226043701171875, 0.009185791015625, -0.02471923828125, -0.011444091796875, 0.019287109375, -0.029510498046875, 0.04083251953125, -0.0173797607421875, -0.0022220611572265625, -0.08197021484375, -0.03436279296875, -0.0078582763671875, 0.0085296630859375, -0.00926971435546875, -0.0035915374755859375, -0.001983642578125, -0.066162109375, 0.042755126953125, 0.040069580078125, -0.00998687744140625, -0.00731658935546875, 0.019195556640625, 0.00887298583984375, -0.03955078125, 0.01062774658203125, 0.0595703125, 0.021209716796875, -0.01280975341796875, 0.06640625, -0.020782470703125, 0.007080078125, 0.06243896484375, -0.046844482421875, -0.015899658203125, -0.015716552734375, 0.039520263671875, 0.0156097412109375, -0.019775390625, 0.004058837890625, -0.013702392578125, 0.034088134765625, 0.05426025390625, -0.0014047622680664062, -0.0040740966796875, -0.0025959014892578125, 0.018646240234375, 0.0009927749633789062, -0.037689208984375, -0.033905029296875, -0.05059814453125, 0.01641845703125, -0.002655029296875, 0.01177978515625, -0.00803375244140625, 0.007781982421875, 0.0121002197265625, 0.00827789306640625, 0.00421142578125, -0.032562255859375, -0.0130767822265625, -0.05938720703125, 0.0156707763671875, 0.0016031265258789062, -0.0169525146484375, 0.00440216064453125, 0.004169464111328125, 0.01190185546875, -0.00811004638671875, -0.0305023193359375, -0.025604248046875, -0.01447296142578125, 0.0015773773193359375, 0.0240936279296875, -0.042510986328125, 0.01528167724609375, 0.03924560546875, -0.0217742919921875, -0.00174713134765625, -0.0247802734375, -0.00437164306640625, -0.043701171875, 0.03729248046875, 0.03643798828125, -0.00557708740234375, 0.0223541259765625, 0.05047607421875, 0.0301055908203125, 0.0140228271484375, -0.0152130126953125, 0.006809234619140625, 0.00788116455078125, 0.022979736328125, 0.0161590576171875, -0.027069091796875, -0.0002105236053466797, 0.0042572021484375, 0.0132293701171875, -0.03912353515625, -0.0024871826171875, 0.0465087890625, 0.0430908203125, -0.0006480216979980469, -0.034637451171875, 0.00981903076171875, 0.003208160400390625, 0.01032257080078125, 0.006923675537109375, -0.0022792816162109375, -0.01007843017578125, -0.0036830902099609375, 0.007904052734375, 0.0251312255859375, -0.006435394287109375, -0.007232666015625, 0.0100860595703125, -0.0284576416015625, 0.0018463134765625, 0.038330078125, -0.0106048583984375, -0.0208892822265625, -0.018096923828125, 0.04034423828125, -0.029541015625, -0.0186004638671875, 0.01163482666015625, 0.021881103515625, -0.045196533203125, 0.009185791015625, 0.0703125, -0.0050506591796875, 0.023406982421875, -0.01039886474609375, -0.028900146484375, 0.08233642578125, -0.012237548828125, 0.09185791015625, 0.021728515625, -0.0316162109375, -0.0092926025390625, -0.0200958251953125, -0.015472412109375, -0.00634765625, -0.016571044921875, -0.01678466796875, -0.01358795166015625, -0.00565338134765625, 0.025909423828125, -0.01140594482421875, -0.0222930908203125, 0.01107025146484375, -0.004581451416015625, -0.0015497207641601562, 0.0016031265258789062, -0.0069427490234375, 0.04168701171875, 0.0011663436889648438, 0.055694580078125, -0.00447845458984375, 0.01171875, -0.021087646484375, -0.037933349609375, 0.01352691650390625, -0.034271240234375, -0.03985595703125, -0.00746917724609375, -0.05279541015625, 0.0024623870849609375, 0.03314208984375, -0.0015048980712890625, 0.0186767578125, -0.00962066650390625, -0.004886627197265625, -0.04107666015625, -0.006687164306640625, -0.04925537109375, 0.053619384765625, -0.079345703125, 0.0149993896484375, 0.07061767578125, -0.024810791015625, -0.0146942138671875, -0.0177764892578125, 0.00400543212890625, 0.00046539306640625, 0.0303802490234375, -0.033782958984375, -0.004451751708984375, 0.036224365234375, 0.01959228515625, 0.054351806640625, 0.021820068359375, 0.032257080078125, 0.051239013671875, -0.0229949951171875, 0.01274871826171875, 0.0738525390625, 0.06195068359375, -0.0012159347534179688, 0.031646728515625, 0.0538330078125, 0.0033721923828125, 0.006031036376953125, 0.06353759765625, 0.0478515625, -0.08233642578125, -0.0013589859008789062, -0.01464080810546875, -0.005443572998046875, 0.049102783203125, -0.019256591796875, -0.00443267822265625, -0.01079559326171875, 0.00708770751953125, -0.0162811279296875, -0.02056884765625, -0.01287078857421875, 0.012725830078125, -0.00045371055603027344, -0.0070037841796875, 0.03411865234375, -0.009429931640625, -0.036224365234375, -0.043701171875, 0.034576416015625, -0.033203125, -0.01824951171875, -0.00878143310546875, 0.0172882080078125, -0.0166015625, -0.052825927734375, 0.00910186767578125, -0.0239105224609375, -0.0064544677734375, 0.00988006591796875, -0.002574920654296875, 0.00720977783203125, 0.05291748046875, -0.0226287841796875, 0.005096435546875, 0.0245513916015625, -0.01299285888671875, 0.010040283203125, -0.0184478759765625, -0.0171356201171875, -0.0208587646484375, 0.0136871337890625, -0.00449371337890625, -0.0198211669921875, -0.0174407958984375, 0.015167236328125, 0.02349853515625, 0.01971435546875, 0.00586700439453125, -0.038726806640625, 0.0213623046875, -0.0195465087890625, 0.0029087066650390625, -0.008514404296875, 0.007541656494140625, -0.02496337890625, -0.0027599334716796875, -0.016387939453125, -0.031463623046875, 0.019744873046875, -0.043426513671875, -0.0843505859375, 0.10552978515625, -0.01381683349609375, 0.0697021484375, -0.0022602081298828125, 0.0316162109375, 0.00623321533203125, 0.02130126953125, 0.001811981201171875, 0.024261474609375, 0.01543426513671875, -0.0259552001953125, 0.032073974609375, 0.00505828857421875, 0.003143310546875, -0.005092620849609375, 0.083251953125, 0.01395416259765625, -0.04180908203125, -0.00444793701171875, 0.087646484375, 0.044036865234375, 0.0007624626159667969, 0.040283203125, -0.0255279541015625, 0.0194244384765625, -0.0220947265625, -0.0155487060546875, 0.005481719970703125, 0.00850677490234375, -0.07244873046875, 0.0246734619140625, -0.005321502685546875, -0.024627685546875, 0.008575439453125, -0.017852783203125, -0.031280517578125, 0.00905609130859375, 0.01526641845703125, 0.02154541015625, 0.045013427734375, -0.017578125, 0.0472412109375, -0.09234619140625, -0.045562744140625, -0.003253936767578125, 0.041168212890625, 0.01873779296875, 0.037567138671875, 0.040069580078125, 0.0220794677734375, 0.02935791015625, 0.00415802001953125, 0.025238037109375, 0.00862884521484375, -0.0049285888671875, 0.050811767578125, 0.038818359375, 0.033447265625, -0.01120758056640625, -0.03570556640625, 0.057342529296875, 0.078125, -0.0289306640625, -0.0126800537109375, 0.007083892822265625, 0.0018873214721679688, 0.01102447509765625, -0.01039886474609375, 0.04669189453125, -0.0258941650390625, -0.03485107421875, -0.0277862548828125, 0.01242828369140625, 0.031707763671875, 0.00839996337890625, -0.0085296630859375, 0.0064544677734375, -0.043731689453125, 0.01678466796875, -0.061279296875, 0.0408935546875, 0.03668212890625, 0.0352783203125, 0.0146331787109375, 0.010589599609375, 0.048828125, -0.0189971923828125, 0.0202178955078125, 0.003810882568359375, -0.008636474609375, -0.0325927734375, -0.0011053085327148438, -0.03619384765625, 0.0109710693359375, 0.0300140380859375, 0.04254150390625, 0.0217742919921875, 0.049346923828125, 0.00594329833984375, -0.05206298828125, -0.00023162364959716797, -0.01242828369140625, -0.0292510986328125, 0.03399658203125, -0.02410888671875, 0.019775390625, -0.019500732421875, -0.011627197265625, -0.0279541015625, 0.025390625, -0.00865936279296875, -0.026702880859375, 0.044464111328125, -0.017333984375, -0.0027446746826171875, 0.04559326171875, -0.01285552978515625, 0.0689697265625, 0.006183624267578125, 0.00151824951171875, -0.006755828857421875, -0.0016984939575195312, -0.0550537109375, 0.0107269287109375, 0.036712646484375, 0.0193634033203125, -0.01248931884765625, 0.002826690673828125, -0.00852203369140625, 0.0251617431640625, -0.0279388427734375, 0.0084686279296875, 0.0019083023071289062, -0.0040283203125, -0.0034770965576171875, -0.05718994140625, -0.003467559814453125, 0.0172882080078125, -0.01427459716796875, -0.02752685546875, 0.08807373046875, -0.004436492919921875, -0.019866943359375, -0.0145263671875, 0.01511383056640625, -0.0166015625, -0.0218048095703125, 0.0244140625, -0.00360870361328125, 0.007022857666015625, -0.0031452178955078125, -0.0721435546875, 0.0032062530517578125, 0.01375579833984375, -0.0037174224853515625, 0.0110626220703125, -0.0287933349609375, 0.0131683349609375, 0.023590087890625, -0.00447845458984375, -0.041900634765625, -0.052032470703125, 0.00519561767578125, 0.0208892822265625, -0.0318603515625, -0.0150299072265625, -0.005619049072265625, 0.03863525390625, 0.00959014892578125, 0.0023403167724609375, 0.0269317626953125, -0.032318115234375, 0.030059814453125, 0.0309906005859375, -0.009002685546875, 0.006076812744140625, 0.0183868408203125, -0.018707275390625, 0.01001739501953125, 0.00811004638671875, 0.01001739501953125, 0.00024008750915527344, 0.03759765625, -0.037384033203125, -0.035186767578125, -0.01534271240234375, 0.025115966796875, -0.01213836669921875, -0.03009033203125, -0.0213775634765625, -0.03216552734375, -0.0050201416015625, -0.01049041748046875, -0.01375579833984375, -0.023834228515625, 0.0189056396484375, -0.0126190185546875, -0.0307769775390625, -0.03814697265625, -0.0034770965576171875, 0.01007080078125, 0.0009765625, -0.074951171875, 0.031585693359375, -0.01036834716796875, 0.07305908203125, -0.05987548828125, -0.01837158203125, -0.0208740234375, -0.01007843017578125, -0.01824951171875, -0.04180908203125, -0.061309814453125, 0.03741455078125, -0.05133056640625, 0.0066375732421875, 0.031036376953125, -0.005718231201171875, -0.002422332763671875, -0.049896240234375, -0.009613037109375, -0.0021305084228515625, -0.04119873046875, 0.0109710693359375, 0.030426025390625, 0.0169830322265625, -0.05975341796875, -0.089599609375, 0.0078277587890625, -0.0273895263671875, 0.0166473388671875, 0.029205322265625, -0.04156494140625, -0.0243377685546875, -0.047882080078125, -0.09259033203125, 0.0221099853515625, 0.0102386474609375, -0.040435791015625, -0.0219573974609375, -0.006107330322265625, -0.0251922607421875, 0.072509765625, 0.01512908935546875, -0.043243408203125, -0.0340576171875, 0.00688934326171875, 0.002513885498046875, 0.035858154296875, -0.020111083984375, 0.00751495361328125, 0.00952911376953125, 0.05975341796875, 0.052764892578125, -0.005176544189453125, 0.0269927978515625, 0.0038967132568359375, 0.045013427734375, 0.05902099609375, 0.00859832763671875, 0.031951904296875, -0.007049560546875, -0.047088623046875, -0.0172576904296875, -0.06219482421875, -0.07037353515625, -0.051116943359375, 0.09075927734375, 0.051788330078125, 0.0192108154296875, -0.01425933837890625, -0.01983642578125, 0.01374053955078125, 0.00848388671875, -0.026275634765625, 0.0098876953125, -0.0635986328125, -0.017730712890625, -0.013763427734375, -0.025787353515625, 0.01335906982421875, 0.0081329345703125, -0.0433349609375, 0.017608642578125, -0.0009160041809082031, -0.022613525390625, -0.0165863037109375, 0.05902099609375, 0.04718017578125, -0.038848876953125, -0.0035648345947265625, -0.017425537109375, 0.001819610595703125, 0.00949859619140625, -0.066162109375, 0.039703369140625, 0.04547119140625, 0.00971221923828125, -0.0054931640625, 0.05792236328125, -0.0274505615234375, 0.0084228515625, -0.02667236328125, 0.004741668701171875, 0.0169677734375, -0.00652313232421875, 0.010284423828125, -0.01096343994140625, 0.044281005859375, -0.00958251953125, 0.06463623046875, 0.0024089813232421875, 0.007110595703125, -0.01392364501953125, 0.0411376953125, -0.028289794921875, 0.0037708282470703125, 0.0219879150390625, -0.045745849609375, 0.005237579345703125, 0.0125274658203125, 0.013702392578125, -0.03717041015625, 0.00800323486328125, -0.07049560546875, 0.01264190673828125, 0.00315093994140625 ]
1becad936f39d16350340b41701453a1b41cfc29
Wordpress Stackexchange Q: What flex-width/height does? I'm trying to understand what flex-width/flex-height parameter in custom-logo support does. Here, https://developer.wordpress.org/themes/functionality/custom-logo/ it is said that it defines Whether to allow for a flexible height. But what exactly it means. I also went through core and tested in my theme but can not produce what it does? A: flex-width stands for flexible width and flex-height stands for flexible height <?php // Previous function code here $args = array( 'default-image' => get_template_directory_uri() . '/assets/images/default-image.jpg', 'default-text-color' => '000', 'width' => 1140, 'height' => 250, 'flex-width' => false, // Now width are fixed to 1140 px 'flex-height' => true, // Height is adjustable ); // Later Code Here ?>
Q: What flex-width/height does? I'm trying to understand what flex-width/flex-height parameter in custom-logo support does. Here, https://developer.wordpress.org/themes/functionality/custom-logo/ it is said that it defines Whether to allow for a flexible height. But what exactly it means. I also went through core and tested in my theme but can not produce what it does? A: flex-width stands for flexible width and flex-height stands for flexible height <?php // Previous function code here $args = array( 'default-image' => get_template_directory_uri() . '/assets/images/default-image.jpg', 'default-text-color' => '000', 'width' => 1140, 'height' => 250, 'flex-width' => false, // Now width are fixed to 1140 px 'flex-height' => true, // Height is adjustable ); // Later Code Here ?>
wordpress
{ "language": "en", "length": 111, "provenance": "stackexchange_00019.jsonl.gz:484932", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/298835" }
[ -0.0229644775390625, -0.0220947265625, -0.057708740234375, -0.0262908935546875, -0.03204345703125, -0.0278167724609375, -0.018341064453125, 0.0305633544921875, -0.0293426513671875, 0.01081085205078125, -0.015838623046875, 0.030914306640625, -0.037567138671875, -0.0169830322265625, 0.00745391845703125, -0.03717041015625, 0.06634521484375, -0.004913330078125, 0.050872802734375, 0.00189971923828125, 0.011260986328125, 0.059173583984375, 0.00989532470703125, 0.095458984375, -0.010406494140625, 0.006671905517578125, 0.112060546875, -0.07623291015625, 0.0219268798828125, -0.0310516357421875, 0.006443023681640625, 0.0012845993041992188, 0.037200927734375, 0.0202789306640625, -0.064697265625, -0.041473388671875, 0.0262603759765625, -0.0213470458984375, -0.0428466796875, 0.043426513671875, 0.038665771484375, -0.032073974609375, -0.01454925537109375, -0.006267547607421875, -0.0170135498046875, -0.0218048095703125, 0.04779052734375, -0.0162353515625, 0.00128936767578125, 0.0260772705078125, -0.002178192138671875, -0.0014963150024414062, 0.0160675048828125, 0.037933349609375, -0.0085906982421875, -0.0261077880859375, -0.0276336669921875, 0.028350830078125, 0.039764404296875, 0.018310546875, -0.023040771484375, 0.0028324127197265625, 0.0005650520324707031, -0.039215087890625, -0.00640106201171875, -0.0115509033203125, 0.030792236328125, 0.0091094970703125, -0.01395416259765625, -0.0181884765625, 0.0118560791015625, -0.005657196044921875, -0.02020263671875, -0.01141357421875, -0.03936767578125, -0.0067596435546875, -0.0016756057739257812, -0.06988525390625, 0.0212554931640625, 0.0069427490234375, 0.03369140625, -0.006397247314453125, 0.0187225341796875, -0.00812530517578125, 0.03570556640625, 0.049896240234375, -0.0123291015625, -0.040771484375, 0.015899658203125, -0.01995849609375, 0.0032711029052734375, -0.038116455078125, 0.021240234375, 0.02716064453125, -0.04669189453125, -0.01531982421875, -0.006320953369140625, 0.015838623046875, -0.02056884765625, 0.0174102783203125, 0.01029205322265625, -0.0325927734375, 0.06060791015625, -0.0458984375, -0.01221466064453125, 0.01157379150390625, -0.01036834716796875, 0.0211334228515625, 0.034271240234375, 0.0261688232421875, 0.005615234375, -0.002574920654296875, -0.03106689453125, -0.009124755859375, -0.037200927734375, -0.006542205810546875, -0.0645751953125, -0.01190185546875, -0.00875091552734375, 0.00024700164794921875, 0.0253753662109375, 0.052032470703125, 0.0120849609375, -0.01019287109375, 0.01837158203125, 0.032928466796875, 0.00601959228515625, -0.06671142578125, -0.035430908203125, 0.02557373046875, -0.014556884765625, 0.004970550537109375, 0.04718017578125, 0.043243408203125, 0.01161956787109375, -0.0162811279296875, 0.033721923828125, -0.0218963623046875, -0.0063629150390625, -0.0091400146484375, 0.0285491943359375, -0.027191162109375, -0.0311279296875, -0.0079803466796875, -0.01001739501953125, -0.01568603515625, -0.00890350341796875, 0.054656982421875, 0.00452423095703125, -0.063232421875, 0.07635498046875, -0.039886474609375, 0.0153656005859375, 0.004985809326171875, 0.00399017333984375, -0.000286102294921875, 0.0211639404296875, -0.006317138671875, -0.022491455078125, -0.01158905029296875, -0.023223876953125, 0.00560760498046875, 0.041046142578125, -0.004100799560546875, -0.01143646240234375, 0.0096435546875, -0.019287109375, 0.006381988525390625, 0.0267486572265625, 0.03271484375, 0.0307464599609375, 0.0233306884765625, -0.0043792724609375, 0.026763916015625, 0.00873565673828125, -0.0125885009765625, 0.0009765625, -0.00821685791015625, 0.035552978515625, 0.00684356689453125, -0.03131103515625, -0.0251007080078125, 0.059112548828125, -0.0297698974609375, 0.055511474609375, -0.05755615234375, 0.024993896484375, -0.07000732421875, -0.0214385986328125, 0.0165252685546875, 0.0064849853515625, 0.05560302734375, -0.055450439453125, 0.0316162109375, -0.0187530517578125, 0.0168304443359375, -0.034515380859375, 0.01486968994140625, -0.017242431640625, -0.021575927734375, 0.032806396484375, -0.0206146240234375, 0.02044677734375, -0.028778076171875, -0.052154541015625, 0.00506591796875, -0.03558349609375, 0.0307769775390625, -0.023529052734375, 0.0033473968505859375, 0.01141357421875, -0.01947021484375, -0.022125244140625, 0.039306640625, -0.007587432861328125, -0.015594482421875, 0.0203704833984375, 0.022064208984375, -0.01091766357421875, -0.01247406005859375, -0.0003261566162109375, -0.034210205078125, -0.013397216796875, 0.045440673828125, 0.04296875, -0.02923583984375, -0.003307342529296875, -0.0211029052734375, 0.05023193359375, 0.018524169921875, -0.037933349609375, 0.0037975311279296875, 0.033111572265625, 0.0562744140625, -0.0208282470703125, -0.025726318359375, -0.0125732421875, -0.09466552734375, 0.02166748046875, 0.069580078125, 0.0205230712890625, 0.03570556640625, -0.00484466552734375, 0.0219268798828125, 0.06341552734375, 0.057159423828125, 0.0367431640625, -0.0197906494140625, -0.0011396408081054688, 0.0289306640625, 0.0302886962890625, -0.0135040283203125, 0.003330230712890625, 0.0019073486328125, 0.0239410400390625, 0.004566192626953125, -0.020477294921875, 0.006740570068359375, -0.034759521484375, -0.000827789306640625, 0.005096435546875, 0.03289794921875, 0.00769805908203125, 0.0139312744140625, -0.01129150390625, -0.0003552436828613281, 0.0203857421875, 0.0217437744140625, -0.00627899169921875, -0.023956298828125, 0.02532958984375, 0.03204345703125, -0.0053863525390625, 0.00951385498046875, -0.013671875, -0.0016374588012695312, -0.02557373046875, 0.0157928466796875, -0.005825042724609375, -0.0177001953125, -0.006610870361328125, 0.020416259765625, -0.0684814453125, -0.01537322998046875, 0.00995635986328125, -0.04229736328125, -0.03009033203125, 0.0241546630859375, 0.058074951171875, 0.00466156005859375, 0.0017843246459960938, 0.049560546875, 0.0265960693359375, 0.05316162109375, 0.028778076171875, -0.02606201171875, -0.004924774169921875, -0.07501220703125, 0.071044921875, -0.06341552734375, 0.053558349609375, 0.07672119140625, -0.0250244140625, 0.027099609375, -0.0025959014892578125, 0.01178741455078125, -0.0301666259765625, 0.0249481201171875, 0.0118560791015625, -0.0144195556640625, 0.0287017822265625, 0.083984375, 0.03118896484375, 0.052093505859375, -0.01180267333984375, -0.01239776611328125, -0.01715087890625, 0.0491943359375, 0.005855560302734375, 0.04461669921875, 0.023529052734375, -0.0775146484375, 0.0096282958984375, -0.0252838134765625, -0.04034423828125, -0.00839996337890625, -0.005474090576171875, -0.0017986297607421875, 0.01453399658203125, -0.0574951171875, -0.01132965087890625, -0.042327880859375, -0.06658935546875, -0.03662109375, 0.0210418701171875, 0.01300811767578125, 0.0085296630859375, 0.0416259765625, 0.00580596923828125, -0.055023193359375, -0.015594482421875, 0.002292633056640625, -0.021881103515625, 0.0040283203125, 0.0010995864868164062, -0.055755615234375, 0.004962921142578125, -0.01471710205078125, -0.0035877227783203125, 0.005702972412109375, 0.005275726318359375, -0.00612640380859375, -0.007663726806640625, -0.061309814453125, -0.0279388427734375, 0.04766845703125, 0.00797271728515625, -0.06671142578125, 0.0009660720825195312, -0.09210205078125, -0.056549072265625, -0.0239410400390625, -0.073974609375, 0.05792236328125, 0.067626953125, -0.01500701904296875, -0.01666259765625, 0.0247344970703125, 0.010986328125, 0.003631591796875, 0.002880096435546875, -0.03668212890625, 0.062225341796875, 0.019256591796875, 0.032806396484375, -0.00873565673828125, -0.00469970703125, -0.04534912109375, 0.048187255859375, -0.0017614364624023438, -0.0104522705078125, -0.0225982666015625, 0.024261474609375, -0.0014705657958984375, -0.0406494140625, 0.04541015625, 0.000640869140625, 0.006175994873046875, -0.006778717041015625, -0.0241546630859375, -0.0018291473388671875, 0.0784912109375, -0.033355712890625, -0.02020263671875, 0.0175628662109375, 0.01364898681640625, -0.0240325927734375, 0.0078887939453125, -0.037078857421875, -0.0142974853515625, -0.064697265625, 0.007701873779296875, -0.0016460418701171875, -0.01611328125, -0.059112548828125, 0.05126953125, -0.08221435546875, -0.0121307373046875, 0.0124359130859375, 0.04656982421875, -0.0054931640625, 0.017120361328125, -0.005023956298828125, 0.00647735595703125, 0.0189208984375, -0.0101470947265625, -0.034698486328125, -0.004817962646484375, -0.029296875, 0.04046630859375, 0.00951385498046875, 0.002498626708984375, -0.008453369140625, 0.0321044921875, 0.03228759765625, 0.0171966552734375, 0.00070953369140625, -0.018646240234375, 0.01212310791015625, -0.031890869140625, -0.00994110107421875, -0.03582763671875, -0.009521484375, 0.00592041015625, -0.026153564453125, 0.05450439453125, -0.0025539398193359375, 0.02093505859375, 0.0292510986328125, -0.02874755859375, -0.022613525390625, 0.0025806427001953125, 0.015655517578125, 0.027099609375, 0.0155792236328125, 0.00004506111145019531, -0.0204620361328125, -0.01143646240234375, 0.087646484375, 0.043060302734375, -0.0017995834350585938, -0.01849365234375, 0.09710693359375, 0.0027618408203125, -0.052490234375, -0.0662841796875, 0.05059814453125, 0.058441162109375, 0.037628173828125, 0.039886474609375, 0.041595458984375, -0.03436279296875, 0.019561767578125, 0.0648193359375, 0.0274200439453125, 0.049072265625, -0.0093536376953125, 0.0172271728515625, -0.031341552734375, 0.028564453125, 0.0394287109375, -0.0745849609375, 0.0165557861328125, -0.0143585205078125, 0.0200347900390625, 0.0173187255859375, -0.005420684814453125, -0.024993896484375, -0.0121002197265625, -0.00704193115234375, 0.01611328125, 0.002780914306640625, 0.01491546630859375, 0.00890350341796875, 0.0078887939453125, -0.0005645751953125, -0.03759765625, -0.031341552734375, 0.0239715576171875, -0.00359344482421875, -0.0194091796875, -0.0227203369140625, 0.03424072265625, -0.0088653564453125, 0.019622802734375, 0.0142364501953125, 0.00971221923828125, 0.0209503173828125, -0.00556182861328125, -0.03350830078125, -0.038116455078125, 0.0156097412109375, 0.0032978057861328125, 0.020263671875, 0.039794921875, 0.04815673828125, 0.033233642578125, -0.0239715576171875, -0.004444122314453125, 0.0517578125, -0.004787445068359375, -0.045318603515625, 0.01214599609375, -0.005832672119140625, -0.01373291015625, 0.01169586181640625, -0.00782012939453125, 0.0501708984375, -0.0382080078125, -0.0309295654296875, 0.0036983489990234375, 0.03106689453125, -0.0068511962890625, 0.023040771484375, 0.020782470703125, -0.01397705078125, -0.0084686279296875, 0.0243377685546875, -0.0224609375, 0.0249786376953125, -0.00934600830078125, 0.045928955078125, -0.034698486328125, -0.047271728515625, 0.04559326171875, -0.0596923828125, -0.008819580078125, 0.0296478271484375, -0.0130157470703125, -0.0689697265625, 0.00324249267578125, 0.0362548828125, 0.03338623046875, -0.0438232421875, -0.027740478515625, 0.02606201171875, -0.00945281982421875, 0.049560546875, -0.00608062744140625, -0.0153961181640625, 0.0213623046875, 0.0212554931640625, -0.05224609375, 0.004604339599609375, 0.007274627685546875, -0.01031494140625, -0.045166015625, 0.0107879638671875, -0.0208892822265625, 0.0144805908203125, -0.0213775634765625, 0.005374908447265625, -0.01093292236328125, -0.005199432373046875, 0.0419921875, 0.0219573974609375, 0.027435302734375, 0.00041484832763671875, -0.01763916015625, -0.0265655517578125, -0.00426483154296875, 0.0026035308837890625, 0.0211334228515625, -0.03851318359375, 0.01496124267578125, -0.02606201171875, 0.006473541259765625, -0.006076812744140625, 0.033416748046875, 0.029449462890625, -0.0048065185546875, 0.04620361328125, 0.008392333984375, -0.01059722900390625, -0.03070068359375, 0.0230712890625, 0.0202178955078125, 0.00806427001953125, -0.002742767333984375, 0.0076751708984375, 0.01264190673828125, -0.016632080078125, 0.0177154541015625, 0.02880859375, 0.003200531005859375, -0.03643798828125, 0.0166015625, -0.08074951171875, 0.0290679931640625, -0.01458740234375, 0.0054168701171875, -0.019134521484375, -0.0164642333984375, -0.00780487060546875, 0.035552978515625, 0.004131317138671875, 0.008148193359375, 0.038116455078125, -0.005756378173828125, 0.040252685546875, 0.01387786865234375, -0.0257110595703125, 0.0161895751953125, -0.01050567626953125, 0.02569580078125, 0.040313720703125, -0.01496124267578125, 0.0296783447265625, 0.05120849609375, -0.047821044921875, 0.008209228515625, 0.023895263671875, -0.031890869140625, 0.01544952392578125, 0.028167724609375, -0.038970947265625, -0.05609130859375, -0.0238189697265625, 0.0028934478759765625, 0.027008056640625, -0.00746917724609375, 0.01401519775390625, 0.02215576171875, 0.036224365234375, 0.07098388671875, -0.0460205078125, 0.0034160614013671875, -0.0008287429809570312, -0.0257720947265625, 0.053192138671875, -0.0267791748046875, 0.0097808837890625, -0.0031890869140625, 0.0185089111328125, 0.033935546875, -0.03656005859375, -0.00921630859375, -0.006755828857421875, -0.01543426513671875, 0.0018301010131835938, 0.00391387939453125, 0.00930023193359375, -0.047027587890625, 0.0162506103515625, 0.0245819091796875, 0.005550384521484375, 0.0283355712890625, 0.02410888671875, -0.0243377685546875, -0.034698486328125, -0.04278564453125, -0.030364990234375, -0.04302978515625, -0.042083740234375, 0.01364898681640625, 0.0040435791015625, -0.00823974609375, 0.04791259765625, -0.0309600830078125, 0.03515625, 0.043060302734375, -0.057037353515625, -0.00733184814453125, -0.0193328857421875, 0.033416748046875, 0.049102783203125, -0.05120849609375, 0.0253143310546875, -0.02099609375, -0.012420654296875, -0.01184844970703125, -0.005420684814453125, 0.058502197265625, -0.056121826171875, 0.0180511474609375, 0.04156494140625, 0.08056640625, -0.01407623291015625, -0.0322265625, 0.003414154052734375, -0.0679931640625, -0.0430908203125, -0.03497314453125, -0.057525634765625, 0.012939453125, -0.053375244140625, -0.00876617431640625, 0.006702423095703125, -0.0163726806640625, -0.004894256591796875, 0.017852783203125, -0.011505126953125, 0.01049041748046875, -0.01007843017578125, 0.007717132568359375, -0.0020732879638671875, -0.012542724609375, -0.01160430908203125, 0.0157623291015625, 0.0019092559814453125, -0.010986328125, 0.017608642578125, -0.0006604194641113281, -0.017913818359375, -0.02313232421875, 0.005535125732421875, 0.109619140625, 0.1072998046875, 0.08636474609375, -0.023590087890625, -0.004852294921875, 0.025634765625, 0.01270294189453125, -0.0229339599609375, 0.02117919921875, -0.004329681396484375, -0.0294036865234375, 0.0223846435546875, 0.0213165283203125, 0.01235198974609375, -0.0190582275390625, 0.006542205810546875, -0.050079345703125, 0.014495849609375, 0.0252838134765625, 0.0206756591796875, -0.0191650390625, 0.01206207275390625, 0.0011615753173828125, -0.0263824462890625, 0.01513671875, -0.0275115966796875, 0.036041259765625, 0.0032978057861328125, 0.02117919921875, 0.016326904296875, 0.00933837890625, -0.01468658447265625, -0.001682281494140625, 0.01520538330078125, 0.01303863525390625, -0.0254364013671875, -0.01108551025390625, -0.020233154296875, 0.002742767333984375, -0.03717041015625, 0.01033782958984375, 0.0040435791015625, -0.015289306640625, -0.01336669921875, -0.035858154296875, 0.0014600753784179688, -0.01552581787109375, 0.0196075439453125, 0.0001424551010131836, -0.014373779296875, -0.0650634765625, -0.00963592529296875, -0.06866455078125, 0.035888671875, 0.05364990234375, 0.013031005859375, 0.00768280029296875, 0.0261993408203125, -0.08343505859375, -0.0018463134765625, -0.038177490234375, -0.0216522216796875, 0.01230621337890625, 0.058197021484375, 0.0390625, 0.011199951171875, -0.00014829635620117188, -0.036285400390625, -0.0048370361328125, 0.031280517578125, -0.033355712890625, 0.0028896331787109375, -0.00360870361328125, -0.052764892578125, -0.0224151611328125, 0.030303955078125, -0.01113128662109375, -0.0003266334533691406, 0.014862060546875, 0.0165252685546875, -0.018402099609375, -0.0096435546875, 0.018951416015625, -0.01383209228515625, -0.04010009765625, -0.01306915283203125, 0.01226806640625, 0.05291748046875, 0.014892578125, 0.024383544921875, -0.0129547119140625, 0.06451416015625, -0.0273590087890625, 0.0225982666015625, 0.009368896484375, -0.0256805419921875, -0.0020236968994140625, 0.0057830810546875, 0.0416259765625, 0.01776123046875, -0.006832122802734375, 0.0006546974182128906, -0.02093505859375, -0.00653076171875, 0.00023496150970458984, 0.024566650390625, 0.01178741455078125, 0.01763916015625, -0.0026607513427734375, -0.02423095703125, 0.0021648406982421875, 0.00250244140625, 0.0286407470703125, 0.03521728515625, -0.006500244140625, 0.0215301513671875, -0.039947509765625, -0.03997802734375, -0.023681640625, 0.041748046875, -0.0096282958984375, 0.0740966796875, -0.033111572265625, 0.0243682861328125, 0.0269317626953125, -0.046295166015625, 0.0390625, -0.0084075927734375, 0.04583740234375, -0.00225067138671875, -0.01378631591796875, -0.0279693603515625, -0.01177215576171875, 0.021484375, 0.0276336669921875, -0.0458984375, 0.0095367431640625, 0.01462554931640625, 0.00567626953125, -0.0155487060546875, 0.0006155967712402344, -0.045318603515625, -0.055267333984375, -0.0267791748046875, 0.0162200927734375, -0.020233154296875, -0.03680419921875, -0.0357666015625, 0.063720703125, 0.00833892822265625, -0.00020134449005126953, 0.0213470458984375, -0.0535888671875, 0.041839599609375, 0.02764892578125, -0.019012451171875, -0.0615234375, -0.0216522216796875, -0.018096923828125, 0.00493621826171875, -0.01294708251953125, 0.06591796875, -0.01108551025390625, 0.0191192626953125, 0.0841064453125, 0.0509033203125, 0.08721923828125, -0.0299835205078125, 0.004940032958984375, 0.0472412109375, 0.01430511474609375, 0.00861358642578125, -0.007122039794921875, -0.019775390625, 0.0012226104736328125, 0.006561279296875, 0.0126190185546875, 0.02825927734375, -0.0008096694946289062, -0.021759033203125, -0.025146484375, 0.00691986083984375, -0.0028171539306640625, -0.03375244140625, 0.0225372314453125, -0.01383209228515625, -0.0196380615234375, -0.0098876953125, 0.002674102783203125, 0.0125274658203125, 0.02935791015625, -0.01483917236328125, -0.0141448974609375, -0.00226593017578125, 0.0276947021484375, 0.00701141357421875, 0.06756591796875, 0.049346923828125, -0.057769775390625, 0.0168914794921875, 0.05706787109375, 0.0755615234375, 0.101806640625, 0.016937255859375, -0.02545166015625, 0.00867462158203125, 0.0006175041198730469, -0.00933837890625, 0.009033203125, 0.0246734619140625, -0.016448974609375, -0.03216552734375, -0.0238800048828125, -0.0306854248046875, -0.05572509765625, -0.059783935546875, -0.04571533203125, 0.02227783203125, 0.00894927978515625, -0.03204345703125, -0.046234130859375, -0.0254058837890625, -0.0178375244140625, 0.08111572265625, 0.0017652511596679688, -0.0241241455078125, -0.032440185546875, 0.04486083984375, 0.0005540847778320312, -0.0275421142578125, 0.0297088623046875, -0.01230621337890625, -0.026611328125, 0.02471923828125, 0.0374755859375, -0.02593994140625, -0.0218048095703125, -0.0032024383544921875, 0.01035308837890625, 0.0298614501953125, -0.00675201416015625, -0.0162200927734375, 0.006866455078125, -0.01318359375, 0.0005650520324707031, -0.00007212162017822266, 0.0295257568359375, 0.01349639892578125, -0.0186920166015625, 0.006866455078125, -0.0159454345703125, -0.02593994140625, 0.0214080810546875, 0.01186370849609375, -0.0155029296875, 0.01468658447265625, -0.005603790283203125, -0.031524658203125, -0.01393890380859375, 0.00626373291015625, -0.007720947265625, 0.03009033203125, -0.04400634765625, -0.030059814453125, 0.005840301513671875, 0.002811431884765625, 0.0186614990234375, -0.054229736328125, 0.07745361328125, 0.052337646484375, -0.050628662109375, 0.01154327392578125, -0.022125244140625, -0.022491455078125, 0.034393310546875, -0.048309326171875, -0.031768798828125, 0.0399169921875, -0.01580810546875, 0.009918212890625, 0.00963592529296875, -0.0131072998046875, -0.00433349609375, 0.0479736328125, 0.002788543701171875, 0.0238037109375, 0.00959014892578125, 0.01322174072265625, -0.043975830078125, 0.04656982421875, 0.0009937286376953125, 0.024749755859375, -0.0006399154663085938, 0.00405120849609375, -0.02978515625, 0.033203125, -0.0027065277099609375, -0.01515960693359375, 0.00061798095703125, -0.0017576217651367188, -0.00597381591796875, 0.00786590576171875, -0.022857666015625, -0.024200439453125, 0.008636474609375, 0.00724029541015625, -0.01690673828125, 0.0164642333984375 ]
83037d52eeb6812c440f7561dc17274529f1621d
Wordpress Stackexchange Q: Displaying PHP Errors from admin-ajax.php We've got some custom endpoints set up that do various things, which we access via /wp/wp-admin/admin-ajax.php?action=some_action However whenever there is an error as we're developing, such as syntax, logical, fatal etc, we simply get "500 Internal Server Error" Every other page on the site when there's an error, it gives us the PHP error. We have to then open our PHP Log file to see the error. Is there something in wordpress that disables displaying of errors on these URLs? and if so, how can we prevent this to allow rendering of the errors on the browser? A: WordPress by default hide errors for ajax request call. This can be confirmed from the source file wp-includes/load.php#L352, here: if ( defined( 'XMLRPC_REQUEST' ) || defined( 'REST_REQUEST' ) || ( defined( 'WP_INSTALLING' ) && WP_INSTALLING ) || wp_doing_ajax() ) { @ini_set( 'display_errors', 0 ); } See the function wp_doing_ajax() is being used in the conditional statement thus the display_errors is being set. To workaround this, you need to turn on error reporting manually at top of your ajax function call as suggested by @Friss.
Q: Displaying PHP Errors from admin-ajax.php We've got some custom endpoints set up that do various things, which we access via /wp/wp-admin/admin-ajax.php?action=some_action However whenever there is an error as we're developing, such as syntax, logical, fatal etc, we simply get "500 Internal Server Error" Every other page on the site when there's an error, it gives us the PHP error. We have to then open our PHP Log file to see the error. Is there something in wordpress that disables displaying of errors on these URLs? and if so, how can we prevent this to allow rendering of the errors on the browser? A: WordPress by default hide errors for ajax request call. This can be confirmed from the source file wp-includes/load.php#L352, here: if ( defined( 'XMLRPC_REQUEST' ) || defined( 'REST_REQUEST' ) || ( defined( 'WP_INSTALLING' ) && WP_INSTALLING ) || wp_doing_ajax() ) { @ini_set( 'display_errors', 0 ); } See the function wp_doing_ajax() is being used in the conditional statement thus the display_errors is being set. To workaround this, you need to turn on error reporting manually at top of your ajax function call as suggested by @Friss. A: You can try to add these two lines at the very top of tour script file error_reporting(E_ALL); ini_set("display_errors", 1); It tells php to report all kind of errors and overrides its default settings to display them. A: You can try the WP_Ajax_Response $response = array( 'what'=>'stuff', 'action'=>'delete_something', 'id'=>new WP_Error('oops','I had an accident.'), 'data'=>'Whoops, there was a problem!' ); $xmlResponse = new WP_Ajax_Response($response); $xmlResponse->send(); Read more https://codex.wordpress.org/Function_Reference/WP_Ajax_Response
wordpress
{ "language": "en", "length": 255, "provenance": "stackexchange_00019.jsonl.gz:484963", "question_score": "7", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/298928" }
[ 0.102783203125, -0.01702880859375, -0.02606201171875, -0.089599609375, 0.01898193359375, -0.04644775390625, 0.02203369140625, 0.0200653076171875, 0.036346435546875, -0.0011749267578125, -0.0853271484375, 0.009002685546875, -0.0280609130859375, 0.00592041015625, -0.02618408203125, -0.0546875, 0.023162841796875, 0.0237884521484375, 0.036224365234375, -0.0042572021484375, 0.00632476806640625, 0.013916015625, -0.006900787353515625, 0.0364990234375, -0.019805908203125, 0.0198516845703125, 0.0248565673828125, -0.01403045654296875, -0.0312042236328125, -0.0275115966796875, -0.00659942626953125, 0.038330078125, 0.0082550048828125, 0.050567626953125, -0.052581787109375, -0.02117919921875, 0.00536346435546875, 0.0211944580078125, -0.01245880126953125, 0.059844970703125, 0.005008697509765625, -0.0164642333984375, 0.07977294921875, -0.04168701171875, 0.03240966796875, 0.000011742115020751953, 0.03778076171875, -0.0340576171875, -0.0024127960205078125, 0.0089569091796875, 0.0241546630859375, 0.00807952880859375, 0.045501708984375, -0.0081024169921875, -0.0183868408203125, -0.006183624267578125, -0.015869140625, 0.0121307373046875, 0.03802490234375, 0.03448486328125, -0.03631591796875, -0.0191497802734375, -0.00011247396469116211, -0.06390380859375, -0.0017118453979492188, -0.007061004638671875, 0.02679443359375, 0.0321044921875, -0.0006914138793945312, -0.017730712890625, 0.0086669921875, 0.01245880126953125, -0.004886627197265625, 0.0166015625, 0.003238677978515625, -0.00926971435546875, 0.037628173828125, 0.0169830322265625, -0.01556396484375, 0.03826904296875, 0.0455322265625, 0.01023101806640625, 0.0019102096557617188, 0.01544952392578125, 0.0043182373046875, 0.03460693359375, -0.011016845703125, -0.043212890625, -0.01219940185546875, -0.0262298583984375, -0.0189056396484375, -0.049560546875, -0.036834716796875, 0.0163726806640625, 0.0206298828125, -0.041015625, 0.0097808837890625, 0.003101348876953125, -0.0236663818359375, -0.01788330078125, -0.0053253173828125, -0.00684356689453125, -0.0075225830078125, 0.003391265869140625, 0.004314422607421875, 0.031585693359375, -0.0022029876708984375, -0.0193023681640625, 0.01995849609375, 0.02215576171875, 0.0027179718017578125, 0.0175323486328125, -0.031646728515625, -0.03662109375, 0.004405975341796875, 0.01297760009765625, -0.0281982421875, 0.0113525390625, -0.000021576881408691406, 0.0149993896484375, -0.0234832763671875, 0.0225830078125, -0.0712890625, 0.00460052490234375, 0.006610870361328125, -0.010650634765625, 0.01227569580078125, 0.01355743408203125, -0.0080718994140625, 0.0105438232421875, -0.0546875, 0.0295867919921875, 0.0626220703125, 0.01267242431640625, 0.007801055908203125, -0.0212554931640625, 0.0687255859375, 0.007122039794921875, 0.00984954833984375, 0.019287109375, 0.01340484619140625, -0.0152435302734375, -0.022064208984375, 0.0014352798461914062, -0.003932952880859375, 0.0117340087890625, 0.0254669189453125, 0.01456451416015625, -0.0158233642578125, -0.030059814453125, -0.0215606689453125, 0.02685546875, 0.0140380859375, 0.0185699462890625, 0.0408935546875, 0.009033203125, 0.0589599609375, -0.0218353271484375, -0.0106201171875, -0.01073455810546875, 0.0106201171875, -0.0028209686279296875, 0.0180511474609375, 0.01114654541015625, -0.0234527587890625, 0.020599365234375, -0.036376953125, -0.00551605224609375, 0.0167388916015625, 0.0292205810546875, 0.003597259521484375, -0.00585174560546875, -0.0018405914306640625, -0.0298004150390625, -0.02398681640625, -0.015655517578125, -0.024658203125, 0.0273590087890625, 0.0225372314453125, -0.00518035888671875, -0.010986328125, -0.032867431640625, 0.053466796875, -0.0006623268127441406, -0.053314208984375, 0.0266571044921875, 0.0124359130859375, 0.05084228515625, -0.00311279296875, 0.01776123046875, 0.034576416015625, 0.012481689453125, 0.0297393798828125, 0.01158905029296875, -0.02606201171875, -0.061370849609375, -0.017547607421875, -0.01476287841796875, -0.0355224609375, 0.049560546875, -0.0089569091796875, 0.038055419921875, -0.01343536376953125, -0.0169219970703125, -0.0826416015625, 0.0306854248046875, -0.0302276611328125, 0.0714111328125, -0.0091552734375, 0.015625, 0.0181121826171875, 0.016082763671875, -0.0384521484375, -0.00922393798828125, -0.01611328125, -0.00823974609375, -0.04290771484375, 0.0611572265625, 0.006694793701171875, 0.06634521484375, -0.015869140625, -0.03875732421875, -0.00656890869140625, -0.03192138671875, -0.004364013671875, -0.01049041748046875, -0.01110076904296875, 0.0020694732666015625, 0.0543212890625, -0.0190277099609375, 0.087158203125, 0.01427459716796875, 0.035919189453125, 0.050384521484375, -0.0288543701171875, -0.0469970703125, -0.038787841796875, -0.08782958984375, 0.01404571533203125, 0.0623779296875, 0.035369873046875, 0.01306915283203125, 0.0208892822265625, 0.052642822265625, 0.00832366943359375, -0.045928955078125, 0.0255279541015625, -0.0032958984375, -0.014404296875, -0.045654296875, -0.011932373046875, -0.0482177734375, 0.060089111328125, -0.059600830078125, -0.0022945404052734375, 0.04315185546875, -0.05462646484375, -0.036956787109375, 0.00994873046875, -0.02459716796875, 0.029449462890625, -0.052459716796875, -0.034820556640625, -0.0128326416015625, 0.02191162109375, -0.0204010009765625, 0.031494140625, 0.0176544189453125, -0.010894775390625, -0.03839111328125, 0.0179443359375, 0.01206207275390625, 0.01070404052734375, 0.02044677734375, 0.0386962890625, -0.003093719482421875, -0.025421142578125, -0.00360870361328125, 0.0197601318359375, 0.01369476318359375, -0.0235137939453125, 0.00313568115234375, -0.00487518310546875, -0.007061004638671875, 0.0020847320556640625, -0.0322265625, 0.027557373046875, 0.002422332763671875, 0.02508544921875, -0.004100799560546875, 0.01296234130859375, 0.0219573974609375, -0.028839111328125, 0.03668212890625, 0.011810302734375, -0.021270751953125, 0.00849151611328125, -0.0499267578125, 0.036376953125, -0.0279998779296875, 0.06817626953125, 0.073486328125, 0.018157958984375, -0.006927490234375, 0.004863739013671875, -0.02557373046875, 0.01238250732421875, 0.001617431640625, -0.02093505859375, 0.0001080632209777832, -0.05950927734375, -0.00921630859375, 0.04296875, 0.06787109375, -0.006534576416015625, -0.06048583984375, -0.0167694091796875, 0.054595947265625, -0.07501220703125, -0.06341552734375, -0.04595947265625, -0.020599365234375, 0.005855560302734375, 0.03082275390625, -0.0017070770263671875, 0.004474639892578125, 0.033660888671875, 0.01519012451171875, 0.007568359375, -0.0226593017578125, -0.07373046875, -0.07073974609375, -0.072509765625, -0.0149688720703125, -0.0187225341796875, -0.0047149658203125, -0.00010329484939575195, 0.054656982421875, 0.004329681396484375, -0.07659912109375, -0.01235198974609375, 0.05908203125, -0.033966064453125, 0.003551483154296875, 0.01007080078125, -0.02630615234375, 0.01036834716796875, 0.0013723373413085938, -0.01256561279296875, 0.0135498046875, 0.002445220947265625, -0.0193939208984375, -0.0111541748046875, -0.0055084228515625, 0.006591796875, 0.0222015380859375, 0.0109405517578125, -0.0163726806640625, 0.029693603515625, -0.035675048828125, -0.045318603515625, 0.039886474609375, -0.053192138671875, -0.0024967193603515625, 0.03265380859375, -0.03863525390625, 0.044189453125, -0.0276336669921875, 0.015045166015625, 0.01399993896484375, 0.0098114013671875, -0.018768310546875, 0.04962158203125, -0.0092926025390625, 0.01134490966796875, -0.045501708984375, 0.052032470703125, 0.0140838623046875, -0.031341552734375, 0.01488494873046875, 0.01071929931640625, -0.013641357421875, 0.00872802734375, -0.06597900390625, -0.034698486328125, 0.01751708984375, -0.06488037109375, -0.0184478759765625, -0.01055908203125, -0.00006711483001708984, 0.0234832763671875, 0.06854248046875, 0.033905029296875, -0.00981903076171875, -0.0413818359375, -0.0009441375732421875, -0.05780029296875, -0.052825927734375, -0.00968170166015625, 0.031158447265625, -0.03668212890625, 0.0299835205078125, 0.005626678466796875, 0.00720977783203125, -0.0150604248046875, 0.0150909423828125, -0.01035308837890625, -0.0355224609375, 0.03399658203125, -0.045166015625, 0.0265960693359375, -0.0014448165893554688, -0.0026607513427734375, -0.025421142578125, -0.01250457763671875, -0.02899169921875, -0.1170654296875, -0.0252227783203125, -0.050445556640625, 0.10833740234375, 0.0230865478515625, -0.022918701171875, -0.0236053466796875, 0.04559326171875, -0.01309967041015625, -0.0128021240234375, 0.0007147789001464844, 0.0003559589385986328, 0.012908935546875, 0.00959014892578125, -0.01885986328125, -0.01120758056640625, 0.0099945068359375, 0.003978729248046875, -0.0574951171875, 0.00982666015625, -0.026702880859375, 0.0027618408203125, 0.032958984375, -0.039276123046875, -0.031005859375, -0.042938232421875, -0.060455322265625, 0.0309906005859375, -0.0162811279296875, -0.01507568359375, -0.054473876953125, -0.068115234375, -0.01470184326171875, -0.054046630859375, -0.0233306884765625, 0.01134490966796875, 0.03643798828125, 0.0264434814453125, 0.0166168212890625, 0.02301025390625, -0.0196075439453125, 0.016632080078125, -0.0224456787109375, 0.0560302734375, 0.0064697265625, -0.0205078125, 0.0567626953125, -0.040802001953125, 0.036376953125, 0.01110076904296875, 0.0029449462890625, 0.0128631591796875, -0.0258026123046875, 0.030548095703125, 0.039031982421875, -0.060943603515625, 0.016571044921875, -0.0221405029296875, 0.0122528076171875, 0.03179931640625, -0.00518798828125, -0.06658935546875, 0.054290771484375, 0.0345458984375, -0.0019969940185546875, 0.00531768798828125, -0.022247314453125, 0.034759521484375, 0.051300048828125, -0.00357818603515625, 0.0006442070007324219, 0.011871337890625, -0.00360107421875, 0.02069091796875, 0.048797607421875, -0.01861572265625, 0.03466796875, 0.0244598388671875, -0.0117034912109375, -0.0282135009765625, -0.01129150390625, 0.0211029052734375, -0.0133514404296875, -0.05731201171875, 0.006473541259765625, 0.00124359130859375, 0.01348114013671875, 0.01763916015625, 0.00954437255859375, 0.01102447509765625, 0.0006709098815917969, -0.01425933837890625, -0.021484375, 0.0185394287109375, -0.019439697265625, -0.021728515625, 0.058349609375, 0.04852294921875, -0.01299285888671875, -0.0161590576171875, 0.048736572265625, 0.043426513671875, 0.002841949462890625, -0.005352020263671875, 0.003093719482421875, 0.0013360977172851562, 0.044097900390625, 0.033721923828125, -0.05352783203125, 0.029327392578125, -0.00812530517578125, 0.006893157958984375, -0.042938232421875, -0.03753662109375, -0.002777099609375, 0.0226287841796875, 0.0023174285888671875, 0.005950927734375, 0.038543701171875, 0.0214691162109375, -0.01320648193359375, 0.0733642578125, 0.0283203125, -0.04534912109375, -0.0379638671875, -0.0247650146484375, 0.045196533203125, -0.0262908935546875, -0.00337982177734375, 0.037322998046875, 0.00452423095703125, 0.044921875, -0.005672454833984375, -0.00966644287109375, -0.005584716796875, -0.007232666015625, -0.010162353515625, -0.0220794677734375, -0.023956298828125, -0.058837890625, -0.01444244384765625, -0.00453948974609375, 0.0034332275390625, 0.02752685546875, -0.047576904296875, -0.01154327392578125, -0.0095977783203125, 0.036590576171875, -0.041015625, 0.034637451171875, 0.018463134765625, 0.0111236572265625, -0.0526123046875, 0.020355224609375, -0.042449951171875, -0.023651123046875, 0.0110931396484375, -0.012420654296875, -0.03533935546875, -0.043182373046875, 0.0260009765625, -0.01617431640625, 0.0012454986572265625, -0.032012939453125, -0.038726806640625, 0.04937744140625, 0.038787841796875, -0.002170562744140625, -0.047760009765625, 0.061279296875, 0.00681304931640625, 0.039794921875, -0.0023899078369140625, 0.0276641845703125, 0.0260009765625, -0.0148468017578125, -0.01435089111328125, -0.041717529296875, -0.0126953125, 0.0169830322265625, -0.0011949539184570312, 0.0127410888671875, 0.0220184326171875, -0.00572967529296875, -0.01067352294921875, -0.00008553266525268555, 0.00013303756713867188, -0.0091094970703125, 0.034393310546875, 0.0374755859375, -0.0094451904296875, 0.0517578125, -0.0108184814453125, -0.0037708282470703125, 0.015472412109375, -0.0258331298828125, 0.0321044921875, 0.019805908203125, 0.01216888427734375, -0.034423828125, 0.023895263671875, 0.0193328857421875, 0.0814208984375, 0.004161834716796875, 0.052825927734375, 0.050079345703125, 0.0123291015625, 0.007366180419921875, 0.041168212890625, -0.0372314453125, -0.06317138671875, 0.01522064208984375, 0.0103302001953125, -0.020751953125, 0.0193939208984375, -0.01535797119140625, 0.01428985595703125, 0.05487060546875, 0.08380126953125, -0.0977783203125, 0.0219268798828125, 0.03692626953125, -0.01035308837890625, 0.005626678466796875, -0.0190582275390625, -0.00534820556640625, 0.005222320556640625, 0.045806884765625, -0.0218658447265625, -0.009490966796875, 0.0276031494140625, -0.0135345458984375, 0.005535125732421875, -0.01255035400390625, 0.06304931640625, 0.00811004638671875, -0.022674560546875, 0.0264892578125, -0.0008397102355957031, 0.05657958984375, -0.0170135498046875, 0.0310821533203125, -0.0017614364624023438, -0.018646240234375, -0.05169677734375, 0.006771087646484375, 0.002742767333984375, -0.0212860107421875, 0.0143280029296875, 0.0046844482421875, 0.0052947998046875, 0.061004638671875, -0.02752685546875, 0.025360107421875, 0.0144195556640625, 0.00553131103515625, 0.05328369140625, -0.0262451171875, 0.006252288818359375, 0.025054931640625, -0.10546875, 0.004772186279296875, -0.0279388427734375, 0.0175018310546875, 0.0143890380859375, 0.06365966796875, 0.0836181640625, -0.00037217140197753906, -0.049957275390625, 0.04180908203125, -0.025421142578125, -0.018890380859375, -0.0316162109375, 0.01593017578125, -0.037567138671875, 0.0010280609130859375, -0.01641845703125, -0.0257720947265625, -0.021209716796875, -0.04779052734375, -0.0217132568359375, 0.06683349609375, -0.025054931640625, -0.0105743408203125, 0.0284576416015625, 0.0307769775390625, -0.0195770263671875, 0.01904296875, -0.01629638671875, 0.044769287109375, -0.00676727294921875, 0.038177490234375, -0.076171875, -0.0206756591796875, 0.00609588623046875, 0.0587158203125, 0.009613037109375, 0.00353240966796875, -0.015167236328125, -0.0009331703186035156, 0.00926971435546875, 0.048248291015625, 0.004848480224609375, -0.004344940185546875, 0.0335693359375, 0.00870513916015625, 0.030517578125, -0.0196990966796875, 0.033538818359375, -0.049774169921875, 0.0211334228515625, 0.043060302734375, 0.022369384765625, 0.0259552001953125, 0.0164947509765625, -0.04132080078125, -0.021148681640625, 0.00963592529296875, 0.0263824462890625, -0.0201873779296875, -0.0084381103515625, 0.037841796875, 0.032318115234375, -0.053375244140625, -0.0139312744140625, -0.035369873046875, 0.0293731689453125, -0.01149749755859375, 0.01334381103515625, 0.00971221923828125, 0.01136016845703125, 0.0138397216796875, 0.0051116943359375, 0.002689361572265625, 0.04864501953125, -0.0236968994140625, 0.003326416015625, -0.0144500732421875, 0.01549530029296875, -0.0445556640625, -0.036407470703125, 0.0178375244140625, 0.022735595703125, -0.010284423828125, -0.041748046875, 0.0022830963134765625, 0.007297515869140625, 0.01221466064453125, 0.0178375244140625, 0.03515625, 0.0133514404296875, 0.040252685546875, -0.0158843994140625, -0.036041259765625, 0.0188446044921875, 0.029205322265625, -0.0031490325927734375, -0.021392822265625, 0.0234375, -0.052642822265625, -0.0310821533203125, -0.020721435546875, 0.0226287841796875, 0.0714111328125, 0.04425048828125, 0.026824951171875, -0.041412353515625, -0.049591064453125, -0.00534820556640625, 0.004756927490234375, -0.01519775390625, 0.01654052734375, -0.0421142578125, -0.00983428955078125, -0.0098419189453125, 0.03961181640625, -0.00629425048828125, 0.00811004638671875, 0.044586181640625, 0.033660888671875, -0.046356201171875, -0.019500732421875, 0.0007486343383789062, -0.030181884765625, -0.03643798828125, -0.055145263671875, 0.0240020751953125, 0.0143585205078125, 0.0299835205078125, 0.0166778564453125, 0.040802001953125, -0.005107879638671875, -0.03961181640625, 0.0513916015625, -0.01050567626953125, -0.01763916015625, 0.0323486328125, -0.028961181640625, 0.0609130859375, -0.003208160400390625, -0.069091796875, -0.028411865234375, 0.0016756057739257812, 0.0159149169921875, 0.0166473388671875, 0.032135009765625, -0.0006656646728515625, 0.0157470703125, 0.0038547515869140625, 0.0034656524658203125, 0.0032062530517578125, -0.035430908203125, 0.0062103271484375, -0.032073974609375, -0.0045318603515625, -0.006435394287109375, 0.007213592529296875, 0.0021572113037109375, 0.01027679443359375, 0.0192413330078125, 0.017852783203125, 0.09173583984375, -0.031646728515625, -0.01412200927734375, -0.016143798828125, -0.02392578125, -0.0038509368896484375, -0.01666259765625, -0.001129150390625, -0.00908660888671875, -0.01337432861328125, -0.0103759765625, -0.050445556640625, 0.05548095703125, -0.016876220703125, -0.01110076904296875, 0.05908203125, -0.0279388427734375, 0.004322052001953125, -0.002811431884765625, 0.05755615234375, -0.01149749755859375, -0.06524658203125, -0.058319091796875, 0.039031982421875, 0.00653076171875, 0.06256103515625, -0.0159912109375, -0.0011053085327148438, -0.0202484130859375, -0.048919677734375, 0.0234527587890625, -0.03192138671875, 0.03631591796875, 0.0438232421875, -0.0265655517578125, -0.00677490234375, -0.0271759033203125, -0.0294189453125, 0.0034961700439453125, -0.00492095947265625, 0.018951416015625, -0.041290283203125, 0.0247650146484375, -0.054412841796875, -0.02490234375, -0.02801513671875, -0.02679443359375, -0.0128631591796875, -0.004856109619140625, -0.0287017822265625, -0.018402099609375, 0.030792236328125, 0.007045745849609375, 0.028289794921875, -0.0258636474609375, -0.004360198974609375, 0.03253173828125, -0.0154876708984375, 0.0242767333984375, 0.01479339599609375, 0.0179901123046875, -0.0023651123046875, -0.0445556640625, -0.0086517333984375, -0.026031494140625, 0.07208251953125, -0.0025634765625, 0.002040863037109375, -0.00972747802734375, 0.01273345947265625, -0.0223388671875, -0.034759521484375, -0.035003662109375, 0.027557373046875, -0.03326416015625, -0.007663726806640625, 0.0133819580078125, -0.0132904052734375, 0.002262115478515625, -0.0264129638671875, 0.006160736083984375, 0.02008056640625, 0.00167083740234375, -0.01039886474609375, -0.0270538330078125, 0.03021240234375, -0.00910186767578125, -0.04541015625, 0.020233154296875, -0.030609130859375, -0.01910400390625, -0.00569915771484375, 0.011810302734375, 0.01318359375, -0.040557861328125, -0.07672119140625, 0.044830322265625, -0.005184173583984375, -0.0266265869140625, 0.016357421875, -0.03057861328125, -0.0133514404296875, 0.0204010009765625, 0.0003840923309326172, -0.016387939453125, -0.029083251953125, 0.01523590087890625, 0.0379638671875, -0.057220458984375, 0.0665283203125, 0.001953125, -0.052001953125, 0.026702880859375, 0.01715087890625, 0.004764556884765625, 0.01849365234375, -0.0103302001953125, 0.0462646484375, 0.036895751953125, -0.01873779296875, 0.0171356201171875, 0.01546478271484375, -0.0205230712890625, 0.0123138427734375, -0.0215301513671875, -0.01158905029296875, -0.00713348388671875, 0.054718017578125, -0.00740814208984375, 0.0146484375, -0.01531219482421875, -0.0175018310546875, -0.01407623291015625, -0.0012874603271484375, -0.01873779296875, -0.0029888153076171875, -0.058990478515625, -0.025421142578125, 0.0054168701171875, -0.00994110107421875, -0.0008578300476074219, 0.0248565673828125, -0.0169525146484375, -0.00616455078125, 0.0199432373046875, -0.0257720947265625, -0.039093017578125, -0.0440673828125, 0.042144775390625, -0.01898193359375, 0.006961822509765625, 0.0036983489990234375, 0.03125, 0.0164794921875, 0.0298004150390625, 0.0045166015625, 0.044036865234375, -0.06378173828125, 0.01317596435546875, -0.0087890625, 0.0217437744140625, -0.05426025390625, -0.00530242919921875, 0.01071929931640625, 0.01544952392578125, -0.0216217041015625, 0.0109710693359375, 0.0447998046875, -0.0218658447265625, -0.031951904296875, 0.0214385986328125, -0.040191650390625, 0.06256103515625, -0.01165008544921875, 0.00951385498046875, 0.0004730224609375, 0.029876708984375, 0.044708251953125, -0.01593017578125, 0.018524169921875, 0.04473876953125, 0.0126495361328125, 0.0120086669921875, -0.0062713623046875, 0.016143798828125, 0.0143585205078125, -0.00925445556640625 ]
10c097158c6ed48b9ff2883118dfebd31482d7b4
Wordpress Stackexchange Q: what is the use of esc_attr() function? I want to know use of esc_attr()? how it is used? Any example would be highly help! esc_attr( $variable ) A: esc_attr() is written specifically for escaping a string that is to be used as an html attribute, which means also escaping single and double-quote characters etc. In general, it's better to use the data validation API that WP provides rather than the generic PHP functions.
Q: what is the use of esc_attr() function? I want to know use of esc_attr()? how it is used? Any example would be highly help! esc_attr( $variable ) A: esc_attr() is written specifically for escaping a string that is to be used as an html attribute, which means also escaping single and double-quote characters etc. In general, it's better to use the data validation API that WP provides rather than the generic PHP functions. A: esc_attr() is writing for escaping a string that is to be used as an html attribute. When escaping the values of attributes that accept URIs (like href and src), it is important to pass the value through esc_url(). Note: that when using esc_url(), you don’t need to also use esc_attr().
wordpress
{ "language": "en", "length": 125, "provenance": "stackexchange_00019.jsonl.gz:484973", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/298963" }
[ 0.052734375, -0.03167724609375, -0.0201263427734375, -0.0159454345703125, 0.006969451904296875, -0.036102294921875, 0.0350341796875, 0.0184173583984375, 0.037139892578125, 0.0177764892578125, -0.00690460205078125, -0.0021762847900390625, 0.02166748046875, -0.040435791015625, -0.0051727294921875, 0.0171661376953125, 0.022003173828125, 0.005855560302734375, 0.0011081695556640625, -0.0113677978515625, -0.006072998046875, 0.00901031494140625, -0.024139404296875, 0.0282440185546875, 0.020294189453125, -0.0268402099609375, 0.04803466796875, -0.0401611328125, 0.0178985595703125, 0.00603485107421875, 0.0120849609375, -0.01508331298828125, 0.0242462158203125, 0.01537322998046875, -0.02728271484375, 0.059478759765625, 0.007434844970703125, 0.0168304443359375, 0.0220947265625, 0.00705718994140625, 0.03619384765625, -0.038818359375, 0.0290069580078125, 0.0182342529296875, -0.0006113052368164062, -0.003910064697265625, 0.0411376953125, -0.03875732421875, 0.01251220703125, -0.0149688720703125, 0.0187530517578125, -0.01312255859375, 0.039947509765625, -0.0171356201171875, -0.0076141357421875, -0.00853729248046875, 0.0307159423828125, -0.035125732421875, 0.0157928466796875, 0.05401611328125, -0.0209503173828125, 0.00022840499877929688, 0.001369476318359375, -0.07098388671875, 0.0240936279296875, 0.0012683868408203125, -0.0322265625, 0.036102294921875, -0.0421142578125, 0.005130767822265625, 0.0221710205078125, -0.045989990234375, -0.006664276123046875, -0.048675537109375, 0.0030231475830078125, 0.061767578125, 0.00441741943359375, 0.0274810791015625, -0.0108184814453125, 0.003116607666015625, 0.018310546875, 0.01024627685546875, -0.0291595458984375, -0.05194091796875, 0.039886474609375, -0.012542724609375, -0.002681732177734375, -0.0083770751953125, 0.01412200927734375, -0.0217742919921875, 0.00630950927734375, 0.04327392578125, 0.0033664703369140625, -0.0168914794921875, -0.0260009765625, -0.06536865234375, -0.01056671142578125, -0.01212310791015625, 0.014556884765625, 0.029541015625, 0.03778076171875, -0.060882568359375, 0.0562744140625, -0.0240936279296875, -0.006214141845703125, 0.06951904296875, -0.003276824951171875, -0.015411376953125, 0.0021839141845703125, 0.0146636962890625, 0.0175628662109375, -0.0292816162109375, -0.0474853515625, -0.0234527587890625, -0.03564453125, 0.0037899017333984375, -0.0738525390625, 0.0198516845703125, 0.0052032470703125, 0.0244140625, 0.00823211669921875, 0.02099609375, 0.01477813720703125, -0.045562744140625, 0.0280303955078125, 0.005283355712890625, -0.0248565673828125, -0.0239715576171875, -0.02154541015625, 0.0498046875, -0.0093231201171875, -0.00003910064697265625, 0.03009033203125, 0.02679443359375, -0.0255889892578125, -0.0362548828125, 0.013153076171875, -0.0299224853515625, 0.00228118896484375, -0.00762176513671875, 0.0184326171875, -0.005847930908203125, 0.0281982421875, -0.0009360313415527344, -0.030731201171875, 0.00395965576171875, 0.01373291015625, 0.022186279296875, -0.0161895751953125, -0.043609619140625, 0.0160369873046875, -0.02813720703125, 0.01702880859375, 0.00811767578125, -0.010589599609375, 0.01216888427734375, 0.01023101806640625, -0.005584716796875, -0.01354217529296875, -0.016357421875, 0.004840850830078125, -0.01497650146484375, 0.0180206298828125, 0.0014286041259765625, -0.037811279296875, 0.004665374755859375, 0.0011529922485351562, 0.0005445480346679688, 0.020050048828125, 0.0294952392578125, 0.0102081298828125, -0.0037784576416015625, 0.0149078369140625, 0.01085662841796875, -0.002422332763671875, 0.0135498046875, -0.032684326171875, 0.06121826171875, 0.0241546630859375, -0.029205322265625, 0.0185699462890625, -0.035186767578125, 0.06842041015625, -0.003650665283203125, -0.039764404296875, 0.0296478271484375, 0.0025234222412109375, 0.05364990234375, 0.021514892578125, 0.012939453125, 0.0041351318359375, 0.01052093505859375, 0.0303497314453125, 0.002536773681640625, -0.0173187255859375, -0.042236328125, -0.01061248779296875, 0.01198577880859375, -0.031463623046875, 0.0051116943359375, 0.09698486328125, -0.0284271240234375, 0.0428466796875, -0.032379150390625, -0.050506591796875, 0.0162200927734375, -0.01407623291015625, 0.0016031265258789062, -0.0182342529296875, 0.03240966796875, 0.030609130859375, -0.0165252685546875, -0.02557373046875, 0.01560211181640625, -0.00879669189453125, -0.03033447265625, -0.015411376953125, 0.046600341796875, -0.013763427734375, 0.0037403106689453125, 0.001094818115234375, -0.051544189453125, -0.0015201568603515625, 0.0294342041015625, 0.018951416015625, -0.02557373046875, -0.0134124755859375, -0.029449462890625, -0.00777435302734375, -0.0172119140625, 0.0306854248046875, 0.052215576171875, 0.07861328125, 0.06317138671875, -0.016876220703125, -0.0121307373046875, -0.0281982421875, -0.10540771484375, -0.017791748046875, 0.0721435546875, 0.050384521484375, 0.06402587890625, 0.01129150390625, -0.05194091796875, 0.054107666015625, -0.048370361328125, 0.03509521484375, -0.050018310546875, -0.02166748046875, -0.0101470947265625, 0.00260162353515625, -0.0157623291015625, 0.0199737548828125, -0.0906982421875, -0.018829345703125, 0.0313720703125, -0.0380859375, -0.0171661376953125, -0.0279388427734375, 0.031707763671875, -0.0160675048828125, -0.0238189697265625, 0.04388427734375, -0.037353515625, 0.058258056640625, -0.00859832763671875, 0.038818359375, 0.0090789794921875, -0.01049041748046875, 0.007171630859375, 0.0026950836181640625, -0.042236328125, -0.020660400390625, 0.048797607421875, 0.002712249755859375, 0.033660888671875, -0.033538818359375, 0.0097503662109375, -0.0016508102416992188, 0.0312347412109375, -0.004383087158203125, 0.041961669921875, 0.0016012191772460938, -0.0275726318359375, 0.00017523765563964844, -0.01396942138671875, -0.0023212432861328125, -0.032135009765625, 0.04547119140625, -0.030517578125, -0.004436492919921875, 0.003734588623046875, -0.0259246826171875, 0.058502197265625, 0.053375244140625, -0.052490234375, -0.018341064453125, -0.036407470703125, 0.01317596435546875, -0.00504302978515625, 0.04461669921875, 0.051116943359375, 0.03533935546875, -0.021514892578125, -0.0110321044921875, -0.01511383056640625, -0.014373779296875, -0.00696563720703125, -0.018341064453125, -0.0019397735595703125, -0.06842041015625, 0.01235198974609375, 0.0168304443359375, 0.0177154541015625, -0.025177001953125, -0.03033447265625, -0.044219970703125, 0.0005211830139160156, -0.09210205078125, -0.081787109375, 0.054656982421875, -0.0635986328125, 0.0005784034729003906, -0.03497314453125, -0.0285186767578125, -0.00677490234375, -0.00855255126953125, -0.00939178466796875, 0.006229400634765625, 0.01441192626953125, -0.017730712890625, -0.0039215087890625, -0.03985595703125, 0.03533935546875, -0.0006947517395019531, 0.022796630859375, -0.0031566619873046875, 0.03546142578125, -0.0208740234375, -0.0109710693359375, -0.0123748779296875, -0.0218658447265625, 0.00240325927734375, -0.0231781005859375, -0.0308990478515625, -0.0347900390625, -0.040985107421875, -0.00785064697265625, 0.03106689453125, -0.023773193359375, 0.0174102783203125, 0.0002503395080566406, -0.0210418701171875, 0.02923583984375, 0.04632568359375, -0.013885498046875, 0.0139312744140625, 0.065185546875, 0.04901123046875, 0.0031871795654296875, 0.0011110305786132812, -0.01355743408203125, -0.03631591796875, -0.0011491775512695312, 0.0251617431640625, -0.00727081298828125, -0.006610870361328125, -0.004581451416015625, -0.012542724609375, -0.005092620849609375, 0.0008683204650878906, -0.03131103515625, 0.0367431640625, -0.005218505859375, 0.00901031494140625, -0.0171966552734375, -0.0131072998046875, -0.0291290283203125, 0.060272216796875, 0.0082550048828125, 0.0137786865234375, -0.004238128662109375, 0.018463134765625, -0.0025501251220703125, -0.0478515625, 0.053955078125, 0.02288818359375, 0.032562255859375, -0.024383544921875, -0.044403076171875, -0.0017747879028320312, 0.0877685546875, -0.031280517578125, -0.00614166259765625, 0.04888916015625, 0.003849029541015625, -0.007488250732421875, 0.0233154296875, -0.07513427734375, -0.0135955810546875, -0.06329345703125, 0.04241943359375, 0.0275115966796875, -0.0131378173828125, -0.0098876953125, 0.0239715576171875, -0.0263214111328125, -0.0288543701171875, 0.02923583984375, -0.05462646484375, 0.005329132080078125, 0.004199981689453125, 0.02484130859375, -0.05181884765625, 0.0147247314453125, -0.0312042236328125, -0.03558349609375, 0.0015850067138671875, -0.0184173583984375, -0.0009555816650390625, 0.01361083984375, -0.0113067626953125, -0.033050537109375, 0.01184844970703125, 0.01204681396484375, -0.0015316009521484375, 0.02655029296875, -0.009918212890625, 0.04071044921875, 0.032318115234375, 0.0160980224609375, -0.0006885528564453125, -0.01508331298828125, 0.0017900466918945312, -0.034027099609375, 0.0123138427734375, 0.0208892822265625, -0.02716064453125, 0.0584716796875, -0.047698974609375, -0.0262451171875, -0.0140380859375, -0.05267333984375, 0.012542724609375, -0.0093841552734375, -0.02557373046875, -0.0172119140625, -0.057373046875, 0.06915283203125, 0.018402099609375, 0.0188140869140625, -0.01776123046875, 0.07421875, 0.01800537109375, -0.032135009765625, -0.023101806640625, -0.0377197265625, 0.032806396484375, -0.03973388671875, 0.04998779296875, 0.0167083740234375, -0.016693115234375, 0.1004638671875, -0.026397705078125, 0.04608154296875, -0.0628662109375, -0.013031005859375, 0.0003743171691894531, 0.0026035308837890625, -0.00262451171875, 0.0081024169921875, 0.039031982421875, 0.0030040740966796875, -0.0009360313415527344, -0.0142669677734375, 0.03546142578125, 0.019744873046875, -0.0180206298828125, 0.00946044921875, -0.006214141845703125, -0.02301025390625, 0.00325775146484375, -0.004119873046875, 0.0211944580078125, 0.0633544921875, -0.0120849609375, 0.0391845703125, 0.032379150390625, 0.00481414794921875, -0.041473388671875, 0.0019006729125976562, -0.04949951171875, 0.028656005859375, -0.037384033203125, -0.023834228515625, -0.0196685791015625, -0.0122222900390625, 0.0157012939453125, 0.0033473968505859375, -0.02099609375, -0.00870513916015625, -0.00406646728515625, 0.0182952880859375, 0.00829315185546875, 0.06414794921875, 0.01189422607421875, -0.0029888153076171875, -0.0017385482788085938, -0.0006952285766601562, 0.0665283203125, 0.0059814453125, -0.0036945343017578125, 0.01129913330078125, 0.0166015625, -0.0172576904296875, 0.0027523040771484375, 0.036041259765625, 0.034393310546875, 0.00420379638671875, -0.03753662109375, 0.028045654296875, 0.0263671875, 0.0294036865234375, 0.03167724609375, -0.046417236328125, -0.0029888153076171875, 0.0129547119140625, -0.024078369140625, -0.057373046875, -0.051971435546875, 0.032684326171875, 0.06768798828125, -0.04302978515625, -0.01108551025390625, 0.0169830322265625, 0.0032672882080078125, -0.01128387451171875, 0.051971435546875, -0.0119781494140625, -0.042144775390625, -0.0545654296875, -0.0132904052734375, 0.06414794921875, -0.0159454345703125, 0.0300445556640625, -0.00958251953125, 0.0251312255859375, 0.00543975830078125, -0.0679931640625, 0.01861572265625, -0.0482177734375, -0.0138397216796875, -0.04571533203125, -0.00606536865234375, 0.0112152099609375, -0.0264434814453125, -0.013092041015625, -0.021575927734375, -0.04052734375, 0.08270263671875, -0.0218963623046875, 0.06134033203125, -0.035919189453125, -0.042877197265625, -0.024139404296875, 0.005619049072265625, 0.08154296875, 0.053955078125, -0.079345703125, -0.0025482177734375, -0.042327880859375, 0.0024662017822265625, -0.043701171875, -0.0285491943359375, -0.03497314453125, 0.0174407958984375, -0.01016998291015625, 0.03875732421875, 0.004428863525390625, 0.0201263427734375, 0.006214141845703125, 0.0157623291015625, -0.031982421875, 0.0718994140625, -0.0032405853271484375, 0.042449951171875, -0.0086517333984375, 0.0308837890625, 0.0023632049560546875, 0.036529541015625, 0.016265869140625, -0.031341552734375, 0.038421630859375, -0.005458831787109375, -0.058441162109375, -0.0555419921875, 0.0234527587890625, 0.024749755859375, 0.07568359375, -0.029754638671875, 0.0467529296875, -0.020721435546875, -0.0015821456909179688, -0.022430419921875, -0.0099334716796875, -0.044464111328125, 0.054443359375, 0.00786590576171875, -0.024200439453125, -0.0090484619140625, 0.0166168212890625, -0.042755126953125, 0.06292724609375, -0.005001068115234375, 0.043182373046875, 0.0032825469970703125, 0.00405120849609375, -0.0004024505615234375, 0.04229736328125, -0.0128326416015625, 0.04010009765625, 0.0138702392578125, 0.019134521484375, 0.03887939453125, -0.007537841796875, -0.0267791748046875, -0.0022296905517578125, 0.023406982421875, -0.0014944076538085938, 0.0022449493408203125, 0.036285400390625, -0.018218994140625, 0.0260162353515625, 0.052703857421875, 0.09228515625, -0.0677490234375, 0.0018320083618164062, 0.0411376953125, -0.018524169921875, -0.0087127685546875, 0.00366973876953125, -0.021148681640625, -0.047637939453125, 0.0352783203125, -0.0209197998046875, -0.01467132568359375, 0.0066375732421875, -0.0160675048828125, -0.01239013671875, 0.0034885406494140625, 0.0024394989013671875, 0.009521484375, -0.0360107421875, -0.0069427490234375, 0.040313720703125, -0.035491943359375, -0.035858154296875, 0.019622802734375, -0.01250457763671875, -0.033660888671875, -0.07257080078125, -0.00786590576171875, 0.0167083740234375, -0.022705078125, -0.0286407470703125, 0.0501708984375, 0.0469970703125, 0.0276947021484375, 0.003856658935546875, -0.01120758056640625, 0.005214691162109375, 0.037750244140625, -0.03643798828125, -0.031707763671875, -0.00977325439453125, 0.0258941650390625, -0.005908966064453125, 0.03424072265625, -0.005176544189453125, -0.03375244140625, 0.00333404541015625, 0.0340576171875, 0.0188446044921875, 0.02105712890625, -0.047210693359375, 0.020111083984375, 0.0439453125, -0.0061187744140625, -0.0231475830078125, -0.0026264190673828125, -0.07928466796875, -0.04119873046875, -0.0234832763671875, -0.050811767578125, 0.0254669189453125, -0.03411865234375, -0.061187744140625, 0.068115234375, 0.04656982421875, 0.046295166015625, -0.0041046142578125, 0.00986480712890625, -0.0164642333984375, -0.0130767822265625, -0.033233642578125, 0.0305328369140625, 0.007602691650390625, 0.00007402896881103516, -0.040618896484375, 0.0026397705078125, -0.0194549560546875, 0.015869140625, 0.0170745849609375, 0.0028285980224609375, 0.0164794921875, 0.05535888671875, 0.08575439453125, 0.02001953125, -0.004581451416015625, -0.000033795833587646484, 0.0209808349609375, 0.00299072265625, 0.06658935546875, -0.022979736328125, 0.0175933837890625, -0.0119781494140625, 0.057647705078125, 0.037750244140625, 0.0158233642578125, 0.016326904296875, -0.01300811767578125, 0.0015707015991210938, -0.052093505859375, 0.01276397705078125, 0.0111846923828125, 0.019134521484375, -0.0307769775390625, -0.01091766357421875, -0.00945281982421875, -0.047943115234375, -0.0076446533203125, -0.01922607421875, 0.0297393798828125, 0.036346435546875, 0.028778076171875, 0.04229736328125, -0.00020134449005126953, 0.034088134765625, 0.047515869140625, 0.0240631103515625, 0.0291900634765625, 0.019378662109375, -0.028228759765625, -0.03790283203125, 0.021942138671875, -0.0621337890625, 0.0100860595703125, -0.005184173583984375, -0.025909423828125, -0.00992584228515625, -0.0181121826171875, 0.013275146484375, 0.015533447265625, 0.00940704345703125, 0.011749267578125, 0.0543212890625, 0.0084381103515625, 0.009552001953125, -0.0272674560546875, 0.01113128662109375, 0.04547119140625, 0.0295867919921875, 0.0115203857421875, 0.0128936767578125, -0.0736083984375, -0.006134033203125, -0.0254974365234375, -0.05938720703125, -0.00021946430206298828, 0.06365966796875, 0.06219482421875, -0.01544189453125, -0.04034423828125, -0.037628173828125, -0.0169677734375, 0.0046234130859375, 0.02960205078125, 0.01035308837890625, -0.012847900390625, 0.0263824462890625, 0.017486572265625, 0.0180206298828125, 0.02154541015625, 0.01184844970703125, 0.031280517578125, 0.01107025146484375, -0.0177154541015625, -0.00506591796875, 0.0218963623046875, -0.01806640625, 0.04083251953125, -0.0197601318359375, 0.06549072265625, 0.0221099853515625, 0.00945281982421875, -0.06298828125, 0.04864501953125, 0.05035400390625, -0.03985595703125, 0.0548095703125, -0.0150909423828125, -0.027984619140625, -0.0190582275390625, -0.0362548828125, 0.05670166015625, -0.0245819091796875, -0.0159912109375, 0.005573272705078125, -0.00728607177734375, -0.05645751953125, 0.038543701171875, 0.041015625, -0.012969970703125, 0.01372528076171875, -0.0231475830078125, -0.023101806640625, 0.0185699462890625, 0.04254150390625, -0.03485107421875, 0.0191802978515625, 0.041107177734375, -0.025390625, 0.01389312744140625, 0.008880615234375, 0.039276123046875, -0.007160186767578125, -0.002834320068359375, 0.003704071044921875, -0.007781982421875, -0.01062774658203125, 0.031341552734375, 0.0234832763671875, -0.0228271484375, 0.033966064453125, 0.0011615753173828125, -0.01470184326171875, 0.0288848876953125, -0.02520751953125, -0.0386962890625, 0.0408935546875, -0.0015192031860351562, -0.00609588623046875, 0.01287841796875, 0.004131317138671875, 0.0254364013671875, 0.034149169921875, 0.08233642578125, -0.01552581787109375, -0.042266845703125, -0.0367431640625, -0.01357269287109375, 0.03607177734375, 0.04931640625, 0.0174102783203125, -0.0008001327514648438, 0.0109710693359375, -0.0243072509765625, -0.0013723373413085938, -0.0214996337890625, -0.00896453857421875, 0.01513671875, 0.01030731201171875, 0.014404296875, -0.00038433074951171875, -0.0259552001953125, 0.00696563720703125, 0.003986358642578125, 0.008636474609375, -0.01110076904296875, 0.0010623931884765625, -0.02679443359375, 0.0267486572265625, 0.02880859375, -0.0030689239501953125, -0.004734039306640625, 0.01300048828125, -0.022216796875, -0.04156494140625, -0.003902435302734375, 0.003948211669921875, -0.043365478515625, -0.01444244384765625, 0.011474609375, -0.016143798828125, -0.0004703998565673828, -0.019775390625, -0.038299560546875, 0.031219482421875, 0.00133514404296875, -0.005107879638671875, -0.044036865234375, 0.0156707763671875, 0.0272216796875, 0.004039764404296875, -0.004970550537109375, -0.0032558441162109375, 0.049957275390625, -0.0286102294921875, -0.03057861328125, -0.019805908203125, 0.033416748046875, -0.03546142578125, 0.03814697265625, 0.04937744140625, -0.05206298828125, 0.01024627685546875, 0.0400390625, 0.045623779296875, 0.085205078125, 0.00797271728515625, -0.016265869140625, -0.0251007080078125, 0.039031982421875, -0.0228271484375, -0.034210205078125, 0.002532958984375, 0.03607177734375, -0.01160430908203125, -0.003917694091796875, 0.00568389892578125, 0.021575927734375, -0.030029296875, -0.09649658203125, 0.06646728515625, -0.0264892578125, -0.034698486328125, 0.0262908935546875, -0.02423095703125, 0.0011720657348632812, 0.005764007568359375, 0.0059661865234375, 0.00954437255859375, -0.036102294921875, 0.00501251220703125, 0.038818359375, 0.007476806640625, 0.0635986328125, -0.0214691162109375, -0.050262451171875, -0.031646728515625, -0.04180908203125, 0.0287322998046875, -0.021270751953125, 0.01004791259765625, 0.01317596435546875, 0.042510986328125, -0.0191192626953125, -0.043304443359375, -0.01080322265625, 0.01145172119140625, 0.0004086494445800781, -0.03790283203125, 0.014434814453125, 0.00774383544921875, 0.0433349609375, 0.0029430389404296875, 0.0029659271240234375, -0.037841796875, -0.0364990234375, -0.0258941650390625, -0.02069091796875, -0.0290985107421875, 0.020477294921875, -0.08245849609375, -0.025665283203125, -0.01171875, -0.006343841552734375, 0.0181121826171875, -0.0192718505859375, -0.0126495361328125, 0.011077880859375, 0.0341796875, 0.00859832763671875, -0.0308990478515625, 0.00383758544921875, 0.038818359375, -0.0458984375, 0.0097503662109375, -0.002193450927734375, 0.01087188720703125, 0.0151214599609375, 0.0031833648681640625, 0.00943756103515625, 0.0031719207763671875, -0.0269775390625, -0.0183868408203125, -0.00534820556640625, 0.0287933349609375, -0.0124053955078125, -0.0192108154296875, -0.0204925537109375, 0.03167724609375, 0.00018835067749023438, 0.047149658203125, -0.017486572265625, 0.0472412109375, 0.01568603515625, 0.052581787109375, -0.056182861328125, 0.00571441650390625, -0.018035888671875, -0.010040283203125, -0.044158935546875, 0.050201416015625, 0.024566650390625, -0.00583648681640625, 0.03240966796875, -0.00699615478515625, 0.0548095703125, 0.0073394775390625, -0.014312744140625, 0.004150390625, -0.0218963623046875, 0.0131683349609375 ]
a65c723b67cad17c5a0c3c96ba64852f445d3e81
Wordpress Stackexchange Q: Run visual composer code in php page I am working on a site built in visual composer/wp bakery. I do not want to work in the admin but in a php file. How can I get code like [vc_column_text] <h3><a href="home">home</a></h3> [/vc_column_text] to parse from a a php file, rather than WP admin? A: Based on Toms comment this will work: <?php echo do_shortcode( ' [vc_column_text] <h3><a href="home">home</a></h3> [/vc_column_text] ' );?>
Q: Run visual composer code in php page I am working on a site built in visual composer/wp bakery. I do not want to work in the admin but in a php file. How can I get code like [vc_column_text] <h3><a href="home">home</a></h3> [/vc_column_text] to parse from a a php file, rather than WP admin? A: Based on Toms comment this will work: <?php echo do_shortcode( ' [vc_column_text] <h3><a href="home">home</a></h3> [/vc_column_text] ' );?> A: You can just try this function WPBMap::addAllMappedShortcodes(); and the shortcodes will disappear!
wordpress
{ "language": "en", "length": 85, "provenance": "stackexchange_00019.jsonl.gz:484981", "question_score": "5", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/298984" }
[ 0.0299224853515625, -0.0005979537963867188, -0.0235595703125, -0.07977294921875, 0.00371551513671875, -0.01837158203125, -0.026824951171875, 0.0018377304077148438, 0.0362548828125, 0.0205841064453125, -0.0391845703125, -0.037994384765625, -0.0178070068359375, -0.0244903564453125, -0.046478271484375, -0.052032470703125, 0.0338134765625, 0.01511383056640625, 0.04443359375, 0.01377105712890625, -0.0300140380859375, 0.047393798828125, 0.015869140625, -0.00351715087890625, -0.00911712646484375, -0.00836944580078125, 0.037628173828125, 0.003337860107421875, -0.0260467529296875, -0.00067901611328125, 0.00521087646484375, 0.0121002197265625, 0.032501220703125, 0.0028972625732421875, -0.01275634765625, 0.026214599609375, -0.01258087158203125, 0.0174713134765625, -0.00899505615234375, 0.0115814208984375, 0.031951904296875, -0.02880859375, 0.0234832763671875, 0.002353668212890625, -0.01192474365234375, 0.01381683349609375, 0.00628662109375, -0.021240234375, 0.0156707763671875, -0.00405120849609375, -0.00017404556274414062, 0.0286407470703125, 0.01311492919921875, -0.01605224609375, -0.00015878677368164062, 0.01296234130859375, -0.058929443359375, -0.017303466796875, 0.0295562744140625, 0.057220458984375, -0.0124664306640625, -0.0567626953125, 0.0112762451171875, -0.052093505859375, -0.035003662109375, 0.00878143310546875, -0.01328277587890625, 0.0035419464111328125, -0.0321044921875, -0.036407470703125, 0.01556396484375, -0.00792694091796875, -0.00787353515625, -0.0291900634765625, -0.003009796142578125, 0.0119476318359375, -0.0017366409301757812, -0.0050811767578125, -0.004520416259765625, 0.007904052734375, -0.01447296142578125, -0.0099639892578125, -0.0205841064453125, -0.0328369140625, -0.0007719993591308594, -0.0330810546875, -0.0208892822265625, 0.00437164306640625, -0.021087646484375, -0.004573822021484375, -0.0220947265625, 0.0195465087890625, -0.0102691650390625, -0.0232086181640625, -0.0276031494140625, -0.00887298583984375, -0.021484375, -0.011688232421875, 0.015228271484375, 0.09063720703125, -0.0184783935546875, -0.04376220703125, 0.0994873046875, -0.0540771484375, 0.017120361328125, 0.0457763671875, -0.03228759765625, 0.0114288330078125, 0.04132080078125, 0.0190887451171875, 0.03021240234375, -0.042449951171875, -0.025421142578125, -0.01496124267578125, -0.026397705078125, 0.0019130706787109375, -0.04876708984375, -0.0264434814453125, -0.008544921875, -0.0274658203125, -0.018341064453125, 0.0190277099609375, 0.01074981689453125, -0.0207977294921875, -0.0114593505859375, -0.01776123046875, -0.001064300537109375, -0.02130126953125, 0.02960205078125, 0.00795745849609375, -0.027099609375, -0.003726959228515625, 0.0201568603515625, 0.0252685546875, 0.0309906005859375, -0.00634002685546875, 0.0255584716796875, -0.005702972412109375, 0.0211334228515625, -0.014068603515625, 0.0654296875, -0.009918212890625, -0.01512908935546875, 0.048980712890625, -0.01202392578125, 0.0278778076171875, 0.038238525390625, -0.006435394287109375, -0.040863037109375, -0.035125732421875, -0.046630859375, 0.04052734375, 0.01071929931640625, 0.0286102294921875, 0.0278167724609375, 0.0301513671875, 0.05010986328125, -0.0146636962890625, -0.010955810546875, -0.0226593017578125, -0.037322998046875, -0.0215606689453125, 0.012725830078125, -0.082275390625, -0.0697021484375, 0.02178955078125, -0.02825927734375, -0.005031585693359375, 0.0166473388671875, 0.064208984375, -0.0104827880859375, 0.000012755393981933594, 0.0219879150390625, 0.034515380859375, -0.006381988525390625, 0.01202392578125, -0.0171661376953125, -0.010009765625, 0.037322998046875, 0.00555419921875, -0.0125274658203125, -0.0270843505859375, 0.0226287841796875, 0.009765625, -0.05718994140625, 0.045928955078125, -0.0109100341796875, 0.0694580078125, 0.039459228515625, 0.011474609375, 0.0175933837890625, 0.005084991455078125, -0.0025615692138671875, 0.0156707763671875, -0.0208282470703125, -0.0418701171875, -0.004398345947265625, -0.007312774658203125, -0.0306549072265625, 0.0176239013671875, -0.02069091796875, -0.05035400390625, 0.047760009765625, -0.004756927490234375, 0.006744384765625, -0.0019025802612304688, -0.0228424072265625, 0.020355224609375, 0.00003147125244140625, 0.0218963623046875, -0.005001068115234375, -0.00885009765625, -0.005260467529296875, -0.00986480712890625, -0.007717132568359375, 0.015228271484375, -0.0413818359375, 0.00771331787109375, -0.006710052490234375, 0.004062652587890625, 0.005992889404296875, -0.031280517578125, 0.0026683807373046875, 0.01611328125, -0.0108795166015625, 0.0245819091796875, -0.0186004638671875, 0.0169677734375, 0.007099151611328125, 0.0264739990234375, 0.041168212890625, -0.011871337890625, 0.007213592529296875, 0.0306243896484375, -0.04345703125, -0.0200653076171875, -0.03729248046875, -0.0247344970703125, 0.0170135498046875, 0.041229248046875, 0.048583984375, 0.024688720703125, -0.01666259765625, -0.06475830078125, 0.063232421875, -0.0234222412109375, 0.01038360595703125, -0.04681396484375, -0.0246734619140625, 0.0289459228515625, -0.0770263671875, 0.0211334228515625, 0.0228271484375, 0.003448486328125, -0.0550537109375, 0.0670166015625, -0.0007271766662597656, -0.03564453125, -0.036529541015625, 0.03643798828125, 0.0232086181640625, 0.0039215087890625, -0.0220489501953125, 0.006534576416015625, -0.01186370849609375, 0.0009045600891113281, 0.01444244384765625, 0.01446533203125, -0.0260467529296875, -0.0074462890625, 0.0105133056640625, 0.050872802734375, -0.0034332275390625, 0.058380126953125, 0.0192108154296875, -0.024993896484375, -0.0027599334716796875, -0.02105712890625, -0.0159149169921875, 0.0183258056640625, -0.006008148193359375, 0.0163421630859375, -0.0252227783203125, -0.01548004150390625, 0.00478363037109375, -0.027587890625, 0.0091400146484375, 0.0247344970703125, 0.009368896484375, -0.007320404052734375, 0.0010805130004882812, 0.053863525390625, -0.01317596435546875, 0.058197021484375, 0.0030345916748046875, 0.0027866363525390625, 0.072998046875, 0.01290130615234375, 0.00414276123046875, 0.01904296875, 0.0229034423828125, 0.0247650146484375, -0.0013456344604492188, -0.01169586181640625, -0.01285552978515625, 0.0321044921875, -0.01386260986328125, 0.0006666183471679688, -0.01111602783203125, -0.0106048583984375, -0.017730712890625, 0.0006937980651855469, 0.01297760009765625, 0.076171875, -0.0164337158203125, -0.060791015625, -0.024627685546875, 0.03961181640625, -0.07696533203125, -0.09112548828125, 0.0447998046875, -0.01099395751953125, 0.005657196044921875, 0.0005698204040527344, -0.010894775390625, -0.01221466064453125, 0.01824951171875, -0.00846099853515625, 0.006999969482421875, -0.019195556640625, -0.01229095458984375, -0.023193359375, -0.049957275390625, -0.00592803955078125, -0.00011682510375976562, 0.004302978515625, -0.0027923583984375, 0.00920867919921875, -0.0136566162109375, -0.0137786865234375, -0.00225830078125, 0.02850341796875, 0.00827789306640625, -0.01157379150390625, 0.00801849365234375, -0.0445556640625, -0.00870513916015625, -0.0023403167724609375, -0.055145263671875, -0.0188751220703125, 0.0174713134765625, -0.02813720703125, 0.026275634765625, -0.0010709762573242188, 0.043975830078125, -0.01171112060546875, -0.045013427734375, 0.0234222412109375, 0.0233154296875, -0.0294647216796875, -0.049407958984375, 0.0246734619140625, -0.036590576171875, 0.0295562744140625, 0.0308990478515625, -0.020477294921875, -0.009002685546875, 0.0213623046875, -0.0259552001953125, -0.0005183219909667969, 0.01003265380859375, -0.0186614990234375, 0.05010986328125, -0.01374053955078125, -0.0278167724609375, -0.020599365234375, 0.03851318359375, -0.0031280517578125, 0.0293426513671875, 0.0175018310546875, 0.0295867919921875, 0.010650634765625, 0.0005726814270019531, -0.0325927734375, 0.003475189208984375, 0.056427001953125, 0.0276947021484375, 0.068603515625, -0.039459228515625, -0.031890869140625, -0.03656005859375, 0.05572509765625, -0.01093292236328125, -0.0003044605255126953, -0.00537872314453125, -0.00919342041015625, -0.039306640625, 0.0011463165283203125, -0.068359375, 0.0120697021484375, -0.0732421875, 0.01849365234375, -0.01526641845703125, -0.0013113021850585938, -0.01556396484375, 0.0369873046875, -0.035888671875, -0.0419921875, 0.037567138671875, 0.00601959228515625, 0.0030994415283203125, 0.03985595703125, -0.0282135009765625, 0.0208282470703125, -0.03857421875, -0.0130157470703125, -0.1357421875, -0.033416748046875, 0.01556396484375, 0.0860595703125, -0.007396697998046875, -0.04754638671875, -0.045928955078125, 0.0465087890625, -0.0262603759765625, 0.0087738037109375, -0.005886077880859375, 0.0163116455078125, 0.00955963134765625, 0.0196075439453125, 0.001434326171875, -0.0026149749755859375, -0.0087738037109375, -0.009521484375, 0.00594329833984375, 0.0299835205078125, -0.0146026611328125, -0.0019502639770507812, 0.01175689697265625, -0.00958251953125, -0.0482177734375, -0.043426513671875, -0.0211181640625, -0.0157623291015625, -0.01119232177734375, 0.0018606185913085938, -0.030487060546875, -0.035858154296875, 0.036895751953125, 0.0242156982421875, 0.0083465576171875, -0.0110015869140625, 0.07623291015625, 0.0190582275390625, -0.037200927734375, -0.0162200927734375, 0.032012939453125, 0.02783203125, 0.0008916854858398438, 0.0309600830078125, -0.0032138824462890625, -0.03863525390625, 0.088134765625, -0.00374603271484375, 0.0208740234375, -0.005115509033203125, 0.0283203125, 0.01297760009765625, -0.009307861328125, 0.0202789306640625, 0.01580810546875, -0.0189666748046875, 0.039398193359375, 0.0199127197265625, -0.0011529922485351562, 0.007793426513671875, -0.00887298583984375, -0.0239410400390625, 0.00756072998046875, 0.0258941650390625, -0.01788330078125, -0.007965087890625, 0.0287933349609375, 0.061492919921875, 0.03863525390625, 0.00002092123031616211, 0.040618896484375, 0.06463623046875, -0.00780487060546875, 0.01274871826171875, -0.018035888671875, 0.001983642578125, 0.03729248046875, -0.06805419921875, -0.0204010009765625, 0.02557373046875, 0.0034809112548828125, 0.0286712646484375, 0.01751708984375, -0.01253509521484375, -0.041534423828125, -0.00017201900482177734, 0.00205230712890625, -0.025482177734375, 0.0123291015625, 0.034393310546875, 0.03509521484375, -0.02935791015625, 0.02581787109375, 0.047821044921875, -0.0292816162109375, -0.025146484375, -0.0296630859375, -0.0103607177734375, -0.01502227783203125, 0.0164031982421875, 0.029937744140625, -0.01197052001953125, 0.025054931640625, -0.01306915283203125, 0.044464111328125, 0.0200958251953125, -0.0196685791015625, 0.02301025390625, 0.0066986083984375, 0.063232421875, -0.111083984375, 0.0168609619140625, -0.024017333984375, -0.0134429931640625, 0.0073089599609375, 0.03521728515625, -0.0012674331665039062, -0.0157318115234375, 0.0100555419921875, -0.013519287109375, -0.0264739990234375, 0.01145172119140625, 0.00615692138671875, 0.0218963623046875, -0.03973388671875, -0.029998779296875, 0.03662109375, 0.050872802734375, -0.00809478759765625, 0.0193023681640625, -0.00902557373046875, 0.03466796875, 0.002918243408203125, -0.003864288330078125, -0.001079559326171875, -0.0161590576171875, -0.005954742431640625, -0.0178070068359375, -0.0201263427734375, -0.0579833984375, -0.0099029541015625, -0.0263519287109375, -0.021881103515625, 0.08026123046875, -0.0214385986328125, 0.044921875, -0.061737060546875, 0.01065826416015625, 0.0011663436889648438, -0.0081634521484375, 0.056884765625, 0.0304718017578125, -0.041900634765625, 0.005962371826171875, -0.03759765625, 0.01253509521484375, 0.01024627685546875, -0.03167724609375, -0.012420654296875, -0.03466796875, -0.02569580078125, -0.01267242431640625, 0.0008754730224609375, 0.0129241943359375, -0.041961669921875, 0.050262451171875, 0.015350341796875, 0.031524658203125, 0.00531768798828125, 0.05670166015625, -0.025970458984375, 0.06268310546875, 0.01220703125, 0.00905609130859375, -0.0125732421875, -0.0202484130859375, 0.04022216796875, 0.0279998779296875, -0.0548095703125, -0.0355224609375, 0.01148223876953125, -0.0228424072265625, 0.056732177734375, -0.034912109375, 0.036590576171875, -0.0232086181640625, -0.0037250518798828125, -0.0193634033203125, 0.034423828125, -0.05950927734375, 0.005550384521484375, 0.0103759765625, -0.0316162109375, 0.01013946533203125, 0.00989532470703125, -0.0143585205078125, 0.04608154296875, -0.020904541015625, 0.0190277099609375, 0.027923583984375, -0.03375244140625, 0.05279541015625, 0.0943603515625, -0.03875732421875, 0.034393310546875, 0.017791748046875, -0.01409149169921875, 0.039459228515625, 0.0095062255859375, 0.016876220703125, -0.0006809234619140625, 0.08013916015625, 0.0078887939453125, -0.0228424072265625, 0.04962158203125, -0.03106689453125, 0.0034313201904296875, 0.051971435546875, 0.0601806640625, -0.0465087890625, -0.02850341796875, 0.00197601318359375, -0.0567626953125, -0.0306549072265625, 0.00226593017578125, -0.04290771484375, -0.0877685546875, 0.08843994140625, 0.023162841796875, 0.0145416259765625, 0.044708251953125, 0.0185699462890625, 0.006816864013671875, -0.01526641845703125, 0.05706787109375, 0.0257415771484375, -0.052093505859375, 0.0279388427734375, 0.03955078125, 0.01091766357421875, -0.04254150390625, 0.0037326812744140625, -0.0022029876708984375, -0.01427459716796875, -0.050262451171875, 0.011474609375, -0.004512786865234375, 0.0272674560546875, -0.0369873046875, 0.04095458984375, 0.0179290771484375, 0.037841796875, -0.0161590576171875, 0.0156402587890625, 0.0222930908203125, 0.004383087158203125, 0.0227203369140625, -0.022613525390625, -0.01401519775390625, 0.033355712890625, -0.06121826171875, 0.0104217529296875, -0.0200653076171875, 0.0257110595703125, -0.0270233154296875, 0.00470733642578125, 0.09234619140625, -0.0018329620361328125, -0.051483154296875, 0.01235198974609375, -0.01189422607421875, -0.0204620361328125, 0.011199951171875, 0.03765869140625, -0.0263519287109375, -0.026275634765625, 0.0263824462890625, -0.054931640625, -0.0209197998046875, -0.006076812744140625, -0.0572509765625, 0.07440185546875, 0.0241546630859375, 0.0084686279296875, 0.0153350830078125, 0.0308990478515625, -0.04718017578125, -0.0008497238159179688, -0.0312042236328125, 0.0623779296875, 0.004634857177734375, 0.0114898681640625, -0.046539306640625, -0.0008225440979003906, 0.005504608154296875, 0.02685546875, 0.04278564453125, 0.005199432373046875, -0.0290069580078125, 0.005878448486328125, 0.0626220703125, 0.03912353515625, 0.00274658203125, 0.021148681640625, -0.011993408203125, -0.03997802734375, 0.0207672119140625, -0.036895751953125, 0.00611114501953125, -0.0238037109375, 0.0220489501953125, -0.00217437744140625, 0.0097808837890625, 0.01226043701171875, 0.044830322265625, 0.00800323486328125, -0.01258087158203125, 0.01409912109375, 0.0167999267578125, -0.038726806640625, -0.00310516357421875, 0.04132080078125, 0.006618499755859375, 0.00151824951171875, -0.047607421875, -0.01320648193359375, 0.0237884521484375, 0.004314422607421875, 0.036376953125, 0.0408935546875, 0.023406982421875, 0.0257568359375, 0.01444244384765625, 0.0288238525390625, 0.03668212890625, -0.024444580078125, 0.01042938232421875, 0.045806884765625, 0.0401611328125, 0.02325439453125, 0.03704833984375, -0.0013990402221679688, 0.0068206787109375, -0.020538330078125, 0.003894805908203125, 0.0064239501953125, 0.005767822265625, -0.007625579833984375, -0.01258087158203125, 0.0055084228515625, 0.02972412109375, 0.031890869140625, -0.038238525390625, -0.01526641845703125, 0.044708251953125, 0.0008711814880371094, -0.00330352783203125, 0.00612640380859375, -0.0015115737915039062, -0.034881591796875, -0.0296783447265625, 0.064697265625, 0.02020263671875, 0.007198333740234375, -0.038055419921875, 0.06402587890625, -0.009979248046875, 0.0178680419921875, -0.006561279296875, 0.0140838623046875, -0.0122222900390625, -0.0003361701965332031, -0.06390380859375, -0.06988525390625, 0.016265869140625, 0.06036376953125, 0.01511383056640625, 0.025360107421875, 0.00833892822265625, 0.00873565673828125, 0.03094482421875, 0.0003724098205566406, 0.031158447265625, -0.0105133056640625, -0.023590087890625, -0.01261138916015625, -0.04534912109375, -0.0200042724609375, -0.0209197998046875, -0.0165557861328125, 0.037322998046875, -0.0196990966796875, 0.003337860107421875, 0.0472412109375, -0.0030117034912109375, -0.00411224365234375, 0.0012044906616210938, -0.02764892578125, 0.031768798828125, 0.01419830322265625, 0.0225677490234375, 0.0203857421875, -0.006702423095703125, -0.044647216796875, -0.0175323486328125, 0.0247802734375, -0.002197265625, 0.0302734375, -0.02325439453125, -0.037750244140625, 0.00013709068298339844, 0.037689208984375, 0.00041484832763671875, -0.0254974365234375, 0.007244110107421875, -0.049591064453125, -0.048980712890625, -0.04327392578125, -0.05621337890625, 0.07916259765625, 0.01502227783203125, 0.1083984375, -0.050384521484375, 0.04296875, -0.01401519775390625, 0.007701873779296875, -0.0070648193359375, -0.0108489990234375, 0.0182037353515625, 0.011932373046875, 0.004909515380859375, -0.024261474609375, 0.0037631988525390625, 0.00991058349609375, 0.040069580078125, -0.0016355514526367188, 0.01403045654296875, -0.021087646484375, 0.0216522216796875, -0.0215911865234375, 0.035980224609375, -0.0213470458984375, -0.0552978515625, -0.02764892578125, 0.01213836669921875, 0.00423431396484375, 0.042510986328125, 0.0234832763671875, -0.0008020401000976562, 0.013427734375, -0.027618408203125, 0.04266357421875, -0.0298919677734375, 0.057281494140625, 0.0238189697265625, -0.006572723388671875, -0.01503753662109375, 0.03314208984375, -0.0062103271484375, 0.0032405853271484375, 0.028076171875, -0.00569915771484375, 0.031280517578125, -0.09112548828125, 0.012542724609375, 0.044403076171875, 0.0399169921875, -0.0174560546875, 0.0279998779296875, 0.024444580078125, -0.004734039306640625, 0.039642333984375, -0.0246429443359375, -0.0233001708984375, -0.0278778076171875, -0.00431060791015625, 0.041748046875, -0.0194854736328125, -0.03094482421875, -0.07891845703125, -0.050079345703125, 0.036285400390625, 0.0007920265197753906, -0.007080078125, -0.027069091796875, -0.0012025833129882812, -0.01183319091796875, 0.01300048828125, 0.06573486328125, -0.032684326171875, -0.0227813720703125, -0.0693359375, -0.006748199462890625, -0.0491943359375, 0.019256591796875, -0.03271484375, 0.052978515625, 0.0755615234375, -0.0361328125, -0.057830810546875, 0.039154052734375, 0.008575439453125, 0.08856201171875, -0.0283203125, -0.0272064208984375, 0.020843505859375, -0.007617950439453125, -0.0318603515625, -0.051025390625, 0.00923919677734375, -0.045654296875, 0.0106658935546875, 0.07427978515625, -0.0394287109375, 0.006072998046875, -0.044158935546875, -0.087890625, 0.0380859375, 0.01837158203125, -0.0538330078125, -0.056488037109375, 0.011810302734375, 0.007305145263671875, 0.0216064453125, -0.014068603515625, -0.023193359375, -0.0296478271484375, 0.00917816162109375, -0.004718780517578125, 0.036834716796875, 0.003147125244140625, 0.0200347900390625, -0.01306915283203125, 0.029022216796875, 0.003528594970703125, -0.0087890625, 0.035125732421875, -0.014373779296875, 0.026580810546875, 0.048187255859375, -0.0284271240234375, -0.048248291015625, -0.016876220703125, -0.02886962890625, 0.03515625, -0.0718994140625, -0.02362060546875, -0.0306396484375, 0.00775909423828125, -0.004589080810546875, -0.0005908012390136719, -0.00434112548828125, -0.037750244140625, -0.02154541015625, 0.034423828125, -0.02105712890625, -0.007236480712890625, -0.04693603515625, -0.0192108154296875, -0.023406982421875, -0.0105438232421875, -0.0006194114685058594, -0.00844573974609375, -0.0325927734375, 0.00505828857421875, 0.0168914794921875, -0.0003211498260498047, 0.0007462501525878906, -0.0706787109375, 0.0295867919921875, -0.005573272705078125, 0.024017333984375, -0.001117706298828125, 0.0447998046875, 0.01739501953125, 0.06219482421875, 0.025604248046875, -0.0171356201171875, -0.01291656494140625, 0.01953125, 0.01849365234375, 0.051788330078125, -0.0124969482421875, -0.05499267578125, 0.0174713134765625, 0.018951416015625, -0.01003265380859375, 0.0141448974609375, -0.0262451171875, 0.0264739990234375, -0.022705078125, -0.0008997917175292969, -0.03173828125, -0.00997161865234375, -0.0160064697265625, 0.004108428955078125, -0.01187896728515625, 0.00946807861328125, 0.01434326171875, -0.0032501220703125, 0.0273284912109375, 0.01342010498046875, 0.00449371337890625, 0.01039886474609375, -0.0177154541015625, -0.02423095703125, -0.0108795166015625, -0.00557708740234375 ]
41aebce7b1970338019d80c03f33d5d45fee7dd4
Wordpress Stackexchange Q: What is $post_id? is it a global variable in WordPress? How can $post_id be used while echoing posts in single.php? Is it a global variable? A: $post_id is not a global variable. $post is a global variable. You can use global $post; $post_id = $post->ID;
Q: What is $post_id? is it a global variable in WordPress? How can $post_id be used while echoing posts in single.php? Is it a global variable? A: $post_id is not a global variable. $post is a global variable. You can use global $post; $post_id = $post->ID; A: No, $post_id is not a global variable. You can see a list of global variables WordPress creates here: https://codex.wordpress.org/Global_Variables $post_id is just a common naming convention for a variable that contains a post ID. In tutorials and example code it shows that the value is expected to be a post ID, but you still need to have set its value somewhere else in the code. If you are inside The Loop you can get the ID of the current page or post in the loop with $post_id = get_the_ID(). If you are outside The Loop and want to get the ID of the currently queried post or page you can use $post_id = get_queried_object_id(). Another way you might get a post ID is in a hook callback. For example, in the post_thumbnail_size hook the callback receives a post ID as the 2nd argument: function wpse_299132_post_thumbnail_size( $size, $post_id ) { return $size; } add_filter( 'post_thumbnail_size', 'wpse_299132_post_thumbnail_size', 10, 2 ); But that's just the name used in the documentation to make it clear what the variable contains. You can call it anything you like. This is also valid, for example: function wpse_299132_post_thumbnail_size( $size, $myPostId ) { return $size; } add_filter( 'post_thumbnail_size', 'wpse_299132_post_thumbnail_size', 10, 2 ); $myPostId is the 2nd argument, so will contain a post ID. But what you call it doesn't matter. A: In some cases, such as when you're outside The Loop, you may need to use get_queried_object_id() instead of get_the_ID(). $postID = get_queried_object_id();
wordpress
{ "language": "en", "length": 291, "provenance": "stackexchange_00019.jsonl.gz:485024", "question_score": "10", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/299132" }
[ 0.041534423828125, -0.028900146484375, 0.013397216796875, -0.021087646484375, -0.0081634521484375, -0.01059722900390625, 0.033935546875, 0.0124664306640625, 0.0307159423828125, 0.0158233642578125, -0.0192413330078125, -0.01519775390625, -0.025390625, -0.0173797607421875, -0.0257568359375, -0.02252197265625, 0.0419921875, -0.053619384765625, -0.01349639892578125, 0.006641387939453125, -0.0090179443359375, 0.027435302734375, 0.00495147705078125, 0.0015020370483398438, 0.03973388671875, -0.0254669189453125, -0.04595947265625, -0.01384735107421875, 0.01097869873046875, -0.00853729248046875, 0.0161590576171875, 0.0189971923828125, 0.0172576904296875, -0.016937255859375, 0.02618408203125, 0.004093170166015625, -0.01522064208984375, 0.023590087890625, 0.031982421875, -0.0043487548828125, 0.0190582275390625, -0.0228424072265625, 0.045684814453125, -0.0188751220703125, 0.002445220947265625, 0.00524139404296875, 0.00206756591796875, -0.031707763671875, 0.0136871337890625, 0.004817962646484375, 0.01207733154296875, 0.018890380859375, 0.01244354248046875, 0.017913818359375, -0.005706787109375, 0.004695892333984375, 0.0292816162109375, -0.06378173828125, 0.05523681640625, -0.017974853515625, -0.0687255859375, -0.052886962890625, 0.0556640625, -0.058868408203125, -0.00321197509765625, -0.01210784912109375, 0.0087127685546875, 0.0312347412109375, -0.06170654296875, -0.0170135498046875, 0.034637451171875, -0.00457763671875, 0.0025177001953125, -0.03961181640625, -0.00949859619140625, -0.036224365234375, 0.040496826171875, -0.03350830078125, -0.0289154052734375, 0.015777587890625, -0.05712890625, -0.007251739501953125, -0.0762939453125, -0.01065826416015625, -0.0257720947265625, 0.0045623779296875, -0.031768798828125, 0.00885009765625, -0.01910400390625, -0.06182861328125, -0.0234222412109375, -0.00855255126953125, -0.03033447265625, -0.036651611328125, -0.037872314453125, -0.031280517578125, 0.0148468017578125, 0.048187255859375, -0.02337646484375, 0.0028591156005859375, -0.02001953125, -0.01476287841796875, 0.01189422607421875, -0.026947021484375, -0.02252197265625, 0.0205535888671875, 0.043212890625, 0.0172576904296875, -0.00347137451171875, -0.005313873291015625, -0.031341552734375, 0.00016069412231445312, -0.003040313720703125, 0.03729248046875, -0.05950927734375, -0.0220184326171875, -0.0657958984375, 0.0014486312866210938, -0.0250244140625, 0.0164947509765625, 0.0269775390625, 0.0185089111328125, 0.0169677734375, 0.0305023193359375, -0.026641845703125, 0.003566741943359375, -0.02166748046875, -0.059356689453125, -0.05645751953125, 0.03839111328125, -0.0193328857421875, 0.00148773193359375, 0.05908203125, 0.03094482421875, -0.014129638671875, -0.0264434814453125, -0.0017194747924804688, -0.0113983154296875, -0.008209228515625, 0.042755126953125, -0.029449462890625, -0.06866455078125, 0.007289886474609375, 0.00551605224609375, 0.00022649765014648438, 0.035186767578125, 0.035919189453125, -0.0018339157104492188, -0.03302001953125, -0.071044921875, 0.01111602783203125, 0.01035308837890625, -0.023956298828125, 0.0269622802734375, 0.054168701171875, -0.0200042724609375, 0.04351806640625, -0.0305328369140625, 0.02850341796875, 0.004299163818359375, 0.0181884765625, 0.004459381103515625, 0.0230255126953125, 0.01275634765625, -0.008056640625, -0.0061187744140625, -0.0225372314453125, -0.0094146728515625, 0.0137786865234375, 0.04034423828125, 0.0195159912109375, 0.023284912109375, 0.0258026123046875, -0.0092620849609375, -0.01215362548828125, -0.0278167724609375, -0.0239105224609375, -0.0479736328125, 0.0284881591796875, 0.01309967041015625, -0.0279388427734375, -0.0322265625, -0.058441162109375, 0.0204620361328125, -0.03729248046875, 0.028839111328125, 0.0103302001953125, 0.0198516845703125, 0.021514892578125, -0.0025424957275390625, 0.016448974609375, 0.028045654296875, -0.00797271728515625, 0.004802703857421875, 0.00942230224609375, -0.023590087890625, -0.0167999267578125, 0.00032591819763183594, -0.0059051513671875, -0.0128936767578125, 0.0304412841796875, -0.0114593505859375, 0.00815582275390625, -0.0043792724609375, -0.06396484375, -0.01374053955078125, -0.015716552734375, 0.006237030029296875, -0.0054168701171875, -0.005931854248046875, 0.034027099609375, 0.010467529296875, -0.00286865234375, -0.062042236328125, -0.045654296875, 0.054534912109375, -0.0102386474609375, 0.030364990234375, -0.0230865478515625, 0.07000732421875, -0.05535888671875, -0.01444244384765625, -0.056121826171875, -0.006824493408203125, 0.060882568359375, 0.01078033447265625, -0.0174407958984375, -0.0275726318359375, 0.037750244140625, -0.001216888427734375, -0.0435791015625, 0.03350830078125, -0.0263824462890625, 0.00995635986328125, -0.0103302001953125, -0.0130615234375, -0.0307159423828125, -0.075927734375, 0.0149383544921875, 0.0587158203125, 0.0419921875, 0.03973388671875, 0.0017480850219726562, -0.0052337646484375, 0.0135498046875, 0.006267547607421875, 0.046142578125, -0.050323486328125, 0.01532745361328125, 0.045867919921875, -0.032257080078125, 0.0053253173828125, 0.028961181640625, -0.060089111328125, -0.0323486328125, 0.053985595703125, -0.034576416015625, -0.0191192626953125, -0.0020236968994140625, 0.02801513671875, -0.0190277099609375, 0.0260009765625, 0.032073974609375, -0.0118865966796875, 0.005474090576171875, -0.007732391357421875, 0.033966064453125, 0.021820068359375, 0.00676727294921875, -0.028289794921875, 0.007198333740234375, 0.0016374588012695312, -0.0006246566772460938, -0.009185791015625, -0.022308349609375, 0.026824951171875, -0.0343017578125, 0.01212310791015625, 0.0272216796875, -0.006175994873046875, -0.013458251953125, 0.01546478271484375, -0.0034809112548828125, -0.024627685546875, 0.00745391845703125, 0.0018949508666992188, 0.006771087646484375, -0.03912353515625, 0.0234375, -0.02130126953125, 0.0061187744140625, 0.03558349609375, -0.036773681640625, 0.06768798828125, 0.0006322860717773438, -0.03570556640625, 0.0341796875, -0.018585205078125, 0.005802154541015625, -0.0237579345703125, 0.0162353515625, 0.03411865234375, 0.000919342041015625, -0.01416778564453125, -0.0128936767578125, 0.0110321044921875, 0.0030002593994140625, -0.017333984375, -0.011749267578125, -0.005611419677734375, -0.039794921875, 0.01153564453125, 0.0031757354736328125, 0.05865478515625, -0.0159759521484375, -0.044708251953125, -0.0027027130126953125, 0.00518798828125, -0.0810546875, -0.0888671875, 0.011138916015625, -0.0743408203125, 0.018951416015625, -0.0238800048828125, -0.0289764404296875, -0.00958251953125, 0.00263214111328125, 0.007671356201171875, 0.006923675537109375, -0.0140838623046875, -0.07080078125, -0.060577392578125, -0.090576171875, -0.0097503662109375, -0.0130157470703125, 0.028778076171875, -0.0003478527069091797, 0.055145263671875, 0.0253143310546875, -0.0167236328125, 0.00830841064453125, 0.0254974365234375, -0.03826904296875, -0.0369873046875, 0.012237548828125, -0.023406982421875, 0.0031147003173828125, 0.017364501953125, -0.041900634765625, 0.003993988037109375, -0.002643585205078125, -0.025848388671875, 0.011505126953125, 0.0216064453125, 0.051361083984375, -0.028839111328125, -0.0208282470703125, 0.01580810546875, -0.001995086669921875, -0.037200927734375, -0.044769287109375, -0.024169921875, -0.0628662109375, -0.02496337890625, 0.043975830078125, 0.01544952392578125, -0.04254150390625, 0.01071929931640625, -0.024383544921875, -0.006805419921875, -0.033355712890625, -0.0277862548828125, 0.0299072265625, 0.01483154296875, 0.032012939453125, 0.04534912109375, -0.032318115234375, -0.0390625, 0.0243988037109375, -0.0160064697265625, 0.00708770751953125, 0.0020313262939453125, -0.005496978759765625, -0.00260162353515625, -0.0406494140625, 0.032562255859375, 0.04022216796875, 0.01043701171875, 0.0015010833740234375, -0.03863525390625, 0.0118255615234375, 0.0689697265625, -0.07275390625, -0.019561767578125, 0.0299530029296875, 0.0023593902587890625, 0.00437164306640625, -0.020538330078125, -0.0625, -0.030029296875, 0.0177154541015625, 0.027679443359375, 0.0175933837890625, 0.0278167724609375, -0.0404052734375, 0.06744384765625, 0.00951385498046875, -0.0039215087890625, 0.0240936279296875, -0.0755615234375, 0.0160369873046875, 0.01525115966796875, -0.01617431640625, 0.01468658447265625, -0.018463134765625, -0.0545654296875, -0.0300445556640625, -0.004680633544921875, -0.0002237558364868164, 0.0231781005859375, 0.0172882080078125, -0.0244140625, -0.01561737060546875, 0.0027313232421875, -0.01031494140625, 0.0196075439453125, 0.003948211669921875, 0.0231781005859375, -0.0057525634765625, 0.02435302734375, 0.009429931640625, -0.006175994873046875, -0.02203369140625, -0.002094268798828125, -0.0009379386901855469, 0.0179595947265625, -0.0165252685546875, -0.05804443359375, 0.005931854248046875, -0.016998291015625, -0.051422119140625, 0.00016105175018310547, 0.0085906982421875, 0.04071044921875, -0.030731201171875, 0.02679443359375, -0.00112152099609375, -0.071044921875, 0.056549072265625, 0.0548095703125, -0.009307861328125, 0.0016431808471679688, 0.050689697265625, 0.01081085205078125, -0.058563232421875, -0.08770751953125, 0.00759124755859375, 0.0533447265625, -0.00534820556640625, 0.048828125, 0.04876708984375, -0.019683837890625, 0.00867462158203125, 0.0396728515625, -0.0277557373046875, -0.002475738525390625, 0.06097412109375, -0.014373779296875, -0.037567138671875, 0.0214996337890625, -0.043914794921875, 0.0350341796875, 0.029998779296875, -0.016021728515625, -0.04412841796875, -0.0117340087890625, 0.061431884765625, -0.0256500244140625, 0.06463623046875, -0.04010009765625, -0.0660400390625, 0.033599853515625, -0.0189361572265625, -0.006702423095703125, -0.0026569366455078125, 0.022186279296875, 0.00778961181640625, -0.0034313201904296875, 0.01009368896484375, 0.030059814453125, 0.0360107421875, 0.024169921875, 0.0005822181701660156, 0.06146240234375, 0.006893157958984375, -0.027740478515625, -0.018310546875, 0.05523681640625, 0.0005869865417480469, -0.0149688720703125, 0.0116119384765625, -0.0030384063720703125, 0.014129638671875, 0.004009246826171875, 0.0010128021240234375, 0.0046234130859375, -0.005702972412109375, -0.01824951171875, -0.0012121200561523438, 0.0161895751953125, -0.039764404296875, -0.02880859375, 0.01995849609375, 0.0141143798828125, -0.0044097900390625, 0.01282501220703125, 0.07794189453125, 0.01053619384765625, 0.030548095703125, -0.0357666015625, 0.0207061767578125, 0.05816650390625, 0.02984619140625, 0.01126861572265625, -0.0309906005859375, -0.030059814453125, 0.045928955078125, 0.005695343017578125, -0.0165557861328125, 0.0203399658203125, 0.0222625732421875, 0.023406982421875, 0.014984130859375, -0.006961822509765625, -0.0096893310546875, -0.01523590087890625, -0.041534423828125, 0.0626220703125, -0.0129852294921875, -0.07861328125, -0.0310821533203125, -0.000644683837890625, 0.030059814453125, -0.00690460205078125, -0.0014619827270507812, -0.0111083984375, -0.03179931640625, 0.023895263671875, -0.0265960693359375, 0.01678466796875, -0.006824493408203125, -0.00366973876953125, -0.002887725830078125, -0.007289886474609375, -0.01806640625, 0.0197906494140625, -0.0078582763671875, -0.021392822265625, -0.030670166015625, 0.048797607421875, 0.004077911376953125, 0.051239013671875, -0.00347900390625, -0.045074462890625, 0.031585693359375, -0.016845703125, 0.08099365234375, 0.039276123046875, -0.042022705078125, -0.0221405029296875, -0.0308685302734375, -0.007534027099609375, 0.028564453125, -0.015289306640625, -0.039520263671875, 0.004108428955078125, -0.0011196136474609375, 0.007965087890625, 0.0117034912109375, 0.00598907470703125, -0.0105438232421875, 0.01617431640625, -0.004451751708984375, 0.041595458984375, -0.0025539398193359375, 0.025054931640625, -0.0157928466796875, 0.0204315185546875, 0.0035858154296875, 0.0021820068359375, 0.0128021240234375, -0.0271759033203125, -0.000499725341796875, -0.0048370361328125, -0.014862060546875, 0.0149688720703125, 0.01273345947265625, -0.037750244140625, -0.020904541015625, -0.0024051666259765625, 0.0270233154296875, 0.0106201171875, 0.0031566619873046875, 0.003093719482421875, -0.06610107421875, 0.0032215118408203125, -0.018798828125, 0.057159423828125, -0.03131103515625, -0.026123046875, 0.016448974609375, 0.028167724609375, 0.00605010986328125, -0.0152130126953125, -0.0011386871337890625, 0.036041259765625, -0.0212249755859375, 0.050750732421875, 0.07440185546875, 0.0247650146484375, 0.051361083984375, -0.00356292724609375, 0.0170745849609375, 0.014923095703125, 0.051788330078125, -0.044036865234375, -0.031494140625, 0.0159912109375, 0.006397247314453125, -0.038421630859375, -0.01352691650390625, -0.033111572265625, 0.00894927978515625, 0.0313720703125, 0.05670166015625, -0.03765869140625, -0.0084991455078125, 0.014739990234375, -0.0297088623046875, 0.007343292236328125, 0.005748748779296875, 0.00020396709442138672, -0.019989013671875, 0.0179901123046875, 0.01861572265625, 0.00368499755859375, 0.024017333984375, 0.00478363037109375, 0.025299072265625, -0.0228271484375, 0.062744140625, 0.004917144775390625, -0.047454833984375, -0.001102447509765625, 0.035003662109375, -0.0008802413940429688, -0.05438232421875, 0.0022296905517578125, 0.02471923828125, -0.0191192626953125, -0.050323486328125, 0.058624267578125, 0.00649261474609375, 0.0293121337890625, 0.004795074462890625, 0.01218414306640625, -0.007415771484375, 0.0081634521484375, 0.00284576416015625, -0.01194000244140625, -0.0278472900390625, -0.007205963134765625, -0.047698974609375, -0.031402587890625, -0.00904083251953125, 0.061614990234375, -0.008575439453125, 0.03155517578125, 0.01216888427734375, -0.0249786376953125, -0.0084686279296875, 0.00763702392578125, 0.0311737060546875, -0.0360107421875, -0.007568359375, 0.0223388671875, 0.0299835205078125, 0.00077056884765625, -0.01335906982421875, -0.0003933906555175781, -0.03143310546875, 0.0100555419921875, -0.0131378173828125, 0.008514404296875, 0.0133514404296875, -0.030548095703125, -0.07635498046875, 0.0828857421875, 0.0007200241088867188, 0.01947021484375, -0.0149688720703125, 0.0215606689453125, -0.007747650146484375, 0.00597381591796875, -0.03277587890625, 0.05743408203125, -0.0213470458984375, 0.06353759765625, -0.04364013671875, -0.003925323486328125, 0.041839599609375, 0.0242462158203125, 0.04742431640625, 0.005031585693359375, -0.00799560546875, -0.0123138427734375, 0.0182342529296875, 0.043426513671875, -0.0089569091796875, -0.0033969879150390625, 0.034393310546875, 0.043365478515625, 0.05657958984375, -0.0205535888671875, 0.030426025390625, -0.034210205078125, 0.00516510009765625, 0.051055908203125, 0.037750244140625, 0.0295867919921875, 0.0411376953125, -0.0457763671875, -0.01168060302734375, 0.035125732421875, 0.00560760498046875, 0.047332763671875, -0.0004210472106933594, 0.054351806640625, 0.0193328857421875, -0.0007328987121582031, -0.0023555755615234375, -0.024810791015625, 0.05181884765625, -0.0113677978515625, 0.01561737060546875, 0.031341552734375, 0.01033782958984375, 0.04364013671875, 0.025238037109375, 0.0104522705078125, 0.0396728515625, 0.0026950836181640625, 0.049957275390625, 0.03912353515625, 0.018157958984375, -0.046417236328125, -0.004802703857421875, 0.05023193359375, 0.06463623046875, -0.034637451171875, 0.0080413818359375, 0.00742340087890625, 0.01143646240234375, 0.005207061767578125, -0.044097900390625, 0.0259246826171875, 0.0019121170043945312, -0.005146026611328125, -0.032012939453125, 0.015899658203125, 0.065673828125, 0.049835205078125, 0.021575927734375, 0.0267181396484375, -0.1312255859375, -0.0311737060546875, -0.0625, -0.004756927490234375, 0.0221099853515625, 0.081787109375, 0.048828125, 0.04547119140625, 0.002346038818359375, -0.048980712890625, -0.01076507568359375, 0.040069580078125, 0.03277587890625, 0.0177764892578125, -0.068359375, -0.0450439453125, 0.04010009765625, 0.053436279296875, 0.0234222412109375, 0.0258941650390625, 0.061981201171875, 0.0282440185546875, -0.042327880859375, -0.01519775390625, 0.0215301513671875, -0.0260467529296875, 0.0250091552734375, 0.0014772415161132812, -0.0151824951171875, -0.033782958984375, -0.026824951171875, -0.0247650146484375, 0.0621337890625, -0.028839111328125, -0.00836181640625, 0.047088623046875, 0.0007104873657226562, -0.0204010009765625, -0.0047607421875, 0.0002529621124267578, 0.053131103515625, 0.01065826416015625, -0.002422332763671875, -0.0027904510498046875, -0.01535797119140625, -0.04571533203125, 0.0264129638671875, 0.035125732421875, -0.0166473388671875, 0.0251007080078125, -0.020477294921875, 0.00011730194091796875, 0.014434814453125, -0.015716552734375, 0.0034694671630859375, 0.00830841064453125, 0.00864410400390625, 0.0109405517578125, -0.048919677734375, -0.031463623046875, -0.01393890380859375, 0.02386474609375, 0.056182861328125, -0.0259246826171875, 0.024169921875, 0.036468505859375, -0.001163482666015625, 0.056671142578125, -0.087646484375, 0.0117034912109375, -0.0037937164306640625, -0.0301666259765625, 0.02227783203125, 0.0099945068359375, -0.060150146484375, 0.044647216796875, 0.021697998046875, 0.011627197265625, 0.0601806640625, -0.03521728515625, 0.01033782958984375, -0.02020263671875, 0.03778076171875, 0.00502777099609375, 0.0053863525390625, -0.01268768310546875, -0.007472991943359375, 0.06390380859375, 0.05047607421875, -0.01432037353515625, 0.032562255859375, -0.01027679443359375, -0.02685546875, 0.01519775390625, -0.032867431640625, 0.007541656494140625, 0.0197906494140625, -0.00135040283203125, -0.005123138427734375, -0.0245819091796875, -0.03167724609375, 0.006725311279296875, 0.01256561279296875, 0.01200103759765625, -0.01285552978515625, 0.00325775146484375, 0.006069183349609375, 0.008514404296875, 0.0450439453125, 0.022003173828125, 0.007289886474609375, 0.01532745361328125, -0.005764007568359375, -0.039215087890625, 0.007061004638671875, -0.0015239715576171875, -0.01654052734375, -0.005950927734375, 0.0007901191711425781, -0.01029205322265625, -0.01418304443359375, -0.003826141357421875, -0.03411865234375, 0.0238189697265625, -0.0227203369140625, 0.0173187255859375, -0.03466796875, -0.022491455078125, -0.007720947265625, -0.00424957275390625, 0.01488494873046875, -0.0031528472900390625, 0.034423828125, -0.049957275390625, -0.004543304443359375, -0.03179931640625, -0.0123138427734375, -0.007427215576171875, 0.041656494140625, 0.0261993408203125, -0.033203125, 0.025787353515625, 0.0638427734375, 0.046783447265625, 0.09881591796875, 0.01324462890625, -0.034027099609375, 0.01482391357421875, 0.011016845703125, -0.006450653076171875, -0.06866455078125, 0.00634765625, -0.08343505859375, -0.0013475418090820312, -0.031768798828125, 0.02655029296875, 0.037841796875, -0.0294647216796875, -0.0775146484375, 0.04736328125, -0.02459716796875, -0.032440185546875, -0.0173797607421875, -0.0255889892578125, 0.0191802978515625, 0.02288818359375, 0.004352569580078125, -0.0662841796875, -0.07012939453125, 0.0032596588134765625, 0.0110015869140625, 0.024017333984375, 0.05609130859375, -0.00926971435546875, -0.031280517578125, -0.01031494140625, -0.030487060546875, 0.004413604736328125, 0.016448974609375, 0.0012559890747070312, 0.0043182373046875, 0.0106964111328125, -0.0504150390625, 0.00074005126953125, -0.019317626953125, 0.0256805419921875, -0.0029296875, -0.03668212890625, -0.0216522216796875, 0.01220703125, 0.08685302734375, 0.0257110595703125, 0.0249481201171875, -0.061004638671875, 0.002468109130859375, -0.0322265625, -0.09552001953125, 0.031280517578125, 0.045745849609375, -0.04705810546875, 0.0248565673828125, 0.035888671875, -0.00246429443359375, 0.050994873046875, -0.00463104248046875, 0.00707244873046875, -0.0033016204833984375, 0.00627899169921875, -0.038665771484375, -0.031707763671875, -0.01447296142578125, 0.0025691986083984375, -0.006305694580078125, -0.006473541259765625, -0.0017995834350585938, 0.01131439208984375, -0.004055023193359375, 0.037200927734375, 0.01116180419921875, 0.0236968994140625, -0.03515625, 0.0049591064453125, 0.007617950439453125, 0.038818359375, -0.00905609130859375, -0.01690673828125, -0.0307159423828125, 0.031890869140625, 0.01849365234375, 0.0286407470703125, -0.0308837890625, 0.03936767578125, 0.007625579833984375, 0.06707763671875, -0.0352783203125, 0.0411376953125, -0.012298583984375, 0.0282440185546875, -0.0469970703125, 0.014251708984375, -0.01116180419921875, -0.0291595458984375, 0.0022487640380859375, -0.00972747802734375, -0.0015459060668945312, -0.038482666015625, 0.0153045654296875, -0.0015926361083984375, 0.00341033935546875, 0.022216796875 ]
7c99cab258b528822fe5d8733642022ae5e39f35
Wordpress Stackexchange Q: WordPress REST API validation I'd like to validate the data sent to my end point. https://www.shawnhooper.ca/2017/02/15/wp-rest-secrets-found-reading-core-code/ This post referenced the undocumented validation options. I have got 90% of what I need but now need to validate a strings length which I can't seem to figure out. Basically I need to say the max length is X. I tried 'maxLength' but that isn't working. Has anyone done this or better yet is there any documentation on this, the post I found was quite old. 'args' => array( 'external_id' => array( 'required' => true, 'type' => 'string', 'description' => 'external id', 'maxLength' => 10 ) ) Thanks, Andy A: There is no such maxLength option in the WP REST API. You can pass a validate_callback though. Example: <?php add_action( 'rest_api_init', function () { register_rest_route( 'myplugin/v1', '/author/(?P<id>\d+)', array( 'methods' => 'GET', 'callback' => 'my_awesome_func', 'args' => array( 'id' => array( 'validate_callback' => function($param, $request, $key) { return is_numeric( $param ); } ), ), ) ); } ); Source: https://developer.wordpress.org/rest-api/extending-the-rest-api/adding-custom-endpoints/
Q: WordPress REST API validation I'd like to validate the data sent to my end point. https://www.shawnhooper.ca/2017/02/15/wp-rest-secrets-found-reading-core-code/ This post referenced the undocumented validation options. I have got 90% of what I need but now need to validate a strings length which I can't seem to figure out. Basically I need to say the max length is X. I tried 'maxLength' but that isn't working. Has anyone done this or better yet is there any documentation on this, the post I found was quite old. 'args' => array( 'external_id' => array( 'required' => true, 'type' => 'string', 'description' => 'external id', 'maxLength' => 10 ) ) Thanks, Andy A: There is no such maxLength option in the WP REST API. You can pass a validate_callback though. Example: <?php add_action( 'rest_api_init', function () { register_rest_route( 'myplugin/v1', '/author/(?P<id>\d+)', array( 'methods' => 'GET', 'callback' => 'my_awesome_func', 'args' => array( 'id' => array( 'validate_callback' => function($param, $request, $key) { return is_numeric( $param ); } ), ), ) ); } ); Source: https://developer.wordpress.org/rest-api/extending-the-rest-api/adding-custom-endpoints/
wordpress
{ "language": "en", "length": 167, "provenance": "stackexchange_00019.jsonl.gz:485060", "question_score": "5", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/299253" }
[ -0.003070831298828125, -0.00933074951171875, -0.04241943359375, -0.026336669921875, 0.0010690689086914062, -0.0169525146484375, -0.00927734375, 0.0169525146484375, -0.03350830078125, 0.014556884765625, -0.0005469322204589844, 0.02154541015625, -0.0301513671875, -0.03582763671875, 0.0137176513671875, -0.0401611328125, 0.005916595458984375, 0.03839111328125, 0.01458740234375, -0.0212554931640625, 0.003948211669921875, -0.01568603515625, 0.0078887939453125, 0.09442138671875, 0.00495147705078125, 0.017791748046875, 0.064453125, -0.0477294921875, -0.001499176025390625, -0.019256591796875, -0.0003204345703125, -0.00908660888671875, 0.007228851318359375, 0.0565185546875, -0.056671142578125, -0.038116455078125, 0.0357666015625, 0.0022029876708984375, -0.026336669921875, 0.065185546875, 0.051788330078125, -0.0290069580078125, 0.011138916015625, 0.00921630859375, -0.0057830810546875, -0.0160064697265625, 0.061431884765625, -0.02117919921875, 0.006427764892578125, 0.07647705078125, -0.00385284423828125, 0.01092529296875, -0.009796142578125, 0.03814697265625, -0.00240325927734375, -0.007450103759765625, 0.003047943115234375, -0.03680419921875, 0.0364990234375, 0.0120391845703125, -0.025909423828125, -0.02490234375, 0.016815185546875, -0.035858154296875, 0.0292510986328125, -0.00753021240234375, 0.006046295166015625, 0.0469970703125, 0.022186279296875, 0.0128631591796875, -0.015899658203125, -0.0132598876953125, -0.0166473388671875, 0.020294189453125, -0.025390625, -0.0127410888671875, 0.005039215087890625, -0.01531219482421875, 0.04718017578125, 0.01059722900390625, 0.022613525390625, -0.01024627685546875, 0.044464111328125, 0.030426025390625, -0.0216217041015625, 0.017852783203125, -0.0098419189453125, -0.0070648193359375, -0.005279541015625, 0.0024204254150390625, -0.00832366943359375, -0.061187744140625, 0.0184783935546875, 0.03973388671875, 0.020965576171875, -0.032928466796875, -0.004627227783203125, -0.041900634765625, 0.0229339599609375, 0.0305328369140625, 0.061248779296875, -0.0677490234375, 0.0828857421875, -0.022064208984375, -0.0220794677734375, 0.042205810546875, 0.0279693603515625, -0.0186920166015625, -0.00794219970703125, -0.0010890960693359375, -0.0197601318359375, 0.0146942138671875, -0.0014400482177734375, -0.006496429443359375, -0.0117340087890625, -0.0156402587890625, -0.047393798828125, 0.0231475830078125, 0.0028095245361328125, -0.00478363037109375, -0.010467529296875, -0.0147857666015625, 0.024566650390625, 0.019744873046875, 0.0170745849609375, 0.0036602020263671875, -0.0284881591796875, -0.002719879150390625, 0.0158538818359375, 0.06842041015625, -0.004253387451171875, 0.0226593017578125, 0.0122528076171875, -0.0550537109375, -0.0589599609375, -0.027923583984375, 0.0161590576171875, -0.0060577392578125, -0.011993408203125, 0.021392822265625, -0.03680419921875, -0.00751495361328125, 0.038604736328125, -0.015106201171875, -0.0006799697875976562, 0.003467559814453125, 0.01380157470703125, 0.01554107666015625, 0.002105712890625, -0.0487060546875, 0.028594970703125, -0.0282745361328125, 0.04302978515625, 0.0014734268188476562, -0.016845703125, 0.01247406005859375, 0.0203399658203125, -0.0148162841796875, -0.0494384765625, -0.01520538330078125, -0.0256195068359375, -0.0379638671875, 0.006282806396484375, -0.125244140625, -0.10491943359375, 0.021697998046875, -0.063232421875, -0.0153961181640625, 0.018218994140625, 0.09320068359375, -0.0222625732421875, 0.02447509765625, 0.00017905235290527344, 0.0141754150390625, -0.0167694091796875, -0.01061248779296875, -0.00867462158203125, 0.054962158203125, 0.023468017578125, 0.003345489501953125, -0.0069122314453125, -0.0321044921875, 0.0706787109375, -0.008087158203125, -0.057647705078125, 0.053558349609375, 0.0282745361328125, 0.0843505859375, -0.0116424560546875, 0.0269317626953125, 0.04718017578125, 0.0155487060546875, 0.019439697265625, -0.0199432373046875, -0.0255889892578125, -0.043548583984375, 0.01242828369140625, -0.023834228515625, -0.036651611328125, 0.078369140625, 0.0083465576171875, 0.003582000732421875, -0.00799560546875, 0.001132965087890625, -0.053253173828125, 0.0010128021240234375, -0.0244598388671875, 0.0367431640625, -0.03973388671875, 0.035308837890625, 0.01873779296875, -0.016632080078125, -0.037994384765625, 0.053863525390625, 0.03424072265625, -0.026153564453125, -0.0249481201171875, 0.00481414794921875, -0.032440185546875, -0.00807952880859375, -0.03778076171875, -0.005748748779296875, -0.0195465087890625, 0.0303802490234375, 0.03436279296875, -0.027740478515625, -0.003376007080078125, -0.0230560302734375, 0.051361083984375, -0.01503753662109375, 0.0244293212890625, 0.0247650146484375, 0.07330322265625, 0.035980224609375, -0.016143798828125, -0.0119171142578125, 0.0078125, -0.0926513671875, 0.00395965576171875, 0.06365966796875, 0.048370361328125, -0.0276336669921875, 0.0005726814270019531, 0.009979248046875, 0.0246429443359375, -0.035736083984375, 0.0014715194702148438, -0.01177215576171875, -0.0230255126953125, 0.004123687744140625, -0.00847625732421875, -0.0003948211669921875, 0.0328369140625, -0.068115234375, -0.0198211669921875, 0.0382080078125, -0.05352783203125, -0.03411865234375, -0.05987548828125, 0.035308837890625, 0.00551605224609375, -0.07977294921875, -0.01251220703125, -0.042388916015625, -0.00556182861328125, 0.0154571533203125, 0.0281982421875, 0.031402587890625, -0.012908935546875, -0.01346588134765625, 0.017486572265625, 0.027587890625, 0.0008082389831542969, 0.0121917724609375, 0.04254150390625, -0.0034275054931640625, -0.0016126632690429688, 0.00496673583984375, 0.00044727325439453125, 0.003948211669921875, -0.0136260986328125, 0.03448486328125, -0.0073699951171875, -0.006198883056640625, -0.04534912109375, -0.041961669921875, 0.0207977294921875, 0.036407470703125, 0.037628173828125, 0.0251617431640625, 0.037017822265625, 0.042694091796875, 0.00858306884765625, 0.0253448486328125, 0.032684326171875, -0.01291656494140625, 0.0029296875, -0.043304443359375, 0.056243896484375, -0.062225341796875, -0.033538818359375, 0.048065185546875, -0.021697998046875, 0.00997161865234375, -0.00981903076171875, -0.0013446807861328125, -0.03839111328125, 0.037689208984375, -0.006389617919921875, -0.058837890625, 0.005916595458984375, 0.01276397705078125, 0.011077880859375, 0.0019855499267578125, 0.024810791015625, -0.0177001953125, -0.00591278076171875, 0.01256561279296875, -0.0560302734375, -0.07958984375, 0.051788330078125, -0.035736083984375, -0.00432586669921875, -0.0137481689453125, -0.032928466796875, -0.0231781005859375, -0.006343841552734375, -0.013092041015625, -0.0150604248046875, -0.022216796875, -0.0299224853515625, -0.04632568359375, -0.06640625, 0.00574493408203125, 0.0044403076171875, -0.004489898681640625, -0.0022487640380859375, 0.03997802734375, -0.004528045654296875, -0.062042236328125, -0.0426025390625, 0.00785064697265625, 0.00601959228515625, -0.0216064453125, -0.027252197265625, 0.0282745361328125, -0.0011806488037109375, -0.0171661376953125, 0.06500244140625, 0.056976318359375, -0.05487060546875, 0.03997802734375, 0.00013339519500732422, -0.01213836669921875, -0.002948760986328125, 0.022735595703125, 0.0171356201171875, -0.0033779144287109375, 0.01100921630859375, -0.04583740234375, -0.04107666015625, 0.01528167724609375, -0.0469970703125, 0.0268402099609375, 0.028289794921875, -0.00888824462890625, 0.00920867919921875, 0.0208282470703125, 0.018768310546875, -0.00920867919921875, 0.043121337890625, -0.033660888671875, 0.031829833984375, -0.002094268798828125, 0.007610321044921875, -0.0472412109375, 0.08355712890625, 0.021514892578125, -0.033935546875, 0.036651611328125, -0.00689697265625, -0.01806640625, -0.0197906494140625, -0.0419921875, -0.020751953125, 0.041961669921875, 0.01436614990234375, 0.0161285400390625, -0.011871337890625, -0.033905029296875, 0.003215789794921875, 0.057708740234375, 0.0128631591796875, -0.0290069580078125, -0.0268707275390625, 0.017608642578125, -0.0016326904296875, -0.0214080810546875, 0.0219879150390625, -0.006649017333984375, 0.052337646484375, -0.006999969482421875, 0.00814056396484375, -0.004669189453125, -0.01531982421875, -0.0232391357421875, 0.01351165771484375, 0.011077880859375, 0.0109710693359375, -0.0560302734375, 0.00792694091796875, -0.00818634033203125, 0.0283203125, -0.06781005859375, 0.01385498046875, -0.0330810546875, -0.07537841796875, -0.0162200927734375, 0.00008803606033325195, 0.0579833984375, -0.004180908203125, 0.00661468505859375, -0.0211334228515625, 0.045989990234375, 0.0212860107421875, -0.0230865478515625, 0.0284881591796875, -0.0144805908203125, -0.0018072128295898438, 0.026580810546875, 0.01308441162109375, -0.01302337646484375, -0.035980224609375, -0.031280517578125, -0.028717041015625, 0.0005507469177246094, -0.006847381591796875, -0.018218994140625, 0.0175018310546875, -0.00862884521484375, -0.07855224609375, -0.063720703125, -0.0276641845703125, 0.0194549560546875, -0.036376953125, 0.01593017578125, -0.08441162109375, -0.0921630859375, 0.04461669921875, 0.0009398460388183594, -0.0121307373046875, -0.006153106689453125, 0.053955078125, 0.00872802734375, -0.0162353515625, -0.06549072265625, -0.01114654541015625, 0.021759033203125, -0.0026493072509765625, 0.038360595703125, -0.020751953125, -0.0278778076171875, 0.11163330078125, -0.0164947509765625, 0.01157379150390625, 0.04620361328125, -0.0116424560546875, 0.0151214599609375, -0.015899658203125, -0.0178680419921875, 0.0212249755859375, -0.0296783447265625, 0.0131378173828125, -0.01023101806640625, 0.004772186279296875, 0.040252685546875, 0.0015392303466796875, -0.0704345703125, 0.055694580078125, 0.033233642578125, -0.037933349609375, 0.0301666259765625, -0.0625, -0.019744873046875, -0.0382080078125, 0.011444091796875, -0.03643798828125, -0.031890869140625, 0.0137481689453125, -0.0053558349609375, 0.03790283203125, -0.0221710205078125, 0.042877197265625, -0.0208740234375, -0.007610321044921875, -0.024169921875, -0.0060882568359375, 0.07696533203125, 0.011505126953125, -0.04119873046875, -0.017822265625, -0.004024505615234375, 0.05078125, -0.01018524169921875, 0.0254364013671875, 0.049407958984375, -0.0098724365234375, -0.026275634765625, -0.009765625, -0.0240936279296875, -0.0111846923828125, -0.060699462890625, 0.0078277587890625, -0.0111083984375, -0.0097503662109375, -0.028076171875, 0.04510498046875, 0.000042378902435302734, -0.01050567626953125, -0.0216064453125, 0.05499267578125, 0.0589599609375, 0.0240325927734375, 0.02520751953125, -0.010162353515625, -0.023956298828125, -0.0014896392822265625, -0.033294677734375, -0.0252532958984375, -0.042724609375, 0.0204620361328125, 0.041107177734375, -0.0111846923828125, 0.023651123046875, 0.0004112720489501953, 0.0237579345703125, -0.032867431640625, 0.016326904296875, 0.00930023193359375, -0.025909423828125, -0.02099609375, -0.01239776611328125, 0.0018606185913085938, 0.019989013671875, 0.007762908935546875, -0.02093505859375, 0.007038116455078125, 0.016937255859375, -0.00695037841796875, 0.0211639404296875, 0.0027103424072265625, -0.01145172119140625, -0.0192108154296875, -0.0286102294921875, -0.0231781005859375, -0.0012845993041992188, -0.01158905029296875, -0.00586700439453125, -0.025360107421875, 0.005268096923828125, -0.03717041015625, 0.0015039443969726562, -0.044281005859375, 0.033294677734375, -0.03173828125, 0.0296173095703125, 0.015655517578125, 0.0011053085327148438, 0.02374267578125, -0.0167694091796875, -0.0154266357421875, -0.0260009765625, 0.0694580078125, 0.026611328125, 0.01081085205078125, -0.0306549072265625, -0.02294921875, 0.01444244384765625, 0.004596710205078125, 0.0206298828125, -0.0292205810546875, 0.0313720703125, -0.0128326416015625, 0.024383544921875, -0.0241851806640625, 0.04241943359375, 0.019989013671875, 0.030303955078125, 0.01605224609375, -0.00904083251953125, -0.0154571533203125, -0.0030059814453125, 0.01004791259765625, -0.026885986328125, 0.001308441162109375, -0.0400390625, -0.0017910003662109375, 0.007167816162109375, 0.042724609375, -0.00010287761688232422, 0.005340576171875, -0.038787841796875, -0.007114410400390625, -0.013580322265625, 0.0823974609375, -0.033233642578125, 0.004505157470703125, 0.0025081634521484375, -0.0063018798828125, -0.016876220703125, -0.031890869140625, 0.01100921630859375, 0.010894775390625, -0.00441741943359375, -0.0018129348754882812, -0.013336181640625, -0.0240325927734375, 0.030181884765625, 0.08697509765625, -0.007808685302734375, 0.03704833984375, 0.00725555419921875, 0.0002760887145996094, 0.0570068359375, 0.019195556640625, -0.003162384033203125, -0.0189056396484375, -0.01331329345703125, -0.002712249755859375, 0.0219573974609375, 0.004940032958984375, 0.00298309326171875, 0.006076812744140625, 0.0006690025329589844, 0.037261962890625, -0.0170440673828125, 0.01132965087890625, 0.0015058517456054688, 0.0106964111328125, 0.06060791015625, -0.0169677734375, -0.004940032958984375, -0.01546478271484375, 0.0202178955078125, 0.0173797607421875, -0.0369873046875, 0.01125335693359375, 0.023895263671875, 0.0093841552734375, -0.0278472900390625, 0.039825439453125, 0.0150909423828125, -0.0136871337890625, 0.02734375, 0.000583648681640625, 0.0309600830078125, 0.0033473968505859375, 0.0396728515625, -0.0078582763671875, -0.01192474365234375, -0.03289794921875, 0.01088714599609375, -0.0204315185546875, -0.0411376953125, 0.001384735107421875, 0.00009465217590332031, 0.031982421875, 0.0307159423828125, -0.0116424560546875, -0.0035266876220703125, 0.0229949951171875, -0.00885772705078125, 0.007396697998046875, -0.0369873046875, -0.0225372314453125, 0.007152557373046875, 0.0005822181701660156, 0.01641845703125, 0.01531982421875, -0.0309295654296875, 0.017364501953125, 0.0062713623046875, 0.057220458984375, -0.0282135009765625, -0.024200439453125, 0.020294189453125, -0.048248291015625, 0.0120086669921875, -0.025634765625, 0.0323486328125, -0.0926513671875, -0.060577392578125, 0.00904083251953125, -0.031463623046875, -0.0206756591796875, -0.02838134765625, -0.0555419921875, 0.14111328125, 0.0284881591796875, 0.01016998291015625, -0.010498046875, 0.064453125, -0.03399658203125, 0.043548583984375, -0.03338623046875, 0.0202178955078125, -0.003917694091796875, -0.0194091796875, -0.043975830078125, -0.0017595291137695312, -0.043426513671875, 0.006366729736328125, 0.033905029296875, -0.0025482177734375, -0.01561737060546875, -0.01275634765625, 0.0034999847412109375, -0.00516510009765625, -0.041015625, 0.0328369140625, 0.034393310546875, 0.0257415771484375, 0.07049560546875, -0.0206146240234375, 0.0394287109375, -0.031341552734375, 0.0283355712890625, 0.043670654296875, 0.0159912109375, 0.0277862548828125, 0.0192413330078125, -0.012786865234375, 0.0157012939453125, 0.00299835205078125, 0.006694793701171875, -0.034454345703125, 0.00823211669921875, 0.052886962890625, 0.048553466796875, -0.03173828125, 0.0038890838623046875, -0.04541015625, 0.059295654296875, -0.0032405853271484375, 0.041229248046875, 0.06414794921875, 0.032806396484375, 0.050750732421875, 0.0180511474609375, 0.032562255859375, 0.017852783203125, -0.0166015625, 0.027191162109375, 0.01136016845703125, 0.031494140625, -0.01727294921875, -0.0201263427734375, 0.00258636474609375, 0.0308837890625, -0.01383209228515625, 0.0072784423828125, 0.0213775634765625, 0.03729248046875, 0.01451873779296875, -0.00969696044921875, 0.0616455078125, 0.0146636962890625, 0.027679443359375, -0.05902099609375, 0.0272064208984375, 0.040771484375, 0.0306396484375, -0.005794525146484375, 0.0088348388671875, -0.0654296875, -0.01241302490234375, -0.02081298828125, -0.01549530029296875, 0.01275634765625, 0.0555419921875, 0.02960205078125, 0.0254364013671875, -0.04010009765625, -0.0182037353515625, 0.01715087890625, 0.007724761962890625, 0.029754638671875, -0.01019287109375, 0.023681640625, 0.00384521484375, 0.0158233642578125, 0.00067901611328125, -0.0030765533447265625, -0.01526641845703125, 0.0372314453125, 0.0199432373046875, -0.07666015625, -0.025299072265625, 0.037322998046875, -0.031341552734375, -0.050811767578125, -0.034423828125, -0.016265869140625, 0.0170745849609375, -0.0004165172576904297, 0.035430908203125, 0.0203704833984375, -0.00064849853515625, 0.030853271484375, 0.0184783935546875, 0.01739501953125, 0.003635406494140625, -0.0262451171875, 0.001506805419921875, -0.004695892333984375, 0.051513671875, -0.017578125, 0.0172576904296875, -0.017059326171875, -0.03143310546875, -0.02447509765625, 0.00710296630859375, -0.02203369140625, 0.0560302734375, -0.0246734619140625, -0.03533935546875, 0.02862548828125, 0.01076507568359375, -0.0111236572265625, 0.0197906494140625, 0.02178955078125, -0.01396942138671875, -0.05950927734375, -0.032196044921875, -0.0194854736328125, 0.0264892578125, -0.0247039794921875, 0.07794189453125, -0.0177764892578125, -0.007083892822265625, -0.04461669921875, 0.0106048583984375, -0.034698486328125, -0.0277252197265625, 0.0026607513427734375, 0.024169921875, 0.0125732421875, 0.006664276123046875, -0.01354217529296875, 0.033050537109375, 0.00737762451171875, 0.00251007080078125, 0.0489501953125, -0.056610107421875, 0.0089874267578125, 0.0040435791015625, 0.006748199462890625, -0.023284912109375, -0.0472412109375, -0.0208892822265625, 0.0211029052734375, 0.0027256011962890625, 0.042694091796875, 0.00339508056640625, 0.0054779052734375, -0.027069091796875, -0.0267791748046875, 0.025299072265625, -0.00859832763671875, 0.0201873779296875, 0.020416259765625, -0.03466796875, 0.00820159912109375, -0.041961669921875, -0.0298004150390625, 0.0079193115234375, -0.0184478759765625, 0.0009784698486328125, -0.020660400390625, 0.0419921875, 0.022796630859375, 0.02655029296875, 0.0265960693359375, -0.02764892578125, -0.0063323974609375, 0.02606201171875, -0.0120391845703125, 0.0012121200561523438, -0.02410888671875, -0.0214691162109375, -0.07220458984375, 0.0176544189453125, 0.0282745361328125, -0.002513885498046875, 0.044281005859375, 0.023162841796875, 0.0013856887817382812, -0.0190582275390625, -0.0201263427734375, 0.0113525390625, -0.0047607421875, -0.0274505615234375, 0.01430511474609375, -0.042022705078125, 0.0269317626953125, 0.009979248046875, 0.019775390625, -0.05206298828125, -0.01165771484375, -0.0008311271667480469, 0.00885772705078125, 0.0153961181640625, 0.00319671630859375, 0.01068115234375, -0.0157470703125, -0.036407470703125, -0.0023651123046875, 0.0069580078125, 0.041595458984375, 0.00930023193359375, -0.005462646484375, 0.035491943359375, 0.019439697265625, -0.049896240234375, -0.093505859375, -0.005512237548828125, -0.0290985107421875, 0.04534912109375, -0.037078857421875, 0.0287322998046875, 0.04022216796875, -0.02117919921875, -0.041534423828125, 0.060455322265625, -0.0220947265625, -0.016693115234375, -0.03985595703125, -0.04150390625, -0.0098876953125, 0.043914794921875, -0.0186004638671875, -0.0005736351013183594, -0.040557861328125, 0.034454345703125, 0.0127716064453125, 0.0221710205078125, 0.0169830322265625, -0.005718231201171875, -0.02191162109375, 0.034698486328125, 0.0200653076171875, 0.00782012939453125, 0.0244293212890625, -0.03204345703125, 0.057861328125, 0.0206146240234375, -0.027008056640625, 0.01163482666015625, 0.0009145736694335938, 0.00878143310546875, -0.0357666015625, -0.05535888671875, -0.0223388671875, -0.0014905929565429688, 0.09613037109375, 0.0667724609375, 0.0163421630859375, -0.051849365234375, 0.0020008087158203125, 0.0021839141845703125, 0.0160675048828125, 0.0009016990661621094, -0.0157623291015625, -0.0233154296875, -0.01271820068359375, -0.017486572265625, 0.04730224609375, 0.0017004013061523438, -0.016571044921875, 0.034820556640625, -0.0523681640625, 0.0301513671875, -0.010650634765625, 0.0213775634765625, -0.040008544921875, 0.0193023681640625, -0.0275115966796875, -0.0092620849609375, -0.02508544921875, 0.0440673828125, -0.01824951171875, -0.04486083984375, -0.043670654296875, 0.004329681396484375, -0.020355224609375, 0.037841796875, -0.0198822021484375, 0.016937255859375, -0.034759521484375, 0.019561767578125, -0.00176239013671875, 0.023590087890625, 0.0014019012451171875, 0.0347900390625, 0.01953125, 0.00450897216796875, -0.01128387451171875, 0.0213470458984375, -0.0174407958984375, -0.01334381103515625, -0.0207061767578125, 0.0015964508056640625, -0.01141357421875, 0.007091522216796875, 0.026611328125, -0.0175018310546875, -0.00661468505859375, 0.00568389892578125, -0.017364501953125, -0.054718017578125, 0.0228424072265625, 0.0582275390625, 0.00386810302734375, 0.01708984375 ]
0549f5876f95e8e21098619e034f57d5bde1d2da
Wordpress Stackexchange Q: Where is the "default attribute" values located in the phpMyAdmin in Woocommerce? I'm looking to mass remove or clear the default attribute for variable products in Woocommerce. Is there an easy way to mass clear this value? If not, would you be able to direct me on where I can find this value in phpMyAdmin? A: Default attributes of WooCommerce variable products are stored as post meta in the database. You can find them in the wp_postmeta table, where the post_id column is the post ID of the parent product (Variable product), and the meta_key column is _default_attributes. You can clear and remove default attributes of all products by replacing all non-empty arrays. To do so, open phpMyAdmin and select the database of your WordPress installation from the left panel and click on SQL tab. Then write the below SQL commands and press Go: Don't forget to backing up your database before executing any command on phpMyAdmin UPDATE `wp_postmeta` SET `meta_value`= 'a:0:{}' WHERE meta_key = '_default_attributes'
Q: Where is the "default attribute" values located in the phpMyAdmin in Woocommerce? I'm looking to mass remove or clear the default attribute for variable products in Woocommerce. Is there an easy way to mass clear this value? If not, would you be able to direct me on where I can find this value in phpMyAdmin? A: Default attributes of WooCommerce variable products are stored as post meta in the database. You can find them in the wp_postmeta table, where the post_id column is the post ID of the parent product (Variable product), and the meta_key column is _default_attributes. You can clear and remove default attributes of all products by replacing all non-empty arrays. To do so, open phpMyAdmin and select the database of your WordPress installation from the left panel and click on SQL tab. Then write the below SQL commands and press Go: Don't forget to backing up your database before executing any command on phpMyAdmin UPDATE `wp_postmeta` SET `meta_value`= 'a:0:{}' WHERE meta_key = '_default_attributes' A: you can modify the default attribute with the following code. this code retrieve the complet list of products then it can use a big amount of ressources $products = wc_get_products([ "nopaging" => TRUE, // retrieve all products ]); foreach ($products as $p) { $default_attributes = $p->get_default_attributes(); if ( (!empty($default_attributes)) && FALSE // other condition to select of which product the default attributes is reset ) { $p->set_default_attributes(""); } }
wordpress
{ "language": "en", "length": 237, "provenance": "stackexchange_00019.jsonl.gz:485083", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/299346" }
[ -0.0160369873046875, -0.035736083984375, -0.022552490234375, -0.01125335693359375, -0.03289794921875, -0.01074981689453125, 0.0270843505859375, 0.0136260986328125, 0.0362548828125, 0.031280517578125, -0.01568603515625, -0.05328369140625, 0.005512237548828125, -0.01788330078125, -0.0499267578125, -0.033721923828125, 0.0118408203125, 0.0300445556640625, 0.037933349609375, -0.0020847320556640625, -0.012420654296875, 0.00542449951171875, 0.0249786376953125, 0.05023193359375, 0.0191192626953125, -0.01214599609375, 0.062744140625, -0.04718017578125, 0.02105712890625, -0.027435302734375, 0.02215576171875, 0.0229644775390625, 0.029693603515625, -0.03857421875, 0.039031982421875, 0.01427459716796875, 0.024749755859375, -0.0215911865234375, 0.024017333984375, -0.0172576904296875, 0.0304412841796875, -0.02239990234375, 0.002658843994140625, -0.0049896240234375, -0.007488250732421875, -0.0242919921875, 0.033477783203125, -0.02728271484375, 0.0281219482421875, -0.02685546875, -0.005130767822265625, 0.051025390625, 0.01010894775390625, -0.034332275390625, -0.0220489501953125, -0.035919189453125, -0.027923583984375, -0.050933837890625, 0.016265869140625, 0.06927490234375, 0.0179443359375, -0.01800537109375, -0.00019884109497070312, -0.06109619140625, 0.0275726318359375, 0.017822265625, 0.01490020751953125, 0.038665771484375, -0.025543212890625, 0.0288848876953125, 0.01378631591796875, -0.02691650390625, 0.00946807861328125, 0.00698089599609375, -0.00246429443359375, -0.025146484375, -0.0014629364013671875, -0.0059051513671875, 0.025848388671875, 0.033172607421875, 0.0190887451171875, -0.037689208984375, -0.0117645263671875, -0.00791168212890625, 0.01128387451171875, 0.01470184326171875, 0.0006341934204101562, -0.013153076171875, -0.003704071044921875, -0.03656005859375, -0.0103302001953125, -0.0278778076171875, -0.0445556640625, 0.03167724609375, -0.0277252197265625, -0.01067352294921875, 0.034759521484375, 0.03350830078125, -0.0011844635009765625, 0.0078582763671875, 0.005168914794921875, -0.05078125, 0.015289306640625, -0.01244354248046875, -0.00878143310546875, 0.005462646484375, 0.0081634521484375, -0.00589752197265625, -0.00951385498046875, 0.045684814453125, -0.0092926025390625, -0.04925537109375, -0.0097808837890625, -0.024169921875, -0.035400390625, 0.01435089111328125, -0.0258026123046875, 0.00913238525390625, 0.00701904296875, 0.002307891845703125, -0.00716400146484375, 0.01320648193359375, 0.00247955322265625, -0.0235443115234375, 0.022186279296875, -0.005401611328125, -0.032073974609375, 0.00010985136032104492, -0.035552978515625, 0.033355712890625, -0.048492431640625, -0.0052337646484375, 0.052947998046875, 0.043701171875, -0.0014438629150390625, -0.0226593017578125, 0.0133514404296875, 0.00510406494140625, 0.0167694091796875, 0.01461029052734375, 0.003101348876953125, -0.0226593017578125, 0.00982666015625, 0.003490447998046875, 0.001750946044921875, 0.01036834716796875, 0.0175323486328125, 0.01079559326171875, -0.02410888671875, -0.0145111083984375, 0.0026187896728515625, -0.01009368896484375, 0.0237884521484375, 0.0296478271484375, 0.041259765625, 0.03302001953125, 0.09576416015625, -0.0202484130859375, -0.0650634765625, -0.043701171875, -0.0166778564453125, -0.032928466796875, -0.0142059326171875, -0.04534912109375, -0.054290771484375, 0.059478759765625, -0.01021575927734375, -0.01230621337890625, 0.022247314453125, -0.003940582275390625, -0.00574493408203125, -0.0024318695068359375, 0.040252685546875, -0.007152557373046875, 0.00039839744567871094, 0.01506805419921875, -0.0205078125, 0.00970458984375, 0.041412353515625, -0.0305328369140625, -0.03204345703125, -0.0325927734375, 0.049896240234375, -0.00595855712890625, -0.037567138671875, -0.0189666748046875, 0.0069732666015625, 0.024139404296875, 0.020721435546875, 0.021331787109375, 0.03863525390625, -0.0174713134765625, -0.06890869140625, -0.0028743743896484375, 0.033294677734375, 0.01422882080078125, -0.0026645660400390625, -0.011688232421875, 0.01666259765625, -0.0138092041015625, 0.0027141571044921875, 0.00955963134765625, 0.0294952392578125, -0.0010242462158203125, -0.00858306884765625, 0.0126495361328125, -0.006153106689453125, 0.038055419921875, -0.06585693359375, 0.0179595947265625, 0.0367431640625, -0.029693603515625, -0.0193939208984375, -0.00860595703125, 0.0171661376953125, -0.0390625, -0.02874755859375, 0.0888671875, 0.01497650146484375, 0.047515869140625, 0.01456451416015625, -0.07867431640625, 0.018310546875, -0.0272979736328125, 0.0273895263671875, 0.033203125, -0.0261993408203125, 0.0023937225341796875, 0.07415771484375, -0.0014524459838867188, 0.0423583984375, 0.00016987323760986328, -0.0024890899658203125, -0.0318603515625, -0.049407958984375, -0.00850677490234375, -0.0105743408203125, -0.07757568359375, -0.0014057159423828125, 0.06414794921875, 0.00667572021484375, 0.035308837890625, -0.03717041015625, 0.0117950439453125, 0.044464111328125, -0.01763916015625, -0.0116424560546875, 0.0196990966796875, 0.0085906982421875, 0.0145416259765625, -0.045654296875, -0.0132293701171875, 0.0223388671875, -0.036712646484375, 0.00617218017578125, 0.0173187255859375, -0.03375244140625, -0.031463623046875, -0.005306243896484375, 0.0189361572265625, -0.02099609375, -0.05389404296875, 0.01320648193359375, -0.02801513671875, 0.052978515625, 0.0182342529296875, 0.02606201171875, 0.0149383544921875, -0.04205322265625, 0.03570556640625, 0.0229339599609375, -0.04132080078125, -0.034271240234375, -0.018585205078125, 0.0236663818359375, -0.055694580078125, -0.049407958984375, 0.0404052734375, -0.01727294921875, -0.04229736328125, -0.002857208251953125, 0.039581298828125, -0.00836944580078125, -0.011932373046875, -0.0276336669921875, -0.04779052734375, 0.01155853271484375, 0.0279083251953125, -0.0012111663818359375, -0.0347900390625, -0.00836181640625, 0.040771484375, -0.0249176025390625, 0.049896240234375, 0.010101318359375, -0.0230865478515625, 0.019775390625, -0.02825927734375, 0.0389404296875, -0.031280517578125, 0.037078857421875, 0.052154541015625, -0.010894775390625, 0.014068603515625, 0.0109100341796875, 0.0178985595703125, 0.01296234130859375, 0.007511138916015625, -0.0186920166015625, -0.0016508102416992188, -0.0582275390625, -0.0137939453125, 0.00439453125, 0.00408172607421875, -0.025299072265625, -0.030853271484375, -0.03363037109375, -0.006694793701171875, -0.0689697265625, -0.03955078125, 0.037353515625, -0.0006260871887207031, -0.0233306884765625, -0.0283203125, -0.002567291259765625, -0.003936767578125, -0.0228424072265625, -0.0243682861328125, -0.021270751953125, -0.0208282470703125, -0.044097900390625, -0.04827880859375, -0.05035400390625, -0.0230712890625, -0.00827789306640625, -0.0005583763122558594, -0.0102081298828125, 0.0377197265625, -0.029144287109375, -0.037353515625, -0.020050048828125, -0.052886962890625, -0.01629638671875, -0.01103973388671875, 0.0200653076171875, -0.0304412841796875, -0.0024089813232421875, 0.0010271072387695312, 0.0081024169921875, 0.031646728515625, -0.0222930908203125, -0.00821685791015625, 0.013275146484375, -0.005115509033203125, 0.022979736328125, -0.0033588409423828125, -0.0218963623046875, 0.004222869873046875, 0.0217437744140625, -0.0357666015625, -0.05126953125, 0.006977081298828125, -0.03912353515625, 0.058746337890625, 0.000039696693420410156, -0.005481719970703125, 0.017791748046875, 0.042572021484375, 0.0098724365234375, -0.000766754150390625, 0.040130615234375, -0.034271240234375, -0.037017822265625, -0.011810302734375, -0.0325927734375, -0.025970458984375, 0.06866455078125, -0.0175018310546875, 0.0020542144775390625, 0.04461669921875, 0.00801849365234375, 0.04754638671875, -0.06866455078125, 0.00920867919921875, -0.0181732177734375, 0.02978515625, 0.014251708984375, 0.049407958984375, -0.0198974609375, -0.0226593017578125, -0.00809478759765625, 0.068603515625, -0.01491546630859375, -0.023468017578125, 0.0172882080078125, 0.0173797607421875, -0.015838623046875, -0.0192108154296875, -0.0164642333984375, -0.0233154296875, -0.0782470703125, 0.0374755859375, 0.0265655517578125, -0.006011962890625, -0.028594970703125, 0.057373046875, -0.07208251953125, -0.0290069580078125, 0.0287017822265625, -0.03363037109375, 0.01190185546875, 0.035736083984375, 0.003910064697265625, 0.015899658203125, 0.00865936279296875, -0.04864501953125, -0.055755615234375, -0.026336669921875, -0.00647735595703125, 0.0799560546875, 0.0031108856201171875, 0.01296234130859375, -0.04351806640625, 0.0232391357421875, -0.05499267578125, -0.00522613525390625, -0.01751708984375, 0.05609130859375, -0.034027099609375, -0.0239410400390625, -0.0333251953125, -0.033477783203125, 0.0019407272338867188, -0.047027587890625, -0.037506103515625, -0.0244598388671875, -0.005413055419921875, 0.051727294921875, 0.02197265625, -0.007167816162109375, -0.05908203125, -0.0303955078125, -0.00438690185546875, 0.0091094970703125, -0.01108551025390625, 0.013824462890625, -0.031341552734375, -0.050079345703125, 0.06610107421875, -0.0153045654296875, -0.01134490966796875, 0.0011281967163085938, 0.052276611328125, 0.00673675537109375, -0.0228118896484375, 0.0125579833984375, -0.0214080810546875, 0.014190673828125, 0.01157379150390625, 0.0141143798828125, -0.008819580078125, 0.009307861328125, -0.007781982421875, -0.0172882080078125, 0.0274810791015625, -0.025360107421875, 0.028594970703125, 0.0006976127624511719, 0.00041556358337402344, 0.0111541748046875, -0.0034046173095703125, 0.00604248046875, 0.004772186279296875, -0.006183624267578125, -0.017547607421875, 0.01544189453125, 0.03131103515625, 0.004547119140625, -0.01552581787109375, -0.037139892578125, -0.01019287109375, 0.01018524169921875, -0.011627197265625, -0.0009174346923828125, 0.0132598876953125, 0.005535125732421875, -0.00994110107421875, -0.015899658203125, 0.0163421630859375, -0.044708251953125, -0.0208740234375, -0.01236724853515625, 0.0125274658203125, -0.0002282857894897461, 0.019744873046875, -0.0285797119140625, 0.00400543212890625, -0.007457733154296875, -0.04180908203125, -0.051483154296875, -0.018157958984375, -0.0001850128173828125, 0.0128326416015625, 0.06329345703125, 0.0003681182861328125, 0.06658935546875, 0.044586181640625, -0.0274505615234375, -0.005462646484375, -0.0728759765625, 0.03570556640625, -0.07275390625, 0.0005049705505371094, -0.0243682861328125, 0.0170745849609375, -0.0246429443359375, 0.10699462890625, 0.01100921630859375, 0.0433349609375, -0.0311737060546875, 0.0198974609375, -0.0295867919921875, 0.075439453125, 0.0022144317626953125, -0.0258941650390625, 0.005786895751953125, 0.056671142578125, -0.0185394287109375, -0.0462646484375, -0.017974853515625, 0.00994110107421875, 0.058868408203125, -0.04541015625, -0.0406494140625, 0.043914794921875, -0.03485107421875, 0.0290374755859375, -0.007442474365234375, -0.0738525390625, -0.060028076171875, 0.00904083251953125, 0.02508544921875, 0.022369384765625, -0.06964111328125, -0.0161285400390625, -0.00875091552734375, -0.057861328125, -0.0110931396484375, -0.015106201171875, -0.023162841796875, -0.017486572265625, -0.024261474609375, 0.023223876953125, -0.01204681396484375, -0.0101470947265625, -0.0609130859375, -0.01177978515625, -0.0151214599609375, 0.00847625732421875, 0.03948974609375, -0.0217742919921875, 0.0299224853515625, 0.005992889404296875, -0.04156494140625, -0.0316162109375, 0.0207977294921875, 0.03460693359375, 0.03253173828125, -0.005863189697265625, -0.0275726318359375, -0.023193359375, -0.045501708984375, 0.011962890625, 0.02166748046875, -0.03509521484375, -0.0018644332885742188, -0.007781982421875, 0.042144775390625, -0.0190887451171875, -0.02142333984375, -0.00013697147369384766, 0.008941650390625, -0.014312744140625, 0.07305908203125, -0.01302337646484375, 0.01222991943359375, 0.01204681396484375, 0.005367279052734375, 0.00536346435546875, 0.00592803955078125, 0.004558563232421875, -0.0199127197265625, 0.043914794921875, -0.00046706199645996094, -0.035980224609375, -0.043701171875, -0.06573486328125, -0.025177001953125, 0.069091796875, -0.0286865234375, 0.0182342529296875, -0.00955963134765625, -0.003559112548828125, -0.01100921630859375, 0.01316070556640625, 0.0026702880859375, 0.04095458984375, -0.00995635986328125, -0.02642822265625, -0.004093170166015625, 0.00806427001953125, -0.018157958984375, 0.0295867919921875, -0.01554107666015625, 0.0123138427734375, 0.03094482421875, -0.060760498046875, 0.0704345703125, 0.056732177734375, -0.017303466796875, 0.0269927978515625, -0.004779815673828125, -0.022186279296875, 0.0137176513671875, 0.0299835205078125, -0.01082611083984375, -0.03045654296875, 0.053314208984375, 0.009552001953125, -0.035736083984375, 0.03948974609375, -0.037353515625, 0.005092620849609375, 0.03192138671875, 0.05706787109375, -0.07122802734375, 0.028564453125, 0.0413818359375, 0.0087890625, 0.003570556640625, -0.0019702911376953125, -0.00147247314453125, -0.027862548828125, -0.05413818359375, 0.004978179931640625, -0.03912353515625, -0.039093017578125, 0.0133056640625, 0.00994110107421875, -0.00255584716796875, 0.0031299591064453125, -0.01247406005859375, -0.025360107421875, -0.04705810546875, 0.03570556640625, -0.055694580078125, -0.028045654296875, -0.0029926300048828125, 0.0022869110107421875, -0.039154052734375, -0.10382080078125, -0.0220489501953125, -0.0031261444091796875, -0.009796142578125, 0.030059814453125, -0.0094451904296875, 0.03668212890625, 0.0200347900390625, -0.001605987548828125, 0.0046234130859375, -0.029052734375, 0.01082611083984375, -0.050140380859375, -0.036956787109375, 0.013519287109375, -0.0025844573974609375, -0.06787109375, 0.032135009765625, -0.04522705078125, -0.03289794921875, 0.0148162841796875, 0.0179901123046875, 0.00640106201171875, -0.036285400390625, -0.00362396240234375, 0.0517578125, 0.0250701904296875, -0.0072021484375, -0.0189056396484375, 0.042205810546875, -0.01010894775390625, 0.025421142578125, -0.00693511962890625, 0.02117919921875, -0.0286865234375, -0.02288818359375, -0.08349609375, 0.04376220703125, 0.013580322265625, 0.022705078125, -0.0216064453125, 0.0016298294067382812, 0.004108428955078125, -0.016876220703125, -0.00557708740234375, 0.0182342529296875, 0.0278472900390625, 0.04010009765625, 0.00353240966796875, -0.02685546875, 0.033355712890625, 0.049530029296875, 0.05560302734375, 0.0019378662109375, 0.03204345703125, 0.02679443359375, 0.10198974609375, 0.005657196044921875, -0.03131103515625, -0.0021572113037109375, 0.01092529296875, 0.0178680419921875, 0.07666015625, -0.053741455078125, 0.016265869140625, 0.0013904571533203125, 0.049530029296875, 0.0183868408203125, 0.01239776611328125, 0.0251617431640625, -0.03692626953125, 0.05987548828125, 0.0146484375, -0.040008544921875, 0.01236724853515625, -0.0523681640625, 0.002246856689453125, 0.018646240234375, 0.00910186767578125, 0.006404876708984375, -0.0200653076171875, -0.0013790130615234375, 0.0299530029296875, 0.0113525390625, 0.0203857421875, 0.06243896484375, 0.012603759765625, 0.032318115234375, -0.01229095458984375, 0.0178985595703125, -0.0206756591796875, -0.0121612548828125, 0.0177001953125, -0.00473785400390625, 0.005001068115234375, -0.0080413818359375, 0.09423828125, 0.010986328125, 0.003932952880859375, -0.0506591796875, -0.0082244873046875, 0.01102447509765625, -0.005855560302734375, -0.00925445556640625, -0.04473876953125, -0.01033782958984375, -0.061981201171875, -0.024505615234375, -0.03900146484375, 0.022125244140625, 0.034912109375, 0.017913818359375, -0.005733489990234375, 0.0301055908203125, -0.06378173828125, -0.0142669677734375, -0.0195159912109375, -0.0237579345703125, 0.0062713623046875, 0.0682373046875, 0.0221405029296875, 0.053375244140625, -0.042266845703125, -0.040069580078125, -0.033294677734375, 0.00910186767578125, -0.0200653076171875, 0.0305938720703125, -0.05059814453125, -0.008331298828125, -0.01470947265625, 0.04473876953125, 0.0073394775390625, 0.05853271484375, 0.06597900390625, 0.00038886070251464844, -0.06298828125, -0.0023288726806640625, -0.015960693359375, -0.058624267578125, -0.015838623046875, -0.020111083984375, 0.0213165283203125, -0.002338409423828125, 0.00868988037109375, -0.0258026123046875, 0.0826416015625, -0.0237274169921875, -0.018829345703125, 0.0095367431640625, -0.0002994537353515625, -0.033203125, 0.0313720703125, -0.006534576416015625, 0.050933837890625, -0.0008869171142578125, -0.0304107666015625, -0.0075836181640625, 0.0004398822784423828, 0.0247955322265625, -0.043304443359375, 0.0048370361328125, -0.0253143310546875, 0.0635986328125, -0.01163482666015625, -0.013031005859375, 0.01410675048828125, 0.007686614990234375, -0.006587982177734375, 0.0150909423828125, 0.01934814453125, -0.01088714599609375, 0.00865936279296875, 0.021759033203125, 0.0227508544921875, -0.0127105712890625, -0.005413055419921875, 0.026275634765625, 0.004459381103515625, 0.005374908447265625, -0.025360107421875, 0.02716064453125, -0.0301666259765625, -0.015106201171875, 0.0088043212890625, 0.0103759765625, 0.0079345703125, 0.006969451904296875, 0.021728515625, 0.0125732421875, 0.03948974609375, -0.0299072265625, 0.00571441650390625, -0.03173828125, 0.0279541015625, -0.021392822265625, 0.064208984375, -0.0082855224609375, -0.0819091796875, -0.06005859375, 0.041534423828125, 0.0156097412109375, 0.052764892578125, -0.021759033203125, -0.024169921875, -0.0030345916748046875, -0.020263671875, 0.007076263427734375, 0.020172119140625, 0.0209197998046875, 0.0413818359375, -0.0181732177734375, 0.0068817138671875, 0.0021038055419921875, -0.0193939208984375, 0.00617218017578125, 0.00872039794921875, 0.006336212158203125, 0.022003173828125, -0.056671142578125, 0.0242462158203125, 0.0310516357421875, 0.040496826171875, -0.01678466796875, 0.0162200927734375, 0.020843505859375, -0.00826263427734375, 0.0264892578125, 0.003040313720703125, -0.01885986328125, -0.0272369384765625, -0.007232666015625, -0.0006771087646484375, -0.006801605224609375, -0.03717041015625, -0.02191162109375, 0.0247039794921875, 0.0159912109375, 0.017303466796875, -0.04248046875, 0.028289794921875, 0.0005292892456054688, 0.0242462158203125, 0.0160675048828125, -0.042755126953125, -0.00971221923828125, -0.02099609375, -0.020782470703125, -0.0037937164306640625, -0.06756591796875, -0.0130157470703125, -0.043365478515625, 0.0085601806640625, 0.0193634033203125, -0.0096588134765625, 0.006927490234375, -0.0360107421875, -0.0028209686279296875, 0.00811767578125, -0.0015726089477539062, -0.05218505859375, 0.03155517578125, -0.0111846923828125, 0.007167816162109375, -0.08367919921875, -0.01861572265625, -0.09197998046875, 0.041839599609375, -0.0017910003662109375, 0.017242431640625, 0.041900634765625, -0.0280609130859375, -0.08056640625, 0.07476806640625, -0.031951904296875, -0.0240020751953125, 0.0310211181640625, -0.0264892578125, -0.043975830078125, 0.052886962890625, 0.0099945068359375, -0.0175018310546875, -0.007648468017578125, 0.032318115234375, -0.0015468597412109375, -0.02618408203125, 0.04437255859375, -0.039093017578125, -0.0474853515625, -0.01422882080078125, 0.00543975830078125, 0.0120697021484375, 0.03961181640625, -0.0031452178955078125, 0.033660888671875, 0.054931640625, -0.0115509033203125, 0.0036296844482421875, -0.0109405517578125, -0.060333251953125, 0.0039825439453125, 0.0212860107421875, -0.024139404296875, -0.0083770751953125, 0.04443359375, 0.04412841796875, 0.01422119140625, -0.00621795654296875, 0.0167083740234375, 0.0361328125, -0.00838470458984375, -0.0130157470703125, 0.0203857421875, -0.068359375, -0.0631103515625, 0.0007009506225585938, -0.0171051025390625, 0.00487518310546875, 0.002185821533203125, -0.055267333984375, 0.0188751220703125, 0.00714874267578125, 0.0081634521484375, -0.061187744140625, 0.03009033203125, -0.060272216796875, 0.0091705322265625, 0.01445770263671875, -0.0300750732421875, -0.004886627197265625, -0.021697998046875, 0.021881103515625, 0.0225982666015625, -0.0179290771484375, -0.041900634765625, 0.0118865966796875, -0.0084228515625, 0.01849365234375, -0.04296875, -0.04058837890625, -0.03399658203125, 0.01947021484375, -0.0097808837890625, 0.0238800048828125, 0.01171112060546875, 0.01082611083984375, 0.0148773193359375, 0.051666259765625, -0.034759521484375, 0.0186767578125, -0.023345947265625, 0.0286407470703125, -0.05010986328125, 0.0265655517578125, 0.00213623046875, -0.009033203125, 0.01099395751953125, 0.003002166748046875, 0.060638427734375, -0.051483154296875, 0.04278564453125, 0.062469482421875, 0.0130615234375, 0.0283050537109375 ]
11af7ab9c44a6f56d479bbd0fe50267c90ef30b2
Wordpress Stackexchange Q: Using a dashicon for a custom button in TinyMCE? I have created a custom button for TinyMCE and I would like it to use the Twitter icon from dashicons. I am hoping to be able to do this just through the Javascript with no additional CSS. Is this possible? Here is my current(non-working) attempt: (function () { tinymce.PluginManager.add('twitter_button_plugin', function (editor, url) { editor.addButton('mce_tweet_button', { title: 'Insert tweet', icon: 'dashicons dashicons-twitter', onclick: function() { ... } }); }); })(); A: I am hoping to be able to do this just through the Javascript with no additional CSS. Is this possible? I assume you only want to stay within tinymce.PluginManager.add( ... ). Here's a JS workaround with: jQuery( '.is-dashicon' ).css( 'font-family', 'dashicons' ); within a onPostRender event callback: (function () { tinymce.PluginManager.add('twitter_button_plugin', function (editor, url) { editor.addButton('mce_tweet_button', { title: 'Insert tweet', icon: 'insert-tweet is-dashicon dashicons dashicons-twitter', onPostRender: function () { jQuery( '.is-dashicon' ).css( 'font-family', 'dashicons' ); }, onclick: function() { ... } }); }); })(); that will generate the tag: <i class="mce-ico mce-i-insert-tweet is-dashicon dashicons dashicons-twitter" style="font-family: dashicons;"></i> Example:
Q: Using a dashicon for a custom button in TinyMCE? I have created a custom button for TinyMCE and I would like it to use the Twitter icon from dashicons. I am hoping to be able to do this just through the Javascript with no additional CSS. Is this possible? Here is my current(non-working) attempt: (function () { tinymce.PluginManager.add('twitter_button_plugin', function (editor, url) { editor.addButton('mce_tweet_button', { title: 'Insert tweet', icon: 'dashicons dashicons-twitter', onclick: function() { ... } }); }); })(); A: I am hoping to be able to do this just through the Javascript with no additional CSS. Is this possible? I assume you only want to stay within tinymce.PluginManager.add( ... ). Here's a JS workaround with: jQuery( '.is-dashicon' ).css( 'font-family', 'dashicons' ); within a onPostRender event callback: (function () { tinymce.PluginManager.add('twitter_button_plugin', function (editor, url) { editor.addButton('mce_tweet_button', { title: 'Insert tweet', icon: 'insert-tweet is-dashicon dashicons dashicons-twitter', onPostRender: function () { jQuery( '.is-dashicon' ).css( 'font-family', 'dashicons' ); }, onclick: function() { ... } }); }); })(); that will generate the tag: <i class="mce-ico mce-i-insert-tweet is-dashicon dashicons dashicons-twitter" style="font-family: dashicons;"></i> Example: A: Here's your easy solution (hopefully this will help other people too): 1) add a custom class for icon, in this example "myicons" (function () { tinymce.PluginManager.add('twitter_button_plugin', function (editor, url) { editor.addButton('mce_tweet_button', { title: 'Insert tweet', icon: 'myicons dashicons-twitter', onclick: function() { ... } }); }); })(); 2) Enqueue your admin stylesheet file function load_custom_wp_admin_style() { wp_enqueue_style( 'custom_wp_admin_css', 'URL/TO/custom_admin_style.css' ); } add_action( 'admin_enqueue_scripts', 'load_custom_wp_admin_style' ); 3) Then in your custom_admin_style.css file add this: /** * TinyMCE add support for dashicons */ i.mce-i-myicon { font: 400 20px/1 dashicons; padding: 0; vertical-align: top; speak: none; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin-left: -2px; padding-right: 2px } A: Using the OP code when setting icon to 'dashicons dashicons-twitter' the editor renders the button with the following classes 'mce-ico mce-i-dashicons dashicons-twitter' Therefore without using jQuery what works for me is: (function () { tinymce.PluginManager.add('twitter_button_plugin', function (editor, url) { editor.addButton('mce_tweet_button', { title: 'Insert tweet', icon: 'dashicons dashicons-twitter', onPostRender: function () { elements = document.getElementsByClassName("mce-i-dashicons"); for(i=0; i<elements.length; i++) { elements[i].style.fontFamily = "dashicons"; } } onclick: function() { ... } }); }); })();
wordpress
{ "language": "en", "length": 352, "provenance": "stackexchange_00019.jsonl.gz:485145", "question_score": "4", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/299617" }
[ 0.041412353515625, 0.0163116455078125, 0.005397796630859375, -0.01537322998046875, 0.019561767578125, -0.0217132568359375, 0.039306640625, -0.03192138671875, 0.003993988037109375, 0.026519775390625, -0.01485443115234375, 0.0002892017364501953, 0.0009493827819824219, -0.0213775634765625, -0.019561767578125, -0.00696563720703125, 0.045684814453125, -0.006816864013671875, 0.0477294921875, -0.01013946533203125, -0.0013685226440429688, 0.0198516845703125, 0.043670654296875, -0.0301666259765625, 0.012115478515625, -0.033294677734375, 0.1287841796875, -0.0146026611328125, 0.01375579833984375, -0.0271148681640625, 0.03326416015625, -0.00984954833984375, 0.0239715576171875, 0.058563232421875, -0.0439453125, 0.059539794921875, 0.025665283203125, 0.029052734375, 0.011444091796875, 0.0193023681640625, 0.0172576904296875, -0.0210113525390625, -0.01410675048828125, 0.04864501953125, -0.0582275390625, -0.037933349609375, 0.044952392578125, 0.00482177734375, 0.003570556640625, -0.040069580078125, 0.0018901824951171875, 0.01013946533203125, 0.023193359375, -0.00901031494140625, -0.007259368896484375, 0.0258026123046875, -0.05877685546875, 0.01496124267578125, -0.006633758544921875, 0.04132080078125, 0.052642822265625, 0.0172882080078125, -0.021270751953125, 0.00421142578125, -0.0021762847900390625, -0.0185699462890625, -0.01273345947265625, 0.007022857666015625, 0.00577545166015625, 0.005466461181640625, 0.00559234619140625, -0.00006753206253051758, 0.0283660888671875, -0.0173492431640625, -0.032684326171875, 0.0010433197021484375, -0.01428985595703125, -0.0246734619140625, 0.0333251953125, -0.0355224609375, -0.012054443359375, -0.0098724365234375, -0.01332855224609375, -0.00731658935546875, -0.007511138916015625, 0.00501251220703125, -0.0163116455078125, -0.01355743408203125, -0.033905029296875, -0.034698486328125, -0.0267791748046875, -0.01702880859375, -0.050567626953125, 0.015533447265625, -0.01059722900390625, 0.0003981590270996094, -0.016204833984375, 0.02313232421875, -0.01090240478515625, 0.02435302734375, -0.0030307769775390625, -0.0195770263671875, 0.058319091796875, -0.056365966796875, 0.0201568603515625, 0.0221099853515625, -0.00563812255859375, 0.051177978515625, 0.0579833984375, 0.01139068603515625, -0.01073455810546875, 0.0271453857421875, -0.0147705078125, -0.0462646484375, -0.0074920654296875, 0.0122833251953125, -0.039581298828125, 0.0172271728515625, 0.020843505859375, 0.01233673095703125, 0.0182952880859375, -0.00019931793212890625, 0.042144775390625, 0.004730224609375, -0.01134490966796875, -0.01230621337890625, -0.01617431640625, -0.0138092041015625, -0.002349853515625, 0.03387451171875, -0.061553955078125, -0.0006847381591796875, 0.09417724609375, 0.05810546875, 0.041839599609375, -0.038360595703125, 0.01019287109375, -0.00687408447265625, 0.0284271240234375, -0.0300750732421875, 0.0452880859375, -0.0115966796875, 0.0096435546875, 0.0255889892578125, -0.0650634765625, 0.006992340087890625, -0.003040313720703125, 0.028533935546875, -0.0103607177734375, -0.06549072265625, 0.011474609375, -0.041534423828125, 0.036712646484375, 0.024383544921875, -0.0203857421875, -0.040740966796875, 0.055145263671875, -0.0560302734375, 0.00461578369140625, -0.0877685546875, 0.016082763671875, -0.0024738311767578125, -0.0023345947265625, -0.010009765625, -0.021148681640625, -0.00897216796875, -0.0110015869140625, 0.004444122314453125, 0.01081085205078125, 0.0289154052734375, -0.056182861328125, 0.00850677490234375, 0.01511383056640625, 0.02215576171875, -0.00968170166015625, 0.00991058349609375, 0.01322174072265625, 0.0185546875, 0.00821685791015625, -0.0035381317138671875, -0.0097808837890625, -0.041290283203125, 0.08380126953125, -0.0291290283203125, -0.057403564453125, 0.053558349609375, 0.0110931396484375, 0.09649658203125, 0.01493072509765625, 0.007801055908203125, -0.00649261474609375, 0.0255126953125, 0.0222930908203125, -0.0253753662109375, 0.0276641845703125, -0.00402069091796875, -0.031982421875, 0.002613067626953125, -0.002376556396484375, -0.02398681640625, -0.00568389892578125, 0.034515380859375, -0.0005731582641601562, 0.02276611328125, -0.049468994140625, 0.05462646484375, -0.0214385986328125, 0.042877197265625, 0.00299072265625, -0.02117919921875, 0.005832672119140625, -0.017730712890625, -0.00002199411392211914, -0.01318359375, -0.0099029541015625, 0.04302978515625, -0.01209259033203125, 0.0222320556640625, 0.008331298828125, 0.00835418701171875, 0.0236968994140625, -0.01445770263671875, 0.02874755859375, 0.0205841064453125, 0.0173187255859375, -0.020233154296875, -0.0179443359375, -0.0210418701171875, 0.01290130615234375, -0.00908660888671875, -0.01092529296875, 0.037689208984375, 0.00620269775390625, 0.01342010498046875, -0.032470703125, -0.00887298583984375, -0.0124664306640625, -0.03656005859375, 0.01123809814453125, 0.0413818359375, 0.019195556640625, 0.005458831787109375, -0.01044464111328125, 0.024139404296875, 0.0169830322265625, 0.00450897216796875, 0.03692626953125, -0.01247406005859375, 0.01065826416015625, 0.038299560546875, -0.00872039794921875, -0.0179595947265625, 0.0147857666015625, -0.031463623046875, 0.0306243896484375, 0.02203369140625, -0.00232696533203125, -0.00274658203125, 0.004962921142578125, -0.005870819091796875, 0.0024776458740234375, 0.0208587646484375, -0.0184783935546875, 0.004489898681640625, 0.0243682861328125, 0.0557861328125, 0.041595458984375, 0.05059814453125, -0.0302276611328125, 0.041656494140625, -0.00457763671875, -0.016326904296875, 0.0005950927734375, 0.03216552734375, 0.01456451416015625, 0.0106658935546875, -0.00693511962890625, -0.00949859619140625, 0.0194854736328125, 0.00928497314453125, 0.01393890380859375, 0.0191802978515625, -0.003665924072265625, -0.006610870361328125, 0.0228271484375, -0.0237274169921875, -0.00521087646484375, 0.0003631114959716797, 0.0400390625, 0.0423583984375, 0.047393798828125, 0.02667236328125, -0.006168365478515625, 0.042510986328125, -0.00846099853515625, 0.0002484321594238281, 0.0164947509765625, -0.01352691650390625, 0.036376953125, -0.0108489990234375, 0.0272979736328125, 0.071533203125, 0.004444122314453125, 0.016448974609375, 0.016632080078125, 0.00035071372985839844, -0.019073486328125, 0.0206451416015625, 0.0171966552734375, -0.012664794921875, 0.00824737548828125, 0.056060791015625, 0.01947021484375, 0.044158935546875, -0.0164031982421875, -0.05426025390625, -0.01149749755859375, 0.00982666015625, -0.050445556640625, -0.05389404296875, 0.038299560546875, -0.07373046875, 0.0013294219970703125, -0.04339599609375, -0.044403076171875, -0.00817108154296875, -0.022308349609375, 0.0021953582763671875, -0.072021484375, -0.00016450881958007812, 0.03228759765625, -0.017852783203125, -0.0007901191711425781, -0.0182952880859375, -0.0006380081176757812, 0.006561279296875, 0.018646240234375, 0.0290679931640625, 0.0266571044921875, 0.0021038055419921875, 0.06298828125, -0.0019817352294921875, -0.01384735107421875, 0.032135009765625, 0.05474853515625, -0.060546875, 0.01348876953125, -0.011260986328125, 0.022552490234375, 0.0631103515625, -0.053375244140625, 0.0009679794311523438, -0.013397216796875, -0.051116943359375, 0.043426513671875, 0.052734375, -0.0233001708984375, 0.02960205078125, 0.11676025390625, -0.0007238388061523438, -0.046539306640625, 0.001468658447265625, -0.025604248046875, 0.0760498046875, -0.024078369140625, -0.00888824462890625, 0.0240936279296875, 0.0614013671875, 0.046295166015625, 0.0247955322265625, 0.0302276611328125, 0.01324462890625, -0.00047397613525390625, -0.0138702392578125, 0.02392578125, -0.038970947265625, -0.025848388671875, -0.0212554931640625, 0.042633056640625, -0.01971435546875, 0.03057861328125, 0.005779266357421875, 0.03887939453125, -0.005504608154296875, 0.0341796875, -0.0188446044921875, -0.0826416015625, 0.01898193359375, 0.0035552978515625, 0.037689208984375, -0.00885772705078125, -0.00600433349609375, 0.022308349609375, -0.0236358642578125, -0.01020050048828125, 0.0022144317626953125, -0.01284027099609375, -0.006076812744140625, -0.0106048583984375, -0.006389617919921875, -0.05810546875, 0.018707275390625, 0.001827239990234375, -0.0207366943359375, -0.01031494140625, -0.006763458251953125, -0.033721923828125, -0.021728515625, 0.00464630126953125, -0.0308074951171875, -0.00531768798828125, 0.020599365234375, -0.022491455078125, -0.002292633056640625, 0.002117156982421875, -0.0709228515625, -0.04962158203125, 0.00820159912109375, -0.05426025390625, 0.022308349609375, 0.023956298828125, -0.0160980224609375, 0.00110626220703125, 0.038482666015625, -0.027069091796875, -0.0064849853515625, -0.004669189453125, 0.038299560546875, -0.0311279296875, -0.024200439453125, -0.024139404296875, -0.0302886962890625, 0.0004954338073730469, 0.0210113525390625, -0.059844970703125, 0.03955078125, -0.0055389404296875, -0.0127716064453125, 0.066162109375, -0.0645751953125, -0.0187530517578125, -0.050018310546875, -0.0169219970703125, 0.01380157470703125, -0.005153656005859375, -0.0031948089599609375, -0.050933837890625, -0.01580810546875, 0.031158447265625, -0.008148193359375, 0.0222320556640625, -0.0289306640625, 0.045135498046875, 0.01690673828125, -0.025421142578125, 0.09417724609375, -0.0192413330078125, 0.0157623291015625, 0.017425537109375, 0.01358795166015625, 0.0059814453125, -0.0081024169921875, -0.0006957054138183594, 0.0014867782592773438, 0.016998291015625, -0.0077056884765625, 0.034332275390625, -0.0011157989501953125, -0.0043182373046875, 0.01776123046875, 0.0215911865234375, -0.0173187255859375, 0.0287322998046875, -0.017333984375, 0.01108551025390625, -0.019622802734375, 0.01378631591796875, -0.0110626220703125, -0.017242431640625, -0.0284881591796875, -0.0340576171875, 0.0095977783203125, 0.00453948974609375, 0.0274200439453125, 0.003406524658203125, 0.0125885009765625, 0.0009446144104003906, -0.003635406494140625, -0.0030765533447265625, 0.05426025390625, 0.03155517578125, 0.0167999267578125, 0.0260162353515625, 0.030120849609375, -0.00634765625, 0.0007433891296386719, -0.0137939453125, 0.0208892822265625, 0.0537109375, -0.01116180419921875, 0.003993988037109375, 0.00464630126953125, 0.01007080078125, -0.0462646484375, 0.0199127197265625, -0.0036907196044921875, 0.00897216796875, -0.02081298828125, 0.01018524169921875, 0.038116455078125, -0.0159454345703125, -0.0189208984375, -0.06005859375, 0.0189208984375, -0.04705810546875, -0.050506591796875, 0.045196533203125, 0.0265350341796875, -0.020050048828125, 0.00756072998046875, 0.057861328125, 0.05059814453125, 0.00823211669921875, 0.019775390625, 0.005069732666015625, 0.00756072998046875, -0.0290069580078125, -0.033782958984375, -0.01354217529296875, 0.051849365234375, 0.01399993896484375, 0.0129547119140625, -0.00905609130859375, -0.055938720703125, 0.0206756591796875, -0.057037353515625, -0.031829833984375, 0.00012099742889404297, -0.04010009765625, -0.0144195556640625, -0.04559326171875, -0.0274658203125, 0.03167724609375, 0.03192138671875, -0.0256805419921875, -0.017120361328125, -0.044586181640625, 0.01525115966796875, -0.0030536651611328125, 0.004322052001953125, 0.0015926361083984375, -0.01236724853515625, -0.01409149169921875, -0.0244903564453125, -0.01263427734375, -0.08428955078125, -0.0095367431640625, -0.00891876220703125, 0.005771636962890625, 0.007564544677734375, -0.0079803466796875, 0.03387451171875, -0.0399169921875, 0.00548553466796875, -0.048187255859375, 0.0076141357421875, 0.0108795166015625, -0.00020885467529296875, 0.0204010009765625, -0.010345458984375, -0.0452880859375, -0.043304443359375, 0.00984954833984375, -0.019622802734375, -0.0277557373046875, -0.0025196075439453125, 0.0377197265625, 0.05072021484375, 0.006195068359375, -0.026611328125, 0.0160369873046875, 0.0150604248046875, 0.0102081298828125, 0.0799560546875, -0.0081939697265625, -0.0092315673828125, 0.02508544921875, 0.0241851806640625, 0.0014524459838867188, -0.01393890380859375, 0.0305633544921875, -0.034271240234375, -0.0033092498779296875, -0.06707763671875, 0.0158233642578125, 0.0014982223510742188, 0.0024566650390625, 0.015228271484375, 0.00884246826171875, 0.0145721435546875, 0.0301055908203125, 0.00354766845703125, 0.0013637542724609375, -0.00628662109375, -0.020599365234375, 0.007259368896484375, 0.01342010498046875, 0.05413818359375, -0.01491546630859375, 0.0022125244140625, -0.00811767578125, 0.01398468017578125, -0.006175994873046875, -0.0100555419921875, -0.0041656494140625, 0.003662109375, -0.035491943359375, 0.06292724609375, 0.049713134765625, -0.022125244140625, 0.00786590576171875, -0.004741668701171875, -0.020263671875, -0.004550933837890625, -0.0016326904296875, -0.0164337158203125, 0.01715087890625, -0.0096588134765625, -0.0275726318359375, 0.0022182464599609375, -0.0248870849609375, 0.0027675628662109375, 0.007556915283203125, 0.00933837890625, 0.03375244140625, -0.020843505859375, -0.01332855224609375, 0.006649017333984375, -0.047576904296875, -0.0131072998046875, 0.028106689453125, 0.0033435821533203125, -0.0005121231079101562, 0.059722900390625, -0.072998046875, 0.006206512451171875, 0.053985595703125, -0.04351806640625, 0.01276397705078125, 0.0299072265625, 0.0338134765625, 0.00708770751953125, -0.01013946533203125, -0.0421142578125, 0.0147705078125, 0.0003552436828613281, 0.01038360595703125, 0.0245513916015625, -0.040924072265625, 0.0068511962890625, -0.002368927001953125, 0.00937652587890625, -0.056915283203125, -0.0153350830078125, 0.024810791015625, -0.00484466552734375, 0.0279083251953125, 0.024017333984375, 0.0014600753784179688, 0.0016956329345703125, 0.0027637481689453125, -0.01476287841796875, 0.0635986328125, -0.0147705078125, 0.0015201568603515625, -0.0211181640625, -0.00505828857421875, -0.00042819976806640625, 0.00482177734375, -0.0227203369140625, 0.01459503173828125, 0.042938232421875, 0.02276611328125, -0.01141357421875, -0.038177490234375, 0.036529541015625, -0.0310821533203125, -0.00849151611328125, -0.05572509765625, -0.02301025390625, -0.1103515625, -0.06927490234375, -0.056365966796875, -0.065673828125, 0.02642822265625, -0.06982421875, -0.08758544921875, 0.1280517578125, 0.01442718505859375, 0.02410888671875, -0.042449951171875, 0.053192138671875, -0.0167999267578125, 0.03155517578125, -0.01197052001953125, 0.0016889572143554688, -0.0035533905029296875, -0.038299560546875, -0.0250091552734375, 0.003620147705078125, -0.03082275390625, 0.01561737060546875, 0.0243988037109375, 0.01013946533203125, -0.03753662109375, -0.00925445556640625, 0.00743865966796875, 0.03271484375, 0.0047454833984375, 0.032562255859375, 0.0193939208984375, -0.0165252685546875, -0.0053253173828125, 0.027130126953125, 0.0345458984375, -0.022552490234375, -0.028533935546875, 0.0130462646484375, -0.01336669921875, -0.0225372314453125, 0.0305023193359375, -0.09954833984375, -0.0013303756713867188, 0.004680633544921875, -0.0310821533203125, -0.0538330078125, -0.01708984375, 0.056060791015625, -0.0157012939453125, 0.0227813720703125, -0.04998779296875, -0.022491455078125, 0.020050048828125, -0.01525115966796875, -0.040374755859375, -0.00547027587890625, -0.004302978515625, -0.055572509765625, 0.0011987686157226562, -0.031890869140625, 0.01507568359375, 0.01236724853515625, 0.0222320556640625, -0.0362548828125, -0.0064544677734375, -0.0892333984375, -0.022552490234375, 0.053802490234375, 0.052703857421875, -0.02313232421875, -0.0269317626953125, 0.00542449951171875, -0.0011119842529296875, 0.00502777099609375, -0.0219573974609375, 0.027374267578125, -0.0299224853515625, -0.044891357421875, 0.00186920166015625, 0.023345947265625, 0.00675201416015625, 0.0099334716796875, 0.020965576171875, 0.03924560546875, -0.0396728515625, 0.0196533203125, -0.034515380859375, 0.00145721435546875, 0.0029735565185546875, 0.0418701171875, 0.0203094482421875, 0.0295867919921875, 0.00211334228515625, -0.021453857421875, -0.05072021484375, 0.0038433074951171875, 0.0699462890625, 0.00983428955078125, 0.004581451416015625, 0.0609130859375, 0.047821044921875, 0.002521514892578125, 0.0178985595703125, 0.028656005859375, 0.02264404296875, 0.0099639892578125, 0.015716552734375, 0.0103302001953125, 0.035552978515625, -0.0166015625, 0.035736083984375, -0.064453125, 0.0034961700439453125, -0.01490020751953125, -0.011962890625, 0.005828857421875, -0.049285888671875, 0.039459228515625, -0.04302978515625, 0.0307464599609375, -0.009552001953125, -0.017120361328125, 0.026519775390625, -0.0182037353515625, 0.00013315677642822266, -0.02581787109375, -0.01366424560546875, 0.0155487060546875, -0.0273895263671875, -0.068359375, 0.00966644287109375, 0.04083251953125, -0.0294342041015625, 0.03558349609375, -0.05377197265625, 0.004566192626953125, -0.0018491744995117188, -0.022613525390625, 0.024383544921875, -0.005191802978515625, -0.006137847900390625, -0.0013780593872070312, -0.01085662841796875, -0.0025272369384765625, 0.0125579833984375, 0.01395416259765625, 0.042938232421875, -0.0200042724609375, 0.016143798828125, 0.028167724609375, -0.00911712646484375, 0.002422332763671875, 0.0005207061767578125, -0.01180267333984375, -0.00199127197265625, 0.0186920166015625, 0.0209503173828125, -0.0174102783203125, -0.01343536376953125, 0.051483154296875, 0.0071563720703125, -0.00901031494140625, 0.0163726806640625, 0.01102447509765625, 0.007320404052734375, 0.00670623779296875, -0.006649017333984375, -0.02978515625, -0.04229736328125, -0.04119873046875, -0.01092529296875, 0.0123138427734375, 0.0019626617431640625, -0.007488250732421875, 0.03851318359375, 0.0181121826171875, -0.02081298828125, 0.043212890625, -0.032012939453125, 0.0689697265625, 0.0305023193359375, 0.0030689239501953125, -0.02044677734375, 0.0203094482421875, -0.00795745849609375, -0.017730712890625, 0.015899658203125, 0.01143646240234375, 0.0164031982421875, -0.0662841796875, 0.07366943359375, 0.04034423828125, 0.057037353515625, -0.0271148681640625, 0.0010728836059570312, 0.052093505859375, 0.0052947998046875, 0.0230712890625, 0.0302276611328125, -0.02508544921875, -0.0195159912109375, -0.001064300537109375, 0.029815673828125, -0.0172119140625, -0.00891876220703125, -0.12408447265625, -0.0182647705078125, 0.0228424072265625, 0.01177215576171875, -0.05938720703125, 0.04534912109375, -0.01233673095703125, 0.0031890869140625, -0.01447296142578125, 0.06561279296875, -0.02783203125, -0.0167083740234375, -0.056671142578125, -0.0225677490234375, -0.044281005859375, 0.05853271484375, -0.03399658203125, 0.0306243896484375, 0.03271484375, -0.023529052734375, -0.00647735595703125, -0.01070404052734375, 0.0233306884765625, 0.04180908203125, -0.018035888671875, 0.0066986083984375, 0.076171875, -0.04412841796875, -0.0537109375, -0.078125, 0.006465911865234375, -0.07763671875, -0.0256500244140625, -0.0039520263671875, 0.00092315673828125, -0.00901031494140625, -0.04656982421875, -0.09039306640625, 0.049774169921875, 0.007503509521484375, -0.029571533203125, -0.005954742431640625, 0.0350341796875, 0.00041985511779785156, -0.031097412109375, -0.021331787109375, 0.00653076171875, 0.016448974609375, -0.00626373291015625, 0.02313232421875, 0.04400634765625, 0.0023250579833984375, 0.0212249755859375, -0.0643310546875, 0.014434814453125, -0.011474609375, 0.0289459228515625, -0.0035457611083984375, -0.01192474365234375, 0.01326751708984375, 0.0213775634765625, -0.0220947265625, -0.09832763671875, -0.005458831787109375, -0.01258087158203125, -0.0015363693237304688, -0.044952392578125, -0.00736236572265625, -0.025787353515625, 0.06988525390625, -0.0165863037109375, -0.0048065185546875, -0.005764007568359375, -0.0318603515625, -0.018798828125, -0.03570556640625, -0.00530242919921875, 0.031158447265625, -0.08453369140625, -0.0025272369384765625, 0.039703369140625, 0.0155181884765625, 0.03485107421875, 0.0103912353515625, 0.018402099609375, 0.0005736351013183594, 0.0341796875, -0.0272064208984375, -0.035736083984375, 0.0645751953125, 0.0731201171875, -0.038330078125, 0.0247039794921875, 0.010040283203125, -0.038421630859375, 0.07659912109375, 0.0164642333984375, -0.0418701171875, 0.0038585662841796875, -0.007213592529296875, 0.03289794921875, -0.0225830078125, 0.03558349609375, -0.0472412109375, 0.02935791015625, -0.0085906982421875, -0.0101470947265625, -0.013458251953125, -0.024566650390625, -0.0185089111328125, -0.00908660888671875, -0.0149993896484375, 0.023651123046875, -0.057342529296875, 0.00711822509765625, -0.048583984375, 0.0330810546875, -0.0213623046875, 0.03717041015625, 0.0248565673828125, 0.01215362548828125, 0.006992340087890625, -0.0016469955444335938, -0.0003414154052734375, -0.0211029052734375, 0.012481689453125, 0.0005350112915039062, 0.004489898681640625, 0.00943756103515625 ]
8c4b8e30a12b615f95f2420c3558b1f1ac889ce7
Wordpress Stackexchange Q: Add search to list of categories in post editor I have many categories in my WordPress website. Each time I am adding new post it is very hard to find specific category that I need this time. It would be much easier if I had search field right above list of categories (Categories Metabox) when I am editing post. How can I do it? Or maybe there is some plugin for it? For example search button can be added after "Most used" tab. A: I found this plugin called WP Admin Category Search https://wordpress.org/plugins/admin-category-search/ It is not looking very popular but it seems to work.
Q: Add search to list of categories in post editor I have many categories in my WordPress website. Each time I am adding new post it is very hard to find specific category that I need this time. It would be much easier if I had search field right above list of categories (Categories Metabox) when I am editing post. How can I do it? Or maybe there is some plugin for it? For example search button can be added after "Most used" tab. A: I found this plugin called WP Admin Category Search https://wordpress.org/plugins/admin-category-search/ It is not looking very popular but it seems to work.
wordpress
{ "language": "en", "length": 106, "provenance": "stackexchange_00019.jsonl.gz:485212", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/299848" }
[ 0.049072265625, 0.006122589111328125, 0.007183074951171875, 0.00988006591796875, 0.0238037109375, -0.033782958984375, 0.06689453125, -0.0491943359375, 0.0264129638671875, 0.0184326171875, -0.020843505859375, -0.007053375244140625, -0.002330780029296875, -0.022735595703125, -0.036041259765625, -0.015625, -0.00008344650268554688, -0.0079345703125, 0.0016765594482421875, -0.031951904296875, 0.0184173583984375, -0.033416748046875, 0.0083770751953125, 0.010498046875, -0.00872802734375, 0.011871337890625, 0.0240020751953125, -0.02734375, 0.00891876220703125, -0.016265869140625, 0.00537109375, -0.00547027587890625, 0.0202789306640625, -0.0190887451171875, 0.037506103515625, 0.037353515625, 0.0123443603515625, 0.008758544921875, 0.0206298828125, 0.00934600830078125, 0.0379638671875, -0.0224609375, 0.0230712890625, 0.042755126953125, 0.007678985595703125, -0.04840087890625, 0.04425048828125, -0.058990478515625, 0.0225372314453125, -0.06549072265625, -0.00850677490234375, 0.01334381103515625, 0.019775390625, -0.10784912109375, -0.0157928466796875, 0.0024852752685546875, -0.000415802001953125, 0.0160369873046875, 0.04864501953125, -0.01064300537109375, -0.042144775390625, -0.021820068359375, 0.01523590087890625, -0.027069091796875, -0.016632080078125, 0.00453948974609375, 0.01029205322265625, -0.01018524169921875, -0.03448486328125, -0.015838623046875, 0.04241943359375, -0.0343017578125, 0.004711151123046875, 0.00783538818359375, 0.006206512451171875, -0.042266845703125, 0.0311126708984375, -0.0034122467041015625, 0.0055694580078125, 0.037750244140625, -0.01461029052734375, 0.0166168212890625, 0.033721923828125, -0.0533447265625, 0.0007748603820800781, -0.032379150390625, -0.023590087890625, 0.00921630859375, -0.03399658203125, -0.053924560546875, -0.014007568359375, -0.04888916015625, -0.07244873046875, 0.0085906982421875, 0.01212310791015625, -0.03765869140625, 0.00974273681640625, 0.025390625, 0.0259246826171875, 0.0313720703125, -0.0021953582763671875, -0.05059814453125, 0.0130157470703125, -0.046142578125, 0.0185394287109375, 0.007232666015625, -0.051422119140625, -0.00778961181640625, 0.056488037109375, 0.061492919921875, -0.0060577392578125, 0.004528045654296875, 0.019287109375, -0.01190185546875, -0.00864410400390625, 0.01335906982421875, 0.004581451416015625, 0.035797119140625, -0.0024738311767578125, 0.033416748046875, 0.00678253173828125, 0.029998779296875, -0.00983428955078125, -0.040802001953125, -0.00514984130859375, -0.0250396728515625, -0.0214996337890625, -0.00621795654296875, 0.018218994140625, -0.0289764404296875, -0.00968170166015625, 0.039337158203125, 0.049163818359375, 0.0306854248046875, -0.00461578369140625, 0.00946044921875, -0.0159149169921875, -0.0238189697265625, 0.0002913475036621094, -0.0185089111328125, -0.008819580078125, -0.0025806427001953125, 0.0297698974609375, -0.024993896484375, 0.051483154296875, 0.005352020263671875, -0.002025604248046875, 0.0139923095703125, 0.04571533203125, 0.0044708251953125, 0.0184173583984375, -0.032012939453125, 0.0418701171875, 0.0101776123046875, -0.027862548828125, 0.0020351409912109375, 0.0333251953125, -0.0172882080078125, -0.045806884765625, -0.04010009765625, 0.02459716796875, 0.022979736328125, 0.042022705078125, -0.035980224609375, -0.03887939453125, -0.025848388671875, -0.0872802734375, -0.013458251953125, 0.021392822265625, -0.029296875, 0.0247802734375, 0.011077880859375, 0.023834228515625, -0.025238037109375, -0.0103759765625, -0.00936126708984375, 0.0101318359375, 0.012969970703125, 0.01038360595703125, 0.037078857421875, 0.006839752197265625, -0.02008056640625, 0.0679931640625, -0.027435302734375, -0.05322265625, 0.040130615234375, 0.00897216796875, 0.058380126953125, 0.00007539987564086914, 0.0242919921875, 0.033538818359375, 0.01271820068359375, -0.0287628173828125, -0.00907135009765625, -0.0074615478515625, 0.0115509033203125, 0.0037784576416015625, 0.0235748291015625, 0.0003173351287841797, -0.0239410400390625, -0.0208740234375, 0.00824737548828125, -0.012237548828125, 0.004573822021484375, -0.023895263671875, -0.0124053955078125, -0.0047454833984375, 0.031158447265625, 0.02703857421875, -0.00286102294921875, -0.01209259033203125, -0.028350830078125, 0.034088134765625, -0.07568359375, -0.04302978515625, 0.0287933349609375, -0.0199432373046875, 0.00592041015625, 0.01045989990234375, 0.0146636962890625, 0.00844573974609375, -0.0024662017822265625, 0.0022983551025390625, -0.00394439697265625, 0.05450439453125, 0.035736083984375, -0.03192138671875, -0.005405426025390625, 0.0233154296875, 0.03558349609375, -0.06927490234375, 0.02349853515625, 0.0635986328125, 0.05267333984375, -0.0169525146484375, 0.0028629302978515625, 0.02520751953125, -0.0284271240234375, -0.003482818603515625, 0.03594970703125, 0.0287933349609375, 0.049774169921875, 0.0016307830810546875, 0.01317596435546875, 0.05987548828125, -0.060760498046875, -0.0145263671875, 0.01218414306640625, 0.01910400390625, 0.0723876953125, -0.01544189453125, 0.007625579833984375, 0.01181793212890625, -0.011199951171875, 0.0219268798828125, 0.024658203125, 0.01287078857421875, -0.0018138885498046875, -0.0019388198852539062, -0.0313720703125, 0.021820068359375, -0.05303955078125, -0.075439453125, 0.007495880126953125, 0.043548583984375, 0.01299285888671875, 0.05279541015625, 0.0396728515625, -0.037200927734375, 0.00923919677734375, 0.0172271728515625, 0.04022216796875, -0.0025157928466796875, 0.02734375, -0.0125885009765625, 0.0235595703125, -0.032318115234375, 0.0101470947265625, 0.009246826171875, 0.01313018798828125, -0.00577545166015625, 0.036529541015625, -0.00341796875, -0.00958251953125, -0.028594970703125, -0.0404052734375, 0.01018524169921875, 0.01093292236328125, -0.031585693359375, -0.01422882080078125, 0.0234527587890625, -0.01287841796875, -0.032012939453125, 0.02001953125, -0.041534423828125, -0.023712158203125, 0.0116424560546875, -0.007556915283203125, 0.0067138671875, -0.01213836669921875, 0.060943603515625, 0.049896240234375, -0.0159149169921875, 0.0159454345703125, -0.005084991455078125, 0.0158233642578125, -0.0303192138671875, 0.005222320556640625, -0.032562255859375, -0.0189971923828125, -0.056640625, 0.0007190704345703125, 0.031524658203125, 0.005115509033203125, 0.02685546875, -0.041107177734375, 0.00540924072265625, 0.01641845703125, -0.09063720703125, -0.0699462890625, -0.01531219482421875, -0.06597900390625, -0.0191497802734375, 0.0201873779296875, -0.039642333984375, -0.004108428955078125, 0.04583740234375, 0.0098114013671875, 0.0265045166015625, -0.0113067626953125, -0.01277923583984375, -0.01465606689453125, -0.051422119140625, -0.05999755859375, 0.00030303001403808594, -0.023834228515625, 0.0017518997192382812, 0.1009521484375, 0.0210113525390625, -0.054443359375, 0.0030517578125, 0.007045745849609375, -0.020660400390625, 0.0174713134765625, 0.03173828125, -0.053436279296875, 0.00553131103515625, 0.00008618831634521484, 0.02545166015625, 0.0284576416015625, -0.021270751953125, 0.006572723388671875, -0.039947509765625, 0.01238250732421875, -0.002716064453125, -0.011444091796875, 0.026336669921875, 0.02947998046875, 0.0097808837890625, -0.028045654296875, 0.0797119140625, -0.0057830810546875, 0.029998779296875, -0.042388916015625, -0.04461669921875, -0.0306854248046875, -0.0092315673828125, -0.0163116455078125, 0.01312255859375, 0.026214599609375, 0.0115509033203125, -0.014801025390625, 0.0095672607421875, -0.01380157470703125, 0.005519866943359375, -0.01580810546875, -0.0307464599609375, -0.044677734375, 0.0309600830078125, -0.0265350341796875, 0.0054168701171875, 0.0030765533447265625, 0.021209716796875, 0.0026264190673828125, -0.037933349609375, 0.037567138671875, -0.0096588134765625, 0.0189056396484375, -0.05999755859375, -0.041015625, -0.038360595703125, 0.08026123046875, -0.064453125, -0.0041656494140625, 0.0009784698486328125, 0.004177093505859375, 0.00226593017578125, -0.0300445556640625, -0.0615234375, -0.02801513671875, -0.0714111328125, -0.01016998291015625, -0.0045166015625, -0.037322998046875, -0.0234832763671875, 0.08709716796875, -0.054443359375, -0.018798828125, 0.04949951171875, -0.09527587890625, 0.0215301513671875, 0.006175994873046875, 0.02301025390625, -0.05242919921875, -0.035369873046875, -0.0275421142578125, -0.07562255859375, -0.0030765533447265625, -0.02313232421875, 0.048919677734375, 0.00257110595703125, 0.004756927490234375, -0.015289306640625, 0.0479736328125, 0.02288818359375, 0.0210113525390625, 0.01168060302734375, -0.005733489990234375, 0.039337158203125, -0.0158843994140625, 0.0055389404296875, -0.0194244384765625, -0.0286102294921875, -0.032012939453125, 0.00955963134765625, 0.02008056640625, -0.0216064453125, -0.0084991455078125, -0.0222320556640625, 0.00392913818359375, -0.02459716796875, -0.047210693359375, -0.038604736328125, 0.0118560791015625, -0.047821044921875, 0.03253173828125, -0.049224853515625, -0.034271240234375, 0.02862548828125, 0.004150390625, -0.006992340087890625, 0.0063934326171875, 0.06243896484375, 0.013458251953125, -0.02630615234375, -0.043670654296875, -0.01035308837890625, 0.0259857177734375, -0.004802703857421875, 0.026275634765625, -0.00798797607421875, -0.0233154296875, 0.05865478515625, -0.00899505615234375, -0.0079193115234375, -0.0521240234375, 0.071533203125, -0.020477294921875, -0.01512908935546875, 0.01435089111328125, -0.04241943359375, 0.0587158203125, 0.0218048095703125, -0.00798797607421875, 0.003612518310546875, -0.0060577392578125, 0.01416015625, -0.00803375244140625, 0.0161285400390625, 0.0005297660827636719, 0.0185699462890625, -0.0205535888671875, 0.00794219970703125, 0.063720703125, 0.07391357421875, -0.03082275390625, 0.0148162841796875, 0.0228729248046875, -0.02508544921875, -0.021209716796875, 0.0007123947143554688, -0.01245880126953125, 0.01309967041015625, -0.0308685302734375, -0.0310516357421875, -0.0264129638671875, -0.005451202392578125, 0.01442718505859375, -0.0228729248046875, -0.03765869140625, -0.00914764404296875, -0.013641357421875, 0.0175018310546875, 0.039642333984375, -0.01165008544921875, 0.0020427703857421875, 0.01438140869140625, 0.00711822509765625, 0.0196685791015625, -0.018035888671875, -0.00031876564025878906, -0.01407623291015625, 0.0193023681640625, 0.006389617919921875, -0.005096435546875, 0.029022216796875, 0.04803466796875, -0.049560546875, 0.043853759765625, 0.0005083084106445312, 0.0173797607421875, 0.0123748779296875, -0.005634307861328125, 0.025909423828125, -0.0169219970703125, 0.01001739501953125, -0.04620361328125, 0.016937255859375, -0.027557373046875, 0.01336669921875, -0.033355712890625, 0.024932861328125, -0.0142059326171875, -0.02239990234375, 0.0699462890625, -0.01336669921875, -0.02276611328125, -0.0086669921875, -0.002223968505859375, -0.017669677734375, -0.0109100341796875, -0.03192138671875, -0.009796142578125, 0.00473785400390625, -0.006771087646484375, -0.00911712646484375, -0.0297088623046875, 0.0156097412109375, -0.00689697265625, -0.00757598876953125, -0.0048370361328125, -0.006885528564453125, -0.06719970703125, -0.0092926025390625, 0.0104522705078125, -0.01038360595703125, -0.040252685546875, -0.00015413761138916016, -0.0240020751953125, 0.034423828125, 0.01494598388671875, 0.0457763671875, -0.0020351409912109375, -0.048095703125, 0.0283660888671875, 0.0105133056640625, -0.0100250244140625, -0.060455322265625, -0.03778076171875, -0.0271453857421875, -0.043792724609375, -0.027496337890625, -0.0042877197265625, -0.004665374755859375, -0.031829833984375, 0.002567291259765625, 0.03216552734375, 0.0293731689453125, -0.007122039794921875, -0.036834716796875, -0.015594482421875, -0.0184326171875, 0.0238189697265625, 0.0098114013671875, -0.00926971435546875, 0.01479339599609375, -0.020538330078125, 0.0154266357421875, -0.0280914306640625, -0.028472900390625, -0.0032958984375, 0.00008815526962280273, 0.005718231201171875, -0.031982421875, -0.043731689453125, 0.01166534423828125, -0.0675048828125, 0.026092529296875, 0.049652099609375, -0.00971221923828125, 0.0002696514129638672, -0.0025787353515625, -0.0007762908935546875, -0.005687713623046875, 0.018646240234375, 0.0079803466796875, -0.00894927978515625, 0.061737060546875, 0.00821685791015625, 0.055999755859375, -0.03350830078125, -0.02423095703125, 0.033111572265625, -0.0250701904296875, 0.04364013671875, 0.01152801513671875, -0.06903076171875, 0.0584716796875, 0.02862548828125, 0.03656005859375, 0.0281219482421875, -0.0031032562255859375, 0.0229644775390625, -0.053497314453125, -0.00449371337890625, -0.00019156932830810547, 0.00438690185546875, 0.06536865234375, 0.0002548694610595703, -0.01291656494140625, 0.054595947265625, -0.03924560546875, -0.0177764892578125, 0.039459228515625, 0.03167724609375, -0.0545654296875, -0.00864410400390625, -0.005039215087890625, -0.0223388671875, -0.0021457672119140625, 0.019744873046875, -0.0264434814453125, -0.0228424072265625, 0.00887298583984375, -0.04852294921875, -0.0340576171875, -0.004756927490234375, -0.0055999755859375, -0.0150146484375, -0.004730224609375, 0.0254364013671875, 0.0178070068359375, -0.03179931640625, 0.01241302490234375, 0.01062774658203125, 0.01154327392578125, -0.01068115234375, 0.0034580230712890625, 0.0106048583984375, -0.0261383056640625, -0.06378173828125, 0.01070404052734375, -0.0003101825714111328, -0.00482177734375, 0.0271453857421875, -0.0023632049560546875, 0.0200958251953125, 0.03680419921875, 0.006626129150390625, -0.0068817138671875, 0.0020275115966796875, -0.01171875, 0.0382080078125, -0.0078582763671875, -0.01284027099609375, 0.020721435546875, 0.00225830078125, -0.0091552734375, -0.0006928443908691406, -0.0016050338745117188, -0.01549530029296875, -0.055023193359375, 0.06512451171875, -0.052276611328125, -0.0070953369140625, 0.0036602020263671875, 0.01849365234375, 0.016143798828125, 0.017791748046875, -0.021331787109375, -0.0023632049560546875, 0.0182037353515625, -0.00814056396484375, -0.01425933837890625, 0.05029296875, 0.0201416015625, -0.042999267578125, 0.032989501953125, -0.015838623046875, 0.006103515625, 0.0102691650390625, 0.0230255126953125, -0.01381683349609375, 0.00528717041015625, -0.01331329345703125, 0.0276031494140625, -0.01629638671875, 0.0243072509765625, -0.0560302734375, -0.004970550537109375, -0.01438140869140625, 0.06439208984375, 0.084228515625, 0.01448822021484375, -0.04229736328125, -0.01202392578125, 0.06378173828125, 0.0635986328125, 0.01116943359375, 0.031646728515625, 0.037139892578125, 0.0037670135498046875, 0.05303955078125, 0.01461029052734375, 0.05242919921875, -0.024627685546875, 0.016876220703125, 0.04071044921875, 0.01209259033203125, 0.0207366943359375, -0.0128173828125, 0.0161285400390625, 0.0030269622802734375, -0.0195159912109375, 0.00461578369140625, -0.0340576171875, 0.007266998291015625, 0.0257568359375, 0.033538818359375, -0.0675048828125, -0.037841796875, -0.016204833984375, 0.0386962890625, 0.00838470458984375, 0.038543701171875, 0.0237579345703125, 0.018402099609375, 0.0679931640625, -0.00919342041015625, 0.02716064453125, 0.0305633544921875, -0.0259552001953125, 0.038818359375, -0.0033664703369140625, 0.018341064453125, -0.0322265625, 0.00905609130859375, 0.0310516357421875, 0.037506103515625, -0.0305023193359375, -0.06976318359375, 0.00562286376953125, 0.0203399658203125, 0.01091766357421875, 0.045379638671875, 0.02227783203125, 0.0391845703125, 0.1055908203125, -0.0592041015625, -0.01125335693359375, 0.0011968612670898438, 0.0257568359375, -0.01114654541015625, -0.00026488304138183594, -0.0099639892578125, -0.022674560546875, -0.024444580078125, 0.038543701171875, 0.004833221435546875, 0.0306396484375, -0.003612518310546875, 0.037445068359375, -0.0263214111328125, 0.0031337738037109375, -0.02020263671875, 0.006664276123046875, -0.00308990478515625, 0.0275115966796875, -0.02349853515625, -0.020172119140625, 0.017425537109375, 0.03277587890625, 0.01523590087890625, 0.0482177734375, 0.056182861328125, 0.05120849609375, 0.00487518310546875, -0.005123138427734375, 0.0333251953125, -0.0174713134765625, -0.000010371208190917969, -0.0474853515625, 0.07049560546875, 0.055755615234375, 0.034149169921875, -0.00986480712890625, 0.01739501953125, 0.0755615234375, 0.0244293212890625, -0.01506805419921875, 0.0210723876953125, -0.041534423828125, 0.032196044921875, -0.01280975341796875, 0.0635986328125, 0.03857421875, -0.08734130859375, -0.007778167724609375, -0.0361328125, -0.0941162109375, 0.058837890625, 0.054046630859375, -0.04156494140625, 0.00576019287109375, 0.01291656494140625, -0.04205322265625, 0.022186279296875, -0.0020275115966796875, 0.0204620361328125, 0.01461029052734375, -0.005863189697265625, 0.004177093505859375, -0.01157379150390625, -0.003589630126953125, 0.023284912109375, 0.01548004150390625, 0.0171051025390625, 0.0293426513671875, 0.00901031494140625, 0.0130462646484375, -0.0299224853515625, 0.0193634033203125, -0.045440673828125, -0.0338134765625, 0.0251922607421875, -0.0182647705078125, -0.0157928466796875, 0.006267547607421875, -0.0038509368896484375, -0.0211029052734375, 0.053985595703125, -0.0574951171875, -0.03070068359375, -0.010284423828125, 0.015960693359375, -0.03289794921875, 0.0166015625, -0.01546478271484375, 0.01953125, -0.007419586181640625, -0.042877197265625, 0.041717529296875, 0.0103607177734375, 0.01557159423828125, -0.01412200927734375, 0.00033974647521972656, 0.005367279052734375, -0.002349853515625, 0.05352783203125, -0.01348876953125, 0.0313720703125, -0.041595458984375, 0.027862548828125, 0.0010747909545898438, -0.0214691162109375, 0.022308349609375, 0.01605224609375, -0.026611328125, 0.021270751953125, -0.0170135498046875, -0.017364501953125, 0.035247802734375, 0.049468994140625, 0.00659942626953125, 0.0244598388671875, -0.022247314453125, -0.019287109375, -0.0296630859375, 0.016357421875, -0.041473388671875, -0.0271453857421875, -0.0023975372314453125, -0.000766754150390625, -0.00704193115234375, -0.058837890625, -0.077880859375, 0.0037174224853515625, 0.037353515625, -0.00014519691467285156, -0.029815673828125, 0.0307159423828125, -0.030426025390625, 0.01500701904296875, 0.01161956787109375, -0.02899169921875, 0.01389312744140625, 0.0625, -0.037811279296875, 0.0158233642578125, -0.024505615234375, -0.04351806640625, -0.0372314453125, 0.01302337646484375, 0.036407470703125, -0.01995849609375, -0.01485443115234375, -0.00234222412109375, 0.01207733154296875, 0.055328369140625, 0.0135040283203125, -0.0063629150390625, 0.01007843017578125, 0.0162811279296875, -0.039581298828125, -0.0258941650390625, 0.0158843994140625, 0.005695343017578125, -0.0287322998046875, -0.0002834796905517578, 0.0214691162109375, 0.0455322265625, -0.032012939453125, -0.127197265625, 0.041595458984375, -0.03070068359375, -0.050323486328125, -0.048004150390625, -0.0210418701171875, -0.0232696533203125, 0.031219482421875, -0.0132904052734375, -0.0005736351013183594, -0.0361328125, 0.045166015625, 0.00848388671875, -0.0004322528839111328, 0.049957275390625, -0.022918701171875, -0.055908203125, -0.025909423828125, -0.017852783203125, -0.004909515380859375, 0.01528167724609375, 0.0029201507568359375, 0.0021228790283203125, 0.033050537109375, -0.0445556640625, -0.055328369140625, -0.0259246826171875, -0.01446533203125, 0.01172637939453125, -0.040435791015625, -0.060882568359375, -0.05670166015625, 0.049774169921875, 0.0293121337890625, 0.0261077880859375, 0.0002815723419189453, 0.007587432861328125, -0.04400634765625, -0.0099334716796875, -0.01446533203125, -0.0126495361328125, -0.017913818359375, 0.0146942138671875, -0.005096435546875, 0.0029144287109375, 0.0034847259521484375, 0.0118560791015625, -0.0056304931640625, -0.013092041015625, 0.03546142578125, 0.00868988037109375, -0.06768798828125, 0.02557373046875, 0.03936767578125, -0.049072265625, -0.057098388671875, 0.03729248046875, -0.0194549560546875, -0.0283355712890625, -0.00970458984375, -0.004375457763671875, -0.01068878173828125, -0.012054443359375, 0.01233673095703125, 0.0025234222412109375, 0.0252227783203125, -0.0082855224609375, -0.005260467529296875, -0.036590576171875, 0.030914306640625, 0.003322601318359375, 0.023284912109375, -0.0628662109375, 0.07598876953125, 0.0304412841796875, 0.10919189453125, 0.0089874267578125, 0.01043701171875, -0.00811767578125, 0.06744384765625, 0.0261993408203125, -0.041778564453125, 0.06182861328125, -0.050628662109375, 0.0025920867919921875, 0.004070281982421875, -0.01415252685546875, -0.0034847259521484375, -0.00766754150390625, -0.022186279296875, -0.01690673828125, 0.011016845703125 ]
63cd8f23a7ad802450f07890e000272c956d9834
Wordpress Stackexchange Q: Get old values for post before saving new ones I'm using the save_post hook to do some additional logic after a post has been saved. However I need to find a way of getting the old values of the post, specifically in my case the slug/handle aka post_name. Tried using the wp_insert_post_data filter to catch the post and add the old slug as an additional field pre save but that doesn't seem to work. TL;DR want to achieve something like this: public function post_sync( $post_id, $post, $update ) { $post_new_handle = $post->post_name; $post_old_handle = $post->post_old_name; if($post_new_handle !== $post_old_handle) { //additional logic } //additional logic } Any way of achieving this? Thanks. A: The post_updated action gives you both old and new values as arguments before the new values are saved: do_action( 'post_updated', $post_ID, $post_after, $post_before );
Q: Get old values for post before saving new ones I'm using the save_post hook to do some additional logic after a post has been saved. However I need to find a way of getting the old values of the post, specifically in my case the slug/handle aka post_name. Tried using the wp_insert_post_data filter to catch the post and add the old slug as an additional field pre save but that doesn't seem to work. TL;DR want to achieve something like this: public function post_sync( $post_id, $post, $update ) { $post_new_handle = $post->post_name; $post_old_handle = $post->post_old_name; if($post_new_handle !== $post_old_handle) { //additional logic } //additional logic } Any way of achieving this? Thanks. A: The post_updated action gives you both old and new values as arguments before the new values are saved: do_action( 'post_updated', $post_ID, $post_after, $post_before );
wordpress
{ "language": "en", "length": 137, "provenance": "stackexchange_00019.jsonl.gz:485217", "question_score": "6", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/299863" }
[ 0.0321044921875, -0.00592041015625, -0.0129547119140625, -0.024261474609375, 0.01470947265625, -0.03155517578125, 0.041015625, -0.01116943359375, 0.0277862548828125, 0.007419586181640625, -0.047149658203125, 0.02392578125, 0.001220703125, -0.00962066650390625, 0.019287109375, -0.0006580352783203125, 0.0712890625, -0.041259765625, 0.050201416015625, 0.01263427734375, -0.01346588134765625, 0.0390625, 0.07574462890625, 0.04852294921875, 0.061370849609375, -0.033203125, 0.01209259033203125, -0.006595611572265625, 0.060821533203125, 0.019134521484375, 0.038970947265625, -0.052490234375, -0.005077362060546875, 0.006938934326171875, 0.012939453125, 0.0004379749298095703, 0.0218353271484375, 0.006404876708984375, 0.03375244140625, 0.0013494491577148438, 0.01155853271484375, 0.00628662109375, -0.0242919921875, -0.01495361328125, -0.031768798828125, -0.036529541015625, 0.0141448974609375, -0.01012420654296875, 0.0207672119140625, 0.02215576171875, -0.003513336181640625, -0.01354217529296875, -0.015838623046875, 0.06573486328125, -0.01250457763671875, -0.0091552734375, -0.0645751953125, 0.03656005859375, 0.048797607421875, 0.0068817138671875, -0.022308349609375, -0.03338623046875, 0.01358795166015625, -0.056549072265625, -0.00881195068359375, -0.0028076171875, 0.05987548828125, -0.008087158203125, -0.060577392578125, -0.0232696533203125, 0.06146240234375, -0.027099609375, -0.00888824462890625, -0.01416015625, 0.0262908935546875, 0.0006699562072753906, 0.007114410400390625, 0.033172607421875, -0.01097869873046875, 0.038787841796875, 0.003688812255859375, -0.01418304443359375, 0.0100860595703125, -0.0308990478515625, 0.0077667236328125, -0.0158843994140625, -0.016876220703125, 0.0012922286987304688, -0.029266357421875, -0.024749755859375, -0.02862548828125, -0.00140380859375, -0.02813720703125, -0.0014333724975585938, -0.0250396728515625, -0.01073455810546875, 0.005847930908203125, 0.0301666259765625, -0.027191162109375, 0.0021533966064453125, -0.022918701171875, -0.0141448974609375, -0.00038552284240722656, -0.007762908935546875, 0.013336181640625, 0.028778076171875, 0.01287841796875, -0.0262298583984375, 0.018890380859375, 0.007610321044921875, -0.018035888671875, 0.0242156982421875, -0.0391845703125, -0.0207061767578125, -0.0299224853515625, 0.05743408203125, -0.033416748046875, -0.01137542724609375, -0.00913238525390625, 0.0195159912109375, 0.018829345703125, 0.033416748046875, -0.017578125, -0.058685302734375, 0.044952392578125, 0.01241302490234375, -0.0257415771484375, -0.004913330078125, 0.010009765625, 0.03643798828125, -0.022430419921875, -0.0207977294921875, 0.050445556640625, 0.037506103515625, 0.0177459716796875, -0.0305023193359375, -0.0208282470703125, -0.035675048828125, -0.0308685302734375, 0.048492431640625, -0.050048828125, -0.06304931640625, -0.0214691162109375, -0.042083740234375, 0.0290985107421875, -0.0011148452758789062, -0.0155029296875, 0.0360107421875, 0.031707763671875, -0.0174102783203125, 0.045318603515625, -0.04669189453125, 0.0144195556640625, 0.0254669189453125, -0.01971435546875, 0.01262664794921875, 0.01092529296875, -0.011474609375, -0.01776123046875, -0.0259246826171875, 0.01461029052734375, -0.0181732177734375, -0.011962890625, -0.03363037109375, -0.06982421875, 0.0253753662109375, -0.02606201171875, -0.0066986083984375, 0.017333984375, 0.019866943359375, 0.0225677490234375, 0.005970001220703125, -0.0117034912109375, -0.010955810546875, -0.0158233642578125, -0.0119781494140625, -0.0150604248046875, -0.023590087890625, 0.03289794921875, 0.0063934326171875, -0.01055908203125, -0.01385498046875, 0.01050567626953125, 0.014739990234375, -0.0306854248046875, 0.02166748046875, -0.0060272216796875, 0.0166778564453125, 0.033660888671875, -0.0019378662109375, 0.013671875, 0.0003058910369873047, -0.046142578125, 0.044189453125, 0.00283050537109375, 0.0032100677490234375, 0.01551055908203125, 0.031219482421875, 0.005615234375, -0.064453125, -0.01274871826171875, 0.0238037109375, -0.035858154296875, 0.007030487060546875, -0.10015869140625, 0.003650665283203125, -0.029052734375, 0.044952392578125, -0.046539306640625, 0.028717041015625, 0.053375244140625, 0.0114593505859375, -0.05877685546875, 0.03887939453125, 0.0166778564453125, -0.014068603515625, -0.025726318359375, -0.01114654541015625, -0.0283355712890625, 0.048065185546875, -0.0401611328125, 0.0086212158203125, -0.07086181640625, -0.02423095703125, 0.006420135498046875, -0.012847900390625, -0.018890380859375, -0.0016698837280273438, -0.011138916015625, 0.012115478515625, -0.009033203125, 0.031280517578125, 0.0151519775390625, 0.001041412353515625, -0.022705078125, -0.00015163421630859375, -0.004993438720703125, -0.0802001953125, 0.00006830692291259766, 0.059234619140625, 0.03515625, 0.038238525390625, 0.005146026611328125, 0.0004012584686279297, 0.00913238525390625, -0.016021728515625, 0.0338134765625, -0.0296630859375, 0.01435089111328125, 0.08074951171875, 0.0020389556884765625, 0.025360107421875, 0.0019626617431640625, -0.030059814453125, 0.006603240966796875, 0.04339599609375, -0.0260162353515625, 0.0013113021850585938, -0.0146942138671875, 0.0092315673828125, -0.00577545166015625, -0.050506591796875, -0.01047515869140625, -0.031494140625, 0.007625579833984375, 0.0011234283447265625, 0.01299285888671875, 0.0031681060791015625, -0.00846099853515625, 0.00971221923828125, 0.0187835693359375, -0.04931640625, 0.01244354248046875, 0.002288818359375, -0.03558349609375, -0.00432586669921875, -0.02655029296875, 0.0156707763671875, 0.01210784912109375, -0.0051422119140625, -0.00876617431640625, 0.03997802734375, 0.033050537109375, -0.0075531005859375, -0.0294036865234375, -0.06182861328125, 0.026214599609375, -0.00688934326171875, 0.02716064453125, 0.01010894775390625, 0.002239227294921875, 0.0439453125, -0.01016998291015625, 0.057281494140625, 0.02655029296875, -0.01434326171875, -0.0031070709228515625, -0.03277587890625, 0.021209716796875, 0.0038433074951171875, 0.033172607421875, 0.0765380859375, 0.028045654296875, -0.00099945068359375, 0.0088348388671875, -0.01739501953125, 0.007373809814453125, 0.00182342529296875, -0.009613037109375, -0.0282745361328125, -0.04541015625, 0.0158538818359375, 0.0243072509765625, 0.06658935546875, -0.01488494873046875, -0.04150390625, 0.015411376953125, 0.01800537109375, -0.06585693359375, -0.0775146484375, -0.0380859375, -0.07586669921875, -0.024688720703125, -0.01220703125, -0.04296875, 0.026702880859375, -0.0029964447021484375, 0.01885986328125, 0.00726318359375, -0.021820068359375, -0.0670166015625, -0.04840087890625, -0.06427001953125, 0.007732391357421875, 0.0030536651611328125, 0.020355224609375, 0.0002791881561279297, 0.0596923828125, -0.003437042236328125, -0.0338134765625, -0.00928497314453125, -0.037445068359375, -0.0186614990234375, -0.010009765625, -0.0254058837890625, -0.01849365234375, 0.03717041015625, -0.0018339157104492188, 0.0207366943359375, 0.00846099853515625, 0.01354217529296875, -0.006961822509765625, -0.01035308837890625, 0.00392913818359375, 0.00925445556640625, 0.031524658203125, 0.01461029052734375, 0.01352691650390625, 0.040771484375, -0.0303192138671875, -0.047637939453125, -0.03887939453125, -0.0606689453125, 0.01117706298828125, 0.04632568359375, 0.0254669189453125, -0.0428466796875, 0.034698486328125, -0.0311737060546875, -0.01111602783203125, 0.057647705078125, -0.01007843017578125, -0.016448974609375, -0.0251312255859375, -0.059234619140625, -0.0205078125, -0.012481689453125, -0.011383056640625, 0.04791259765625, 0.004261016845703125, 0.03033447265625, -0.0013713836669921875, 0.0313720703125, -0.03704833984375, -0.057342529296875, 0.037384033203125, -0.032012939453125, 0.0243377685546875, -0.044921875, -0.03839111328125, -0.0243682861328125, 0.0885009765625, -0.0364990234375, -0.024261474609375, -0.00946044921875, 0.01806640625, -0.0035724639892578125, -0.027069091796875, -0.0006856918334960938, -0.01201629638671875, -0.04193115234375, 0.023101806640625, -0.0036411285400390625, -0.0101165771484375, -0.02569580078125, 0.04852294921875, -0.01424407958984375, -0.003360748291015625, 0.050811767578125, -0.02008056640625, 0.024505615234375, 0.01290130615234375, 0.02435302734375, -0.0009517669677734375, -0.0421142578125, 0.007049560546875, -0.054962158203125, -0.0157012939453125, 0.007724761962890625, 0.059356689453125, 0.01424407958984375, -0.0124053955078125, -0.00998687744140625, 0.02276611328125, 0.0162353515625, 0.01303863525390625, 0.00836944580078125, 0.0199127197265625, -0.0213623046875, -0.045501708984375, -0.00681304931640625, -0.058074951171875, 0.00021576881408691406, -0.05560302734375, -0.0245819091796875, -0.0208282470703125, -0.06036376953125, 0.0095977783203125, -0.04681396484375, -0.00836181640625, -0.056060791015625, -0.0190582275390625, 0.0157623291015625, 0.02099609375, -0.00018310546875, 0.01062774658203125, -0.038909912109375, -0.054473876953125, 0.041961669921875, 0.01580810546875, 0.0017976760864257812, -0.0012521743774414062, 0.08612060546875, 0.01470947265625, -0.0306854248046875, -0.0154876708984375, 0.00710296630859375, 0.039794921875, 0.0082244873046875, 0.005268096923828125, 0.0005917549133300781, -0.0235595703125, 0.0291748046875, 0.0158843994140625, -0.0282440185546875, -0.0207977294921875, 0.040252685546875, 0.01290130615234375, 0.01543426513671875, -0.0253143310546875, -0.01380157470703125, 0.04736328125, 0.04736328125, -0.025634765625, -0.019866943359375, -0.01123809814453125, 0.062286376953125, -0.034149169921875, 0.037811279296875, -0.059967041015625, -0.07080078125, 0.0247650146484375, -0.0308685302734375, 0.00798797607421875, 0.0253753662109375, -0.011962890625, 0.037109375, -0.003513336181640625, -0.00885772705078125, -0.050201416015625, -0.0285797119140625, 0.0032672882080078125, 0.0109100341796875, -0.039337158203125, -0.0139617919921875, -0.0202789306640625, -0.003032684326171875, 0.024169921875, -0.0302581787109375, -0.06134033203125, 0.005645751953125, -0.0204315185546875, 0.00800323486328125, 0.06524658203125, -0.0201263427734375, 0.02191162109375, 0.061370849609375, -0.0205078125, -0.0200653076171875, -0.005947113037109375, 0.025665283203125, -0.053741455078125, -0.0116119384765625, 0.0168609619140625, -0.0100250244140625, 0.029266357421875, 0.049407958984375, 0.0345458984375, 0.01464080810546875, -0.039794921875, 0.047454833984375, 0.0249786376953125, 0.00006413459777832031, 0.0193328857421875, 0.023406982421875, -0.016937255859375, -0.002178192138671875, -0.022857666015625, -0.006053924560546875, 0.0313720703125, 0.0233306884765625, 0.00238037109375, 0.0031261444091796875, -0.024749755859375, 0.0309906005859375, -0.01381683349609375, 0.0055999755859375, 0.037689208984375, 0.050079345703125, -0.044403076171875, 0.0178375244140625, 0.03375244140625, -0.0035266876220703125, -0.0367431640625, 0.01189422607421875, -0.017486572265625, -0.0256195068359375, 0.010955810546875, -0.031585693359375, 0.0297698974609375, -0.051666259765625, -0.047149658203125, 0.011383056640625, -0.021209716796875, -0.01904296875, 0.050140380859375, 0.0045166015625, -0.02813720703125, -0.0207672119140625, 0.06561279296875, -0.010711669921875, 0.0298614501953125, -0.050872802734375, 0.0012826919555664062, 0.0036830902099609375, -0.0002218484878540039, 0.045806884765625, -0.002716064453125, 0.0203704833984375, 0.002269744873046875, -0.034027099609375, -0.0213165283203125, 0.05950927734375, -0.0177154541015625, -0.00504302978515625, -0.042266845703125, 0.00164031982421875, 0.0213470458984375, 0.0021610260009765625, -0.00267791748046875, 0.026397705078125, 0.0127105712890625, -0.0052490234375, 0.05322265625, 0.013519287109375, 0.0455322265625, -0.023406982421875, 0.054107666015625, 0.01221466064453125, 0.0028247833251953125, -0.04937744140625, -0.01044464111328125, -0.009490966796875, -0.00791168212890625, 0.0012378692626953125, -0.00533294677734375, 0.0196990966796875, -0.0131683349609375, 0.01081085205078125, -0.005084991455078125, 0.0157928466796875, -0.0107269287109375, 0.0123443603515625, -0.020050048828125, -0.005725860595703125, -0.021697998046875, -0.0443115234375, 0.066162109375, -0.01328277587890625, -0.04156494140625, -0.0255126953125, -0.001827239990234375, 0.0146331787109375, -0.0045013427734375, -0.02001953125, -0.002044677734375, -0.032012939453125, 0.00502777099609375, 0.048583984375, 0.028533935546875, 0.05877685546875, 0.00785064697265625, 0.0428466796875, 0.05535888671875, -0.043548583984375, 0.01364898681640625, 0.0165252685546875, 0.061004638671875, 0.00811767578125, 0.0252532958984375, 0.07147216796875, -0.0239105224609375, 0.004688262939453125, 0.005725860595703125, 0.035888671875, -0.00594329833984375, 0.001865386962890625, 0.018646240234375, -0.04083251953125, -0.01250457763671875, 0.010345458984375, -0.0307769775390625, -0.005939483642578125, 0.040740966796875, -0.05035400390625, -0.0189971923828125, 0.0301513671875, 0.0120391845703125, -0.007167816162109375, -0.023162841796875, -0.004215240478515625, -0.0077667236328125, 0.01163482666015625, 0.01393890380859375, 0.005916595458984375, 0.0195159912109375, -0.017303466796875, 0.00881195068359375, -0.0237579345703125, -0.04034423828125, -0.0823974609375, -0.0460205078125, -0.006336212158203125, -0.0211944580078125, 0.01129150390625, 0.0207061767578125, 0.053802490234375, 0.0191192626953125, 0.039886474609375, -0.035919189453125, -0.01654052734375, 0.02813720703125, -0.026580810546875, -0.029937744140625, 0.004436492919921875, 0.0467529296875, -0.02557373046875, 0.0207672119140625, -0.0062255859375, -0.0180816650390625, -0.002838134765625, 0.01068115234375, 0.044036865234375, -0.0223541259765625, -0.0207366943359375, 0.0221099853515625, 0.0117034912109375, 0.006381988525390625, -0.00907135009765625, 0.0094757080078125, -0.03399658203125, -0.0130157470703125, -0.0131683349609375, -0.05029296875, -0.0225677490234375, -0.0288543701171875, -0.11444091796875, 0.126220703125, 0.02239990234375, 0.0841064453125, -0.016326904296875, 0.029632568359375, -0.034393310546875, -0.0076141357421875, -0.0906982421875, 0.06793212890625, 0.01026153564453125, 0.0689697265625, -0.0791015625, -0.0041351318359375, 0.002399444580078125, 0.00838470458984375, 0.071044921875, 0.0198822021484375, 0.00577545166015625, -0.0212554931640625, -0.0025615692138671875, 0.0109710693359375, -0.053741455078125, 0.0231781005859375, 0.00423431396484375, 0.017425537109375, 0.0609130859375, -0.044189453125, 0.0305938720703125, -0.00579833984375, 0.0008983612060546875, 0.01214599609375, 0.0029888153076171875, 0.00848388671875, -0.002033233642578125, 0.00106048583984375, 0.0031604766845703125, -0.01009368896484375, 0.006191253662109375, -0.051239013671875, 0.047698974609375, 0.007076263427734375, 0.040863037109375, -0.019744873046875, 0.0145263671875, -0.0254669189453125, 0.056060791015625, 0.0157012939453125, -0.006114959716796875, 0.0294952392578125, 0.00902557373046875, 0.0160369873046875, 0.0225372314453125, -0.008575439453125, 0.0273590087890625, 0.0264892578125, 0.08746337890625, 0.04547119140625, 0.023651123046875, -0.0083770751953125, 0.03204345703125, 0.037811279296875, 0.072021484375, -0.062255859375, 0.014556884765625, 0.0147857666015625, -0.00852203369140625, -0.0228118896484375, -0.04486083984375, -0.014923095703125, -0.0088958740234375, -0.004425048828125, -0.0457763671875, -0.0290679931640625, 0.009979248046875, 0.0511474609375, -0.00888824462890625, -0.0125885009765625, -0.01678466796875, -0.06268310546875, -0.0537109375, 0.026611328125, 0.03521728515625, 0.055389404296875, 0.00399017333984375, 0.05828857421875, 0.02587890625, -0.012725830078125, 0.005218505859375, -0.01003265380859375, 0.00789642333984375, 0.007328033447265625, -0.00553131103515625, -0.01312255859375, 0.00919342041015625, 0.0246429443359375, 0.03460693359375, 0.049835205078125, 0.0787353515625, 0.0077056884765625, -0.07684326171875, 0.01934814453125, 0.05419921875, -0.053466796875, 0.0201873779296875, -0.045562744140625, -0.0026264190673828125, -0.007282257080078125, -0.035125732421875, -0.01507568359375, -0.0316162109375, 0.029205322265625, -0.008758544921875, 0.060150146484375, -0.00920867919921875, 0.02105712890625, 0.06689453125, 0.00862884521484375, 0.04150390625, 0.019073486328125, -0.00424957275390625, 0.00461578369140625, -0.045989990234375, -0.032989501953125, -0.0004930496215820312, 0.0118408203125, -0.00687408447265625, 0.03155517578125, 0.01959228515625, -0.015869140625, 0.025665283203125, -0.0007171630859375, 0.0192108154296875, 0.01593017578125, 0.01248931884765625, 0.0034770965576171875, -0.038818359375, -0.02154541015625, -0.0009822845458984375, 0.021881103515625, 0.0082244873046875, 0.00914764404296875, 0.031005859375, 0.007266998291015625, -0.001293182373046875, 0.0181121826171875, -0.0196380615234375, -0.01428985595703125, -0.0006380081176757812, -0.0214996337890625, 0.0184478759765625, 0.00521087646484375, -0.00970458984375, 0.01232147216796875, 0.039459228515625, -0.01000213623046875, -0.0087738037109375, -0.0264892578125, 0.026580810546875, 0.00890350341796875, 0.0049896240234375, -0.03741455078125, -0.01094818115234375, 0.0190582275390625, -0.010406494140625, 0.005084991455078125, -0.019927978515625, 0.0236053466796875, 0.0228118896484375, 0.0217742919921875, -0.011077880859375, 0.021514892578125, -0.01287078857421875, 0.02276611328125, 0.030181884765625, -0.01312255859375, 0.041961669921875, 0.00904083251953125, -0.0224151611328125, 0.025543212890625, 0.01374053955078125, -0.0065765380859375, -0.0067901611328125, 0.0193023681640625, -0.0572509765625, -0.042633056640625, 0.036102294921875, 0.00867462158203125, 0.0233154296875, -0.06842041015625, 0.033935546875, -0.0147247314453125, -0.06439208984375, -0.0413818359375, -0.059661865234375, 0.00846099853515625, 0.03729248046875, -0.03106689453125, -0.031463623046875, -0.0675048828125, -0.028167724609375, 0.023406982421875, 0.0001481771469116211, -0.01233673095703125, -0.00218963623046875, -0.01904296875, -0.00403594970703125, -0.0047149658203125, -0.04632568359375, 0.027801513671875, 0.049468994140625, 0.01641845703125, -0.01096343994140625, -0.0207366943359375, 0.00630950927734375, 0.006496429443359375, -0.0018100738525390625, 0.01171112060546875, -0.011322021484375, -0.04412841796875, -0.006099700927734375, -0.0016002655029296875, 0.021392822265625, 0.01751708984375, -0.01299285888671875, 0.0218048095703125, 0.00601959228515625, -0.02520751953125, -0.09136962890625, 0.0122222900390625, -0.08258056640625, 0.00872039794921875, -0.032196044921875, -0.00809478759765625, 0.006256103515625, -0.0241241455078125, -0.03338623046875, 0.049072265625, -0.01136016845703125, -0.00965118408203125, -0.04302978515625, -0.0004935264587402344, -0.004230499267578125, 0.00489044189453125, -0.0120086669921875, -0.0278778076171875, -0.0263519287109375, 0.0224761962890625, -0.0050048828125, 0.0157928466796875, 0.0288848876953125, -0.046356201171875, -0.0694580078125, -0.0276641845703125, -0.04144287109375, 0.017364501953125, 0.02679443359375, -0.01207733154296875, 0.0229339599609375, 0.03094482421875, -0.0521240234375, 0.01102447509765625, -0.0212249755859375, 0.00372314453125, -0.0247344970703125, -0.034149169921875, -0.035064697265625, -0.004852294921875, 0.1201171875, 0.06573486328125, 0.037322998046875, -0.06201171875, 0.01288604736328125, -0.0125579833984375, -0.053955078125, 0.0126190185546875, 0.031829833984375, -0.0443115234375, 0.01629638671875, 0.01183319091796875, 0.0177001953125, 0.00980377197265625, -0.041259765625, 0.01181793212890625, -0.0233001708984375, 0.0171356201171875, 0.0008678436279296875, -0.019287109375, 0.000873565673828125, 0.049713134765625, -0.0259246826171875, 0.0166778564453125, 0.01372528076171875, 0.0043792724609375, 0.0367431640625, 0.04296875, 0.034210205078125, 0.022308349609375, -0.0228118896484375, -0.01032257080078125, 0.026275634765625, 0.0173187255859375, 0.0089874267578125, -0.037506103515625, -0.0201873779296875, -0.015899658203125, -0.00551605224609375, -0.026885986328125, 0.0223388671875, -0.004177093505859375, -0.0022487640380859375, 0.081298828125, -0.017547607421875, 0.0279998779296875, 0.0013408660888671875, 0.036346435546875, -0.0167999267578125, -0.00533294677734375, 0.0197601318359375, -0.03131103515625, -0.018463134765625, -0.006649017333984375, -0.035369873046875, -0.0615234375, 0.0295562744140625, 0.05126953125, -0.006084442138671875, 0.0204620361328125 ]
4389714d91bfe28e77707dfae5de6ec39fbd32c6
Wordpress Stackexchange Q: How to retrieve a value from get_posts()? I'm just trying to retrieve a value of 'title_name' from get_posts and gets the error "cannot use object of type WP_post as array..." The reason I'm not using have_posts/the_posts is because I want to display the titles in reverse: $arr = get_posts(); $arr = array_reverse($arr); foreach ($arr as $post) { echo $post['post_name']; echo "<br/>"; } Why can't I echo back the field 'post_name' ? Thanks in advance! A: Each post is an object, which changes the syntax you need to use to access the post name: $arr = get_posts(); $arr = array_reverse($arr); foreach ($arr as $post) { echo $post->post_name; echo "<br/>"; } As a side point, a slightly easier (and computationally more efficient) way to get your posts in reverse order is to use this instead of array_reverse() $arr = get_posts(array('order'=>'ASC')); More fun things you can do with get_posts()'s arguments can be found here and here.
Q: How to retrieve a value from get_posts()? I'm just trying to retrieve a value of 'title_name' from get_posts and gets the error "cannot use object of type WP_post as array..." The reason I'm not using have_posts/the_posts is because I want to display the titles in reverse: $arr = get_posts(); $arr = array_reverse($arr); foreach ($arr as $post) { echo $post['post_name']; echo "<br/>"; } Why can't I echo back the field 'post_name' ? Thanks in advance! A: Each post is an object, which changes the syntax you need to use to access the post name: $arr = get_posts(); $arr = array_reverse($arr); foreach ($arr as $post) { echo $post->post_name; echo "<br/>"; } As a side point, a slightly easier (and computationally more efficient) way to get your posts in reverse order is to use this instead of array_reverse() $arr = get_posts(array('order'=>'ASC')); More fun things you can do with get_posts()'s arguments can be found here and here.
wordpress
{ "language": "en", "length": 154, "provenance": "stackexchange_00019.jsonl.gz:485237", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/299960" }
[ 0.0011425018310546875, -0.010894775390625, 0.02557373046875, 0.041229248046875, -0.029815673828125, -0.015625, 0.08282470703125, -0.0300140380859375, 0.04669189453125, 0.014312744140625, -0.05023193359375, -0.0164794921875, -0.0205078125, -0.00992584228515625, -0.039947509765625, -0.035888671875, 0.054351806640625, -0.007762908935546875, 0.052154541015625, 0.0156707763671875, -0.0211944580078125, 0.061767578125, 0.05255126953125, 0.02801513671875, 0.03497314453125, -0.0251922607421875, 0.06427001953125, -0.02685546875, 0.04669189453125, -0.0100555419921875, 0.024169921875, -0.03289794921875, 0.027191162109375, 0.004009246826171875, 0.003936767578125, 0.0006098747253417969, 0.0276031494140625, -0.0245513916015625, 0.0079193115234375, 0.0165863037109375, 0.005962371826171875, 0.017852783203125, -0.0097808837890625, 0.00891876220703125, -0.030242919921875, -0.0305023193359375, 0.01898193359375, 0.0110321044921875, -0.0111236572265625, -0.0172576904296875, 0.0073089599609375, -0.027130126953125, 0.018463134765625, 0.038421630859375, -0.0213165283203125, -0.0185546875, -0.0078277587890625, 0.01049041748046875, 0.041290283203125, -0.025604248046875, -0.0321044921875, -0.0253448486328125, 0.03924560546875, -0.0140380859375, 0.0106964111328125, 0.005535125732421875, 0.07794189453125, 0.0082855224609375, -0.061614990234375, 0.0224151611328125, 0.0677490234375, -0.030914306640625, -0.006298065185546875, -0.03765869140625, 0.005229949951171875, -0.026275634765625, -0.034881591796875, -0.076904296875, 0.00432586669921875, 0.018463134765625, -0.0265045166015625, -0.00882720947265625, -0.065185546875, 0.0186309814453125, 0.00475311279296875, 0.05364990234375, -0.027130126953125, -0.0195465087890625, -0.0261077880859375, -0.03509521484375, -0.0121002197265625, 0.00791168212890625, -0.05029296875, -0.0016622543334960938, -0.01678466796875, -0.014312744140625, 0.0028934478759765625, 0.04071044921875, -0.0178375244140625, 0.00888824462890625, -0.029296875, -0.0128173828125, -0.00415802001953125, -0.0198211669921875, 0.01078033447265625, -0.0164031982421875, -0.00702667236328125, -0.019775390625, 0.0236968994140625, 0.038848876953125, -0.0284271240234375, 0.016326904296875, 0.003276824951171875, -0.01114654541015625, -0.0199432373046875, 0.0175628662109375, -0.0304412841796875, 0.0211639404296875, 0.00009500980377197266, 0.028533935546875, -0.002437591552734375, 0.01029205322265625, 0.016693115234375, -0.0296783447265625, 0.012603759765625, 0.01523590087890625, -0.0225372314453125, -0.0296173095703125, -0.00017750263214111328, 0.053192138671875, -0.006378173828125, -0.00959014892578125, 0.0279083251953125, 0.0191192626953125, -0.005290985107421875, -0.0287628173828125, -0.026275634765625, -0.01210784912109375, -0.007450103759765625, 0.0017213821411132812, 0.004833221435546875, -0.0268402099609375, 0.0330810546875, 0.0033550262451171875, 0.01523590087890625, -0.00930023193359375, 0.0015325546264648438, 0.0240936279296875, 0.01275634765625, -0.0128936767578125, 0.03363037109375, -0.012664794921875, -0.007358551025390625, 0.029022216796875, 0.017059326171875, 0.005489349365234375, 0.01953125, -0.024810791015625, 0.01078033447265625, -0.031768798828125, 0.0281524658203125, -0.01020050048828125, -0.0048675537109375, -0.024871826171875, -0.04986572265625, 0.01184844970703125, -0.01059722900390625, -0.0171661376953125, 0.018768310546875, 0.023193359375, -0.0019989013671875, -0.0217132568359375, 0.00475311279296875, -0.002552032470703125, -0.0189056396484375, 0.01000213623046875, -0.02117919921875, -0.007427215576171875, 0.0025463104248046875, 0.0219573974609375, -0.0163421630859375, -0.031585693359375, -0.043792724609375, 0.0187530517578125, -0.0355224609375, 0.0269622802734375, 0.004306793212890625, 0.02587890625, 0.011871337890625, 0.01447296142578125, 0.01074981689453125, 0.0516357421875, -0.037017822265625, 0.032073974609375, -0.01059722900390625, -0.021484375, 0.00940704345703125, 0.00759124755859375, -0.006649017333984375, -0.021759033203125, 0.00905609130859375, 0.002197265625, 0.0019388198852539062, 0.01824951171875, -0.03448486328125, 0.0015048980712890625, -0.01776123046875, 0.02294921875, -0.018890380859375, 0.047119140625, 0.035919189453125, 0.0263824462890625, -0.056671142578125, 0.027557373046875, -0.0033283233642578125, -0.0281219482421875, -0.008514404296875, 0.0136871337890625, -0.0369873046875, 0.01332855224609375, -0.06280517578125, -0.053863525390625, -0.05511474609375, 0.042022705078125, 0.0631103515625, -0.0012922286987304688, -0.0129547119140625, -0.025390625, 0.03179931640625, 0.03082275390625, -0.0677490234375, 0.0029144287109375, -0.0288238525390625, 0.00428009033203125, -0.00360870361328125, 0.0029201507568359375, -0.00677490234375, -0.07037353515625, 0.026397705078125, 0.04974365234375, 0.0345458984375, 0.0445556640625, -0.0021305084228515625, -0.007648468017578125, 0.03167724609375, -0.049407958984375, -0.00033974647521972656, -0.0130767822265625, 0.005741119384765625, 0.06475830078125, 0.0092926025390625, 0.022705078125, -0.006214141845703125, -0.0272216796875, -0.028533935546875, 0.051788330078125, -0.004581451416015625, 0.04443359375, -0.00910186767578125, -0.0042877197265625, -0.006999969482421875, -0.03253173828125, -0.0166168212890625, -0.018402099609375, 0.034393310546875, 0.0181427001953125, 0.028228759765625, 0.011566162109375, -0.03363037109375, 0.03680419921875, -0.0036258697509765625, -0.06402587890625, 0.00543212890625, -0.0006985664367675781, -0.055572509765625, 0.0430908203125, -0.03619384765625, 0.0155029296875, -0.0107574462890625, -0.004669189453125, 0.0027065277099609375, 0.05303955078125, -0.00157928466796875, -0.01087188720703125, -0.01123046875, -0.0275726318359375, 0.00365447998046875, 0.034210205078125, -0.032684326171875, -0.00963592529296875, -0.0019350051879882812, 0.054443359375, -0.019500732421875, 0.038726806640625, -0.024383544921875, 0.01351165771484375, 0.03326416015625, -0.056427001953125, 0.00971221923828125, -0.010955810546875, 0.055206298828125, 0.06280517578125, 0.03082275390625, -0.017974853515625, 0.0128173828125, -0.02435302734375, -0.01013946533203125, 0.01497650146484375, -0.006374359130859375, -0.00872802734375, -0.0667724609375, 0.01898193359375, 0.0361328125, 0.0732421875, 0.029266357421875, -0.057403564453125, 0.01453399658203125, 0.048858642578125, -0.1302490234375, -0.143310546875, 0.036224365234375, -0.08807373046875, -0.001659393310546875, -0.002399444580078125, -0.05047607421875, -0.01406097412109375, 0.0261383056640625, 0.0015201568603515625, 0.03497314453125, -0.00357818603515625, -0.062347412109375, -0.0164337158203125, -0.07757568359375, -0.0188446044921875, -0.01125335693359375, 0.0213165283203125, 0.0025177001953125, 0.0416259765625, 0.0159454345703125, -0.01035308837890625, 0.018524169921875, 0.0780029296875, -0.01351165771484375, -0.0201873779296875, -0.00615692138671875, 0.004070281982421875, -0.017547607421875, 0.0193328857421875, -0.01239776611328125, -0.0116729736328125, 0.00725555419921875, -0.0281829833984375, -0.0162506103515625, 0.00562286376953125, 0.0364990234375, 0.00794219970703125, 0.005130767822265625, 0.02978515625, 0.06768798828125, -0.01445770263671875, -0.0538330078125, -0.0169525146484375, -0.07452392578125, 0.0013322830200195312, 0.0450439453125, 0.026824951171875, -0.0208892822265625, 0.0149688720703125, -0.0134429931640625, 0.00959014892578125, -0.0112457275390625, 0.007236480712890625, 0.019989013671875, 0.0023708343505859375, 0.0113983154296875, 0.01071929931640625, 0.0265045166015625, -0.0156707763671875, -0.0172271728515625, 0.0105438232421875, 0.00359344482421875, 0.0023097991943359375, -0.0232696533203125, -0.009552001953125, -0.0682373046875, 0.038330078125, -0.044586181640625, 0.01462554931640625, -0.03155517578125, -0.021759033203125, 0.0023746490478515625, 0.0865478515625, -0.039794921875, -0.022430419921875, -0.005298614501953125, 0.027862548828125, -0.0477294921875, -0.05181884765625, -0.0197296142578125, 0.0012445449829101562, -0.044921875, 0.0032100677490234375, -0.041290283203125, -0.0047454833984375, -0.0024585723876953125, 0.007442474365234375, -0.01186370849609375, -0.03582763671875, 0.0271148681640625, -0.035247802734375, 0.03912353515625, 0.004566192626953125, 0.004467010498046875, 0.0106048583984375, -0.0241546630859375, -0.0215911865234375, -0.09393310546875, -0.0333251953125, 0.053375244140625, 0.041412353515625, -0.031402587890625, -0.0043182373046875, -0.004886627197265625, 0.06976318359375, -0.006557464599609375, 0.00980377197265625, 0.016815185546875, 0.034820556640625, 0.004344940185546875, -0.0384521484375, -0.01198577880859375, -0.03839111328125, 0.00841522216796875, -0.0151824951171875, -0.0165557861328125, -0.010986328125, -0.0587158203125, 0.0035915374755859375, -0.037689208984375, -0.0258941650390625, -0.015655517578125, -0.0016269683837890625, 0.015960693359375, 0.0390625, -0.0250701904296875, 0.039459228515625, -0.031494140625, -0.038055419921875, 0.0447998046875, 0.031463623046875, -0.0005717277526855469, -0.007022857666015625, 0.057830810546875, 0.01218414306640625, -0.039703369140625, -0.0236358642578125, -0.019561767578125, 0.0164642333984375, -0.0052490234375, 0.04766845703125, -0.0138702392578125, -0.0256195068359375, 0.1055908203125, -0.01751708984375, -0.02490234375, 0.02557373046875, -0.00649261474609375, -0.00030922889709472656, -0.038726806640625, 0.0175018310546875, -0.00632476806640625, 0.01239776611328125, 0.03680419921875, 0.0034427642822265625, -0.04541015625, 0.0223541259765625, 0.0535888671875, -0.047149658203125, 0.04693603515625, -0.02154541015625, -0.053619384765625, 0.016326904296875, -0.0165863037109375, -0.0059814453125, 0.01287078857421875, 0.001575469970703125, -0.005962371826171875, -0.021514892578125, -0.0005040168762207031, -0.02154541015625, 0.007205963134765625, -0.01538848876953125, 0.01300811767578125, -0.0032444000244140625, -0.0150604248046875, -0.01238250732421875, -0.0034809112548828125, 0.038330078125, 0.00867462158203125, -0.04144287109375, 0.002094268798828125, -0.01959228515625, 0.03521728515625, 0.01047515869140625, -0.0256500244140625, 0.01422119140625, 0.06561279296875, 0.007205963134765625, 0.00959014892578125, -0.01459503173828125, 0.04443359375, -0.016845703125, 0.02716064453125, 0.035858154296875, -0.0183563232421875, -0.0154266357421875, 0.12103271484375, 0.00588226318359375, 0.055999755859375, -0.03863525390625, 0.0227813720703125, 0.006381988525390625, 0.0301055908203125, 0.00583648681640625, -0.005069732666015625, 0.005626678466796875, 0.0131072998046875, 0.01468658447265625, -0.044891357421875, 0.005496978759765625, 0.0156707763671875, 0.03472900390625, 0.0186004638671875, -0.0073394775390625, 0.01238250732421875, -0.01611328125, -0.03094482421875, 0.040740966796875, 0.005764007568359375, -0.038238525390625, -0.05328369140625, -0.034088134765625, 0.0288543701171875, 0.001964569091796875, 0.006351470947265625, -0.01311492919921875, -0.00998687744140625, 0.0261993408203125, -0.060272216796875, 0.01204681396484375, -0.01044464111328125, -0.0029354095458984375, -0.01337432861328125, -0.0183563232421875, 0.005771636962890625, 0.0063018798828125, -0.017547607421875, -0.008209228515625, -0.031829833984375, 0.03167724609375, -0.020050048828125, 0.0174560546875, -0.03399658203125, 0.00904083251953125, -0.07177734375, 0.0112762451171875, 0.043304443359375, 0.0462646484375, -0.04071044921875, 0.0070037841796875, -0.050933837890625, -0.005870819091796875, 0.00989532470703125, -0.047607421875, -0.0229339599609375, -0.0261993408203125, -0.0172119140625, 0.01546478271484375, 0.00667572021484375, 0.00888824462890625, 0.01708984375, 0.00794219970703125, -0.02825927734375, 0.0306243896484375, -0.01230621337890625, 0.06756591796875, 0.003021240234375, 0.025360107421875, 0.0243682861328125, 0.046173095703125, -0.01873779296875, -0.0208282470703125, 0.01168060302734375, -0.07171630859375, -0.04364013671875, 0.000995635986328125, -0.0328369140625, 0.03216552734375, 0.0206298828125, -0.00493621826171875, 0.001735687255859375, -0.007659912109375, 0.00024199485778808594, -0.0158538818359375, -0.02349853515625, -0.0216064453125, -0.021820068359375, 0.01055145263671875, -0.0193023681640625, -0.01206207275390625, -0.0302734375, -0.012481689453125, 0.0022296905517578125, -0.007266998291015625, -0.006481170654296875, 0.0150909423828125, -0.024078369140625, 0.00521087646484375, 0.055206298828125, 0.031402587890625, 0.0509033203125, 0.016265869140625, 0.035552978515625, 0.010345458984375, 0.048736572265625, 0.003803253173828125, -0.0300445556640625, 0.092041015625, 0.028594970703125, -0.0292510986328125, 0.054046630859375, -0.05328369140625, 0.002017974853515625, -0.002620697021484375, 0.03240966796875, 0.009368896484375, 0.01119232177734375, 0.0134429931640625, -0.0021820068359375, 0.043731689453125, 0.03546142578125, 0.00429534912109375, -0.0043182373046875, 0.02374267578125, -0.0654296875, -0.003353118896484375, 0.01006317138671875, -0.027862548828125, 0.009368896484375, -0.0328369140625, 0.057098388671875, -0.0106964111328125, -0.07244873046875, -0.0029506683349609375, 0.043609619140625, -0.0400390625, -0.0175628662109375, 0.0064544677734375, -0.01213836669921875, -0.04522705078125, -0.101806640625, -0.042327880859375, -0.0048828125, -0.0377197265625, 0.0411376953125, -0.003864288330078125, 0.0108642578125, 0.026702880859375, 0.00006598234176635742, 0.001911163330078125, -0.0209197998046875, -0.026123046875, -0.004840850830078125, -0.0201873779296875, -0.004302978515625, 0.024627685546875, -0.0013017654418945312, 0.0190582275390625, 0.00457763671875, -0.01407623291015625, -0.0005679130554199219, -0.0052947998046875, 0.029571533203125, 0.029510498046875, -0.034027099609375, 0.03173828125, -0.02606201171875, -0.02874755859375, -0.01242828369140625, 0.0231475830078125, -0.017852783203125, 0.02313232421875, 0.0029888153076171875, 0.0074920654296875, -0.01422882080078125, -0.023040771484375, -0.04833984375, 0.07037353515625, -0.0066070556640625, 0.010101318359375, 0.0245208740234375, 0.0236663818359375, -0.031341552734375, -0.0009183883666992188, -0.0208587646484375, 0.030181884765625, -0.00838470458984375, 0.042694091796875, -0.08441162109375, -0.0279998779296875, 0.0018167495727539062, 0.09161376953125, 0.016021728515625, -0.00043845176696777344, -0.020416259765625, -0.03778076171875, 0.0034694671630859375, 0.078857421875, 0.0228118896484375, 0.00003820657730102539, 0.037353515625, 0.057952880859375, 0.0809326171875, -0.03253173828125, 0.03466796875, -0.00222015380859375, 0.0296783447265625, 0.05804443359375, 0.0188446044921875, 0.00606536865234375, 0.018096923828125, -0.0487060546875, -0.04010009765625, 0.0014410018920898438, 0.0284576416015625, 0.0027866363525390625, 0.02459716796875, 0.04217529296875, 0.042449951171875, 0.0176849365234375, -0.019775390625, -0.016815185546875, 0.04693603515625, 0.021514892578125, -0.01451873779296875, 0.0426025390625, 0.00446319580078125, 0.021148681640625, 0.00311279296875, -0.00490570068359375, 0.001369476318359375, 0.03955078125, 0.022552490234375, 0.03485107421875, 0.01389312744140625, -0.0222625732421875, -0.005832672119140625, 0.0828857421875, 0.0435791015625, -0.03179931640625, -0.004421234130859375, 0.0087738037109375, -0.007114410400390625, -0.0015516281127929688, -0.03765869140625, -0.003631591796875, 0.020904541015625, 0.01611328125, -0.0750732421875, -0.00766754150390625, 0.04638671875, 0.0268402099609375, -0.00640106201171875, -0.034576416015625, -0.018646240234375, -0.016998291015625, -0.0211334228515625, 0.0117340087890625, -0.00255584716796875, 0.047393798828125, 0.0197296142578125, 0.037841796875, -0.034881591796875, -0.02362060546875, 0.0109100341796875, 0.0252532958984375, 0.0085601806640625, -0.0037689208984375, -0.01837158203125, -0.04620361328125, -0.01154327392578125, 0.015472412109375, 0.045318603515625, 0.001522064208984375, 0.037567138671875, 0.042022705078125, -0.0216522216796875, 0.01009368896484375, 0.01525115966796875, -0.00463104248046875, -0.03607177734375, -0.0014209747314453125, -0.052520751953125, -0.0089874267578125, -0.040802001953125, 0.020263671875, 0.02398681640625, -0.0264434814453125, -0.032958984375, 0.04376220703125, -0.005001068115234375, 0.018585205078125, 0.0244293212890625, 0.005069732666015625, 0.0127410888671875, -0.0014085769653320312, -0.058563232421875, -0.019744873046875, -0.029052734375, -0.0297393798828125, 0.01230621337890625, 0.034271240234375, -0.001888275146484375, 0.0165863037109375, -0.03546142578125, -0.04693603515625, 0.029022216796875, 0.0160064697265625, 0.03753662109375, 0.033843994140625, -0.027191162109375, -0.01186370849609375, -0.07177734375, -0.038482666015625, -0.0158233642578125, 0.0165252685546875, 0.018157958984375, -0.0164947509765625, 0.03314208984375, 0.04534912109375, -0.037139892578125, 0.03594970703125, -0.066650390625, -0.03460693359375, 0.03271484375, -0.015869140625, -0.003021240234375, 0.007266998291015625, 0.0119476318359375, 0.016845703125, 0.050140380859375, -0.0272674560546875, -0.004817962646484375, -0.0157318115234375, 0.0132293701171875, -0.032958984375, 0.027862548828125, -0.01468658447265625, -0.0164642333984375, -0.028045654296875, -0.00899505615234375, 0.04437255859375, 0.035614013671875, 0.007022857666015625, 0.005390167236328125, 0.007965087890625, -0.04644775390625, 0.037994384765625, -0.031341552734375, 0.06756591796875, 0.01959228515625, -0.007137298583984375, 0.01361083984375, 0.0030727386474609375, -0.007472991943359375, 0.0160064697265625, 0.043426513671875, -0.015716552734375, 0.00365447998046875, 0.034271240234375, -0.042327880859375, -0.027618408203125, 0.02899169921875, -0.0006093978881835938, 0.0139007568359375, -0.0557861328125, 0.0007529258728027344, -0.024383544921875, 0.0040283203125, -0.0301361083984375, -0.01654052734375, -0.02264404296875, -0.01416015625, -0.005947113037109375, -0.044036865234375, -0.01617431640625, -0.03387451171875, -0.0014581680297851562, -0.015899658203125, 0.0264129638671875, -0.0215606689453125, -0.01110076904296875, -0.06781005859375, -0.004154205322265625, -0.0452880859375, 0.028167724609375, 0.038970947265625, -0.0167083740234375, -0.003612518310546875, -0.029296875, -0.0279541015625, -0.006305694580078125, 0.022216796875, 0.022857666015625, -0.01763916015625, -0.023956298828125, 0.0328369140625, 0.01027679443359375, 0.05548095703125, 0.009857177734375, 0.019561767578125, 0.033447265625, 0.031829833984375, -0.09381103515625, -0.11468505859375, 0.037322998046875, -0.057769775390625, -0.0160675048828125, 0.001708984375, -0.004451751708984375, 0.01548004150390625, -0.022552490234375, -0.005687713623046875, 0.034210205078125, 0.006175994873046875, -0.01209259033203125, -0.052520751953125, -0.003879547119140625, -0.005443572998046875, 0.046234130859375, 0.00849151611328125, -0.03460693359375, -0.04364013671875, 0.01277923583984375, 0.00870513916015625, 0.03631591796875, 0.0149078369140625, 0.01039886474609375, -0.08489990234375, -0.0045623779296875, -0.0489501953125, 0.0127105712890625, -0.007904052734375, -0.00780487060546875, 0.024505615234375, 0.017852783203125, -0.033447265625, 0.0180816650390625, 0.0041961669921875, 0.01174163818359375, 0.0029964447021484375, -0.01168060302734375, -0.0234832763671875, -0.0012769699096679688, 0.0174713134765625, 0.061614990234375, 0.01111602783203125, -0.0421142578125, -0.022369384765625, -0.036376953125, -0.04541015625, -0.0197906494140625, 0.05279541015625, -0.1019287109375, -0.0248565673828125, 0.04241943359375, -0.003101348876953125, 0.0276336669921875, -0.044647216796875, -0.018585205078125, -0.0173187255859375, -0.0289764404296875, -0.00653076171875, -0.0014505386352539062, -0.0021572113037109375, 0.03802490234375, -0.029541015625, -0.032470703125, 0.0005855560302734375, 0.01230621337890625, 0.0025959014892578125, -0.00856781005859375, -0.0341796875, -0.0018777847290039062, 0.01110076904296875, 0.0028514862060546875, 0.005767822265625, 0.0201263427734375, 0.042999267578125, 0.01351165771484375, -0.0128021240234375, 0.016326904296875, 0.00482177734375, -0.003772735595703125, 0.01166534423828125, 0.0523681640625, 0.0164794921875, 0.0697021484375, -0.01360321044921875, 0.0706787109375, 0.00223541259765625, 0.0262908935546875, -0.007671356201171875, -0.0082855224609375, 0.0333251953125, -0.032806396484375, -0.00579071044921875, 0.01287841796875, -0.028228759765625, -0.03106689453125, 0.0276031494140625, 0.037628173828125, -0.00241851806640625, 0.01035308837890625 ]
dc1f23b8d4646f1a02de5246c4a6ae9e03cbc1ac
Wordpress Stackexchange Q: when returns wp_errors or 0 , how to set conditional tag I am making front-end post submit. and I almost completed. I want to redirect to specific page after submitting post in front-end successfully. I am using this function. wp_insert_post( array $postarr, bool $wp_error = false ) and this returns : The post ID on success. The value 0 or WP_Error on failure. $post_id = wp_insert_post( $post_data ); if( !$post_id || ?? ){ wp_redirect( site_url('/compledted/') ); } This is my code to make.I just want to redirect when submitting post is successfully finished. but I exactly don't know how to set if( ) conditions. can you help me? Thank you. A: you can test an error like that $post_id = wp_insert_post($post_data, TRUE); if (is_wp_error($post_id)) { // there is an error } wp_redirect(site_url('/compledted/')); exit();
Q: when returns wp_errors or 0 , how to set conditional tag I am making front-end post submit. and I almost completed. I want to redirect to specific page after submitting post in front-end successfully. I am using this function. wp_insert_post( array $postarr, bool $wp_error = false ) and this returns : The post ID on success. The value 0 or WP_Error on failure. $post_id = wp_insert_post( $post_data ); if( !$post_id || ?? ){ wp_redirect( site_url('/compledted/') ); } This is my code to make.I just want to redirect when submitting post is successfully finished. but I exactly don't know how to set if( ) conditions. can you help me? Thank you. A: you can test an error like that $post_id = wp_insert_post($post_data, TRUE); if (is_wp_error($post_id)) { // there is an error } wp_redirect(site_url('/compledted/')); exit();
wordpress
{ "language": "en", "length": 134, "provenance": "stackexchange_00019.jsonl.gz:485272", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/300122" }
[ 0.07916259765625, 0.01041412353515625, -0.022247314453125, -0.054595947265625, 0.03363037109375, -0.03363037109375, 0.0218048095703125, -0.0305633544921875, 0.03564453125, 0.0183868408203125, -0.035614013671875, -0.007061004638671875, 0.023651123046875, -0.0283355712890625, -0.02386474609375, -0.0194091796875, 0.019500732421875, -0.039306640625, 0.004150390625, -0.0086212158203125, 0.0136871337890625, -0.0103302001953125, 0.00628662109375, -0.017425537109375, 0.0005364418029785156, -0.0029239654541015625, 0.04248046875, -0.01507568359375, -0.00896453857421875, -0.0199432373046875, 0.0234375, 0.0110626220703125, 0.0255126953125, 0.0300140380859375, -0.048065185546875, 0.0175628662109375, 0.0282135009765625, 0.00843048095703125, -0.015838623046875, 0.06494140625, 0.024566650390625, -0.03253173828125, 0.0233917236328125, 0.0174560546875, -0.018310546875, -0.0282440185546875, 0.04193115234375, -0.01220703125, 0.0178680419921875, 0.036285400390625, 0.016937255859375, -0.0077362060546875, 0.018585205078125, -0.00473785400390625, -0.0256195068359375, -0.0093231201171875, -0.035186767578125, 0.01385498046875, 0.0291748046875, 0.061004638671875, -0.0073699951171875, -0.0087432861328125, -0.0173797607421875, -0.053192138671875, 0.001522064208984375, -0.0007686614990234375, -0.03179931640625, 0.02215576171875, -0.024658203125, -0.0006804466247558594, 0.01212310791015625, -0.030975341796875, -0.000046133995056152344, 0.0196380615234375, -0.037628173828125, -0.03643798828125, 0.05718994140625, -0.0032100677490234375, -0.01291656494140625, 0.01320648193359375, 0.0027065277099609375, 0.00061798095703125, 0.060638427734375, -0.0197601318359375, 0.03643798828125, 0.041473388671875, -0.02777099609375, -0.02587890625, -0.048126220703125, -0.01091766357421875, -0.035736083984375, -0.004367828369140625, -0.052032470703125, -0.0263824462890625, -0.01309967041015625, -0.032440185546875, 0.00269317626953125, 0.027313232421875, -0.01020050048828125, -0.01267242431640625, -0.0135650634765625, -0.0286865234375, -0.004795074462890625, -0.0208587646484375, 0.022247314453125, 0.0491943359375, -0.01058197021484375, -0.049591064453125, 0.00797271728515625, 0.0025539398193359375, -0.0017557144165039062, -0.0172576904296875, -0.049896240234375, -0.0220947265625, -0.053314208984375, 0.0283203125, -0.056976318359375, -0.029296875, 0.001644134521484375, 0.00926971435546875, -0.0027599334716796875, 0.041046142578125, 0.0083770751953125, -0.0643310546875, -0.0032825469970703125, -0.0211639404296875, -0.0016002655029296875, -0.046630859375, 0.01267242431640625, 0.0287933349609375, -0.03790283203125, 0.01324462890625, 0.07403564453125, -0.0079498291015625, -0.006175994873046875, -0.027679443359375, 0.0384521484375, -0.009002685546875, -0.0308074951171875, 0.0233154296875, 0.0187225341796875, -0.0270233154296875, -0.0263519287109375, 0.003772735595703125, 0.0343017578125, 0.06500244140625, 0.04656982421875, -0.039215087890625, -0.050506591796875, -0.0955810546875, 0.032684326171875, -0.0136260986328125, 0.0282135009765625, -0.0093536376953125, -0.003726959228515625, -0.0262451171875, -0.034088134765625, -0.00048160552978515625, 0.0177154541015625, -0.01534271240234375, 0.0516357421875, 0.02618408203125, 0.0531005859375, -0.0241851806640625, -0.05523681640625, -0.04248046875, -0.0958251953125, -0.038482666015625, 0.01561737060546875, 0.08258056640625, -0.049896240234375, 0.0232696533203125, -0.036102294921875, -0.00604248046875, -0.01435089111328125, -0.0055389404296875, 0.0316162109375, 0.00612640380859375, 0.003063201904296875, 0.05523681640625, -0.001689910888671875, -0.02899169921875, 0.02252197265625, -0.00780487060546875, -0.045562744140625, 0.0221710205078125, 0.0180511474609375, 0.05206298828125, -0.00769805908203125, 0.0248260498046875, 0.01548004150390625, 0.044830322265625, -0.01480865478515625, 0.0290679931640625, -0.03521728515625, -0.046630859375, -0.01206207275390625, 0.002437591552734375, -0.0325927734375, 0.0299072265625, -0.03497314453125, 0.005207061767578125, 0.01247406005859375, 0.0124053955078125, -0.040679931640625, 0.0205078125, -0.04296875, 0.042205810546875, -0.0146026611328125, 0.0227813720703125, 0.0035858154296875, -0.0277862548828125, 0.0018224716186523438, 0.0128021240234375, 0.01285552978515625, 0.01031494140625, -0.0511474609375, 0.006320953369140625, -0.0379638671875, 0.05023193359375, -0.06475830078125, -0.0276336669921875, -0.0560302734375, -0.0146026611328125, 0.04901123046875, -0.0161285400390625, 0.007259368896484375, -0.02618408203125, 0.052276611328125, 0.007549285888671875, -0.01348114013671875, 0.0005483627319335938, 0.0236053466796875, -0.0054168701171875, -0.0190277099609375, 0.0018978118896484375, 0.0029144287109375, -0.08197021484375, 0.0057830810546875, 0.06829833984375, 0.0242767333984375, 0.0322265625, -0.03131103515625, 0.00897979736328125, 0.013580322265625, -0.035491943359375, -0.005054473876953125, 0.00829315185546875, 0.0287628173828125, 0.03192138671875, -0.0269775390625, -0.031463623046875, 0.035919189453125, -0.086669921875, 0.0137786865234375, 0.042205810546875, -0.0606689453125, -0.03338623046875, 0.00762939453125, -0.01512908935546875, 0.006542205810546875, -0.03375244140625, 0.0092010498046875, -0.034149169921875, 0.017059326171875, -0.018707275390625, 0.0118408203125, -0.00302886962890625, -0.02606201171875, -0.006381988525390625, 0.033782958984375, -0.01215362548828125, 0.0012989044189453125, 0.0487060546875, 0.007289886474609375, 0.045928955078125, -0.039764404296875, -0.00228118896484375, 0.023223876953125, 0.01209259033203125, -0.028564453125, 0.048675537109375, -0.017120361328125, -0.019378662109375, -0.02447509765625, -0.0198974609375, 0.0096435546875, -0.00568389892578125, 0.036529541015625, -0.00809478759765625, 0.02252197265625, 0.0109710693359375, -0.042755126953125, 0.067626953125, -0.003215789794921875, -0.045562744140625, -0.0104522705078125, -0.052734375, 0.048858642578125, -0.046234130859375, 0.0245208740234375, 0.06939697265625, -0.033843994140625, 0.0323486328125, -0.001918792724609375, 0.056182861328125, -0.0025157928466796875, 0.007129669189453125, -0.0240478515625, -0.03851318359375, -0.005878448486328125, -0.00940704345703125, 0.0416259765625, 0.049072265625, 0.0252227783203125, -0.0207061767578125, 0.0283203125, 0.045806884765625, -0.057342529296875, -0.09375, -0.017425537109375, -0.0462646484375, 0.03131103515625, 0.0106353759765625, 0.0083770751953125, -0.0310516357421875, 0.032440185546875, 0.0114593505859375, -0.0133209228515625, 0.01245880126953125, -0.055908203125, -0.0149383544921875, -0.0684814453125, 0.03240966796875, -0.004840850830078125, 0.03265380859375, -0.008209228515625, 0.07049560546875, 0.0274658203125, -0.031768798828125, -0.00539398193359375, 0.0185546875, -0.03009033203125, -0.02349853515625, -0.053558349609375, -0.012176513671875, 0.02374267578125, -0.0025348663330078125, -0.0110015869140625, -0.0208740234375, 0.04339599609375, -0.012603759765625, -0.01312255859375, 0.00824737548828125, -0.0052032470703125, -0.01340484619140625, 0.0069122314453125, -0.0031070709228515625, -0.033447265625, -0.04638671875, -0.0211639404296875, -0.00292205810546875, -0.061553955078125, -0.00885772705078125, 0.041107177734375, -0.0222930908203125, 0.0035247802734375, -0.02752685546875, 0.0010385513305664062, 0.0036182403564453125, 0.025421142578125, -0.02032470703125, 0.046173095703125, -0.0162506103515625, -0.00041174888610839844, -0.053131103515625, 0.028656005859375, -0.0007829666137695312, 0.0025768280029296875, 0.00339508056640625, 0.0165557861328125, -0.0037403106689453125, -0.0037841796875, -0.063720703125, -0.03790283203125, -0.0001310110092163086, -0.073974609375, 0.002391815185546875, -0.01248931884765625, 0.01377105712890625, 0.00957489013671875, 0.0592041015625, 0.0203399658203125, -0.004055023193359375, -0.038818359375, -0.022308349609375, 0.0149688720703125, -0.0301666259765625, 0.0023345947265625, -0.0025959014892578125, -0.0316162109375, 0.01617431640625, -0.017364501953125, 0.016693115234375, -0.028961181640625, 0.00885009765625, -0.01091766357421875, -0.0254364013671875, 0.0213165283203125, -0.040496826171875, 0.0036907196044921875, 0.0181121826171875, -0.0270843505859375, 0.0000045299530029296875, -0.00116729736328125, -0.04248046875, -0.07684326171875, -0.00688934326171875, 0.01331329345703125, 0.027008056640625, -0.01439666748046875, -0.003360748291015625, -0.0203857421875, 0.0254974365234375, 0.0030155181884765625, 0.006000518798828125, -0.031768798828125, 0.01287841796875, -0.016998291015625, -0.049835205078125, -0.04290771484375, -0.0215911865234375, -0.011566162109375, -0.0168304443359375, -0.027313232421875, 0.029815673828125, -0.0144805908203125, 0.0120697021484375, 0.015472412109375, -0.023345947265625, -0.03997802734375, -0.033843994140625, -0.0233154296875, 0.033538818359375, 0.00565338134765625, -0.0212860107421875, -0.0589599609375, -0.060455322265625, 0.0249176025390625, -0.0101470947265625, -0.030029296875, 0.01509857177734375, 0.042816162109375, 0.0127105712890625, -0.0008769035339355469, 0.007472991943359375, 0.0203094482421875, 0.036163330078125, -0.0137786865234375, 0.0247344970703125, 0.0226593017578125, -0.0267791748046875, 0.051513671875, 0.0007762908935546875, -0.0209808349609375, 0.0097198486328125, 0.0313720703125, -0.007289886474609375, -0.036529541015625, 0.019287109375, -0.039093017578125, 0.01178741455078125, 0.048736572265625, -0.012237548828125, 0.01168060302734375, 0.0017337799072265625, 0.017242431640625, -0.0249786376953125, -0.00971221923828125, -0.020172119140625, 0.0232086181640625, -0.0130157470703125, 0.022735595703125, -0.0018634796142578125, 0.037353515625, 0.006336212158203125, -0.039306640625, 0.0184326171875, -0.00010311603546142578, 0.035858154296875, -0.021392822265625, 0.0197906494140625, 0.009521484375, 0.042816162109375, 0.0011777877807617188, 0.019256591796875, -0.0018987655639648438, 0.036376953125, 0.00995635986328125, -0.01265716552734375, -0.01361083984375, -0.0184173583984375, -0.029388427734375, -0.0009794235229492188, 0.00765228271484375, 0.039764404296875, 0.01421356201171875, -0.038299560546875, -0.0220489501953125, -0.00423431396484375, 0.0006556510925292969, -0.062286376953125, 0.0179901123046875, 0.018524169921875, 0.005565643310546875, -0.0303802490234375, 0.0927734375, 0.07867431640625, 0.00534820556640625, -0.050323486328125, 0.0166015625, 0.04071044921875, 0.00881195068359375, 0.020965576171875, 0.02874755859375, -0.0281524658203125, -0.00043129920959472656, 0.00006282329559326172, -0.035125732421875, -0.02532958984375, 0.00022780895233154297, 0.04864501953125, -0.042144775390625, -0.01270294189453125, 0.053375244140625, -0.02313232421875, 0.0008721351623535156, 0.0478515625, 0.028839111328125, -0.051666259765625, -0.01325225830078125, -0.0021724700927734375, 0.040771484375, -0.03955078125, -0.01448822021484375, 0.0011577606201171875, -0.025634765625, 0.0299072265625, 0.058868408203125, -0.01198577880859375, 0.00826263427734375, -0.0019521713256835938, -0.00858306884765625, -0.028228759765625, -0.002498626708984375, 0.031036376953125, 0.045654296875, -0.040618896484375, -0.038116455078125, 0.022735595703125, -0.05914306640625, 0.0012254714965820312, -0.031829833984375, 0.04071044921875, -0.0166015625, 0.0169677734375, 0.060333251953125, 0.0347900390625, -0.054931640625, 0.0015840530395507812, -0.024688720703125, -0.01654052734375, 0.015899658203125, 0.01026153564453125, -0.044464111328125, -0.018798828125, 0.03662109375, 0.01352691650390625, 0.0005426406860351562, -0.04730224609375, -0.006221771240234375, 0.0249786376953125, 0.034423828125, 0.0205535888671875, 0.001682281494140625, 0.05194091796875, -0.0234222412109375, 0.03173828125, 0.00403594970703125, 0.0311126708984375, 0.0200042724609375, -0.0299530029296875, -0.0199737548828125, -0.06427001953125, 0.0173187255859375, 0.0016069412231445312, 0.0301971435546875, 0.0506591796875, 0.01617431640625, 0.024322509765625, 0.0258331298828125, 0.023590087890625, 0.0179443359375, -0.0037593841552734375, -0.03985595703125, 0.0207366943359375, -0.004390716552734375, 0.052398681640625, -0.02978515625, -0.034454345703125, 0.015655517578125, 0.03643798828125, -0.00543975830078125, -0.0176544189453125, -0.01399993896484375, -0.0105438232421875, -0.053131103515625, 0.042938232421875, 0.05615234375, 0.0213775634765625, 0.0394287109375, 0.0006847381591796875, 0.01534271240234375, 0.028564453125, 0.0028629302978515625, -0.0491943359375, 0.004058837890625, 0.050994873046875, 0.0009512901306152344, -0.0465087890625, 0.0267486572265625, -0.029541015625, -0.003078460693359375, 0.052947998046875, 0.06622314453125, -0.07806396484375, 0.0124969482421875, 0.065673828125, -0.007312774658203125, -0.031951904296875, -0.032012939453125, 0.0255126953125, 0.014801025390625, 0.049591064453125, 0.033905029296875, -0.018890380859375, 0.0184478759765625, 0.004177093505859375, -0.0015382766723632812, -0.02410888671875, 0.0692138671875, 0.0184783935546875, -0.064208984375, 0.014556884765625, 0.060272216796875, -0.0259857177734375, -0.0016641616821289062, 0.007167816162109375, -0.0005450248718261719, -0.045501708984375, -0.060272216796875, -0.0137176513671875, -0.0028514862060546875, -0.0189666748046875, 0.0161895751953125, 0.007354736328125, 0.03955078125, 0.03680419921875, 0.00878143310546875, -0.01097869873046875, -0.0109710693359375, 0.018218994140625, -0.040374755859375, -0.0260772705078125, 0.0181427001953125, 0.02276611328125, -0.049774169921875, 0.034515380859375, -0.037811279296875, -0.045379638671875, -0.005481719970703125, -0.004863739013671875, 0.04949951171875, -0.040802001953125, -0.0181732177734375, -0.007785797119140625, 0.01236724853515625, 0.0286712646484375, -0.0267486572265625, 0.0364990234375, -0.057098388671875, -0.01727294921875, -0.025848388671875, -0.03460693359375, -0.03704833984375, -0.07733154296875, -0.062347412109375, 0.11297607421875, -0.017578125, 0.0236663818359375, 0.004238128662109375, 0.036834716796875, -0.0213165283203125, 0.027923583984375, -0.0271148681640625, 0.048248291015625, 0.00608062744140625, 0.02044677734375, -0.0369873046875, -0.0057525634765625, 0.007175445556640625, 0.04180908203125, 0.0240936279296875, 0.0096893310546875, -0.0160064697265625, 0.0215301513671875, 0.046722412109375, 0.04541015625, 0.00821685791015625, 0.014129638671875, -0.0026187896728515625, -0.00965118408203125, 0.0088348388671875, -0.0499267578125, 0.0107269287109375, -0.01953125, 0.01338958740234375, 0.0146331787109375, 0.01119232177734375, -0.003025054931640625, -0.00576019287109375, -0.0225677490234375, -0.04278564453125, 0.00628662109375, 0.0147552490234375, 0.02996826171875, 0.0180816650390625, 0.0307464599609375, 0.04266357421875, -0.06195068359375, 0.0208892822265625, -0.03021240234375, 0.05133056640625, -0.0279083251953125, -0.00386810302734375, 0.0166778564453125, 0.002452850341796875, 0.0237579345703125, 0.0257720947265625, 0.005840301513671875, 0.0318603515625, 0.0103302001953125, 0.045867919921875, 0.03173828125, 0.00036025047302246094, -0.00600433349609375, 0.03857421875, 0.043609619140625, 0.040863037109375, -0.03839111328125, 0.018768310546875, 0.0036468505859375, -0.005977630615234375, -0.01137542724609375, -0.0280609130859375, 0.03662109375, 0.0035247802734375, -0.0189361572265625, -0.017425537109375, -0.0106658935546875, 0.0247955322265625, -0.01439666748046875, -0.0029315948486328125, -0.0135498046875, 0.01346588134765625, 0.0172271728515625, -0.018096923828125, -0.01322174072265625, 0.0258331298828125, 0.0626220703125, -0.0145263671875, 0.04052734375, -0.031005859375, -0.006351470947265625, 0.01451873779296875, 0.00978851318359375, 0.0211334228515625, -0.00908660888671875, -0.0007805824279785156, -0.017181396484375, 0.01485443115234375, 0.023193359375, 0.02252197265625, 0.01397705078125, 0.04638671875, 0.0192718505859375, -0.039154052734375, -0.0005178451538085938, 0.0253753662109375, -0.024383544921875, -0.017578125, -0.0223846435546875, -0.0284423828125, -0.0019378662109375, -0.0188751220703125, 0.0186920166015625, 0.005641937255859375, 0.01558685302734375, -0.0219879150390625, 0.02716064453125, -0.01122283935546875, -0.028411865234375, 0.0160980224609375, -0.025054931640625, 0.052032470703125, 0.00850677490234375, -0.05780029296875, -0.0234832763671875, -0.0019350051879882812, -0.0264739990234375, -0.0018987655639648438, 0.0264129638671875, -0.01078033447265625, 0.0251922607421875, 0.010772705078125, -0.021484375, 0.02984619140625, -0.00955963134765625, 0.0217437744140625, 0.029571533203125, 0.006618499755859375, -0.0036296844482421875, -0.0498046875, -0.01062774658203125, -0.0012578964233398438, -0.0114593505859375, 0.00827789306640625, 0.05023193359375, 0.03460693359375, -0.0033626556396484375, -0.0305023193359375, 0.0129241943359375, -0.041015625, -0.0465087890625, 0.0484619140625, -0.0174102783203125, -0.01369476318359375, 0.00395965576171875, -0.016021728515625, 0.0261383056640625, -0.0019350051879882812, -0.0023784637451171875, 0.007617950439453125, -0.04888916015625, 0.0190887451171875, 0.0484619140625, 0.0565185546875, -0.00737762451171875, -0.03759765625, -0.01666259765625, 0.04547119140625, 0.0210418701171875, 0.044708251953125, -0.04931640625, 0.062225341796875, -0.0888671875, -0.022796630859375, 0.0219268798828125, -0.103515625, -0.00870513916015625, 0.01800537109375, -0.06298828125, 0.0033969879150390625, -0.00952911376953125, -0.0241546630859375, 0.0028476715087890625, 0.01065826416015625, -0.006999969482421875, 0.005809783935546875, 0.03717041015625, -0.019317626953125, 0.0006937980651855469, 0.00481414794921875, -0.016143798828125, -0.0025959014892578125, 0.00833892822265625, -0.01413726806640625, -0.030792236328125, -0.021636962890625, 0.006130218505859375, 0.006961822509765625, -0.035430908203125, 0.00799560546875, 0.01450347900390625, -0.018829345703125, 0.01070404052734375, -0.0202789306640625, 0.0127410888671875, -0.026458740234375, 0.0007758140563964844, -0.053985595703125, -0.01428985595703125, 0.07415771484375, -0.04010009765625, 0.048797607421875, 0.0040435791015625, 0.032562255859375, -0.072509765625, -0.0060272216796875, -0.0110321044921875, -0.00659942626953125, -0.0301361083984375, 0.005931854248046875, 0.05413818359375, -0.031585693359375, -0.0634765625, -0.0633544921875, -0.01934814453125, -0.01464080810546875, 0.0118408203125, -0.027618408203125, 0.017852783203125, -0.0008149147033691406, 0.005035400390625, -0.046875, -0.004787445068359375, -0.034088134765625, -0.01113128662109375, -0.0124664306640625, -0.0134735107421875, -0.007541656494140625, -0.0401611328125, -0.0457763671875, 0.06927490234375, -0.0015649795532226562, -0.0140838623046875, 0.0131683349609375, -0.0128173828125, -0.0174560546875, 0.01261138916015625, 0.013336181640625, -0.0271148681640625, -0.0194091796875, 0.00008314847946166992, 0.0112762451171875, -0.02239990234375, 0.057525634765625, -0.01195526123046875, -0.0253448486328125, -0.030303955078125, -0.0239410400390625, -0.01947021484375, 0.002208709716796875, -0.0001741647720336914, -0.0034465789794921875, 0.0268402099609375, -0.028045654296875, -0.009490966796875, -0.005100250244140625, -0.007495880126953125, -0.008453369140625, -0.055572509765625, -0.00951385498046875, -0.039459228515625, 0.06768798828125, -0.004116058349609375, 0.009796142578125, -0.01523590087890625, -0.061279296875, -0.0035457611083984375, -0.0335693359375, 0.007053375244140625, 0.023223876953125, -0.04974365234375, 0.0140228271484375, -0.0220794677734375, -0.0238494873046875, 0.03289794921875, 0.0146636962890625, -0.020111083984375, 0.01467132568359375, 0.02105712890625, -0.0229644775390625, -0.046112060546875, -0.034149169921875, 0.0555419921875, -0.0179290771484375, 0.028594970703125, -0.0030727386474609375, 0.026458740234375, 0.0269927978515625, 0.003017425537109375, 0.037078857421875, 0.05596923828125, -0.056488037109375, -0.02325439453125, 0.02850341796875, 0.0372314453125, -0.0111236572265625, -0.0181427001953125, 0.0223541259765625, 0.0113983154296875, -0.044952392578125, 0.0100555419921875, 0.068603515625, -0.01441192626953125, -0.045623779296875, 0.08978271484375, -0.035858154296875, 0.08367919921875, -0.0153045654296875, 0.037811279296875, -0.032928466796875, 0.0252685546875, 0.00638580322265625, -0.00885772705078125, 0.0239715576171875, 0.01387786865234375, 0.07391357421875, -0.026519775390625, 0.055450439453125, 0.04681396484375, 0.056488037109375, 0.022430419921875 ]
2579ba605cf5489edb525cb48756671105e0cf70
Wordpress Stackexchange Q: How to log out everywhere else, destroy all sessions "all other devices"? WordPress panel service "log out everywhere else" is doing a nice job. I want to use this as a function outside the panel. Screenshoot A: That button sends an AJAX request that runs wp_ajax_destroy_sessions(). It's not really abstracted in such a way that you can re-use it outside of AJAX, but if you copy the source into your own function, minus the JSON parts, then you could perform the same action yourself. The key part is this bit, which will destroy all sessions for a given user ID: $sessions = WP_Session_Tokens::get_instance( $user_id ); $sessions->destroy_all(); The rest of the function is just checking the user exists, checking permissions, and sending a JSON response. They might not be relevant for your use case, so the above might suffice.
Q: How to log out everywhere else, destroy all sessions "all other devices"? WordPress panel service "log out everywhere else" is doing a nice job. I want to use this as a function outside the panel. Screenshoot A: That button sends an AJAX request that runs wp_ajax_destroy_sessions(). It's not really abstracted in such a way that you can re-use it outside of AJAX, but if you copy the source into your own function, minus the JSON parts, then you could perform the same action yourself. The key part is this bit, which will destroy all sessions for a given user ID: $sessions = WP_Session_Tokens::get_instance( $user_id ); $sessions->destroy_all(); The rest of the function is just checking the user exists, checking permissions, and sending a JSON response. They might not be relevant for your use case, so the above might suffice. A: I know this is an old topic but destroy_all() will destroy all sessions but destroy_others() destroys all sessions except the current session Destroy all sessions: $sessions = WP_Session_Tokens::get_instance( $user_id ); $sessions->destroy_all(); Destroy all sessions (except current session): $sessions = WP_Session_Tokens::get_instance( $user_id ); $sessions->destroy_others( wp_get_session_token() );
wordpress
{ "language": "en", "length": 185, "provenance": "stackexchange_00019.jsonl.gz:485294", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/300219" }
[ 0.078857421875, 0.023193359375, -0.006000518798828125, -0.0190887451171875, 0.053558349609375, -0.05194091796875, 0.06707763671875, -0.03533935546875, 0.00894927978515625, 0.019561767578125, -0.0197601318359375, 0.00008732080459594727, -0.01910400390625, -0.01529693603515625, -0.0003807544708251953, -0.0214080810546875, 0.01446533203125, 0.01143646240234375, 0.007801055908203125, -0.01471710205078125, -0.00492095947265625, -0.01009368896484375, 0.0173492431640625, 0.04132080078125, 0.0031223297119140625, 0.013702392578125, 0.0247955322265625, -0.005039215087890625, -0.02783203125, -0.0294952392578125, 0.01187896728515625, 0.0239410400390625, -0.04168701171875, 0.068115234375, -0.00928497314453125, -0.039306640625, -0.03900146484375, 0.04815673828125, 0.04736328125, -0.01074981689453125, 0.046722412109375, -0.0390625, 0.0199432373046875, 0.00634765625, -0.00658416748046875, -0.004283905029296875, 0.020904541015625, -0.03851318359375, 0.03155517578125, -0.0180816650390625, 0.01345062255859375, 0.028289794921875, 0.0261383056640625, 0.000209808349609375, -0.03192138671875, -0.006114959716796875, 0.00994873046875, -0.0099334716796875, 0.0540771484375, -0.01361083984375, -0.031829833984375, -0.046875, 0.02777099609375, -0.040252685546875, -0.028350830078125, 0.017120361328125, -0.04779052734375, 0.0110931396484375, -0.0296630859375, -0.01189422607421875, 0.0296783447265625, -0.054534912109375, -0.0138702392578125, 0.0157318115234375, -0.0122528076171875, 0.0043792724609375, 0.007694244384765625, 0.005382537841796875, 0.014373779296875, 0.0255279541015625, -0.00951385498046875, -0.0423583984375, -0.038299560546875, 0.0022106170654296875, 0.00984954833984375, 0.0275421142578125, -0.005237579345703125, 0.0004038810729980469, -0.02569580078125, -0.010528564453125, -0.030731201171875, -0.0797119140625, 0.00896453857421875, 0.01419830322265625, 0.004009246826171875, -0.04327392578125, 0.02142333984375, 0.01007843017578125, 0.035064697265625, -0.0081024169921875, -0.0215301513671875, -0.02606201171875, -0.059722900390625, 0.0039520263671875, -0.00894927978515625, 0.045562744140625, 0.0189361572265625, -0.035186767578125, -0.01934814453125, -0.0040283203125, -0.01384735107421875, -0.044403076171875, -0.01538848876953125, 0.01043701171875, -0.02105712890625, 0.014068603515625, -0.04608154296875, 0.01788330078125, -0.0152587890625, 0.0389404296875, -0.028961181640625, -0.035552978515625, -0.048492431640625, 0.072021484375, 0.00033283233642578125, -0.02655029296875, -0.0178985595703125, 0.064208984375, -0.00994873046875, 0.0148162841796875, -0.0309906005859375, 0.03558349609375, 0.0438232421875, -0.0290374755859375, -0.0241851806640625, -0.00782012939453125, 0.06390380859375, -0.039581298828125, -0.0037212371826171875, 0.0308074951171875, 0.0171356201171875, -0.06719970703125, -0.060394287109375, 0.0255279541015625, 0.016082763671875, -0.00670623779296875, 0.035400390625, 0.021820068359375, -0.0179595947265625, -0.028472900390625, 0.003116607666015625, 0.042083740234375, 0.011474609375, 0.0251617431640625, 0.05828857421875, 0.0033245086669921875, 0.1029052734375, -0.042816162109375, -0.022003173828125, -0.0269317626953125, 0.034912109375, 0.00521087646484375, 0.026092529296875, 0.04638671875, -0.007793426513671875, -0.0229339599609375, -0.05023193359375, -0.0260772705078125, 0.043182373046875, 0.04840087890625, -0.0141754150390625, -0.061737060546875, 0.0211029052734375, 0.0105438232421875, -0.0104827880859375, 0.06365966796875, -0.084228515625, -0.0032672882080078125, 0.05059814453125, -0.04571533203125, -0.0240478515625, -0.048736572265625, -0.00655364990234375, 0.027587890625, -0.027801513671875, 0.05145263671875, 0.0169525146484375, 0.04595947265625, -0.00821685791015625, 0.013916015625, 0.0292205810546875, 0.03753662109375, 0.0014772415161132812, 0.01690673828125, -0.004901885986328125, -0.0274200439453125, -0.0182037353515625, 0.014617919921875, -0.0248565673828125, 0.0009202957153320312, 0.0865478515625, 0.023712158203125, -0.00927734375, -0.039520263671875, -0.08929443359375, 0.0105133056640625, -0.025115966796875, 0.035552978515625, 0.0301971435546875, 0.01514434814453125, 0.001125335693359375, 0.03253173828125, -0.0161895751953125, -0.07867431640625, -0.052032470703125, 0.0222930908203125, -0.04736328125, 0.06689453125, -0.0109405517578125, 0.08416748046875, -0.01079559326171875, -0.0736083984375, 0.016632080078125, -0.05352783203125, 0.049835205078125, -0.020355224609375, -0.0219879150390625, -0.034423828125, 0.0182342529296875, -0.0017843246459960938, -0.034637451171875, 0.06536865234375, 0.06329345703125, 0.059173583984375, -0.027069091796875, 0.0009665489196777344, -0.00860595703125, -0.0099334716796875, -0.03363037109375, 0.023529052734375, 0.032623291015625, 0.03546142578125, -0.0115203857421875, 0.0095977783203125, 0.0015411376953125, -0.0921630859375, -0.016143798828125, 0.01158905029296875, 0.005084991455078125, 0.0298614501953125, -0.040679931640625, -0.01525115966796875, 0.041534423828125, -0.02301025390625, -0.005390167236328125, 0.035125732421875, 0.01146697998046875, -0.0047454833984375, -0.0181884765625, 0.009307861328125, -0.0008387565612792969, -0.0206298828125, -0.03546142578125, -0.00457763671875, 0.04010009765625, -0.060272216796875, 0.0035076141357421875, -0.0195465087890625, -0.00926971435546875, -0.0306854248046875, 0.0286712646484375, -0.045501708984375, -0.00794219970703125, 0.046478271484375, 0.041473388671875, 0.00022101402282714844, -0.0261688232421875, -0.02313232421875, 0.00862884521484375, 0.041656494140625, -0.0006227493286132812, 0.02911376953125, 0.0004000663757324219, -0.0242156982421875, 0.025146484375, -0.02099609375, -0.007293701171875, -0.0288238525390625, -0.01372528076171875, -0.00543975830078125, 0.0021419525146484375, 0.0206756591796875, -0.0159149169921875, 0.023468017578125, 0.0186614990234375, -0.0115966796875, 0.042449951171875, -0.0288238525390625, 0.01207733154296875, -0.01678466796875, 0.032562255859375, 0.04656982421875, 0.023040771484375, -0.027679443359375, 0.00389862060546875, 0.0280609130859375, 0.04541015625, -0.0298919677734375, -0.0115966796875, 0.03472900390625, -0.050872802734375, 0.01113128662109375, 0.0189208984375, 0.04559326171875, -0.025146484375, -0.065185546875, -0.0164794921875, 0.0195159912109375, -0.08648681640625, -0.058349609375, 0.00952911376953125, -0.05291748046875, 0.0189361572265625, -0.0233154296875, -0.02508544921875, 0.00839996337890625, -0.0079345703125, 0.01212310791015625, 0.006389617919921875, -0.009368896484375, 0.017303466796875, 0.0021381378173828125, -0.00785064697265625, -0.035247802734375, 0.007038116455078125, -0.0224761962890625, 0.01334381103515625, 0.00582122802734375, 0.000007987022399902344, -0.0287322998046875, 0.0003342628479003906, 0.0281829833984375, -0.01129150390625, -0.031097412109375, -0.0184478759765625, -0.0270538330078125, -0.004505157470703125, -0.0088653564453125, 0.019378662109375, -0.000031828880310058594, 0.0164031982421875, -0.006683349609375, 0.00905609130859375, -0.03179931640625, 0.0289459228515625, -0.02581787109375, -0.0430908203125, -0.01505279541015625, -0.00820159912109375, -0.0494384765625, 0.0029964447021484375, -0.0019855499267578125, -0.031585693359375, 0.0099029541015625, 0.034393310546875, -0.0406494140625, 0.0198211669921875, -0.0277099609375, 0.0274658203125, 0.0269927978515625, -0.00968170166015625, 0.0594482421875, -0.021575927734375, -0.023834228515625, -0.021331787109375, -0.01468658447265625, 0.04052734375, -0.00942230224609375, -0.026153564453125, -0.012054443359375, -0.01425933837890625, -0.032501220703125, 0.0095367431640625, -0.0592041015625, -0.0064544677734375, 0.043182373046875, -0.0157470703125, 0.0013399124145507812, -0.02001953125, -0.00974273681640625, -0.038726806640625, 0.03204345703125, -0.038177490234375, -0.03875732421875, 0.004634857177734375, 0.014801025390625, 0.0121307373046875, 0.021087646484375, 0.0010156631469726562, -0.0203399658203125, -0.07568359375, 0.03643798828125, -0.00954437255859375, -0.01375579833984375, -0.01340484619140625, -0.02593994140625, -0.0254364013671875, -0.0404052734375, 0.004913330078125, -0.005710601806640625, 0.024688720703125, -0.0242462158203125, 0.0125732421875, -0.032257080078125, 0.039642333984375, -0.05535888671875, -0.03076171875, 0.01052093505859375, -0.06842041015625, 0.040374755859375, 0.0477294921875, -0.024658203125, -0.00487518310546875, 0.022003173828125, -0.01502227783203125, -0.0204620361328125, 0.002933502197265625, 0.01213836669921875, 0.0261077880859375, 0.000438690185546875, -0.0261077880859375, -0.02264404296875, 0.004425048828125, -0.0154571533203125, -0.018157958984375, -0.0238189697265625, -0.03387451171875, -0.047088623046875, -0.005523681640625, -0.042999267578125, -0.0293121337890625, -0.03924560546875, -0.043365478515625, 0.01123809814453125, -0.033721923828125, -0.01126861572265625, -0.03564453125, -0.04205322265625, 0.0283660888671875, 0.0484619140625, -0.043609619140625, 0.0004305839538574219, 0.00870513916015625, 0.0253448486328125, -0.039794921875, -0.005096435546875, -0.0138092041015625, 0.0182342529296875, -0.035888671875, 0.045440673828125, -0.00234222412109375, -0.00576019287109375, 0.06695556640625, -0.0289306640625, 0.01153564453125, -0.055389404296875, 0.07220458984375, -0.0225372314453125, -0.01435089111328125, 0.008026123046875, -0.05194091796875, 0.019073486328125, -0.0249176025390625, 0.0105438232421875, 0.0277099609375, 0.037750244140625, -0.0128936767578125, 0.025665283203125, -0.048797607421875, -0.014892578125, -0.0129241943359375, 0.00572967529296875, -0.00298309326171875, 0.047943115234375, 0.0117950439453125, 0.01088714599609375, 0.00672149658203125, 0.0399169921875, 0.00507354736328125, 0.00577545166015625, 0.014129638671875, -0.0239410400390625, 0.0271759033203125, 0.0006437301635742188, -0.0163421630859375, -0.01497650146484375, -0.0049896240234375, 0.055511474609375, -0.01247406005859375, -0.0816650390625, -0.013458251953125, -0.01181793212890625, 0.0249176025390625, 0.031707763671875, -0.021026611328125, -0.0007052421569824219, -0.0096282958984375, -0.01074981689453125, -0.00540924072265625, -0.01043701171875, -0.048553466796875, -0.02069091796875, -0.006275177001953125, -0.01190948486328125, -0.0015621185302734375, 0.004543304443359375, 0.0443115234375, -0.01470184326171875, 0.0367431640625, -0.0251922607421875, 0.0633544921875, 0.03607177734375, 0.034515380859375, 0.00626373291015625, 0.0025577545166015625, -0.006160736083984375, 0.00406646728515625, -0.04156494140625, -0.026580810546875, -0.04180908203125, 0.069580078125, 0.019561767578125, 0.0240936279296875, 0.0236663818359375, -0.04541015625, 0.00913238525390625, -0.009674072265625, 0.049285888671875, -0.006259918212890625, -0.06817626953125, -0.01824951171875, 0.0269317626953125, 0.021148681640625, -0.0306396484375, 0.0145416259765625, -0.00803375244140625, 0.003078460693359375, -0.004608154296875, 0.0066375732421875, -0.028167724609375, -0.033050537109375, -0.006603240966796875, -0.0738525390625, -0.0287017822265625, 0.006175994873046875, -0.046661376953125, -0.025634765625, 0.007144927978515625, -0.036041259765625, -0.00017583370208740234, -0.0201263427734375, -0.004642486572265625, 0.009552001953125, -0.005908966064453125, 0.006053924560546875, 0.00849151611328125, 0.0122833251953125, -0.01486968994140625, -0.049774169921875, 0.018890380859375, -0.04583740234375, -0.0179901123046875, -0.02490234375, -0.06890869140625, -0.0369873046875, -0.033966064453125, 0.047607421875, 0.0185546875, 0.0141143798828125, -0.033111572265625, -0.0244903564453125, 0.019805908203125, 0.046722412109375, 0.05255126953125, -0.0092010498046875, 0.067626953125, -0.0247650146484375, 0.035675048828125, 0.009033203125, 0.039825439453125, -0.0262451171875, -0.0167083740234375, 0.0307464599609375, -0.00872039794921875, -0.037017822265625, -0.045379638671875, 0.0007276535034179688, -0.012786865234375, 0.0318603515625, -0.0215301513671875, -0.00818634033203125, -0.021728515625, -0.003917694091796875, -0.03424072265625, 0.03826904296875, 0.0242156982421875, 0.0223846435546875, 0.0014438629150390625, 0.005222320556640625, 0.0132293701171875, 0.01253509521484375, 0.01093292236328125, -0.00928497314453125, 0.0030460357666015625, 0.01375579833984375, -0.02862548828125, -0.048004150390625, 0.024017333984375, 0.0280914306640625, -0.01323699951171875, 0.01898193359375, -0.00617218017578125, 0.01143646240234375, 0.0198974609375, 0.0009527206420898438, 0.01812744140625, -0.0390625, 0.0474853515625, -0.015960693359375, -0.033447265625, 0.0161590576171875, -0.040740966796875, -0.007404327392578125, 0.0341796875, 0.03155517578125, -0.108154296875, 0.033233642578125, 0.0007104873657226562, 0.049102783203125, 0.05035400390625, -0.030426025390625, 0.034149169921875, 0.0022563934326171875, 0.00470733642578125, 0.046905517578125, -0.03515625, -0.01009368896484375, -0.003452301025390625, 0.009246826171875, -0.0226287841796875, 0.0233154296875, 0.0164337158203125, -0.07940673828125, 0.04217529296875, 0.043121337890625, 0.01273345947265625, -0.0250396728515625, -0.032196044921875, 0.062744140625, -0.035552978515625, -0.05194091796875, 0.05810546875, -0.016571044921875, 0.00811767578125, -0.0194854736328125, -0.056121826171875, 0.03619384765625, 0.0306243896484375, -0.028472900390625, -0.0089111328125, -0.0032405853271484375, 0.0014324188232421875, -0.0399169921875, 0.0090789794921875, 0.0015859603881835938, 0.01458740234375, -0.02960205078125, 0.026885986328125, -0.05908203125, 0.021240234375, -0.0125274658203125, -0.01885986328125, 0.07513427734375, -0.046295166015625, 0.0048675537109375, 0.029205322265625, 0.03887939453125, -0.0087890625, 0.0011138916015625, -0.011627197265625, -0.0872802734375, -0.047088623046875, 0.0085296630859375, -0.044219970703125, 0.0290985107421875, 0.028564453125, -0.0687255859375, 0.10400390625, 0.033050537109375, 0.003570556640625, 0.0074310302734375, 0.040313720703125, -0.06671142578125, 0.002986907958984375, -0.0259552001953125, 0.0247802734375, -0.002292633056640625, -0.006927490234375, -0.042755126953125, -0.01268768310546875, -0.022552490234375, 0.0290679931640625, 0.030670166015625, 0.013641357421875, -0.0186920166015625, -0.04632568359375, -0.03759765625, 0.0196075439453125, -0.00916290283203125, 0.030059814453125, 0.01123809814453125, 0.006473541259765625, 0.041015625, -0.035888671875, 0.017181396484375, -0.009979248046875, 0.0162811279296875, 0.021697998046875, 0.033905029296875, 0.04656982421875, -0.01678466796875, -0.0159759521484375, -0.051605224609375, 0.0088958740234375, 0.0208740234375, 0.02301025390625, 0.024444580078125, 0.0098876953125, 0.0032100677490234375, -0.0239410400390625, 0.0282440185546875, -0.0303192138671875, 0.05096435546875, -0.0298919677734375, -0.0295562744140625, 0.0374755859375, 0.01335906982421875, -0.029388427734375, -0.04339599609375, -0.027374267578125, -0.01666259765625, -0.007648468017578125, 0.014739990234375, 0.01311492919921875, 0.02569580078125, -0.0233154296875, 0.0029144287109375, 0.0229034423828125, 0.017120361328125, -0.0164947509765625, -0.07318115234375, 0.0032749176025390625, -0.0009140968322753906, 0.034210205078125, 0.05865478515625, 0.0771484375, -0.03277587890625, 0.01120758056640625, -0.00974273681640625, 0.01026153564453125, 0.007137298583984375, 0.0110626220703125, 0.0170440673828125, 0.06585693359375, -0.06036376953125, 0.00518035888671875, -0.017425537109375, -0.00428009033203125, 0.016754150390625, -0.0182342529296875, -0.00048613548278808594, 0.0268096923828125, 0.06915283203125, 0.0059814453125, -0.017181396484375, 0.017974853515625, -0.00907135009765625, 0.0262298583984375, -0.06085205078125, -0.0191497802734375, 0.0303955078125, 0.05078125, 0.02496337890625, 0.0020885467529296875, 0.048248291015625, 0.01369476318359375, -0.03546142578125, -0.00028777122497558594, 0.041351318359375, -0.0246734619140625, 0.0002605915069580078, -0.01131439208984375, -0.006122589111328125, 0.0163726806640625, -0.01885986328125, 0.00044727325439453125, 0.0200347900390625, 0.0250701904296875, -0.0219268798828125, 0.0721435546875, -0.0199737548828125, 0.01084136962890625, 0.02545166015625, -0.001995086669921875, 0.04345703125, -0.0010404586791992188, -0.0567626953125, -0.01708984375, -0.0447998046875, 0.01491546630859375, 0.00139617919921875, 0.0157928466796875, -0.01233673095703125, 0.03515625, 0.041656494140625, 0.003963470458984375, 0.005489349365234375, -0.0138092041015625, 0.00629425048828125, -0.032562255859375, 0.0283660888671875, -0.01242828369140625, -0.048858642578125, -0.0015363693237304688, -0.001789093017578125, -0.02716064453125, 0.006099700927734375, 0.039398193359375, 0.0177459716796875, 0.000713348388671875, -0.0015363693237304688, 0.031951904296875, -0.0298004150390625, -0.006420135498046875, 0.020751953125, -0.0032176971435546875, 0.010589599609375, -0.01593017578125, -0.05828857421875, 0.04705810546875, -0.01100921630859375, 0.01336669921875, 0.05792236328125, -0.058441162109375, 0.0037021636962890625, 0.013519287109375, -0.0213775634765625, -0.013671875, -0.0272064208984375, 0.00821685791015625, 0.0198822021484375, 0.01229095458984375, 0.0216522216796875, -0.020904541015625, 0.0328369140625, -0.024383544921875, -0.00478363037109375, 0.0214385986328125, -0.00879669189453125, 0.00962066650390625, 0.006259918212890625, 0.002658843994140625, -0.036773681640625, -0.030120849609375, -0.012603759765625, -0.0274505615234375, 0.01739501953125, -0.00920867919921875, -0.0045318603515625, -0.0034046173095703125, -0.0089263916015625, 0.0206146240234375, 0.039764404296875, 0.00406646728515625, 0.0202789306640625, -0.0030651092529296875, 0.005954742431640625, 0.0034027099609375, -0.048431396484375, -0.04150390625, -0.0210418701171875, 0.0009822845458984375, 0.032684326171875, -0.0019063949584960938, -0.05242919921875, -0.0838623046875, -0.0200042724609375, 0.054168701171875, 0.0117340087890625, -0.057708740234375, 0.01558685302734375, -0.03369140625, 0.036163330078125, 0.00823211669921875, -0.00001990795135498047, -0.0079803466796875, 0.010711669921875, -0.0249176025390625, -0.03564453125, -0.0201873779296875, 0.046356201171875, -0.01393890380859375, -0.038421630859375, -0.0026721954345703125, 0.0208740234375, -0.031829833984375, -0.0258026123046875, -0.0290374755859375, 0.0183258056640625, -0.049468994140625, -0.015350341796875, -0.00027489662170410156, 0.0204315185546875, 0.009490966796875, -0.046630859375, -0.023040771484375, 0.01436614990234375, 0.0010585784912109375, 0.01122283935546875, -0.0272064208984375, -0.004947662353515625, -0.016998291015625, -0.00995635986328125, 0.067626953125, 0.0169830322265625, -0.010284423828125, -0.05841064453125, 0.044952392578125, 0.0236968994140625, -0.0552978515625, -0.045166015625, 0.006046295166015625, -0.0022144317626953125, 0.0102996826171875, 0.02655029296875, -0.0198211669921875, 0.0275115966796875, 0.03472900390625, -0.05682373046875, 0.03167724609375, 0.01727294921875, 0.01291656494140625, -0.01032257080078125, 0.010101318359375, 0.04119873046875, 0.0472412109375, 0.007099151611328125, 0.028076171875, 0.031524658203125, -0.03668212890625, -0.033111572265625, 0.009674072265625, 0.0101470947265625, 0.0212249755859375, 0.052703857421875, 0.040557861328125, 0.01299285888671875, -0.0323486328125, -0.051483154296875, -0.03582763671875, 0.048919677734375, -0.0265350341796875, -0.01885986328125, -0.049041748046875, 0.00339508056640625, -0.01983642578125, -0.021026611328125, 0.00650787353515625, 0.010009765625, -0.0161895751953125, -0.01009368896484375, 0.01483917236328125, -0.0129852294921875, 0.0208587646484375, 0.0245513916015625, 0.028594970703125, -0.031585693359375, -0.007022857666015625, -0.0204010009765625, 0.00081634521484375, 0.00323486328125, -0.0270843505859375, 0.0148468017578125, 0.0295562744140625, -0.0745849609375, 0.0035305023193359375, -0.00936126708984375, 0.028411865234375, -0.05096435546875, -0.0091705322265625, -0.036956787109375, 0.006885528564453125, 0.0168609619140625, 0.0006327629089355469, -0.01015472412109375, -0.01995849609375, 0.0226593017578125, -0.02117919921875, -0.034912109375, 0.004283905029296875, -0.023468017578125, -0.00783538818359375, 0.04998779296875, -0.0009112358093261719, 0.115234375, -0.0292510986328125, 0.008056640625, 0.01001739501953125, 0.0226898193359375, -0.039276123046875, 0.059112548828125, 0.006526947021484375, 0.0160369873046875, 0.0197296142578125 ]