id
stringlengths
40
40
text
stringlengths
29
2.03k
original_text
stringlengths
3
154k
subdomain
stringclasses
20 values
metadata
dict
emb
listlengths
1.02k
1.02k
48427b7c528cc475ea7cbbf4b26406f1041c18ed
Wordpress Stackexchange Q: WordPress Redirect All HTTP requests to HTTPS via .htaccess I've done this many times before, and yet I'm not managing to do this again for some unknown reason. Tried endless solutions. Everything I've tried results in an endless redirect loop. What is the best option for doing this? Update 1 Here are a few of the things tried; RewriteCond %{HTTP_HOST} ^website\.co\.uk [NC] RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://www.website.co.uk/$1 [R,L] And; RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://www.website.co.uk$1 [R,L] Tested in different browsers to prevent caching issues. Still nothing, just getting continual redirect loop. A: Add code within a .htaccess file <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{HTTPS} !=on RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] # BEGIN WordPress RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule>
Q: WordPress Redirect All HTTP requests to HTTPS via .htaccess I've done this many times before, and yet I'm not managing to do this again for some unknown reason. Tried endless solutions. Everything I've tried results in an endless redirect loop. What is the best option for doing this? Update 1 Here are a few of the things tried; RewriteCond %{HTTP_HOST} ^website\.co\.uk [NC] RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://www.website.co.uk/$1 [R,L] And; RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://www.website.co.uk$1 [R,L] Tested in different browsers to prevent caching issues. Still nothing, just getting continual redirect loop. A: Add code within a .htaccess file <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{HTTPS} !=on RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] # BEGIN WordPress RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> A: You can set header in .htaccess <IfModule mod_headers.c> Header always set Strict-Transport-Security "max-age=31536000; includeSubDomains" env=HTTPS </IfModule> A: I see, when you enter a link to your page other than your home, example: * *http://www.michaelcropper.co.uk/contact-me *www.michaelcropper.co.uk/contact-me *michaelcropper.co.uk/contact-me If https:// is not in the prefix, the HTTP link loads instead. Add the following into your .htaccess in between the <IfModule mod_rewrite.c> tag: RewriteCond %{HTTPS} !=on RewriteRule ^(.*) https://%{SERVER_NAME}/$1 [R,L] If there were no additional modifications done to your .htaccess, it should look like the following: # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] # Rewrite HTTP to HTTPS RewriteCond %{HTTPS} !=on RewriteRule ^(.*) https://%{SERVER_NAME}/$1 [R,L] </IfModule> # END WordPress Let me know how it goes. A: try this in your .htaccess: RewriteCond %{HTTP:X-Forwarded-Proto} !=https RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [L,R] </IfModule> # END WordPress A: Just Add this in your .htaccess file # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{HTTPS} !=on RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress A: If you are using W3 Total Cache the answer from @Ethan Jinks O'Sullivan will only work if you place the redirect before the W3 Total Cache mods in .htaccess as shown below #BEGIN Rewrite HTTP to HTTPS <IfModule mod_rewrite.c> RewriteCond %{HTTPS} !=on RewriteRule ^(.*) https://%{SERVER_NAME}/$1 [R,L] </IfModule> #END Rewrite HTTP to HTTPS # BEGIN GZIP COMPRESSION ... # END GZIP COMPRESSION # BEGIN DEFLATE COMPRESSION ... # END DEFLATE COMPRESSION # BEGIN W3TC Browser Cache ... # END W3TC Browser Cache # BEGIN W3TC Page Cache core ... # END W3TC Page Cache core # BEGIN WordPress <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 A: If you don't want to change anything on .htaccess you may try this out add_action('template_redirect', 'redirect_core', 50); add_action('init', 'redirect_core', 50); add_action('wp_loaded', 'redirect_core', 50); function redirect_core(){ if (!is_ssl()) { wp_redirect('https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'], 301); exit(); } } Or try this plugin: HTTPS Redirect A: Toke me 10 minutes to fix the issue Add a conf file for your domain. Go to centos 7 at /etc/httpd/conf.d/, then create a conf file called anything.conf. Put the following code on it: <VirtualHost *:80> ServerName domain.com ServerAlias www.domain.com ServerAdmin [email protected] DocumentRoot /var/www/html <Directory /var/www/html> Options -Indexes +FollowSymLinks AllowOverride All </Directory> ErrorLog /var/log/httpd/example.com-error.log CustomLog /var/log/httpd/example.com-access.log combined </VirtualHost> Replace example.com with your domain. Then add the https rewrite code on .htaccess its will work. :) A: #BEGIN Rewrite HTTP to HTTPS <IfModule mod_rewrite.c> RewriteCond %{HTTPS} !=on RewriteRule ^(.*) https://%{SERVER_NAME}/$1 [R,L] </IfModule> #END Rewrite HTTP to HTTPS # BEGIN WordPress <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": 609, "provenance": "stackexchange_00019.jsonl.gz:467668", "question_score": "12", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/236734" }
[ 0.05108642578125, 0.009063720703125, 0.006000518798828125, 0.004238128662109375, 0.01204681396484375, -0.017333984375, 0.031585693359375, -0.066162109375, -0.004238128662109375, -0.008819580078125, -0.03253173828125, 0.0239410400390625, -0.0264739990234375, -0.034698486328125, 0.04351806640625, -0.027587890625, 0.0165557861328125, -0.020721435546875, 0.0175323486328125, -0.00931549072265625, 0.027923583984375, -0.0004146099090576172, 0.03131103515625, -0.0247650146484375, -0.003566741943359375, -0.0343017578125, 0.070068359375, -0.04400634765625, -0.01255035400390625, -0.038299560546875, -0.002704620361328125, 0.0247802734375, 0.0144500732421875, 0.044158935546875, -0.0765380859375, -0.056243896484375, -0.002162933349609375, 0.0157318115234375, -0.021209716796875, 0.03045654296875, 0.0174407958984375, -0.0199432373046875, 0.07373046875, 0.0273590087890625, 0.011871337890625, -0.006031036376953125, 0.0011625289916992188, -0.0625, -0.0218505859375, 0.004070281982421875, 0.0162811279296875, 0.05914306640625, 0.027374267578125, 0.0004067420959472656, -0.0049285888671875, 0.01354217529296875, 0.0172882080078125, 0.01776123046875, 0.0195465087890625, -0.0611572265625, -0.046844482421875, 0.01971435546875, 0.02239990234375, 0.02325439453125, -0.044769287109375, -0.0083160400390625, -0.0022258758544921875, -0.0031414031982421875, -0.059356689453125, -0.059417724609375, 0.0308837890625, -0.0103302001953125, -0.00461578369140625, -0.0240020751953125, -0.0042572021484375, -0.005565643310546875, 0.04046630859375, 0.0057830810546875, -0.01177978515625, -0.0008034706115722656, -0.01364898681640625, -0.01171875, -0.02215576171875, -0.040863037109375, 0.0265960693359375, -0.0005664825439453125, -0.00951385498046875, -0.003604888916015625, -0.0248565673828125, -0.05914306640625, -0.03033447265625, -0.007686614990234375, -0.031982421875, -0.03411865234375, -0.0440673828125, -0.0294342041015625, 0.0302276611328125, 0.01407623291015625, 0.045013427734375, -0.0250701904296875, 0.06463623046875, -0.06561279296875, -0.0157012939453125, -0.0102386474609375, -0.00756072998046875, 0.0599365234375, 0.02935791015625, 0.08270263671875, 0.04107666015625, 0.003208160400390625, 0.0223846435546875, 0.00817108154296875, -0.029052734375, -0.0250091552734375, -0.025634765625, 0.023468017578125, -0.04296875, -0.0210723876953125, -0.00469207763671875, -0.01690673828125, 0.00795745849609375, 0.0298004150390625, -0.0006284713745117188, 0.015533447265625, -0.0140838623046875, -0.003936767578125, 0.007213592529296875, -0.054595947265625, -0.023345947265625, -0.00023031234741210938, -0.041473388671875, 0.003528594970703125, 0.0487060546875, 0.03753662109375, 0.019287109375, -0.019805908203125, 0.038055419921875, -0.030548095703125, -0.01326751708984375, 0.0237884521484375, -0.0025768280029296875, -0.044281005859375, -0.0218353271484375, 0.00015306472778320312, 0.01016998291015625, 0.0214691162109375, 0.0180816650390625, 0.026824951171875, -0.01458740234375, -0.0594482421875, 0.0198974609375, -0.032958984375, 0.044677734375, 0.0114898681640625, 0.002162933349609375, -0.033905029296875, 0.0595703125, -0.0545654296875, -0.02496337890625, -0.0589599609375, 0.019866943359375, -0.0157012939453125, -0.01383209228515625, -0.024993896484375, -0.0377197265625, 0.004680633544921875, -0.0447998046875, -0.010284423828125, 0.02813720703125, 0.01480865478515625, 0.012725830078125, -0.0012454986572265625, 0.0089111328125, 0.015960693359375, 0.00024962425231933594, 0.01250457763671875, -0.0185089111328125, -0.0029468536376953125, 0.0210113525390625, 0.0498046875, 0.0294342041015625, -0.0251007080078125, 0.014129638671875, 0.032928466796875, -0.048370361328125, 0.037933349609375, 0.003871917724609375, 0.061920166015625, 0.0008463859558105469, 0.00690460205078125, 0.035919189453125, 0.00872039794921875, -0.048431396484375, 0.06268310546875, -0.033538818359375, -0.0474853515625, -0.00926971435546875, -0.007381439208984375, -0.0189361572265625, 0.005718231201171875, -0.0172576904296875, 0.0012559890747070312, -0.0242462158203125, 0.038970947265625, 0.035675048828125, -0.0173492431640625, 0.0240020751953125, -0.0117340087890625, 0.00005269050598144531, 0.01192474365234375, 0.005916595458984375, 0.0198516845703125, -0.0382080078125, -0.0171356201171875, -0.01303863525390625, 0.0181732177734375, -0.027923583984375, 0.0183868408203125, 0.0072479248046875, 0.036407470703125, 0.023345947265625, -0.03515625, 0.0216827392578125, -0.0157318115234375, 0.0293731689453125, -0.02911376953125, -0.0221710205078125, -0.02001953125, 0.0029201507568359375, -0.00908660888671875, -0.054412841796875, 0.041290283203125, 0.01108551025390625, 0.01436614990234375, -0.03717041015625, 0.01532745361328125, -0.026336669921875, -0.001468658447265625, -0.0174560546875, 0.030120849609375, 0.03204345703125, 0.040985107421875, -0.0279541015625, -0.026763916015625, 0.0278167724609375, -0.071044921875, -0.00865936279296875, -0.01250457763671875, 0.023193359375, 0.00667572021484375, 0.01503753662109375, -0.0130615234375, 0.0210113525390625, -0.045745849609375, 0.035888671875, 0.0256805419921875, -0.01299285888671875, -0.04071044921875, -0.0247039794921875, 0.02410888671875, 0.0280914306640625, -0.03961181640625, -0.0511474609375, -0.0114593505859375, -0.003253936767578125, -0.0240325927734375, -0.0036449432373046875, -0.00107574462890625, 0.0007257461547851562, -0.04010009765625, 0.01326751708984375, -0.025390625, -0.0084228515625, 0.06573486328125, 0.051849365234375, -0.0224609375, -0.037841796875, -0.006343841552734375, 0.0025272369384765625, 0.040771484375, 0.01061248779296875, 0.03857421875, 0.00667572021484375, -0.015411376953125, -0.0064544677734375, -0.0250396728515625, -0.0032405853271484375, 0.0077056884765625, 0.0188446044921875, 0.039154052734375, 0.041290283203125, 0.007282257080078125, -0.0157318115234375, 0.0158538818359375, 0.01023101806640625, -0.0192718505859375, 0.01251983642578125, -0.067138671875, 0.052398681640625, -0.040802001953125, 0.064697265625, 0.07733154296875, -0.0039520263671875, 0.0196533203125, 0.0010128021240234375, -0.0010404586791992188, 0.017059326171875, -0.0276641845703125, -0.0284271240234375, 0.0128631591796875, -0.0809326171875, -0.035888671875, 0.031646728515625, -0.00783538818359375, 0.040771484375, -0.01139068603515625, 0.0225677490234375, 0.0225677490234375, -0.06463623046875, -0.06805419921875, -0.06207275390625, -0.06524658203125, 0.027435302734375, 0.00345611572265625, -0.0115814208984375, -0.00907135009765625, 0.03558349609375, 0.02374267578125, 0.014434814453125, -0.00047516822814941406, -0.055511474609375, -0.054290771484375, -0.10198974609375, -0.04559326171875, -0.001010894775390625, 0.04803466796875, -0.0005011558532714844, 0.004791259765625, -0.01091766357421875, -0.037078857421875, -0.00954437255859375, -0.003387451171875, -0.0185546875, -0.0241851806640625, -0.037841796875, 0.0004112720489501953, 0.0018100738525390625, -0.0043487548828125, 0.040496826171875, 0.00925445556640625, 0.01415252685546875, 0.005832672119140625, 0.004180908203125, -0.035614013671875, 0.0178680419921875, -0.023590087890625, -0.0301361083984375, -0.031585693359375, -0.0018768310546875, -0.0672607421875, -0.0008697509765625, 0.0004191398620605469, -0.0149383544921875, -0.0228118896484375, 0.004840850830078125, -0.02276611328125, -0.016082763671875, 0.00418853759765625, 0.01525115966796875, 0.013763427734375, 0.0213165283203125, -0.03558349609375, 0.035247802734375, 0.000019252300262451172, 0.007785797119140625, -0.04913330078125, 0.057586669921875, -0.004734039306640625, -0.0197601318359375, 0.01050567626953125, -0.021514892578125, -0.034271240234375, -0.0099029541015625, -0.093017578125, -0.034698486328125, 0.044525146484375, -0.0200042724609375, 0.019256591796875, -0.029541015625, -0.0242919921875, -0.02471923828125, 0.08966064453125, 0.00937652587890625, -0.0160369873046875, -0.00824737548828125, 0.0244140625, -0.036376953125, -0.01378631591796875, -0.005710601806640625, 0.0011625289916992188, -0.09918212890625, 0.005001068115234375, 0.00047135353088378906, -0.04974365234375, 0.03656005859375, -0.09600830078125, -0.0303497314453125, -0.053070068359375, 0.03277587890625, -0.007965087890625, 0.0305328369140625, -0.01025390625, 0.022552490234375, -0.01751708984375, -0.0242767333984375, -0.02490234375, -0.043243408203125, -0.017730712890625, 0.003948211669921875, 0.039215087890625, 0.0031795501708984375, -0.00978851318359375, 0.026641845703125, 0.0748291015625, 0.0266876220703125, 0.027374267578125, 0.00701904296875, -0.032135009765625, 0.032684326171875, 0.03814697265625, 0.0161590576171875, 0.0013170242309570312, -0.01177978515625, -0.02630615234375, -0.007198333740234375, 0.007373809814453125, -0.029449462890625, -0.016021728515625, -0.000050902366638183594, -0.024139404296875, -0.0770263671875, -0.0284576416015625, -0.040740966796875, -0.007740020751953125, -0.0175323486328125, -0.0252532958984375, -0.017486572265625, -0.07647705078125, 0.040771484375, -0.02349853515625, -0.0159912109375, 0.01953125, 0.07928466796875, 0.0035037994384765625, -0.0158843994140625, -0.036895751953125, 0.007396697998046875, 0.01751708984375, -0.01039886474609375, 0.04400634765625, -0.01544952392578125, -0.0076141357421875, 0.05938720703125, -0.0286102294921875, 0.0018815994262695312, 0.00372314453125, 0.005321502685546875, -0.00867462158203125, -0.0279541015625, 0.00659942626953125, -0.012908935546875, -0.005523681640625, 0.038360595703125, 0.01210784912109375, -0.0079803466796875, -0.003177642822265625, 0.0015115737915039062, 0.0158538818359375, -0.032684326171875, -0.004383087158203125, -0.018768310546875, 0.01128387451171875, -0.0026454925537109375, 0.06719970703125, -0.004100799560546875, 0.022979736328125, 0.0236358642578125, 0.059600830078125, -0.020477294921875, -0.051116943359375, -0.0018472671508789062, -0.0084381103515625, 0.03277587890625, -0.042083740234375, -0.005863189697265625, -0.036529541015625, -0.00402069091796875, 0.0672607421875, 0.0219268798828125, -0.03985595703125, 0.0278778076171875, -0.0214080810546875, -0.06689453125, 0.013916015625, -0.0308380126953125, 0.0038433074951171875, 0.01177215576171875, 0.002193450927734375, 0.01042938232421875, -0.0179290771484375, -0.0266265869140625, -0.0291595458984375, 0.0313720703125, -0.00202178955078125, 0.00008285045623779297, 0.02618408203125, 0.05181884765625, 0.005218505859375, 0.046539306640625, -0.00687408447265625, 0.0253753662109375, 0.0160369873046875, 0.00426483154296875, 0.0089111328125, 0.02679443359375, 0.009796142578125, -0.02386474609375, -0.00275421142578125, -0.038330078125, -0.027587890625, 0.01078033447265625, 0.0521240234375, 0.0251312255859375, -0.00171661376953125, 0.00782012939453125, -0.012115478515625, -0.008697509765625, 0.01412200927734375, 0.0093536376953125, -0.024871826171875, -0.04119873046875, -0.01788330078125, 0.0254364013671875, 0.0102386474609375, -0.0186004638671875, 0.005970001220703125, -0.017333984375, 0.0228118896484375, 0.042755126953125, -0.0024433135986328125, 0.01319122314453125, 0.00012087821960449219, -0.0230865478515625, -0.039642333984375, -0.0147247314453125, -0.037109375, 0.015869140625, -0.0280303955078125, -0.0252532958984375, 0.045989990234375, 0.0028171539306640625, 0.029876708984375, 0.01160430908203125, -0.053802490234375, 0.06854248046875, 0.005218505859375, 0.038360595703125, -0.00193023681640625, -0.01422882080078125, -0.0024662017822265625, -0.034881591796875, -0.002838134765625, 0.0224456787109375, -0.00919342041015625, -0.01204681396484375, -0.0311431884765625, 0.018646240234375, 0.0282440185546875, 0.002391815185546875, -0.0260467529296875, -0.057281494140625, 0.0017766952514648438, 0.0297698974609375, 0.0256805419921875, -0.0390625, 0.0296783447265625, 0.01357269287109375, 0.006023406982421875, -0.00731658935546875, 0.018218994140625, 0.01525115966796875, -0.0114898681640625, 0.02679443359375, -0.035675048828125, -0.0301055908203125, -0.0310821533203125, -0.00518798828125, 0.01428985595703125, 0.047149658203125, -0.01409912109375, 0.0031070709228515625, -0.01233673095703125, 0.01044464111328125, -0.0082855224609375, 0.007740020751953125, 0.00815582275390625, -0.003673553466796875, 0.0197906494140625, 0.04949951171875, 0.041107177734375, -0.07122802734375, -0.044769287109375, -0.0292510986328125, 0.034820556640625, -0.0095672607421875, -0.0189056396484375, -0.013671875, 0.005985260009765625, 0.06005859375, 0.007366180419921875, 0.06787109375, 0.0094146728515625, 0.0214385986328125, 0.07708740234375, 0.01358795166015625, -0.0034008026123046875, -0.0035572052001953125, 0.04498291015625, 0.0110931396484375, -0.0019683837890625, 0.04168701171875, -0.01641845703125, 0.00128173828125, 0.08538818359375, 0.071044921875, -0.09368896484375, -0.014617919921875, 0.005496978759765625, -0.037109375, -0.006832122802734375, 0.00887298583984375, -0.0006847381591796875, -0.00977325439453125, 0.007595062255859375, -0.003200531005859375, -0.005313873291015625, -0.00537872314453125, 0.0254669189453125, 0.0081939697265625, -0.01145172119140625, 0.031768798828125, -0.006870269775390625, -0.048797607421875, -0.04248046875, 0.0297698974609375, -0.027679443359375, -0.02081298828125, 0.0224609375, -0.01360321044921875, -0.00485992431640625, -0.029083251953125, 0.010040283203125, -0.00897216796875, 0.0005335807800292969, 0.026336669921875, 0.0011911392211914062, 0.006839752197265625, 0.08203125, -0.0228729248046875, 0.01251983642578125, 0.060821533203125, -0.048583984375, 0.001697540283203125, -0.01384735107421875, -0.025787353515625, -0.03179931640625, 0.00592041015625, 0.0034885406494140625, -0.023284912109375, -0.01372528076171875, -0.0084075927734375, -0.01233673095703125, 0.041229248046875, -0.028289794921875, -0.0165863037109375, 0.018096923828125, 0.029144287109375, -0.002719879150390625, -0.00785064697265625, 0.040069580078125, -0.0207061767578125, 0.0026035308837890625, -0.0002875328063964844, 0.0121307373046875, -0.0088348388671875, -0.053131103515625, -0.0252838134765625, 0.10546875, -0.008056640625, -0.00555419921875, 0.0189208984375, 0.06146240234375, -0.0180511474609375, 0.047149658203125, -0.0024547576904296875, 0.06927490234375, 0.039398193359375, 0.0049285888671875, -0.0007305145263671875, -0.006427764892578125, 0.0167999267578125, 0.048248291015625, 0.057373046875, 0.0177154541015625, -0.0887451171875, 0.0225677490234375, 0.09002685546875, 0.031707763671875, 0.0290374755859375, 0.0689697265625, -0.012603759765625, -0.0173492431640625, 0.0556640625, -0.0266265869140625, 0.0228271484375, 0.0020694732666015625, -0.0015573501586914062, -0.01442718505859375, 0.0031681060791015625, -0.0180816650390625, -0.0211944580078125, -0.0193939208984375, -0.0582275390625, 0.007297515869140625, 0.017974853515625, 0.0256805419921875, 0.016510009765625, 0.00572967529296875, -0.0018253326416015625, -0.021453857421875, 0.0296173095703125, -0.0406494140625, 0.04937744140625, -0.033416748046875, -0.0021762847900390625, -0.012603759765625, -0.00516510009765625, 0.027130126953125, 0.0089263916015625, -0.007415771484375, 0.036224365234375, 0.014007568359375, 0.0238189697265625, 0.03680419921875, 0.0263671875, 0.01256561279296875, 0.00229644775390625, 0.0240325927734375, 0.0341796875, -0.031982421875, -0.043304443359375, -0.02191162109375, -0.0285186767578125, 0.05072021484375, -0.0016536712646484375, 0.046661376953125, -0.010467529296875, -0.0248260498046875, -0.0037364959716796875, 0.02294921875, 0.028411865234375, 0.0048828125, 0.00833892822265625, 0.031219482421875, -0.057098388671875, 0.051483154296875, -0.039031982421875, -0.0027790069580078125, 0.0193939208984375, 0.053619384765625, 0.023345947265625, 0.058837890625, 0.0070037841796875, -0.02850341796875, 0.01776123046875, 0.0247650146484375, 0.00681304931640625, -0.04730224609375, -0.01203155517578125, -0.059234619140625, 0.032958984375, 0.0460205078125, 0.0462646484375, -0.00818634033203125, 0.0406494140625, 0.0207366943359375, -0.0008139610290527344, -0.0021877288818359375, 0.0164031982421875, -0.0159912109375, 0.037689208984375, -0.0282135009765625, -0.01483154296875, -0.0035877227783203125, -0.03546142578125, -0.00612640380859375, -0.038360595703125, 0.04449462890625, 0.0222320556640625, 0.0245513916015625, -0.0006375312805175781, -0.0289764404296875, 0.0030345916748046875, -0.056243896484375, 0.03594970703125, 0.00653839111328125, -0.06256103515625, -0.0183868408203125, 0.0256500244140625, -0.02490234375, 0.0016269683837890625, 0.034393310546875, -0.00009262561798095703, 0.0030956268310546875, 0.0179443359375, -0.03424072265625, 0.013153076171875, 0.0119171142578125, 0.019775390625, -0.01140594482421875, -0.00276947021484375, -0.0014142990112304688, -0.0618896484375, -0.0263824462890625, -0.03656005859375, 0.024627685546875, 0.01168060302734375, 0.0755615234375, -0.00897979736328125, 0.01465606689453125, -0.001125335693359375, -0.04034423828125, 0.045867919921875, -0.00357818603515625, 0.006122589111328125, 0.025115966796875, -0.00789642333984375, -0.018341064453125, -0.0506591796875, 0.0169219970703125, 0.0030956268310546875, -0.03338623046875, 0.0005822181701660156, 0.0013952255249023438, 0.013427734375, 0.00653839111328125, -0.01461029052734375, -0.040557861328125, -0.056854248046875, -0.016387939453125, 0.041412353515625, -0.017120361328125, 0.004131317138671875, -0.0469970703125, 0.04510498046875, -0.00445556640625, 0.0244598388671875, -0.021820068359375, -0.00824737548828125, -0.039337158203125, 0.01174163818359375, -0.032623291015625, 0.00855255126953125, 0.0199127197265625, -0.01277923583984375, 0.032470703125, -0.006366729736328125, 0.0137939453125, -0.00823211669921875, 0.001583099365234375, -0.053314208984375, -0.010498046875, -0.006244659423828125, 0.01220703125, 0.004528045654296875, -0.00617218017578125, -0.026397705078125, -0.052459716796875, -0.036346435546875, -0.01371002197265625, -0.00926971435546875, -0.0218505859375, 0.00927734375, 0.00504302978515625, -0.0645751953125, -0.01300048828125, -0.0093231201171875, -0.00873565673828125, -0.038848876953125, 0.006214141845703125, -0.030517578125, -0.0399169921875, 0.059722900390625, -0.0699462890625, 0.03265380859375, -0.0011510848999023438, 0.019561767578125, -0.066650390625, -0.01171112060546875, -0.0171661376953125, 0.0208892822265625, -0.028961181640625, 0.01465606689453125, 0.0245513916015625, -0.01021575927734375, 0.013275146484375, -0.014678955078125, -0.005523681640625, 0.03338623046875, -0.0440673828125, -0.0004119873046875, 0.029571533203125, 0.002223968505859375, -0.062286376953125, -0.06982421875, 0.00980377197265625, -0.057708740234375, 0.002033233642578125, 0.0212860107421875, -0.0023288726806640625, -0.0007410049438476562, -0.0325927734375, -0.07427978515625, 0.0662841796875, -0.004913330078125, -0.023040771484375, -0.07733154296875, 0.01238250732421875, -0.0038700103759765625, 0.01259613037109375, -0.016204833984375, -0.03509521484375, -0.027069091796875, 0.029693603515625, 0.0221710205078125, 0.06695556640625, -0.0248870849609375, 0.05413818359375, 0.047332763671875, 0.08001708984375, 0.0428466796875, -0.0069427490234375, -0.01253509521484375, 0.018585205078125, 0.0164031982421875, 0.05804443359375, 0.0157623291015625, 0.0036334991455078125, 0.0030078887939453125, -0.05908203125, 0.0072479248046875, -0.017333984375, -0.03326416015625, -0.060699462890625, 0.03369140625, -0.002239227294921875, 0.0123291015625, 0.0108184814453125, -0.059417724609375, -0.01216888427734375, 0.00205230712890625, -0.00667572021484375, 0.0164794921875, -0.050201416015625, 0.0171966552734375, -0.0061798095703125, -0.01120758056640625, -0.00537872314453125, -0.00020635128021240234, -0.0582275390625, 0.0177459716796875, -0.01226806640625, -0.0222625732421875, -0.0019197463989257812, 0.03564453125, 0.07110595703125, -0.048370361328125, -0.002033233642578125, -0.007610321044921875, 0.0229339599609375, 0.028594970703125, -0.049774169921875, 0.01279449462890625, 0.0562744140625, 0.0010995864868164062, -0.00806427001953125, 0.045074462890625, -0.039398193359375, 0.0127410888671875, 0.005840301513671875, -0.01233673095703125, 0.0374755859375, 0.006366729736328125, 0.03533935546875, -0.011199951171875, 0.0233154296875, 0.01015472412109375, 0.036346435546875, -0.018707275390625, -0.0228271484375, -0.007282257080078125, 0.04217529296875, -0.00664520263671875, -0.00807952880859375, 0.0313720703125, -0.0462646484375, 0.0113372802734375, 0.065185546875, -0.005611419677734375, 0.03009033203125, -0.014404296875, -0.050628662109375, 0.00223541259765625, -0.0290374755859375 ]
5a3ec11905eaea433161259fc0e6e4694aad371e
Wordpress Stackexchange Q: How to count data records in wordpress which have same meta_value in wp_postmeta table? I want to get number or count of same meta_value of meta_key == 'parent_id'.How can i get it? What should be the wordpress query for counting records in same table? //set the meta_key to the appropriate custom field meta key $meta_key = 'parent_id'; $allmiles = $wpdb->get_var( $wpdb->prepare( "SELECT meta_value, SUM(IF(meta_value = "Purva", 1,0)) AS 'parent_id', COUNT(meta_value) AS 'total' FROM $wpdb->wp_postmeta GROUP BY post_id ORDER BY parent_id DESC", $meta_key ) ); echo "<p>Total miles is {$allmiles}</p>"; A: <?php global $wpdb; $table_name = $wpdb->prefix . "postmeta"; $login_name = sanitize_user( $_POST['parent_id'] ); $prepare = $wpdb->prepare( "SELECT COUNT(*) FROM $table_name WHERE meta_value = 'Purva' AND meta_key = 'parent_id' ", $login_name ); $myrows = $wpdb->get_results( $prepare ); echo '<pre>' . print_r( $myrows, true ) . '</pre>'; ?> I tried this and get values but still something missing...
Q: How to count data records in wordpress which have same meta_value in wp_postmeta table? I want to get number or count of same meta_value of meta_key == 'parent_id'.How can i get it? What should be the wordpress query for counting records in same table? //set the meta_key to the appropriate custom field meta key $meta_key = 'parent_id'; $allmiles = $wpdb->get_var( $wpdb->prepare( "SELECT meta_value, SUM(IF(meta_value = "Purva", 1,0)) AS 'parent_id', COUNT(meta_value) AS 'total' FROM $wpdb->wp_postmeta GROUP BY post_id ORDER BY parent_id DESC", $meta_key ) ); echo "<p>Total miles is {$allmiles}</p>"; A: <?php global $wpdb; $table_name = $wpdb->prefix . "postmeta"; $login_name = sanitize_user( $_POST['parent_id'] ); $prepare = $wpdb->prepare( "SELECT COUNT(*) FROM $table_name WHERE meta_value = 'Purva' AND meta_key = 'parent_id' ", $login_name ); $myrows = $wpdb->get_results( $prepare ); echo '<pre>' . print_r( $myrows, true ) . '</pre>'; ?> I tried this and get values but still something missing...
wordpress
{ "language": "en", "length": 147, "provenance": "stackexchange_00019.jsonl.gz:467674", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/236754" }
[ 0.0202178955078125, 0.0222320556640625, -0.01654052734375, -0.035125732421875, 0.012908935546875, -0.01751708984375, 0.0117340087890625, -0.0194091796875, 0.0024089813232421875, 0.031280517578125, -0.01251220703125, -0.0021839141845703125, -0.0303802490234375, -0.0170440673828125, -0.04144287109375, -0.04583740234375, 0.0306549072265625, 0.007701873779296875, 0.046783447265625, 0.0016632080078125, 0.01055145263671875, 0.024566650390625, -0.0034580230712890625, -0.003932952880859375, 0.050689697265625, -0.06060791015625, 0.01016998291015625, -0.0241546630859375, 0.02972412109375, -0.0005259513854980469, 0.0178375244140625, 0.0094146728515625, 0.00846099853515625, -0.0301513671875, 0.033416748046875, -0.0304412841796875, 0.049774169921875, -0.025299072265625, -0.003292083740234375, 0.03814697265625, 0.04754638671875, -0.0160675048828125, -0.01375579833984375, -0.01163482666015625, -0.01064300537109375, -0.0222930908203125, 0.03857421875, -0.01654052734375, 0.032012939453125, -0.0089569091796875, -0.008575439453125, 0.045257568359375, -0.0152587890625, 0.0279083251953125, -0.00850677490234375, 0.00555419921875, 0.0160675048828125, -0.040191650390625, 0.027099609375, 0.024200439453125, -0.0178070068359375, -0.0017576217651367188, 0.013519287109375, -0.0328369140625, -0.0032215118408203125, -0.006931304931640625, -0.0252838134765625, 0.02435302734375, 0.03741455078125, -0.0178375244140625, -0.0278472900390625, 0.027435302734375, 0.0192108154296875, 0.004535675048828125, -0.01406097412109375, -0.04620361328125, 0.026092529296875, -0.00701904296875, 0.0020427703857421875, 0.0187835693359375, 0.008087158203125, -0.01458740234375, -0.03961181640625, 0.034088134765625, -0.03411865234375, 0.028350830078125, -0.00940704345703125, -0.0207366943359375, -0.0166015625, -0.02972412109375, -0.00975799560546875, -0.05303955078125, -0.0248565673828125, 0.037628173828125, 0.005199432373046875, -0.03485107421875, 0.0321044921875, 0.086669921875, -0.04376220703125, -0.04901123046875, 0.0009293556213378906, -0.01491546630859375, -0.0589599609375, -0.0256500244140625, 0.01313018798828125, 0.0159149169921875, -0.0188751220703125, 0.004222869873046875, 0.069580078125, 0.0313720703125, 0.000835418701171875, 0.031524658203125, -0.05859375, -0.0316162109375, -0.041351318359375, 0.047515869140625, -0.041839599609375, -0.04046630859375, 0.0060882568359375, -0.014434814453125, -0.0341796875, -0.02044677734375, -0.0280303955078125, 0.01412200927734375, 0.0167083740234375, -0.0078125, -0.0158843994140625, 0.0288848876953125, -0.0357666015625, 0.051788330078125, -0.033966064453125, -0.01422882080078125, 0.046173095703125, 0.040283203125, 0.003391265869140625, -0.029449462890625, 0.0090484619140625, -0.0101318359375, -0.0029659271240234375, 0.0220794677734375, -0.02166748046875, -0.06890869140625, -0.006744384765625, -0.006160736083984375, -0.030364990234375, 0.015167236328125, 0.016387939453125, 0.005611419677734375, -0.0340576171875, -0.00841522216796875, -0.05401611328125, 0.01142120361328125, 0.00888824462890625, 0.00945281982421875, -0.03363037109375, 0.026763916015625, -0.039947509765625, 0.007289886474609375, -0.0416259765625, 0.01290130615234375, 0.0316162109375, -0.0230865478515625, -0.0133514404296875, -0.0201873779296875, -0.053131103515625, 0.02325439453125, -0.03021240234375, -0.0155029296875, 0.024078369140625, 0.01328277587890625, 0.06976318359375, -0.005527496337890625, 0.044097900390625, 0.00891876220703125, 0.0005712509155273438, -0.0189208984375, -0.081787109375, -0.009185791015625, 0.06939697265625, -0.06378173828125, -0.03253173828125, -0.029388427734375, 0.01074981689453125, 0.048248291015625, -0.031982421875, 0.036346435546875, 0.01390838623046875, 0.0223541259765625, -0.020904541015625, 0.00298309326171875, 0.04541015625, 0.054473876953125, -0.0217742919921875, -0.01331329345703125, 0.002262115478515625, -0.0011320114135742188, -0.0208740234375, 0.000118255615234375, -0.004695892333984375, -0.00917816162109375, 0.01328277587890625, -0.008514404296875, 0.022796630859375, -0.0225067138671875, -0.0259246826171875, 0.0025882720947265625, -0.0079498291015625, 0.0298309326171875, -0.045684814453125, 0.006221771240234375, 0.04071044921875, 0.01189422607421875, -0.045379638671875, 0.005268096923828125, -0.003326416015625, -0.0193634033203125, -0.01459503173828125, 0.0201263427734375, -0.020355224609375, 0.0164031982421875, -0.037384033203125, -0.00614166259765625, -0.044219970703125, 0.01041412353515625, 0.0089874267578125, -0.0014820098876953125, -0.0286712646484375, -0.0016355514526367188, 0.0241546630859375, -0.0197906494140625, 0.029052734375, 0.037628173828125, 0.00753021240234375, -0.00821685791015625, -0.05560302734375, -0.0218963623046875, -0.0305328369140625, -0.0308685302734375, -0.0020465850830078125, 0.05517578125, 0.04608154296875, 0.0157470703125, 0.001941680908203125, 0.01505279541015625, 0.0275115966796875, -0.054840087890625, 0.006801605224609375, -0.0086212158203125, 0.001949310302734375, 0.045166015625, -0.03131103515625, -0.0008921623229980469, 0.01861572265625, -0.0281524658203125, -0.0165252685546875, 0.04119873046875, -0.02081298828125, -0.004268646240234375, -0.051239013671875, 0.034759521484375, -0.01085662841796875, -0.03399658203125, -0.0002512931823730469, -0.024505615234375, -0.00737762451171875, 0.0191650390625, 0.038604736328125, 0.03179931640625, -0.0141754150390625, 0.0024013519287109375, 0.00771331787109375, 0.0142364501953125, -0.00469207763671875, 0.004482269287109375, -0.050628662109375, 0.0307769775390625, -0.0294647216796875, 0.01355743408203125, 0.0007052421569824219, -0.0026836395263671875, -0.0228118896484375, 0.017486572265625, -0.088134765625, -0.0139923095703125, -0.022186279296875, -0.046600341796875, -0.0176544189453125, 0.0056610107421875, -0.0323486328125, -0.0019483566284179688, 0.010650634765625, 0.037200927734375, 0.00604248046875, 0.00328826904296875, 0.007755279541015625, -0.0008091926574707031, 0.0157470703125, -0.0198211669921875, 0.0273284912109375, -0.0308990478515625, 0.036651611328125, 0.049652099609375, -0.020965576171875, 0.0263519287109375, -0.024322509765625, -0.048797607421875, -0.03924560546875, 0.0352783203125, 0.007381439208984375, -0.0828857421875, -0.0031585693359375, 0.0252532958984375, 0.0457763671875, 0.07830810546875, 0.0017223358154296875, -0.0167083740234375, -0.001377105712890625, 0.045501708984375, -0.0460205078125, -0.11016845703125, -0.022613525390625, -0.044464111328125, 0.029266357421875, -0.036651611328125, -0.0176849365234375, -0.006114959716796875, -0.04241943359375, 0.01435089111328125, -0.017578125, -0.02130126953125, -0.05950927734375, -0.071533203125, -0.057952880859375, -0.0056915283203125, -0.002117156982421875, -0.00539398193359375, -0.0006113052368164062, 0.038421630859375, -0.00348663330078125, -0.024749755859375, -0.0025501251220703125, 0.04345703125, -0.01251983642578125, -0.026458740234375, -0.04156494140625, -0.00876617431640625, -0.003108978271484375, -0.004848480224609375, -0.00827789306640625, -0.02294921875, 0.03460693359375, -0.0083770751953125, 0.055694580078125, -0.00279998779296875, 0.0625, -0.0280914306640625, -0.08551025390625, 0.054443359375, 0.04632568359375, -0.01467132568359375, -0.034149169921875, -0.0240020751953125, -0.058074951171875, 0.01137542724609375, 0.0303497314453125, 0.0240478515625, 0.0110626220703125, -0.011138916015625, 0.00907135009765625, -0.0020084381103515625, -0.00844573974609375, -0.006011962890625, 0.025360107421875, -0.008514404296875, 0.007511138916015625, 0.001194000244140625, -0.0287322998046875, -0.051513671875, -0.006732940673828125, -0.04217529296875, 0.00576019287109375, 0.00850677490234375, -0.0198822021484375, -0.0012483596801757812, -0.03265380859375, 0.07208251953125, 0.05902099609375, 0.04931640625, -0.04058837890625, -0.06158447265625, -0.03778076171875, 0.0809326171875, 0.0114593505859375, -0.030853271484375, -0.005870819091796875, 0.01178741455078125, -0.0013265609741210938, -0.005702972412109375, 0.00232696533203125, -0.0064849853515625, -0.055511474609375, -0.030364990234375, -0.01456451416015625, -0.03521728515625, -0.004489898681640625, -0.0057220458984375, -0.042327880859375, -0.0352783203125, 0.0289154052734375, 0.01092529296875, -0.019134521484375, 0.01065826416015625, -0.0338134765625, -0.003757476806640625, -0.0150604248046875, 0.0123443603515625, -0.0011234283447265625, -0.0203857421875, -0.0002446174621582031, 0.0445556640625, 0.0123291015625, -0.0318603515625, 0.004878997802734375, 0.0316162109375, -0.016357421875, 0.01465606689453125, -0.0186004638671875, 0.0126800537109375, -0.01457977294921875, -0.00318145751953125, -0.01148223876953125, -0.028656005859375, -0.026611328125, -0.03912353515625, 0.01190185546875, -0.02880859375, -0.0343017578125, -0.040679931640625, -0.025848388671875, 0.0013170242309570312, 0.006072998046875, -0.04205322265625, -0.04266357421875, 0.00913238525390625, -0.016387939453125, -0.0139923095703125, -0.0311126708984375, -0.01067352294921875, 0.00649261474609375, 0.0219879150390625, -0.00038909912109375, -0.0026073455810546875, 0.03009033203125, 0.0106048583984375, -0.021392822265625, -0.022735595703125, -0.017669677734375, 0.0222625732421875, -0.031585693359375, 0.03662109375, 0.0005459785461425781, -0.027191162109375, 0.08441162109375, -0.01453399658203125, 0.00408172607421875, 0.01904296875, 0.028778076171875, 0.0195770263671875, -0.021209716796875, 0.0061492919921875, 0.02545166015625, -0.018707275390625, 0.0401611328125, -0.00151824951171875, -0.0023212432861328125, -0.034912109375, 0.00930023193359375, 0.020904541015625, -0.032867431640625, -0.029541015625, -0.01410675048828125, 0.00600433349609375, -0.023193359375, 0.045166015625, 0.0031108856201171875, -0.001434326171875, -0.003490447998046875, 0.00832366943359375, 0.013671875, 0.0257720947265625, 0.06500244140625, -0.02825927734375, 0.0218658447265625, 0.0212860107421875, -0.01806640625, -0.01666259765625, -0.010955810546875, 0.0310516357421875, -0.012786865234375, -0.0657958984375, 0.044921875, -0.0252532958984375, 0.0149993896484375, 0.04296875, 0.0025539398193359375, 0.044891357421875, 0.032196044921875, -0.040679931640625, -0.0214080810546875, -0.0034637451171875, -0.02386474609375, -0.0584716796875, -0.022430419921875, 0.00876617431640625, -0.006931304931640625, 0.00313568115234375, 0.09136962890625, -0.016571044921875, 0.06353759765625, -0.014678955078125, 0.01288604736328125, 0.0203857421875, 0.08154296875, 0.038787841796875, -0.0843505859375, -0.0198211669921875, 0.07037353515625, -0.0240936279296875, -0.02911376953125, -0.0183868408203125, 0.03759765625, 0.0233001708984375, 0.0462646484375, 0.0172271728515625, -0.019989013671875, 0.00490570068359375, -0.009063720703125, -0.00325775146484375, -0.0276947021484375, -0.00771331787109375, -0.01477813720703125, 0.00585174560546875, 0.01248931884765625, 0.02362060546875, 0.005435943603515625, -0.0203704833984375, -0.025726318359375, 0.036590576171875, -0.02203369140625, 0.036529541015625, -0.0179443359375, -0.03924560546875, -0.032867431640625, -0.020660400390625, -0.01284027099609375, -0.0036029815673828125, -0.0157012939453125, 0.00640869140625, -0.0013408660888671875, -0.00018489360809326172, -0.00893402099609375, 0.040679931640625, -0.03985595703125, 0.007320404052734375, -0.01212310791015625, 0.0008730888366699219, 0.04827880859375, 0.019561767578125, 0.0301055908203125, -0.037139892578125, -0.024810791015625, -0.048736572265625, 0.0616455078125, 0.0517578125, -0.01471710205078125, 0.005550384521484375, -0.0158843994140625, 0.0245819091796875, -0.01386260986328125, -0.004764556884765625, -0.00186920166015625, -0.00923919677734375, -0.0240936279296875, -0.00013899803161621094, 0.00582122802734375, 0.05841064453125, -0.046112060546875, 0.004940032958984375, 0.012847900390625, 0.036590576171875, 0.0045166015625, -0.0171356201171875, 0.038726806640625, -0.00981903076171875, -0.0400390625, -0.04547119140625, -0.0105133056640625, -0.06207275390625, -0.01247406005859375, -0.02593994140625, 0.0521240234375, -0.006671905517578125, 0.0004413127899169922, 0.00460052490234375, -0.0034885406494140625, 0.0043487548828125, 0.026458740234375, 0.07232666015625, -0.01023101806640625, -0.0032939910888671875, -0.01031494140625, 0.0024242401123046875, 0.01125335693359375, -0.004642486572265625, -0.0030155181884765625, 0.00325775146484375, -0.05474853515625, 0.05908203125, 0.06805419921875, 0.0238037109375, 0.037139892578125, 0.0188446044921875, 0.0114593505859375, -0.005672454833984375, -0.02044677734375, 0.0104217529296875, 0.00785064697265625, 0.0723876953125, -0.0115814208984375, -0.00295257568359375, 0.060638427734375, -0.030609130859375, -0.011688232421875, -0.0316162109375, -0.00572967529296875, -0.00440216064453125, 0.0138397216796875, -0.0003752708435058594, 0.00795745849609375, -0.005962371826171875, 0.017913818359375, -0.00415802001953125, -0.007038116455078125, -0.00940704345703125, 0.007137298583984375, -0.006580352783203125, 0.0214691162109375, 0.0164337158203125, -0.01317596435546875, -0.03192138671875, -0.007808685302734375, -0.00786590576171875, 0.06207275390625, -0.048828125, -0.03131103515625, -0.036529541015625, -0.0095977783203125, 0.012054443359375, -0.0221099853515625, 0.00731658935546875, -0.047119140625, -0.0035915374755859375, -0.062164306640625, -0.002887725830078125, -0.02325439453125, 0.0693359375, 0.050445556640625, 0.0274810791015625, 0.024383544921875, -0.037353515625, 0.007137298583984375, 0.01508331298828125, -0.02008056640625, -0.00926971435546875, -0.0277252197265625, 0.0137481689453125, -0.01666259765625, 0.0027828216552734375, -0.0279388427734375, 0.006744384765625, -0.002399444580078125, -0.007709503173828125, 0.037200927734375, -0.043060302734375, 0.0012006759643554688, 0.04974365234375, 0.042816162109375, -0.0171966552734375, 0.016387939453125, 0.04180908203125, -0.035797119140625, -0.02545166015625, 0.03631591796875, -0.00962066650390625, -0.02593994140625, 0.0155029296875, -0.044708251953125, 0.10467529296875, -0.035125732421875, 0.003360748291015625, 0.00885009765625, 0.04803466796875, -0.010650634765625, 0.0188446044921875, -0.04559326171875, 0.07366943359375, 0.0224609375, 0.049560546875, -0.0450439453125, -0.011505126953125, 0.0198822021484375, 0.033203125, 0.047332763671875, 0.01403045654296875, -0.054473876953125, -0.03533935546875, -0.0015859603881835938, -0.00787353515625, -0.0220184326171875, 0.0770263671875, 0.003261566162109375, 0.08154296875, 0.10302734375, -0.0611572265625, 0.0234527587890625, 0.034210205078125, -0.00276947021484375, 0.0241241455078125, 0.0001729726791381836, -0.0265655517578125, -0.054595947265625, 0.04705810546875, -0.01019287109375, -0.034088134765625, 0.00704193115234375, 0.0154876708984375, 0.0262298583984375, 0.0579833984375, 0.0670166015625, -0.058563232421875, -0.0193328857421875, -0.03485107421875, 0.045318603515625, 0.0034160614013671875, 0.004123687744140625, -0.00975799560546875, 0.0081939697265625, 0.0294189453125, 0.011444091796875, -0.00909423828125, 0.06439208984375, -0.0189361572265625, 0.03778076171875, -0.00823211669921875, 0.011688232421875, -0.033294677734375, 0.057861328125, 0.00765228271484375, 0.03399658203125, -0.0445556640625, -0.0379638671875, 0.01004791259765625, -0.0006623268127441406, -0.0108489990234375, 0.00269317626953125, -0.00997161865234375, 0.004772186279296875, 0.0297698974609375, 0.024658203125, -0.03167724609375, 0.0053253173828125, 0.0229339599609375, 0.023468017578125, 0.0197906494140625, -0.014801025390625, -0.0438232421875, -0.01078033447265625, -0.0109405517578125, 0.01238250732421875, 0.03662109375, 0.0230865478515625, 0.0408935546875, -0.0306549072265625, -0.01023101806640625, -0.040283203125, -0.005146026611328125, -0.00447845458984375, 0.043426513671875, -0.0355224609375, 0.031402587890625, 0.0269775390625, 0.051788330078125, 0.0287933349609375, 0.047119140625, 0.051300048828125, 0.0243072509765625, -0.0162811279296875, 0.011627197265625, 0.041595458984375, -0.032989501953125, -0.0192718505859375, -0.006359100341796875, -0.0036163330078125, -0.008514404296875, 0.00927734375, -0.012237548828125, 0.0728759765625, -0.028594970703125, 0.00801849365234375, 0.0078887939453125, 0.01377105712890625, -0.00011831521987915039, -0.0024356842041015625, 0.006061553955078125, 0.020172119140625, 0.0306396484375, -0.0655517578125, -0.0030517578125, 0.003662109375, -0.027313232421875, 0.0241851806640625, 0.04180908203125, -0.0396728515625, 0.04852294921875, 0.0017099380493164062, -0.0097503662109375, -0.01395416259765625, 0.00884246826171875, 0.00844573974609375, 0.007709503173828125, 0.025787353515625, 0.00795745849609375, -0.0278472900390625, -0.0251007080078125, 0.007427215576171875, 0.0247039794921875, -0.0028972625732421875, 0.051971435546875, -0.0136566162109375, 0.0111236572265625, -0.0233306884765625, 0.0233917236328125, -0.006389617919921875, -0.00931549072265625, 0.053619384765625, 0.018890380859375, -0.00585174560546875, -0.0235595703125, -0.0237884521484375, 0.019378662109375, 0.0439453125, 0.02484130859375, 0.0197906494140625, -0.0107421875, 0.0231170654296875, -0.0179443359375, 0.0249786376953125, -0.0018491744995117188, 0.005157470703125, 0.0026264190673828125, -0.0204620361328125, 0.049072265625, 0.0693359375, 0.0169219970703125, 0.050537109375, 0.018463134765625, -0.026214599609375, 0.03485107421875, -0.047760009765625, 0.0697021484375, 0.049407958984375, -0.0126953125, -0.023529052734375, -0.0106964111328125, -0.0100860595703125, 0.00264739990234375, 0.00959014892578125, -0.0078887939453125, 0.0304718017578125, -0.06488037109375, 0.01873779296875, 0.07183837890625, 0.06280517578125, 0.01131439208984375, 0.03399658203125, 0.025390625, -0.0267486572265625, 0.033172607421875, -0.02252197265625, -0.0267486572265625, -0.056610107421875, 0.005527496337890625, 0.0026912689208984375, -0.00795745849609375, -0.030029296875, 0.0255889892578125, 0.04486083984375, -0.008209228515625, -0.00804901123046875, -0.034332275390625, 0.047698974609375, -0.038299560546875, -0.007190704345703125, -0.0283660888671875, -0.0216064453125, -0.0092010498046875, 0.034271240234375, -0.003360748291015625, -0.042449951171875, -0.0296478271484375, 0.0357666015625, -0.0300750732421875, 0.0148162841796875, 0.00490570068359375, -0.02740478515625, -0.0017118453979492188, -0.0177459716796875, 0.0237579345703125, 0.00670623779296875, 0.06903076171875, -0.03411865234375, -0.0264892578125, 0.00040078163146972656, 0.019683837890625, -0.042694091796875, 0.019683837890625, -0.07318115234375, -0.032440185546875, 0.0008673667907714844, 0.0167694091796875, 0.048248291015625, -0.037109375, -0.09954833984375, 0.0643310546875, -0.019073486328125, -0.050048828125, -0.0225982666015625, -0.031982421875, -0.012603759765625, 0.0293121337890625, -0.011688232421875, -0.0220489501953125, -0.0304107666015625, 0.048095703125, 0.0211639404296875, -0.009002685546875, 0.009857177734375, -0.0007305145263671875, -0.082763671875, 0.030731201171875, 0.02423095703125, 0.0125579833984375, -0.03765869140625, 0.031036376953125, 0.0054473876953125, 0.0280303955078125, -0.02783203125, 0.042877197265625, 0.005138397216796875, 0.029296875, -0.008392333984375, -0.054412841796875, 0.0206146240234375, 0.0262451171875, 0.043670654296875, 0.035491943359375, -0.00359344482421875, -0.0645751953125, -0.05328369140625, -0.0633544921875, 0.0008831024169921875, -0.05120849609375, 0.016876220703125, -0.09942626953125, -0.01009368896484375, 0.007068634033203125, -0.0235748291015625, -0.04180908203125, 0.026092529296875, -0.0216064453125, -0.006809234619140625, 0.040008544921875, 0.0018148422241210938, 0.006244659423828125, -0.00469970703125, 0.032745361328125, -0.031341552734375, -0.03277587890625, 0.01358795166015625, -0.0005054473876953125, -0.0199127197265625, 0.052032470703125, 0.0179443359375, -0.0164947509765625, -0.0012693405151367188, 0.0106353759765625, 0.026214599609375, -0.00762939453125, 0.0006084442138671875, -0.0384521484375, -0.0435791015625, 0.0023956298828125, -0.0016984939575195312, 0.00655364990234375, -0.0041351318359375, -0.01111602783203125, 0.0209197998046875, 0.028167724609375, -0.0164031982421875, 0.0082855224609375, -0.027618408203125, 0.03643798828125, 0.0078582763671875, -0.021087646484375, 0.0374755859375, -0.0004458427429199219, -0.007694244384765625, -0.0181427001953125, -0.00693511962890625, -0.100341796875, 0.0543212890625, 0.0307159423828125, 0.011962890625, 0.053466796875 ]
81979bb8b3ac55aef09b1c1226c84debb018b858
Wordpress Stackexchange Q: Why "Settings->Permalinks" creates .htaccess file on nginx server? I created a wordpress site and hosted on nginx server, and settings-> Permalinks and clicked save changes. This creates a .htaccess file on the site root. On Apache server it's logical and worth creating an .htaccess file, but what it has to do with nginx server?? Is it safe to delete the .htaccess file from the root of my website?? A: WordPress tries to detect the webserver's type by peeking into the global $_SERVER['SERVER_SOFTWARE'] variable. The Apache check is: $is_apache = (strpos($_SERVER['SERVER_SOFTWARE'], 'Apache') !== false || strpos($_SERVER['SERVER_SOFTWARE'], 'LiteSpeed') !== false); and the Nginx check is: $is_nginx = (strpos($_SERVER['SERVER_SOFTWARE'], 'nginx') !== false); You should therefore first check out: var_dump( $_SERVER['SERVER_SOFTWARE'] ); to see if it's correct. Here are some alternative workarounds: It's also possible to avoid the .htaccess file being created with: add_filter( 'flush_rewrite_rules_hard', '__return_false' ); to avoid the save_mod_rewrite_rules() to run. Within the save_mod_rewrite_rules() function, there's a got_mod_rewrite() check before the .htaccess is updated. It's also possible to use: add_filter( 'got_rewrite', '__return_false' ); to avoid insert_with_markers() to run that writes the .htaccess file.
Q: Why "Settings->Permalinks" creates .htaccess file on nginx server? I created a wordpress site and hosted on nginx server, and settings-> Permalinks and clicked save changes. This creates a .htaccess file on the site root. On Apache server it's logical and worth creating an .htaccess file, but what it has to do with nginx server?? Is it safe to delete the .htaccess file from the root of my website?? A: WordPress tries to detect the webserver's type by peeking into the global $_SERVER['SERVER_SOFTWARE'] variable. The Apache check is: $is_apache = (strpos($_SERVER['SERVER_SOFTWARE'], 'Apache') !== false || strpos($_SERVER['SERVER_SOFTWARE'], 'LiteSpeed') !== false); and the Nginx check is: $is_nginx = (strpos($_SERVER['SERVER_SOFTWARE'], 'nginx') !== false); You should therefore first check out: var_dump( $_SERVER['SERVER_SOFTWARE'] ); to see if it's correct. Here are some alternative workarounds: It's also possible to avoid the .htaccess file being created with: add_filter( 'flush_rewrite_rules_hard', '__return_false' ); to avoid the save_mod_rewrite_rules() to run. Within the save_mod_rewrite_rules() function, there's a got_mod_rewrite() check before the .htaccess is updated. It's also possible to use: add_filter( 'got_rewrite', '__return_false' ); to avoid insert_with_markers() to run that writes the .htaccess file.
wordpress
{ "language": "en", "length": 182, "provenance": "stackexchange_00019.jsonl.gz:467683", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/236787" }
[ 0.03668212890625, 0.0045318603515625, 0.0200347900390625, -0.004451751708984375, -0.004360198974609375, -0.0263519287109375, 0.031707763671875, -0.0450439453125, -0.035980224609375, -0.003925323486328125, -0.01312255859375, 0.01067352294921875, -0.001270294189453125, -0.03997802734375, 0.05340576171875, -0.0210113525390625, 0.01099395751953125, 0.001033782958984375, 0.0247802734375, 0.0005941390991210938, -0.0007953643798828125, -0.0008535385131835938, 0.041351318359375, -0.0152740478515625, 0.01377105712890625, -0.052886962890625, 0.071533203125, -0.021697998046875, 0.0009436607360839844, -0.01552581787109375, 0.005523681640625, 0.016754150390625, 0.037994384765625, 0.04632568359375, -0.07830810546875, 0.04766845703125, -0.00537872314453125, 0.02093505859375, 0.0015878677368164062, 0.024627685546875, 0.026702880859375, -0.023468017578125, 0.0665283203125, 0.010498046875, 0.0308990478515625, -0.0124664306640625, 0.0380859375, -0.07281494140625, 0.03643798828125, -0.0245208740234375, -0.01338958740234375, 0.006381988525390625, -0.004276275634765625, 0.0182037353515625, -0.02447509765625, -0.0125579833984375, 0.01132965087890625, -0.0008196830749511719, 0.007358551025390625, -0.0187835693359375, -0.022003173828125, 0.021514892578125, 0.01532745361328125, 0.0210723876953125, -0.016326904296875, -0.0021820068359375, -0.0250244140625, 0.021209716796875, -0.064697265625, -0.019927978515625, 0.040679931640625, -0.043060302734375, -0.017852783203125, -0.017913818359375, -0.00954437255859375, 0.0009164810180664062, -0.0160369873046875, -0.022674560546875, 0.00695037841796875, 0.0164947509765625, 0.04351806640625, -0.0028476715087890625, -0.0096893310546875, -0.01235198974609375, 0.0191802978515625, 0.015625, 0.01299285888671875, -0.02978515625, -0.0167999267578125, -0.005062103271484375, -0.01995849609375, -0.00908660888671875, -0.036834716796875, 0.0032939910888671875, 0.0117950439453125, -0.04351806640625, -0.0136871337890625, -0.0017423629760742188, 0.01081085205078125, 0.042999267578125, 0.02606201171875, -0.041259765625, 0.0721435546875, -0.0413818359375, 0.0188751220703125, 0.0643310546875, -0.0003635883331298828, 0.01456451416015625, 0.042449951171875, -0.001743316650390625, 0.0105438232421875, 0.00952911376953125, -0.0090484619140625, -0.0146942138671875, -0.031890869140625, 0.029296875, -0.016815185546875, -0.02032470703125, -0.007354736328125, 0.00433349609375, 0.0017957687377929688, 0.01485443115234375, -0.0028820037841796875, 0.003513336181640625, 0.023406982421875, 0.0269622802734375, -0.0074920654296875, -0.01507568359375, 0.01727294921875, 0.022430419921875, -0.01436614990234375, 0.007610321044921875, -0.01325225830078125, 0.007266998291015625, -0.0106353759765625, -0.01165771484375, 0.03765869140625, -0.035614013671875, -0.01226043701171875, 0.040252685546875, -0.01325225830078125, -0.0362548828125, -0.0113525390625, 0.0055694580078125, -0.0017995834350585938, 0.005626678466796875, 0.0134735107421875, 0.0279388427734375, 0.006175994873046875, -0.032501220703125, 0.02862548828125, -0.043670654296875, 0.057098388671875, -0.0089263916015625, -0.01439666748046875, -0.031494140625, 0.0236663818359375, -0.0266876220703125, -0.041778564453125, -0.038177490234375, 0.0200653076171875, -0.0063934326171875, 0.03326416015625, -0.0345458984375, -0.04852294921875, -0.002933502197265625, -0.061859130859375, -0.01837158203125, 0.01024627685546875, -0.031494140625, 0.0137786865234375, -0.0030670166015625, -0.0265960693359375, -0.033721923828125, 0.004543304443359375, -0.0006251335144042969, 0.0239715576171875, -0.00830078125, -0.00634002685546875, 0.0950927734375, 0.044158935546875, -0.01020050048828125, 0.00307464599609375, 0.00820159912109375, -0.0706787109375, 0.049652099609375, -0.0141143798828125, 0.0626220703125, 0.0217742919921875, -0.002384185791015625, 0.037139892578125, 0.01052093505859375, -0.027252197265625, 0.0294647216796875, -0.023651123046875, -0.028045654296875, 0.007228851318359375, 0.0196685791015625, -0.023284912109375, -0.01467132568359375, -0.046661376953125, -0.007190704345703125, 0.0054473876953125, 0.01059722900390625, -0.04107666015625, 0.020050048828125, -0.042022705078125, 0.04473876953125, 0.00013256072998046875, 0.024200439453125, 0.01824951171875, 0.005970001220703125, -0.024139404296875, -0.024932861328125, -0.010223388671875, 0.024932861328125, -0.01537322998046875, 0.04425048828125, 0.013641357421875, 0.03619384765625, 0.0023136138916015625, 0.001049041748046875, 0.0116119384765625, -0.040771484375, -0.019683837890625, -0.0302581787109375, -0.0080718994140625, -0.013916015625, -0.03302001953125, -0.01532745361328125, 0.015594482421875, 0.04522705078125, 0.0218505859375, 0.0391845703125, -0.0357666015625, -0.0163421630859375, -0.0863037109375, -0.09649658203125, -0.004261016845703125, 0.079833984375, 0.03106689453125, 0.033355712890625, -0.01116943359375, -0.01462554931640625, 0.00461578369140625, -0.050811767578125, 0.02783203125, -0.02691650390625, 0.0187530517578125, 0.0181427001953125, -0.00569915771484375, -0.0174407958984375, 0.0303192138671875, -0.0418701171875, 0.00905609130859375, 0.0292510986328125, -0.035247802734375, -0.01020050048828125, -0.005626678466796875, -0.01288604736328125, 0.00977325439453125, 0.01319122314453125, -0.00325775146484375, 0.0036468505859375, 0.01136016845703125, -0.012298583984375, 0.001674652099609375, -0.0026988983154296875, 0.00962066650390625, -0.0006155967712402344, 0.005016326904296875, -0.072509765625, 0.00559234619140625, 0.020904541015625, 0.016082763671875, -0.0005979537963867188, -0.04638671875, 0.0077667236328125, 0.024139404296875, 0.016265869140625, -0.044677734375, -0.007564544677734375, -0.034698486328125, -0.006191253662109375, 0.002506256103515625, -0.042999267578125, -0.0038852691650390625, -0.040008544921875, 0.055084228515625, -0.0013284683227539062, 0.039215087890625, -0.0154266357421875, -0.0282135009765625, 0.03472900390625, -0.007091522216796875, -0.06756591796875, 0.0179290771484375, -0.032196044921875, 0.026458740234375, -0.00714111328125, 0.0325927734375, 0.06402587890625, 0.0216217041015625, -0.007305145263671875, 0.0217437744140625, 0.0117340087890625, 0.01361083984375, 0.0087738037109375, -0.025970458984375, 0.0116119384765625, -0.0867919921875, -0.0191192626953125, 0.0167694091796875, -0.018524169921875, 0.0175933837890625, -0.018035888671875, -0.013427734375, 0.017333984375, -0.0243988037109375, -0.0234832763671875, -0.01319122314453125, 0.0066986083984375, 0.00537109375, 0.005321502685546875, 0.023223876953125, -0.0264892578125, -0.00634002685546875, 0.00759124755859375, -0.0190887451171875, -0.0322265625, -0.0439453125, -0.08624267578125, -0.059600830078125, -0.0185699462890625, -0.005619049072265625, -0.00347900390625, -0.0016880035400390625, 0.0291290283203125, -0.01293182373046875, -0.0618896484375, -0.0310211181640625, -0.0249481201171875, -0.0233154296875, -0.0289459228515625, -0.0450439453125, 0.0012035369873046875, -0.0022754669189453125, -0.0066070556640625, 0.0208282470703125, 0.00292205810546875, 0.00732421875, 0.00972747802734375, -0.023651123046875, -0.0249176025390625, -0.0125885009765625, -0.0013475418090820312, 0.030120849609375, -0.0265045166015625, -0.00653076171875, -0.055755615234375, -0.05377197265625, 0.0052032470703125, -0.043853759765625, 0.00907135009765625, 0.0137481689453125, -0.005107879638671875, 0.004161834716796875, 0.0133209228515625, 0.03143310546875, 0.0270538330078125, 0.02105712890625, -0.0195159912109375, 0.0372314453125, 0.0025577545166015625, 0.02252197265625, -0.05535888671875, 0.02716064453125, -0.0243988037109375, 0.0267181396484375, 0.004688262939453125, -0.020233154296875, -0.007061004638671875, -0.005001068115234375, -0.052764892578125, -0.035888671875, 0.026519775390625, -0.063232421875, 0.01334381103515625, -0.051116943359375, -0.00710296630859375, -0.0216522216796875, 0.06744384765625, -0.0185089111328125, -0.02728271484375, 0.00739288330078125, 0.0269317626953125, -0.02117919921875, -0.029083251953125, -0.0084381103515625, -0.0215606689453125, -0.0653076171875, -0.01125335693359375, -0.0225677490234375, -0.04498291015625, -0.007190704345703125, -0.09332275390625, -0.041351318359375, -0.04937744140625, 0.007007598876953125, -0.055450439453125, 0.00864410400390625, 0.0133514404296875, -0.00322723388671875, -0.0159759521484375, -0.00396728515625, -0.059967041015625, -0.0899658203125, -0.015472412109375, -0.016876220703125, 0.059967041015625, 0.01030731201171875, -0.028533935546875, -0.0006055831909179688, 0.0673828125, 0.0030651092529296875, -0.0031528472900390625, 0.0200958251953125, -0.0012731552124023438, 0.01367950439453125, -0.01451873779296875, 0.0118408203125, -0.0280914306640625, 0.00708770751953125, 0.01367950439453125, -0.0418701171875, 0.0014715194702148438, -0.0074462890625, -0.0204315185546875, 0.06182861328125, -0.061187744140625, -0.054901123046875, -0.0282745361328125, -0.049285888671875, 0.00039649009704589844, -0.015655517578125, -0.0146331787109375, -0.0261993408203125, -0.07061767578125, 0.02862548828125, -0.05120849609375, 0.00640106201171875, 0.0027217864990234375, 0.06878662109375, 0.01136016845703125, 0.002368927001953125, 0.029998779296875, 0.0036220550537109375, 0.01552581787109375, -0.012725830078125, 0.05731201171875, 0.016448974609375, 0.006378173828125, 0.03363037109375, -0.028839111328125, -0.0005044937133789062, -0.0269012451171875, -0.027435302734375, 0.0037384033203125, -0.0095672607421875, -0.0006694793701171875, 0.004886627197265625, 0.06744384765625, 0.02789306640625, 0.0195770263671875, 0.00901031494140625, 0.0081634521484375, 0.0033130645751953125, 0.0088348388671875, -0.0275726318359375, -0.0160369873046875, -0.07330322265625, 0.04083251953125, -0.0277099609375, 0.031829833984375, -0.00901031494140625, 0.006816864013671875, 0.06463623046875, 0.0026302337646484375, -0.021026611328125, 0.0116424560546875, 0.0004832744598388672, 0.0019989013671875, 0.0321044921875, -0.00170135498046875, -0.01422882080078125, -0.01506805419921875, 0.00283050537109375, 0.00921630859375, -0.0038700103759765625, -0.0288848876953125, 0.0012998580932617188, -0.0191192626953125, -0.042083740234375, 0.0171661376953125, -0.00734710693359375, 0.032257080078125, -0.0212554931640625, -0.03564453125, 0.0019178390502929688, -0.01326751708984375, -0.054656982421875, -0.051513671875, 0.01561737060546875, -0.010040283203125, -0.0006241798400878906, 0.001224517822265625, 0.04534912109375, 0.0177154541015625, 0.005489349365234375, -0.0030612945556640625, 0.00695037841796875, 0.007427215576171875, 0.01239776611328125, 0.01456451416015625, 0.010284423828125, 0.01837158203125, -0.0260162353515625, 0.0272979736328125, -0.05755615234375, -0.0069427490234375, 0.049957275390625, 0.054473876953125, -0.0124664306640625, -0.03240966796875, 0.01131439208984375, -0.0167694091796875, -0.0157470703125, -0.01158905029296875, -0.050537109375, -0.0093841552734375, -0.0198516845703125, -0.0286865234375, 0.01348114013671875, -0.00681304931640625, -0.026580810546875, 0.045745849609375, 0.01026153564453125, 0.025726318359375, 0.048065185546875, -0.058746337890625, 0.0007472038269042969, 0.0341796875, 0.0260009765625, -0.016204833984375, -0.0126190185546875, -0.0299224853515625, 0.0203399658203125, -0.0513916015625, -0.011016845703125, 0.05145263671875, 0.0261077880859375, 0.041900634765625, -0.0291595458984375, -0.040374755859375, 0.016693115234375, -0.002696990966796875, 0.023162841796875, -0.005245208740234375, -0.00780487060546875, -0.031524658203125, -0.040435791015625, -0.0260467529296875, -0.0233001708984375, -0.005035400390625, -0.02374267578125, 0.0257720947265625, -0.0001474618911743164, 0.0088653564453125, -0.0199127197265625, -0.0102081298828125, -0.0242919921875, 0.0213470458984375, 0.0032196044921875, -0.0015516281127929688, -0.02227783203125, 0.065185546875, 0.0002294778823852539, 0.003208160400390625, 0.0120849609375, 0.041412353515625, -0.00678253173828125, -0.01702880859375, 0.0258636474609375, -0.04864501953125, -0.0236053466796875, -0.0421142578125, -0.01751708984375, 0.00554656982421875, 0.035797119140625, -0.00745391845703125, 0.0240478515625, 0.0191497802734375, 0.0180206298828125, -0.0236053466796875, -0.052581787109375, -0.018646240234375, 0.00562286376953125, 0.023101806640625, 0.0084991455078125, 0.05712890625, -0.020050048828125, -0.0201416015625, 0.0021800994873046875, -0.0199432373046875, 0.01361083984375, 0.0283660888671875, -0.039703369140625, 0.045166015625, 0.08685302734375, 0.026153564453125, 0.06927490234375, 0.039276123046875, 0.032012939453125, 0.046661376953125, 0.0267181396484375, -0.037445068359375, -0.031402587890625, 0.0225067138671875, 0.0121002197265625, -0.0183563232421875, 0.021575927734375, -0.00856781005859375, 0.0217437744140625, 0.08221435546875, 0.068603515625, -0.108642578125, 0.0048828125, -0.0002486705780029297, -0.00290679931640625, 0.03240966796875, 0.006404876708984375, -0.0177459716796875, -0.0408935546875, -0.0079803466796875, -0.01192474365234375, -0.03204345703125, -0.0218048095703125, 0.01580810546875, 0.005657196044921875, -0.01462554931640625, 0.0789794921875, 0.007030487060546875, 0.0092926025390625, -0.019500732421875, 0.0033359527587890625, 0.01125335693359375, 0.009521484375, 0.0262908935546875, -0.016448974609375, -0.0096588134765625, -0.006343841552734375, 0.00008416175842285156, -0.0189361572265625, -0.0297698974609375, 0.04962158203125, -0.0193328857421875, 0.0021839141845703125, 0.050445556640625, -0.02349853515625, 0.0219573974609375, 0.0193328857421875, -0.0231170654296875, -0.026947021484375, -0.00926971435546875, 0.003078460693359375, 0.00666046142578125, 0.02996826171875, 0.0145416259765625, -0.004360198974609375, -0.05816650390625, -0.004734039306640625, -0.008575439453125, 0.049835205078125, -0.0640869140625, -0.0015869140625, 0.010284423828125, 0.02001953125, 0.021240234375, -0.0298919677734375, 0.00930023193359375, -0.05694580078125, -0.018798828125, -0.0246429443359375, -0.0361328125, 0.01190185546875, -0.0338134765625, -0.055816650390625, 0.062042236328125, -0.02667236328125, 0.05853271484375, 0.0201568603515625, 0.00926971435546875, -0.0144195556640625, -0.0097503662109375, 0.0024623870849609375, 0.03643798828125, 0.0197601318359375, 0.03216552734375, -0.03692626953125, -0.03570556640625, 0.023956298828125, 0.08685302734375, 0.0270843505859375, 0.01654052734375, -0.0498046875, 0.005382537841796875, 0.04962158203125, 0.003017425537109375, -0.00010341405868530273, 0.053558349609375, 0.01293182373046875, 0.026702880859375, 0.025299072265625, -0.009735107421875, 0.0311126708984375, -0.03839111328125, -0.0220489501953125, 0.03546142578125, 0.00574493408203125, -0.00510406494140625, 0.0041351318359375, -0.02459716796875, -0.039093017578125, 0.0101470947265625, 0.017059326171875, 0.00600433349609375, 0.01099395751953125, -0.003582000732421875, 0.0083770751953125, -0.0245208740234375, -0.03857421875, -0.007778167724609375, 0.035797119140625, 0.005649566650390625, -0.0197601318359375, 0.0233917236328125, 0.015869140625, -0.00896453857421875, 0.0016202926635742188, -0.0186004638671875, 0.0455322265625, -0.0312347412109375, -0.0036983489990234375, 0.0506591796875, 0.03887939453125, 0.0435791015625, -0.015106201171875, 0.0116424560546875, 0.0159912109375, 0.006809234619140625, -0.041595458984375, 0.01123046875, 0.00823974609375, 0.01052093505859375, 0.00977325439453125, 0.034637451171875, -0.0194091796875, 0.021575927734375, -0.00220489501953125, 0.0033721923828125, 0.014678955078125, -0.00991058349609375, 0.0210113525390625, 0.042877197265625, -0.01421356201171875, 0.0250244140625, -0.047637939453125, 0.00934600830078125, 0.03582763671875, 0.06756591796875, 0.021575927734375, 0.050933837890625, 0.001178741455078125, -0.04254150390625, -0.0129547119140625, 0.0251312255859375, -0.0182647705078125, 0.0191192626953125, -0.038055419921875, -0.050567626953125, 0.027801513671875, 0.046600341796875, 0.041107177734375, 0.057342529296875, 0.03253173828125, -0.0001933574676513672, 0.0217742919921875, 0.024444580078125, 0.044677734375, -0.02850341796875, 0.0079803466796875, -0.01190185546875, -0.0135345458984375, -0.0207672119140625, -0.0231781005859375, -0.01413726806640625, 0.037139892578125, -0.0128021240234375, -0.01702880859375, 0.038787841796875, -0.01145172119140625, -0.0030155181884765625, 0.0594482421875, -0.0271759033203125, 0.02557373046875, 0.0013980865478515625, 0.0258636474609375, 0.0270538330078125, -0.00405120849609375, -0.05059814453125, -0.0165557861328125, 0.0132293701171875, -0.0249481201171875, 0.047119140625, 0.0133514404296875, -0.007152557373046875, 0.0232391357421875, -0.00893402099609375, -0.0020294189453125, -0.003993988037109375, 0.032470703125, -0.004352569580078125, -0.0445556640625, -0.023101806640625, -0.0225372314453125, 0.03900146484375, 0.0086517333984375, 0.10968017578125, -0.044342041015625, 0.007091522216796875, -0.01424407958984375, -0.03985595703125, 0.01081085205078125, 0.0061187744140625, -0.042633056640625, -0.00962066650390625, -0.0131988525390625, 0.00211334228515625, -0.046722412109375, -0.00901031494140625, 0.0445556640625, -0.045654296875, 0.0200958251953125, -0.01399993896484375, 0.0246124267578125, -0.042755126953125, 0.0494384765625, -0.042236328125, -0.100830078125, -0.07220458984375, 0.034088134765625, -0.0253753662109375, -0.0203399658203125, -0.0266265869140625, 0.061492919921875, 0.0257568359375, -0.00749969482421875, 0.012542724609375, -0.0538330078125, 0.03564453125, 0.042572021484375, -0.0205078125, 0.00738525390625, -0.011199951171875, -0.0362548828125, 0.03155517578125, -0.004589080810546875, -0.006649017333984375, -0.0168609619140625, -0.0389404296875, -0.023956298828125, -0.0245513916015625, -0.004627227783203125, -0.01983642578125, -0.0074310302734375, -0.0214080810546875, -0.002826690673828125, 0.0130157470703125, 0.00923919677734375, -0.0112762451171875, -0.017181396484375, -0.031524658203125, -0.0009207725524902344, -0.03948974609375, -0.069580078125, -0.05029296875, 0.0211639404296875, 0.033172607421875, -0.01256561279296875, -0.06195068359375, 0.047393798828125, -0.055572509765625, 0.0845947265625, -0.043212890625, 0.0205841064453125, -0.02703857421875, -0.0109405517578125, -0.015411376953125, -0.034271240234375, -0.042205810546875, 0.047698974609375, -0.02081298828125, -0.03399658203125, 0.01239013671875, 0.0201263427734375, -0.0237274169921875, -0.043853759765625, -0.03350830078125, 0.01074981689453125, -0.06768798828125, -0.007648468017578125, 0.035186767578125, -0.01435089111328125, -0.06243896484375, -0.028717041015625, 0.032379150390625, -0.051361083984375, -0.0263671875, -0.02960205078125, 0.00907135009765625, 0.024017333984375, -0.0419921875, -0.06927490234375, 0.00927734375, -0.0147857666015625, -0.0252685546875, -0.0457763671875, -0.034149169921875, -0.043212890625, 0.0899658203125, 0.007389068603515625, -0.04132080078125, -0.024993896484375, 0.053863525390625, 0.00390625, 0.0406494140625, -0.0275726318359375, 0.007476806640625, 0.03485107421875, 0.05743408203125, 0.061126708984375, 0.00392913818359375, 0.00467681884765625, -0.0018024444580078125, 0.06072998046875, 0.0906982421875, 0.021331787109375, 0.03485107421875, 0.006130218505859375, -0.0806884765625, -0.01290130615234375, -0.0045166015625, -0.0031337738037109375, 0.007099151611328125, 0.05535888671875, 0.0291290283203125, 0.00592803955078125, -0.031463623046875, -0.027069091796875, -0.052337646484375, -0.04168701171875, -0.033447265625, 0.04071044921875, -0.0723876953125, 0.008056640625, 0.0154266357421875, 0.0246734619140625, 0.032501220703125, -0.0034503936767578125, 0.0034503936767578125, 0.0011453628540039062, 0.05792236328125, -0.00922393798828125, -0.0458984375, -0.043914794921875, 0.07275390625, -0.04339599609375, -0.0209503173828125, -0.00005322694778442383, 0.04290771484375, 0.017913818359375, -0.031402587890625, 0.018157958984375, 0.051544189453125, -0.00353240966796875, 0.028289794921875, 0.04217529296875, -0.0158843994140625, -0.0223541259765625, 0.0018825531005859375, -0.0008096694946289062, 0.0023403167724609375, 0.00782012939453125, -0.004550933837890625, -0.045379638671875, 0.06585693359375, -0.00026226043701171875, 0.07733154296875, -0.00914764404296875, -0.004886627197265625, -0.01513671875, 0.033721923828125, -0.01029205322265625, 0.005767822265625, -0.0011949539184570312, -0.012542724609375, -0.00007158517837524414, 0.004482269287109375, 0.0154876708984375, -0.039031982421875, 0.0280609130859375, -0.07110595703125, 0.00421905517578125, 0.016754150390625 ]
d78b9f94db34a119e350dc7a5f094bc0bc6ed35d
Wordpress Stackexchange Q: Add Capabilities to Custom Post Type after it has been created I have a custom post type that is created by an external plugin. This plugin uses the capabilities associated with posts. I want to add my own custom capabilities to this post type. I have seen plenty of examples of how to do this when registering a new post type but I can't add the capabilities at this point as otherwise the custom capabilities won't be there when I next update the plugin. What would be the best way to add the capabilities after the custom post type has been created? Thanks! A: Irrespective of the plugin you use > each plugin will give you an option to save / view the PHP code generated for the custom post type. This code will also include the capabilities added and generated by the plugin. All you need to do is copy this code into your functions.php and before that disable the plugin. So the custom post type stays and now you can play around with the code / capabilities of the custom post type.
Q: Add Capabilities to Custom Post Type after it has been created I have a custom post type that is created by an external plugin. This plugin uses the capabilities associated with posts. I want to add my own custom capabilities to this post type. I have seen plenty of examples of how to do this when registering a new post type but I can't add the capabilities at this point as otherwise the custom capabilities won't be there when I next update the plugin. What would be the best way to add the capabilities after the custom post type has been created? Thanks! A: Irrespective of the plugin you use > each plugin will give you an option to save / view the PHP code generated for the custom post type. This code will also include the capabilities added and generated by the plugin. All you need to do is copy this code into your functions.php and before that disable the plugin. So the custom post type stays and now you can play around with the code / capabilities of the custom post type.
wordpress
{ "language": "en", "length": 185, "provenance": "stackexchange_00019.jsonl.gz:467692", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/236805" }
[ 0.07354736328125, 0.00136566162109375, -0.0092926025390625, -0.031890869140625, 0.0300445556640625, -0.036376953125, 0.0606689453125, 0.0038471221923828125, -0.048370361328125, 0.0159454345703125, 0.006122589111328125, 0.02899169921875, -0.0413818359375, -0.0213470458984375, 0.0228424072265625, -0.03900146484375, 0.040802001953125, 0.0093536376953125, 0.053253173828125, -0.023193359375, 0.032440185546875, -0.0186920166015625, 0.045562744140625, 0.10498046875, 0.02972412109375, -0.00908660888671875, 0.020355224609375, -0.0318603515625, 0.01479339599609375, -0.00787353515625, 0.0275421142578125, -0.009735107421875, 0.0057220458984375, 0.0152740478515625, 0.0012378692626953125, -0.035491943359375, 0.023956298828125, -0.0024051666259765625, -0.00994110107421875, 0.034820556640625, 0.024993896484375, -0.00998687744140625, 0.01560211181640625, 0.03216552734375, -0.0035877227783203125, -0.0478515625, 0.02117919921875, -0.047515869140625, 0.01187896728515625, 0.0062713623046875, -0.002429962158203125, -0.0227203369140625, 0.0185089111328125, -0.00899505615234375, -0.0284271240234375, -0.048004150390625, -0.04119873046875, 0.0288543701171875, 0.03955078125, 0.00724029541015625, -0.0270233154296875, -0.0261993408203125, 0.007732391357421875, -0.03851318359375, -0.00522613525390625, 0.0274810791015625, 0.041748046875, -0.003383636474609375, -0.052581787109375, -0.0257415771484375, 0.0200042724609375, -0.04315185546875, 0.019927978515625, 0.01263427734375, 0.0203857421875, -0.07171630859375, 0.01006317138671875, -0.022064208984375, 0.01445770263671875, 0.0247802734375, 0.0155792236328125, 0.005596160888671875, 0.050628662109375, -0.0338134765625, -0.026123046875, -0.059600830078125, -0.006076812744140625, 0.0148773193359375, 0.006229400634765625, 0.00931549072265625, -0.01078033447265625, -0.027069091796875, 0.03485107421875, 0.054840087890625, -0.0114288330078125, -0.0015993118286132812, 0.0301971435546875, -0.001621246337890625, 0.015899658203125, 0.032623291015625, 0.047698974609375, -0.09185791015625, 0.11602783203125, -0.04388427734375, 0.001064300537109375, -0.00411224365234375, -0.0269012451171875, -0.043182373046875, 0.0270538330078125, 0.04498291015625, -0.01401519775390625, 0.0027217864990234375, 0.00225830078125, -0.04345703125, -0.01360321044921875, 0.0161285400390625, -0.022705078125, 0.014617919921875, 0.0228118896484375, -0.006938934326171875, 0.0174560546875, 0.029815673828125, 0.0007009506225585938, -0.00908660888671875, -0.003086090087890625, -0.00179290771484375, -0.0061798095703125, -0.039306640625, 0.036285400390625, -0.0117950439453125, -0.033416748046875, 0.0259857177734375, 0.064208984375, 0.0013570785522460938, -0.00742340087890625, -0.00952911376953125, 0.00905609130859375, -0.024993896484375, -0.0174102783203125, 0.0132904052734375, 0.00905609130859375, -0.03912353515625, -0.0090789794921875, 0.00335693359375, 0.01031494140625, 0.033477783203125, 0.0006070137023925781, 0.00457763671875, 0.017669677734375, -0.03619384765625, 0.025634765625, -0.074951171875, 0.0301666259765625, 0.004070281982421875, 0.0086212158203125, -0.007904052734375, 0.0281982421875, -0.0225067138671875, -0.006877899169921875, -0.0187835693359375, 0.0305633544921875, -0.0008769035339355469, -0.037353515625, -0.02398681640625, -0.035186767578125, -0.009979248046875, -0.0270538330078125, 0.0122833251953125, 0.0232391357421875, 0.00881195068359375, 0.027374267578125, -0.0265960693359375, -0.0018606185913085938, -0.007328033447265625, -0.0187835693359375, -0.005115509033203125, 0.00969696044921875, -0.010894775390625, 0.03094482421875, 0.0131683349609375, -0.032073974609375, -0.038818359375, 0.062347412109375, -0.043365478515625, -0.0697021484375, 0.06304931640625, -0.0015850067138671875, 0.05181884765625, 0.0201568603515625, 0.0113372802734375, 0.02545166015625, 0.0213775634765625, -0.04376220703125, 0.01267242431640625, -0.015716552734375, 0.00014078617095947266, -0.0116729736328125, 0.00518035888671875, -0.021453857421875, 0.0226898193359375, -0.0149993896484375, -0.0121612548828125, -0.00525665283203125, -0.005084991455078125, -0.056396484375, -0.006412506103515625, -0.0196990966796875, 0.0238800048828125, 0.02587890625, 0.004589080810546875, 0.004009246826171875, -0.015106201171875, 0.01605224609375, -0.0712890625, -0.0489501953125, -0.010894775390625, 0.004184722900390625, 0.034027099609375, 0.0196075439453125, 0.012451171875, 0.030853271484375, -0.015655517578125, 0.01258087158203125, 0.0250396728515625, 0.0297393798828125, 0.0145263671875, -0.005741119384765625, -0.0059356689453125, 0.0242462158203125, 0.0262908935546875, -0.025665283203125, 0.0005040168762207031, 0.02093505859375, -0.0082550048828125, -0.019317626953125, -0.0162200927734375, -0.00997161865234375, -0.09014892578125, 0.009796142578125, 0.0787353515625, 0.0186004638671875, 0.017364501953125, 0.01116180419921875, 0.0384521484375, 0.012481689453125, 0.0196990966796875, 0.044281005859375, -0.00905609130859375, 0.0176544189453125, 0.056365966796875, -0.004436492919921875, 0.02362060546875, 0.02020263671875, 0.01091766357421875, 0.0302886962890625, 0.0107421875, -0.0308685302734375, -0.0249481201171875, 0.032867431640625, -0.031341552734375, 0.022491455078125, -0.052520751953125, -0.0277557373046875, -0.022308349609375, 0.059906005859375, 0.01172637939453125, 0.048126220703125, 0.032562255859375, -0.05908203125, 0.025238037109375, 0.03118896484375, 0.026519775390625, -0.003574371337890625, -0.0023479461669921875, 0.03192138671875, 0.00699615478515625, -0.052001953125, 0.0152130126953125, 0.0162353515625, 0.0084228515625, -0.0167999267578125, -0.02099609375, -0.06610107421875, -0.0037708282470703125, 0.0004115104675292969, -0.071533203125, -0.0034008026123046875, 0.036865234375, -0.019866943359375, -0.034423828125, 0.00788116455078125, -0.037628173828125, -0.045135498046875, 0.0065155029296875, 0.00785064697265625, -0.046173095703125, -0.0218963623046875, -0.0897216796875, 0.05682373046875, -0.039337158203125, 0.06268310546875, 0.0933837890625, 0.012359619140625, 0.0164031982421875, 0.006427764892578125, -0.0019025802612304688, 0.0015897750854492188, 0.0175018310546875, 0.0010614395141601562, -0.049835205078125, -0.009185791015625, 0.019073486328125, 0.0193634033203125, 0.00640869140625, 0.01348876953125, -0.020843505859375, 0.00952911376953125, 0.030120849609375, -0.0050201416015625, 0.01806640625, 0.010467529296875, -0.05596923828125, -0.00153350830078125, -0.0242156982421875, -0.033843994140625, -0.008758544921875, -0.0014476776123046875, 0.005031585693359375, -0.026336669921875, -0.012481689453125, -0.004611968994140625, -0.039886474609375, -0.0360107421875, -0.040130615234375, 0.00902557373046875, -0.0097503662109375, 0.0012722015380859375, 0.0906982421875, 0.0159912109375, -0.05377197265625, -0.01212310791015625, -0.02618408203125, -0.029449462890625, 0.0175933837890625, 0.0184326171875, -0.0235595703125, 0.042144775390625, 0.01335906982421875, -0.0188446044921875, 0.03912353515625, -0.0220184326171875, -0.03387451171875, -0.03485107421875, 0.0242767333984375, -0.005016326904296875, 0.017730712890625, 0.030120849609375, 0.038970947265625, -0.0078582763671875, -0.01534271240234375, -0.0265960693359375, 0.011993408203125, -0.0223236083984375, -0.044036865234375, -0.01490020751953125, -0.00848388671875, -0.03497314453125, 0.03167724609375, -0.0173492431640625, -0.003025054931640625, 0.0169830322265625, -0.02679443359375, 0.0015859603881835938, -0.01276397705078125, -0.0256195068359375, -0.0010633468627929688, -0.00797271728515625, -0.0288848876953125, 0.03912353515625, 0.00026345252990722656, 0.036468505859375, 0.00958251953125, -0.0045623779296875, -0.035125732421875, -0.08184814453125, 0.044281005859375, -0.05078125, 0.00004553794860839844, -0.034423828125, -0.018585205078125, 0.0254364013671875, 0.1290283203125, -0.050506591796875, 0.009613037109375, 0.011932373046875, 0.0109405517578125, -0.0206146240234375, -0.041046142578125, -0.08123779296875, -0.0164794921875, -0.028167724609375, 0.00592803955078125, -0.0008172988891601562, -0.01534271240234375, -0.032257080078125, 0.012542724609375, -0.043365478515625, -0.01375579833984375, 0.028656005859375, -0.0024547576904296875, 0.00555419921875, -0.016876220703125, -0.0023250579833984375, -0.044769287109375, -0.01442718505859375, -0.00814056396484375, -0.0906982421875, -0.0005064010620117188, -0.0274200439453125, 0.0455322265625, 0.00146484375, -0.00319671630859375, -0.006465911865234375, 0.0299530029296875, 0.0284423828125, -0.01410675048828125, 0.0261077880859375, -0.00148773193359375, -0.023651123046875, -0.0093231201171875, 0.0075836181640625, -0.03363037109375, -0.0129547119140625, 0.01026153564453125, 0.00708770751953125, 0.0386962890625, -0.0215301513671875, -0.02783203125, 0.01367950439453125, -0.0281829833984375, 0.0102081298828125, -0.02166748046875, -0.051910400390625, 0.0023212432861328125, -0.028350830078125, -0.00644683837890625, -0.0450439453125, -0.01485443115234375, 0.050018310546875, -0.039276123046875, 0.008636474609375, -0.0010442733764648438, 0.10528564453125, 0.01428985595703125, 0.0009965896606445312, -0.0062713623046875, -0.0190277099609375, 0.0379638671875, -0.013275146484375, 0.0178375244140625, 0.032745361328125, -0.008392333984375, -0.0195465087890625, 0.0029735565185546875, -0.0006537437438964844, -0.0316162109375, 0.0635986328125, 0.019866943359375, 0.0054931640625, 0.00243377685546875, -0.0028095245361328125, 0.0210418701171875, -0.032257080078125, -0.029754638671875, 0.01200103759765625, 0.01181793212890625, 0.042205810546875, -0.03570556640625, 0.0523681640625, -0.0227203369140625, -0.0263824462890625, 0.029815673828125, -0.036956787109375, -0.01495361328125, 0.033843994140625, -0.0115814208984375, -0.0233612060546875, -0.0765380859375, -0.004642486572265625, -0.01277923583984375, -0.01053619384765625, -0.0077056884765625, 0.004695892333984375, 0.0257720947265625, -0.012481689453125, 0.00798797607421875, 0.0053863525390625, 0.0304412841796875, -0.021270751953125, -0.05303955078125, -0.01947021484375, -0.01264190673828125, 0.0284576416015625, 0.01160430908203125, -0.01507568359375, 0.0247802734375, 0.0579833984375, 0.0246429443359375, 0.017120361328125, -0.01560211181640625, 0.05059814453125, -0.015960693359375, -0.029327392578125, 0.01137542724609375, -0.0198974609375, 0.002277374267578125, 0.018218994140625, 0.00885009765625, -0.0038280487060546875, -0.00894927978515625, 0.06573486328125, 0.037994384765625, -0.0038013458251953125, 0.00391387939453125, 0.045318603515625, 0.00608062744140625, -0.038604736328125, -0.03680419921875, -0.016754150390625, -0.01397705078125, -0.0390625, 0.021240234375, -0.023284912109375, 0.0017242431640625, 0.06878662109375, -0.01204681396484375, -0.023895263671875, -0.0144195556640625, 0.03729248046875, -0.00927734375, 0.01161956787109375, 0.0083160400390625, -0.0009899139404296875, 0.0178375244140625, -0.014984130859375, 0.04364013671875, -0.0289154052734375, 0.03204345703125, -0.04058837890625, 0.016448974609375, -0.0098114013671875, -0.00067901611328125, -0.057464599609375, -0.03448486328125, -0.0103912353515625, -0.0011491775512695312, -0.018218994140625, 0.01253509521484375, -0.01404571533203125, -0.0267486572265625, -0.0159454345703125, 0.0227813720703125, -0.0235595703125, -0.00548553466796875, -0.032196044921875, 0.0149383544921875, 0.018646240234375, -0.0123748779296875, -0.0065155029296875, -0.0224609375, -0.017364501953125, -0.042755126953125, -0.029998779296875, -0.04156494140625, -0.044586181640625, -0.00411224365234375, 0.022674560546875, 0.0170135498046875, -0.018402099609375, -0.046417236328125, -0.0300445556640625, 0.00751495361328125, 0.03497314453125, 0.00826263427734375, 0.006534576416015625, 0.05316162109375, -0.0092010498046875, 0.04345703125, 0.021514892578125, 0.0262451171875, -0.0199432373046875, -0.0196380615234375, 0.0139923095703125, -0.03436279296875, -0.033294677734375, -0.051605224609375, -0.008087158203125, 0.038818359375, 0.0482177734375, -0.0120849609375, -0.0015850067138671875, -0.009857177734375, -0.006786346435546875, -0.024993896484375, 0.061248779296875, 0.01629638671875, 0.030426025390625, 0.0027980804443359375, -0.039031982421875, 0.00937652587890625, -0.01084136962890625, 0.0151214599609375, 0.021728515625, -0.036285400390625, 0.010284423828125, 0.0276641845703125, -0.0009217262268066406, 0.021148681640625, 0.044952392578125, -0.00867462158203125, 0.03118896484375, 0.030853271484375, 0.02423095703125, 0.0016155242919921875, 0.00479888916015625, -0.028167724609375, -0.003948211669921875, 0.04217529296875, 0.00928497314453125, -0.0318603515625, 0.01904296875, -0.034271240234375, 0.0102081298828125, 0.041961669921875, 0.05352783203125, -0.07891845703125, 0.0142364501953125, 0.004238128662109375, 0.005458831787109375, 0.039703369140625, -0.004016876220703125, -0.006496429443359375, 0.006816864013671875, 0.00994873046875, -0.0189056396484375, -0.03546142578125, -0.0056304931640625, 0.01543426513671875, -0.013336181640625, -0.0022144317626953125, 0.013916015625, 0.01654052734375, -0.01320648193359375, 0.039306640625, -0.00104522705078125, 0.03375244140625, 0.00203704833984375, 0.0233917236328125, -0.0028934478759765625, -0.007534027099609375, -0.0167999267578125, 0.04998779296875, -0.0452880859375, 0.0057525634765625, 0.004436492919921875, -0.012115478515625, 0.021087646484375, 0.056610107421875, -0.019927978515625, 0.017578125, 0.023712158203125, -0.0110931396484375, -0.03631591796875, -0.05621337890625, 0.006000518798828125, 0.042236328125, -0.0048828125, 0.030975341796875, 0.025665283203125, -0.06243896484375, -0.024169921875, 0.01084136962890625, 0.0738525390625, -0.01238250732421875, -0.0258026123046875, 0.0416259765625, 0.0243377685546875, -0.01702880859375, -0.0102691650390625, -0.0236663818359375, -0.034576416015625, 0.0158538818359375, -0.0245208740234375, 0.006191253662109375, 0.02520751953125, 0.007568359375, -0.049407958984375, 0.1402587890625, -0.024200439453125, 0.009185791015625, 0.028778076171875, 0.0526123046875, -0.045013427734375, 0.024627685546875, -0.0263671875, 0.046539306640625, -0.057037353515625, 0.07275390625, -0.08099365234375, -0.0245819091796875, 0.0015592575073242188, 0.07293701171875, 0.10498046875, 0.008880615234375, 0.01654052734375, -0.009796142578125, 0.0628662109375, 0.0274200439453125, -0.03729248046875, -0.002147674560546875, 0.006076812744140625, 0.003871917724609375, 0.026580810546875, -0.0228118896484375, 0.03985595703125, -0.0256195068359375, -0.0012159347534179688, 0.0166015625, -0.0033721923828125, -0.018463134765625, -0.019256591796875, -0.061065673828125, -0.018463134765625, -0.003101348876953125, -0.02191162109375, 0.0494384765625, -0.006526947021484375, 0.04486083984375, 0.02392578125, -0.011077880859375, 0.00864410400390625, -0.037109375, 0.052825927734375, 0.004261016845703125, 0.04510498046875, 0.00478363037109375, 0.0174102783203125, 0.0013017654418945312, -0.033233642578125, 0.0296478271484375, 0.021697998046875, -0.05316162109375, 0.048431396484375, -0.00768280029296875, 0.0216217041015625, -0.050537109375, 0.03497314453125, 0.01515960693359375, 0.044769287109375, -0.048431396484375, -0.036834716796875, 0.007778167724609375, 0.0211334228515625, 0.006786346435546875, -0.007396697998046875, 0.00415802001953125, 0.0181121826171875, 0.057861328125, -0.0231475830078125, -0.0134124755859375, 0.002063751220703125, 0.050018310546875, -0.0136260986328125, -0.0101470947265625, -0.030029296875, -0.04534912109375, -0.044158935546875, -0.023040771484375, -0.005146026611328125, 0.068115234375, 0.052734375, 0.046295166015625, -0.01514434814453125, -0.0165863037109375, -0.004680633544921875, 0.0265350341796875, 0.0252227783203125, 0.00689697265625, -0.025604248046875, -0.0308380126953125, 0.028076171875, 0.022491455078125, -0.00897216796875, 0.0204010009765625, 0.01432037353515625, 0.02325439453125, -0.004703521728515625, -0.014129638671875, 0.058441162109375, -0.00910186767578125, -0.0031871795654296875, -0.052459716796875, 0.0196990966796875, 0.0287322998046875, -0.0019083023071289062, 0.025177001953125, -0.040557861328125, 0.06878662109375, -0.0007467269897460938, 0.021331787109375, 0.01165008544921875, -0.029449462890625, 0.051116943359375, 0.0005850791931152344, 0.09320068359375, 0.029449462890625, -0.07421875, -0.0137786865234375, -0.03472900390625, -0.07269287109375, 0.031829833984375, 0.042327880859375, -0.020782470703125, 0.00958251953125, 0.022918701171875, -0.038665771484375, 0.045562744140625, -0.0034809112548828125, 0.005615234375, 0.006744384765625, 0.0135345458984375, -0.011688232421875, -0.050628662109375, -0.035888671875, -0.03436279296875, 0.053009033203125, 0.0501708984375, 0.0238189697265625, 0.005847930908203125, 0.04339599609375, -0.0177459716796875, 0.032623291015625, -0.03265380859375, -0.0208892822265625, -0.004886627197265625, 0.01363372802734375, 0.01248931884765625, 0.000017762184143066406, -0.0404052734375, 0.0145263671875, 0.0281829833984375, -0.007236480712890625, -0.01947021484375, -0.002391815185546875, 0.0309295654296875, 0.0058746337890625, 0.0182037353515625, -0.03790283203125, -0.003871917724609375, -0.01038360595703125, -0.022247314453125, 0.0088348388671875, -0.0186309814453125, 0.004520416259765625, 0.0241851806640625, 0.00719451904296875, -0.01194000244140625, 0.014892578125, -0.026092529296875, 0.01654052734375, 0.0194549560546875, -0.0007877349853515625, -0.047149658203125, 0.0009317398071289062, -0.01416778564453125, -0.004993438720703125, 0.00641632080078125, 0.052581787109375, 0.014007568359375, -0.054779052734375, 0.017547607421875, -0.019622802734375, 0.032745361328125, -0.0223541259765625, -0.0028324127197265625, -0.00643157958984375, 0.00948333740234375, -0.01629638671875, -0.0298919677734375, -0.040985107421875, -0.0728759765625, 0.0261993408203125, 0.02587890625, -0.0232696533203125, -0.0285186767578125, -0.0290679931640625, -0.0144805908203125, 0.06915283203125, 0.017913818359375, -0.08441162109375, 0.0245819091796875, -0.026824951171875, 0.039337158203125, 0.020721435546875, -0.0205841064453125, 0.01178741455078125, 0.042572021484375, 0.000640869140625, -0.011260986328125, -0.01120758056640625, 0.0109405517578125, 0.002597808837890625, 0.0634765625, 0.05145263671875, -0.070068359375, -0.0074310302734375, 0.07037353515625, 0.0731201171875, 0.09796142578125, 0.056732177734375, -0.02276611328125, 0.0178070068359375, -0.01509857177734375, -0.00589752197265625, -0.023468017578125, 0.0216827392578125, -0.06744384765625, -0.041839599609375, -0.050048828125, 0.03668212890625, 0.037322998046875, -0.005191802978515625, -0.0020389556884765625, 0.022247314453125, 0.00740814208984375, -0.0049896240234375, -0.04803466796875, 0.01384735107421875, -0.002758026123046875, 0.0045928955078125, -0.0137939453125, -0.0003876686096191406, -0.024627685546875, 0.0223388671875, 0.00390625, 0.027679443359375, 0.0251922607421875, -0.01219940185546875, -0.01422119140625, -0.006084442138671875, 0.00589752197265625, -0.0050811767578125, -0.0123291015625, -0.0026226043701171875, -0.0124664306640625, 0.022308349609375, -0.03228759765625, -0.045379638671875, 0.0016536712646484375, 0.026092529296875, -0.0239105224609375, -0.044708251953125, -0.00433349609375, 0.004364013671875, 0.057342529296875, 0.032623291015625, 0.01532745361328125, -0.039825439453125, 0.0232086181640625, -0.03857421875, -0.044219970703125, -0.0016984939575195312, 0.00685882568359375, -0.01496124267578125, 0.0186614990234375, 0.0008673667907714844, -0.0114898681640625, -0.02960205078125, 0.00794219970703125, -0.024139404296875, -0.00494384765625, 0.01373291015625, 0.0021514892578125, -0.038970947265625, 0.052459716796875, -0.0031108856201171875, -0.006542205810546875, 0.030364990234375, -0.0212860107421875, -0.013702392578125, 0.016876220703125, -0.0023899078369140625, 0.0044708251953125, -0.021240234375, 0.01154327392578125, 0.032318115234375, -0.00001704692840576172, 0.03863525390625, -0.00220489501953125, -0.01678466796875, 0.012359619140625, 0.03558349609375, -0.004283905029296875, 0.0467529296875, -0.031585693359375, 0.08795166015625, 0.018646240234375, 0.0023651123046875, 0.0020542144775390625, 0.007648468017578125, -0.02032470703125, 0.0338134765625, 0.00795745849609375, -0.00823211669921875, 0.0198974609375, 0.0007505416870117188, 0.01557159423828125, 0.012542724609375, -0.010040283203125, -0.016510009765625, 0.0195159912109375, 0.08258056640625, -0.01461029052734375, 0.020599365234375 ]
b60134dc4c08406ad55d34ce95d4a24e11362757
Wordpress Stackexchange Q: Custom plugin settings: clicking "save changes" does not display success message I don't entirely understanding how to save my plugin's settings properly. When I click on the "Save Changes" button it saves data but it does not show any successful like message. Do I need to add an extra function or something else? My form look like this: function bdthemes_core_settings_page() { ?> <div class="wrap"> <h1>BdThemes Settings</h1> <form method="post" action="options.php"> <?php settings_fields("section"); do_settings_sections("plugin-options"); submit_button(); ?> </form> </div> <?php } A: I had the same issue as you did, but I found how to fix it in this tutorial: https://digwp.com/2016/05/wordpress-admin-notices/ Basically, I had my settings page outside of the Settings menu, so I had to explicitly add settings_errors() to my options page and they started working. :) Hope that helps.
Q: Custom plugin settings: clicking "save changes" does not display success message I don't entirely understanding how to save my plugin's settings properly. When I click on the "Save Changes" button it saves data but it does not show any successful like message. Do I need to add an extra function or something else? My form look like this: function bdthemes_core_settings_page() { ?> <div class="wrap"> <h1>BdThemes Settings</h1> <form method="post" action="options.php"> <?php settings_fields("section"); do_settings_sections("plugin-options"); submit_button(); ?> </form> </div> <?php } A: I had the same issue as you did, but I found how to fix it in this tutorial: https://digwp.com/2016/05/wordpress-admin-notices/ Basically, I had my settings page outside of the Settings menu, so I had to explicitly add settings_errors() to my options page and they started working. :) Hope that helps.
wordpress
{ "language": "en", "length": 129, "provenance": "stackexchange_00019.jsonl.gz:467753", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/237021" }
[ 0.037384033203125, -0.0031414031982421875, 0.0183258056640625, 0.0054931640625, 0.00920867919921875, -0.0335693359375, 0.055328369140625, -0.0252532958984375, 0.036376953125, 0.033477783203125, -0.03204345703125, -0.0141143798828125, 0.0219573974609375, -0.0221099853515625, -0.0171966552734375, -0.02471923828125, 0.0189971923828125, 0.007808685302734375, 0.0233917236328125, -0.0147552490234375, 0.00016558170318603516, 0.0079345703125, -0.00922393798828125, 0.074462890625, 0.0174102783203125, -0.0192108154296875, 0.07305908203125, -0.0003256797790527344, 0.0011377334594726562, -0.01456451416015625, 0.0160369873046875, -0.00022721290588378906, 0.035919189453125, 0.02069091796875, -0.04931640625, -0.00400543212890625, 0.06396484375, -0.0257110595703125, -0.0261993408203125, 0.064453125, 0.005008697509765625, 0.00702667236328125, 0.040863037109375, 0.00988006591796875, -0.0097808837890625, -0.047637939453125, 0.04681396484375, -0.024810791015625, -0.002246856689453125, -0.0137786865234375, -0.01013946533203125, -0.03778076171875, 0.01519775390625, -0.0241241455078125, -0.0269012451171875, -0.03912353515625, -0.0657958984375, 0.04449462890625, 0.02130126953125, 0.061004638671875, 0.01346588134765625, -0.001308441162109375, -0.0243988037109375, -0.0400390625, 0.01403045654296875, -0.01212310791015625, -0.0283966064453125, 0.032867431640625, -0.0239715576171875, -0.0031147003173828125, 0.016143798828125, -0.03887939453125, 0.01690673828125, -0.00595855712890625, 0.00323486328125, -0.023681640625, 0.01171875, -0.0033245086669921875, 0.0130157470703125, 0.0102386474609375, 0.041748046875, -0.0228271484375, 0.036163330078125, -0.0015554428100585938, 0.015380859375, 0.03228759765625, 0.01116180419921875, -0.02093505859375, 0.0042266845703125, 0.0160675048828125, -0.0014677047729492188, -0.022247314453125, 0.0030002593994140625, 0.04296875, -0.00666046142578125, -0.01462554931640625, 0.012969970703125, 0.049163818359375, -0.0246124267578125, 0.00046634674072265625, -0.020751953125, -0.01358795166015625, -0.0155181884765625, -0.0279541015625, 0.0179595947265625, 0.021484375, 0.0138397216796875, -0.018646240234375, 0.0265960693359375, 0.01108551025390625, -0.01445770263671875, 0.026763916015625, -0.002246856689453125, -0.0216217041015625, -0.0033664703369140625, -0.0185546875, -0.03558349609375, 0.025054931640625, -0.0019483566284179688, -0.0189666748046875, 0.03619384765625, 0.048675537109375, -0.01898193359375, 0.003543853759765625, -0.00661468505859375, 0.0004177093505859375, -0.005031585693359375, -0.0301513671875, 0.0010690689086914062, 0.017913818359375, -0.03765869140625, 0.007305145263671875, 0.052001953125, 0.01367950439453125, 0.0010833740234375, -0.01511383056640625, 0.017974853515625, -0.05267333984375, -0.048675537109375, 0.0328369140625, -0.00885772705078125, -0.015655517578125, -0.013671875, -0.07159423828125, -0.01253509521484375, 0.0028171539306640625, -0.006072998046875, 0.0667724609375, 0.0017938613891601562, -0.082763671875, 0.07275390625, -0.0201416015625, 0.037933349609375, -0.032196044921875, -0.036590576171875, -0.017669677734375, -0.0221710205078125, -0.0093231201171875, -0.01904296875, -0.014923095703125, 0.003650665283203125, -0.0105743408203125, 0.02728271484375, 0.01690673828125, 0.00830078125, 0.0103302001953125, -0.050018310546875, 0.0088958740234375, 0.01331329345703125, 0.006500244140625, 0.0235443115234375, 0.032684326171875, -0.01404571533203125, 0.0223541259765625, 0.03106689453125, 0.00772857666015625, 0.024261474609375, -0.0270843505859375, 0.0301971435546875, 0.007244110107421875, -0.0274505615234375, -0.0145111083984375, 0.047607421875, -0.026092529296875, -0.036102294921875, 0.0250701904296875, 0.0041351318359375, 0.06243896484375, 0.00396728515625, 0.0162200927734375, -0.017059326171875, 0.01708984375, -0.0030803680419921875, 0.05535888671875, -0.02081298828125, -0.02178955078125, -0.030487060546875, 0.038116455078125, -0.032867431640625, -0.033721923828125, -0.02777099609375, -0.00199127197265625, 0.0064239501953125, -0.0200042724609375, -0.05950927734375, 0.0009431838989257812, -0.0277557373046875, 0.04315185546875, -0.0211181640625, 0.007335662841796875, 0.0178375244140625, -0.008880615234375, 0.0040283203125, -0.052520751953125, -0.0212554931640625, -0.00748443603515625, 0.004474639892578125, 0.08209228515625, -0.0038909912109375, 0.0504150390625, -0.017578125, -0.0504150390625, -0.0157928466796875, -0.0019474029541015625, -0.02459716796875, -0.0234832763671875, 0.0018072128295898438, -0.0010318756103515625, -0.025054931640625, 0.002849578857421875, 0.0288238525390625, 0.01416015625, 0.0021381378173828125, 0.02386474609375, -0.0330810546875, -0.018280029296875, -0.04986572265625, -0.080078125, 0.0153045654296875, 0.05517578125, 0.0003535747528076172, 0.03033447265625, -0.0273895263671875, 0.0401611328125, -0.01059722900390625, -0.048553466796875, 0.003513336181640625, 0.0421142578125, 0.05206298828125, 0.005168914794921875, 0.01324462890625, -0.085205078125, 0.0289154052734375, -0.0833740234375, 0.04803466796875, 0.0010089874267578125, -0.050079345703125, -0.018951416015625, 0.0114288330078125, -0.0014801025390625, -0.005214691162109375, -0.0065155029296875, 0.0280303955078125, -0.023162841796875, 0.023101806640625, -0.0006189346313476562, 0.0273895263671875, 0.005889892578125, -0.021392822265625, 0.0187225341796875, 0.01271820068359375, -0.0484619140625, 0.0029697418212890625, 0.0156402587890625, 0.046112060546875, 0.0162506103515625, -0.0469970703125, -0.004978179931640625, 0.02252197265625, 0.032928466796875, -0.005100250244140625, 0.0017194747924804688, -0.05499267578125, -0.0270538330078125, 0.038726806640625, -0.0297088623046875, -0.0182342529296875, 0.0046234130859375, 0.03338623046875, 0.01352691650390625, 0.030120849609375, 0.0266265869140625, -0.03057861328125, 0.051605224609375, -0.01331329345703125, -0.035308837890625, 0.00605010986328125, -0.04974365234375, 0.0318603515625, -0.008758544921875, 0.039306640625, 0.087890625, 0.0252227783203125, 0.0176849365234375, 0.0005474090576171875, -0.00769805908203125, -0.0103912353515625, 0.042572021484375, 0.0129547119140625, -0.0200958251953125, -0.02734375, 0.002483367919921875, 0.0247650146484375, 0.06683349609375, -0.022705078125, -0.044769287109375, -0.0156402587890625, 0.0248260498046875, -0.040252685546875, -0.0225830078125, -0.0440673828125, -0.060302734375, 0.0221099853515625, -0.0190582275390625, -0.0201263427734375, 0.00711822509765625, 0.0180511474609375, 0.03240966796875, -0.027557373046875, -0.048004150390625, 0.0010671615600585938, -0.0445556640625, -0.042144775390625, -0.0037021636962890625, 0.019622802734375, 0.008026123046875, 0.00513458251953125, 0.053924560546875, 0.005130767822265625, -0.05914306640625, 0.009674072265625, -0.01293182373046875, -0.00463104248046875, 0.0239105224609375, 0.007396697998046875, -0.0013799667358398438, 0.031646728515625, 0.010986328125, 0.05242919921875, 0.04779052734375, -0.053619384765625, -0.0196075439453125, -0.0094757080078125, -0.05224609375, 0.005962371826171875, -0.021453857421875, -0.0027408599853515625, 0.01203155517578125, 0.0191802978515625, -0.033294677734375, -0.06201171875, 0.01239776611328125, -0.052703857421875, 0.03302001953125, 0.046142578125, -0.0229034423828125, 0.005199432373046875, 0.031982421875, -0.005939483642578125, 0.00562286376953125, 0.005306243896484375, -0.0229949951171875, -0.0025196075439453125, 0.0010404586791992188, -0.0072784423828125, 0.01241302490234375, 0.0543212890625, -0.006778717041015625, -0.0212554931640625, 0.00933837890625, 0.0114593505859375, 0.006229400634765625, -0.010894775390625, -0.0338134765625, -0.052459716796875, 0.0258636474609375, -0.08648681640625, -0.009246826171875, -0.036163330078125, 0.01551055908203125, -0.003597259521484375, 0.076171875, -0.0268707275390625, -0.0190582275390625, 0.0197296142578125, 0.021636962890625, -0.025115966796875, -0.01995849609375, -0.00949859619140625, -0.00875091552734375, -0.08892822265625, 0.002658843994140625, -0.0206451416015625, -0.023895263671875, 0.0119476318359375, -0.00469207763671875, -0.0261383056640625, -0.05279541015625, 0.043365478515625, -0.01471710205078125, 0.027252197265625, -0.01024627685546875, 0.020660400390625, -0.037078857421875, -0.0017881393432617188, -0.0159149169921875, -0.09771728515625, -0.0149078369140625, -0.005641937255859375, 0.03985595703125, -0.00804901123046875, 0.02642822265625, -0.0184478759765625, 0.056976318359375, 0.02960205078125, 0.0303192138671875, 0.0076904296875, -0.034332275390625, 0.034423828125, -0.026824951171875, 0.01067352294921875, -0.040496826171875, 0.0012645721435546875, 0.04083251953125, -0.01153564453125, 0.04168701171875, -0.004100799560546875, -0.037872314453125, 0.0423583984375, -0.056915283203125, -0.0662841796875, -0.0306243896484375, -0.036895751953125, -0.018646240234375, -0.01187896728515625, -0.0254364013671875, -0.028717041015625, -0.056396484375, 0.02642822265625, -0.05242919921875, -0.01291656494140625, 0.0290985107421875, 0.08856201171875, 0.0153045654296875, 0.0189056396484375, -0.035980224609375, -0.01316070556640625, 0.03057861328125, 0.0245819091796875, -0.0263214111328125, -0.016815185546875, -0.0428466796875, 0.0501708984375, 0.0152130126953125, 0.0194091796875, -0.07708740234375, 0.09832763671875, -0.0036716461181640625, 0.038238525390625, -0.0071868896484375, -0.02191162109375, 0.0217742919921875, 0.026275634765625, -0.018829345703125, -0.0106201171875, -0.0013685226440429688, 0.01493072509765625, -0.0318603515625, 0.03375244140625, -0.0110626220703125, -0.039825439453125, 0.0222015380859375, -0.01824951171875, 0.0419921875, 0.036376953125, -0.0036792755126953125, 0.044219970703125, 0.0117034912109375, -0.0191802978515625, -0.0010976791381835938, -0.0009765625, 0.01317596435546875, 0.0128021240234375, 0.017059326171875, -0.0033626556396484375, -0.025482177734375, -0.005283355712890625, 0.03692626953125, 0.0073699951171875, -0.035675048828125, -0.03485107421875, -0.0016460418701171875, 0.0024967193603515625, -0.00010925531387329102, 0.040496826171875, 0.03814697265625, 0.03631591796875, -0.00757598876953125, -0.011749267578125, 0.0391845703125, 0.032501220703125, -0.03826904296875, 0.0142364501953125, 0.0218048095703125, -0.0205841064453125, -0.000347137451171875, 0.03253173828125, 0.005191802978515625, -0.00370025634765625, -0.007205963134765625, 0.0423583984375, 0.05596923828125, -0.0243988037109375, 0.034271240234375, 0.0139923095703125, 0.01959228515625, -0.07659912109375, -0.001953125, -0.014801025390625, -0.006927490234375, -0.0221099853515625, -0.026214599609375, 0.01161956787109375, 0.0144805908203125, 0.058380126953125, 0.0269012451171875, -0.02874755859375, 0.021728515625, 0.0041656494140625, -0.05084228515625, -0.007068634033203125, 0.041168212890625, 0.0281524658203125, 0.005504608154296875, 0.007610321044921875, 0.0011167526245117188, -0.03753662109375, -0.024200439453125, -0.006999969482421875, -0.0307159423828125, -0.0280609130859375, -0.01201629638671875, -0.029205322265625, 0.00623321533203125, 0.01554107666015625, -0.08062744140625, -0.0667724609375, 0.02178955078125, 0.01727294921875, 0.0231475830078125, -0.04248046875, 0.021484375, -0.028839111328125, 0.0008840560913085938, -0.0308074951171875, 0.014678955078125, 0.0479736328125, 0.0263824462890625, -0.020355224609375, -0.0233612060546875, -0.0226287841796875, -0.0411376953125, -0.041717529296875, -0.005496978759765625, -0.0289154052734375, 0.0075531005859375, 0.03515625, 0.033203125, -0.0126190185546875, -0.058135986328125, -0.033355712890625, 0.01904296875, 0.056182861328125, 0.0545654296875, -0.018280029296875, 0.06573486328125, -0.0198211669921875, 0.0592041015625, -0.0092926025390625, -0.001567840576171875, -0.048980712890625, 0.00605010986328125, 0.0096893310546875, 0.0291595458984375, -0.0221405029296875, -0.018951416015625, -0.021942138671875, -0.0088653564453125, 0.07757568359375, -0.01364898681640625, -0.002208709716796875, 0.01528167724609375, 0.01128387451171875, -0.0115814208984375, 0.02349853515625, 0.03485107421875, -0.0233917236328125, 0.08074951171875, -0.054046630859375, -0.0173492431640625, 0.0061492919921875, 0.01300811767578125, 0.0089874267578125, -0.0238494873046875, 0.0011510848999023438, 0.0083770751953125, -0.01406097412109375, 0.01177978515625, 0.0282440185546875, 0.02655029296875, 0.034271240234375, -0.0046539306640625, 0.0290985107421875, -0.01561737060546875, 0.01198577880859375, -0.0012073516845703125, 0.002208709716796875, 0.06854248046875, 0.01253509521484375, -0.0333251953125, 0.02642822265625, -0.03466796875, 0.024810791015625, 0.076904296875, 0.0599365234375, -0.109619140625, 0.01024627685546875, 0.0032482147216796875, -0.00019419193267822266, 0.051361083984375, 0.006832122802734375, -0.006649017333984375, -0.042510986328125, -0.0154876708984375, 0.01229095458984375, -0.019989013671875, -0.028106689453125, 0.0036563873291015625, -0.01093292236328125, 0.01079559326171875, 0.0106048583984375, -0.006298065185546875, -0.04766845703125, -0.01393890380859375, 0.035552978515625, -0.045074462890625, 0.0135345458984375, 0.035308837890625, -0.039276123046875, -0.005115509033203125, -0.055816650390625, -0.038726806640625, -0.0304412841796875, -0.03594970703125, -0.01067352294921875, -0.00701904296875, 0.040985107421875, 0.04608154296875, -0.020904541015625, 0.01297760009765625, 0.00894927978515625, 0.055877685546875, -0.0032501220703125, -0.01186370849609375, 0.040985107421875, 0.0560302734375, -0.051025390625, 0.023345947265625, -0.002948760986328125, -0.0127410888671875, -0.0265655517578125, -0.01474761962890625, 0.08526611328125, -0.01776123046875, -0.0269012451171875, 0.006748199462890625, 0.0222930908203125, 0.0027141571044921875, -0.01213836669921875, 0.0040740966796875, -0.033538818359375, 0.007305145263671875, -0.021636962890625, -0.01178741455078125, -0.0364990234375, -0.032257080078125, -0.062469482421875, 0.1275634765625, 0.00504302978515625, 0.008544921875, -0.016876220703125, 0.06585693359375, -0.00909423828125, 0.051605224609375, -0.033294677734375, 0.06390380859375, -0.043182373046875, 0.039794921875, -0.0732421875, -0.003841400146484375, -0.01171112060546875, 0.032623291015625, 0.0751953125, 0.02801513671875, -0.030914306640625, 0.01312255859375, 0.050140380859375, -0.00774383544921875, -0.03289794921875, 0.05950927734375, 0.0138702392578125, 0.0027408599853515625, 0.03192138671875, -0.04541015625, 0.013427734375, -0.0174713134765625, 0.0095062255859375, 0.02874755859375, 0.005405426025390625, 0.010528564453125, -0.03173828125, -0.0303497314453125, 0.01418304443359375, -0.0262908935546875, -0.02069091796875, -0.0311737060546875, 0.004291534423828125, -0.007289886474609375, 0.00928497314453125, -0.0082244873046875, -0.005828857421875, -0.0165863037109375, 0.0178375244140625, 0.016204833984375, -0.005779266357421875, -0.01508331298828125, -0.004947662353515625, 0.01111602783203125, -0.01788330078125, -0.0282135009765625, 0.024810791015625, 0.0028285980224609375, -0.0014781951904296875, 0.003765106201171875, 0.0287628173828125, -0.01224517822265625, 0.0150909423828125, 0.004444122314453125, 0.0018520355224609375, -0.0189056396484375, -0.054718017578125, 0.0037250518798828125, -0.0014142990112304688, -0.008544921875, 0.01265716552734375, -0.00348663330078125, 0.01702880859375, 0.069091796875, -0.0176849365234375, 0.0017566680908203125, -0.0034236907958984375, -0.00421142578125, -0.00830841064453125, 0.00428009033203125, -0.0016222000122070312, 0.01490020751953125, -0.028594970703125, 0.01096343994140625, 0.00930023193359375, 0.019287109375, 0.0221405029296875, 0.03155517578125, 0.016754150390625, -0.015838623046875, -0.016754150390625, 0.0033435821533203125, 0.01311492919921875, 0.0104827880859375, -0.036712646484375, -0.0038013458251953125, 0.03375244140625, 0.0253143310546875, -0.0021209716796875, 0.039154052734375, 0.046722412109375, 0.048736572265625, 0.01776123046875, 0.003681182861328125, 0.043487548828125, -0.014312744140625, -0.034210205078125, -0.042694091796875, 0.01137542724609375, 0.038360595703125, 0.016021728515625, -0.00028705596923828125, -0.01430511474609375, 0.07379150390625, -0.01519775390625, 0.057586669921875, -0.0073394775390625, -0.01026153564453125, 0.010467529296875, -0.04412841796875, 0.0616455078125, 0.014312744140625, -0.03173828125, -0.0003654956817626953, -0.03265380859375, 0.00803375244140625, -0.01195526123046875, 0.01284027099609375, -0.012451171875, 0.062286376953125, -0.026214599609375, -0.00391387939453125, 0.0301971435546875, -0.04156494140625, 0.02886962890625, 0.017974853515625, -0.01947021484375, -0.0193939208984375, -0.02825927734375, -0.028961181640625, 0.001895904541015625, 0.0430908203125, -0.0140838623046875, 0.07879638671875, -0.0275726318359375, 0.0036468505859375, -0.01209259033203125, -0.00899505615234375, -0.0177459716796875, -0.0238189697265625, 0.04400634765625, -0.0330810546875, -0.033966064453125, -0.0013370513916015625, -0.0305328369140625, 0.06597900390625, 0.005157470703125, -0.006618499755859375, 0.0231170654296875, 0.05181884765625, -0.01030731201171875, 0.006626129150390625, 0.01129913330078125, -0.0282745361328125, -0.04510498046875, 0.0218505859375, 0.041046142578125, -0.03253173828125, -0.0154571533203125, -0.003627777099609375, 0.049041748046875, 0.01181793212890625, 0.031280517578125, -0.005001068115234375, 0.0013380050659179688, -0.0056610107421875, 0.03729248046875, -0.0107269287109375, -0.0230560302734375, 0.009918212890625, -0.019439697265625, 0.015289306640625, -0.00107574462890625, 0.06268310546875, 0.01200103759765625, -0.0037517547607421875, -0.005527496337890625, 0.02301025390625, 0.017303466796875, -0.0560302734375, 0.003154754638671875, 0.03924560546875, 0.004215240478515625, 0.009765625, -0.0252532958984375, -0.016845703125, -0.049835205078125, -0.00004667043685913086, 0.024169921875, -0.0243988037109375, -0.0092010498046875, -0.02813720703125, 0.0014543533325195312, 0.0166168212890625, -0.0183868408203125, -0.0208587646484375, -0.0164794921875, -0.023681640625, 0.04351806640625, -0.03204345703125, -0.006839752197265625, 0.021575927734375, 0.055389404296875, 0.0207366943359375, 0.0015306472778320312, -0.00655364990234375, 0.0230560302734375, 0.02117919921875, -0.017242431640625, -0.006160736083984375, -0.0098876953125, -0.0249481201171875, -0.0272979736328125, 0.0008373260498046875, 0.0178070068359375, 0.0460205078125, -0.035980224609375, -0.0107421875, -0.007190704345703125, -0.0016736984252929688, -0.0195465087890625, 0.0140380859375, -0.06396484375, -0.035003662109375, -0.056304931640625, 0.006195068359375, -0.0017642974853515625, -0.050048828125, -0.07086181640625, 0.042755126953125, -0.01824951171875, -0.01534271240234375, -0.041259765625, 0.00594329833984375, -0.0099029541015625, 0.050140380859375, -0.00626373291015625, -0.01110076904296875, -0.03216552734375, 0.00885772705078125, -0.0142822265625, 0.0204925537109375, -0.01055145263671875, 0.0196075439453125, -0.07208251953125, -0.0161590576171875, -0.0215301513671875, -0.0183258056640625, 0.01873779296875, -0.0298919677734375, 0.0081939697265625, 0.01087188720703125, -0.054840087890625, -0.0897216796875, -0.00798797607421875, 0.03778076171875, -0.0200653076171875, 0.0020160675048828125, 0.0230560302734375, 0.01336669921875, 0.00032138824462890625, 0.03729248046875, -0.02215576171875, -0.021820068359375, 0.0286102294921875, -0.0210723876953125, -0.0338134765625, -0.0080718994140625, 0.0223541259765625, -0.0687255859375, -0.020965576171875, 0.0355224609375, 0.0141448974609375, -0.001956939697265625, 0.038543701171875, 0.01453399658203125, -0.01280975341796875, 0.0733642578125, -0.0173187255859375, -0.0275115966796875, -0.03814697265625, 0.0750732421875, -0.03570556640625, -0.00859832763671875, 0.03997802734375, 0.00992584228515625, 0.028167724609375, 0.056854248046875, 0.0021877288818359375, 0.035125732421875, -0.0506591796875, -0.005733489990234375, -0.00017690658569335938, 0.046051025390625, -0.03729248046875, -0.0143280029296875, 0.019256591796875, -0.01337432861328125, -0.03240966796875, -0.029693603515625, 0.022491455078125, -0.0174560546875, -0.045196533203125, 0.04522705078125, 0.0087127685546875, -0.07568359375, -0.02520751953125, 0.0251007080078125, 0.0102996826171875, -0.0252685546875, 0.0184173583984375, -0.023529052734375, 0.003360748291015625, 0.0188446044921875, 0.024871826171875, -0.06768798828125, 0.062255859375, 0.0401611328125, 0.0269927978515625, 0.048065185546875 ]
7c8b74ae923631abd66d56b3fd7a5dc56f50bdc9
Wordpress Stackexchange Q: WP-CLI throwing PHP Fatal error: Call to undefined function apply_filters() I have a migration script I'm using to copy my production environment to a dev server. Essentially it copies the files, exports/imports the MySQL database (using the wp db export and wp db import syntax), and then I'm using WP-CLI to deactivate and uninstall wordfence and w3-total-cache so they don't interfere with my development environment. I also have a list of files to remove to completely clean up those plugins. The whole script works great on one of my servers, but on another server I get the following error: PHP Fatal error: Call to undefined function apply_filters() in /[path]/wp-includes/load.php on line 317 Both servers are seemingly identical. I'm managing them both with serverpilot.io, both are the same version of Ubuntu on Digital Ocean. Has anyone seen this before? P.S. I don't think it's relevant since the same setup is working on another server, but I'm calling the specific PHP version I want and executing the wp-cli.phar with --path defined, like so: /opt/sp/php5.6/bin/php /usr/local/bin/wp-cli.phar plugin uninstall --deactivate wordfence w3-total-cache --path="$DEVDIR/public"
Q: WP-CLI throwing PHP Fatal error: Call to undefined function apply_filters() I have a migration script I'm using to copy my production environment to a dev server. Essentially it copies the files, exports/imports the MySQL database (using the wp db export and wp db import syntax), and then I'm using WP-CLI to deactivate and uninstall wordfence and w3-total-cache so they don't interfere with my development environment. I also have a list of files to remove to completely clean up those plugins. The whole script works great on one of my servers, but on another server I get the following error: PHP Fatal error: Call to undefined function apply_filters() in /[path]/wp-includes/load.php on line 317 Both servers are seemingly identical. I'm managing them both with serverpilot.io, both are the same version of Ubuntu on Digital Ocean. Has anyone seen this before? P.S. I don't think it's relevant since the same setup is working on another server, but I'm calling the specific PHP version I want and executing the wp-cli.phar with --path defined, like so: /opt/sp/php5.6/bin/php /usr/local/bin/wp-cli.phar plugin uninstall --deactivate wordfence w3-total-cache --path="$DEVDIR/public"
wordpress
{ "language": "en", "length": 180, "provenance": "stackexchange_00019.jsonl.gz:467788", "question_score": "4", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/237169" }
[ 0.030059814453125, 0.02984619140625, -0.0311737060546875, -0.033233642578125, 0.00826263427734375, -0.037200927734375, -0.004062652587890625, -0.0250396728515625, 0.0340576171875, 0.0225067138671875, -0.01531219482421875, 0.0005249977111816406, -0.018951416015625, -0.0220947265625, -0.0240020751953125, -0.017669677734375, 0.03387451171875, 0.0178680419921875, 0.074462890625, 0.0095977783203125, -0.0018339157104492188, 0.033050537109375, 0.05499267578125, 0.0030803680419921875, -0.01776123046875, -0.001903533935546875, 0.08160400390625, -0.01904296875, -0.0276947021484375, -0.0262603759765625, -0.0093994140625, 0.027923583984375, 0.038970947265625, -0.00025534629821777344, -0.05914306640625, -0.045745849609375, 0.00274658203125, -0.004764556884765625, -0.032073974609375, 0.021240234375, 0.00229644775390625, 0.0012941360473632812, 0.022796630859375, 0.01351165771484375, -0.010650634765625, -0.049072265625, 0.036651611328125, -0.01119232177734375, 0.0224761962890625, 0.058624267578125, -0.03973388671875, 0.031036376953125, -0.032562255859375, 0.00490570068359375, 0.011138916015625, -0.02655029296875, -0.0038471221923828125, 0.045501708984375, 0.01079559326171875, 0.03961181640625, -0.032989501953125, 0.028289794921875, -0.0213165283203125, -0.0506591796875, 0.01065826416015625, -0.024139404296875, 0.00435638427734375, 0.032562255859375, -0.081787109375, 0.00798797607421875, 0.0625, -0.032745361328125, 0.0274505615234375, 0.01476287841796875, 0.026611328125, -0.03314208984375, 0.00789642333984375, 0.01018524169921875, 0.018035888671875, 0.0224456787109375, -0.00801849365234375, 0.040191650390625, -0.044158935546875, 0.0016841888427734375, -0.0292510986328125, 0.0255584716796875, -0.01375579833984375, -0.012451171875, -0.01312255859375, -0.032806396484375, -0.0153961181640625, -0.00029277801513671875, -0.049652099609375, -0.0079345703125, 0.003917694091796875, -0.058441162109375, 0.035369873046875, 0.0209503173828125, -0.019775390625, -0.01666259765625, 0.0272674560546875, -0.034423828125, 0.01617431640625, -0.00008988380432128906, -0.018310546875, 0.045989990234375, -0.022369384765625, 0.0287933349609375, 0.0176849365234375, 0.043609619140625, 0.0223388671875, -0.0771484375, -0.017486572265625, -0.01447296142578125, -0.009613037109375, -0.0179901123046875, -0.049530029296875, 0.03643798828125, -0.00019788742065429688, 0.0237274169921875, -0.006839752197265625, 0.0236358642578125, -0.06634521484375, -0.010772705078125, -0.010223388671875, -0.048126220703125, 0.00431060791015625, 0.0244903564453125, 0.005634307861328125, -0.005260467529296875, -0.01329803466796875, 0.00418853759765625, 0.0177459716796875, 0.010772705078125, -0.004459381103515625, -0.00506591796875, 0.0374755859375, 0.029998779296875, 0.00594329833984375, 0.0181121826171875, -0.00186920166015625, -0.01268768310546875, 0.0255889892578125, -0.005039215087890625, -0.01556396484375, -0.0030994415283203125, 0.0294952392578125, 0.0313720703125, -0.02099609375, -0.016265869140625, -0.0335693359375, 0.041290283203125, 0.0295562744140625, 0.0238800048828125, -0.018463134765625, -0.01107025146484375, 0.050994873046875, -0.046478271484375, -0.018035888671875, -0.051849365234375, 0.0307769775390625, -0.0164642333984375, -0.0301055908203125, -0.004871368408203125, -0.03387451171875, 0.006877899169921875, 0.005596160888671875, 0.00965118408203125, 0.0284576416015625, 0.0122528076171875, 0.0221710205078125, -0.044677734375, 0.01248931884765625, 0.02203369140625, 0.00354766845703125, 0.04754638671875, 0.004947662353515625, 0.0109100341796875, 0.036651611328125, 0.0145263671875, -0.0288848876953125, -0.04559326171875, 0.05218505859375, -0.031494140625, -0.06005859375, -0.0220489501953125, 0.0216217041015625, 0.022430419921875, 0.0160369873046875, 0.003162384033203125, 0.10003662109375, 0.01715087890625, -0.0198822021484375, 0.038482666015625, -0.03314208984375, -0.043487548828125, -0.01372528076171875, 0.016937255859375, -0.019989013671875, 0.0011987686157226562, 0.0404052734375, -0.0038700103759765625, -0.00428009033203125, -0.032989501953125, -0.1163330078125, 0.022796630859375, -0.04864501953125, 0.032806396484375, -0.0171661376953125, 0.004669189453125, 0.0092926025390625, -0.002674102783203125, -0.020965576171875, 0.0157470703125, -0.00949859619140625, 0.00955963134765625, -0.01544189453125, 0.056640625, 0.0026416778564453125, 0.043609619140625, -0.008056640625, -0.01305389404296875, -0.0154571533203125, -0.028350830078125, 0.0110626220703125, 0.0199127197265625, -0.013458251953125, 0.01395416259765625, 0.03680419921875, 0.00021970272064208984, 0.06787109375, 0.0081634521484375, 0.01255035400390625, 0.0038013458251953125, -0.0290069580078125, -0.0097198486328125, -0.033233642578125, -0.0716552734375, 0.00647735595703125, 0.055908203125, 0.054779052734375, 0.035369873046875, 0.0027332305908203125, -0.0382080078125, 0.07806396484375, -0.0293426513671875, 0.007801055908203125, -0.0286865234375, -0.005008697509765625, 0.006839752197265625, 0.0198974609375, -0.0036869049072265625, 0.01039886474609375, -0.0160369873046875, -0.0002903938293457031, 0.02630615234375, -0.0089874267578125, -0.0452880859375, 0.036163330078125, -0.051055908203125, 0.05169677734375, -0.042938232421875, -0.06939697265625, 0.025543212890625, -0.01995849609375, -0.031463623046875, -0.0230560302734375, -0.027679443359375, -0.016265869140625, -0.013702392578125, 0.040863037109375, -0.045013427734375, 0.01526641845703125, -0.0085601806640625, -0.012786865234375, 0.050445556640625, -0.022003173828125, -0.005825042724609375, 0.0224609375, -0.001842498779296875, 0.0010433197021484375, 0.03387451171875, -0.0202178955078125, -0.00865936279296875, -0.007781982421875, 0.004638671875, -0.01160430908203125, 0.004497528076171875, -0.01348114013671875, -0.00824737548828125, 0.0286865234375, -0.00482177734375, -0.0290069580078125, 0.01419830322265625, 0.004146575927734375, -0.04437255859375, 0.07257080078125, -0.0176544189453125, -0.00628662109375, 0.01016998291015625, 0.0589599609375, 0.047760009765625, 0.036956787109375, -0.031158447265625, -0.006290435791015625, 0.057861328125, 0.033477783203125, -0.018951416015625, -0.01311492919921875, -0.006916046142578125, -0.031524658203125, -0.03302001953125, 0.0255584716796875, 0.005901336669921875, -0.00948333740234375, -0.05657958984375, -0.037506103515625, 0.0206756591796875, -0.1253662109375, -0.08013916015625, -0.0300445556640625, -0.0118408203125, -0.00855255126953125, 0.002170562744140625, -0.0036258697509765625, -0.0004086494445800781, 0.0051727294921875, 0.00341033935546875, 0.03656005859375, -0.037139892578125, -0.0253143310546875, -0.041656494140625, -0.0850830078125, -0.028594970703125, 0.0242767333984375, 0.004871368408203125, 0.0016880035400390625, 0.0621337890625, 0.004302978515625, -0.051727294921875, 0.0121917724609375, 0.0257110595703125, -0.020965576171875, 0.032745361328125, -0.0157012939453125, -0.007160186767578125, 0.03607177734375, -0.00640869140625, 0.004413604736328125, 0.03204345703125, -0.007068634033203125, -0.0108642578125, 0.0110626220703125, -0.051971435546875, 0.003795623779296875, 0.0192108154296875, -0.02203369140625, -0.0654296875, -0.01018524169921875, -0.099853515625, 0.01483917236328125, 0.000774383544921875, -0.00893402099609375, 0.048431396484375, 0.0194091796875, -0.04962158203125, -0.01078033447265625, 0.02032470703125, 0.01290130615234375, 0.0092926025390625, 0.031829833984375, -0.0033054351806640625, -0.00885009765625, -0.0194091796875, -0.01306915283203125, -0.0196075439453125, 0.063232421875, -0.00841522216796875, 0.02508544921875, 0.0367431640625, -0.00069427490234375, 0.0082244873046875, -0.040496826171875, -0.0330810546875, -0.038726806640625, 0.0213775634765625, 0.0025787353515625, -0.004852294921875, 0.000682830810546875, -0.0021381378173828125, -0.004863739013671875, 0.035186767578125, -0.05596923828125, -0.04693603515625, 0.00450897216796875, 0.0244293212890625, 0.006336212158203125, -0.02081298828125, 0.040283203125, -0.0479736328125, -0.0667724609375, -0.0012884140014648438, 0.004512786865234375, -0.031982421875, 0.0189056396484375, -0.04034423828125, -0.0185546875, -0.0467529296875, 0.0567626953125, -0.090576171875, 0.039093017578125, 0.033233642578125, 0.03997802734375, -0.018096923828125, -0.06878662109375, -0.03094482421875, -0.06396484375, 0.0088348388671875, -0.04156494140625, 0.0124053955078125, -0.01204681396484375, 0.054351806640625, -0.036529541015625, 0.0091552734375, 0.0276031494140625, -0.004150390625, 0.0225372314453125, -0.022857666015625, -0.02471923828125, 0.015380859375, 0.040191650390625, -0.0247650146484375, -0.01727294921875, -0.0380859375, -0.047821044921875, -0.0158843994140625, 0.004108428955078125, 0.0106201171875, 0.032806396484375, -0.017120361328125, -0.0207061767578125, -0.043121337890625, -0.0205078125, -0.01105499267578125, -0.060150146484375, 0.040618896484375, -0.03448486328125, 0.0006246566772460938, 0.0611572265625, -0.0290985107421875, 0.0215911865234375, -0.00030231475830078125, 0.103271484375, 0.01027679443359375, -0.0160980224609375, -0.0180816650390625, 0.0180511474609375, 0.0182342529296875, 0.0120697021484375, 0.0626220703125, 0.018341064453125, 0.006832122802734375, 0.0233001708984375, -0.0013980865478515625, 0.0307769775390625, -0.024078369140625, 0.050445556640625, -0.0182037353515625, -0.05560302734375, 0.055633544921875, 0.006626129150390625, -0.04278564453125, -0.00598907470703125, -0.01131439208984375, 0.0165863037109375, -0.006744384765625, 0.01020050048828125, 0.027435302734375, -0.023284912109375, -0.0248260498046875, -0.036285400390625, 0.0206298828125, -0.04986572265625, 0.031890869140625, 0.0238037109375, -0.0087890625, 0.0201568603515625, -0.013580322265625, 0.00717926025390625, 0.0078125, 0.0498046875, -0.021575927734375, 0.045166015625, -0.00844573974609375, -0.00899505615234375, -0.0246124267578125, -0.0035266876220703125, 0.0145111083984375, -0.011016845703125, -0.0330810546875, 0.00701141357421875, 0.0087890625, -0.03167724609375, 0.012481689453125, 0.0044403076171875, 0.058135986328125, -0.0112457275390625, -0.027252197265625, -0.0009050369262695312, -0.0142669677734375, -0.0323486328125, -0.037841796875, 0.038818359375, -0.0194091796875, 0.0138092041015625, 0.04559326171875, 0.01386260986328125, 0.00917816162109375, 0.0142669677734375, -0.0191802978515625, -0.0309906005859375, -0.0265960693359375, 0.04583740234375, 0.0240325927734375, -0.01983642578125, -0.0059051513671875, 0.03070068359375, 0.03326416015625, -0.0211181640625, -0.00864410400390625, 0.01349639892578125, 0.037109375, 0.0010852813720703125, -0.006237030029296875, 0.0216827392578125, -0.021209716796875, 0.006519317626953125, 0.01329803466796875, -0.0071868896484375, -0.038116455078125, -0.01479339599609375, 0.00778961181640625, 0.028778076171875, -0.00821685791015625, -0.021759033203125, 0.00982666015625, -0.043792724609375, -0.0159454345703125, 0.07000732421875, -0.0628662109375, 0.002349853515625, 0.01192474365234375, 0.006084442138671875, -0.03271484375, -0.0246124267578125, 0.003955841064453125, 0.0284576416015625, -0.038909912109375, -0.03778076171875, 0.06658935546875, -0.03997802734375, 0.0204315185546875, -0.028472900390625, 0.0174560546875, 0.0292510986328125, 0.018524169921875, 0.049285888671875, 0.0273895263671875, 0.0019521713256835938, 0.03448486328125, -0.03448486328125, -0.03814697265625, -0.024810791015625, -0.025543212890625, -0.06219482421875, -0.0322265625, -0.009918212890625, 0.005279541015625, 0.01532745361328125, 0.0012493133544921875, -0.0504150390625, 0.0160369873046875, 0.0272979736328125, 0.0197601318359375, -0.02850341796875, 0.059722900390625, -0.0060882568359375, -0.0033016204833984375, -0.0003249645233154297, 0.0274200439453125, 0.017791748046875, 0.004535675048828125, -0.00395965576171875, -0.01145172119140625, -0.015716552734375, 0.00615692138671875, -0.0228729248046875, 0.0258331298828125, 0.0892333984375, -0.00748443603515625, 0.032745361328125, -0.01226043701171875, -0.00791168212890625, -0.01092529296875, 0.027008056640625, -0.02166748046875, 0.03839111328125, 0.01274871826171875, -0.042022705078125, -0.01091766357421875, 0.033111572265625, 0.033203125, 0.03515625, -0.0556640625, 0.006137847900390625, 0.009033203125, -0.05303955078125, 0.06427001953125, 0.05792236328125, 0.02532958984375, 0.050537109375, 0.0158233642578125, 0.03387451171875, 0.0149383544921875, -0.028961181640625, -0.0058746337890625, 0.01959228515625, 0.04888916015625, -0.010467529296875, -0.01357269287109375, 0.0182037353515625, -0.0285797119140625, 0.0108184814453125, 0.0048828125, 0.0309906005859375, -0.027679443359375, 0.008270263671875, 0.010467529296875, -0.0177154541015625, 0.004161834716796875, -0.01377105712890625, -0.0259246826171875, -0.051361083984375, -0.0003266334533691406, 0.01389312744140625, -0.0447998046875, -0.0177764892578125, 0.04095458984375, -0.0078125, -0.01107025146484375, -0.0135498046875, -0.005565643310546875, -0.00506591796875, -0.0177459716796875, 0.040008544921875, -0.0306243896484375, 0.0137786865234375, 0.025421142578125, -0.020904541015625, -0.0283660888671875, -0.044097900390625, -0.0325927734375, -0.013671875, -0.07110595703125, 0.0014591217041015625, -0.0347900390625, 0.030609130859375, 0.032562255859375, -0.019317626953125, -0.009552001953125, 0.01873779296875, -0.00691986083984375, 0.0219573974609375, -0.0489501953125, 0.01091766357421875, 0.03399658203125, -0.05645751953125, 0.012237548828125, 0.00003063678741455078, -0.021392822265625, -0.0046234130859375, -0.002849578857421875, 0.01110076904296875, -0.02447509765625, -0.0021820068359375, 0.047760009765625, 0.0104217529296875, -0.020263671875, -0.00457763671875, 0.08111572265625, -0.0726318359375, -0.043701171875, 0.046661376953125, -0.0147857666015625, -0.042144775390625, 0.016082763671875, -0.0037822723388671875, 0.10540771484375, -0.0174713134765625, -0.0032176971435546875, 0.052825927734375, 0.047454833984375, -0.045379638671875, 0.039398193359375, -0.003910064697265625, 0.037689208984375, -0.0467529296875, 0.0458984375, -0.0295257568359375, 0.0001175999641418457, 0.024871826171875, 0.05328369140625, 0.0027923583984375, 0.00145721435546875, -0.00106048583984375, -0.007720947265625, 0.0250701904296875, 0.01541900634765625, 0.002002716064453125, 0.032470703125, 0.011474609375, -0.00897216796875, -0.00746917724609375, -0.0271759033203125, 0.02508544921875, -0.062744140625, 0.0067901611328125, 0.02734375, 0.0047760009765625, 0.0032062530517578125, 0.01409912109375, 0.048248291015625, -0.0279693603515625, 0.00751495361328125, 0.025909423828125, 0.005649566650390625, -0.014556884765625, 0.00004178285598754883, -0.0413818359375, 0.0016536712646484375, -0.04010009765625, -0.0088348388671875, 0.00844573974609375, -0.01800537109375, -0.0213470458984375, -0.0052947998046875, 0.0037441253662109375, -0.0206451416015625, -0.026580810546875, -0.026153564453125, 0.00620269775390625, 0.0021190643310546875, 0.04046630859375, 0.01027679443359375, 0.049224853515625, 0.006256103515625, 0.025970458984375, -0.01413726806640625, 0.0308990478515625, -0.021087646484375, -0.0723876953125, 0.0074310302734375, 0.0233001708984375, 0.0225982666015625, 0.0247802734375, 0.023040771484375, -0.044158935546875, 0.062225341796875, 0.00914764404296875, -0.0096435546875, 0.043731689453125, -0.036651611328125, 0.0254364013671875, 0.02777099609375, 0.005352020263671875, 0.0222625732421875, -0.0220489501953125, 0.0022678375244140625, -0.0004012584686279297, 0.038726806640625, 0.007640838623046875, 0.034820556640625, -0.0182952880859375, -0.01280975341796875, -0.0293731689453125, 0.05029296875, 0.0147857666015625, 0.0194091796875, -0.044647216796875, -0.037811279296875, 0.047576904296875, 0.03369140625, 0.010650634765625, 0.0264739990234375, 0.06744384765625, 0.043670654296875, -0.037994384765625, -0.00922393798828125, 0.0341796875, -0.0256195068359375, -0.02447509765625, 0.0156402587890625, -0.01454925537109375, -0.00870513916015625, -0.003696441650390625, 0.0022735595703125, 0.0751953125, -0.021240234375, -0.05078125, 0.0100555419921875, 0.0015363693237304688, -0.0108489990234375, 0.01468658447265625, 0.0233306884765625, 0.00467681884765625, 0.004718780517578125, 0.0079498291015625, 0.0196685791015625, -0.020660400390625, -0.0155792236328125, 0.00704193115234375, 0.0290069580078125, -0.005420684814453125, 0.027252197265625, 0.0247344970703125, -0.006931304931640625, 0.02813720703125, -0.0272979736328125, 0.0272216796875, 0.00006198883056640625, -0.0005517005920410156, 0.00814056396484375, 0.0264434814453125, 0.006198883056640625, -0.03643798828125, 0.057342529296875, 0.052642822265625, 0.06866455078125, -0.05279541015625, 0.0447998046875, 0.0001513957977294922, -0.0131988525390625, 0.019073486328125, 0.02227783203125, -0.03851318359375, 0.007965087890625, -0.0015745162963867188, -0.0285491943359375, 0.004528045654296875, 0.033599853515625, 0.043975830078125, -0.0010652542114257812, -0.0070648193359375, 0.024658203125, 0.026123046875, -0.004116058349609375, 0.046661376953125, -0.0186309814453125, -0.035125732421875, -0.0318603515625, -0.01189422607421875, 0.0295867919921875, 0.03460693359375, 0.0025119781494140625, 0.00345611572265625, 0.062255859375, -0.007419586181640625, -0.000030040740966796875, 0.0157470703125, 0.0230560302734375, 0.0245361328125, 0.008148193359375, -0.054962158203125, -0.0153350830078125, -0.005970001220703125, -0.05731201171875, 0.042083740234375, 0.0025959014892578125, -0.0272064208984375, -0.0125274658203125, -0.020660400390625, -0.00524139404296875, 0.007015228271484375, -0.03314208984375, 0.0121002197265625, -0.0218505859375, -0.005565643310546875, 0.0160675048828125, -0.026214599609375, -0.0132598876953125, -0.03399658203125, -0.0265960693359375, 0.0023345947265625, -0.03167724609375, -0.06048583984375, -0.0230255126953125, 0.045654296875, 0.04168701171875, 0.02813720703125, -0.08526611328125, 0.08502197265625, -0.050201416015625, 0.040252685546875, 0.016143798828125, -0.01507568359375, -0.0215606689453125, -0.0309906005859375, -0.02099609375, -0.034454345703125, -0.04571533203125, 0.0511474609375, -0.03497314453125, -0.0065460205078125, 0.0295867919921875, 0.0166015625, -0.0186767578125, -0.021942138671875, -0.018280029296875, 0.02569580078125, -0.07086181640625, -0.0014438629150390625, 0.0303955078125, -0.01806640625, -0.050750732421875, -0.0506591796875, 0.031005859375, -0.06707763671875, -0.037689208984375, 0.00411224365234375, -0.01168060302734375, 0.0011396408081054688, -0.0443115234375, -0.0687255859375, 0.064697265625, 0.004669189453125, -0.0277099609375, -0.055084228515625, -0.031829833984375, 0.00643157958984375, 0.031829833984375, -0.01042938232421875, -0.0289459228515625, -0.05731201171875, 0.049285888671875, -0.0029048919677734375, -0.0081939697265625, 0.0170440673828125, -0.0310821533203125, -0.0440673828125, 0.0225372314453125, 0.0330810546875, 0.0011262893676757812, -0.0156707763671875, 0.0095367431640625, 0.0258941650390625, 0.06304931640625, 0.0250091552734375, -0.005443572998046875, 0.045806884765625, -0.07470703125, 0.0004699230194091797, 0.004589080810546875, -0.0159149169921875, 0.00926971435546875, 0.039520263671875, 0.03912353515625, 0.0219268798828125, -0.0195770263671875, -0.01531219482421875, -0.0239715576171875, 0.011749267578125, -0.0116424560546875, 0.0077056884765625, -0.0587158203125, -0.0189666748046875, 0.0035190582275390625, 0.0149078369140625, 0.0299530029296875, -0.01195526123046875, 0.01331329345703125, -0.018310546875, 0.01416778564453125, -0.0400390625, 0.004848480224609375, -0.029296875, 0.047882080078125, -0.038421630859375, -0.0418701171875, 0.0247039794921875, 0.02197265625, -0.01123809814453125, -0.00027632713317871094, -0.017822265625, -0.00445556640625, 0.01343536376953125, 0.046844482421875, 0.01064300537109375, -0.0034084320068359375, -0.02264404296875, 0.014984130859375, 0.00646209716796875, 0.0038509368896484375, -0.007801055908203125, 0.0013628005981445312, 0.02874755859375, -0.0175018310546875, -0.0204315185546875, -0.01221466064453125, -0.020111083984375, 0.00855255126953125, -0.034271240234375, 0.058807373046875, 0.01012420654296875, -0.008087158203125, 0.022308349609375, 0.0260772705078125, -0.0016698837280273438, 0.0218353271484375, -0.00351715087890625, -0.06341552734375, 0.0579833984375, 0.049591064453125, 0.01291656494140625, 0.03338623046875 ]
92fb7f60ed1bbffaef7d3436cfe019fc1b84fd0a
Wordpress Stackexchange Q: Check if user is admin by user ID Any ideas how to check if user (by user ID) is administrator? I don't mean currently logged in user. A: You can use get_userdata() or get_user_by() by passing user id yo can get user object. From which you get role. $user = get_userdata( $user_id ); if(!empty( $user ) && $user){ $user->roles // this contains the role here check for whatever role you need } You can check this answer for more
Q: Check if user is admin by user ID Any ideas how to check if user (by user ID) is administrator? I don't mean currently logged in user. A: You can use get_userdata() or get_user_by() by passing user id yo can get user object. From which you get role. $user = get_userdata( $user_id ); if(!empty( $user ) && $user){ $user->roles // this contains the role here check for whatever role you need } You can check this answer for more A: I'm just adding to @Rarst answer. Technically you can supply the role name to those functions, so current_user_can( 'administrator' ) or user_can( $user_id, 'administrator' ) would also work but it is discouraged. While checking against particular roles in place of a capability is supported in part, this practice is discouraged as it may produce unreliable results. Note: Will always return true if the current user is a super admin, unless specifically denied. You could check against the role without relying on those functions (since they are unreliable), but like @Rarst said, it is more proper to check for capabilities instead of role. One main advantage to using capabilities instead of roles is as follow. Take for instance that you have more than one administrator on your site. Let's say you want your client to be admin, and you are also admin of the site. Now it makes sense that your client has admin privileges over his site, but you might not want him/her to have the ability to install plugins to the site. That would be your job as a webmaster. So if you check on roles, you are stuck at disabling/enabling functionalities to everyone within that role. Now if you use capabilities, you would have more granularity over granting/restricting users from doing specific actions. Back to my scenario, if you want to give your client administrator privileges but not be able to install plugins, it would be as simple as add_filter( 'user_has_cap', 'client_admin_cap_filter', 10, 3 ); function client_admin_cap_filter( $allcaps, $cap, $args ){ // the requested capability and our client user id if ( 'install_plugins' == $args[0] && $args[1] == 2 ) $allcaps[ $cap[0] ] = false; return $allcaps; } we could supply an array of different capabilities we would want to restrict, for instance update_core, manage_options, install_plugins, install_themes etc. Our function would still be pretty simple add_filter( 'user_has_cap', 'client_admin_cap_filter', 10, 3 ); function client_admin_cap_filter( $allcaps, $cap, $args ){ $restricted_cap = array( 'update_core', 'manage_options', 'install_plugins', 'install_themes', // etc. ); foreach( $restricted_cap as $r_cap ){ // the requested capability and our client user id if ( $r_cap == $args[0] && $args[1] == 2 ) $allcaps[ $cap[0] ] = false; } return $allcaps; } So as you can see, this is pretty effective, doesn't required a special role, doesn't add an extra DB query, is executed at runtime and is easily scalable and maintainable. If you logic depends on a role, well good luck targeting specific users, scenarios or whatnots without pulling your hair out or creating a gazillion roles just to keep up with all possible use case. Check the codex for the more info on the user_has_cap filter. A: You worded it as you want to check if user has administrator role. It is considered more proper to check for capability, relevant to specific action. In practice this is usually expressed as current_user_can( 'manage_options' ) for current user. For arbitrary user it would be user_can( $user_id, 'manage_options' ). Of course this is capability that stands for general configuration of the site. Depending on your purpose you might want to use a different one, see list in roles and capabilities documentation.
wordpress
{ "language": "en", "length": 601, "provenance": "stackexchange_00019.jsonl.gz:467821", "question_score": "10", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/237293" }
[ 0.058929443359375, 0.01265716552734375, 0.026123046875, -0.0210113525390625, 0.01519775390625, -0.0240478515625, 0.0302581787109375, -0.051513671875, -0.003795623779296875, 0.0236358642578125, -0.027679443359375, 0.007587432861328125, 0.00762939453125, -0.0236053466796875, -0.01580810546875, -0.0288848876953125, 0.01305389404296875, 0.0297698974609375, 0.014129638671875, -0.015777587890625, -0.007762908935546875, -0.004138946533203125, 0.0053863525390625, 0.0085906982421875, 0.0117645263671875, -0.019683837890625, 0.033416748046875, -0.0030059814453125, -0.0065460205078125, -0.0195159912109375, 0.01212310791015625, 0.005161285400390625, -0.0311126708984375, 0.0243988037109375, 0.04351806640625, 0.0168304443359375, -0.0028095245361328125, 0.0400390625, 0.07666015625, -0.041595458984375, 0.0225372314453125, 0.01348876953125, 0.003696441650390625, 0.044647216796875, -0.0272979736328125, -0.057464599609375, 0.0291595458984375, -0.0201263427734375, 0.025421142578125, -0.014739990234375, 0.0469970703125, -0.001621246337890625, 0.049468994140625, -0.0194549560546875, -0.0183563232421875, 0.022186279296875, 0.053619384765625, -0.0494384765625, 0.051239013671875, -0.04351806640625, -0.0762939453125, -0.041259765625, 0.0545654296875, -0.04412841796875, -0.010894775390625, 0.004329681396484375, -0.005062103271484375, 0.034088134765625, -0.033477783203125, -0.041656494140625, -0.010467529296875, -0.0149383544921875, -0.02264404296875, 0.03326416015625, -0.0252685546875, -0.05535888671875, 0.0180816650390625, -0.038421630859375, 0.0177154541015625, 0.03857421875, -0.00914764404296875, -0.00931549072265625, -0.0400390625, 0.02752685546875, -0.0211334228515625, 0.03997802734375, -0.0185699462890625, -0.021697998046875, -0.00891876220703125, -0.01904296875, -0.0159912109375, -0.0318603515625, 0.0019893646240234375, -0.003879547119140625, -0.0303955078125, -0.02215576171875, 0.050750732421875, 0.08868408203125, -0.0198822021484375, -0.0231475830078125, -0.0271148681640625, -0.00876617431640625, -0.0626220703125, -0.0200042724609375, -0.0031585693359375, 0.0362548828125, 0.01641845703125, 0.0162353515625, -0.00482940673828125, 0.0192413330078125, -0.0185699462890625, -0.0262298583984375, -0.0263824462890625, -0.03082275390625, -0.02923583984375, 0.04925537109375, -0.016632080078125, -0.014251708984375, -0.0062713623046875, 0.017303466796875, -0.01129913330078125, 0.00792694091796875, 0.036285400390625, -0.0017061233520507812, -0.008453369140625, 0.0018253326416015625, -0.0235748291015625, -0.03509521484375, -0.01611328125, 0.021331787109375, -0.0162811279296875, 0.0218963623046875, 0.02056884765625, -0.0116729736328125, -0.02191162109375, -0.01056671142578125, 0.02001953125, 0.00833892822265625, -0.004840850830078125, 0.0155792236328125, 0.0145263671875, -0.0316162109375, -0.022552490234375, 0.00438690185546875, -0.044219970703125, 0.03497314453125, 0.0019664764404296875, -0.0032634735107421875, -0.0178680419921875, -0.093017578125, -0.00959014892578125, -0.035552978515625, -0.044403076171875, 0.0380859375, 0.080322265625, 0.05548095703125, 0.024200439453125, 0.032012939453125, 0.002605438232421875, 0.048583984375, 0.013458251953125, 0.0142669677734375, 0.053253173828125, 0.00954437255859375, -0.034576416015625, -0.000023126602172851562, -0.054473876953125, -0.016845703125, 0.03143310546875, -0.0267486572265625, 0.07110595703125, 0.00269317626953125, 0.04498291015625, 0.0072174072265625, 0.005001068115234375, -0.007404327392578125, 0.017333984375, -0.032867431640625, -0.0020618438720703125, 0.04058837890625, -0.0307159423828125, -0.0262908935546875, -0.0193634033203125, -0.0139617919921875, -0.0153656005859375, 0.01239776611328125, 0.004062652587890625, 0.01293182373046875, 0.019866943359375, 0.01398468017578125, 0.0029735565185546875, 0.036590576171875, 0.0034503936767578125, -0.00740814208984375, 0.006103515625, -0.02484130859375, 0.0009241104125976562, 0.0005712509155273438, -0.0142669677734375, -0.0015697479248046875, 0.07366943359375, -0.0174560546875, -0.01416778564453125, -0.03558349609375, -0.07684326171875, -0.044891357421875, -0.00705718994140625, -0.0011129379272460938, 0.0223541259765625, 0.032196044921875, -0.00202178955078125, 0.014190673828125, -0.02264404296875, -0.0184326171875, -0.0222015380859375, 0.0125732421875, -0.02001953125, 0.0166473388671875, -0.0174407958984375, 0.017425537109375, -0.0191497802734375, -0.0086822509765625, -0.0091400146484375, 0.0084075927734375, -0.0075225830078125, -0.001171112060546875, 0.00630950927734375, 0.0178985595703125, 0.054656982421875, 0.0233001708984375, 0.0556640625, -0.05133056640625, 0.047119140625, 0.0218353271484375, -0.02508544921875, -0.011993408203125, -0.0102691650390625, -0.109375, 0.0021114349365234375, 0.06585693359375, 0.038970947265625, 0.0108489990234375, -0.01209259033203125, 0.00431060791015625, 0.028411865234375, -0.0648193359375, -0.0032196044921875, 0.005168914794921875, -0.010467529296875, 0.052886962890625, -0.0130157470703125, 0.027069091796875, 0.0109710693359375, 0.00885772705078125, -0.045318603515625, 0.055450439453125, -0.002918243408203125, 0.0169219970703125, -0.0082550048828125, 0.0160675048828125, -0.01727294921875, -0.0083770751953125, 0.0129241943359375, -0.01476287841796875, -0.02655029296875, 0.0169830322265625, -0.0017299652099609375, 0.0105438232421875, -0.014739990234375, -0.016845703125, 0.0190277099609375, 0.0197601318359375, 0.0176544189453125, 0.048004150390625, 0.016265869140625, 0.033538818359375, -0.03369140625, -0.023040771484375, 0.036163330078125, 0.040313720703125, -0.00753021240234375, 0.006351470947265625, 0.0282440185546875, -0.00982666015625, 0.0172119140625, 0.02392578125, 0.0309295654296875, -0.0132293701171875, 0.0228118896484375, -0.023590087890625, 0.0289764404296875, -0.005138397216796875, -0.02716064453125, 0.055755615234375, -0.048004150390625, -0.04241943359375, -0.04443359375, -0.013702392578125, 0.01247406005859375, -0.032989501953125, 0.01155853271484375, 0.055877685546875, 0.01096343994140625, -0.0012998580932617188, 0.0027751922607421875, -0.02691650390625, -0.02197265625, 0.040496826171875, 0.01470184326171875, -0.01224517822265625, -0.0196533203125, 0.06622314453125, 0.017242431640625, 0.040069580078125, -0.005451202392578125, -0.037261962890625, -0.0131988525390625, 0.00231170654296875, -0.06329345703125, -0.0740966796875, -0.0460205078125, -0.07232666015625, -0.00875091552734375, -0.00601959228515625, -0.0243682861328125, 0.0194854736328125, 0.01334381103515625, 0.00995635986328125, 0.003475189208984375, -0.0011472702026367188, -0.00220489501953125, -0.005107879638671875, -0.032958984375, 0.015594482421875, -0.004505157470703125, 0.00507354736328125, -0.003665924072265625, 0.0282745361328125, -0.0174102783203125, -0.062347412109375, -0.04443359375, 0.0168609619140625, 0.00004166364669799805, -0.010711669921875, 0.0017843246459960938, -0.006954193115234375, -0.0229949951171875, 0.0202789306640625, 0.0149993896484375, -0.0171356201171875, 0.002109527587890625, -0.0265960693359375, 0.003726959228515625, -0.03887939453125, 0.04425048828125, -0.01070404052734375, -0.049560546875, 0.0140228271484375, 0.054412841796875, -0.02911376953125, -0.004611968994140625, 0.01451873779296875, -0.031158447265625, 0.0275115966796875, 0.01018524169921875, -0.0293121337890625, 0.03704833984375, -0.02020263671875, 0.020263671875, 0.0220947265625, -0.043487548828125, -0.01751708984375, 0.01052093505859375, 0.0225677490234375, 0.0570068359375, 0.04364013671875, -0.0224761962890625, -0.043670654296875, -0.016845703125, -0.04473876953125, -0.002666473388671875, -0.0009169578552246094, -0.0027484893798828125, 0.0206451416015625, -0.08868408203125, 0.05926513671875, 0.0030498504638671875, 0.0225677490234375, -0.054351806640625, -0.0501708984375, -0.002208709716796875, 0.126953125, 0.015777587890625, -0.0027523040771484375, -0.01041412353515625, -0.023284912109375, -0.030487060546875, 0.0055389404296875, -0.0731201171875, 0.00470733642578125, -0.02984619140625, -0.0080413818359375, -0.0152587890625, -0.0037288665771484375, -0.04412841796875, 0.045166015625, -0.035247802734375, -0.01537322998046875, 0.0288848876953125, -0.07501220703125, 0.036102294921875, -0.00450897216796875, 0.00908660888671875, -0.0173797607421875, -0.00545501708984375, -0.059539794921875, -0.07025146484375, -0.0155029296875, -0.028076171875, 0.061737060546875, 0.01163482666015625, 0.00213623046875, -0.0145416259765625, 0.0294036865234375, 0.0112457275390625, -0.0013837814331054688, 0.003940582275390625, -0.005992889404296875, 0.001285552978515625, -0.01209259033203125, -0.006633758544921875, -0.0209197998046875, -0.025634765625, -0.03826904296875, 0.00394439697265625, -0.0169525146484375, -0.05322265625, -0.03802490234375, -0.0283355712890625, 0.002227783203125, -0.0290985107421875, 0.001430511474609375, -0.021148681640625, 0.007518768310546875, -0.036468505859375, 0.01407623291015625, 0.0013723373413085938, -0.06109619140625, 0.05377197265625, 0.006298065185546875, -0.0037078857421875, 0.005157470703125, 0.0748291015625, 0.0070037841796875, -0.02545166015625, -0.06097412109375, -0.005947113037109375, 0.051177978515625, -0.006618499755859375, 0.043426513671875, 0.053985595703125, -0.034423828125, 0.041015625, 0.0282135009765625, -0.0013790130615234375, -0.0007252693176269531, 0.025390625, 0.00783538818359375, -0.0165252685546875, 0.01393890380859375, 0.0014219284057617188, 0.0035381317138671875, -0.01326751708984375, 0.004947662353515625, -0.0267791748046875, 0.0220794677734375, 0.0439453125, -0.0226593017578125, 0.047149658203125, -0.0189056396484375, -0.06695556640625, 0.0323486328125, -0.08917236328125, 0.0107269287109375, -0.0163421630859375, -0.0087738037109375, 0.018768310546875, 0.00763702392578125, 0.0078582763671875, -0.0167999267578125, 0.0259246826171875, -0.0040130615234375, 0.05291748046875, -0.03741455078125, 0.019317626953125, -0.039794921875, -0.0204925537109375, 0.08721923828125, 0.00707244873046875, -0.054962158203125, 0.038818359375, -0.049041748046875, 0.0185699462890625, 0.0308685302734375, 0.004703521728515625, 0.0235748291015625, 0.0012187957763671875, -0.006809234619140625, 0.01409149169921875, -0.0200042724609375, 0.013336181640625, -0.01812744140625, 0.001361846923828125, -0.028656005859375, -0.0016498565673828125, 0.0306243896484375, 0.041168212890625, -0.0086212158203125, 0.031280517578125, -0.0181121826171875, 0.0362548828125, 0.0181427001953125, 0.028167724609375, 0.004131317138671875, 0.005584716796875, -0.00818634033203125, 0.0203094482421875, 0.0176544189453125, -0.0279388427734375, -0.004825592041015625, 0.0172119140625, 0.036041259765625, 0.004108428955078125, -0.0193634033203125, -0.001735687255859375, -0.01470184326171875, -0.018218994140625, 0.038482666015625, -0.019683837890625, -0.05712890625, -0.0396728515625, 0.0085906982421875, 0.04644775390625, -0.0294952392578125, -0.01435089111328125, 0.0071563720703125, -0.0192718505859375, 0.0300140380859375, 0.00931549072265625, -0.038909912109375, 0.02642822265625, 0.033111572265625, -0.032379150390625, -0.028778076171875, -0.0161590576171875, 0.00768280029296875, 0.0203857421875, -0.0136260986328125, -0.033050537109375, 0.0200653076171875, -0.0168609619140625, 0.01165008544921875, -0.03936767578125, 0.0243682861328125, -0.042022705078125, -0.003780364990234375, 0.054412841796875, 0.02935791015625, -0.07769775390625, -0.00623321533203125, -0.0816650390625, -0.0149078369140625, -0.0245361328125, -0.0374755859375, -0.0287322998046875, 0.0178375244140625, -0.003597259521484375, 0.01117706298828125, 0.0120849609375, 0.034759521484375, -0.005161285400390625, 0.0469970703125, 0.00359344482421875, 0.05865478515625, -0.0005373954772949219, 0.08538818359375, -0.01242828369140625, 0.03570556640625, 0.0085906982421875, 0.0306549072265625, -0.052703857421875, -0.0018415451049804688, 0.0005850791931152344, 0.03155517578125, -0.0036373138427734375, -0.017303466796875, 0.030181884765625, -0.06610107421875, 0.02264404296875, -0.0192718505859375, -0.0008282661437988281, 0.0041351318359375, 0.0021114349365234375, -0.0157623291015625, -0.025665283203125, 0.0281982421875, 0.021820068359375, -0.039825439453125, -0.031768798828125, 0.0015239715576171875, 0.003673553466796875, -0.0208740234375, 0.016876220703125, -0.00482940673828125, 0.0038356781005859375, 0.0249481201171875, -0.039581298828125, 0.034942626953125, 0.06231689453125, -0.0017499923706054688, 0.035186767578125, 0.036224365234375, 0.0226287841796875, 0.0173492431640625, -0.01461029052734375, 0.0012407302856445312, 0.00803375244140625, 0.044403076171875, 0.0027294158935546875, -0.00318145751953125, 0.031463623046875, -0.028045654296875, 0.039093017578125, 0.070556640625, 0.06768798828125, -0.09600830078125, 0.0090484619140625, -0.0127105712890625, -0.03704833984375, 0.042755126953125, -0.0286712646484375, -0.0035076141357421875, -0.06488037109375, 0.08404541015625, -0.0196380615234375, -0.01898193359375, 0.0166015625, -0.05743408203125, -0.0179595947265625, -0.006916046142578125, 0.049652099609375, 0.0298614501953125, 0.07891845703125, -0.01202392578125, -0.05126953125, 0.0362548828125, -0.0164947509765625, 0.0389404296875, -0.0287628173828125, 0.0234832763671875, -0.05438232421875, -0.0120849609375, -0.0184478759765625, -0.03271484375, 0.002227783203125, 0.024383544921875, 0.06768798828125, 0.041473388671875, 0.0220947265625, -0.05499267578125, 0.02520751953125, -0.014923095703125, -0.047393798828125, -0.035125732421875, -0.02239990234375, 0.01450347900390625, -0.006687164306640625, 0.0261993408203125, -0.01483917236328125, -0.0169677734375, -0.006557464599609375, -0.05340576171875, 0.040557861328125, -0.035614013671875, -0.00672149658203125, 0.017364501953125, 0.03253173828125, -0.0026187896728515625, 0.0025787353515625, -0.01141357421875, -0.012664794921875, 0.0200042724609375, -0.0010118484497070312, 0.002315521240234375, 0.0215606689453125, 0.0015430450439453125, -0.04638671875, 0.0279083251953125, 0.01010894775390625, 0.002185821533203125, -0.03570556640625, 0.01105499267578125, 0.0249481201171875, 0.019287109375, -0.031890869140625, 0.034027099609375, 0.026092529296875, 0.031036376953125, -0.0163116455078125, -0.0030155181884765625, 0.0089111328125, 0.025726318359375, 0.048126220703125, 0.0293731689453125, -0.054962158203125, -0.008514404296875, -0.006938934326171875, 0.00865936279296875, -0.01447296142578125, 0.07086181640625, -0.0023860931396484375, 0.0250701904296875, 0.059112548828125, -0.0269775390625, 0.05560302734375, -0.042236328125, -0.0109405517578125, 0.00429534912109375, 0.01561737060546875, 0.010833740234375, -0.0012083053588867188, 0.005443572998046875, -0.042816162109375, -0.001522064208984375, 0.046051025390625, -0.051544189453125, 0.0189361572265625, 0.003536224365234375, 0.0428466796875, -0.0396728515625, 0.032257080078125, -0.024993896484375, 0.0595703125, 0.0216064453125, 0.0105133056640625, -0.00897216796875, 0.01282501220703125, -0.029052734375, 0.0189361572265625, 0.0031890869140625, 0.058441162109375, -0.0390625, 0.025909423828125, 0.052337646484375, 0.0214996337890625, -0.02984619140625, -0.0143890380859375, 0.0237884521484375, 0.04583740234375, -0.02447509765625, -0.02691650390625, 0.01282501220703125, 0.0024814605712890625, 0.01348114013671875, 0.01343536376953125, 0.01464080810546875, 0.0186004638671875, 0.04180908203125, -0.0450439453125, 0.0118560791015625, 0.018768310546875, 0.00750732421875, -0.0014743804931640625, -0.00934600830078125, -0.01406097412109375, 0.011688232421875, -0.01241302490234375, -0.031494140625, 0.03399658203125, 0.008636474609375, 0.0242767333984375, -0.0183563232421875, 0.022735595703125, -0.0015897750854492188, 0.01483917236328125, 0.02471923828125, -0.01424407958984375, -0.02008056640625, -0.00885772705078125, -0.052886962890625, -0.0257110595703125, 0.0247344970703125, -0.0274505615234375, -0.0147247314453125, -0.0189666748046875, 0.0233001708984375, 0.023468017578125, -0.024169921875, 0.020477294921875, -0.011871337890625, 0.0106964111328125, -0.0215301513671875, 0.040435791015625, 0.0249176025390625, 0.0127105712890625, -0.0302581787109375, 0.04534912109375, 0.06298828125, -0.0174560546875, 0.050994873046875, 0.01293182373046875, 0.0067901611328125, 0.007389068603515625, -0.00290679931640625, 0.01568603515625, 0.0158843994140625, -0.0672607421875, -0.010345458984375, 0.005218505859375, -0.044403076171875, 0.0193023681640625, 0.035675048828125, -0.038330078125, 0.0249786376953125, 0.0042266845703125, -0.01654052734375, 0.02508544921875, 0.0091400146484375, -0.000812530517578125, 0.018463134765625, 0.039337158203125, -0.0011425018310546875, 0.02691650390625, 0.00786590576171875, 0.034088134765625, 0.00775909423828125, 0.01398468017578125, 0.0017728805541992188, 0.0114288330078125, 0.0056610107421875, -0.05804443359375, 0.029083251953125, -0.09326171875, -0.0499267578125, 0.0274505615234375, -0.039703369140625, -0.0206146240234375, 0.0229339599609375, -0.035003662109375, 0.062255859375, 0.00583648681640625, 0.0228271484375, 0.042449951171875, -0.0183563232421875, 0.002407073974609375, -0.000606536865234375, 0.0312042236328125, -0.015899658203125, -0.0460205078125, -0.045806884765625, 0.018829345703125, 0.0275421142578125, 0.03192138671875, -0.0214080810546875, 0.0391845703125, -0.0421142578125, -0.0173492431640625, -0.025299072265625, -0.01434326171875, -0.059661865234375, 0.0249786376953125, -0.033050537109375, -0.0158538818359375, 0.0196685791015625, 0.004619598388671875, 0.0246124267578125, 0.0260009765625, 0.0094451904296875, 0.04278564453125, -0.01105499267578125, -0.01291656494140625, 0.0163116455078125, 0.0709228515625, -0.005462646484375, 0.017333984375, -0.00968170166015625, 0.01009368896484375, -0.043182373046875, -0.055450439453125, -0.03753662109375, -0.049774169921875, 0.01215362548828125, 0.0321044921875, -0.0231781005859375, -0.021575927734375, -0.056976318359375, 0.01239776611328125, 0.026092529296875, -0.0136871337890625, -0.038787841796875, 0.0134429931640625, -0.031890869140625, 0.044097900390625, -0.022430419921875, -0.01311492919921875, 0.0298919677734375, 0.0450439453125, -0.04278564453125, 0.02557373046875, -0.0111083984375, -0.04473876953125, 0.0146636962890625, 0.0243377685546875, 0.034515380859375, -0.01629638671875, -0.0292816162109375, 0.036285400390625, 0.0017805099487304688, 0.07659912109375, -0.0222015380859375, -0.01611328125, -0.0102691650390625, 0.020477294921875, -0.0146026611328125, -0.04583740234375, 0.0125579833984375, -0.015533447265625, -0.0180206298828125, -0.0640869140625, 0.04632568359375, 0.052581787109375, -0.0135498046875, -0.047943115234375, 0.045562744140625, -0.0308380126953125, -0.01531982421875, -0.0241241455078125, 0.0012416839599609375, -0.0017423629760742188, -0.0082244873046875, -0.0195465087890625, 0.0003628730773925781, -0.0246734619140625, 0.018402099609375, 0.02728271484375, -0.050018310546875, 0.052581787109375, 0.0291748046875, -0.06927490234375, 0.021728515625, 0.0033435821533203125, -0.00959014892578125, 0.01241302490234375, -0.0070953369140625, 0.02197265625, 0.051971435546875, -0.01055908203125, -0.040496826171875, -0.00643157958984375, -0.042022705078125, -0.035858154296875, -0.0225677490234375, 0.0027027130126953125, 0.0191802978515625, 0.041473388671875, 0.0838623046875, -0.003162384033203125, -0.0614013671875, -0.03851318359375, -0.0095672607421875, -0.01617431640625, -0.007404327392578125, 0.0211181640625, -0.06201171875, 0.0015516281127929688, -0.01114654541015625, -0.0302276611328125, -0.0159759521484375, 0.03369140625, -0.0552978515625, 0.00360107421875, 0.0246734619140625, -0.0003380775451660156, -0.05718994140625, 0.00888824462890625, 0.02642822265625, -0.042022705078125, -0.03326416015625, 0.00481414794921875, 0.003047943115234375, -0.0186767578125, -0.027557373046875, 0.01219940185546875, 0.0010519027709960938, -0.0203857421875, 0.0118560791015625, 0.00832366943359375, 0.028167724609375, -0.01088714599609375, -0.0184326171875, 0.018157958984375, 0.01030731201171875, -0.005496978759765625, 0.00925445556640625, 0.018524169921875, 0.023193359375, -0.03082275390625, 0.015472412109375, -0.00313568115234375, 0.041656494140625, -0.0238494873046875, 0.07269287109375, 0.02764892578125, -0.048980712890625, 0.05377197265625, -0.041839599609375, -0.0216064453125, 0.02288818359375, -0.0180511474609375, -0.07781982421875, 0.028900146484375, -0.01294708251953125, 0.0164642333984375, 0.0262451171875 ]
366bfdb2a7175f448bcae3e78af4648a1696d533
Wordpress Stackexchange Q: How to build a complex page structure Let's say i need a page structured like the image below. There is a frontpage and from there i can choose one of the sites partners. Every partner gets a additional "partner page" which has to be editable from within the dashboard. Below the description of the partner would be a list of projects the partner has done. Every project is also fully editable. Best case scenario would be a permalink structure like this: * *Partner: www.example.org/partner1 *Project: www.example.org/partner1/project-name I dont know which approach is the best for this, should i build categories or taxonomies? This all seems tedious because there will be more than 100 partners and their projects. I have build a lot of themes but never with a structure like this, so what is the best way to solve this ? (Categories, Taxonomy, CPT, some Plugin ...) A: I would not use WordPress pages nor articles for this. Simply, create a new custom post type called "Projects", with a plugin like Types, then create a new custom taxonomy "Partners" and associate it with that custom post type. Clean and easy structure.
Q: How to build a complex page structure Let's say i need a page structured like the image below. There is a frontpage and from there i can choose one of the sites partners. Every partner gets a additional "partner page" which has to be editable from within the dashboard. Below the description of the partner would be a list of projects the partner has done. Every project is also fully editable. Best case scenario would be a permalink structure like this: * *Partner: www.example.org/partner1 *Project: www.example.org/partner1/project-name I dont know which approach is the best for this, should i build categories or taxonomies? This all seems tedious because there will be more than 100 partners and their projects. I have build a lot of themes but never with a structure like this, so what is the best way to solve this ? (Categories, Taxonomy, CPT, some Plugin ...) A: I would not use WordPress pages nor articles for this. Simply, create a new custom post type called "Projects", with a plugin like Types, then create a new custom taxonomy "Partners" and associate it with that custom post type. Clean and easy structure. A: You can use page post type. * *Simple to use. *Easy to edit with page-builder tools/plugins. *The permalink structure example.com/parent-page/child-1/child-1.1 is already available. With "Categories", "Taxonomies" or "CPT", you have to register and rewrite permalink structures. A: Home - Create this as a page. Partners - Create this is a custom post type since they need single pages (something like example.com/partner/partner1). Projects - Create a taxonomy called "projects". The terms of that taxonomy will be your projects. Associate your taxonomy with the "partners" custom post type you created. This is the best way to share the same projects across partners. Edit: If you want to create a permalink structure like example.com/{partner}/{project} then you can easily do that using custom rewrite rules. add_rewrite_rule( 'partner/([A-Za-z0-9\-\_]+)/?$', 'index.php?pagename={your-template-slug}&project_slug=$matches[1]', 'top' ); Using WordPress query vars you can access the project_slug variable in your template and get the term object using get_term_by(). My proposed structure takes full advantage of how the WordPress core was designed. Doing it this way is also the most flexible way of structuring it, allowing you to easily add new templates in the future if your client requests them, whether it's an archive of all the projects, viewing projects associated to multiple specific partners, partner profiles without projects, etc. The custom rewrite rules are completely optional, btw, but you'd need them if you want your custom permalink structure and want to use this data structure. Edit: -1 points? Alright... this site has gotta be filled with amateurs.
wordpress
{ "language": "en", "length": 438, "provenance": "stackexchange_00019.jsonl.gz:467826", "question_score": "5", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/237311" }
[ -0.0021877288818359375, -0.0024585723876953125, -0.0031528472900390625, -0.02239990234375, -0.0183563232421875, 0.002887725830078125, -0.035003662109375, -0.0034236907958984375, -0.034210205078125, -0.02752685546875, 0.00939178466796875, 0.0301361083984375, -0.08502197265625, -0.052337646484375, 0.0386962890625, -0.0506591796875, 0.0229644775390625, -0.024017333984375, 0.028778076171875, -0.0158843994140625, 0.034576416015625, -0.0121307373046875, 0.033294677734375, 0.02020263671875, 0.022186279296875, -0.0274505615234375, 0.0212249755859375, -0.01331329345703125, 0.031524658203125, -0.0032024383544921875, 0.01580810546875, -0.042388916015625, 0.0000059604644775390625, -0.0086212158203125, 0.060333251953125, 0.004558563232421875, 0.0217742919921875, -0.00896453857421875, 0.028533935546875, 0.0230712890625, 0.0102386474609375, 0.01148223876953125, 0.055389404296875, 0.01410675048828125, 0.0310821533203125, -0.03338623046875, -0.01245880126953125, -0.10101318359375, 0.0208587646484375, -0.01103973388671875, 0.0031185150146484375, 0.047943115234375, 0.0171051025390625, 0.0100250244140625, -0.0207061767578125, -0.01471710205078125, 0.0438232421875, -0.0799560546875, 0.0333251953125, -0.0269317626953125, -0.02752685546875, -0.04779052734375, 0.04888916015625, -0.0007524490356445312, 0.00530242919921875, -0.0267333984375, -0.041595458984375, 0.04241943359375, 0.0089263916015625, -0.00872039794921875, 0.0009069442749023438, -0.01335906982421875, -0.0026569366455078125, -0.018890380859375, -0.031951904296875, -0.04022216796875, -0.0022735595703125, -0.0809326171875, 0.0096435546875, 0.0117645263671875, 0.0076904296875, 0.0203399658203125, -0.01203155517578125, -0.0284423828125, -0.01537322998046875, -0.0309906005859375, -0.01076507568359375, 0.011749267578125, -0.06353759765625, 0.0135955810546875, -0.0416259765625, 0.0024700164794921875, -0.01678466796875, -0.0169525146484375, -0.02642822265625, 0.01251983642578125, -0.006084442138671875, 0.0028743743896484375, -0.015625, 0.032867431640625, 0.00750732421875, -0.0390625, 0.08538818359375, -0.0426025390625, -0.006359100341796875, -0.0025005340576171875, -0.0030155181884765625, 0.0006899833679199219, 0.042572021484375, 0.0379638671875, -0.00698089599609375, 0.03143310546875, -0.0111236572265625, -0.004589080810546875, -0.0195465087890625, 0.029144287109375, -0.025390625, 0.01837158203125, -0.00988006591796875, 0.048248291015625, -0.0144500732421875, 0.009063720703125, 0.04547119140625, -0.0086212158203125, -0.00042510032653808594, 0.0199432373046875, -0.01178741455078125, -0.056365966796875, 0.013336181640625, -0.035003662109375, -0.06036376953125, 0.0220184326171875, 0.11236572265625, 0.060577392578125, 0.043792724609375, -0.0007996559143066406, 0.01161956787109375, -0.043182373046875, -0.010955810546875, -0.015655517578125, 0.0103302001953125, -0.00725555419921875, 0.0008625984191894531, -0.03009033203125, -0.01259613037109375, 0.0094146728515625, 0.034637451171875, 0.037078857421875, -0.023101806640625, -0.027374267578125, 0.0026798248291015625, 0.03887939453125, 0.0228424072265625, -0.00567626953125, 0.005184173583984375, -0.0308990478515625, -0.006565093994140625, -0.0256195068359375, 0.01436614990234375, -0.0163726806640625, 0.03082275390625, -0.0014982223510742188, 0.0092926025390625, -0.0278167724609375, -0.0287628173828125, -0.007350921630859375, -0.060089111328125, -0.00440216064453125, 0.0193939208984375, -0.0156707763671875, 0.0308990478515625, -0.0136260986328125, -0.022674560546875, 0.0006799697875976562, 0.01456451416015625, 0.0185546875, 0.02410888671875, -0.0035114288330078125, -0.002445220947265625, 0.076171875, 0.020660400390625, -0.018524169921875, 0.0262908935546875, -0.003101348876953125, -0.0572509765625, 0.04266357421875, 0.010284423828125, 0.08135986328125, 0.00417327880859375, 0.019378662109375, 0.0081787109375, 0.0007772445678710938, -0.0828857421875, 0.037139892578125, -0.0189666748046875, 0.0070343017578125, 0.00807952880859375, 0.031829833984375, -0.0128326416015625, -0.0396728515625, -0.04840087890625, 0.04541015625, -0.019805908203125, 0.05804443359375, 0.0292816162109375, 0.02215576171875, 0.00751495361328125, 0.0211944580078125, 0.002017974853515625, 0.0067596435546875, 0.0172576904296875, 0.0177154541015625, -0.01885986328125, -0.0606689453125, -0.02935791015625, 0.0290374755859375, -0.006786346435546875, -0.05267333984375, -0.0217132568359375, -0.06170654296875, 0.01318359375, 0.006988525390625, -0.01580810546875, 0.0638427734375, 0.0587158203125, -0.03009033203125, -0.0012655258178710938, -0.033966064453125, -0.00728607177734375, 0.017486572265625, -0.08984375, 0.0296478271484375, 0.0836181640625, 0.0726318359375, -0.0068206787109375, 0.010223388671875, 0.0198211669921875, -0.0205078125, -0.0166015625, 0.0028629302978515625, 0.018463134765625, 0.032806396484375, -0.0304107666015625, 0.01476287841796875, 0.01433563232421875, -0.0909423828125, -0.03961181640625, 0.03582763671875, -0.01410675048828125, 0.0418701171875, 0.0118560791015625, 0.0084075927734375, -0.00849151611328125, -0.05145263671875, -0.0200347900390625, 0.034088134765625, -0.041717529296875, 0.004436492919921875, 0.032379150390625, -0.04510498046875, -0.0007686614990234375, -0.009246826171875, 0.0032901763916015625, -0.0161895751953125, 0.043121337890625, -0.0103302001953125, 0.048126220703125, 0.033721923828125, 0.0084991455078125, -0.0198516845703125, -0.0200653076171875, -0.03302001953125, -0.0027256011962890625, 0.005092620849609375, -0.019805908203125, -0.0190887451171875, -0.0202178955078125, 0.00975799560546875, -0.0225067138671875, -0.0126800537109375, -0.028411865234375, 0.03216552734375, -0.0150604248046875, -0.0186004638671875, -0.03094482421875, -0.0224761962890625, 0.013092041015625, -0.00742340087890625, 0.0250244140625, -0.00614166259765625, 0.02801513671875, 0.003910064697265625, -0.01113128662109375, 0.0190887451171875, -0.0032176971435546875, -0.02545166015625, 0.03857421875, -0.0374755859375, 0.0303955078125, -0.037200927734375, 0.043670654296875, 0.05908203125, -0.017578125, 0.00740814208984375, -0.01326751708984375, 0.028289794921875, -0.0023860931396484375, -0.00388336181640625, -0.006793975830078125, -0.024505615234375, -0.00873565673828125, 0.0145263671875, 0.031585693359375, 0.055419921875, 0.0220184326171875, -0.043670654296875, 0.0311431884765625, 0.058135986328125, -0.0258941650390625, -0.05718994140625, -0.00106048583984375, -0.032745361328125, 0.00505828857421875, 0.004268646240234375, -0.011627197265625, -0.020050048828125, 0.035430908203125, -0.0064849853515625, -0.0179290771484375, -0.034576416015625, -0.09539794921875, -0.11566162109375, -0.09979248046875, 0.0027484893798828125, -0.0140228271484375, 0.03668212890625, 0.01041412353515625, 0.0250244140625, -0.01149749755859375, -0.076416015625, 0.004253387451171875, 0.00562286376953125, -0.01033782958984375, 0.0237579345703125, -0.021697998046875, -0.01488494873046875, 0.01384735107421875, -0.00010824203491210938, 0.0380859375, 0.00820159912109375, -0.005466461181640625, -0.0013933181762695312, -0.008087158203125, 0.0235748291015625, 0.020477294921875, -0.028656005859375, -0.005840301513671875, 0.0233001708984375, -0.0091552734375, -0.045318603515625, -0.032928466796875, 0.002407073974609375, -0.035308837890625, -0.0214080810546875, 0.015899658203125, -0.001804351806640625, -0.01111602783203125, 0.0154571533203125, -0.005237579345703125, 0.007282257080078125, 0.002620697021484375, -0.03741455078125, 0.026580810546875, -0.01251983642578125, 0.020782470703125, -0.009063720703125, 0.00894927978515625, -0.0372314453125, -0.027069091796875, -0.0202789306640625, -0.0222930908203125, -0.020843505859375, 0.01788330078125, -0.01027679443359375, -0.0625, 0.031524658203125, -0.0295867919921875, 0.0024013519287109375, -0.02435302734375, -0.0100860595703125, 0.01357269287109375, 0.0948486328125, -0.04425048828125, 0.0052490234375, 0.0124664306640625, 0.0051422119140625, -0.004451751708984375, -0.0164031982421875, -0.08221435546875, -0.014617919921875, -0.01290130615234375, 0.0008592605590820312, -0.0024929046630859375, -0.0267333984375, -0.01279449462890625, 0.0222015380859375, -0.0191497802734375, -0.0186614990234375, 0.027679443359375, 0.02593994140625, -0.039794921875, 0.026519775390625, -0.057220458984375, 0.0166778564453125, -0.0259857177734375, 0.020111083984375, -0.05645751953125, -0.0048828125, -0.02484130859375, 0.024261474609375, 0.00606536865234375, -0.01384735107421875, -0.02349853515625, 0.02911376953125, -0.0254058837890625, 0.03759765625, -0.0006833076477050781, 0.00991058349609375, 0.0408935546875, -0.0074462890625, -0.004547119140625, -0.0190887451171875, -0.016815185546875, -0.0125885009765625, 0.004055023193359375, -0.000762939453125, -0.02850341796875, -0.0207672119140625, 0.00432586669921875, -0.016845703125, -0.0750732421875, -0.0272674560546875, -0.0263671875, -0.01544189453125, 0.01058197021484375, -0.0272674560546875, -0.01226806640625, -0.060791015625, -0.003009796142578125, 0.044189453125, -0.01520538330078125, 0.0170135498046875, 0.0411376953125, 0.0199127197265625, -0.02508544921875, -0.11529541015625, 0.035491943359375, 0.03717041015625, 0.0206756591796875, 0.024505615234375, 0.01468658447265625, -0.01001739501953125, -0.0003457069396972656, 0.0286102294921875, -0.019744873046875, 0.02459716796875, 0.01169586181640625, 0.014373779296875, -0.0251312255859375, -0.0028076171875, -0.00678253173828125, -0.001667022705078125, 0.048126220703125, -0.010833740234375, 0.0016431808471679688, -0.056304931640625, 0.01081085205078125, -0.007419586181640625, 0.0136871337890625, -0.016937255859375, -0.007232666015625, 0.0100860595703125, 0.055450439453125, 0.00232696533203125, 0.00630950927734375, 0.01116180419921875, -0.0194244384765625, -0.01535797119140625, 0.0200653076171875, 0.01006317138671875, 0.00913238525390625, -0.0207366943359375, 0.031890869140625, 0.0023517608642578125, -0.003757476806640625, 0.021575927734375, -0.0011167526245117188, 0.006534576416015625, 0.00931549072265625, -0.0125732421875, -0.00927734375, -0.0098876953125, 0.006465911865234375, 0.005710601806640625, 0.037567138671875, 0.03240966796875, 0.0242156982421875, 0.0188751220703125, -0.01708984375, 0.0013875961303710938, 0.04852294921875, -0.0389404296875, -0.006923675537109375, 0.0279998779296875, -0.0298919677734375, -0.036712646484375, 0.0625, -0.01922607421875, 0.01348114013671875, 0.006134033203125, 0.055633544921875, 0.03369140625, -0.0153350830078125, -0.00382232666015625, 0.04949951171875, -0.002696990966796875, -0.0259857177734375, -0.0024662017822265625, -0.0399169921875, 0.0025787353515625, 0.02325439453125, 0.0498046875, -0.00745391845703125, -0.03497314453125, 0.011688232421875, -0.017059326171875, -0.004184722900390625, -0.00925445556640625, 0.0007596015930175781, -0.01306915283203125, 0.0021190643310546875, 0.03155517578125, 0.016632080078125, 0.00762176513671875, -0.01432037353515625, 0.0239105224609375, -0.041778564453125, 0.0208740234375, -0.0078582763671875, 0.0003695487976074219, 0.002681732177734375, 0.0032520294189453125, 0.0077972412109375, 0.0003559589385986328, 0.032867431640625, -0.1036376953125, -0.028228759765625, -0.00928497314453125, 0.0207977294921875, 0.035064697265625, -0.01146697998046875, 0.06396484375, -0.0130767822265625, -0.046905517578125, 0.0150604248046875, 0.011505126953125, 0.0143890380859375, 0.0070648193359375, -0.0234375, -0.0208740234375, -0.035308837890625, -0.0307464599609375, -0.0552978515625, -0.0157012939453125, -0.04595947265625, 0.0234832763671875, -0.0130615234375, 0.004520416259765625, -0.0002853870391845703, 0.0009927749633789062, -0.0268402099609375, 0.046051025390625, 0.0120697021484375, 0.040069580078125, -0.00611114501953125, 0.09228515625, -0.0572509765625, 0.0843505859375, 0.0012722015380859375, 0.045196533203125, -0.050201416015625, -0.0032367706298828125, 0.012451171875, -0.0845947265625, -0.051788330078125, -0.0081787109375, -0.061737060546875, 0.082275390625, 0.0484619140625, 0.0026302337646484375, 0.0145721435546875, -0.03546142578125, 0.00908660888671875, -0.0171051025390625, 0.0032444000244140625, -0.06396484375, -0.0304718017578125, 0.01422882080078125, 0.016754150390625, 0.05010986328125, -0.004299163818359375, -0.0206298828125, -0.00470733642578125, -0.00794219970703125, 0.02069091796875, -0.0000209808349609375, 0.0218963623046875, -0.035888671875, -0.018218994140625, -0.004383087158203125, 0.01959228515625, -0.016937255859375, 0.0177001953125, 0.038543701171875, 0.04034423828125, -0.00048160552978515625, -0.01458740234375, 0.054901123046875, 0.011932373046875, -0.0280303955078125, 0.00954437255859375, -0.043975830078125, 0.015380859375, 0.0251617431640625, 0.035858154296875, -0.05853271484375, 0.0298919677734375, -0.006641387939453125, 0.003814697265625, 0.053375244140625, 0.0090789794921875, 0.008331298828125, -0.00797271728515625, 0.002079010009765625, 0.03265380859375, 0.006145477294921875, -0.006450653076171875, 0.00148773193359375, -0.00983428955078125, -0.022430419921875, 0.03076171875, -0.01129150390625, 0.0013790130615234375, 0.0006279945373535156, -0.02142333984375, 0.0274505615234375, -0.037628173828125, 0.01204681396484375, -0.00501251220703125, -0.0011463165283203125, -0.033233642578125, 0.03106689453125, 0.005523681640625, 0.0244293212890625, 0.01366424560546875, -0.00980377197265625, -0.0288543701171875, 0.03167724609375, -0.043853759765625, 0.022430419921875, 0.01523590087890625, -0.042877197265625, 0.0104827880859375, -0.0218048095703125, -0.011627197265625, -0.01490020751953125, -0.048187255859375, -0.00612640380859375, -0.044891357421875, -0.0091705322265625, -0.0171051025390625, 0.00977325439453125, 0.1256103515625, -0.0279541015625, -0.033172607421875, 0.0225677490234375, -0.009735107421875, -0.0310211181640625, 0.018524169921875, -0.0004355907440185547, -0.0267486572265625, -0.0236053466796875, 0.01024627685546875, -0.030059814453125, 0.031341552734375, 0.002208709716796875, -0.04583740234375, 0.08746337890625, 0.007762908935546875, -0.002643585205078125, 0.00412750244140625, 0.047515869140625, -0.035980224609375, 0.01361083984375, -0.0433349609375, 0.0601806640625, 0.005153656005859375, 0.06414794921875, -0.015289306640625, -0.00909423828125, 0.051666259765625, 0.030029296875, 0.021575927734375, 0.01096343994140625, -0.047271728515625, -0.01390838623046875, 0.0196533203125, -0.002178192138671875, -0.006328582763671875, 0.051666259765625, -0.01470947265625, 0.018463134765625, 0.0107879638671875, -0.005054473876953125, 0.02215576171875, 0.0151824951171875, -0.05950927734375, 0.008026123046875, 0.01270294189453125, 0.0088043212890625, -0.0010499954223632812, -0.022735595703125, -0.014129638671875, 0.0025959014892578125, 0.0183258056640625, 0.01104736328125, 0.01045989990234375, 0.01090240478515625, 0.033782958984375, -0.061248779296875, 0.031951904296875, -0.041107177734375, 0.058074951171875, -0.01605224609375, 0.04998779296875, 0.0261077880859375, 0.02294921875, 0.0182952880859375, 0.0143585205078125, 0.032073974609375, 0.035736083984375, -0.03472900390625, 0.050537109375, 0.01479339599609375, 0.00868988037109375, -0.06494140625, -0.0335693359375, 0.053070068359375, 0.08502197265625, -0.043670654296875, -0.031890869140625, 0.001506805419921875, 0.007762908935546875, 0.02606201171875, 0.00623321533203125, 0.0379638671875, 0.06097412109375, 0.0640869140625, -0.024810791015625, -0.0294952392578125, -0.00785064697265625, 0.014404296875, -0.030853271484375, -0.08270263671875, 0.041534423828125, 0.01708984375, -0.051910400390625, 0.020263671875, 0.0152740478515625, 0.04608154296875, 0.0273895263671875, 0.038116455078125, 0.022003173828125, -0.029754638671875, 0.0404052734375, -0.0266265869140625, 0.01438140869140625, -0.0469970703125, 0.00974273681640625, -0.038970947265625, 0.0305328369140625, 0.0185546875, 0.02630615234375, 0.033721923828125, 0.00794219970703125, 0.0208282470703125, 0.04083251953125, 0.003509521484375, 0.037933349609375, -0.00606536865234375, -0.002208709716796875, -0.0275115966796875, 0.010772705078125, 0.029937744140625, -0.01511383056640625, -0.01140594482421875, -0.00260162353515625, 0.046356201171875, -0.004482269287109375, -0.007648468017578125, 0.0118560791015625, -0.01294708251953125, 0.0194244384765625, -0.0440673828125, -0.00598907470703125, -0.01297760009765625, -0.062347412109375, -0.0009503364562988281, -0.05047607421875, -0.055206298828125, 0.052734375, 0.054840087890625, 0.01611328125, -0.0291290283203125, 0.00807952880859375, -0.000865936279296875, -0.0255126953125, 0.00800323486328125, 0.0007843971252441406, 0.0567626953125, 0.054168701171875, 0.0416259765625, -0.030609130859375, -0.01519775390625, -0.01422119140625, 0.02740478515625, 0.054656982421875, 0.0758056640625, -0.013519287109375, 0.046173095703125, -0.0027751922607421875, 0.009246826171875, 0.0089569091796875, -0.0159759521484375, 0.0635986328125, 0.033203125, 0.0032501220703125, -0.032073974609375, 0.035919189453125, -0.0190277099609375, 0.04534912109375, -0.077392578125, -0.039886474609375, -0.012542724609375, 0.033233642578125, -0.0059967041015625, 0.00463104248046875, -0.021209716796875, -0.040313720703125, -0.03314208984375, -0.003971099853515625, 0.01153564453125, 0.01418304443359375, -0.037506103515625, -0.003360748291015625, 0.0158843994140625, -0.00937652587890625, 0.0184326171875, -0.001361846923828125, 0.0225067138671875, 0.0225372314453125, 0.010833740234375, -0.059112548828125, 0.0228729248046875, -0.00626373291015625, 0.0095672607421875, -0.00261688232421875, 0.059326171875, 0.0243377685546875, -0.052001953125, 0.0030803680419921875, 0.0196075439453125, 0.0292816162109375, -0.0281219482421875, 0.0038604736328125, 0.005573272705078125, -0.012603759765625, 0.025360107421875, 0.0209197998046875, -0.0214080810546875, -0.0231475830078125, 0.011810302734375, -0.01253509521484375, 0.0183868408203125, -0.0318603515625, -0.006679534912109375, -0.016937255859375, 0.04010009765625, -0.00539398193359375, -0.008270263671875, 0.0019073486328125, -0.0262451171875, -0.01084136962890625, 0.00858306884765625, -0.00023651123046875, 0.004108428955078125, 0.01336669921875, -0.0145721435546875, 0.0006918907165527344, -0.02606201171875, -0.0042724609375, 0.0020580291748046875, 0.0130157470703125, 0.033172607421875, -0.0054473876953125, -0.014739990234375, 0.00006520748138427734, -0.0031528472900390625, 0.06390380859375, -0.0242462158203125, -0.0279693603515625, 0.007640838623046875, -0.003314971923828125, 0.003993988037109375, -0.0037288665771484375, 0.004058837890625, -0.00923919677734375, 0.0008530616760253906, -0.02227783203125, -0.007305145263671875, 0.01119232177734375, -0.05364990234375, -0.08050537109375, 0.08966064453125, -0.01544189453125, -0.0254058837890625, -0.064453125, -0.0023250579833984375, -0.0179290771484375, 0.0302886962890625, -0.0257720947265625, -0.006931304931640625, -0.00972747802734375, 0.047882080078125, 0.0034236907958984375, 0.048736572265625, 0.01137542724609375, -0.02801513671875, -0.0171051025390625, -0.013671875, -0.01201629638671875, 0.00446319580078125, 0.03466796875, -0.01169586181640625, 0.0287628173828125, 0.01213836669921875, -0.0611572265625, -0.0006837844848632812, -0.034088134765625, 0.007354736328125, 0.005214691162109375, -0.037445068359375, -0.0153350830078125, -0.00897979736328125, 0.0396728515625, 0.0062408447265625, 0.0090484619140625, -0.0213470458984375, 0.032501220703125, -0.0015344619750976562, -0.0418701171875, -0.02069091796875, 0.015472412109375, -0.037078857421875, -0.016387939453125, -0.0172576904296875, 0.0123443603515625, -0.01410675048828125, -0.003993988037109375, -0.00337982177734375, 0.0070343017578125, 0.03509521484375, -0.0025787353515625, -0.007904052734375, 0.0040130615234375, 0.034820556640625, -0.03570556640625, -0.048004150390625, 0.0021877288818359375, -0.004795074462890625, -0.02423095703125, -0.019195556640625, -0.041748046875, 0.00887298583984375, -0.048919677734375, 0.042572021484375, -0.036163330078125, 0.01371002197265625, -0.04901123046875, 0.01296234130859375, -0.00980377197265625, 0.045440673828125, 0.0018863677978515625, 0.033172607421875, -0.054443359375, 0.09283447265625, 0.023284912109375, 0.07867431640625, 0.005397796630859375, -0.0285797119140625, -0.0283203125, 0.046630859375, -0.0291748046875, -0.015289306640625, -0.00024890899658203125, -0.049774169921875, -0.00556182861328125, -0.01462554931640625, -0.0179443359375, -0.040496826171875, 0.0232086181640625, -0.0248870849609375, -0.010101318359375, 0.0226898193359375 ]
305641104d3c049400e0c024df1e3a71aae07c14
Wordpress Stackexchange Q: List All Post Types in Admin view using /wp-admin/edit.php?post_type= I have successfully created a custom post type. I'm trying to construct a URL which points to a combined listing of posts of all post types on the view all posts page in the admin view. I can construct a URL which points to posts of specific post types, eg http://<mysite>//wp-admin/edit.php?post_type=my_post_type. But I can't find a way of listing posts of all post types. Is it possible to use the /wp-admin/edit.php?post_type= slug to point to a page listing posts of all post types? Or, how else can I build a URL which will? A: The only way this could work would be ?post_type=any based on WP_Query post_type params. But the context is the problem, the edit.php page requires a specific post type, to display and edit only one $post_type_object which returns, for each post_type, only one singular label, one plural label and so many others individual properties. These are not only technical blocking problems but also conceptual ones which make this impossible to be done. Personally, I would research on "How to build a custom admin page" with a query like post_type=any
Q: List All Post Types in Admin view using /wp-admin/edit.php?post_type= I have successfully created a custom post type. I'm trying to construct a URL which points to a combined listing of posts of all post types on the view all posts page in the admin view. I can construct a URL which points to posts of specific post types, eg http://<mysite>//wp-admin/edit.php?post_type=my_post_type. But I can't find a way of listing posts of all post types. Is it possible to use the /wp-admin/edit.php?post_type= slug to point to a page listing posts of all post types? Or, how else can I build a URL which will? A: The only way this could work would be ?post_type=any based on WP_Query post_type params. But the context is the problem, the edit.php page requires a specific post type, to display and edit only one $post_type_object which returns, for each post_type, only one singular label, one plural label and so many others individual properties. These are not only technical blocking problems but also conceptual ones which make this impossible to be done. Personally, I would research on "How to build a custom admin page" with a query like post_type=any A: You could use pre_get_posts with a $_GET parameter and piggyback on the current post type - for example, say we're viewing all editable posts in the admin panel, we can add a parameter showall=true and show all post types: /** * Show all post editable post types * * @param WP_Query Object $query * * @return void */ function show_all_posttypes( $query ) { if( ! is_admin() ) { return; } if( isset( $_GET, $_GET['showall'] ) && true == $_GET['showall'] ) { $query->set( 'post_type', 'any' ); } } add_filter( 'pre_get_posts', 'show_all_posttypes' ); If you want to limit the post types by some way or another you can use get_post_types() function and pass the returned post types into the post_type parameter as an array(). We can even add this as a subpage admin link for ease of access: /** * Show All Post Types Link * - Subpage of "All Pages" * * @return void */ function show_all_posttypes_link() { add_submenu_page('edit.php?post_type=page', '', 'All Post Types', 'edit_posts', '/edit.php?post_type=page&showall=true'); } add_action( 'admin_menu', 'show_all_posttypes_link' ); You could keep extending this on and on to customize the column outputs and such but this is the gist of it.
wordpress
{ "language": "en", "length": 384, "provenance": "stackexchange_00019.jsonl.gz:467882", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/237530" }
[ 0.054107666015625, -0.0024814605712890625, 0.0201416015625, -0.0311431884765625, 0.0070037841796875, -0.023651123046875, 0.05657958984375, -0.0105133056640625, -0.022430419921875, -0.006145477294921875, 0.02972412109375, -0.0244903564453125, -0.0285797119140625, -0.057403564453125, 0.025909423828125, -0.03594970703125, 0.018768310546875, -0.00823974609375, 0.026031494140625, -0.018646240234375, 0.02020263671875, -0.0227813720703125, 0.047454833984375, 0.013824462890625, 0.0218505859375, 0.0013799667358398438, 0.047088623046875, -0.012054443359375, 0.017303466796875, -0.00443267822265625, 0.01371002197265625, -0.0218658447265625, 0.00909423828125, 0.00919342041015625, 0.020294189453125, -0.011871337890625, 0.040283203125, -0.01497650146484375, 0.0305328369140625, 0.0018310546875, 0.017303466796875, -0.0089569091796875, 0.024505615234375, 0.0419921875, -0.0264892578125, -0.022491455078125, 0.0009369850158691406, -0.0301666259765625, 0.0182037353515625, -0.038604736328125, -0.007045745849609375, -0.00836944580078125, 0.00879669189453125, -0.032012939453125, -0.0203704833984375, -0.0013523101806640625, 0.0214385986328125, -0.04132080078125, 0.0292816162109375, -0.04339599609375, -0.0206756591796875, -0.017578125, 0.040771484375, 0.0128173828125, -0.0308380126953125, 0.004970550537109375, 0.019805908203125, 0.0040435791015625, -0.032623291015625, -0.034423828125, 0.0226593017578125, -0.0088958740234375, 0.0165252685546875, 0.00494384765625, 0.0077972412109375, -0.04278564453125, 0.02374267578125, 0.017730712890625, 0.010223388671875, 0.01531982421875, 0.049072265625, -0.0006527900695800781, -0.01568603515625, -0.00843048095703125, 0.007053375244140625, -0.00980377197265625, 0.0022430419921875, -0.0184783935546875, -0.02911376953125, -0.0236358642578125, -0.0277862548828125, -0.03839111328125, -0.04473876953125, 0.01190948486328125, 0.0201568603515625, -0.031585693359375, 0.005523681640625, -0.002529144287109375, 0.021728515625, 0.03076171875, -0.01279449462890625, -0.035858154296875, 0.046112060546875, -0.036407470703125, 0.038818359375, 0.04583740234375, -0.021636962890625, 0.0386962890625, 0.08331298828125, 0.0160369873046875, 0.0228729248046875, 0.044464111328125, -0.060638427734375, 0.0225677490234375, -0.0289459228515625, 0.019195556640625, -0.08270263671875, -0.016510009765625, -0.03717041015625, 0.01551055908203125, 0.01558685302734375, 0.0237579345703125, 0.047576904296875, -0.004364013671875, -0.0286407470703125, -0.01470184326171875, -0.0174102783203125, -0.0726318359375, 0.03167724609375, -0.00948333740234375, -0.040740966796875, 0.01806640625, 0.0430908203125, 0.01837158203125, 0.00775909423828125, -0.0144195556640625, -0.0187835693359375, -0.026458740234375, -0.0168304443359375, 0.0141754150390625, 0.01947021484375, -0.0235137939453125, 0.0024662017822265625, 0.01273345947265625, -0.004581451416015625, 0.044097900390625, 0.0150146484375, -0.01383209228515625, -0.00763702392578125, -0.0306243896484375, -0.039642333984375, -0.01541900634765625, 0.036346435546875, 0.00563812255859375, -0.00798797607421875, -0.0257415771484375, 0.0645751953125, -0.041107177734375, -0.0248870849609375, -0.051605224609375, 0.01001739501953125, -0.00489044189453125, 0.040313720703125, -0.005298614501953125, -0.01474761962890625, 0.004756927490234375, -0.0640869140625, -0.0142059326171875, 0.018890380859375, -0.024932861328125, 0.039642333984375, -0.01149749755859375, 0.025299072265625, 0.0230712890625, 0.00913238525390625, 0.000011026859283447266, -0.0083465576171875, -0.0290985107421875, 0.028839111328125, 0.04034423828125, -0.00960540771484375, -0.02587890625, -0.0099334716796875, 0.020233154296875, -0.058807373046875, 0.02197265625, 0.022674560546875, 0.03216552734375, 0.016021728515625, 0.011199951171875, 0.05718994140625, 0.01541900634765625, -0.01006317138671875, 0.01959228515625, -0.023834228515625, -0.01277923583984375, -0.03448486328125, 0.0134429931640625, -0.046142578125, 0.01495361328125, -0.01395416259765625, 0.01314544677734375, -0.006374359130859375, 0.037506103515625, -0.00539398193359375, 0.0188751220703125, -0.0025234222412109375, 0.0311279296875, 0.0068817138671875, 0.0190887451171875, 0.0221405029296875, 0.015289306640625, -0.04718017578125, -0.01094818115234375, -0.01396942138671875, 0.0233917236328125, 0.00876617431640625, 0.0270538330078125, -0.0172882080078125, 0.01274871826171875, -0.01995849609375, -0.020782470703125, -0.0238494873046875, 0.030029296875, 0.033477783203125, 0.0143280029296875, -0.01148223876953125, -0.0016946792602539062, 0.0216827392578125, 0.039520263671875, -0.06280517578125, -0.0013895034790039062, 0.01381683349609375, 0.0272369384765625, -0.050140380859375, -0.030609130859375, -0.0176544189453125, -0.0218963623046875, 0.0257568359375, 0.052490234375, 0.030426025390625, 0.0144195556640625, -0.00923919677734375, 0.001056671142578125, 0.03277587890625, -0.019134521484375, 0.024383544921875, -0.0188446044921875, -0.00899505615234375, 0.060455322265625, 0.004425048828125, 0.039642333984375, 0.0033512115478515625, -0.004093170166015625, -0.010833740234375, 0.049224853515625, 0.0293121337890625, 0.03228759765625, -0.00792694091796875, 0.01003265380859375, -0.021209716796875, -0.00516510009765625, -0.01508331298828125, 0.0066375732421875, 0.0404052734375, 0.03204345703125, 0.057769775390625, 0.045654296875, -0.0352783203125, 0.01290130615234375, 0.01026153564453125, 0.0163421630859375, -0.006927490234375, 0.01018524169921875, 0.0251922607421875, -0.041351318359375, -0.029083251953125, 0.018585205078125, -0.0252685546875, -0.01009368896484375, -0.0197296142578125, 0.009674072265625, -0.023895263671875, -0.0147247314453125, 0.013397216796875, -0.060455322265625, 0.00006985664367675781, 0.0023899078369140625, -0.01282501220703125, -0.00901031494140625, 0.022125244140625, -0.007843017578125, -0.034332275390625, 0.0109710693359375, -0.007381439208984375, -0.021881103515625, 0.00957489013671875, -0.09210205078125, 0.0645751953125, -0.06396484375, 0.08343505859375, 0.09039306640625, -0.0260009765625, 0.0308074951171875, -0.00911712646484375, 0.0139312744140625, -0.015625, 0.0248260498046875, -0.0037593841552734375, -0.035308837890625, -0.02508544921875, -0.00778961181640625, 0.023773193359375, 0.063720703125, 0.02099609375, -0.0243377685546875, 0.03955078125, 0.05865478515625, -0.002849578857421875, -0.030426025390625, 0.033721923828125, -0.051544189453125, -0.01282501220703125, -0.038909912109375, -0.0305328369140625, 0.00901031494140625, -0.0312347412109375, -0.01476287841796875, -0.0014057159423828125, 0.00695037841796875, -0.049560546875, -0.0254669189453125, -0.05963134765625, -0.047393798828125, -0.0199127197265625, -0.00586700439453125, 0.013336181640625, 0.0633544921875, 0.0160675048828125, -0.0570068359375, 0.03387451171875, 0.05712890625, -0.0053863525390625, 0.028106689453125, 0.00952911376953125, -0.0216522216796875, 0.0556640625, -0.0099029541015625, 0.0162353515625, 0.060882568359375, -0.0301666259765625, -0.011383056640625, -0.00975799560546875, -0.004741668701171875, 0.038909912109375, -0.0004208087921142578, -0.00896453857421875, 0.03277587890625, 0.039794921875, -0.024627685546875, 0.0006885528564453125, -0.01010894775390625, -0.019256591796875, 0.0484619140625, 0.01189422607421875, -0.0225677490234375, -0.0018758773803710938, 0.023681640625, 0.0171661376953125, 0.01186370849609375, 0.0186920166015625, -0.024322509765625, 0.004322052001953125, -0.003963470458984375, 0.025299072265625, -0.0225830078125, 0.01203155517578125, -0.007221221923828125, 0.0244903564453125, 0.0139923095703125, 0.0007257461547851562, 0.005817413330078125, 0.012664794921875, 0.00446319580078125, -0.068359375, 0.06231689453125, -0.0173492431640625, 0.0128936767578125, -0.05865478515625, -0.034820556640625, -0.0225982666015625, 0.10711669921875, -0.027984619140625, -0.006038665771484375, -0.0264434814453125, 0.016021728515625, -0.041656494140625, -0.0662841796875, -0.04437255859375, 0.005702972412109375, -0.06951904296875, 0.02728271484375, -0.01275634765625, -0.0156402587890625, -0.0209808349609375, 0.025726318359375, -0.043060302734375, -0.0455322265625, 0.033905029296875, -0.043182373046875, 0.0023403167724609375, 0.0162811279296875, -0.0117340087890625, -0.0222625732421875, -0.033416748046875, -0.0189208984375, -0.0777587890625, -0.0126800537109375, 0.0128173828125, 0.052703857421875, -0.00801849365234375, -0.0212249755859375, -0.00661468505859375, 0.05352783203125, 0.0086517333984375, 0.002925872802734375, -0.00579071044921875, 0.0052032470703125, -0.0426025390625, -0.0164947509765625, -0.0226593017578125, -0.041778564453125, -0.054290771484375, -0.034698486328125, -0.0013704299926757812, -0.0055999755859375, -0.0114288330078125, -0.0308380126953125, 0.0023040771484375, -0.0000883936882019043, -0.0188751220703125, -0.018218994140625, -0.04266357421875, 0.026763916015625, -0.0137176513671875, -0.01091766357421875, -0.045318603515625, -0.0732421875, 0.0309600830078125, 0.0325927734375, -0.010284423828125, 0.006683349609375, 0.0455322265625, 0.01557159423828125, -0.04150390625, -0.06195068359375, -0.0234527587890625, 0.023712158203125, -0.032958984375, 0.0731201171875, 0.041656494140625, 0.0106658935546875, 0.0157623291015625, 0.0027217864990234375, -0.0264434814453125, 0.00867462158203125, 0.025634765625, 0.0156097412109375, -0.03619384765625, 0.0171966552734375, -0.0229949951171875, 0.037109375, 0.04071044921875, -0.004474639892578125, -0.02996826171875, -0.022125244140625, 0.05712890625, -0.019012451171875, 0.0310821533203125, -0.043701171875, -0.02880859375, 0.0253448486328125, 0.005321502685546875, 0.01148223876953125, -0.00168609619140625, -0.00597381591796875, 0.003971099853515625, -0.0227508544921875, 0.0125274658203125, 0.043426513671875, 0.057861328125, 0.001377105712890625, 0.0240936279296875, 0.03717041015625, -0.01313018798828125, -0.007595062255859375, -0.00734710693359375, 0.006397247314453125, -0.0226898193359375, -0.06365966796875, 0.034088134765625, -0.018951416015625, 0.01544952392578125, 0.0291900634765625, -0.0006823539733886719, 0.01294708251953125, 0.04595947265625, 0.033660888671875, -0.0006742477416992188, -0.007495880126953125, 0.03277587890625, -0.018096923828125, 0.0367431640625, 0.042144775390625, -0.01800537109375, 0.017974853515625, 0.058074951171875, -0.0062255859375, 0.033843994140625, -0.000408172607421875, 0.0487060546875, 0.02606201171875, 0.0266876220703125, 0.02142333984375, 0.0243988037109375, -0.01763916015625, 0.0004584789276123047, -0.0396728515625, -0.023590087890625, 0.02801513671875, 0.004566192626953125, 0.028717041015625, 0.021881103515625, -0.0285186767578125, 0.007640838623046875, -0.043701171875, -0.018096923828125, 0.03668212890625, 0.03802490234375, -0.0384521484375, -0.0285491943359375, -0.0012388229370117188, 0.029083251953125, 0.004291534423828125, -0.0355224609375, 0.03057861328125, -0.038818359375, 0.0296783447265625, -0.0200653076171875, -0.03070068359375, 0.0184783935546875, 0.01346588134765625, -0.0384521484375, -0.0270538330078125, -0.00243377685546875, -0.022705078125, 0.00061798095703125, 0.003536224365234375, -0.022369384765625, 0.0229339599609375, 0.005901336669921875, 0.022216796875, -0.00005996227264404297, -0.044830322265625, 0.02764892578125, 0.006988525390625, 0.040740966796875, -0.006740570068359375, 0.0016889572143554688, 0.017303466796875, -0.05926513671875, -0.0321044921875, -0.0204315185546875, -0.0526123046875, -0.034942626953125, -0.0198516845703125, -0.0013780593872070312, 0.00748443603515625, -0.0146331787109375, -0.0285186767578125, -0.011566162109375, 0.02069091796875, 0.022186279296875, 0.01375579833984375, 0.0001760721206665039, 0.058746337890625, -0.034088134765625, 0.05426025390625, -0.0106353759765625, 0.0161285400390625, -0.018890380859375, -0.0103607177734375, 0.001911163330078125, -0.05181884765625, -0.01383209228515625, -0.01502227783203125, 0.00787353515625, 0.0241851806640625, 0.019561767578125, 0.005359649658203125, 0.00954437255859375, -0.0229034423828125, -0.0010538101196289062, -0.041473388671875, 0.0304412841796875, -0.02978515625, 0.036224365234375, -0.035736083984375, 0.00844573974609375, 0.0175323486328125, -0.0215301513671875, -0.0126190185546875, -0.0174713134765625, 0.0015411376953125, -0.00324249267578125, -0.01352691650390625, -0.03570556640625, 0.03564453125, 0.07672119140625, 0.0257110595703125, 0.06585693359375, 0.006977081298828125, 0.033935546875, 0.0428466796875, -0.0287322998046875, -0.0052947998046875, -0.0182342529296875, 0.0303802490234375, -0.00839996337890625, -0.02984619140625, 0.040863037109375, -0.032440185546875, 0.00550079345703125, 0.0640869140625, 0.052032470703125, -0.1136474609375, 0.02532958984375, 0.031402587890625, 0.0250091552734375, 0.0236053466796875, -0.004039764404296875, -0.01348114013671875, -0.0234527587890625, -0.0033588409423828125, -0.0201416015625, -0.0435791015625, -0.02618408203125, -0.006343841552734375, -0.003070831298828125, -0.0051727294921875, 0.043121337890625, -0.003448486328125, 0.009429931640625, -0.0285491943359375, -0.00865936279296875, -0.00754547119140625, -0.0015506744384765625, 0.01143646240234375, -0.026336669921875, -0.022918701171875, -0.0323486328125, 0.0035400390625, -0.0280609130859375, -0.01366424560546875, 0.0156097412109375, 0.03399658203125, -0.02069091796875, 0.047698974609375, -0.01413726806640625, 0.014373779296875, 0.0256195068359375, -0.0623779296875, -0.045166015625, -0.03448486328125, -0.04315185546875, 0.0204925537109375, 0.0269622802734375, 0.0187225341796875, -0.00827789306640625, -0.017791748046875, -0.0048828125, 0.00955963134765625, 0.09765625, -0.0306854248046875, -0.0220184326171875, 0.039764404296875, 0.00521087646484375, -0.0159759521484375, 0.0140838623046875, -0.044647216796875, -0.04193115234375, -0.0299530029296875, -0.0189361572265625, -0.045928955078125, 0.0197906494140625, 0.00861358642578125, -0.047698974609375, 0.06988525390625, -0.03857421875, 0.0243072509765625, 0.036834716796875, 0.0201416015625, -0.0038242340087890625, 0.009765625, -0.037506103515625, 0.03857421875, 0.0009160041809082031, 0.035400390625, -0.0665283203125, -0.022857666015625, -0.0165863037109375, 0.0419921875, 0.042938232421875, 0.006397247314453125, -0.07025146484375, 0.0227813720703125, 0.0897216796875, 0.0193328857421875, 0.030242919921875, 0.05694580078125, 0.01953125, 0.0166778564453125, 0.06951904296875, 0.0017824172973632812, 0.021728515625, 0.032958984375, 0.0026073455810546875, 0.0518798828125, 0.00594329833984375, 0.01800537109375, 0.0244140625, -0.03875732421875, -0.033843994140625, 0.016448974609375, 0.030853271484375, -0.0214691162109375, 0.016510009765625, 0.0208740234375, 0.0374755859375, -0.047607421875, 0.016021728515625, -0.033599853515625, 0.058349609375, -0.00836181640625, -0.00682830810546875, -0.0171661376953125, -0.01247406005859375, 0.034210205078125, -0.0164642333984375, -0.025115966796875, 0.02630615234375, 0.01326751708984375, 0.0557861328125, 0.032257080078125, 0.0174560546875, -0.055023193359375, -0.01274871826171875, 0.058349609375, 0.0703125, -0.050079345703125, -0.09259033203125, 0.005367279052734375, 0.005474090576171875, 0.0220794677734375, 0.06829833984375, 0.05059814453125, 0.0152740478515625, 0.0682373046875, -0.03778076171875, 0.012420654296875, 0.013641357421875, 0.03515625, -0.02276611328125, -0.043487548828125, -0.033111572265625, 0.015869140625, -0.06201171875, -0.006504058837890625, 0.035491943359375, 0.0706787109375, 0.034515380859375, 0.041412353515625, 0.005207061767578125, -0.0298309326171875, 0.011322021484375, -0.01165771484375, -0.024322509765625, -0.018402099609375, -0.0089569091796875, -0.034881591796875, -0.0017375946044921875, 0.0238189697265625, 0.06036376953125, 0.013275146484375, 0.056365966796875, 0.0278778076171875, -0.007442474365234375, 0.01065826416015625, 0.03948974609375, -0.009918212890625, -0.01335906982421875, -0.0094451904296875, -0.028564453125, 0.006336212158203125, -0.019775390625, 0.0053863525390625, 0.0244293212890625, 0.004833221435546875, 0.00966644287109375, 0.028961181640625, 0.01114654541015625, -0.01055908203125, 0.035552978515625, -0.0124053955078125, 0.042449951171875, 0.0295867919921875, -0.08563232421875, -0.039093017578125, -0.0158538818359375, -0.03851318359375, 0.05670166015625, 0.058807373046875, -0.01068878173828125, -0.0030078887939453125, -0.01788330078125, 0.01143646240234375, -0.016326904296875, 0.00490570068359375, 0.0012912750244140625, -0.0270233154296875, 0.02587890625, -0.0164794921875, -0.06536865234375, -0.031768798828125, -0.01554107666015625, 0.004856109619140625, 0.0026302337646484375, 0.0677490234375, -0.00344085693359375, -0.0010471343994140625, -0.0035762786865234375, 0.051849365234375, -0.052703857421875, -0.0105743408203125, 0.0181732177734375, -0.0147247314453125, 0.025848388671875, 0.006809234619140625, -0.0100250244140625, -0.0014505386352539062, 0.05352783203125, -0.0556640625, 0.0010852813720703125, -0.001239776611328125, 0.0194854736328125, -0.049957275390625, 0.0067138671875, -0.0311126708984375, -0.0174560546875, -0.02276611328125, -0.0105438232421875, 0.01110076904296875, -0.003978729248046875, 0.0038166046142578125, 0.0616455078125, 0.00818634033203125, -0.03851318359375, 0.031829833984375, -0.0633544921875, 0.054656982421875, 0.03973388671875, 0.0151519775390625, -0.0037555694580078125, 0.0294952392578125, -0.0033111572265625, 0.0169525146484375, 0.0244293212890625, 0.021575927734375, 0.020599365234375, 0.00562286376953125, -0.006237030029296875, 0.00955963134765625, 0.04962158203125, -0.00446319580078125, 0.0186920166015625, -0.0216827392578125, -0.005306243896484375, 0.0021305084228515625, 0.0029163360595703125, -0.046112060546875, -0.032440185546875, 0.00496673583984375, -0.0020999908447265625, 0.01442718505859375, -0.042572021484375, -0.0316162109375, -0.01214599609375, 0.0301513671875, -0.007171630859375, -0.0423583984375, 0.03863525390625, -0.0465087890625, 0.007137298583984375, -0.017578125, -0.016815185546875, 0.01947021484375, 0.046112060546875, -0.013702392578125, 0.00946044921875, -0.0171966552734375, -0.0221405029296875, -0.0035858154296875, 0.0313720703125, 0.031280517578125, -0.041595458984375, -0.046478271484375, 0.027191162109375, 0.0380859375, 0.06195068359375, 0.042205810546875, -0.0171661376953125, 0.00701141357421875, 0.0136260986328125, -0.0295562744140625, -0.0892333984375, 0.0088043212890625, -0.06378173828125, 0.010650634765625, 0.01175689697265625, 0.01561737060546875, 0.04736328125, -0.0185089111328125, -0.066162109375, 0.055267333984375, -0.0167236328125, -0.0338134765625, -0.05633544921875, -0.0005578994750976562, 0.02398681640625, -0.0075225830078125, -0.02276611328125, -0.00766754150390625, -0.06317138671875, 0.00433349609375, 0.00998687744140625, 0.03106689453125, 0.007495880126953125, 0.011077880859375, -0.037750244140625, 0.0214691162109375, 0.0037403106689453125, 0.01258087158203125, 0.01401519775390625, -0.02606201171875, 0.0215301513671875, 0.0183868408203125, -0.045684814453125, -0.048095703125, -0.018341064453125, -0.00838470458984375, -0.0010099411010742188, -0.0195770263671875, -0.078857421875, -0.055908203125, 0.07666015625, 0.0509033203125, 0.037506103515625, -0.005908966064453125, -0.01035308837890625, -0.04052734375, -0.064453125, -0.031646728515625, 0.036102294921875, -0.05291748046875, 0.005950927734375, -0.005283355712890625, -0.00421142578125, -0.00524139404296875, -0.0003421306610107422, -0.0019273757934570312, 0.0029773712158203125, 0.031982421875, 0.0006070137023925781, -0.00812530517578125, 0.06243896484375, -0.023956298828125, -0.003589630126953125, -0.00795745849609375, -0.033050537109375, -0.0016689300537109375, -0.0159912109375, -0.060089111328125, -0.03778076171875, -0.04095458984375, 0.031585693359375, 0.049163818359375, -0.0189971923828125, 0.01255035400390625, -0.0145263671875, 0.00838470458984375, -0.034637451171875, 0.02728271484375, 0.001758575439453125, 0.01824951171875, -0.020721435546875, 0.0777587890625, 0.04071044921875, 0.0367431640625, 0.01213836669921875, 0.030426025390625, -0.01517486572265625, 0.055694580078125, 0.0026264190673828125, -0.03802490234375, 0.01837158203125, -0.040008544921875, -0.0122528076171875, -0.0026702880859375, -0.0223236083984375, -0.04150390625, 0.003818511962890625, 0.042266845703125, -0.0167388916015625, 0.0206756591796875 ]
2bb2938e30453db1ca26c6f8eac61a32a65b86cb
Wordpress Stackexchange Q: How to add a CSS class to every image in a Custom Post Type I'm trying to add a CSS class to every image in a custom post type. I've found this answer, to add a class to every image in general: function add_image_class($class){ $class .= ' additional-class'; return $class; } add_filter('get_image_tag_class','add_image_class'); How would I build on this, so that it only applies to a custom post type? A: Combining the answer here by @cjcj with the code in this answer, the code that works for me outside the loop, in functions.php is: // Add ability to check for custom post type outside the loop. function is_post_type($type){ global $wp_query; if($type == get_post_type($wp_query->post->ID)) return true; return false; } // Add class to every image in 'wpse' custom post type. function add_image_class($class){ if ('wpse' == is_post_type()){ $class .= ' additional-class'; } return $class; } add_filter('get_image_tag_class','add_image_class');
Q: How to add a CSS class to every image in a Custom Post Type I'm trying to add a CSS class to every image in a custom post type. I've found this answer, to add a class to every image in general: function add_image_class($class){ $class .= ' additional-class'; return $class; } add_filter('get_image_tag_class','add_image_class'); How would I build on this, so that it only applies to a custom post type? A: Combining the answer here by @cjcj with the code in this answer, the code that works for me outside the loop, in functions.php is: // Add ability to check for custom post type outside the loop. function is_post_type($type){ global $wp_query; if($type == get_post_type($wp_query->post->ID)) return true; return false; } // Add class to every image in 'wpse' custom post type. function add_image_class($class){ if ('wpse' == is_post_type()){ $class .= ' additional-class'; } return $class; } add_filter('get_image_tag_class','add_image_class'); A: The function get_post_type returns the type of the current post, so supposing you want to add this class only to a post type called 'wpse' you should include a conditional like this: function wpse237573_add_image_class($class){ if ('wpse' == get_post_type()) $class .= ' additional-class'; return $class; } add_filter('get_image_tag_class','wpse237573_add_image_class');
wordpress
{ "language": "en", "length": 191, "provenance": "stackexchange_00019.jsonl.gz:467895", "question_score": "4", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/237573" }
[ 0.09320068359375, 0.0005354881286621094, 0.013824462890625, -0.044342041015625, 0.059326171875, -0.0469970703125, 0.08807373046875, -0.0103759765625, -0.0259857177734375, -0.00791168212890625, -0.047637939453125, 0.032196044921875, -0.0323486328125, -0.0193328857421875, 0.037841796875, -0.04156494140625, 0.044158935546875, -0.014068603515625, 0.05267333984375, 0.0015268325805664062, 0.015106201171875, 0.0245208740234375, 0.044677734375, 0.01461029052734375, -0.0168609619140625, 0.00957489013671875, 0.07818603515625, -0.01239776611328125, 0.0067291259765625, 0.0019168853759765625, 0.00919342041015625, -0.022369384765625, 0.01465606689453125, 0.02593994140625, -0.0205078125, 0.03497314453125, 0.007442474365234375, -0.00005060434341430664, 0.0010471343994140625, 0.01329803466796875, 0.022003173828125, -0.006664276123046875, 0.0250244140625, 0.019073486328125, -0.0127105712890625, 0.003780364990234375, -0.00798797607421875, -0.0367431640625, 0.0283660888671875, -0.048187255859375, 0.0293121337890625, -0.01369476318359375, 0.0535888671875, -0.05322265625, -0.0325927734375, 0.01465606689453125, -0.03289794921875, 0.033721923828125, 0.0294952392578125, -0.0224151611328125, -0.038909912109375, -0.006771087646484375, 0.0245819091796875, -0.0166473388671875, -0.009246826171875, 0.005924224853515625, 0.0306854248046875, 0.00620269775390625, -0.044708251953125, -0.039642333984375, 0.01568603515625, -0.01464080810546875, -0.002864837646484375, -0.0516357421875, 0.018218994140625, 0.01297760009765625, -0.01314544677734375, -0.0233154296875, 0.00344085693359375, 0.0218048095703125, 0.035614013671875, -0.019439697265625, -0.005496978759765625, -0.0159149169921875, 0.00554656982421875, -0.015777587890625, -0.00852203369140625, 0.0024967193603515625, -0.0179443359375, -0.025787353515625, -0.0211639404296875, -0.053863525390625, -0.012847900390625, -0.0010986328125, -0.0017385482788085938, -0.058929443359375, 0.0017404556274414062, 0.048736572265625, -0.0176239013671875, 0.0538330078125, -0.00848388671875, -0.03759765625, 0.07733154296875, -0.07305908203125, 0.01068115234375, 0.0110015869140625, -0.01331329345703125, 0.00760650634765625, 0.038482666015625, 0.033935546875, 0.0030841827392578125, 0.014739990234375, -0.005313873291015625, 0.01548004150390625, -0.0369873046875, -0.024139404296875, -0.0452880859375, -0.003284454345703125, -0.016204833984375, -0.019378662109375, 0.02337646484375, 0.02435302734375, 0.026153564453125, -0.0247650146484375, -0.00009816884994506836, 0.0008211135864257812, -0.0293731689453125, -0.054351806640625, 0.041046142578125, -0.0310516357421875, -0.054351806640625, 0.051971435546875, 0.05670166015625, -0.0203399658203125, 0.003448486328125, -0.007080078125, 0.034698486328125, -0.050628662109375, -0.0301513671875, 0.050506591796875, 0.00399017333984375, -0.0537109375, -0.0274658203125, 0.00818634033203125, 0.0386962890625, 0.038238525390625, 0.00904083251953125, -0.0142669677734375, 0.004589080810546875, -0.06964111328125, 0.046173095703125, -0.03997802734375, 0.0260467529296875, 0.021453857421875, -0.0214385986328125, 0.0209808349609375, 0.02691650390625, -0.0007677078247070312, -0.04156494140625, -0.0304718017578125, 0.03302001953125, 0.0145721435546875, 0.01422882080078125, 0.028411865234375, 0.0238494873046875, -0.0215606689453125, -0.04443359375, -0.003459930419921875, 0.02215576171875, -0.02459716796875, -0.01505279541015625, 0.020355224609375, 0.041839599609375, 0.01397705078125, -0.00586700439453125, 0.0285797119140625, 0.009674072265625, 0.0186920166015625, 0.0298004150390625, 0.00894927978515625, -0.03216552734375, -0.049774169921875, 0.06976318359375, -0.03631591796875, -0.04119873046875, -0.0198211669921875, 0.0028533935546875, 0.034912109375, 0.0467529296875, 0.0191650390625, 0.0023097991943359375, -0.01389312744140625, -0.061279296875, -0.01099395751953125, -0.014801025390625, 0.0219268798828125, -0.030242919921875, 0.004665374755859375, -0.00774383544921875, 0.02960205078125, -0.00423431396484375, -0.0220947265625, 0.0267791748046875, -0.01953125, -0.00881195068359375, 0.0006265640258789062, -0.007965087890625, 0.030181884765625, -0.04315185546875, -0.006572723388671875, 0.02386474609375, -0.0223846435546875, 0.00127410888671875, -0.0518798828125, -0.001617431640625, 0.0196075439453125, 0.01314544677734375, 0.00611114501953125, -0.0300750732421875, 0.0167388916015625, -0.0307769775390625, -0.05499267578125, -0.04754638671875, 0.0221405029296875, 0.029998779296875, 0.05364990234375, -0.044281005859375, 0.021942138671875, 0.0198211669921875, 0.047698974609375, -0.04443359375, 0.0012655258178710938, 0.01861572265625, 0.0230255126953125, -0.03314208984375, -0.025299072265625, -0.0137481689453125, -0.06396484375, 0.0096435546875, 0.057861328125, 0.035980224609375, 0.01137542724609375, 0.01389312744140625, 0.007297515869140625, 0.07293701171875, 0.04052734375, 0.036346435546875, -0.03155517578125, -0.019317626953125, 0.00647735595703125, 0.020751953125, 0.017822265625, 0.0243072509765625, -0.0106048583984375, 0.02593994140625, 0.04339599609375, 0.006504058837890625, -0.00042629241943359375, -0.01404571533203125, 0.00321197509765625, 0.01345062255859375, 0.00983428955078125, -0.045745849609375, 0.01146697998046875, 0.01309967041015625, 0.0335693359375, 0.023712158203125, 0.00926971435546875, -0.0308837890625, 0.0312347412109375, 0.0143280029296875, -0.049407958984375, 0.00504302978515625, 0.026885986328125, -0.0166778564453125, 0.03240966796875, -0.0295867919921875, 0.0005898475646972656, 0.01421356201171875, 0.0231781005859375, -0.0164337158203125, 0.005199432373046875, -0.0019435882568359375, -0.01175689697265625, 0.00643157958984375, -0.06524658203125, 0.0294342041015625, -0.0034809112548828125, -0.0439453125, -0.055023193359375, -0.0034694671630859375, 0.00257110595703125, -0.01053619384765625, -0.00788116455078125, 0.0234832763671875, -0.0302581787109375, -0.009490966796875, -0.0038051605224609375, 0.038970947265625, -0.0232391357421875, 0.029754638671875, 0.058197021484375, -0.039215087890625, 0.04132080078125, -0.0101165771484375, -0.0076751708984375, -0.033294677734375, 0.0115509033203125, -0.017852783203125, -0.03814697265625, -0.0274658203125, 0.030670166015625, 0.03521728515625, 0.04486083984375, 0.0025882720947265625, -0.0287322998046875, -0.003093719482421875, 0.0290985107421875, -0.033599853515625, -0.038055419921875, 0.027099609375, -0.05023193359375, -0.053924560546875, -0.01322174072265625, -0.038787841796875, 0.0225677490234375, -0.01214599609375, -0.0184478759765625, -0.0272216796875, 0.00925445556640625, -0.0011539459228515625, -0.033203125, -0.029266357421875, -0.032745361328125, -0.0015354156494140625, 0.00601959228515625, 0.0124664306640625, 0.0762939453125, 0.032440185546875, -0.01053619384765625, 0.0543212890625, 0.04119873046875, -0.008514404296875, 0.03759765625, 0.003276824951171875, -0.036163330078125, 0.0374755859375, -0.0164337158203125, -0.00920867919921875, 0.03826904296875, -0.0135345458984375, -0.00092315673828125, -0.037811279296875, -0.006969451904296875, -0.0284576416015625, 0.057037353515625, 0.058624267578125, 0.007114410400390625, 0.035980224609375, -0.036224365234375, 0.00002086162567138672, -0.0117340087890625, -0.0073089599609375, -0.01180267333984375, -0.020660400390625, -0.01119232177734375, -0.01190185546875, 0.037628173828125, 0.007305145263671875, 0.0128326416015625, 0.0146484375, -0.0250091552734375, 0.051025390625, 0.01100921630859375, 0.019012451171875, -0.036224365234375, -0.0024929046630859375, -0.028472900390625, 0.0265350341796875, -0.00677490234375, -0.007404327392578125, -0.0202178955078125, 0.006969451904296875, -0.058135986328125, -0.057586669921875, 0.05804443359375, -0.0012645721435546875, 0.028472900390625, -0.048736572265625, -0.045867919921875, 0.0070037841796875, 0.11810302734375, -0.028045654296875, -0.01837158203125, -0.02032470703125, 0.00921630859375, -0.011566162109375, -0.048553466796875, -0.0033168792724609375, -0.0107269287109375, -0.09442138671875, 0.01212310791015625, -0.006805419921875, -0.039398193359375, -0.002017974853515625, -0.05267333984375, -0.06561279296875, -0.0455322265625, 0.008514404296875, -0.03515625, 0.007312774658203125, 0.04559326171875, -0.0201873779296875, 0.043487548828125, 0.0112152099609375, -0.059722900390625, -0.11590576171875, -0.010650634765625, -0.036834716796875, 0.0770263671875, -0.02685546875, 0.0498046875, -0.0218505859375, 0.0584716796875, 0.0207672119140625, -0.0000960230827331543, -0.0157318115234375, 0.005939483642578125, -0.019500732421875, -0.029876708984375, -0.01788330078125, -0.03594970703125, 0.004337310791015625, -0.0019512176513671875, -0.02685546875, 0.0001634359359741211, -0.036865234375, -0.014556884765625, 0.00333404541015625, -0.0350341796875, 0.02447509765625, -0.007114410400390625, 0.014190673828125, 0.038238525390625, -0.00641632080078125, -0.007080078125, -0.026824951171875, 0.0189208984375, 0.003490447998046875, 0.0223388671875, -0.004741668701171875, 0.0197601318359375, 0.051513671875, 0.02642822265625, -0.0222320556640625, -0.0654296875, 0.030303955078125, 0.019561767578125, -0.0087738037109375, 0.054473876953125, 0.01334381103515625, -0.003604888916015625, 0.0212860107421875, -0.01032257080078125, -0.0212554931640625, -0.01134490966796875, 0.0875244140625, -0.01224517822265625, -0.0400390625, 0.020721435546875, -0.04461669921875, 0.031402587890625, 0.0024261474609375, -0.0104522705078125, -0.04632568359375, 0.010833740234375, 0.054595947265625, -0.0229949951171875, 0.0440673828125, -0.0262908935546875, -0.0264129638671875, 0.004154205322265625, -0.01322174072265625, 0.04302978515625, 0.019805908203125, -0.012420654296875, 0.022735595703125, -0.0017843246459960938, 0.01837158203125, -0.0081939697265625, 0.007843017578125, 0.0068817138671875, 0.036956787109375, 0.027496337890625, 0.020172119140625, -0.0084381103515625, 0.000980377197265625, 0.0262298583984375, 0.02508544921875, -0.0172882080078125, 0.0006794929504394531, 0.0006604194641113281, -0.00836944580078125, -0.005641937255859375, -0.0293731689453125, 0.05718994140625, 0.005764007568359375, -0.0144805908203125, -0.0244903564453125, -0.06671142578125, -0.01371002197265625, -0.0682373046875, 0.055908203125, 0.036529541015625, -0.0123291015625, 0.031524658203125, -0.0250244140625, 0.034820556640625, -0.0218963623046875, -0.007488250732421875, 0.008575439453125, 0.02899169921875, 0.03717041015625, 0.01849365234375, -0.01300811767578125, -0.0265045166015625, 0.03924560546875, 0.0085601806640625, -0.038421630859375, 0.00479888916015625, 0.03643798828125, 0.06414794921875, 0.00982666015625, -0.0223236083984375, -0.0196075439453125, -0.0222930908203125, -0.01558685302734375, -0.0134735107421875, 0.0302734375, 0.01364898681640625, -0.019927978515625, -0.0018901824951171875, 0.02191162109375, 0.039093017578125, -0.0298309326171875, 0.0027027130126953125, 0.01309967041015625, 0.0298919677734375, 0.0084228515625, -0.040008544921875, 0.04290771484375, 0.042236328125, -0.0784912109375, -0.0261383056640625, -0.0379638671875, 0.007373809814453125, -0.0166168212890625, 0.014556884765625, -0.045501708984375, -0.01776123046875, -0.037078857421875, 0.059173583984375, -0.020172119140625, -0.03375244140625, -0.007793426513671875, 0.033477783203125, 0.00994873046875, 0.01088714599609375, 0.0083465576171875, -0.0300750732421875, -0.0310211181640625, -0.0205841064453125, -0.035400390625, -0.0418701171875, 0.0059356689453125, 0.01107025146484375, 0.019989013671875, 0.0191650390625, 0.01000213623046875, -0.01788330078125, -0.0214691162109375, 0.016265869140625, 0.0291290283203125, 0.0196075439453125, -0.0181732177734375, 0.0716552734375, -0.00372314453125, 0.042022705078125, 0.005573272705078125, 0.0263824462890625, -0.0002086162567138672, -0.0009813308715820312, -0.0123748779296875, -0.0693359375, -0.01097869873046875, 0.016082763671875, -0.039337158203125, 0.04669189453125, 0.045501708984375, 0.01050567626953125, 0.01016998291015625, -0.007537841796875, -0.00873565673828125, -0.025299072265625, -0.00226593017578125, 0.0222015380859375, 0.025726318359375, 0.01457977294921875, 0.037139892578125, 0.083984375, -0.03466796875, -0.0239410400390625, -0.004611968994140625, -0.0011844635009765625, 0.03436279296875, -0.006191253662109375, 0.0009675025939941406, 0.00818634033203125, 0.005588531494140625, -0.02606201171875, 0.0249481201171875, -0.0188140869140625, 0.0070953369140625, 0.0206146240234375, -0.022491455078125, 0.006168365478515625, 0.01155853271484375, 0.070556640625, 0.005161285400390625, -0.0158233642578125, 0.05810546875, -0.0286712646484375, 0.003292083740234375, -0.0023937225341796875, 0.0386962890625, -0.01446533203125, 0.01158905029296875, 0.006916046142578125, -0.006984710693359375, 0.048553466796875, 0.0254364013671875, -0.0168609619140625, 0.02008056640625, 0.0192718505859375, -0.05029296875, -0.006866455078125, 0.025360107421875, 0.00266265869140625, -0.00232696533203125, 0.01313018798828125, 0.022491455078125, 0.0026569366455078125, -0.0309295654296875, -0.031951904296875, 0.040069580078125, -0.043365478515625, 0.004344940185546875, 0.01666259765625, -0.01265716552734375, -0.0015287399291992188, -0.024627685546875, 0.014923095703125, -0.04443359375, 0.0027103424072265625, 0.038543701171875, -0.0028705596923828125, 0.01265716552734375, 0.0177001953125, -0.00469970703125, 0.0171661376953125, -0.006755828857421875, -0.04510498046875, -0.04290771484375, -0.0247650146484375, -0.00262451171875, 0.045257568359375, -0.046905517578125, 0.026336669921875, -0.0268707275390625, 0.00933074951171875, -0.0129547119140625, -0.0266571044921875, 0.080322265625, -0.0567626953125, -0.00252532958984375, 0.0210418701171875, 0.0007333755493164062, -0.0017757415771484375, 0.00785064697265625, 0.017852783203125, -0.0239715576171875, -0.0215606689453125, 0.0111236572265625, -0.049468994140625, -0.006031036376953125, -0.0152587890625, -0.0167388916015625, 0.06494140625, -0.036163330078125, 0.003849029541015625, 0.050018310546875, 0.0225067138671875, -0.013427734375, 0.0177459716796875, -0.0264434814453125, 0.0155181884765625, -0.03863525390625, 0.03460693359375, -0.05560302734375, -0.005512237548828125, -0.005359649658203125, 0.049407958984375, 0.034393310546875, 0.00649261474609375, -0.044219970703125, -0.0145416259765625, 0.057159423828125, 0.06396484375, 0.020416259765625, 0.015655517578125, -0.0098419189453125, -0.026123046875, 0.0099334716796875, 0.0011224746704101562, 0.041656494140625, -0.040557861328125, -0.0204925537109375, 0.00815582275390625, 0.01369476318359375, 0.017608642578125, 0.00759124755859375, -0.0005893707275390625, -0.047882080078125, 0.018585205078125, 0.045440673828125, -0.005481719970703125, 0.002593994140625, 0.05438232421875, 0.008514404296875, -0.0013780593872070312, -0.045684814453125, -0.0063934326171875, 0.03143310546875, -0.02716064453125, 0.048858642578125, 0.0028820037841796875, 0.00435638427734375, 0.01490020751953125, 0.032073974609375, 0.0184783935546875, 0.05010986328125, -0.005908966064453125, 0.029205322265625, 0.01480865478515625, 0.00237274169921875, -0.045623779296875, 0.035552978515625, 0.03131103515625, 0.039581298828125, -0.056488037109375, -0.0199432373046875, 0.0158843994140625, 0.008636474609375, 0.01204681396484375, -0.008209228515625, 0.030792236328125, -0.0845947265625, -0.045166015625, -0.0386962890625, 0.01276397705078125, 0.0296630859375, 0.03515625, -0.0006465911865234375, 0.0004138946533203125, -0.0712890625, -0.003993988037109375, -0.05023193359375, -0.00482177734375, 0.0181427001953125, 0.04901123046875, 0.02728271484375, 0.05889892578125, 0.025604248046875, -0.025421142578125, -0.01334381103515625, 0.039398193359375, 0.0151519775390625, 0.0245208740234375, -0.01473236083984375, -0.006061553955078125, 0.003936767578125, 0.01727294921875, 0.0167694091796875, 0.0111083984375, 0.0313720703125, 0.0174407958984375, -0.0050048828125, -0.0115509033203125, -0.00949859619140625, -0.025390625, 0.01369476318359375, -0.01515960693359375, 0.01314544677734375, 0.04461669921875, -0.0235748291015625, 0.02593994140625, -0.02325439453125, 0.0655517578125, -0.01052093505859375, 0.0010137557983398438, 0.005584716796875, -0.04864501953125, 0.0252685546875, 0.013885498046875, 0.07196044921875, 0.01280975341796875, -0.09478759765625, -0.0203399658203125, -0.00617218017578125, -0.06488037109375, 0.0364990234375, 0.0491943359375, -0.04541015625, 0.0174102783203125, 0.0458984375, -0.049407958984375, 0.0118560791015625, 0.0305938720703125, 0.0085296630859375, -0.01212310791015625, 0.006023406982421875, -0.00780487060546875, -0.0382080078125, -0.0179290771484375, -0.030975341796875, 0.03057861328125, 0.039459228515625, 0.0236358642578125, 0.006084442138671875, 0.03961181640625, -0.00775146484375, 0.0113067626953125, -0.0106048583984375, -0.0119171142578125, 0.03656005859375, 0.016693115234375, 0.01226043701171875, -0.0204620361328125, -0.01276397705078125, -0.0142364501953125, 0.0628662109375, -0.031829833984375, 0.004711151123046875, -0.00641632080078125, 0.0290679931640625, -0.02490234375, 0.0234832763671875, -0.033599853515625, -0.0030002593994140625, -0.060821533203125, -0.037567138671875, 0.04840087890625, -0.00882720947265625, -0.01305389404296875, 0.042022705078125, 0.02166748046875, 0.01305389404296875, 0.04058837890625, -0.03057861328125, 0.08148193359375, 0.034393310546875, -0.047332763671875, -0.0401611328125, -0.005786895751953125, -0.0046844482421875, -0.0233306884765625, 0.010833740234375, 0.025665283203125, 0.007389068603515625, -0.055572509765625, 0.00943756103515625, 0.046966552734375, 0.049652099609375, -0.00534820556640625, 0.0181732177734375, 0.036468505859375, -0.028778076171875, -0.0034427642822265625, 0.0015802383422851562, -0.0224609375, -0.047821044921875, 0.005298614501953125, 0.0144195556640625, -0.0173492431640625, -0.026611328125, -0.041717529296875, -0.002166748046875, 0.04168701171875, 0.001308441162109375, -0.047454833984375, 0.0198822021484375, -0.0307769775390625, 0.052459716796875, -0.0011777877807617188, -0.053497314453125, 0.0289764404296875, 0.049774169921875, -0.00506591796875, -0.05767822265625, -0.021453857421875, 0.0278167724609375, -0.04241943359375, 0.036956787109375, 0.02581787109375, -0.055145263671875, 0.04632568359375, 0.052825927734375, 0.04180908203125, 0.08941650390625, -0.022216796875, -0.026641845703125, 0.004119873046875, -0.00380706787109375, -0.0186614990234375, -0.06378173828125, 0.03125, -0.0860595703125, -0.00829315185546875, -0.007663726806640625, 0.016204833984375, 0.0394287109375, -0.017242431640625, -0.07440185546875, 0.0657958984375, -0.0206146240234375, -0.0229644775390625, -0.0628662109375, 0.03765869140625, -0.017181396484375, 0.01136016845703125, -0.007366180419921875, -0.02191162109375, 0.037994384765625, 0.050048828125, 0.01519012451171875, 0.0176544189453125, 0.0304412841796875, 0.02099609375, -0.0270233154296875, -0.0000014901161193847656, 0.00022029876708984375, 0.005374908447265625, 0.01605224609375, -0.03668212890625, 0.031524658203125, 0.0268707275390625, -0.035400390625, -0.0430908203125, 0.01517486572265625, -0.007541656494140625, -0.01215362548828125, -0.0287628173828125, -0.0267486572265625, -0.0230712890625, 0.08917236328125, 0.0111236572265625, 0.026458740234375, -0.01093292236328125, -0.0022125244140625, -0.00852203369140625, -0.040252685546875, -0.0005345344543457031, 0.0109100341796875, -0.0217742919921875, -0.0009427070617675781, -0.0121917724609375, -0.0004062652587890625, -0.004741668701171875, 0.0055389404296875, -0.0238189697265625, -0.0088958740234375, -0.007694244384765625, 0.00719451904296875, -0.07586669921875, 0.04345703125, 0.01329803466796875, -0.012969970703125, 0.043731689453125, -0.0171051025390625, -0.01183319091796875, 0.044921875, 0.0201416015625, -0.024383544921875, -0.0158233642578125, 0.01392364501953125, 0.032928466796875, -0.0117950439453125, 0.005542755126953125, -0.0205078125, 0.018310546875, -0.0313720703125, 0.00931549072265625, 0.0245513916015625, 0.0076751708984375, -0.0263214111328125, 0.032012939453125, 0.0239105224609375, 0.0106964111328125, -0.017120361328125, 0.04156494140625, 0.006290435791015625, 0.005985260009765625, 0.001102447509765625, 0.0000947713851928711, 0.05120849609375, -0.04046630859375, -0.011016845703125, 0.00939178466796875, -0.038787841796875, -0.046478271484375, 0.026641845703125, -0.016510009765625, -0.005352020263671875, 0.0165557861328125 ]
f2e850d21f68bea76e7fb2ec3dc2ca76334f240a
Wordpress Stackexchange Q: How to check if a hook is hooked or not? For example: if ( is_hooked('hook_name') ) { throw new \Exception('You cannot hook to a protected action.'); } else { do_action('hook_name'); } Is there a way to define the is_hooked() function? A: Sure, that's called has_action, which is an alias of has_filter. Usage: if ( has_action('hook_name') ) { throw new \Exception('You cannot hook to a protected action.'); } else { do_action('hook_name'); } These two functions access the global array $wp_filter that stores all of the filters / actions
Q: How to check if a hook is hooked or not? For example: if ( is_hooked('hook_name') ) { throw new \Exception('You cannot hook to a protected action.'); } else { do_action('hook_name'); } Is there a way to define the is_hooked() function? A: Sure, that's called has_action, which is an alias of has_filter. Usage: if ( has_action('hook_name') ) { throw new \Exception('You cannot hook to a protected action.'); } else { do_action('hook_name'); } These two functions access the global array $wp_filter that stores all of the filters / actions
wordpress
{ "language": "en", "length": 88, "provenance": "stackexchange_00019.jsonl.gz:467936", "question_score": "6", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/237717" }
[ 0.031524658203125, 0.0168304443359375, 0.0012865066528320312, 0.0009131431579589844, 0.0161895751953125, -0.0178375244140625, 0.0361328125, -0.036407470703125, -0.0009322166442871094, 0.004344940185546875, -0.024749755859375, 0.023345947265625, 0.0023059844970703125, -0.012969970703125, 0.00653076171875, -0.018341064453125, 0.043487548828125, -0.044281005859375, 0.013641357421875, -0.0192108154296875, 0.04803466796875, 0.006641387939453125, 0.01490020751953125, 0.0767822265625, 0.035400390625, -0.0528564453125, 0.08612060546875, -0.0279541015625, 0.049041748046875, -0.00249481201171875, 0.036865234375, -0.033721923828125, 0.019256591796875, 0.058380126953125, -0.05743408203125, 0.0343017578125, 0.034149169921875, -0.0007801055908203125, -0.0031642913818359375, 0.055999755859375, 0.038848876953125, -0.0141754150390625, -0.03216552734375, 0.00545501708984375, -0.031585693359375, -0.0300140380859375, 0.038116455078125, -0.01013946533203125, 0.038116455078125, -0.002185821533203125, 0.008941650390625, 0.0188446044921875, 0.0084228515625, -0.0050201416015625, -0.01000213623046875, 0.0282135009765625, -0.0277862548828125, 0.0197601318359375, 0.025604248046875, 0.0487060546875, -0.014007568359375, -0.0006380081176757812, -0.002605438232421875, -0.07476806640625, 0.03216552734375, 0.007602691650390625, 0.00597381591796875, 0.0177154541015625, -0.0168914794921875, 0.02166748046875, 0.01015472412109375, -0.0233154296875, -0.0244140625, 0.0306396484375, -0.0226593017578125, -0.052947998046875, 0.029022216796875, -0.037841796875, 0.0035533905029296875, 0.04156494140625, -0.027313232421875, -0.037811279296875, -0.05059814453125, 0.011505126953125, -0.0018777847290039062, 0.037811279296875, -0.0153045654296875, -0.0018310546875, 0.00792694091796875, -0.00994110107421875, -0.00313568115234375, 0.037261962890625, -0.0149688720703125, 0.0004591941833496094, -0.0243988037109375, -0.0200042724609375, 0.0187835693359375, 0.01446533203125, -0.03204345703125, -0.027984619140625, 0.01238250732421875, -0.036102294921875, 0.01214599609375, -0.00844573974609375, 0.0147705078125, 0.06768798828125, 0.01546478271484375, 0.01544189453125, 0.01064300537109375, -0.004245758056640625, -0.005313873291015625, -0.0037364959716796875, -0.01364898681640625, 0.01214599609375, -0.0235443115234375, -0.002857208251953125, -0.054656982421875, 0.003147125244140625, -0.0305938720703125, 0.01050567626953125, 0.01540374755859375, -0.01334381103515625, 0.04119873046875, 0.00685882568359375, 0.033538818359375, 0.0203399658203125, -0.046966552734375, -0.0099334716796875, 0.0121612548828125, 0.024658203125, 0.00412750244140625, 0.004150390625, 0.03570556640625, 0.0003287792205810547, -0.019287109375, -0.015533447265625, 0.0263671875, 0.039794921875, 0.00850677490234375, 0.004535675048828125, 0.0024471282958984375, -0.03179931640625, -0.0158538818359375, 0.002071380615234375, 0.0428466796875, -0.01502227783203125, 0.0008654594421386719, 0.0280914306640625, 0.0362548828125, -0.002445220947265625, 0.061767578125, -0.054901123046875, 0.0026874542236328125, 0.015777587890625, 0.0338134765625, 0.01044464111328125, 0.051605224609375, -0.0264892578125, -0.007659912109375, -0.021697998046875, -0.00921630859375, -0.031280517578125, -0.022003173828125, -0.048858642578125, -0.055938720703125, 0.039794921875, -0.01248931884765625, 0.0098876953125, 0.014862060546875, 0.0189361572265625, 0.01541900634765625, 0.03936767578125, 0.01178741455078125, 0.0148162841796875, 0.0033206939697265625, -0.035369873046875, -0.010986328125, 0.006832122802734375, 0.03228759765625, -0.0133209228515625, -0.0225830078125, -0.029327392578125, 0.039215087890625, -0.01386260986328125, -0.054901123046875, 0.0419921875, 0.03375244140625, 0.076171875, -0.0071868896484375, 0.0064239501953125, 0.0419921875, 0.029052734375, -0.0017032623291015625, 0.035186767578125, 0.004611968994140625, -0.048675537109375, 0.00614166259765625, -0.0214385986328125, -0.005199432373046875, -0.0033016204833984375, 0.07769775390625, 0.010406494140625, -0.0085906982421875, -0.051513671875, -0.11749267578125, 0.00542449951171875, -0.036407470703125, 0.041717529296875, 0.00533294677734375, 0.030853271484375, 0.005809783935546875, 0.005123138427734375, -0.0224761962890625, 0.0115814208984375, -0.011199951171875, 0.01751708984375, -0.03729248046875, 0.00759124755859375, -0.00923919677734375, 0.036651611328125, 0.010009765625, -0.00992584228515625, -0.0004897117614746094, -0.0233306884765625, 0.01358795166015625, -0.003948211669921875, -0.0213165283203125, -0.006961822509765625, -0.033721923828125, 0.034942626953125, -0.06219482421875, 0.032928466796875, 0.007175445556640625, 0.037689208984375, 0.0049285888671875, -0.01105499267578125, 0.0006022453308105469, -0.0767822265625, 0.018707275390625, 0.049346923828125, 0.0538330078125, 0.033660888671875, -0.005096435546875, -0.052703857421875, 0.0254364013671875, -0.0841064453125, 0.01557159423828125, -0.05078125, -0.0004093647003173828, 0.0501708984375, 0.01197052001953125, 0.034881591796875, -0.003505706787109375, 0.007656097412109375, -0.01183319091796875, 0.0227203369140625, -0.005802154541015625, -0.0233306884765625, -0.004383087158203125, 0.00547027587890625, 0.00424957275390625, -0.005672454833984375, -0.023895263671875, 0.01142120361328125, 0.01605224609375, -0.041748046875, 0.0081634521484375, 0.0007300376892089844, 0.03338623046875, -0.0246429443359375, 0.0072174072265625, -0.056640625, 0.01007843017578125, 0.045196533203125, 0.08795166015625, 0.0191802978515625, -0.0062103271484375, -0.053314208984375, 0.01345062255859375, 0.038238525390625, -0.025177001953125, 0.046173095703125, -0.0255584716796875, -0.0260162353515625, -0.0246734619140625, -0.01273345947265625, -0.00873565673828125, -0.0367431640625, 0.053619384765625, 0.0271759033203125, 0.044830322265625, 0.0033473968505859375, -0.01194000244140625, 0.04669189453125, 0.011749267578125, -0.031341552734375, -0.054840087890625, -0.016845703125, 0.028778076171875, -0.032623291015625, -0.0126495361328125, 0.0689697265625, -0.0009555816650390625, 0.00589752197265625, 0.00806427001953125, -0.04046630859375, -0.002666473388671875, 0.00873565673828125, -0.0158538818359375, -0.00787353515625, -0.05517578125, 0.039581298828125, 0.0142059326171875, 0.06536865234375, -0.0212554931640625, -0.038665771484375, -0.005985260009765625, 0.00629425048828125, -0.0261688232421875, -0.03857421875, -0.03387451171875, -0.035308837890625, 0.051300048828125, -0.018218994140625, 0.005374908447265625, -0.0277252197265625, -0.0177459716796875, 0.01189422607421875, -0.055389404296875, -0.008148193359375, -0.02044677734375, -0.04425048828125, -0.03912353515625, 0.0555419921875, 0.00897979736328125, 0.03802490234375, -0.0009670257568359375, 0.08343505859375, 0.00885009765625, -0.03594970703125, 0.0155181884765625, -0.031524658203125, -0.023773193359375, 0.016510009765625, -0.04315185546875, 0.004680633544921875, 0.0192718505859375, -0.0032291412353515625, -0.0517578125, -0.02020263671875, 0.045257568359375, -0.0223236083984375, -0.01568603515625, -0.0411376953125, 0.032745361328125, 0.068359375, -0.01457977294921875, -0.050384521484375, 0.061431884765625, -0.06390380859375, 0.0180816650390625, 0.0141143798828125, -0.003948211669921875, 0.040985107421875, 0.006011962890625, -0.048553466796875, 0.0212860107421875, -0.00783538818359375, 0.0025539398193359375, 0.00897979736328125, -0.022491455078125, -0.0110626220703125, 0.023162841796875, 0.002353668212890625, 0.0241851806640625, 0.0211181640625, -0.0170745849609375, -0.0249786376953125, 0.00981903076171875, -0.023223876953125, 0.0306854248046875, -0.016815185546875, 0.042816162109375, -0.036773681640625, -0.0180511474609375, 0.020416259765625, -0.04046630859375, -0.0103607177734375, -0.01383209228515625, -0.00324249267578125, -0.0023632049560546875, 0.03411865234375, -0.0114593505859375, -0.035430908203125, -0.0187225341796875, -0.0005998611450195312, -0.01910400390625, -0.004238128662109375, 0.01439666748046875, -0.00391387939453125, -0.0960693359375, 0.02294921875, 0.0190887451171875, -0.047760009765625, -0.0103759765625, -0.058135986328125, -0.06756591796875, -0.032867431640625, 0.01375579833984375, -0.061187744140625, 0.0181121826171875, 0.03857421875, -0.0211029052734375, 0.0145111083984375, -0.0155487060546875, -0.05810546875, -0.08599853515625, 0.0009503364562988281, -0.0582275390625, 0.038665771484375, 0.037567138671875, -0.0278778076171875, -0.007740020751953125, 0.0221099853515625, 0.0306396484375, 0.01561737060546875, 0.00991058349609375, -0.0229949951171875, 0.0170135498046875, 0.00453948974609375, 0.0059356689453125, -0.006305694580078125, 0.01548004150390625, -0.006977081298828125, -0.03143310546875, 0.0044097900390625, -0.046173095703125, -0.01531982421875, -0.003711700439453125, -0.044677734375, -0.0543212890625, -0.01100921630859375, -0.006313323974609375, 0.0021991729736328125, -0.025482177734375, 0.0035457611083984375, -0.0137939453125, -0.0650634765625, 0.060028076171875, -0.03692626953125, -0.003330230712890625, -0.0003228187561035156, 0.1224365234375, 0.010009765625, -0.0106353759765625, -0.0269622802734375, -0.00830078125, 0.0167694091796875, -0.046356201171875, 0.0419921875, 0.008544921875, -0.0057525634765625, 0.03271484375, -0.01514434814453125, -0.0090179443359375, -0.03887939453125, 0.0506591796875, 0.022186279296875, 0.040313720703125, -0.035308837890625, 0.00533294677734375, 0.040313720703125, -0.0141143798828125, -0.035980224609375, -0.0301666259765625, 0.01535797119140625, 0.06396484375, -0.065185546875, 0.09649658203125, -0.01983642578125, -0.0021266937255859375, -0.00836944580078125, -0.004848480224609375, 0.04827880859375, 0.0291900634765625, 0.004425048828125, -0.01274871826171875, 0.0075531005859375, 0.013824462890625, -0.032257080078125, 0.0013265609741210938, -0.036895751953125, 0.05352783203125, -0.02923583984375, 0.0234527587890625, -0.01116943359375, -0.0019321441650390625, 0.03948974609375, -0.026153564453125, -0.0767822265625, 0.00635528564453125, -0.02825927734375, 0.0052337646484375, 0.0521240234375, 0.0140838623046875, 0.035430908203125, 0.019927978515625, -0.031707763671875, 0.0110626220703125, 0.00232696533203125, 0.00864410400390625, -0.041534423828125, -0.007488250732421875, -0.01145172119140625, -0.0202484130859375, 0.048980712890625, -0.003997802734375, 0.0133056640625, 0.0170440673828125, -0.019927978515625, 0.003875732421875, 0.01430511474609375, 0.01354217529296875, 0.030242919921875, 0.0031185150146484375, -0.0279998779296875, 0.0020599365234375, 0.0087890625, -0.034149169921875, -0.03936767578125, 0.0163421630859375, 0.00543212890625, -0.02886962890625, 0.00646209716796875, 0.0195465087890625, 0.037353515625, -0.03546142578125, 0.048614501953125, 0.0270843505859375, -0.06304931640625, -0.042510986328125, -0.006786346435546875, 0.0178070068359375, -0.0005316734313964844, 0.009185791015625, -0.0143585205078125, 0.00240325927734375, 0.0037517547607421875, -0.0006265640258789062, -0.0111541748046875, 0.007366180419921875, -0.0035305023193359375, -0.042510986328125, -0.0051727294921875, 0.0178985595703125, -0.0538330078125, -0.033172607421875, -0.0211944580078125, -0.032470703125, 0.05096435546875, -0.0238189697265625, 0.0258331298828125, -0.023712158203125, -0.01055145263671875, -0.0165252685546875, 0.01206207275390625, 0.06304931640625, 0.04461669921875, -0.08233642578125, 0.01422882080078125, -0.02484130859375, 0.0128631591796875, -0.004756927490234375, -0.041717529296875, -0.0164031982421875, -0.01535797119140625, -0.021392822265625, 0.0244293212890625, -0.0006232261657714844, 0.048583984375, 0.0413818359375, 0.0191802978515625, -0.052581787109375, 0.01242828369140625, -0.0296173095703125, 0.05865478515625, 0.03594970703125, -0.00566864013671875, 0.009033203125, 0.022003173828125, -0.004894256591796875, -0.007183074951171875, -0.0177764892578125, -0.0092926025390625, 0.0152587890625, -0.0020656585693359375, 0.029571533203125, -0.002635955810546875, 0.034881591796875, 0.0031337738037109375, -0.038818359375, -0.0025730133056640625, -0.004604339599609375, -0.0159149169921875, 0.030731201171875, 0.030303955078125, -0.018646240234375, -0.01324462890625, -0.035980224609375, -0.0146026611328125, -0.029541015625, -0.00833892822265625, 0.054779052734375, -0.0277099609375, 0.015289306640625, 0.0208282470703125, -0.0264739990234375, 0.02325439453125, 0.01338958740234375, 0.01308441162109375, 0.043182373046875, 0.00859832763671875, 0.04241943359375, 0.0215911865234375, 0.01451873779296875, 0.0161590576171875, -0.01995849609375, 0.0472412109375, 0.0032444000244140625, 0.00006079673767089844, 0.03656005859375, -0.0275115966796875, 0.0203399658203125, 0.054962158203125, 0.08172607421875, -0.07855224609375, 0.00885009765625, 0.032928466796875, -0.020721435546875, 0.0110931396484375, -0.0271453857421875, 0.0140533447265625, -0.00634002685546875, 0.048248291015625, 0.0074462890625, -0.0268707275390625, 0.0245361328125, -0.0199127197265625, -0.0235748291015625, -0.03875732421875, 0.047149658203125, 0.0294036865234375, 0.0014162063598632812, 0.0204010009765625, -0.001995086669921875, -0.002132415771484375, -0.006259918212890625, 0.03143310546875, -0.0047607421875, -0.00728607177734375, -0.0194091796875, 0.01206207275390625, -0.0191650390625, -0.0290679931640625, 0.01270294189453125, -0.00696563720703125, 0.0295257568359375, 0.0169677734375, -0.0038089752197265625, -0.01102447509765625, -0.0008826255798339844, 0.0013799667358398438, -0.052154541015625, 0.0092620849609375, 0.0192413330078125, 0.039581298828125, -0.030609130859375, 0.031524658203125, -0.060791015625, 0.0163421630859375, 0.007686614990234375, -0.01474761962890625, 0.037109375, 0.006317138671875, -0.023406982421875, 0.0231781005859375, -0.0209808349609375, -0.0013589859008789062, 0.0094146728515625, 0.03076171875, -0.01190185546875, -0.0088653564453125, 0.02276611328125, -0.024749755859375, -0.0299072265625, 0.01091766357421875, -0.0235443115234375, 0.07647705078125, -0.01457977294921875, 0.008056640625, 0.00661468505859375, 0.024383544921875, 0.00843048095703125, 0.033966064453125, -0.07373046875, 0.06378173828125, 0.05950927734375, 0.1011962890625, -0.01348876953125, 0.007476806640625, 0.048095703125, -0.00817108154296875, 0.01554107666015625, 0.00626373291015625, 0.0296173095703125, -0.0124969482421875, -0.0022106170654296875, 0.00536346435546875, -0.02777099609375, 0.00525665283203125, -0.025482177734375, -0.0020961761474609375, -0.00891876220703125, -0.017425537109375, 0.039581298828125, -0.060089111328125, -0.038360595703125, -0.01073455810546875, -0.0008120536804199219, -0.015960693359375, -0.01666259765625, 0.01041412353515625, -0.039764404296875, -0.008056640625, 0.0165557861328125, 0.00841522216796875, -0.0289764404296875, 0.0345458984375, -0.016693115234375, -0.0015163421630859375, 0.01532745361328125, -0.036590576171875, 0.036865234375, -0.007099151611328125, -0.005504608154296875, 0.03021240234375, 0.0167694091796875, -0.0096588134765625, -0.009979248046875, -0.0024890899658203125, 0.01678466796875, -0.0168914794921875, 0.042999267578125, 0.040313720703125, 0.010284423828125, -0.00142669677734375, 0.0289764404296875, 0.044342041015625, 0.055572509765625, -0.04547119140625, -0.09423828125, -0.01373291015625, -0.007465362548828125, 0.01534271240234375, 0.038482666015625, 0.003269195556640625, 0.0274810791015625, 0.0823974609375, -0.0633544921875, -0.003177642822265625, 0.044647216796875, 0.042572021484375, 0.0027446746826171875, -0.009796142578125, -0.051300048828125, -0.01953125, -0.0195465087890625, -0.01465606689453125, 0.00177764892578125, 0.07818603515625, 0.0082244873046875, 0.040069580078125, -0.048126220703125, -0.0261077880859375, -0.02203369140625, 0.0060882568359375, -0.032623291015625, 0.0280609130859375, -0.076171875, -0.052520751953125, 0.0067901611328125, 0.06658935546875, 0.054901123046875, 0.02069091796875, 0.006134033203125, -0.005184173583984375, 0.0134735107421875, 0.0279541015625, 0.060638427734375, -0.00943756103515625, -0.00787353515625, -0.02764892578125, 0.01317596435546875, 0.0187225341796875, -0.010955810546875, 0.006809234619140625, -0.00658416748046875, 0.05084228515625, -0.032562255859375, 0.0005984306335449219, 0.0035266876220703125, -0.0289306640625, 0.0295867919921875, 0.011993408203125, 0.039093017578125, 0.00445556640625, -0.05279541015625, -0.0229644775390625, -0.017669677734375, 0.0001666545867919922, 0.015869140625, 0.03253173828125, 0.01363372802734375, 0.0077972412109375, 0.027130126953125, 0.0102996826171875, 0.0113677978515625, 0.0124359130859375, -0.020721435546875, -0.01082611083984375, 0.0528564453125, 0.007049560546875, 0.0257110595703125, -0.000003635883331298828, 0.0148773193359375, 0.051849365234375, 0.0212249755859375, 0.0093841552734375, -0.0217132568359375, 0.023681640625, 0.021881103515625, 0.02740478515625, -0.01812744140625, -0.005390167236328125, 0.0209503173828125, -0.010284423828125, 0.0021800994873046875, -0.020843505859375, -0.0223388671875, 0.01137542724609375, 0.022674560546875, -0.00646209716796875, -0.003078460693359375, -0.0201873779296875, 0.03533935546875, 0.0255889892578125, 0.039154052734375, -0.013671875, -0.06414794921875, -0.008544921875, 0.035491943359375, -0.0061798095703125, 0.03948974609375, 0.01071929931640625, 0.00937652587890625, -0.0479736328125, -0.01263427734375, -0.027923583984375, 0.01532745361328125, -0.09124755859375, 0.005706787109375, -0.0306854248046875, -0.035247802734375, -0.01377105712890625, -0.007328033447265625, -0.012969970703125, 0.0187835693359375, -0.0013971328735351562, -0.0035572052001953125, -0.007144927978515625, -0.03790283203125, -0.0238800048828125, 0.03338623046875, -0.00872039794921875, 0.00921630859375, -0.048919677734375, 0.0130767822265625, -0.0068206787109375, -0.036346435546875, -0.049560546875, -0.0406494140625, -0.00920867919921875, 0.0176239013671875, -0.0157470703125, -0.047454833984375, -0.03369140625, -0.019805908203125, 0.04205322265625, -0.0283050537109375, 0.01065826416015625, -0.036376953125, -0.037811279296875, 0.03436279296875, -0.00624847412109375, 0.0244140625, 0.0179290771484375, 0.0231170654296875, -0.0367431640625, 0.033294677734375, 0.0196075439453125, -0.005733489990234375, 0.0537109375, 0.0283966064453125, 0.035614013671875, -0.04833984375, -0.057586669921875, 0.01702880859375, 0.038543701171875, 0.0458984375, 0.055511474609375, -0.01259613037109375, 0.00020110607147216797, 0.039886474609375, -0.0269317626953125, -0.04547119140625, 0.0186309814453125, -0.02386474609375, -0.01580810546875, 0.0134429931640625, -0.0009593963623046875, 0.02435302734375, -0.036865234375, -0.08258056640625, 0.0692138671875, -0.01248931884765625, -0.028717041015625, -0.08612060546875, 0.04559326171875, 0.0159149169921875, -0.01739501953125, -0.036102294921875, 0.01032257080078125, -0.02008056640625, 0.034759521484375, -0.00017821788787841797, -0.0211334228515625, 0.031829833984375, 0.008148193359375, -0.031768798828125, 0.01024627685546875, 0.00800323486328125, -0.036346435546875, 0.0010433197021484375, -0.027099609375, 0.060882568359375, 0.059234619140625, -0.00896453857421875, 0.031005859375, 0.0208892822265625, -0.0452880859375, 0.0192108154296875, -0.054931640625, 0.0010557174682617188, 0.0005445480346679688, 0.038055419921875, -0.01035308837890625, 0.00299072265625, -0.043487548828125, -0.035614013671875, -0.048797607421875, -0.061004638671875, -0.00945281982421875, 0.0345458984375, -0.050933837890625, 0.03338623046875, -0.0005984306335449219, -0.0150299072265625, -0.01309967041015625, 0.017852783203125, -0.0394287109375, -0.0008759498596191406, 0.01336669921875, 0.0020923614501953125, -0.03826904296875, -0.02777099609375, 0.06390380859375, -0.0261688232421875, 0.002471923828125, 0.01169586181640625, 0.02789306640625, 0.03558349609375, 0.041473388671875, 0.032806396484375, 0.034088134765625, -0.029937744140625, -0.01654052734375, 0.034576416015625, 0.01319122314453125, 0.0161895751953125, -0.0271148681640625, -0.006206512451171875, 0.01236724853515625, -0.004245758056640625, 0.00717926025390625, 0.0125274658203125, -0.00806427001953125, -0.0175933837890625, 0.04571533203125, 0.004589080810546875, 0.0556640625, 0.0230712890625, 0.025054931640625, -0.002330780029296875, -0.0234222412109375, 0.0189208984375, -0.04913330078125, -0.005573272705078125, 0.01421356201171875, 0.00481414794921875, -0.047149658203125, 0.06414794921875, 0.020172119140625, 0.01513671875, 0.03753662109375 ]
aa77326e8bc041d7cea4096ab5e432ac4acaff4e
Wordpress Stackexchange Q: Disable Attachment Pages Completely I would like to disable all attachment pages completely. I Googled it, but there's just information on how to redirect to parent post or homepage. That's not what I would call an elegant solution. Why introduce unnecessary permalinks that redirect to the homepage? Couldn't it be disabled completely? A: For those who might not use plugins or prefer light-weighted method. This might be of help. This method redirect attachment to the exact file instead of the attachment page and it is the method that some plugins are using. To test, by putting the following code in functions.php of the theme. add_action( 'template_redirect', 'test_attachment_redirect', 10 ); function test_attachment_redirect() { if( is_attachment() ) { $url = wp_get_attachment_url( get_queried_object_id() ); wp_redirect( $url, 301 ); } return; } Reference: is_attachment wp_redirect
Q: Disable Attachment Pages Completely I would like to disable all attachment pages completely. I Googled it, but there's just information on how to redirect to parent post or homepage. That's not what I would call an elegant solution. Why introduce unnecessary permalinks that redirect to the homepage? Couldn't it be disabled completely? A: For those who might not use plugins or prefer light-weighted method. This might be of help. This method redirect attachment to the exact file instead of the attachment page and it is the method that some plugins are using. To test, by putting the following code in functions.php of the theme. add_action( 'template_redirect', 'test_attachment_redirect', 10 ); function test_attachment_redirect() { if( is_attachment() ) { $url = wp_get_attachment_url( get_queried_object_id() ); wp_redirect( $url, 301 ); } return; } Reference: is_attachment wp_redirect A: If you want to disable media pages completely, you should use a 404 response code instead of redirection. This can be done with the following code: function wpse237762_set_404() { if (is_attachment()) { global $wp_query; $wp_query->set_404(); status_header(404); } } // This will show 404 on the attachment page add_filter('template_redirect', 'wpse237762_set_404'); // This will show 404 instead of redirecting to attachment page when dealing with a trailing slash add_filter('redirect_canonical', 'wpse237762_set_404', 0); To keep links to attachment pages working and redirect them straight to the file, you can use the following code: function wpse237762_change_attachment_link($url, $id) { $attachment_url = wp_get_attachment_url($id); if ($attachment_url) { return $attachment_url; } return $url; } add_filter('attachment_link', 'wpse237762_change_attachment_link', 10, 2); To prevent attachment pages from reserving slugs from normal pages, you can use this code to set all new attachment slugs to random ones (UUIDv4 in this case) function wpse237762_unique_slug($slug, $post_ID, $post_status, $post_type, $post_parent, $original_slug) { if ($post_type === 'attachment') { return str_replace('-', '', wp_generate_uuid4()); } return $slug; } add_filter('wp_unique_post_slug', 'wpse237762_unique_slug', 10, 6); This will prevent an image named products.jpeg reserving the URL https://example.com/products. That would result in a page named Products being given the URL https://example.com/products-2 which obviously wouldn't be that great. I have put this code together in the Disable Attachment Pages plugin, which also includes a tool to scramble existing attachment slugs so they won't cause any problems in the future. A: You can filter default rewrite rules and remove those for attachments: function cleanup_default_rewrite_rules( $rules ) { foreach ( $rules as $regex => $query ) { if ( strpos( $regex, 'attachment' ) || strpos( $query, 'attachment' ) ) { unset( $rules[ $regex ] ); } } return $rules; } add_filter( 'rewrite_rules_array', 'cleanup_default_rewrite_rules' ); Don't forget to re-save your permalinks once. WordPress will generate new rules without anything related to attachments. Now, the attachment page URL gives 404. You can also add that redirect to prevent the 404 page, it's useless in this case. But I'm not sure how to catch the redirect - is_attachment() will not work if the rewrite rules are removed. Update: WordPress will still offer the attachment page pretty URLs in media library and media insertion dialog. You can filter this as well: function cleanup_attachment_link( $link ) { return; } add_filter( 'attachment_link', 'cleanup_attachment_link' ); In this case, even when you insert your attachment into post ans select "Link to attachment page", the image will be inserted without the link.
wordpress
{ "language": "en", "length": 528, "provenance": "stackexchange_00019.jsonl.gz:467951", "question_score": "9", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/237762" }
[ 0.1046142578125, -0.003772735595703125, 0.020843505859375, -0.044219970703125, 0.000522613525390625, -0.036895751953125, 0.040740966796875, -0.03265380859375, 0.03167724609375, 0.01476287841796875, 0.0307769775390625, -0.0213165283203125, 0.0184173583984375, -0.06024169921875, 0.011260986328125, 0.0208282470703125, 0.04901123046875, -0.01300048828125, 0.053466796875, 0.01470184326171875, 0.010650634765625, 0.0450439453125, 0.027008056640625, 0.016204833984375, -0.012115478515625, 0.01947021484375, 0.07220458984375, -0.030029296875, -0.0112457275390625, -0.031341552734375, 0.0033245086669921875, 0.019378662109375, 0.032928466796875, 0.0097198486328125, -0.04522705078125, -0.058502197265625, -0.0209808349609375, 0.019012451171875, -0.040435791015625, 0.02880859375, 0.03485107421875, -0.022674560546875, -0.046356201171875, 0.0269622802734375, -0.05584716796875, -0.004047393798828125, 0.01430511474609375, 0.002155303955078125, 0.016021728515625, 0.007282257080078125, -0.005657196044921875, 0.03558349609375, 0.016632080078125, -0.010101318359375, -0.01788330078125, -0.015350341796875, -0.020904541015625, 0.0240478515625, 0.003467559814453125, -0.0095062255859375, -0.0016536712646484375, 0.037445068359375, 0.0027217864990234375, 0.004848480224609375, 0.027557373046875, -0.0236053466796875, -0.02935791015625, 0.0418701171875, -0.06683349609375, 0.031707763671875, 0.055511474609375, -0.06475830078125, -0.0070648193359375, -0.03778076171875, -0.0277099609375, 0.018646240234375, -0.007076263427734375, -0.0191192626953125, 0.01352691650390625, -0.0182647705078125, 0.01433563232421875, -0.01715087890625, -0.0167083740234375, -0.018768310546875, 0.036102294921875, 0.032928466796875, -0.0109100341796875, -0.0264739990234375, -0.028228759765625, -0.00579071044921875, -0.025238037109375, 0.020172119140625, 0.00824737548828125, -0.0191192626953125, -0.0311431884765625, -0.016265869140625, 0.03564453125, 0.0258026123046875, 0.0142974853515625, -0.01328277587890625, 0.0056915283203125, -0.04266357421875, 0.00345611572265625, -0.01751708984375, 0.0013322830200195312, 0.02764892578125, 0.0217742919921875, -0.026641845703125, 0.022369384765625, 0.00330352783203125, 0.007076263427734375, 0.0335693359375, -0.01053619384765625, 0.0213775634765625, -0.0015277862548828125, -0.0081787109375, -0.07086181640625, 0.051177978515625, -0.0260467529296875, 0.057525634765625, -0.021575927734375, -0.00775909423828125, 0.0037708282470703125, 0.01160430908203125, -0.014007568359375, -0.01534271240234375, -0.007717132568359375, -0.02044677734375, 0.0706787109375, -0.0168304443359375, -0.038818359375, -0.0007653236389160156, 0.039276123046875, 0.0204315185546875, 0.0294189453125, -0.000988006591796875, 0.00006127357482910156, -0.01128387451171875, 0.00759124755859375, 0.0113983154296875, 0.02764892578125, -0.05633544921875, -0.019012451171875, 0.037200927734375, 0.00600433349609375, 0.02838134765625, 0.020111083984375, 0.0291900634765625, -0.01369476318359375, -0.042633056640625, 0.02655029296875, -0.023284912109375, 0.055328369140625, -0.003170013427734375, -0.054534912109375, -0.0167388916015625, 0.002735137939453125, -0.004215240478515625, -0.03045654296875, -0.052734375, 0.044952392578125, 0.01971435546875, 0.004932403564453125, -0.00720977783203125, -0.033599853515625, -0.0272216796875, -0.0167236328125, -0.023284912109375, 0.02679443359375, 0.054840087890625, 0.0222320556640625, -0.045806884765625, -0.0230865478515625, -0.014007568359375, -0.02001953125, -0.0012302398681640625, -0.01529693603515625, -0.01540374755859375, 0.021575927734375, 0.055694580078125, 0.0084075927734375, -0.0239715576171875, 0.0229034423828125, -0.004077911376953125, -0.07421875, 0.07696533203125, -0.005802154541015625, 0.034881591796875, 0.006778717041015625, -0.01457977294921875, 0.059478759765625, 0.044647216796875, -0.044647216796875, 0.0233154296875, -0.0173492431640625, -0.018463134765625, -0.0240325927734375, -0.0075836181640625, -0.006298065185546875, 0.0267486572265625, -0.0056610107421875, 0.004680633544921875, -0.0003540515899658203, 0.005573272705078125, -0.004390716552734375, -0.0031375885009765625, -0.00428009033203125, 0.0199127197265625, -0.03515625, 0.057891845703125, 0.037261962890625, 0.0262451171875, -0.05810546875, 0.005146026611328125, 0.036224365234375, 0.0031032562255859375, -0.0086517333984375, 0.028472900390625, -0.007022857666015625, 0.0245208740234375, -0.00804901123046875, -0.03790283203125, -0.00019156932830810547, 0.003742218017578125, 0.0582275390625, -0.00732421875, -0.0032634735107421875, -0.0160064697265625, 0.033203125, 0.007415771484375, -0.0418701171875, 0.0274505615234375, -0.006160736083984375, -0.0157318115234375, -0.048980712890625, 0.0200653076171875, -0.0233001708984375, -0.0157318115234375, -0.0263519287109375, 0.042999267578125, 0.0308685302734375, 0.046844482421875, -0.026214599609375, -0.003063201904296875, 0.0341796875, -0.060333251953125, -0.0187835693359375, 0.018829345703125, 0.031219482421875, 0.0230712890625, -0.0177764892578125, 0.0016317367553710938, 0.0282135009765625, -0.027069091796875, 0.03497314453125, 0.0289459228515625, -0.0224761962890625, 0.00395965576171875, 0.0007834434509277344, -0.00992584228515625, 0.00910186767578125, 0.031341552734375, 0.01023101806640625, 0.005786895751953125, -0.01020050048828125, 0.0127105712890625, 0.01233673095703125, -0.0026226043701171875, -0.00824737548828125, 0.00013875961303710938, 0.0157470703125, -0.04205322265625, 0.01296234130859375, 0.048858642578125, 0.08428955078125, -0.0814208984375, -0.0134735107421875, -0.0270843505859375, 0.00479888916015625, 0.0055999755859375, -0.0202789306640625, 0.002590179443359375, -0.003116607666015625, -0.01509857177734375, -0.0093536376953125, -0.049591064453125, 0.0247344970703125, 0.006320953369140625, -0.0301361083984375, -0.0024051666259765625, 0.006458282470703125, 0.031707763671875, 0.00800323486328125, 0.000028252601623535156, 0.0243682861328125, -0.00563812255859375, -0.0246429443359375, -0.0654296875, 0.06121826171875, -0.0445556640625, 0.06292724609375, 0.0755615234375, -0.03216552734375, 0.0465087890625, 0.00782012939453125, -0.0005650520324707031, 0.0197601318359375, 0.003734588623046875, 0.0056610107421875, -0.0047454833984375, -0.040435791015625, -0.007419586181640625, 0.006427764892578125, 0.01558685302734375, -0.03228759765625, -0.06280517578125, -0.0217437744140625, -0.006603240966796875, -0.0850830078125, -0.0300140380859375, 0.01326751708984375, -0.045562744140625, 0.01483917236328125, 0.0229644775390625, -0.01319122314453125, -0.032562255859375, 0.07012939453125, 0.019195556640625, -0.00284576416015625, -0.03533935546875, -0.0171966552734375, -0.019622802734375, -0.00518035888671875, 0.00487518310546875, 0.004062652587890625, -0.0201873779296875, 0.006221771240234375, 0.037841796875, -0.00019049644470214844, -0.041839599609375, 0.01776123046875, 0.0196380615234375, -0.00324249267578125, 0.012725830078125, -0.033782958984375, 0.009124755859375, 0.0074462890625, 0.01241302490234375, 0.03192138671875, -0.0194244384765625, 0.0196380615234375, -0.0343017578125, 0.0015745162963867188, 0.01404571533203125, 0.0017566680908203125, 0.002918243408203125, -0.016082763671875, -0.00946807861328125, -0.0304718017578125, -0.05206298828125, -0.0224761962890625, -0.01168060302734375, -0.05108642578125, -0.023651123046875, 0.03240966796875, 0.00838470458984375, 0.01323699951171875, -0.040283203125, 0.03875732421875, 0.0058441162109375, 0.0357666015625, -0.006832122802734375, 0.0196380615234375, 0.003406524658203125, 0.035552978515625, -0.051788330078125, 0.050750732421875, 0.0008015632629394531, -0.01490020751953125, 0.0111083984375, -0.00769805908203125, -0.035247802734375, 0.02410888671875, -0.03936767578125, -0.0911865234375, 0.0305633544921875, -0.07904052734375, -0.033721923828125, -0.03448486328125, 0.0021457672119140625, 0.0218658447265625, 0.08880615234375, -0.024261474609375, -0.00855255126953125, -0.036376953125, 0.0032520294189453125, -0.01123046875, -0.047332763671875, -0.0010128021240234375, -0.00392913818359375, -0.06707763671875, 0.0011453628540039062, -0.0188446044921875, -0.015869140625, -0.018402099609375, -0.031219482421875, -0.0278167724609375, -0.048126220703125, 0.010650634765625, 0.020477294921875, -0.0268707275390625, 0.02947998046875, -0.048828125, 0.0302581787109375, -0.0201568603515625, -0.007663726806640625, -0.07470703125, -0.00782012939453125, 0.0209808349609375, 0.040191650390625, -0.0157012939453125, 0.0031528472900390625, -0.022552490234375, 0.0428466796875, -0.0015935897827148438, -0.0019330978393554688, 0.0193634033203125, 0.00040340423583984375, 0.00897216796875, 0.020355224609375, 0.00848388671875, -0.00933074951171875, 0.0170135498046875, -0.0198516845703125, -0.03924560546875, -0.066162109375, -0.0484619140625, -0.0255126953125, 0.0267181396484375, -0.042327880859375, -0.0562744140625, -0.041656494140625, -0.06683349609375, 0.025604248046875, -0.021942138671875, -0.0213775634765625, -0.059326171875, -0.08465576171875, 0.023193359375, -0.0018510818481445312, -0.033966064453125, -0.00202178955078125, 0.033599853515625, 0.0268096923828125, -0.01540374755859375, -0.004756927490234375, 0.01023101806640625, 0.03125, -0.031646728515625, 0.048309326171875, 0.0017099380493164062, -0.0209808349609375, 0.08056640625, -0.026580810546875, 0.0291748046875, -0.044525146484375, 0.05621337890625, -0.0318603515625, -0.0236968994140625, 0.048065185546875, -0.0213775634765625, 0.009429931640625, 0.035430908203125, 0.0258331298828125, -0.04180908203125, -0.006717681884765625, 0.022369384765625, 0.01053619384765625, 0.01227569580078125, -0.0018510818481445312, -0.01027679443359375, -0.004177093505859375, 0.04937744140625, 0.0211334228515625, 0.04888916015625, -0.013519287109375, 0.0183868408203125, 0.020050048828125, -0.0107421875, 0.029327392578125, 0.0282440185546875, -0.0172576904296875, 0.0333251953125, -0.0130157470703125, -0.050384521484375, 0.00017750263214111328, -0.0002751350402832031, 0.002086639404296875, 0.0007724761962890625, -0.003406524658203125, -0.0347900390625, -0.01514434814453125, 0.0007305145263671875, -0.0010423660278320312, -0.013519287109375, 0.0670166015625, 0.01061248779296875, -0.040771484375, -0.017364501953125, -0.061279296875, -0.032684326171875, -0.0853271484375, 0.0104217529296875, -0.004199981689453125, -0.00464630126953125, 0.03302001953125, 0.0413818359375, 0.00505828857421875, 0.03521728515625, -0.0186309814453125, -0.0225982666015625, 0.01328277587890625, -0.0033550262451171875, 0.0165557861328125, 0.02435302734375, -0.00208282470703125, -0.0242767333984375, 0.06396484375, -0.0693359375, 0.0015974044799804688, 0.047607421875, 0.1148681640625, -0.0303955078125, -0.0689697265625, 0.01294708251953125, -0.061279296875, -0.00801849365234375, 0.06109619140625, 0.01214599609375, -0.06793212890625, -0.0217742919921875, -0.0012712478637695312, 0.0146331787109375, -0.028472900390625, -0.0235137939453125, 0.006351470947265625, -0.0289154052734375, -0.016937255859375, 0.05108642578125, -0.0562744140625, 0.00296783447265625, 0.0236053466796875, -0.020263671875, -0.0271148681640625, -0.00826263427734375, -0.0280914306640625, -0.00971221923828125, -0.019287109375, 0.00017070770263671875, 0.041778564453125, 0.01216888427734375, 0.045013427734375, -0.0129241943359375, -0.041748046875, 0.016082763671875, -0.01491546630859375, 0.08837890625, 0.0379638671875, -0.05096435546875, -0.0141754150390625, -0.043426513671875, -0.01397705078125, -0.004955291748046875, -0.023468017578125, -0.040771484375, -0.006847381591796875, 0.0311279296875, 0.02215576171875, 0.00946044921875, -0.044189453125, -0.01319122314453125, 0.00572967529296875, 0.0267791748046875, 0.0291290283203125, 0.0017919540405273438, 0.053009033203125, -0.038238525390625, 0.03656005859375, 0.004940032958984375, 0.0299835205078125, -0.0011682510375976562, -0.0257110595703125, 0.0182037353515625, -0.019073486328125, -0.010955810546875, 0.01035308837890625, -0.02001953125, -0.0298614501953125, 0.00814056396484375, -0.00518035888671875, -0.029998779296875, -0.03076171875, 0.000690460205078125, -0.045135498046875, 0.048309326171875, -0.035003662109375, -0.004924774169921875, -0.04766845703125, -0.0015459060668945312, -0.004634857177734375, 0.01092529296875, -0.0416259765625, 0.04107666015625, 0.017852783203125, 0.0286712646484375, -0.0202178955078125, -0.0178070068359375, 0.036468505859375, 0.0601806640625, 0.004180908203125, 0.044586181640625, 0.012939453125, 0.01165771484375, 0.0243377685546875, 0.06121826171875, -0.0131378173828125, -0.02667236328125, 0.07586669921875, 0.0244140625, -0.0282440185546875, 0.0305023193359375, -0.03106689453125, 0.01309967041015625, 0.034515380859375, 0.028167724609375, -0.08026123046875, 0.0173797607421875, -0.026397705078125, 0.0162811279296875, 0.061859130859375, -0.022308349609375, 0.0298919677734375, -0.005176544189453125, 0.0193939208984375, -0.0006494522094726562, -0.0290679931640625, -0.0167694091796875, -0.0241241455078125, -0.0035839080810546875, -0.00415802001953125, 0.019622802734375, 0.0052642822265625, -0.0606689453125, -0.007083892822265625, 0.058807373046875, -0.02081298828125, -0.0379638671875, -0.02825927734375, 0.0298309326171875, -0.038818359375, -0.049163818359375, 0.024505615234375, -0.040618896484375, 0.037139892578125, 0.035858154296875, -0.0225830078125, -0.0021190643310546875, 0.0494384765625, -0.0306854248046875, 0.0283355712890625, 0.02093505859375, -0.05718994140625, -0.03704833984375, -0.0183258056640625, 0.0007548332214355469, 0.005672454833984375, -0.044891357421875, 0.02276611328125, -0.04730224609375, -0.006439208984375, -0.00908660888671875, 0.01084136962890625, 0.0753173828125, -0.032012939453125, -0.0224151611328125, 0.00406646728515625, 0.0203704833984375, 0.0105743408203125, -0.02587890625, 0.042724609375, -0.00891876220703125, 0.0225067138671875, -0.014892578125, -0.0067901611328125, -0.057647705078125, -0.0732421875, -0.06768798828125, 0.1116943359375, -0.057098388671875, 0.0780029296875, 0.025421142578125, 0.0282440185546875, 0.003314971923828125, 0.0172576904296875, -0.01422882080078125, 0.052215576171875, 0.027130126953125, 0.031341552734375, 0.004703521728515625, -0.0080718994140625, 0.0316162109375, 0.050567626953125, 0.057037353515625, 0.0190277099609375, -0.04547119140625, -0.0104827880859375, 0.05169677734375, 0.031707763671875, 0.0018167495727539062, 0.04327392578125, -0.034912109375, 0.010223388671875, 0.0178375244140625, -0.05078125, 0.01776123046875, -0.034912109375, -0.038970947265625, -0.0333251953125, 0.01355743408203125, 0.01366424560546875, -0.0182647705078125, 0.01428985595703125, -0.03704833984375, -0.01139068603515625, 0.0361328125, -0.0081787109375, 0.005512237548828125, -0.0070343017578125, 0.017730712890625, -0.0791015625, 0.01531982421875, -0.0304718017578125, 0.042388916015625, 0.0035190582275390625, -0.0050506591796875, 0.0048828125, 0.01010894775390625, 0.0052947998046875, -0.0091400146484375, 0.00856781005859375, 0.03497314453125, -0.038909912109375, -0.007076263427734375, -0.005115509033203125, 0.01351165771484375, -0.0299835205078125, -0.033935546875, 0.03125, -0.005741119384765625, 0.0057830810546875, -0.0106201171875, 0.0269775390625, 0.0129547119140625, 0.0071258544921875, -0.01366424560546875, 0.0199737548828125, -0.022247314453125, -0.01094818115234375, -0.021148681640625, 0.01092529296875, 0.021209716796875, 0.0240936279296875, -0.01837158203125, -0.0132293701171875, -0.0306396484375, 0.0210113525390625, 0.00010889768600463867, -0.05499267578125, 0.00479888916015625, 0.01220703125, 0.03790283203125, -0.00992584228515625, 0.02423095703125, -0.005977630615234375, -0.0367431640625, 0.0296783447265625, -0.021728515625, 0.06390380859375, -0.06988525390625, -0.0238800048828125, 0.014617919921875, 0.051116943359375, 0.039825439453125, 0.0096893310546875, 0.0300445556640625, 0.014678955078125, 0.00024890899658203125, 0.0018072128295898438, -0.00261688232421875, -0.021697998046875, 0.03509521484375, -0.03387451171875, 0.0335693359375, 0.0140380859375, -0.0014085769653320312, -0.0297698974609375, -0.01107025146484375, 0.059173583984375, 0.0099945068359375, 0.0184173583984375, 0.00202178955078125, -0.02685546875, 0.023101806640625, 0.0256500244140625, 0.0518798828125, 0.0362548828125, -0.07177734375, -0.0258331298828125, -0.0164337158203125, -0.02032470703125, 0.038055419921875, 0.040771484375, -0.03826904296875, 0.02630615234375, -0.04205322265625, -0.0027332305908203125, 0.0195465087890625, -0.036041259765625, -0.01421356201171875, -0.0051116943359375, 0.00365447998046875, -0.020599365234375, -0.04437255859375, 0.002643585205078125, -0.0039825439453125, -0.0165863037109375, 0.0128173828125, 0.11328125, -0.0206451416015625, -0.010894775390625, -0.0024280548095703125, 0.023040771484375, -0.020355224609375, -0.0085601806640625, -0.00705718994140625, -0.008331298828125, 0.0103912353515625, -0.0008959770202636719, -0.04730224609375, 0.0367431640625, 0.0031585693359375, -0.0258636474609375, 0.0450439453125, -0.01522064208984375, -0.007106781005859375, -0.0144500732421875, -0.004566192626953125, -0.03790283203125, -0.033843994140625, -0.0369873046875, -0.0114288330078125, 0.005558013916015625, -0.0113677978515625, -0.00884246826171875, 0.045684814453125, 0.0309295654296875, -0.0045013427734375, 0.0082855224609375, -0.0164947509765625, 0.031890869140625, 0.0298004150390625, -0.0002465248107910156, -0.053131103515625, 0.0089569091796875, 0.004779815673828125, -0.004329681396484375, 0.0169219970703125, 0.0170135498046875, 0.035064697265625, -0.049774169921875, -0.06268310546875, -0.0249786376953125, -0.00650787353515625, 0.01222991943359375, -0.0028781890869140625, -0.03240966796875, -0.031768798828125, -0.036651611328125, -0.060791015625, 0.006214141845703125, -0.032562255859375, -0.00995635986328125, 0.03729248046875, -0.0148162841796875, 0.00107574462890625, 0.009796142578125, -0.01153564453125, 0.0157318115234375, -0.0034332275390625, -0.04669189453125, 0.017303466796875, -0.0264129638671875, 0.0290985107421875, -0.044036865234375, 0.04058837890625, -0.031524658203125, 0.026611328125, -0.0189666748046875, -0.03631591796875, -0.048553466796875, 0.05206298828125, -0.054290771484375, 0.025634765625, 0.07000732421875, -0.026611328125, -0.003826141357421875, -0.0162200927734375, 0.011566162109375, 0.03460693359375, -0.033935546875, -0.04266357421875, -0.0302276611328125, 0.007045745849609375, 0.043914794921875, -0.00470733642578125, -0.01448822021484375, 0.010467529296875, -0.004840850830078125, -0.039947509765625, -0.0035228729248046875, -0.01116180419921875, -0.0435791015625, -0.02392578125, 0.0138092041015625, 0.001544952392578125, -0.016937255859375, -0.033416748046875, 0.052886962890625, 0.009521484375, -0.012115478515625, 0.00347900390625, -0.01849365234375, 0.0160064697265625, 0.005168914794921875, 0.0160675048828125, 0.021759033203125, -0.00960540771484375, 0.0291900634765625, 0.0246124267578125, 0.0794677734375, 0.06243896484375, 0.0026702880859375, -0.028045654296875, 0.00104522705078125, 0.05224609375, 0.0660400390625, 0.0131988525390625, 0.0640869140625, 0.05535888671875, -0.045440673828125, -0.0203399658203125, 0.021087646484375, -0.016387939453125, 0.0237884521484375, 0.035736083984375, 0.0848388671875, 0.0123291015625, -0.030670166015625, -0.0179595947265625, -0.0081939697265625, -0.00814056396484375, 0.009521484375, 0.0099029541015625, -0.03302001953125, 0.01206207275390625, -0.01097869873046875, 0.003292083740234375, -0.024871826171875, -0.0236663818359375, -0.021453857421875, -0.01453399658203125, 0.01043701171875, 0.00838470458984375, 0.0089111328125, 0.0198516845703125, 0.03411865234375, -0.027984619140625, -0.003276824951171875, -0.002864837646484375, -0.0008697509765625, -0.0023555755615234375, -0.024658203125, 0.0283660888671875, 0.034149169921875, -0.0184783935546875, 0.0087432861328125, 0.031524658203125, 0.0147552490234375, -0.003223419189453125, -0.01398468017578125, -0.0119781494140625, 0.024658203125, 0.005870819091796875, 0.015045166015625, -0.0153961181640625, 0.0029125213623046875, 0.0056610107421875, 0.01110076904296875, 0.0090789794921875, -0.01910400390625, -0.015380859375, 0.02105712890625, 0.0037403106689453125, -0.012847900390625, 0.0347900390625, -0.0347900390625, 0.0166778564453125, 0.0216522216796875, 0.024871826171875, -0.0106353759765625, 0.0286102294921875, -0.036590576171875, 0.00970458984375, 0.01349639892578125 ]
70864de1092f417d6b8109371db4bb5a9030af7d
Wordpress Stackexchange Q: wp_localize_script with boolean and init I have problem with wp_localize_script, That I cannot get boolean and int as variable wp_enqueue_script( 'helloworld' , 'helloworld.js', false, '1.0.0', true); $site_config = array(); $site_config['boo'] = (bool)true; $site_config['number'] = (int)1; wp_localize_script( 'helloworld' , 'site_config' , $site_config ); Why I getting : var site_config = {"boo":"1","number":"1"}; Why not : var site_config = {"boo":true,"number":1}; * *Wordpress 4.6 (latest) *PHP 5.6.10 Does not it fixed ? https://core.trac.wordpress.org/ticket/25280 , I do anything wrong or missing something ? A: I just do something like this so long : wp_add_inline_script('helloworld','var site_config ='.json_encode($site_config));
Q: wp_localize_script with boolean and init I have problem with wp_localize_script, That I cannot get boolean and int as variable wp_enqueue_script( 'helloworld' , 'helloworld.js', false, '1.0.0', true); $site_config = array(); $site_config['boo'] = (bool)true; $site_config['number'] = (int)1; wp_localize_script( 'helloworld' , 'site_config' , $site_config ); Why I getting : var site_config = {"boo":"1","number":"1"}; Why not : var site_config = {"boo":true,"number":1}; * *Wordpress 4.6 (latest) *PHP 5.6.10 Does not it fixed ? https://core.trac.wordpress.org/ticket/25280 , I do anything wrong or missing something ? A: I just do something like this so long : wp_add_inline_script('helloworld','var site_config ='.json_encode($site_config)); A: Why part: The Why part can be found within the WP_Scripts::localize() method: foreach ( (array) $l10n as $key => $value ) { if ( !is_scalar($value) ) continue; $l10n[$key] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8'); } where we note the (string) casting. Workarounds: The latest proposed patch suggests replacing is_scalar() with is_string() and remove the (string) cast. That would work e.g. in a custom wrapper. But I don't think it's the way to go here, because the core wp_scripts()->localize() method can always change in the future. I also think it's too hacky to modify the data through the methods: wp_scripts()->get_data( $handle, 'data' ) and wp_scripts()->add_data( $handle, 'data', $data ) Doing it properly, we might end up writing a duplicate wrapper for wp_scripts()->localize() ;-) A more flexible workaround might be to use the core function: wp_add_inline_script( $handle, $data, $position )` to add our dynamic non-string values. A: If Boolean value is true then it will return always 1 or if Boolean value is false then it will return empty that is why you're getting 1 in case of true. Below code is tested on my locally project. Copy and paste it exactly //Add it in **functions.php** function load_localize_scripts() { wp_enqueue_script('localize_script', get_template_directory_uri() . '/js/localize_script.js', array(), '1.0.0', true ); wp_localize_script('localize_script', 'localize_scripts_vars', array( 'boolean' => true, // it will return 1 'integer' => 10 // it will always return integre ) ); } add_action('wp_enqueue_scripts', 'load_localize_scripts'); //Add this in **localize_script.js** jQuery(document).ready(function() { var site_config; if (localize_scripts_vars.boolean == '1') { site_config = {"boolean":'true',"number":localize_scripts_vars.integer}; console.log(site_config); } else if (localize_scripts_vars.boolean == '' || localize_scripts_vars.boolean == NULL) { site_config = {"boolean":'false',"number":localize_scripts_vars.integer}; console.log(site_config); }; }); You can see the consol result too A: If you wrap your booleans in an array, they come out clean: $settings = [ 'booleans' => [ 'foo' => true, 'bar' => false, ], ]; wp_localize_script('my-script-handle', 'mySettings', $settings); will render: <script type='text/javascript'> /* <![CDATA[ */ var mySettings = {"booleans":{"foo":true;"bar":false}}; /* ]]> */ </script> Then you can access them cleanly from your script: console.log( mySettings.booleans.foo === true ); // true console.log( mySettings.booleans.bar === false ); // true
wordpress
{ "language": "en", "length": 432, "provenance": "stackexchange_00019.jsonl.gz:467973", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/237854" }
[ -0.003513336181640625, -0.0411376953125, -0.0244598388671875, -0.033294677734375, -0.0267181396484375, -0.0111083984375, -0.0174713134765625, 0.016754150390625, 0.0120391845703125, 0.003753662109375, -0.043365478515625, 0.0175323486328125, -0.047576904296875, -0.00017058849334716797, -0.01543426513671875, -0.046783447265625, 0.039306640625, -0.016510009765625, -0.01024627685546875, -0.00250244140625, -0.0095367431640625, 0.0203704833984375, -0.025238037109375, 0.0679931640625, 0.055419921875, -0.07049560546875, 0.043365478515625, -0.00345611572265625, 0.01971435546875, -0.01763916015625, 0.044189453125, 0.01276397705078125, 0.0404052734375, 0.0013971328735351562, -0.018280029296875, 0.00311279296875, -0.006931304931640625, 0.0030956268310546875, -0.003520965576171875, 0.0426025390625, 0.0266876220703125, -0.0261383056640625, -0.0102081298828125, 0.04852294921875, -0.00911712646484375, -0.0296173095703125, 0.0219573974609375, -0.0218048095703125, -0.01444244384765625, 0.018585205078125, -0.021209716796875, 0.0272369384765625, -0.00510406494140625, 0.01097869873046875, 0.0169830322265625, -0.006481170654296875, -0.0179443359375, -0.04522705078125, 0.00927734375, 0.09661865234375, 0.0139007568359375, 0.01184844970703125, -0.0035915374755859375, -0.06011962890625, -0.004695892333984375, -0.0033111572265625, -0.01605224609375, 0.01270294189453125, 0.01200103759765625, -0.0008769035339355469, 0.02288818359375, 0.0035266876220703125, 0.000659942626953125, -0.04730224609375, -0.0489501953125, 0.041595458984375, -0.0323486328125, -0.01262664794921875, 0.021331787109375, -0.033966064453125, 0.0198211669921875, -0.006916046142578125, 0.016387939453125, 0.01690673828125, -0.0029277801513671875, 0.024932861328125, 0.00046372413635253906, -0.025146484375, -0.0031280517578125, -0.053009033203125, -0.009185791015625, -0.02032470703125, -0.0560302734375, 0.0107269287109375, 0.00688934326171875, -0.056396484375, 0.015777587890625, 0.0277862548828125, -0.00676727294921875, 0.017791748046875, -0.023468017578125, -0.0026874542236328125, -0.006439208984375, -0.0195465087890625, 0.0283966064453125, 0.0401611328125, -0.016693115234375, 0.003681182861328125, 0.057403564453125, 0.025238037109375, 0.010040283203125, 0.03692626953125, -0.0146331787109375, -0.01983642578125, -0.01702880859375, 0.0167388916015625, -0.03790283203125, 0.01296234130859375, 0.005130767822265625, -0.000017940998077392578, 0.0041961669921875, 0.04315185546875, -0.0177764892578125, 0.01812744140625, -0.005126953125, -0.01026153564453125, 0.01065826416015625, -0.0154571533203125, -0.04400634765625, 0.049774169921875, -0.030853271484375, 0.002887725830078125, 0.0218963623046875, 0.0246734619140625, 0.004543304443359375, -0.033660888671875, 0.06512451171875, -0.0255584716796875, 0.009307861328125, 0.005489349365234375, -0.001377105712890625, 0.003173828125, 0.004741668701171875, -0.00649261474609375, -0.0215911865234375, 0.036651611328125, 0.01062774658203125, -0.0095367431640625, -0.0087127685546875, -0.04290771484375, 0.00740814208984375, -0.050445556640625, 0.01861572265625, 0.0309906005859375, -0.0220947265625, 0.0103759765625, 0.01529693603515625, -0.00974273681640625, -0.02398681640625, -0.03167724609375, -0.028778076171875, -0.005626678466796875, -0.0018453598022460938, -0.035980224609375, -0.01824951171875, -0.0222625732421875, 0.0335693359375, 0.01177978515625, 0.01178741455078125, 0.044677734375, 0.010986328125, 0.0111541748046875, -0.0465087890625, -0.047760009765625, -0.0149078369140625, -0.0311279296875, -0.0196380615234375, 0.00975799560546875, -0.005184173583984375, 0.0009112358093261719, 0.01438140869140625, -0.0195159912109375, 0.01459503173828125, 0.0290374755859375, -0.05218505859375, -0.04034423828125, -0.01479339599609375, -0.0300750732421875, 0.06292724609375, -0.0208892822265625, 0.07818603515625, -0.03411865234375, -0.03778076171875, 0.0198974609375, -0.01555633544921875, -0.0163421630859375, 0.02099609375, 0.0223388671875, 0.00337982177734375, -0.039703369140625, 0.0357666015625, -0.0308990478515625, 0.033203125, -0.010284423828125, -0.04931640625, 0.0031528472900390625, -0.0180206298828125, 0.0157928466796875, 0.003448486328125, 0.01153564453125, 0.00919342041015625, 0.00658416748046875, -0.00937652587890625, -0.0047454833984375, -0.0033016204833984375, 0.015838623046875, -0.0286102294921875, 0.06744384765625, -0.007720947265625, 0.01366424560546875, 0.025604248046875, -0.047210693359375, 0.043365478515625, 0.0164947509765625, -0.01067352294921875, -0.0236358642578125, -0.0042266845703125, -0.0191802978515625, 0.0494384765625, -0.0264892578125, 0.08441162109375, 0.0310821533203125, -0.0175018310546875, 0.0060577392578125, -0.0164337158203125, -0.01331329345703125, -0.01123046875, -0.0845947265625, 0.010894775390625, 0.06207275390625, 0.038482666015625, 0.023101806640625, -0.023956298828125, -0.0248565673828125, 0.050445556640625, -0.009918212890625, 0.0032958984375, -0.01502227783203125, 0.0017547607421875, 0.056732177734375, -0.02593994140625, -0.0016984939575195312, 0.00478363037109375, -0.06689453125, -0.020660400390625, 0.04571533203125, -0.065673828125, -0.038330078125, 0.0408935546875, -0.00467681884765625, -0.009735107421875, 0.02569580078125, 0.053314208984375, -0.0225067138671875, 0.0222930908203125, -0.0191802978515625, -0.018524169921875, -0.0242462158203125, -0.04400634765625, 0.018341064453125, 0.042022705078125, -0.05511474609375, -0.021728515625, 0.00614166259765625, 0.006893157958984375, -0.037322998046875, -0.040374755859375, 0.0271759033203125, 0.00174713134765625, 0.0009102821350097656, -0.0124053955078125, -0.028472900390625, -0.032928466796875, -0.01311492919921875, 0.019256591796875, 0.0081787109375, 0.0187835693359375, 0.0113067626953125, 0.0306549072265625, -0.00229644775390625, 0.00765228271484375, 0.0211944580078125, -0.00823974609375, 0.035552978515625, 0.0310211181640625, -0.03753662109375, 0.018096923828125, -0.01392364501953125, 0.010040283203125, -0.020477294921875, 0.041168212890625, 0.048858642578125, -0.013397216796875, 0.00875091552734375, 0.01047515869140625, 0.007701873779296875, 0.039031982421875, 0.01361083984375, 0.01166534423828125, -0.0266265869140625, -0.025848388671875, -0.0195465087890625, 0.02978515625, 0.04736328125, 0.005268096923828125, -0.0251312255859375, -0.011474609375, 0.026153564453125, -0.0738525390625, -0.0987548828125, 0.00557708740234375, -0.0017786026000976562, 0.0213165283203125, 0.0212554931640625, 0.0206146240234375, -0.046234130859375, 0.033416748046875, 0.003101348876953125, -0.0014400482177734375, -0.02801513671875, -0.04888916015625, -0.044769287109375, -0.036529541015625, -0.0212249755859375, -0.01506805419921875, -0.026641845703125, 0.0041961669921875, 0.00620269775390625, 0.0119476318359375, 0.006137847900390625, 0.028839111328125, -0.011199951171875, -0.0098724365234375, -0.015167236328125, 0.0086517333984375, -0.00720977783203125, 0.006023406982421875, 0.0023441314697265625, -0.047149658203125, 0.002193450927734375, 0.0019521713256835938, -0.0369873046875, -0.01070404052734375, 0.0487060546875, 0.0006818771362304688, -0.0045928955078125, 0.0219879150390625, -0.002025604248046875, -0.041015625, -0.037017822265625, -0.041473388671875, 0.032684326171875, -0.01885986328125, 0.032257080078125, 0.0335693359375, -0.043060302734375, 0.01348114013671875, 0.0200653076171875, -0.023468017578125, -0.0096435546875, 0.009124755859375, -0.0262298583984375, 0.036865234375, -0.0121917724609375, -0.0208740234375, -0.0043792724609375, 0.06884765625, -0.0007328987121582031, -0.0203094482421875, 0.019256591796875, -0.0095367431640625, -0.0012054443359375, -0.020263671875, -0.0203399658203125, 0.039031982421875, 0.0254974365234375, 0.014068603515625, 0.033477783203125, 0.00522613525390625, -0.0244598388671875, -0.0220794677734375, 0.022796630859375, -0.0711669921875, 0.0025787353515625, 0.01128387451171875, 0.0443115234375, -0.06689453125, -0.0863037109375, -0.035736083984375, 0.00408172607421875, -0.039886474609375, 0.0216522216796875, 0.0017023086547851562, 0.0037078857421875, -0.0322265625, 0.00586700439453125, -0.018829345703125, -0.0355224609375, 0.05194091796875, -0.0176544189453125, 0.01708984375, 0.0115966796875, 0.0239105224609375, -0.016357421875, -0.031890869140625, -0.01172637939453125, -0.1005859375, -0.0141143798828125, -0.01715087890625, 0.0755615234375, -0.0008592605590820312, -0.006221771240234375, -0.046173095703125, 0.03253173828125, -0.022674560546875, -0.01837158203125, 0.010711669921875, 0.0230865478515625, -0.02130126953125, 0.046295166015625, -0.0035419464111328125, -0.01129150390625, 0.0030841827392578125, 0.016326904296875, -0.0276336669921875, -0.002368927001953125, -0.0242919921875, -0.054229736328125, 0.0159454345703125, -0.0562744140625, -0.0193023681640625, -0.00464630126953125, -0.0207977294921875, 0.01666259765625, -0.01236724853515625, 0.005588531494140625, -0.0095367431640625, -0.041595458984375, 0.044586181640625, -0.0240020751953125, 0.005962371826171875, -0.017486572265625, 0.07080078125, 0.01934814453125, -0.01287078857421875, 0.0145416259765625, -0.009735107421875, -0.0035228729248046875, 0.0268096923828125, 0.05255126953125, 0.004322052001953125, -0.00513458251953125, 0.0182647705078125, 0.006622314453125, 0.023345947265625, 0.004070281982421875, 0.0124053955078125, 0.0278778076171875, -0.01021575927734375, 0.0128936767578125, 0.0517578125, -0.04510498046875, 0.042877197265625, 0.0160980224609375, -0.0221710205078125, 0.049407958984375, 0.0084991455078125, -0.035919189453125, -0.0200347900390625, 0.005733489990234375, -0.083251953125, 0.034210205078125, -0.0196990966796875, -0.00815582275390625, -0.035797119140625, 0.0180511474609375, 0.024444580078125, 0.01433563232421875, 0.006565093994140625, 0.025177001953125, 0.038360595703125, -0.0207977294921875, 0.0172271728515625, 0.039154052734375, -0.00942230224609375, -0.00823974609375, 0.0008955001831054688, 0.045654296875, -0.02691650390625, -0.02337646484375, -0.05950927734375, 0.01140594482421875, 0.01543426513671875, 0.029022216796875, 0.0367431640625, 0.031463623046875, -0.01122283935546875, -0.0292205810546875, -0.00775146484375, 0.0121917724609375, 0.00640106201171875, -0.02679443359375, 0.005970001220703125, -0.00635528564453125, -0.006893157958984375, -0.03436279296875, 0.05792236328125, 0.0141448974609375, 0.0023250579833984375, -0.0225830078125, -0.0018167495727539062, -0.01084136962890625, 0.037445068359375, 0.0218048095703125, -0.03271484375, -0.01154327392578125, 0.03485107421875, 0.00975799560546875, -0.0003619194030761719, 0.0047607421875, 0.037353515625, -0.007701873779296875, -0.0206146240234375, -0.0087127685546875, 0.01493072509765625, 0.01068878173828125, -0.035125732421875, 0.046875, -0.0036869049072265625, -0.0518798828125, -0.034454345703125, -0.0643310546875, 0.007022857666015625, -0.0222015380859375, 0.029541015625, -0.0007877349853515625, -0.015045166015625, -0.0264129638671875, 0.0247955322265625, -0.0260772705078125, -0.042877197265625, -0.017578125, 0.0093231201171875, 0.0030231475830078125, -0.00012874603271484375, -0.0626220703125, -0.04345703125, -0.003284454345703125, 0.007167816162109375, 0.0288543701171875, 0.039581298828125, 0.0218353271484375, -0.056884765625, -0.006053924560546875, -0.006671905517578125, -0.013702392578125, 0.033294677734375, -0.042022705078125, 0.0007119178771972656, -0.007656097412109375, -0.0235748291015625, -0.0133819580078125, -0.040802001953125, -0.051971435546875, -0.03314208984375, 0.0017919540405273438, -0.001552581787109375, 0.03961181640625, -0.0237579345703125, -0.0182647705078125, 0.0003859996795654297, 0.0178680419921875, 0.0098114013671875, 0.0784912109375, -0.036590576171875, 0.06671142578125, 0.00823211669921875, -0.004245758056640625, -0.01091766357421875, 0.045257568359375, 0.0033130645751953125, 0.0067596435546875, 0.0297698974609375, -0.034698486328125, -0.0297088623046875, -0.01158905029296875, -0.0023956298828125, -0.034576416015625, -0.0286102294921875, -0.0259552001953125, 0.049346923828125, 0.031646728515625, 0.0196380615234375, 0.00382232666015625, -0.06512451171875, 0.029388427734375, 0.040618896484375, 0.03729248046875, -0.0211334228515625, -0.03570556640625, -0.0022258758544921875, -0.0004074573516845703, 0.01187896728515625, 0.0008025169372558594, -0.0222320556640625, 0.005596160888671875, -0.049163818359375, 0.01168060302734375, 0.042724609375, 0.04351806640625, 0.058319091796875, -0.0135650634765625, 0.0262908935546875, 0.0205535888671875, 0.01380157470703125, -0.036529541015625, -0.00775909423828125, 0.0204010009765625, 0.004993438720703125, -0.0181732177734375, 0.0033817291259765625, -0.01611328125, 0.0100250244140625, 0.018798828125, 0.07342529296875, -0.05877685546875, 0.01137542724609375, 0.06597900390625, -0.02349853515625, -0.068359375, -0.00860595703125, 0.0311126708984375, -0.01534271240234375, 0.03155517578125, 0.0285491943359375, 0.0079498291015625, 0.03277587890625, -0.0173492431640625, -0.01313018798828125, 0.00577545166015625, -0.0019025802612304688, 0.0197906494140625, -0.0116119384765625, 0.04730224609375, 0.004184722900390625, 0.0499267578125, 0.0270843505859375, 0.02630615234375, -0.0179595947265625, -0.06280517578125, -0.07098388671875, -0.053680419921875, 0.0081024169921875, -0.08984375, -0.0069427490234375, -0.03814697265625, 0.034088134765625, 0.0286102294921875, -0.0237884521484375, -0.01177978515625, -0.001194000244140625, 0.0012273788452148438, -0.01213836669921875, -0.005611419677734375, 0.010650634765625, 0.0343017578125, -0.049896240234375, 0.012939453125, -0.032958984375, 0.006771087646484375, 0.006641387939453125, 0.0157318115234375, 0.034149169921875, -0.02783203125, -0.01320648193359375, 0.020233154296875, -0.00543975830078125, 0.005706787109375, -0.00936126708984375, 0.051239013671875, -0.08087158203125, -0.08538818359375, 0.00937652587890625, -0.10821533203125, -0.0291900634765625, -0.024322509765625, -0.014678955078125, 0.0887451171875, -0.0242919921875, 0.007259368896484375, 0.0338134765625, 0.034698486328125, -0.017608642578125, 0.0298004150390625, -0.0196380615234375, 0.03729248046875, 0.01209259033203125, 0.0232086181640625, -0.022491455078125, -0.0005402565002441406, 0.0122833251953125, 0.037384033203125, -0.03387451171875, -0.01522064208984375, 0.062103271484375, -0.0057220458984375, -0.0244293212890625, -0.011505126953125, -0.034759521484375, -0.00656890869140625, 0.025390625, 0.0300445556640625, 0.018218994140625, -0.033538818359375, 0.02142333984375, -0.0287322998046875, -0.006267547607421875, 0.0269622802734375, 0.0172576904296875, 0.00032591819763183594, -0.0006909370422363281, 0.0276031494140625, -0.055999755859375, 0.00516510009765625, 0.032562255859375, 0.009857177734375, -0.0242767333984375, 0.026702880859375, -0.041473388671875, 0.10394287109375, -0.0217742919921875, 0.017547607421875, 0.0012731552124023438, -0.0113677978515625, -0.008209228515625, 0.0009531974792480469, 0.01409912109375, -0.00977325439453125, -0.0257568359375, -0.0247955322265625, 0.015777587890625, -0.04119873046875, 0.01009368896484375, 0.009765625, 0.00858306884765625, 0.004459381103515625, 0.04827880859375, 0.036468505859375, 0.0046539306640625, -0.04058837890625, -0.051177978515625, 0.00685882568359375, 0.0004031658172607422, 0.0011320114135742188, -0.0030384063720703125, 0.0085296630859375, 0.00972747802734375, 0.0728759765625, -0.0030498504638671875, 0.0052337646484375, 0.019775390625, 0.00424957275390625, 0.01380157470703125, 0.07623291015625, -0.057159423828125, 0.0182647705078125, -0.0849609375, 0.008392333984375, -0.014556884765625, 0.111572265625, 0.06622314453125, 0.0482177734375, -0.03192138671875, -0.0767822265625, -0.0152435302734375, 0.01104736328125, 0.0037403106689453125, 0.01224517822265625, -0.0239410400390625, 0.0008864402770996094, 0.0089263916015625, 0.024566650390625, -0.0008945465087890625, -0.002010345458984375, 0.043701171875, 0.05718994140625, -0.0343017578125, -0.01073455810546875, 0.08551025390625, -0.00927734375, -0.0282440185546875, -0.0059356689453125, 0.0016107559204101562, 0.036163330078125, 0.0021533966064453125, 0.0302886962890625, 0.047332763671875, 0.007350921630859375, 0.0239105224609375, -0.02490234375, 0.019134521484375, -0.0350341796875, 0.01349639892578125, 0.0386962890625, 0.05889892578125, 0.04742431640625, 0.0208892822265625, 0.0231781005859375, -0.0101470947265625, -0.04351806640625, -0.0084991455078125, 0.020111083984375, -0.0156402587890625, 0.0352783203125, 0.038299560546875, -0.0177001953125, -0.0185546875, 0.058837890625, -0.0321044921875, -0.03399658203125, 0.04669189453125, -0.010345458984375, -0.032012939453125, -0.0190887451171875, -0.01035308837890625, 0.027801513671875, 0.0235137939453125, 0.0023059844970703125, 0.01070404052734375, 0.0229949951171875, -0.0140838623046875, 0.01403045654296875, -0.01464080810546875, 0.00817108154296875, -0.03582763671875, 0.027069091796875, 0.024688720703125, -0.007083892822265625, -0.035919189453125, 0.032745361328125, -0.00437164306640625, 0.00928497314453125, 0.03717041015625, -0.038909912109375, 0.01018524169921875, 0.0220489501953125, 0.0167694091796875, -0.033203125, -0.048248291015625, -0.050994873046875, -0.0002741813659667969, 0.029327392578125, 0.031036376953125, -0.020294189453125, -0.025634765625, -0.00165557861328125, -0.046356201171875, 0.0161895751953125, 0.01016998291015625, -0.0152740478515625, 0.01235198974609375, 0.01812744140625, -0.0020122528076171875, -0.01390838623046875, -0.01537322998046875, -0.027069091796875, 0.0285186767578125, -0.0150909423828125, -0.01163482666015625, 0.04498291015625, 0.03778076171875, 0.0234527587890625, 0.013916015625, 0.0043792724609375, -0.026763916015625, 0.06842041015625, -0.032379150390625, -0.0235595703125, -0.02294921875, -0.0035228729248046875, -0.035675048828125, -0.0213623046875, 0.00867462158203125, -0.0189056396484375, -0.0028476715087890625, 0.0269622802734375, -0.0030574798583984375, 0.01274871826171875, -0.03033447265625, -0.001682281494140625, -0.01458740234375, -0.039794921875, 0.04437255859375, -0.044952392578125, 0.0011053085327148438, -0.01404571533203125, -0.031524658203125, -0.0189056396484375, -0.009033203125, -0.03668212890625, 0.030517578125, 0.0179290771484375, 0.03741455078125, 0.05987548828125, -0.00553131103515625, -0.033660888671875, 0.041412353515625, 0.019378662109375, 0.08306884765625, -0.06927490234375, -0.0175018310546875, 0.047607421875, -0.0065155029296875, -0.037994384765625, -0.0908203125, 0.004566192626953125, -0.1044921875, 0.03948974609375, -0.0200653076171875, -0.0438232421875, -0.054962158203125, -0.0784912109375, -0.06976318359375, 0.05322265625, -0.0003769397735595703, -0.029998779296875, -0.03460693359375, -0.0215606689453125, 0.0237579345703125, 0.0024394989013671875, -0.026336669921875, -0.0036163330078125, -0.0849609375, -0.0110015869140625, 0.015350341796875, 0.0186004638671875, 0.030487060546875, -0.01177978515625, -0.04083251953125, 0.005084991455078125, -0.00514984130859375, 0.0100555419921875, 0.01096343994140625, 0.0078887939453125, -0.0071563720703125, 0.03985595703125, -0.02349853515625, -0.071533203125, -0.0306243896484375, -0.019317626953125, -0.011810302734375, -0.003398895263671875, -0.03692626953125, -0.040924072265625, 0.06658935546875, 0.005950927734375, 0.0164642333984375, 0.00853729248046875, -0.0236358642578125, -0.055450439453125, -0.038330078125, -0.042572021484375, 0.0275726318359375, -0.076904296875, 0.0168609619140625, 0.0004935264587402344, 0.0182342529296875, -0.0301513671875, -0.0149383544921875, -0.01397705078125, -0.041961669921875, 0.0163421630859375, 0.0187225341796875, 0.01442718505859375, -0.035125732421875, 0.045318603515625, -0.0235595703125, 0.028289794921875, 0.01611328125, 0.0285797119140625, 0.05218505859375, 0.0767822265625, -0.0484619140625, 0.0035877227783203125, 0.0157928466796875, 0.0212860107421875, -0.0079345703125, 0.023834228515625, -0.0006666183471679688, 0.036773681640625, -0.0131683349609375, 0.007007598876953125, 0.010040283203125, 0.0103912353515625, -0.043121337890625, 0.06683349609375, 0.0079498291015625, -0.0185394287109375, 0.003200531005859375, 0.0008387565612792969, -0.0162811279296875, 0.0269012451171875, -0.028472900390625, -0.00595855712890625, 0.0079345703125, -0.0538330078125, 0.0130767822265625, -0.0084686279296875, -0.006671905517578125, -0.02899169921875, -0.01248931884765625, -0.06439208984375, -0.0066375732421875, 0.0002589225769042969 ]
211105e8ff6adb8a4f9dd9ddcb8df7264ba67612
Wordpress Stackexchange Q: Replace Woocommerce Images I have a running eCommerce site, but I've recently created new product imagery for the entire site. The new images are named identical to the old images, so would simply dumping them via FTP work? Could my customers still have old cached versions in their browser which don't update to the newer models? I'm trying to avoid having to go through every single product and manually set the new images. I'm open to buying a plugin if there's one that'll help me with this. A: Unfortunately, trying to pull a fast one on the WordPress media library with FTP won't work. You'll need to import them through the WP admin so they get added to the database, resized, and whatever other special sauce WP adds. I've never used it, but this plugin sounds like it might be right up your alley. https://wordpress.org/plugins/enable-media-replace/
Q: Replace Woocommerce Images I have a running eCommerce site, but I've recently created new product imagery for the entire site. The new images are named identical to the old images, so would simply dumping them via FTP work? Could my customers still have old cached versions in their browser which don't update to the newer models? I'm trying to avoid having to go through every single product and manually set the new images. I'm open to buying a plugin if there's one that'll help me with this. A: Unfortunately, trying to pull a fast one on the WordPress media library with FTP won't work. You'll need to import them through the WP admin so they get added to the database, resized, and whatever other special sauce WP adds. I've never used it, but this plugin sounds like it might be right up your alley. https://wordpress.org/plugins/enable-media-replace/ A: Well, this can be relative easy if all media library was uploaded via Wordpress, so an update via FTP can be done. Once you have uploaded all new images (the main of each post), you have to run an update for thumbnails because WP takes the main image and creates thumbnails like: image20, the thumbnail will be image20-200x250 image20-640x380 and so on as your template requires. So via FTP you can update the main, but thumbnails need to be refreshed. For this you can run a plugin https://wordpress.org/plugins/force-regenerate-thumbnails/ this will create new thumbnails and will and delete the ones you do not need on your template.
wordpress
{ "language": "en", "length": 253, "provenance": "stackexchange_00019.jsonl.gz:468002", "question_score": "4", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/237954" }
[ 0.03070068359375, -0.00765228271484375, 0.0147857666015625, 0.02813720703125, -0.01018524169921875, -0.035125732421875, 0.0775146484375, -0.045013427734375, 0.037567138671875, 0.0198974609375, -0.0592041015625, -0.006900787353515625, 0.0152587890625, -0.0053863525390625, -0.030487060546875, -0.022125244140625, 0.03997802734375, -0.02203369140625, 0.043853759765625, 0.01143646240234375, -0.001522064208984375, 0.035888671875, 0.054412841796875, 0.03643798828125, 0.00730133056640625, -0.006809234619140625, 0.07635498046875, -0.023193359375, 0.02960205078125, -0.0090484619140625, 0.01580810546875, -0.02056884765625, -0.0012331008911132812, 0.026824951171875, -0.00787353515625, 0.0014734268188476562, 0.0079345703125, 0.005954742431640625, 0.012908935546875, 0.01023101806640625, 0.015838623046875, -0.004302978515625, 0.0484619140625, -0.00597381591796875, 0.0169677734375, -0.029571533203125, -0.000019729137420654297, -0.07171630859375, 0.025970458984375, 0.0086212158203125, 0.01219940185546875, 0.0234527587890625, 0.01363372802734375, 0.00804901123046875, -0.0110321044921875, -0.0193328857421875, -0.037200927734375, 0.051727294921875, 0.0024738311767578125, -0.0076141357421875, 0.00617218017578125, 0.04486083984375, 0.0019855499267578125, 0.03985595703125, 0.0169219970703125, -0.00664520263671875, 0.00585174560546875, 0.0297393798828125, -0.06280517578125, -0.006805419921875, 0.037994384765625, -0.0321044921875, 0.00424957275390625, -0.0205535888671875, 0.005218505859375, -0.0011911392211914062, -0.00803375244140625, -0.01097869873046875, 0.0226593017578125, 0.00720977783203125, 0.033477783203125, -0.0002636909484863281, 0.019561767578125, -0.057861328125, 0.037750244140625, -0.0418701171875, 0.0069122314453125, 0.01355743408203125, -0.02215576171875, -0.008941650390625, -0.0269317626953125, -0.0491943359375, -0.0219268798828125, 0.0460205078125, -0.01479339599609375, 0.01428985595703125, 0.0135955810546875, 0.0299835205078125, -0.0176544189453125, 0.054779052734375, -0.0168914794921875, -0.037750244140625, 0.061004638671875, -0.051300048828125, 0.00872039794921875, 0.0005807876586914062, 0.0025272369384765625, 0.0024089813232421875, 0.035736083984375, 0.0302886962890625, -0.0165557861328125, 0.0391845703125, -0.0023136138916015625, -0.04278564453125, 0.002483367919921875, 0.045684814453125, -0.0007991790771484375, 0.017120361328125, 0.0184326171875, 0.01125335693359375, 0.0143890380859375, 0.053314208984375, -0.037200927734375, -0.0001976490020751953, -0.0026912689208984375, 0.00664520263671875, 0.01004791259765625, -0.035614013671875, 0.0089111328125, -0.033294677734375, -0.042144775390625, 0.0279541015625, 0.065185546875, 0.03631591796875, 0.0292816162109375, -0.01088714599609375, 0.0086212158203125, 0.026458740234375, 0.01279449462890625, 0.00018715858459472656, 0.0282135009765625, -0.0306243896484375, -0.0082550048828125, 0.0242156982421875, 0.053466796875, -0.0017547607421875, -0.0243682861328125, 0.0362548828125, 0.06103515625, -0.0164031982421875, 0.043243408203125, -0.0257415771484375, 0.01519775390625, 0.0167999267578125, 0.048248291015625, 0.00037741661071777344, 0.097900390625, -0.038543701171875, 0.001007080078125, -0.04949951171875, -0.01480865478515625, 0.0035572052001953125, 0.0338134765625, -0.0225372314453125, -0.01190185546875, -0.0107421875, -0.012115478515625, 0.0018472671508789062, 0.0215301513671875, 0.0251617431640625, -0.004512786865234375, -0.052520751953125, 0.01163482666015625, 0.00867462158203125, -0.01305389404296875, 0.04315185546875, 0.005245208740234375, 0.04241943359375, 0.03265380859375, 0.010711669921875, -0.006359100341796875, -0.0274505615234375, 0.108154296875, -0.0257110595703125, -0.02978515625, -0.0285491943359375, 0.01019287109375, 0.01702880859375, 0.016143798828125, 0.03155517578125, 0.0197296142578125, 0.0004711151123046875, -0.031646728515625, 0.042816162109375, 0.01708984375, -0.022979736328125, 0.0150299072265625, 0.0198822021484375, 0.0092315673828125, -0.052490234375, 0.031646728515625, 0.0194854736328125, -0.0244903564453125, -0.01224517822265625, -0.07269287109375, 0.001995086669921875, -0.026824951171875, 0.0291290283203125, -0.0092926025390625, 0.034576416015625, 0.0128021240234375, 0.01520538330078125, -0.0193023681640625, -0.0204925537109375, -0.0030498504638671875, -0.0180816650390625, -0.028228759765625, 0.02667236328125, 0.003414154052734375, 0.04852294921875, -0.00580596923828125, -0.0189361572265625, 0.004150390625, -0.01023101806640625, 0.0005526542663574219, 0.02362060546875, -0.0252685546875, 0.01442718505859375, 0.0036411285400390625, 0.018096923828125, 0.017425537109375, 0.0142364501953125, -0.0119171142578125, 0.004913330078125, -0.020233154296875, -0.010467529296875, -0.00803375244140625, -0.05621337890625, 0.01140594482421875, 0.05511474609375, 0.02850341796875, 0.021942138671875, 0.0005435943603515625, 0.0011262893676757812, 0.061981201171875, 0.033416748046875, 0.038421630859375, -0.027984619140625, 0.0294647216796875, 0.015869140625, -0.0178985595703125, -0.042022705078125, 0.0367431640625, -0.048614501953125, 0.0283966064453125, 0.032989501953125, -0.01800537109375, -0.0077972412109375, 0.01140594482421875, -0.0015954971313476562, 0.018341064453125, 0.02020263671875, -0.01024627685546875, 0.003444671630859375, 0.043701171875, 0.0187225341796875, 0.01210784912109375, 0.001888275146484375, -0.0360107421875, 0.037933349609375, 0.0199737548828125, -0.06146240234375, 0.00788116455078125, 0.008392333984375, -0.02764892578125, 0.00217437744140625, -0.0309295654296875, 0.0250701904296875, -0.00026607513427734375, -0.0078887939453125, 0.01010894775390625, 0.01337432861328125, 0.02935791015625, 0.0019588470458984375, -0.01580810546875, -0.05169677734375, 0.04107666015625, 0.050689697265625, -0.025238037109375, -0.0237274169921875, 0.011077880859375, 0.0014495849609375, -0.01392364501953125, 0.00887298583984375, -0.0258941650390625, -0.0106201171875, 0.029693603515625, -0.061676025390625, 0.07208251953125, -0.051849365234375, 0.069091796875, 0.08038330078125, -0.021942138671875, 0.0247650146484375, 0.0055999755859375, 0.0009236335754394531, 0.0477294921875, -0.0031986236572265625, -0.009490966796875, 0.00341033935546875, -0.06512451171875, -0.0171051025390625, 0.01184844970703125, 0.0191497802734375, -0.0137176513671875, -0.036407470703125, -0.00603485107421875, -0.0005517005920410156, -0.06884765625, -0.040496826171875, -0.052825927734375, -0.0025959014892578125, -0.0196533203125, 0.020294189453125, 0.01459503173828125, 0.0146026611328125, 0.01212310791015625, 0.0082550048828125, 0.0022525787353515625, -0.022552490234375, 0.0026302337646484375, -0.040435791015625, -0.03509521484375, -0.0545654296875, 0.0088043212890625, -0.0017023086547851562, -0.0013475418090820312, 0.02850341796875, 0.003948211669921875, -0.0148162841796875, 0.0071868896484375, 0.061798095703125, 0.0249481201171875, -0.0010347366333007812, 0.035003662109375, -0.039215087890625, 0.004177093505859375, -0.0033245086669921875, 0.05963134765625, 0.041473388671875, -0.035491943359375, 0.003742218017578125, -0.0084228515625, -0.0140533447265625, -0.01212310791015625, 0.007511138916015625, 0.0163421630859375, -0.033477783203125, -0.011810302734375, -0.056732177734375, -0.0283660888671875, -0.0484619140625, -0.044830322265625, 0.0633544921875, 0.00946807861328125, 0.0200958251953125, -0.0284271240234375, 0.0404052734375, 0.031585693359375, 0.0216064453125, 0.0281524658203125, -0.0148468017578125, -0.0174560546875, 0.0107574462890625, -0.0083465576171875, -0.038421630859375, 0.01070404052734375, -0.0234375, 0.0193328857421875, 0.0027027130126953125, 0.010711669921875, -0.01296234130859375, -0.0013132095336914062, -0.03900146484375, -0.060028076171875, 0.036376953125, -0.0418701171875, 0.03631591796875, -0.0654296875, -0.0214385986328125, -0.0165863037109375, 0.11376953125, -0.00405120849609375, -0.0316162109375, -0.0020275115966796875, 0.0244140625, -0.038238525390625, -0.022216796875, -0.01293182373046875, -0.01337432861328125, -0.08294677734375, -0.033203125, 0.00507354736328125, -0.07086181640625, 0.054443359375, -0.06768798828125, -0.031158447265625, -0.041534423828125, 0.0108184814453125, -0.0180206298828125, -0.00015270709991455078, 0.0128631591796875, -0.0167694091796875, -0.01123046875, -0.0095062255859375, -0.033660888671875, -0.052886962890625, -0.00792694091796875, -0.03814697265625, 0.06561279296875, 0.031280517578125, -0.01666259765625, -0.0338134765625, 0.0194244384765625, -0.009033203125, 0.052276611328125, -0.0257568359375, 0.018524169921875, -0.0172882080078125, -0.039886474609375, -0.00827789306640625, -0.0305023193359375, -0.0176849365234375, -0.055755615234375, -0.03228759765625, -0.021270751953125, 0.00739288330078125, 0.03985595703125, 0.01214599609375, -0.01166534423828125, -0.060455322265625, -0.0291900634765625, -0.0176544189453125, -0.01849365234375, -0.0294647216796875, -0.00830841064453125, -0.004703521728515625, -0.033294677734375, 0.0272216796875, -0.009368896484375, 0.0007691383361816406, 0.01320648193359375, 0.0552978515625, 0.01308441162109375, -0.008026123046875, -0.0012569427490234375, 0.0174407958984375, 0.0299835205078125, 0.05096435546875, -0.019775390625, -0.03741455078125, -0.03240966796875, 0.0027484893798828125, 0.0263214111328125, 0.00196075439453125, -0.0193634033203125, 0.053802490234375, 0.00888824462890625, -0.01183319091796875, 0.01497650146484375, 0.0015153884887695312, -0.00450897216796875, 0.034942626953125, -0.007236480712890625, -0.0295257568359375, -0.03759765625, 0.04119873046875, 0.01432037353515625, -0.0122833251953125, -0.040679931640625, -0.047943115234375, 0.01213836669921875, 0.002452850341796875, 0.02276611328125, 0.006237030029296875, -0.00589752197265625, 0.02752685546875, 0.00949859619140625, -0.00930023193359375, -0.0191650390625, -0.01062774658203125, -0.0163726806640625, 0.02166748046875, -0.022186279296875, -0.0165557861328125, -0.0009207725524902344, 0.0014181137084960938, -0.022735595703125, -0.01125335693359375, -0.03741455078125, -0.03369140625, -0.007724761962890625, -0.006317138671875, 0.020416259765625, -0.02447509765625, 0.03759765625, 0.0013828277587890625, -0.0199432373046875, -0.02117919921875, -0.0699462890625, 0.00157928466796875, -0.057708740234375, -0.0261993408203125, 0.025390625, -0.0305938720703125, 0.04248046875, -0.0011110305786132812, -0.00914764404296875, 0.0083770751953125, -0.00455474853515625, 0.03997802734375, -0.00225830078125, 0.03045654296875, 0.014312744140625, 0.009307861328125, -0.01444244384765625, 0.0032024383544921875, -0.02191162109375, -0.0248870849609375, 0.0235748291015625, 0.006496429443359375, 0.03631591796875, -0.03155517578125, -0.0452880859375, 0.0224456787109375, -0.050994873046875, -0.01415252685546875, 0.04217529296875, -0.027130126953125, -0.047637939453125, -0.043060302734375, 0.0139007568359375, 0.063720703125, -0.0211181640625, -0.033416748046875, -0.0030841827392578125, -0.0300445556640625, 0.008819580078125, 0.0078277587890625, -0.033294677734375, 0.03387451171875, 0.03857421875, -0.0247039794921875, -0.046234130859375, -0.033050537109375, 0.0382080078125, 0.047698974609375, -0.0246124267578125, -0.032562255859375, 0.0304107666015625, -0.01337432861328125, 0.0258331298828125, -0.0010099411010742188, -0.02001953125, -0.018280029296875, 0.033203125, -0.0207977294921875, -0.013671875, 0.0038394927978515625, -0.03167724609375, -0.0304718017578125, -0.0386962890625, 0.0218048095703125, -0.0032062530517578125, -0.01042938232421875, -0.007587432861328125, -0.0030460357666015625, 0.033203125, -0.0364990234375, -0.03887939453125, 0.0243988037109375, 0.0015268325805664062, 0.007266998291015625, 0.051483154296875, -0.005123138427734375, -0.06414794921875, 0.031890869140625, -0.016571044921875, -0.00753021240234375, -0.06280517578125, 0.002422332763671875, -0.0218048095703125, -0.04254150390625, -0.032501220703125, 0.01381683349609375, 0.027252197265625, 0.01314544677734375, 0.077392578125, 0.07086181640625, 0.03350830078125, 0.0426025390625, -0.0203094482421875, 0.01422882080078125, -0.026763916015625, 0.010284423828125, -0.0767822265625, 0.00656890869140625, 0.01192474365234375, -0.0380859375, -0.010009765625, 0.0031070709228515625, -0.033111572265625, 0.040374755859375, -0.0084991455078125, 0.00997161865234375, 0.05157470703125, 0.01465606689453125, 0.0007205009460449219, 0.0220184326171875, -0.008636474609375, 0.0279083251953125, -0.00476837158203125, 0.00933837890625, 0.02581787109375, 0.01453399658203125, 0.02734375, 0.0007295608520507812, 0.02606201171875, -0.017730712890625, 0.01503753662109375, 0.003429412841796875, -0.026580810546875, 0.026947021484375, 0.0194244384765625, 0.051116943359375, -0.04345703125, 0.03277587890625, 0.01287078857421875, -0.027984619140625, 0.018768310546875, -0.000022530555725097656, -0.0088348388671875, -0.04779052734375, 0.032470703125, -0.01253509521484375, -0.0222930908203125, -0.017181396484375, -0.0142059326171875, 0.00995635986328125, 0.041778564453125, 0.0582275390625, 0.003170013427734375, -0.07293701171875, -0.047943115234375, 0.056793212890625, -0.0263824462890625, -0.01001739501953125, 0.0189056396484375, -0.0015316009521484375, -0.00640106201171875, -0.01056671142578125, 0.051513671875, -0.01450347900390625, 0.02093505859375, 0.039276123046875, 0.0244293212890625, 0.0155181884765625, 0.034576416015625, 0.010345458984375, -0.00450897216796875, -0.005138397216796875, 0.0014410018920898438, -0.0182037353515625, -0.0184478759765625, 0.0246429443359375, 0.01552581787109375, -0.059326171875, 0.0098114013671875, -0.046142578125, 0.0269317626953125, -0.0134124755859375, -0.0048980712890625, 0.04296875, -0.0127410888671875, -0.01522064208984375, 0.03033447265625, 0.07464599609375, -0.01168060302734375, 0.007781982421875, 0.0226593017578125, -0.01776123046875, -0.006259918212890625, 0.00933074951171875, -0.0221099853515625, -0.006717681884765625, 0.0160980224609375, -0.0853271484375, 0.10101318359375, -0.0178070068359375, 0.055694580078125, 0.0230560302734375, 0.0250091552734375, -0.0242156982421875, -0.0112762451171875, -0.01074981689453125, 0.05108642578125, -0.05560302734375, 0.042694091796875, -0.04718017578125, 0.016815185546875, 0.02313232421875, 0.0135650634765625, 0.0306243896484375, 0.00131988525390625, -0.0489501953125, -0.005458831787109375, 0.049072265625, 0.01503753662109375, 0.00975799560546875, 0.055999755859375, -0.017669677734375, -0.037017822265625, 0.0221099853515625, -0.030517578125, 0.027496337890625, -0.029266357421875, 0.0030765533447265625, -0.01348876953125, -0.0002849102020263672, 0.011749267578125, 0.01213836669921875, 0.046051025390625, -0.02117919921875, -0.003215789794921875, 0.043121337890625, -0.07904052734375, 0.04669189453125, -0.02178955078125, -0.031036376953125, 0.04876708984375, -0.002017974853515625, 0.0218048095703125, 0.0191650390625, -0.0219879150390625, 0.045928955078125, 0.029998779296875, 0.01107025146484375, 0.069091796875, -0.006702423095703125, 0.0198822021484375, 0.0101776123046875, -0.002166748046875, 0.0212554931640625, 0.0217437744140625, 0.0224761962890625, -0.036956787109375, -0.01204681396484375, 0.0623779296875, 0.0494384765625, -0.031951904296875, -0.022918701171875, 0.01493072509765625, 0.0012063980102539062, 0.01457977294921875, -0.033111572265625, 0.008880615234375, -0.1304931640625, -0.08843994140625, 0.001285552978515625, 0.0094451904296875, 0.02490234375, 0.018341064453125, 0.00214385986328125, 0.02081298828125, -0.05047607421875, 0.0096893310546875, -0.018218994140625, 0.0219573974609375, -0.01038360595703125, 0.04229736328125, 0.0088653564453125, 0.041748046875, -0.03875732421875, -0.0182342529296875, 0.005298614501953125, 0.035888671875, -0.0049591064453125, -0.004302978515625, -0.03924560546875, -0.060455322265625, 0.037628173828125, 0.032806396484375, -0.0205078125, 0.033721923828125, 0.033660888671875, 0.050811767578125, -0.01142120361328125, -0.019622802734375, 0.0406494140625, -0.0165252685546875, 0.036895751953125, -0.005290985107421875, 0.0241546630859375, 0.0131378173828125, -0.0170745849609375, -0.03314208984375, 0.019622802734375, 0.044586181640625, -0.03240966796875, 0.05145263671875, -0.0163421630859375, -0.039306640625, 0.033203125, 0.0012302398681640625, 0.09722900390625, 0.00754547119140625, -0.0701904296875, -0.0183563232421875, -0.0183258056640625, 0.0020198822021484375, -0.01152801513671875, 0.010589599609375, -0.0199432373046875, 0.036651611328125, -0.0036487579345703125, -0.0286712646484375, -0.033416748046875, 0.01345062255859375, 0.036834716796875, -0.037872314453125, -0.0225830078125, -0.018463134765625, 0.0003066062927246094, 0.00559234619140625, -0.00951385498046875, 0.03192138671875, 0.02471923828125, 0.07861328125, -0.021820068359375, 0.034027099609375, 0.01488494873046875, -0.038330078125, 0.00914764404296875, -0.0008511543273925781, -0.008209228515625, -0.048370361328125, -0.035614013671875, 0.0113677978515625, 0.006866455078125, 0.01190185546875, 0.031646728515625, -0.0248870849609375, -0.002368927001953125, -0.032745361328125, 0.0272369384765625, 0.042388916015625, 0.01253509521484375, -0.0364990234375, -0.0265655517578125, -0.0275115966796875, 0.00601959228515625, -0.008697509765625, -0.042327880859375, -0.01526641845703125, 0.0243377685546875, 0.046905517578125, -0.02435302734375, 0.037109375, -0.048736572265625, 0.08648681640625, 0.056640625, 0.00017750263214111328, -0.0401611328125, 0.01873779296875, 0.0009288787841796875, -0.045806884765625, 0.02777099609375, 0.0217132568359375, 0.00283050537109375, -0.06524658203125, 0.0244293212890625, 0.02691650390625, 0.005859375, -0.034393310546875, -0.00775909423828125, 0.054931640625, -0.0096282958984375, -0.014862060546875, 0.0025043487548828125, -0.013702392578125, -0.022308349609375, -0.0086212158203125, 0.0101470947265625, 0.005794525146484375, -0.011138916015625, -0.007724761962890625, -0.0156097412109375, 0.046142578125, 0.030975341796875, -0.09210205078125, 0.0232391357421875, 0.0138092041015625, 0.044830322265625, 0.00775146484375, -0.06878662109375, 0.0011167526245117188, 0.031036376953125, -0.020721435546875, -0.07891845703125, -0.06414794921875, 0.022674560546875, -0.094482421875, 0.0031871795654296875, 0.033721923828125, -0.01319122314453125, 0.0191650390625, -0.01444244384765625, 0.0129852294921875, 0.04254150390625, -0.0262298583984375, -0.04119873046875, -0.01361083984375, -0.000247955322265625, 0.0084228515625, 0.0007205009460449219, 0.02679443359375, -0.052215576171875, -0.009063720703125, -0.05126953125, 0.0018405914306640625, -0.00089263916015625, -0.045867919921875, -0.050048828125, 0.032073974609375, 0.00421905517578125, -0.013671875, -0.0280914306640625, -0.01393890380859375, -0.04522705078125, 0.0465087890625, -0.006317138671875, -0.03387451171875, 0.026458740234375, 0.07598876953125, -0.00917816162109375, 0.042816162109375, -0.004009246826171875, -0.01715087890625, 0.01297760009765625, 0.020050048828125, 0.026702880859375, 0.006816864013671875, 0.026519775390625, -0.01549530029296875, 0.03656005859375, 0.04827880859375, -0.0135955810546875, -0.02886962890625, 0.003429412841796875, -0.050445556640625, -0.0282745361328125, -0.0168304443359375, -0.0112152099609375, -0.0047607421875, 0.0823974609375, 0.0304718017578125, 0.0145416259765625, -0.0294952392578125, 0.041839599609375, 0.042938232421875, 0.020660400390625, 0.012603759765625, -0.0135498046875, -0.01236724853515625, -0.0166473388671875, -0.00995635986328125, -0.01520538330078125, 0.0017976760864257812, 0.0124053955078125, -0.03448486328125, -0.006290435791015625, -0.0064239501953125, -0.02447509765625, -0.03338623046875, 0.051300048828125, 0.038360595703125, -0.04180908203125, 0.0101470947265625, -0.02337646484375, -0.0007805824279785156, 0.031951904296875, -0.050567626953125, 0.01519775390625, 0.00972747802734375, -0.0161285400390625, 0.0050811767578125, 0.01227569580078125, 0.003696441650390625, -0.01186370849609375, -0.004299163818359375, -0.005718231201171875, 0.039947509765625, 0.004375457763671875, 0.040252685546875, 0.0019388198852539062, 0.0433349609375, 0.0082855224609375, 0.054595947265625, -0.0287017822265625, -0.030914306640625, -0.0128173828125, -0.0112762451171875, -0.018524169921875, 0.0213165283203125, 0.04595947265625, -0.0268707275390625, 0.0177001953125, -0.0024471282958984375, -0.0322265625, -0.024871826171875, -0.00039076805114746094, -0.03619384765625, -0.027069091796875, 0.004695892333984375 ]
52cbe8ed900ede6f19eb7548e84d3835cf402137
Wordpress Stackexchange Q: Get post with multiple meta keys and value I am trying to fetch a post based on the following meta keys. * *post_code with 432C *location with XYZ Both belong to a CPT. I'm trying to fetch the Post with both these meta_values. I Don't Want an OR relation, I want a AND relation, I have tried several WP_Query objects and still haven't found a solution after hours of looking. A: $args = array( 'post_type' => 'wpse_cpt', 'meta_query' => array( 'relation' => 'AND' //**** Use AND or OR as per your required Where Clause array( 'key' => 'post_code', 'value' => '432C', ), array( 'key' => 'location', 'value' => 'XYZ', ), ), ); $query = new WP_Query( $args );
Q: Get post with multiple meta keys and value I am trying to fetch a post based on the following meta keys. * *post_code with 432C *location with XYZ Both belong to a CPT. I'm trying to fetch the Post with both these meta_values. I Don't Want an OR relation, I want a AND relation, I have tried several WP_Query objects and still haven't found a solution after hours of looking. A: $args = array( 'post_type' => 'wpse_cpt', 'meta_query' => array( 'relation' => 'AND' //**** Use AND or OR as per your required Where Clause array( 'key' => 'post_code', 'value' => '432C', ), array( 'key' => 'location', 'value' => 'XYZ', ), ), ); $query = new WP_Query( $args ); A: Edit Again: Ah, I didn't answer the question. You would select a.* to get all columns of the posts with the matching key values, instead of selecting c.meta_value. The below sql/$wpdb query will select all meta_value%s of a post with post_type of $postType and a meta_key value of $metaKey. Therefore selecting all the different values of a given meta_key (via '$metaKey'). The term_relationships table is wordpress' helper table for relationship connections in tables. wp_posts is the wordpress 'posts' table, and, wp_postmeta is the wordpress 'postmeta' table. (Note: If you are using custom tables these table names would differ.) ~ Edited to add 'doing' notes, requested by @MikeNGarrett /* $wpdb is a global var provided by the wordpress 'engine' ** for query'ing wordpress database tables. */ global $wpdb; $postType = 'mycustomposttype'; $metaKey = 'mymetakey'; $query = " SELECT c.meta_value FROM wp_posts a LEFT JOIN wp_term_relationships b ON (a.ID = b.object_id) LEFT JOIN wp_postmeta c ON (a.ID = c.post_id) WHERE a.post_type = %s AND c.meta_key = %s"; $metaValues = $wpdb->prepare(query, [$postType, $metaKey]); $metaValues = $wpdb->get_results($metaValues); Notes: I am just reusing the $metaValues variable. There is no other reason to write the results of $metaValues prepare() back to the $metaValues variable. You do however have to pass $metaValues to get_resluts(). A: This should do it. The default relation is AND so that won't need to be specified. $args = array( 'post_type' => 'wpse_cpt', 'meta_query' => array( array( 'key' => 'post_code', 'value' => '432C', ), array( 'key' => 'location', 'value' => 'XYZ', ), ), ); $query = new WP_Query( $args ); A: SOLUTION The Solution Accepted below worked, however, I wanted to know how is it working? This is how it's working SELECT * FROM wp_posts p, wp_postmeta m1, wp_postmeta m2 WHERE p.ID = m1.post_id and p.ID = m2.post_id AND m1.meta_key = 'key1' AND m1.meta_value = 'value1' AND m2.meta_key = 'key2' AND m2.meta_value = 'value2' AND p.post_type = 'cpt' AND p.post_status = 'published' A: I tried using the WP_Query solution suggested above, but got an empty result. The one suggested by Sheraz Ahmed works fine. Here's my own take for what it's worth: //database wp_posts +---------+--------------------+--------------+ | ID | post_title | post_type | +---------+--------------------+--------------+ | 8567 | Intro to MySQL | talk | +---------+--------------------+--------------+ | 8590 | Intro to PHP | talk | +---------+--------------------+--------------+ wp_postmeta +---------------+------------+----------------+ | post_id | meta_key | meta_value | +---------------+------------+----------------+ | 8567 | speaker | John Doe | +---------------+------------+----------------+ | 8567 | year_of | 2021 | +---------------+------------+----------------+ | 8590 | speaker | John Doe | +---------------+------------+----------------+ | 8590 | year_of | 2021 | +---------------+------------+----------------+ //search by speaker and Year $speaker = "John Doe"; $year_of = "2021"; $talks = $wpdb->get_results( $wpdb->prepare( 'SELECT post_title, meta_value AS speaker FROM '.$wpdb->prefix.'posts AS pt, '.$wpdb->prefix.'postmeta AS pm WHERE post_type = %s AND pm.post_id = pt.id AND ( meta_key = %s AND meta_value = %s ) AND post_id IN ( SELECT post_id FROM nm_postmeta WHERE meta_key = %s AND meta_value = %s )', array( 'talk', 'speaker', $speaker, 'year_of', $year_of ) ) ); foreach ( $talks as $talk ) { echo "<p>".$talk->speaker.': '.$talk_homily->post_title."</p>"; } John Doe: Intro to MySQL John Doe: Intro to PHP A: Tried below object parametes array( 'key' => 'post_code', 'value' =>'432C', 'compare' => '=' ), array( 'relation' =>'AND', array( 'key' => 'location', 'value' => 'XYZ', 'compare' => '=', ), )
wordpress
{ "language": "en", "length": 667, "provenance": "stackexchange_00019.jsonl.gz:468003", "question_score": "10", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/237957" }
[ 0.033294677734375, -0.015899658203125, 0.01212310791015625, 0.0144500732421875, -0.0006847381591796875, -0.031829833984375, 0.06280517578125, -0.036102294921875, 0.02392578125, 0.0308685302734375, -0.05596923828125, -0.006832122802734375, -0.0086822509765625, -0.006069183349609375, -0.027191162109375, -0.034698486328125, 0.024871826171875, 0.0028228759765625, 0.02978515625, -0.00616455078125, 0.03521728515625, 0.0027065277099609375, 0.00714874267578125, -0.016571044921875, 0.040435791015625, -0.0283966064453125, 0.052032470703125, -0.018341064453125, 0.0355224609375, -0.0048675537109375, 0.037200927734375, -0.034393310546875, 0.0498046875, -0.0360107421875, -0.0138092041015625, -0.038726806640625, 0.0009684562683105469, -0.02142333984375, -0.042999267578125, 0.0256500244140625, -0.01062774658203125, 0.01270294189453125, -0.037017822265625, 0.057708740234375, -0.03875732421875, -0.046783447265625, -0.00164031982421875, -0.03271484375, 0.0175323486328125, 0.0274658203125, -0.020111083984375, 0.0243682861328125, -0.022674560546875, 0.029815673828125, -0.01535797119140625, -0.021514892578125, -0.0168304443359375, -0.047576904296875, 0.0167694091796875, -0.00812530517578125, 0.005878448486328125, -0.0275115966796875, 0.0288543701171875, 0.00554656982421875, -0.0281219482421875, 0.004894256591796875, 0.009521484375, -0.00536346435546875, -0.034088134765625, -0.0298004150390625, 0.0321044921875, -0.0113372802734375, 0.019378662109375, -0.042236328125, 0.0009584426879882812, -0.0203704833984375, 0.0106964111328125, -0.028656005859375, 0.0021648406982421875, -0.005828857421875, 0.005435943603515625, 0.0024871826171875, -0.046966552734375, 0.0134735107421875, 0.007801055908203125, 0.045135498046875, -0.01245880126953125, -0.0236053466796875, -0.0335693359375, -0.059600830078125, -0.01898193359375, -0.07379150390625, -0.057708740234375, 0.0009565353393554688, -0.011474609375, -0.041778564453125, 0.0022735595703125, 0.040130615234375, -0.054046630859375, -0.0040740966796875, -0.0164947509765625, -0.032135009765625, 0.0223236083984375, -0.0216522216796875, 0.0179290771484375, 0.005245208740234375, -0.0078582763671875, 0.0252532958984375, 0.061798095703125, 0.03887939453125, -0.00689697265625, 0.05029296875, -0.02471923828125, 0.0038242340087890625, -0.0279693603515625, 0.017791748046875, -0.033599853515625, -0.00879669189453125, -0.01666259765625, -0.005764007568359375, 0.005695343017578125, 0.02325439453125, 0.0411376953125, -0.06536865234375, 0.033966064453125, 0.035369873046875, -0.0316162109375, -0.05340576171875, -0.037261962890625, 0.018402099609375, -0.0173187255859375, 0.007457733154296875, 0.036590576171875, 0.03485107421875, -0.01873779296875, -0.01548004150390625, -0.0168304443359375, -0.02362060546875, -0.004032135009765625, 0.01427459716796875, -0.00579071044921875, -0.043060302734375, 0.017974853515625, -0.0024509429931640625, -0.00583648681640625, 0.018402099609375, 0.01995849609375, 0.00394439697265625, -0.003818511962890625, -0.04254150390625, -0.006038665771484375, -0.00640106201171875, 0.0311737060546875, -0.002521514892578125, -0.0306396484375, -0.0222015380859375, 0.039459228515625, -0.041351318359375, -0.018951416015625, -0.0712890625, 0.036865234375, 0.0044403076171875, 0.01325225830078125, -0.034271240234375, -0.05572509765625, -0.00894927978515625, -0.056304931640625, -0.0309295654296875, 0.032257080078125, 0.06658935546875, 0.0274658203125, -0.00836181640625, 0.025726318359375, 0.03472900390625, -0.0012216567993164062, 0.00942230224609375, 0.0160369873046875, 0.004634857177734375, -0.01708984375, 0.0121307373046875, -0.01202392578125, -0.04571533203125, -0.004619598388671875, 0.020263671875, -0.0711669921875, 0.06494140625, 0.01438140869140625, 0.07568359375, -0.01493072509765625, 0.0106353759765625, 0.058013916015625, 0.031158447265625, 0.00702667236328125, 0.005825042724609375, 0.0143280029296875, -0.04217529296875, 0.001041412353515625, -0.00800323486328125, 0.0133514404296875, -0.0169525146484375, 0.0028362274169921875, 0.0145416259765625, -0.0072479248046875, 0.022186279296875, -0.020355224609375, -0.004306793212890625, -0.0009598731994628906, 0.019866943359375, -0.039276123046875, 0.01544952392578125, 0.0305023193359375, 0.01085662841796875, -0.03289794921875, -0.0244598388671875, 0.005218505859375, 0.0276031494140625, -0.0233154296875, 0.0123291015625, -0.0099945068359375, 0.0135650634765625, -0.024505615234375, -0.03643798828125, -0.04046630859375, 0.00016486644744873047, 0.0465087890625, 0.0245819091796875, -0.0089263916015625, 0.00511932373046875, 0.04559326171875, 0.0372314453125, -0.039947509765625, -0.01239776611328125, 0.016510009765625, -0.0080718994140625, -0.0247344970703125, 0.031585693359375, 0.00868988037109375, -0.01526641845703125, -0.0157623291015625, 0.031280517578125, 0.03179931640625, 0.04193115234375, 0.00341796875, 0.005786895751953125, 0.048126220703125, -0.03546142578125, -0.00417327880859375, -0.0110015869140625, 0.052459716796875, 0.0848388671875, -0.0181121826171875, -0.0072174072265625, 0.0200653076171875, -0.0130615234375, 0.019195556640625, 0.0261077880859375, -0.0269622802734375, 0.0309906005859375, -0.0017948150634765625, -0.007099151611328125, -0.02691650390625, -0.0244903564453125, 0.0173797607421875, -0.03466796875, 0.03411865234375, -0.0090789794921875, 0.036651611328125, 0.0273590087890625, -0.0242462158203125, -0.0048370361328125, 0.02197265625, 0.0234375, 0.00872802734375, 0.0150604248046875, 0.002796173095703125, 0.014739990234375, -0.0092926025390625, -0.007343292236328125, 0.01279449462890625, 0.006908416748046875, -0.0017709732055664062, 0.005157470703125, -0.07440185546875, -0.00457763671875, 0.0108184814453125, 0.0108642578125, -0.0049896240234375, 0.03765869140625, -0.0110626220703125, -0.01480865478515625, 0.0202789306640625, 0.015380859375, -0.004302978515625, -0.0015134811401367188, -0.0147705078125, -0.01189422607421875, 0.04827880859375, -0.048553466796875, 0.04266357421875, -0.041839599609375, 0.041259765625, 0.044281005859375, -0.0150146484375, 0.00586700439453125, -0.0071868896484375, -0.02410888671875, -0.036895751953125, 0.03955078125, -0.005035400390625, -0.061126708984375, -0.0141143798828125, 0.0217742919921875, 0.022064208984375, 0.049652099609375, 0.0175323486328125, -0.0248565673828125, 0.002346038818359375, 0.0250701904296875, -0.109619140625, -0.11865234375, 0.0340576171875, 0.0009565353393554688, 0.01551055908203125, -0.000732421875, 0.00832366943359375, -0.036773681640625, 0.0018625259399414062, -0.00909423828125, 0.011932373046875, 0.0200347900390625, -0.10540771484375, -0.011077880859375, -0.0726318359375, 0.0184478759765625, -0.0202789306640625, 0.0230560302734375, 0.019500732421875, 0.0025501251220703125, -0.01386260986328125, -0.0474853515625, -0.0221405029296875, 0.0018100738525390625, -0.030487060546875, -0.030303955078125, -0.0198211669921875, -0.00846099853515625, 0.0167388916015625, 0.0039215087890625, 0.0124664306640625, 0.006938934326171875, 0.004150390625, -0.0204925537109375, 0.03564453125, 0.006793975830078125, 0.07977294921875, -0.028106689453125, -0.07769775390625, 0.06207275390625, 0.04632568359375, -0.0208740234375, -0.034759521484375, -0.01525115966796875, -0.0533447265625, -0.0219268798828125, 0.018707275390625, 0.0218963623046875, -0.040435791015625, 0.0199737548828125, 0.039764404296875, 0.0026149749755859375, 0.03424072265625, -0.0305023193359375, 0.005283355712890625, 0.01255035400390625, 0.0462646484375, -0.0504150390625, -0.00516510009765625, -0.023101806640625, -0.007091522216796875, -0.018096923828125, -0.01397705078125, -0.03485107421875, 0.0136871337890625, -0.0302886962890625, -0.051300048828125, 0.0748291015625, 0.01111602783203125, 0.0355224609375, -0.07220458984375, -0.06011962890625, -0.0511474609375, 0.10186767578125, 0.00916290283203125, -0.038665771484375, -0.0182342529296875, 0.0023593902587890625, -0.042083740234375, -0.05364990234375, 0.0091552734375, -0.003368377685546875, -0.037994384765625, -0.0013914108276367188, -0.0007505416870117188, -0.0260009765625, -0.005336761474609375, -0.0312347412109375, -0.0189208984375, -0.035003662109375, 0.048370361328125, -0.0038738250732421875, 0.0173797607421875, -0.0047149658203125, 0.002513885498046875, 0.005138397216796875, -0.0236358642578125, 0.0009360313415527344, 0.01324462890625, -0.030059814453125, 0.04669189453125, 0.0263671875, -0.002948760986328125, -0.0301666259765625, 0.00881195068359375, 0.033721923828125, 0.0035343170166015625, 0.0081329345703125, 0.00762939453125, 0.016632080078125, -0.0020427703857421875, -0.02044677734375, 0.0016946792602539062, -0.035919189453125, -0.011260986328125, -0.0196075439453125, 0.00878143310546875, 0.01275634765625, -0.05450439453125, -0.007076263427734375, -0.043487548828125, -0.0038051605224609375, -0.0033588409423828125, 0.035675048828125, -0.017822265625, 0.0145721435546875, -0.00406646728515625, -0.035919189453125, 0.0221710205078125, -0.0312042236328125, 0.0311737060546875, 0.03472900390625, -0.0293426513671875, 0.004749298095703125, 0.01654052734375, 0.004146575927734375, -0.043670654296875, -0.0556640625, -0.0295562744140625, 0.004611968994140625, -0.02685546875, 0.0283966064453125, 0.0147857666015625, 0.005634307861328125, 0.0073394775390625, -0.03887939453125, 0.019378662109375, -0.0250396728515625, 0.0269317626953125, 0.004772186279296875, -0.0173797607421875, 0.031951904296875, 0.00891876220703125, 0.0012826919555664062, 0.0294952392578125, 0.0205230712890625, -0.0675048828125, -0.002529144287109375, 0.056243896484375, 0.025543212890625, -0.0054473876953125, -0.042999267578125, -0.00838470458984375, -0.0012464523315429688, 0.01158905029296875, -0.00707244873046875, 0.006969451904296875, -0.0032863616943359375, -0.0262451171875, 0.00783538818359375, -0.008880615234375, -0.0164947509765625, 0.006771087646484375, -0.010345458984375, 0.0285797119140625, -0.0178680419921875, -0.0335693359375, -0.02008056640625, -0.004207611083984375, 0.041656494140625, -0.04534912109375, -0.0604248046875, -0.01177215576171875, -0.029510498046875, 0.052642822265625, 0.0633544921875, -0.01029205322265625, 0.05804443359375, 0.0662841796875, -0.056488037109375, -0.037628173828125, -0.0039215087890625, -0.006938934326171875, -0.07232666015625, 0.00838470458984375, -0.00862884521484375, 0.006130218505859375, -0.0248870849609375, 0.1239013671875, -0.0264739990234375, 0.07354736328125, -0.0186614990234375, 0.01036834716796875, 0.00445556640625, 0.043853759765625, 0.018951416015625, -0.03460693359375, 0.0053558349609375, 0.0263214111328125, 0.0033416748046875, 0.002288818359375, 0.01097869873046875, 0.0018367767333984375, 0.00853729248046875, -0.0125274658203125, -0.01305389404296875, 0.035858154296875, -0.00445556640625, -0.028228759765625, -0.006633758544921875, 0.023223876953125, -0.013458251953125, -0.0037364959716796875, 0.004024505615234375, -0.01140594482421875, 0.0309906005859375, 0.00482940673828125, -0.0035114288330078125, 0.01105499267578125, 0.047821044921875, -0.033782958984375, 0.005367279052734375, 0.0102996826171875, 0.0146026611328125, -0.0151824951171875, -0.028717041015625, -0.00839996337890625, 0.01165008544921875, 0.01473236083984375, -0.019500732421875, -0.037200927734375, 0.0302276611328125, -0.0162506103515625, 0.005229949951171875, -0.0212249755859375, 0.01493072509765625, 0.0253143310546875, 0.0087432861328125, 0.059478759765625, 0.031951904296875, -0.0172119140625, -0.017303466796875, -0.0232696533203125, -0.0112762451171875, 0.051605224609375, -0.00623321533203125, -0.01910400390625, -0.0128173828125, -0.01226043701171875, 0.04168701171875, 0.00738525390625, 0.0212860107421875, 0.00691986083984375, -0.002895355224609375, -0.0304412841796875, 0.0272216796875, -0.033050537109375, 0.0875244140625, -0.0218505859375, 0.044219970703125, 0.005855560302734375, 0.04241943359375, -0.0090484619140625, -0.0028858184814453125, 0.019805908203125, -0.06494140625, -0.038909912109375, -0.006359100341796875, -0.022613525390625, 0.0034542083740234375, -0.01006317138671875, -0.008453369140625, 0.0267181396484375, -0.01114654541015625, 0.01213836669921875, -0.0160675048828125, 0.0068359375, -0.039337158203125, -0.00197601318359375, 0.040008544921875, -0.0242919921875, 0.00959014892578125, -0.0007958412170410156, -0.015899658203125, 0.0249176025390625, -0.0167999267578125, 0.032440185546875, 0.0248565673828125, -0.0010061264038085938, 0.02032470703125, 0.0882568359375, 0.040679931640625, 0.05377197265625, 0.00762939453125, 0.034271240234375, 0.0222015380859375, -0.0249481201171875, -0.011138916015625, 0.0232696533203125, 0.0198516845703125, -0.016845703125, -0.01395416259765625, 0.0209808349609375, -0.0196533203125, -0.01131439208984375, -0.0088043212890625, 0.01390838623046875, -0.024505615234375, 0.0218353271484375, 0.034942626953125, 0.0119476318359375, -0.0139007568359375, 0.0194854736328125, -0.024810791015625, -0.0221405029296875, -0.053863525390625, 0.0009555816650390625, -0.0227203369140625, -0.01367950439453125, 0.036163330078125, -0.0262908935546875, 0.00789642333984375, -0.034210205078125, 0.0079345703125, -0.036407470703125, 0.05426025390625, 0.0302734375, 0.02032470703125, -0.00878143310546875, -0.0096893310546875, 0.0123748779296875, -0.055023193359375, -0.09490966796875, -0.032562255859375, -0.0053253173828125, -0.042572021484375, -0.024169921875, 0.03948974609375, 0.014495849609375, 0.03277587890625, 0.01116943359375, -0.035552978515625, 0.01800537109375, 0.010589599609375, -0.045654296875, -0.0150604248046875, -0.031524658203125, 0.034942626953125, 0.0158843994140625, 0.024658203125, -0.0024585723876953125, -0.0123748779296875, 0.01488494873046875, 0.0038661956787109375, 0.00778961181640625, -0.004924774169921875, -0.01497650146484375, 0.034454345703125, 0.017486572265625, -0.010467529296875, 0.04498291015625, 0.0272979736328125, -0.0118408203125, -0.039947509765625, 0.049072265625, -0.038421630859375, -0.035400390625, 0.039093017578125, -0.05279541015625, 0.0179443359375, -0.033843994140625, 0.00695037841796875, 0.0120697021484375, 0.006954193115234375, -0.006679534912109375, -0.016082763671875, -0.04766845703125, 0.09881591796875, -0.01508331298828125, 0.01483917236328125, -0.10040283203125, -0.0096435546875, -0.03204345703125, 0.02325439453125, 0.045440673828125, 0.01343536376953125, -0.0888671875, -0.0110015869140625, 0.0304107666015625, 0.036376953125, 0.01189422607421875, 0.06390380859375, 0.0130615234375, 0.07281494140625, 0.07452392578125, -0.0439453125, 0.0400390625, -0.00025844573974609375, -0.0118865966796875, 0.032928466796875, -0.0033416748046875, -0.03131103515625, -0.01345062255859375, 0.01027679443359375, -0.0242767333984375, 0.001399993896484375, 0.01065826416015625, 0.0029773712158203125, 0.035125732421875, 0.0004239082336425781, 0.01947021484375, -0.027435302734375, 0.03387451171875, -0.0178680419921875, 0.03814697265625, -0.00521087646484375, 0.01837158203125, 0.0244598388671875, 0.015533447265625, 0.034759521484375, 0.0103302001953125, 0.0098876953125, 0.023834228515625, -0.010650634765625, 0.052642822265625, 0.04388427734375, 0.00032019615173339844, -0.0186004638671875, 0.0732421875, 0.042236328125, 0.05316162109375, -0.062347412109375, -0.017974853515625, 0.00786590576171875, 0.0006418228149414062, 0.0103759765625, -0.0304412841796875, 0.00872802734375, 0.0127410888671875, 0.030731201171875, -0.028289794921875, -0.01136016845703125, -0.0004456043243408203, 0.048553466796875, -0.005710601806640625, 0.0011835098266601562, -0.019989013671875, -0.0423583984375, -0.057220458984375, 0.05010986328125, 0.035858154296875, 0.058502197265625, -0.011993408203125, 0.059478759765625, -0.03131103515625, -0.0269622802734375, -0.001659393310546875, 0.051605224609375, 0.0224761962890625, -0.0162353515625, -0.006175994873046875, -0.048736572265625, 0.002227783203125, 0.0168609619140625, 0.0303192138671875, 0.0309600830078125, 0.0540771484375, 0.04083251953125, -0.02398681640625, -0.003917694091796875, 0.060638427734375, -0.01557159423828125, -0.00434112548828125, -0.045684814453125, -0.00742340087890625, -0.0013294219970703125, -0.022491455078125, -0.00838470458984375, -0.01018524169921875, 0.01470184326171875, 0.0360107421875, 0.02685546875, 0.0164031982421875, 0.024658203125, 0.02764892578125, -0.01245880126953125, -0.01824951171875, 0.03411865234375, -0.0178985595703125, -0.005153656005859375, -0.0102386474609375, -0.020355224609375, 0.0018415451049804688, 0.0299224853515625, 0.002864837646484375, 0.014007568359375, 0.0095672607421875, -0.036712646484375, 0.0053558349609375, 0.034759521484375, 0.0015821456909179688, -0.0120697021484375, 0.005462646484375, -0.0276641845703125, -0.0699462890625, -0.03460693359375, -0.00867462158203125, 0.01049041748046875, -0.0094757080078125, 0.00353240966796875, 0.0294647216796875, 0.00537872314453125, -0.0017404556274414062, -0.00530242919921875, 0.0193023681640625, 0.00220489501953125, -0.01666259765625, -0.0099029541015625, -0.0106048583984375, -0.0015745162963867188, 0.08233642578125, -0.006534576416015625, 0.06561279296875, -0.03411865234375, -0.03692626953125, -0.0217437744140625, 0.02508544921875, 0.0026454925537109375, 0.025726318359375, -0.03167724609375, -0.015045166015625, -0.06793212890625, -0.045654296875, 0.06134033203125, 0.0352783203125, 0.00862884521484375, -0.004329681396484375, 0.0193634033203125, -0.0487060546875, 0.06341552734375, -0.033203125, 0.10894775390625, 0.0360107421875, -0.0250244140625, 0.036224365234375, -0.003971099853515625, -0.0286407470703125, 0.033721923828125, 0.0005593299865722656, -0.002227783203125, -0.00283050537109375, 0.03143310546875, 0.01136016845703125, 0.0083160400390625, 0.032562255859375, 0.0188446044921875, -0.0134429931640625, 0.0174407958984375, -0.01922607421875, -0.0302581787109375, -0.0275726318359375, -0.0281829833984375, -0.01788330078125, -0.000766754150390625, 0.0002715587615966797, 0.0016584396362304688, -0.04571533203125, 0.011871337890625, -0.01898193359375, 0.0167999267578125, -0.0243072509765625, 0.0117950439453125, -0.00244903564453125, -0.03985595703125, -0.020111083984375, -0.005649566650390625, -0.00835418701171875, -0.0149383544921875, 0.012115478515625, -0.00904083251953125, 0.01134490966796875, -0.0261993408203125, 0.00428009033203125, 0.0016222000122070312, 0.013641357421875, 0.00811767578125, -0.01451873779296875, -0.01534271240234375, 0.035675048828125, 0.015869140625, 0.05780029296875, 0.05279541015625, 0.01497650146484375, 0.0180511474609375, 0.02447509765625, -0.05914306640625, -0.1015625, 0.02001953125, -0.050750732421875, -0.0043182373046875, 0.00489044189453125, 0.0100555419921875, 0.043975830078125, -0.01239013671875, -0.058074951171875, 0.10986328125, -0.0264739990234375, -0.016357421875, -0.04071044921875, -0.056304931640625, 0.00957489013671875, 0.05804443359375, 0.01213836669921875, -0.035736083984375, -0.084716796875, 0.027130126953125, -0.004726409912109375, -0.029052734375, 0.033935546875, 0.01163482666015625, -0.0731201171875, -0.01224517822265625, -0.034210205078125, -0.050811767578125, 0.0025539398193359375, 0.0168304443359375, 0.0045623779296875, 0.02874755859375, -0.043792724609375, -0.01502227783203125, -0.023345947265625, 0.018463134765625, -0.0025615692138671875, -0.061767578125, -0.0254058837890625, -0.005474090576171875, 0.076416015625, 0.035736083984375, 0.0178070068359375, -0.06427001953125, 0.017791748046875, -0.05035400390625, -0.01073455810546875, -0.052154541015625, -0.004901885986328125, -0.05499267578125, -0.03387451171875, -0.015716552734375, -0.0162200927734375, 0.056640625, -0.0272216796875, 0.00528717041015625, 0.00939178466796875, 0.0303192138671875, -0.0276947021484375, -0.011688232421875, 0.00841522216796875, 0.019439697265625, -0.01503753662109375, 0.003719329833984375, 0.0015077590942382812, -0.004913330078125, 0.00920867919921875, 0.033203125, 0.0081787109375, 0.0236663818359375, 0.00138092041015625, 0.0001951456069946289, 0.0311431884765625, -0.0443115234375, 0.0163421630859375, -0.007038116455078125, -0.02789306640625, 0.0166473388671875, 0.01459503173828125, 0.01419830322265625, -0.0189971923828125, -0.0226898193359375, 0.004711151123046875, 0.02374267578125, 0.00655364990234375, 0.06610107421875, -0.00035834312438964844, 0.048614501953125, -0.0121002197265625, -0.0300140380859375, 0.037445068359375, -0.046051025390625, -0.0015964508056640625, 0.01361083984375, 0.01049041748046875, -0.0293121337890625, 0.0287933349609375, 0.01287078857421875, 0.01552581787109375, 0.00627899169921875 ]
7a49210b672c9bbf6b9fa9982aeab07866bb54ad
Wordpress Stackexchange Q: How to get woocommerce inventory status In a woocommerce theme, Im trying to show a warning when product is out of stock. Something like this: <?php if ('this_product_is_out_of_stock'): ?> <p>This product is out of stock. It can be purchased by custom made order.</p> <?php endif; ?> Is there a function to say 'this_product_is_out_of_stock' or some other way to achieve it? I was searching woocommerce api docs unsuccesfully: https://docs.woocommerce.com/wc-apidocs/ Thank you in advance. A: Try something like this global $product; if ( ! $product->managing_stock() && ! $product->is_in_stock() ) echo '<p>This product is out of stock. It can be purchased by custom made order.</p>';
Q: How to get woocommerce inventory status In a woocommerce theme, Im trying to show a warning when product is out of stock. Something like this: <?php if ('this_product_is_out_of_stock'): ?> <p>This product is out of stock. It can be purchased by custom made order.</p> <?php endif; ?> Is there a function to say 'this_product_is_out_of_stock' or some other way to achieve it? I was searching woocommerce api docs unsuccesfully: https://docs.woocommerce.com/wc-apidocs/ Thank you in advance. A: Try something like this global $product; if ( ! $product->managing_stock() && ! $product->is_in_stock() ) echo '<p>This product is out of stock. It can be purchased by custom made order.</p>';
wordpress
{ "language": "en", "length": 103, "provenance": "stackexchange_00019.jsonl.gz:468046", "question_score": "6", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/238131" }
[ 0.021636962890625, -0.027191162109375, -0.004261016845703125, -0.042755126953125, -0.02215576171875, -0.01401519775390625, 0.01543426513671875, 0.00390625, 0.02001953125, 0.015380859375, -0.043853759765625, -0.0198974609375, -0.029083251953125, -0.00843048095703125, -0.0311737060546875, -0.06231689453125, 0.03955078125, 0.01337432861328125, 0.0574951171875, 0.021270751953125, -0.0214080810546875, 0.06365966796875, 0.01678466796875, 0.027618408203125, 0.004978179931640625, -0.042327880859375, 0.09527587890625, -0.01546478271484375, 0.027313232421875, -0.031494140625, 0.01593017578125, -0.01514434814453125, 0.0179443359375, 0.0120849609375, -0.0246124267578125, 0.00800323486328125, 0.005859375, 0.01235198974609375, 0.003192901611328125, 0.0206298828125, 0.03179931640625, -0.0145263671875, 0.035736083984375, -0.0167388916015625, 0.01226806640625, -0.0281219482421875, 0.0200347900390625, -0.056732177734375, 0.0303497314453125, 0.01488494873046875, 0.004093170166015625, 0.030670166015625, -0.0040435791015625, -0.0042572021484375, -0.01357269287109375, -0.00824737548828125, -0.028350830078125, 0.045135498046875, 0.0256195068359375, 0.00174713134765625, -0.01560211181640625, 0.00838470458984375, 0.01023101806640625, -0.0153045654296875, -0.0021724700927734375, 0.001224517822265625, -0.041900634765625, 0.01555633544921875, -0.0110321044921875, -0.007564544677734375, -0.001300811767578125, -0.0290985107421875, -0.017120361328125, 0.0064544677734375, 0.0009374618530273438, -0.0301513671875, -0.0239105224609375, -0.050506591796875, 0.02801513671875, 0.057769775390625, -0.037567138671875, -0.01270294189453125, -0.05865478515625, -0.061370849609375, 0.057159423828125, 0.0020389556884765625, -0.0169219970703125, 0.00890350341796875, -0.0204315185546875, -0.01467132568359375, -0.031768798828125, 0.0289459228515625, -0.02899169921875, -0.0029773712158203125, -0.050048828125, 0.007747650146484375, 0.000028014183044433594, 0.026519775390625, -0.01141357421875, 0.0039825439453125, 0.009979248046875, -0.045013427734375, 0.0140228271484375, -0.0251617431640625, -0.02130126953125, 0.005924224853515625, 0.0122833251953125, -0.03753662109375, -0.019683837890625, 0.007556915283203125, -0.00859832763671875, -0.01232147216796875, -0.037078857421875, -0.05987548828125, 0.0026607513427734375, 0.029083251953125, -0.04974365234375, 0.02838134765625, 0.017578125, 0.004215240478515625, 0.029876708984375, 0.048309326171875, 0.04248046875, -0.02923583984375, -0.02581787109375, -0.019012451171875, -0.02716064453125, -0.0648193359375, 0.042694091796875, 0.029388427734375, -0.06475830078125, -0.00957489013671875, 0.0308685302734375, 0.00872802734375, 0.0222930908203125, -0.0308990478515625, 0.01151275634765625, 0.046905517578125, 0.01209259033203125, -0.000576019287109375, 0.0240325927734375, -0.00539398193359375, -0.0004987716674804688, 0.00693511962890625, 0.01415252685546875, 0.040618896484375, 0.01458740234375, -0.0008378028869628906, -0.005466461181640625, -0.04180908203125, 0.01523590087890625, -0.027862548828125, -0.0033054351806640625, 0.0298614501953125, 0.04681396484375, 0.01279449462890625, 0.07049560546875, -0.0248565673828125, 0.0052642822265625, -0.043975830078125, -0.01568603515625, -0.01531219482421875, 0.01424407958984375, -0.002475738525390625, -0.021240234375, 0.041595458984375, -0.028350830078125, -0.01178741455078125, 0.031982421875, 0.01236724853515625, 0.017974853515625, -0.01259613037109375, 0.04144287109375, -0.0025234222412109375, -0.0282135009765625, -0.00521087646484375, -0.033905029296875, -0.00429534912109375, 0.06494140625, -0.0197296142578125, -0.032012939453125, -0.0303497314453125, 0.041778564453125, 0.020843505859375, -0.03253173828125, 0.0185546875, 0.01129913330078125, 0.01904296875, -0.003200531005859375, 0.003353118896484375, 0.05126953125, 0.01554107666015625, -0.012451171875, 0.0023975372314453125, -0.0209503173828125, -0.0206146240234375, 0.01727294921875, 0.0090484619140625, -0.0199127197265625, 0.0003077983856201172, 0.024627685546875, -0.007965087890625, 0.021575927734375, -0.006443023681640625, -0.0540771484375, 0.0112457275390625, -0.0230865478515625, 0.0467529296875, -0.054412841796875, -0.016815185546875, 0.037353515625, -0.0216522216796875, -0.031768798828125, -0.01433563232421875, 0.0113525390625, -0.028778076171875, -0.037628173828125, 0.05059814453125, -0.00891876220703125, 0.0477294921875, -0.006114959716796875, -0.02520751953125, 0.0034084320068359375, -0.0157012939453125, 0.022918701171875, 0.0091094970703125, -0.0244293212890625, -0.002410888671875, 0.05377197265625, 0.0019083023071289062, 0.031890869140625, 0.0027904510498046875, 0.055450439453125, -0.0227203369140625, -0.039337158203125, 0.01277923583984375, 0.03125, -0.07794189453125, -0.006519317626953125, 0.06793212890625, 0.03326416015625, 0.0264434814453125, 0.000021338462829589844, 0.0083160400390625, 0.1146240234375, -0.01873779296875, -0.029388427734375, 0.01068115234375, -0.0112152099609375, -0.00868988037109375, -0.00655364990234375, 0.00635528564453125, 0.0270538330078125, 0.02325439453125, 0.007274627685546875, 0.04620361328125, 0.00783538818359375, 0.00893402099609375, -0.0310516357421875, 0.03839111328125, -0.025665283203125, -0.01806640625, 0.0014629364013671875, -0.0236663818359375, 0.0384521484375, -0.019744873046875, 0.04388427734375, 0.019866943359375, -0.01099395751953125, -0.01708984375, 0.005626678466796875, -0.02813720703125, 0.00945281982421875, 0.0208282470703125, -0.0258331298828125, -0.001728057861328125, -0.019744873046875, -0.00319671630859375, 0.0225677490234375, -0.005741119384765625, -0.0131378173828125, -0.0078887939453125, 0.0017328262329101562, -0.00527191162109375, 0.0147857666015625, -0.02972412109375, 0.030059814453125, 0.007061004638671875, -0.028350830078125, -0.0266265869140625, -0.0038089752197265625, 0.027435302734375, -0.051300048828125, 0.037445068359375, -0.0093536376953125, -0.01122283935546875, 0.006473541259765625, -0.021484375, 0.049407958984375, -0.023895263671875, 0.0167236328125, 0.060791015625, -0.010772705078125, 0.01357269287109375, 0.0210418701171875, -0.039825439453125, 0.0222930908203125, -0.0021991729736328125, -0.0079345703125, 0.038726806640625, -0.0694580078125, 0.05072021484375, 0.03955078125, 0.039215087890625, 0.029632568359375, -0.0234222412109375, 0.00910186767578125, 0.044097900390625, -0.056915283203125, -0.08929443359375, -0.0618896484375, -0.0294647216796875, 0.032012939453125, -0.0233154296875, 0.0081939697265625, -0.00855255126953125, 0.002231597900390625, 0.027069091796875, -0.0235748291015625, -0.0321044921875, -0.0296630859375, -0.06390380859375, -0.072265625, 0.0080718994140625, 0.002986907958984375, 0.0200042724609375, -0.002166748046875, 0.03692626953125, -0.00980377197265625, -0.062347412109375, -0.007312774658203125, 0.0433349609375, 0.01117706298828125, 0.04931640625, 0.0040435791015625, -0.033416748046875, -0.04052734375, 0.006458282470703125, 0.015777587890625, 0.012908935546875, -0.012481689453125, 0.0098876953125, -0.00873565673828125, 0.0034580230712890625, 0.00363922119140625, 0.01285552978515625, 0.0115203857421875, -0.0018978118896484375, 0.0029926300048828125, -0.042022705078125, -0.0677490234375, -0.0018405914306640625, -0.08404541015625, 0.00931549072265625, 0.0300445556640625, 0.01213836669921875, 0.00717926025390625, 0.001384735107421875, -0.0014181137084960938, 0.020599365234375, -0.047119140625, -0.005645751953125, 0.032867431640625, 0.00598907470703125, -0.0130462646484375, 0.019866943359375, -0.004680633544921875, -0.01953125, 0.030303955078125, 0.000598907470703125, 0.013275146484375, -0.036712646484375, 0.06427001953125, -0.05322265625, -0.0458984375, 0.0274505615234375, -0.04400634765625, -0.0105743408203125, -0.029754638671875, -0.00959014892578125, 0.012054443359375, 0.09063720703125, 0.01189422607421875, -0.03973388671875, -0.0277252197265625, 0.0191650390625, -0.06610107421875, -0.0271759033203125, 0.011871337890625, -0.0001462697982788086, -0.03289794921875, 0.0224761962890625, -0.011749267578125, -0.001331329345703125, -0.006725311279296875, -0.06756591796875, -0.015869140625, -0.037506103515625, 0.020660400390625, -0.05889892578125, 0.033905029296875, 0.02276611328125, 0.018585205078125, 0.0029544830322265625, 0.00667572021484375, -0.06024169921875, -0.02850341796875, -0.018524169921875, 0.0188140869140625, 0.0208587646484375, 0.0027446746826171875, -0.004688262939453125, -0.0235748291015625, 0.032318115234375, 0.03582763671875, 0.048614501953125, 0.0233154296875, 0.007472991943359375, 0.02508544921875, -0.05926513671875, 0.0199127197265625, -0.0677490234375, -0.0107421875, -0.0111846923828125, -0.0220794677734375, 0.0012950897216796875, -0.014495849609375, -0.0006480216979980469, 0.0016107559204101562, -0.0215606689453125, -0.05712890625, -0.0123138427734375, 0.03948974609375, 0.01503753662109375, 0.009063720703125, 0.01322174072265625, -0.00983428955078125, -0.029541015625, 0.024139404296875, -0.0048828125, -0.041412353515625, 0.01904296875, 0.04925537109375, 0.032989501953125, -0.013214111328125, -0.0118560791015625, -0.00678253173828125, 0.036651611328125, 0.03729248046875, -0.00753021240234375, 0.010467529296875, -0.02618408203125, -0.00925445556640625, 0.0238037109375, -0.06964111328125, 0.0148773193359375, 0.0296173095703125, 0.003116607666015625, -0.035797119140625, -0.0250701904296875, -0.0662841796875, 0.07281494140625, -0.01397705078125, -0.051116943359375, 0.01181793212890625, -0.01153564453125, 0.030426025390625, -0.043487548828125, 0.07025146484375, -0.011627197265625, -0.04632568359375, 0.0171356201171875, -0.005001068115234375, 0.01250457763671875, 0.017059326171875, 0.00701904296875, 0.0127105712890625, -0.00528717041015625, 0.0019683837890625, -0.06646728515625, -0.034423828125, -0.050811767578125, -0.0023441314697265625, -0.033782958984375, -0.01300811767578125, -0.00876617431640625, 0.005401611328125, -0.03521728515625, -0.0303955078125, -0.062744140625, -0.0284271240234375, -0.00887298583984375, 0.005573272705078125, 0.03570556640625, -0.03900146484375, 0.0258941650390625, 0.061981201171875, -0.0243377685546875, 0.0032176971435546875, -0.039031982421875, 0.032989501953125, -0.041656494140625, 0.0241241455078125, -0.005496978759765625, 0.002300262451171875, -0.029083251953125, 0.088623046875, -0.006832122802734375, 0.03729248046875, 0.004184722900390625, 0.005954742431640625, 0.00036644935607910156, 0.052398681640625, 0.038665771484375, -0.0443115234375, 0.00997161865234375, -0.008880615234375, 0.0002601146697998047, -0.0115814208984375, -0.01364898681640625, -0.01282501220703125, 0.0125274658203125, -0.057708740234375, -0.040008544921875, 0.052581787109375, -0.01158905029296875, -0.0100250244140625, 0.044097900390625, 0.0179595947265625, -0.03582763671875, -0.04351806640625, 0.00980377197265625, 0.050628662109375, 0.0018978118896484375, -0.0140228271484375, 0.0177001953125, -0.0152740478515625, 0.00342559814453125, -0.00830078125, -0.020538330078125, 0.00803375244140625, 0.0268707275390625, -0.06658935546875, -0.0237579345703125, 0.028778076171875, -0.07257080078125, -0.02874755859375, -0.00579071044921875, -0.01151275634765625, 0.00514984130859375, -0.015899658203125, -0.00135040283203125, -0.0025787353515625, -0.0157318115234375, -0.04901123046875, 0.0116729736328125, 0.0274505615234375, 0.015380859375, -0.05157470703125, -0.007659912109375, -0.042022705078125, -0.04144287109375, -0.00046372413635253906, -0.007015228271484375, -0.042144775390625, 0.005313873291015625, 0.017547607421875, 0.021240234375, -0.004436492919921875, -0.04339599609375, -0.032073974609375, 0.01274871826171875, 0.052001953125, 0.00273895263671875, 0.02447509765625, 0.00450897216796875, -0.0017795562744140625, 0.0233612060546875, 0.027496337890625, 0.0188751220703125, 0.0016984939575195312, -0.042510986328125, 0.034271240234375, 0.0159454345703125, -0.004894256591796875, -0.041351318359375, 0.0067901611328125, -0.06768798828125, 0.004436492919921875, -0.023162841796875, -0.007244110107421875, -0.01340484619140625, -0.003265380859375, -0.0241546630859375, 0.021331787109375, 0.0036830902099609375, -0.00736236572265625, 0.01090240478515625, -0.026611328125, -0.007129669189453125, 0.005054473876953125, 0.0233154296875, 0.0222625732421875, -0.0169525146484375, 0.013519287109375, 0.0012292861938476562, -0.0330810546875, 0.0814208984375, 0.033203125, -0.022705078125, 0.01364898681640625, -0.00592803955078125, -0.00791168212890625, -0.0252227783203125, 0.0703125, -0.036407470703125, -0.0196380615234375, 0.037139892578125, 0.006885528564453125, -0.05535888671875, -0.006198883056640625, -0.0330810546875, 0.0406494140625, 0.01020050048828125, 0.085205078125, -0.060943603515625, 0.038360595703125, 0.0560302734375, -0.0011682510375976562, 0.0193023681640625, -0.0276031494140625, 0.01140594482421875, -0.03802490234375, 0.07232666015625, 0.0008664131164550781, -0.00759124755859375, 0.0159912109375, -0.031982421875, 0.016693115234375, 0.01690673828125, 0.034088134765625, 0.004390716552734375, -0.10736083984375, -0.013336181640625, 0.08740234375, -0.0384521484375, -0.0013093948364257812, 0.0210418701171875, 0.002674102783203125, 0.0095977783203125, -0.0111541748046875, 0.03759765625, -0.0168914794921875, 0.0127105712890625, 0.037567138671875, -0.0005278587341308594, -0.0102386474609375, 0.062469482421875, -0.0241546630859375, 0.0228424072265625, 0.023223876953125, -0.0550537109375, 0.00946807861328125, 0.0171051025390625, 0.006870269775390625, 0.0665283203125, -0.08367919921875, -0.002460479736328125, -0.061767578125, 0.09210205078125, 0.015838623046875, 0.0038890838623046875, 0.003505706787109375, -0.03485107421875, -0.006805419921875, 0.021331787109375, -0.0004315376281738281, 0.02264404296875, -0.0016384124755859375, 0.0718994140625, -0.0010986328125, 0.06640625, 0.01270294189453125, 0.055206298828125, -0.0254364013671875, -0.005863189697265625, -0.04754638671875, 0.03814697265625, -0.04779052734375, -0.00858306884765625, 0.006816864013671875, 0.0263824462890625, 0.00830841064453125, 0.006328582763671875, -0.0789794921875, 0.0660400390625, 0.005435943603515625, 0.09912109375, -0.06585693359375, -0.01396942138671875, 0.04571533203125, 0.035552978515625, 0.02142333984375, -0.0013017654418945312, 0.0014362335205078125, 0.0125274658203125, 0.04876708984375, 0.026275634765625, -0.0014791488647460938, 0.01020050048828125, -0.017547607421875, -0.0235443115234375, 0.0712890625, -0.04010009765625, 0.03338623046875, -0.008056640625, 0.01953125, -0.02374267578125, -0.0025234222412109375, -0.0225830078125, -0.00038743019104003906, 0.01338958740234375, -0.0259552001953125, 0.005123138427734375, 0.008514404296875, -0.0096282958984375, 0.0233612060546875, 0.006214141845703125, -0.01158905029296875, 0.0243072509765625, 0.0474853515625, -0.01898193359375, 0.032745361328125, -0.02166748046875, 0.042724609375, -0.00879669189453125, 0.01248931884765625, 0.07415771484375, -0.0248870849609375, 0.009979248046875, 0.0281219482421875, -0.06781005859375, 0.0195465087890625, 0.033172607421875, 0.006755828857421875, 0.016845703125, 0.05181884765625, 0.057586669921875, 0.015777587890625, -0.036773681640625, -0.01934814453125, 0.005970001220703125, 0.002685546875, 0.00501251220703125, -0.02239990234375, -0.0042877197265625, -0.031494140625, 0.0008082389831542969, -0.0120086669921875, 0.0253753662109375, 0.0301513671875, 0.0491943359375, 0.0238800048828125, 0.052215576171875, -0.11700439453125, -0.032196044921875, -0.031768798828125, 0.01221466064453125, 0.01216888427734375, 0.056365966796875, -0.017822265625, 0.0623779296875, -0.0726318359375, -0.0214996337890625, 0.0004589557647705078, 0.02325439453125, -0.0030689239501953125, -0.010406494140625, -0.023101806640625, -0.023345947265625, 0.0013475418090820312, 0.037261962890625, -0.020477294921875, -0.043701171875, -0.0084686279296875, 0.01548004150390625, -0.01097869873046875, -0.0306243896484375, 0.0079345703125, -0.0177459716796875, -0.060211181640625, -0.033294677734375, 0.01129150390625, 0.016143798828125, 0.0211181640625, 0.024383544921875, 0.050140380859375, -0.00252532958984375, -0.0289154052734375, 0.037445068359375, -0.010711669921875, -0.042999267578125, 0.0068511962890625, -0.0155181884765625, 0.0902099609375, -0.0043792724609375, -0.028778076171875, -0.01238250732421875, -0.02557373046875, 0.061981201171875, -0.04559326171875, -0.0022182464599609375, 0.01024627685546875, 0.0462646484375, 0.041961669921875, -0.0008721351623535156, -0.006317138671875, 0.0285186767578125, -0.01177215576171875, -0.037811279296875, 0.03326416015625, -0.0062408447265625, -0.037841796875, -0.033782958984375, -0.022125244140625, 0.031494140625, 0.05926513671875, -0.0196380615234375, 0.028961181640625, 0.055755615234375, 0.029998779296875, 0.01044464111328125, -0.011138916015625, 0.00794219970703125, 0.0176239013671875, -0.029754638671875, -0.007740020751953125, -0.004913330078125, -0.016815185546875, -0.01262664794921875, 0.066650390625, -0.0261688232421875, -0.004535675048828125, -0.0142059326171875, 0.028076171875, -0.0241851806640625, -0.00439453125, -0.03271484375, -0.06451416015625, 0.0198516845703125, 0.0577392578125, -0.044158935546875, -0.018402099609375, -0.0195159912109375, 0.006008148193359375, -0.01435089111328125, -0.0285491943359375, 0.0254058837890625, -0.021453857421875, 0.040283203125, 0.03680419921875, -0.024444580078125, 0.0243682861328125, -0.004825592041015625, -0.0266265869140625, 0.0230865478515625, -0.01418304443359375, 0.0172119140625, -0.0009255409240722656, 0.0013818740844726562, 0.0276947021484375, 0.0237274169921875, 0.01318359375, -0.0306854248046875, -0.0006136894226074219, 0.055206298828125, -0.026947021484375, 0.0060882568359375, 0.00004303455352783203, -0.018798828125, -0.0251617431640625, 0.0030307769775390625, -0.0120849609375, 0.0244293212890625, -0.005245208740234375, 0.044647216796875, -0.030029296875, 0.040008544921875, -0.00020587444305419922, -0.02362060546875, -0.007080078125, -0.002910614013671875, 0.0277557373046875, 0.013580322265625, -0.007793426513671875, 0.015960693359375, 0.0288848876953125, -0.0141754150390625, -0.0224609375, -0.02301025390625, 0.00945281982421875, -0.01548004150390625, -0.006031036376953125, 0.00946044921875, -0.0193023681640625, -0.01287841796875, -0.041595458984375, -0.01079559326171875, 0.000036835670471191406, 0.0360107421875, -0.0193939208984375, 0.0465087890625, 0.006378173828125, -0.0133209228515625, -0.050323486328125, -0.0006589889526367188, -0.02740478515625, 0.0056304931640625, 0.007717132568359375, -0.002063751220703125, 0.0278778076171875, -0.0223541259765625, -0.03955078125, 0.053009033203125, -0.01148223876953125, -0.0247039794921875, -0.012359619140625, -0.00010669231414794922, -0.0214996337890625, 0.04022216796875, -0.0013513565063476562, 0.00531768798828125, -0.0212249755859375, 0.01276397705078125, -0.00860595703125, -0.03411865234375, 0.0307159423828125, -0.03369140625, -0.06024169921875, -0.01222991943359375, 0.000027954578399658203, -0.0219879150390625, -0.0086517333984375, -0.007110595703125, 0.00806427001953125, 0.038818359375, -0.0244903564453125, -0.0294189453125, -0.0033740997314453125, 0.026153564453125, 0.028411865234375, -0.00489044189453125, -0.0245819091796875, -0.05572509765625, 0.01043701171875, -0.0027599334716796875, 0.01021575927734375, 0.0251312255859375, -0.03179931640625, -0.036529541015625, -0.018035888671875, -0.00624847412109375, 0.0162506103515625, -0.0579833984375, 0.01776123046875, 0.0240325927734375, -0.035125732421875, -0.00649261474609375, 0.03790283203125, -0.0791015625, 0.008758544921875, -0.019989013671875, 0.002330780029296875, -0.08294677734375, -0.018157958984375, -0.0043182373046875, -0.021484375, -0.005245208740234375, -0.01244354248046875, 0.0148162841796875, -0.0159454345703125, -0.0037059783935546875, 0.005146026611328125, 0.00905609130859375, -0.03814697265625, 0.01477813720703125, -0.0089263916015625, 0.044342041015625, -0.046478271484375, -0.00502777099609375, 0.00797271728515625, 0.0192718505859375, 0.01444244384765625, 0.02056884765625, -0.0284271240234375, 0.03045654296875, -0.005939483642578125, 0.03570556640625, -0.0228729248046875, 0.06195068359375, 0.0125274658203125, 0.0274810791015625, 0.037078857421875, 0.00421905517578125, 0.08056640625, -0.0433349609375, 0.004856109619140625, -0.007965087890625, 0.016204833984375, -0.04278564453125, 0.042816162109375, 0.01332855224609375, 0.0047149658203125, 0.023773193359375 ]
9cfe4893b5b08c4dba12dd4c741160870d4dada6
Wordpress Stackexchange Q: Does Wordpress not use relative URLs? The articles/posts I've read about migrating Wordpress between local/staging/live servers talk about having to migrating the URLs each time - is this true? Or can you simply switch Wordpress to use relative URLs? Sorry if this is basic but hard-coded URLs make no sense so thought I'd check before following bad advice. A: Out of the box Wordpress uses absolute URLs. This requires you to make database updates when moving sites from development to production or when changing the base URL. I'm not sure why this choice was made but there are many options when moving sites. * *You can use a tool like WP Migrate DB Pro or another option that will work with serialized data to change the URL in the database after moving. *Another option seems to be a plugin that changes that URLs to relative ones. It is up to date but I haven't used it so I can't endorse it. (https://wordpress.org/plugins/relative-url/)
Q: Does Wordpress not use relative URLs? The articles/posts I've read about migrating Wordpress between local/staging/live servers talk about having to migrating the URLs each time - is this true? Or can you simply switch Wordpress to use relative URLs? Sorry if this is basic but hard-coded URLs make no sense so thought I'd check before following bad advice. A: Out of the box Wordpress uses absolute URLs. This requires you to make database updates when moving sites from development to production or when changing the base URL. I'm not sure why this choice was made but there are many options when moving sites. * *You can use a tool like WP Migrate DB Pro or another option that will work with serialized data to change the URL in the database after moving. *Another option seems to be a plugin that changes that URLs to relative ones. It is up to date but I haven't used it so I can't endorse it. (https://wordpress.org/plugins/relative-url/)
wordpress
{ "language": "en", "length": 163, "provenance": "stackexchange_00019.jsonl.gz:468069", "question_score": "4", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/238204" }
[ 0.039031982421875, 0.00959014892578125, 0.025634765625, 0.0018205642700195312, -0.0004687309265136719, -0.0203857421875, 0.041412353515625, -0.037017822265625, -0.010986328125, 0.03411865234375, 0.0079345703125, -0.0130462646484375, 0.0209197998046875, -0.03179931640625, -0.001781463623046875, -0.0123443603515625, 0.029052734375, -0.049072265625, -0.015625, -0.0160064697265625, 0.004848480224609375, -0.004352569580078125, 0.0264739990234375, 0.06024169921875, 0.03924560546875, -0.0692138671875, 0.061309814453125, -0.0244140625, 0.034454345703125, -0.0182647705078125, 0.0333251953125, -0.0128173828125, -0.006641387939453125, 0.010101318359375, 0.00955963134765625, -0.050994873046875, 0.015228271484375, -0.0006151199340820312, -0.005886077880859375, 0.0266571044921875, 0.00925445556640625, -0.011932373046875, 0.025787353515625, 0.006191253662109375, 0.004741668701171875, -0.0587158203125, 0.052581787109375, -0.046661376953125, 0.014068603515625, -0.004940032958984375, 0.0286407470703125, 0.0157928466796875, 0.037109375, -0.00731658935546875, -0.04180908203125, -0.0341796875, 0.0033588409423828125, -0.004306793212890625, 0.02276611328125, -0.055877685546875, -0.0228729248046875, 0.0096893310546875, 0.041595458984375, 0.05181884765625, -0.0191650390625, -0.018035888671875, -0.0163421630859375, 0.021270751953125, -0.041961669921875, -0.0026836395263671875, 0.0531005859375, -0.0217132568359375, -0.009246826171875, -0.02923583984375, 0.018707275390625, 0.012481689453125, -0.0004584789276123047, -0.0106658935546875, 0.0007977485656738281, 0.020599365234375, 0.0341796875, 0.025299072265625, 0.004894256591796875, -0.049102783203125, 0.032989501953125, -0.0280914306640625, 0.00018215179443359375, -0.0211334228515625, -0.04730224609375, -0.037322998046875, -0.031646728515625, 0.0018033981323242188, -0.08056640625, 0.007205963134765625, -0.01187896728515625, 0.005859375, 0.04718017578125, 0.0254058837890625, 0.0094757080078125, -0.01457977294921875, -0.01076507568359375, -0.0216217041015625, -0.0257568359375, 0.0036411285400390625, 0.0010004043579101562, 0.0142822265625, -0.007282257080078125, 0.04583740234375, 0.05450439453125, 0.020050048828125, -0.0093536376953125, 0.030792236328125, -0.01525115966796875, -0.005275726318359375, -0.0179901123046875, 0.017669677734375, -0.0379638671875, 0.0239105224609375, -0.017486572265625, 0.043243408203125, 0.01947021484375, 0.04083251953125, -0.032928466796875, -0.00830078125, -0.01081085205078125, -0.016204833984375, -0.007411956787109375, -0.01678466796875, -0.040802001953125, 0.03515625, -0.024200439453125, 0.004825592041015625, 0.032958984375, 0.034027099609375, 0.0012683868408203125, -0.0233306884765625, 0.0170440673828125, -0.01020050048828125, -0.01373291015625, 0.032379150390625, -0.034881591796875, -0.036346435546875, 0.009429931640625, -0.039215087890625, 0.00859832763671875, 0.0193939208984375, 0.0307464599609375, 0.02032470703125, -0.0232086181640625, -0.030609130859375, 0.01097869873046875, -0.014007568359375, 0.04461669921875, -0.01641845703125, 0.010284423828125, -0.070068359375, 0.036773681640625, -0.0677490234375, 0.03253173828125, -0.059967041015625, 0.002330780029296875, 0.0245819091796875, 0.044219970703125, -0.043182373046875, -0.0311279296875, -0.034210205078125, -0.078857421875, -0.01531219482421875, 0.0237579345703125, 0.00341796875, 0.024810791015625, -0.007503509521484375, -0.034820556640625, -0.004085540771484375, 0.01261138916015625, 0.007389068603515625, 0.0028533935546875, 0.0196990966796875, 0.000797271728515625, 0.0455322265625, 0.020599365234375, -0.0255126953125, 0.021240234375, 0.016693115234375, -0.041595458984375, 0.06756591796875, 0.004566192626953125, 0.04925537109375, 0.00016868114471435547, 0.00678253173828125, 0.01143646240234375, 0.02862548828125, -0.0031490325927734375, 0.03118896484375, -0.006500244140625, -0.00913238525390625, -0.00681304931640625, 0.0187530517578125, -0.01044464111328125, -0.0546875, -0.042266845703125, 0.0108489990234375, 0.004871368408203125, 0.0165557861328125, 0.0184326171875, 0.0052032470703125, -0.00286865234375, 0.03839111328125, 0.007663726806640625, 0.035430908203125, -0.0028820037841796875, 0.0267791748046875, -0.0202178955078125, -0.042877197265625, -0.01316070556640625, 0.03558349609375, 0.00632476806640625, -0.0177459716796875, -0.00916290283203125, 0.0020046234130859375, -0.00791168212890625, 0.00678253173828125, -0.037841796875, 0.0127410888671875, -0.0127410888671875, -0.023834228515625, -0.00693511962890625, -0.015411376953125, -0.037994384765625, 0.01258087158203125, -0.02850341796875, 0.0197601318359375, -0.007671356201171875, -0.0037288665771484375, -0.027008056640625, -0.0006880760192871094, 0.0186309814453125, -0.01311492919921875, 0.01290130615234375, 0.03778076171875, 0.0229644775390625, -0.005115509033203125, -0.00826263427734375, 0.019744873046875, -0.02020263671875, -0.057861328125, 0.01568603515625, 0.007266998291015625, -0.0106964111328125, 0.03460693359375, -0.01105499267578125, 0.00025916099548339844, 0.007587432861328125, -0.099609375, -0.0184173583984375, 0.0499267578125, -0.03497314453125, -0.0259246826171875, 0.01959228515625, -0.0039520263671875, 0.002674102783203125, -0.01105499267578125, -0.01326751708984375, -0.01160430908203125, -0.018829345703125, 0.01171112060546875, 0.01617431640625, 0.0220794677734375, 0.00010919570922851562, -0.00241851806640625, 0.01493072509765625, -0.018280029296875, 0.0121612548828125, 0.0024394989013671875, 0.00927734375, 0.03289794921875, -0.0089263916015625, -0.00695037841796875, 0.0220794677734375, 0.01081085205078125, -0.044281005859375, -0.02239990234375, -0.00799560546875, -0.00424957275390625, 0.003292083740234375, -0.0073699951171875, 0.0294952392578125, -0.0116729736328125, 0.0278472900390625, 0.000006794929504394531, 0.03594970703125, -0.01995849609375, -0.0264434814453125, 0.0274810791015625, 0.0157470703125, -0.0426025390625, 0.049774169921875, -0.033111572265625, 0.0204620361328125, -0.0206298828125, 0.02398681640625, 0.044158935546875, -0.00033974647521972656, -0.01322174072265625, -0.01654052734375, 0.0496826171875, 0.006290435791015625, -0.0022430419921875, -0.01183319091796875, 0.0194854736328125, -0.09686279296875, -0.07196044921875, 0.01300048828125, -0.045013427734375, 0.0186614990234375, -0.029296875, -0.01378631591796875, -0.004604339599609375, -0.08758544921875, -0.0204620361328125, -0.0439453125, 0.0132904052734375, -0.0175933837890625, 0.07232666015625, 0.0123748779296875, 0.0010976791381835938, 0.06866455078125, 0.01137542724609375, 0.012786865234375, -0.05126953125, -0.059051513671875, -0.087890625, -0.08270263671875, -0.048004150390625, 0.0101470947265625, 0.00331878662109375, 0.021820068359375, -0.032928466796875, 0.01605224609375, -0.037017822265625, 0.010955810546875, 0.07122802734375, -0.01494598388671875, -0.034759521484375, 0.0177459716796875, -0.03729248046875, 0.0283660888671875, -0.00527191162109375, 0.08514404296875, 0.044586181640625, -0.039703369140625, 0.00821685791015625, 0.00868988037109375, 0.01169586181640625, -0.0005135536193847656, -0.01372528076171875, -0.0034923553466796875, 0.00386810302734375, -0.0206298828125, -0.043853759765625, -0.0283203125, -0.012420654296875, -0.056488037109375, 0.01277923583984375, 0.031463623046875, -0.004199981689453125, -0.0105438232421875, -0.0155792236328125, 0.0208740234375, 0.0005445480346679688, 0.002735137939453125, 0.0177764892578125, -0.0094757080078125, -0.006801605224609375, -0.0078887939453125, -0.0247344970703125, -0.002532958984375, -0.045562744140625, 0.004611968994140625, -0.005603790283203125, -0.038116455078125, -0.0124664306640625, -0.0120849609375, 0.01248931884765625, -0.05352783203125, 0.046356201171875, -0.057373046875, -0.0114593505859375, -0.0308990478515625, -0.01617431640625, 0.003635406494140625, 0.0916748046875, -0.059478759765625, -0.0223541259765625, 0.01203155517578125, 0.03125, -0.031982421875, -0.05487060546875, -0.04437255859375, -0.027587890625, -0.044647216796875, -0.020843505859375, -0.0307159423828125, -0.01512908935546875, 0.024566650390625, -0.008636474609375, 0.021392822265625, -0.045013427734375, 0.00368499755859375, -0.005886077880859375, 0.020050048828125, -0.007358551025390625, 0.0204315185546875, -0.00551605224609375, -0.00011360645294189453, -0.03851318359375, -0.059539794921875, -0.036346435546875, 0.01139068603515625, 0.050018310546875, -0.0185546875, 0.00217437744140625, 0.005092620849609375, 0.07379150390625, -0.018280029296875, 0.06463623046875, -0.037872314453125, -0.0015764236450195312, -0.00031495094299316406, -0.0008745193481445312, -0.007526397705078125, 0.00738525390625, 0.01035308837890625, -0.0628662109375, -0.0732421875, -0.043212890625, -0.0243377685546875, 0.052032470703125, -0.0009908676147460938, -0.01235198974609375, -0.0313720703125, -0.0025997161865234375, 0.0156097412109375, 0.0230712890625, 0.01084136962890625, -0.0196533203125, -0.0038051605224609375, -0.029937744140625, 0.058929443359375, -0.007793426513671875, 0.024078369140625, -0.0159149169921875, 0.04833984375, 0.0020809173583984375, -0.03717041015625, 0.039520263671875, 0.034820556640625, 0.044189453125, 0.0034465789794921875, 0.046417236328125, 0.006366729736328125, -0.006427764892578125, 0.04827880859375, -0.00434112548828125, 0.01189422607421875, 0.0030269622802734375, -0.0181884765625, 0.0012578964233398438, -0.0247039794921875, 0.0165863037109375, 0.024444580078125, -0.0007510185241699219, 0.0653076171875, -0.005374908447265625, -0.0188140869140625, -0.0038394927978515625, 0.0472412109375, -0.00838470458984375, -0.021759033203125, -0.06390380859375, -0.045989990234375, 0.01934814453125, -0.02874755859375, 0.044586181640625, 0.01422119140625, -0.01088714599609375, 0.048431396484375, 0.043304443359375, -0.003353118896484375, 0.02386474609375, -0.0079803466796875, 0.00788116455078125, 0.0184478759765625, 0.02740478515625, -0.00615692138671875, 0.011138916015625, -0.01064300537109375, 0.09332275390625, 0.001461029052734375, -0.049285888671875, 0.027130126953125, -0.0115814208984375, -0.003688812255859375, 0.038421630859375, -0.03228759765625, 0.0034809112548828125, 0.0071563720703125, -0.0030498504638671875, 0.01180267333984375, -0.018585205078125, -0.047332763671875, -0.026580810546875, 0.032928466796875, -0.0033626556396484375, 0.003047943115234375, -0.0263519287109375, 0.079833984375, -0.0056304931640625, 0.025238037109375, -0.007190704345703125, -0.0038700103759765625, 0.0275115966796875, 0.00865936279296875, 0.007282257080078125, -0.011993408203125, 0.02752685546875, -0.03558349609375, 0.059295654296875, -0.054718017578125, -0.0117645263671875, 0.04345703125, 0.06585693359375, -0.0108795166015625, -0.041595458984375, 0.005992889404296875, -0.0201873779296875, -0.017181396484375, 0.05084228515625, 0.01373291015625, -0.03900146484375, -0.03497314453125, -0.03118896484375, 0.03851318359375, -0.00971221923828125, -0.0224761962890625, -0.0135650634765625, -0.0172119140625, -0.0078887939453125, 0.03887939453125, -0.05316162109375, 0.0125885009765625, 0.0252838134765625, -0.0210723876953125, -0.049407958984375, -0.020233154296875, 0.028533935546875, 0.03607177734375, -0.0335693359375, -0.049072265625, 0.041961669921875, -0.01654052734375, 0.0305328369140625, -0.01410675048828125, -0.0255279541015625, -0.007640838623046875, 0.01456451416015625, 0.047454833984375, 0.021575927734375, -0.036529541015625, 0.0027637481689453125, -0.060394287109375, -0.02423095703125, -0.0085296630859375, -0.011932373046875, -0.03973388671875, -0.0017423629760742188, 0.0077667236328125, 0.0229034423828125, -0.0233917236328125, -0.02667236328125, -0.038604736328125, -0.01508331298828125, 0.02178955078125, -0.0232696533203125, -0.0016794204711914062, 0.04278564453125, -0.0009946823120117188, 0.038330078125, 0.00592803955078125, -0.00897979736328125, -0.037628173828125, -0.012786865234375, 0.018035888671875, 0.01248931884765625, -0.04876708984375, -0.0176239013671875, -0.0433349609375, 0.0003428459167480469, 0.06732177734375, -0.022003173828125, 0.02935791015625, -0.031005859375, -0.005352020263671875, -0.0209503173828125, 0.035614013671875, -0.060028076171875, 0.03875732421875, -0.03924560546875, 0.00974273681640625, 0.0185699462890625, -0.00536346435546875, -0.0266876220703125, -0.00460052490234375, 0.040771484375, -0.00914764404296875, 0.01380157470703125, -0.01039886474609375, 0.01448822021484375, 0.07342529296875, -0.005847930908203125, 0.033966064453125, 0.05499267578125, 0.006122589111328125, 0.020843505859375, 0.039581298828125, -0.04571533203125, 0.00034427642822265625, 0.0076141357421875, -0.00032329559326171875, -0.037261962890625, -0.0279388427734375, -0.01473236083984375, 0.0193328857421875, 0.0665283203125, 0.06585693359375, -0.07769775390625, 0.0009398460388183594, 0.01520538330078125, -0.01666259765625, 0.00907135009765625, -0.005340576171875, -0.02001953125, -0.03460693359375, -0.0023193359375, 0.01702880859375, -0.0266265869140625, -0.016448974609375, 0.0111083984375, 0.0035915374755859375, -0.0082550048828125, 0.04443359375, -0.0004291534423828125, -0.00244903564453125, -0.0494384765625, -0.00830841064453125, -0.008514404296875, -0.0024738311767578125, -0.022491455078125, 0.0263671875, -0.02447509765625, -0.04736328125, 0.01537322998046875, -0.0638427734375, 0.0216827392578125, -0.027313232421875, -0.03668212890625, 0.045196533203125, 0.0355224609375, -0.0189971923828125, -0.01029205322265625, 0.00501251220703125, 0.0161590576171875, 0.03704833984375, -0.001850128173828125, 0.006969451904296875, 0.0049896240234375, -0.025421142578125, -0.01067352294921875, -0.0355224609375, 0.00748443603515625, -0.0214691162109375, -0.007350921630859375, 0.060699462890625, -0.005939483642578125, -0.02349853515625, 0.0252227783203125, 0.0222625732421875, -0.014434814453125, 0.010467529296875, -0.003650665283203125, -0.034149169921875, -0.036956787109375, 0.009124755859375, -0.05133056640625, -0.004337310791015625, -0.03125, -0.0280914306640625, 0.050048828125, -0.037506103515625, 0.02606201171875, 0.05462646484375, 0.012664794921875, -0.01849365234375, 0.005580902099609375, -0.01447296142578125, 0.046356201171875, -0.002475738525390625, -0.0015935897827148438, -0.03375244140625, 0.00861358642578125, 0.0011835098266601562, 0.0110321044921875, 0.05316162109375, 0.01393890380859375, -0.05682373046875, 0.032501220703125, 0.09490966796875, 0.0626220703125, 0.026885986328125, 0.050384521484375, -0.04278564453125, 0.03680419921875, 0.006099700927734375, -0.037933349609375, 0.01922607421875, 0.005443572998046875, -0.050628662109375, 0.006256103515625, 0.043060302734375, 0.060028076171875, 0.0022640228271484375, -0.0231475830078125, -0.0214996337890625, 0.0018825531005859375, 0.031341552734375, -0.0145721435546875, 0.01983642578125, -0.00414276123046875, -0.0084991455078125, -0.019744873046875, -0.001491546630859375, -0.01763916015625, 0.034149169921875, -0.021453857421875, -0.0013456344604492188, 0.059417724609375, 0.0166473388671875, 0.0294647216796875, 0.006439208984375, -0.0033111572265625, -0.0131988525390625, 0.013336181640625, 0.07568359375, 0.056304931640625, 0.0278472900390625, -0.013092041015625, -0.00789642333984375, 0.04132080078125, 0.08740234375, -0.0531005859375, -0.041412353515625, -0.0034008026123046875, -0.03350830078125, 0.0232391357421875, -0.0108489990234375, 0.02923583984375, -0.0286407470703125, -0.04901123046875, 0.01392364501953125, -0.033660888671875, 0.01021575927734375, 0.0167083740234375, 0.036224365234375, 0.0677490234375, -0.026885986328125, -0.048919677734375, -0.03179931640625, -0.0189666748046875, 0.03216552734375, 0.037445068359375, 0.0156707763671875, 0.0207977294921875, 0.0235748291015625, -0.01236724853515625, 0.0207366943359375, 0.033050537109375, -0.0125885009765625, -0.0248565673828125, -0.0272369384765625, -0.07708740234375, 0.0186767578125, 0.04071044921875, 0.039215087890625, 0.035247802734375, 0.06927490234375, 0.03704833984375, -0.00438690185546875, -0.0088958740234375, 0.01324462890625, -0.020172119140625, 0.0419921875, -0.037841796875, 0.0207061767578125, 0.007061004638671875, -0.01357269287109375, -0.0333251953125, -0.01346588134765625, 0.051025390625, -0.0114593505859375, 0.0362548828125, -0.0001099705696105957, -0.01099395751953125, 0.060272216796875, -0.019866943359375, 0.039337158203125, 0.0031681060791015625, -0.0202484130859375, -0.005634307861328125, -0.034271240234375, 0.02056884765625, -0.017486572265625, 0.004840850830078125, 0.002170562744140625, 0.049407958984375, -0.00775146484375, -0.013519287109375, -0.005062103271484375, 0.00004023313522338867, 0.0101776123046875, 0.001026153564453125, 0.015350341796875, 0.00021886825561523438, 0.01434326171875, 0.01178741455078125, 0.0179901123046875, 0.02325439453125, -0.004726409912109375, 0.1444091796875, -0.06878662109375, -0.01033782958984375, 0.031097412109375, -0.029571533203125, 0.029296875, 0.021240234375, -0.0251312255859375, -0.01171112060546875, 0.0150299072265625, -0.00594329833984375, -0.00586700439453125, 0.0005154609680175781, 0.0023021697998046875, -0.049713134765625, -0.004138946533203125, -0.047088623046875, 0.0193939208984375, 0.0159759521484375, 0.00701141357421875, -0.054595947265625, -0.058135986328125, -0.0307159423828125, 0.00865936279296875, -0.02557373046875, -0.04266357421875, -0.0178375244140625, 0.07861328125, 0.04302978515625, 0.010986328125, 0.00649261474609375, -0.0694580078125, 0.034881591796875, 0.034942626953125, 0.050811767578125, -0.041748046875, 0.033660888671875, -0.01055908203125, 0.004547119140625, 0.002849578857421875, 0.07818603515625, 0.004833221435546875, -0.019378662109375, -0.0261383056640625, -0.0221710205078125, 0.0214385986328125, 0.01270294189453125, 0.006046295166015625, -0.0246124267578125, 0.011016845703125, -0.00600433349609375, -0.0209503173828125, -0.031951904296875, -0.032440185546875, 0.02667236328125, 0.039520263671875, -0.00702667236328125, 0.003360748291015625, -0.0318603515625, -0.031005859375, 0.0233917236328125, 0.0228424072265625, -0.048736572265625, 0.0423583984375, 0.00177001953125, 0.0027561187744140625, -0.0125579833984375, 0.032684326171875, -0.0179595947265625, -0.007843017578125, -0.05682373046875, -0.035736083984375, -0.0389404296875, 0.033355712890625, -0.0275726318359375, 0.0233001708984375, 0.0400390625, -0.0209808349609375, -0.016845703125, 0.01294708251953125, 0.0212249755859375, 0.06500244140625, -0.0321044921875, -0.0188751220703125, 0.0124053955078125, 0.0161285400390625, -0.0416259765625, 0.00576019287109375, 0.0228424072265625, 0.007465362548828125, -0.0147705078125, 0.002269744873046875, -0.0207672119140625, -0.006092071533203125, -0.047637939453125, -0.09356689453125, 0.021026611328125, -0.00823974609375, -0.046783447265625, -0.0125579833984375, -0.024810791015625, -0.0231781005859375, 0.04150390625, 0.003444671630859375, -0.0192413330078125, -0.0204010009765625, 0.0302276611328125, 0.01323699951171875, 0.057373046875, -0.0239410400390625, 0.019073486328125, 0.0240020751953125, 0.06719970703125, 0.053955078125, 0.03607177734375, 0.0009737014770507812, 0.0004086494445800781, 0.0302276611328125, 0.04974365234375, 0.00011938810348510742, 0.027801513671875, 0.01354217529296875, -0.039794921875, -0.0185089111328125, -0.02093505859375, -0.01415252685546875, 0.0025424957275390625, 0.04815673828125, 0.076904296875, 0.008056640625, -0.0322265625, -0.0577392578125, -0.00800323486328125, -0.028045654296875, -0.02191162109375, 0.03460693359375, -0.08306884765625, -0.0023212432861328125, -0.0026493072509765625, 0.00312042236328125, 0.0038928985595703125, -0.07525634765625, -0.0177154541015625, -0.006298065185546875, -0.0322265625, 0.024993896484375, -0.0089874267578125, -0.0215301513671875, 0.0771484375, -0.04241943359375, -0.0011625289916992188, 0.0187225341796875, 0.0263671875, 0.039215087890625, 0.002933502197265625, 0.01374053955078125, 0.01557159423828125, 0.01953125, 0.0158843994140625, 0.0252227783203125, 0.024444580078125, -0.0009002685546875, -0.0159454345703125, -0.03216552734375, 0.0211944580078125, 0.01934814453125, 0.033172607421875, -0.00968170166015625, 0.050079345703125, 0.0423583984375, 0.023956298828125, 0.0205078125, 0.023956298828125, 0.00876617431640625, 0.026092529296875, -0.037353515625, -0.007598876953125, -0.01806640625, -0.05108642578125, 0.004894256591796875, -0.013031005859375, -0.039215087890625, 0.0004756450653076172, -0.031646728515625, -0.01519012451171875, -0.03204345703125, -0.0095672607421875 ]
8f086569683118e3b67632e7faab38d90a2c906b
Wordpress Stackexchange Q: Separate Custom Post Type Taxonomy by Comma I tried to figure out how to separate the custom post type taxonomies. $terms = get_the_terms( $post->ID , array( 'commitments', 'type' ) ); foreach ( $terms as $term ) { $term_link = get_term_link( $term, array( 'commitments', 'type' ) ); if( is_wp_error( $term_link ) ) continue; echo '<a href="' . $term_link . '">' . $term->name . '</a>'; } Each taxonomies show correctly. However, I cannot separate them in comma. it shows "TaxonomyATaxonomyB" but I want to show it as "TaxonomyA, TaxonomyB" How to do it? or is there any other way around? Thanks! A: Or you can use get_the_term_list function. <?php echo get_the_term_list( $post->ID, 'commitments', '', ', ' ); ?>
Q: Separate Custom Post Type Taxonomy by Comma I tried to figure out how to separate the custom post type taxonomies. $terms = get_the_terms( $post->ID , array( 'commitments', 'type' ) ); foreach ( $terms as $term ) { $term_link = get_term_link( $term, array( 'commitments', 'type' ) ); if( is_wp_error( $term_link ) ) continue; echo '<a href="' . $term_link . '">' . $term->name . '</a>'; } Each taxonomies show correctly. However, I cannot separate them in comma. it shows "TaxonomyATaxonomyB" but I want to show it as "TaxonomyA, TaxonomyB" How to do it? or is there any other way around? Thanks! A: Or you can use get_the_term_list function. <?php echo get_the_term_list( $post->ID, 'commitments', '', ', ' ); ?> A: You can use a counter to determine if you need to add a comma or not : $terms = get_the_terms( $post->ID , array( 'commitments', 'type' ) ); // init counter $i = 1; foreach ( $terms as $term ) { $term_link = get_term_link( $term, array( 'commitments', 'type' ) ); if( is_wp_error( $term_link ) ) continue; echo '<a href="' . $term_link . '">' . $term->name . '</a>'; // Add comma (except after the last theme) echo ($i < count($terms))? ", " : ""; // Increment counter $i++; } A: The cleanest way (IMO) to do anything like this in PHP, is build an array and then implode it: $list = []; foreach ( $terms as $term ) { $term_link = get_term_link( $term /* no need for taxonomy arg if $term is an object */ ); if ( ! is_wp_error( $term_link ) ) $list[] = $term_link; } echo implode( ', ', $list );
wordpress
{ "language": "en", "length": 269, "provenance": "stackexchange_00019.jsonl.gz:468105", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/238359" }
[ 0.045257568359375, 0.004886627197265625, -0.047088623046875, -0.06707763671875, 0.0408935546875, -0.02545166015625, 0.041748046875, 0.0293426513671875, -0.0279998779296875, 0.00878143310546875, -0.0009851455688476562, 0.01534271240234375, -0.0474853515625, -0.03631591796875, 0.0159454345703125, -0.038116455078125, 0.0183868408203125, -0.0006527900695800781, 0.0222015380859375, -0.003902435302734375, 0.010711669921875, 0.00371551513671875, 0.0015850067138671875, -0.02569580078125, 0.016845703125, 0.013580322265625, 0.036102294921875, -0.014373779296875, 0.007778167724609375, -0.0041046142578125, 0.024322509765625, -0.025665283203125, 0.0206298828125, 0.004543304443359375, 0.002716064453125, 0.032440185546875, 0.02667236328125, -0.0107879638671875, 0.023956298828125, 0.0193939208984375, 0.0244140625, -0.0262908935546875, -0.0020046234130859375, 0.0269012451171875, -0.01226043701171875, -0.005786895751953125, -0.005268096923828125, -0.04962158203125, 0.027008056640625, -0.041748046875, 0.0252838134765625, -0.0218048095703125, 0.04193115234375, -0.0222625732421875, -0.03564453125, 0.00255584716796875, -0.0150604248046875, -0.0225067138671875, 0.0194091796875, 0.0193023681640625, 0.0022258758544921875, -0.007785797119140625, 0.023406982421875, -0.01145172119140625, -0.0207977294921875, 0.0213470458984375, 0.0036144256591796875, 0.0112762451171875, -0.0267333984375, -0.040283203125, -0.0028133392333984375, -0.021392822265625, 0.01629638671875, -0.006465911865234375, 0.006664276123046875, -0.05169677734375, 0.008544921875, -0.037139892578125, 0.0166168212890625, -0.0008378028869628906, 0.032073974609375, 0.021820068359375, -0.005954742431640625, 0.017059326171875, 0.0013151168823242188, 0.051849365234375, -0.00849151611328125, -0.041961669921875, -0.0183258056640625, -0.007564544677734375, -0.01050567626953125, -0.00897979736328125, -0.05133056640625, 0.03448486328125, 0.0111541748046875, -0.00736236572265625, 0.01088714599609375, 0.03314208984375, -0.0262298583984375, -0.017578125, -0.004756927490234375, -0.0285797119140625, 0.01708984375, -0.0246429443359375, 0.0131683349609375, -0.006519317626953125, -0.019256591796875, -0.0024471282958984375, 0.046875, 0.0386962890625, -0.01319122314453125, 0.017730712890625, 0.011688232421875, -0.044830322265625, 0.0127410888671875, 0.0001437664031982422, -0.0089874267578125, 0.029205322265625, 0.0158538818359375, -0.04278564453125, -0.00008761882781982422, 0.0291748046875, 0.00453948974609375, 0.0168304443359375, 0.017974853515625, 0.032867431640625, 0.01812744140625, -0.04962158203125, -0.01157379150390625, 0.051727294921875, -0.051483154296875, -0.01360321044921875, 0.042144775390625, 0.03131103515625, 0.01410675048828125, -0.036590576171875, 0.03424072265625, -0.024383544921875, -0.0292816162109375, 0.005863189697265625, 0.040252685546875, -0.01617431640625, -0.042449951171875, 0.0027217864990234375, -0.010528564453125, 0.036376953125, 0.022705078125, 0.00255584716796875, -0.01305389404296875, -0.0440673828125, -0.0179443359375, -0.0261688232421875, 0.060760498046875, -0.0090789794921875, -0.0811767578125, -0.06475830078125, -0.0055999755859375, -0.048675537109375, -0.003170013427734375, -0.0802001953125, 0.04833984375, -0.00146484375, -0.03338623046875, -0.023468017578125, -0.05389404296875, 0.0034313201904296875, -0.046905517578125, -0.005523681640625, 0.0269622802734375, -0.02752685546875, 0.043365478515625, 0.01445770263671875, 0.0235137939453125, 0.01242828369140625, 0.018218994140625, -0.00492095947265625, 0.007598876953125, -0.055633544921875, 0.0288543701171875, 0.02545166015625, -0.0288848876953125, -0.036346435546875, -0.033050537109375, -0.010406494140625, -0.0638427734375, 0.06060791015625, 0.01181793212890625, 0.0858154296875, 0.0131072998046875, 0.01678466796875, 0.034423828125, 0.0186767578125, -0.034423828125, 0.036529541015625, -0.005039215087890625, -0.00490570068359375, -0.0482177734375, 0.0009446144104003906, -0.0256805419921875, -0.0007376670837402344, -0.061370849609375, 0.026092529296875, -0.03448486328125, 0.032073974609375, -0.022003173828125, 0.019195556640625, -0.0160369873046875, 0.041595458984375, -0.05340576171875, -0.0032482147216796875, 0.043975830078125, -0.019073486328125, -0.033416748046875, 0.00629425048828125, 0.0223846435546875, 0.031402587890625, 0.0182342529296875, 0.0232391357421875, -0.0198211669921875, -0.031646728515625, -0.01007843017578125, -0.026092529296875, -0.015533447265625, 0.0640869140625, 0.03375244140625, 0.01274871826171875, -0.03350830078125, -0.0137481689453125, -0.00859832763671875, 0.04486083984375, -0.096923828125, 0.025604248046875, 0.009765625, 0.048095703125, 0.0067291259765625, 0.006870269775390625, 0.051361083984375, -0.023468017578125, 0.01244354248046875, 0.018157958984375, 0.040283203125, 0.01849365234375, -0.031951904296875, -0.0618896484375, 0.085693359375, -0.01506805419921875, 0.004032135009765625, -0.0355224609375, 0.0173187255859375, 0.0255584716796875, 0.0192108154296875, 0.0117950439453125, 0.02581787109375, 0.01361846923828125, 0.0301971435546875, 0.034942626953125, -0.0263519287109375, -0.0037975311279296875, 0.0168609619140625, -0.01476287841796875, -0.007633209228515625, -0.055084228515625, -0.0139007568359375, -0.03936767578125, -0.00817108154296875, 0.027862548828125, 0.031280517578125, 0.037933349609375, -0.0127105712890625, 0.0086517333984375, 0.007663726806640625, -0.003326416015625, 0.005535125732421875, 0.0227508544921875, -0.0026340484619140625, 0.014923095703125, -0.03271484375, 0.006134033203125, 0.0151214599609375, 0.01861572265625, 0.006175994873046875, 0.0606689453125, -0.005680084228515625, -0.0177001953125, -0.0296478271484375, -0.07550048828125, 0.004375457763671875, 0.03155517578125, -0.062347412109375, -0.0186614990234375, 0.001468658447265625, 0.055023193359375, -0.00023686885833740234, 0.00371551513671875, -0.0178375244140625, 0.0203704833984375, 0.001880645751953125, -0.026702880859375, 0.0254364013671875, -0.0257415771484375, 0.043060302734375, 0.054534912109375, -0.00867462158203125, 0.0103302001953125, -0.0010929107666015625, 0.00833892822265625, 0.004924774169921875, 0.0024929046630859375, -0.00936126708984375, -0.01727294921875, -0.0421142578125, 0.00800323486328125, 0.003570556640625, 0.0655517578125, -0.022705078125, -0.047576904296875, -0.0053863525390625, 0.033538818359375, -0.01062774658203125, 0.007289886474609375, 0.040008544921875, 0.005970001220703125, -0.0041656494140625, -0.0005407333374023438, 0.0010290145874023438, -0.035308837890625, -0.0018033981323242188, -0.0145263671875, 0.01471710205078125, -0.03656005859375, -0.07373046875, -0.05523681640625, -0.07708740234375, 0.02996826171875, 0.01117706298828125, 0.00775146484375, 0.015350341796875, 0.0711669921875, 0.032318115234375, -0.0233917236328125, 0.048614501953125, 0.01045989990234375, -0.0208282470703125, 0.0321044921875, -0.040771484375, 0.0202178955078125, 0.0181732177734375, 0.001674652099609375, 0.03228759765625, 0.0009679794311523438, -0.006320953369140625, -0.019439697265625, 0.017669677734375, 0.062744140625, 0.03924560546875, -0.0269012451171875, -0.027252197265625, 0.069580078125, 0.0100860595703125, -0.0020599365234375, -0.010894775390625, -0.009765625, -0.01629638671875, 0.0233154296875, -0.01413726806640625, -0.005645751953125, -0.0281219482421875, 0.054473876953125, -0.0156402587890625, 0.0006923675537109375, 0.017669677734375, -0.03436279296875, 0.0382080078125, 0.0146942138671875, 0.002300262451171875, -0.02203369140625, -0.022918701171875, -0.03607177734375, 0.06817626953125, -0.0105438232421875, 0.00791168212890625, -0.025909423828125, 0.01873779296875, -0.046173095703125, -0.09014892578125, 0.048583984375, -0.05572509765625, -0.042236328125, -0.0202789306640625, -0.00859832763671875, 0.0130157470703125, 0.0814208984375, -0.061279296875, -0.0016040802001953125, -0.0259246826171875, -0.0017604827880859375, -0.00501251220703125, -0.0721435546875, -0.041595458984375, -0.0219879150390625, -0.053070068359375, 0.011688232421875, -0.00391387939453125, -0.0027866363525390625, -0.0309295654296875, 0.00969696044921875, -0.05377197265625, -0.028533935546875, 0.0203399658203125, -0.0212249755859375, -0.01317596435546875, 0.01523590087890625, -0.01483154296875, -0.0126190185546875, -0.01593017578125, -0.0252838134765625, -0.0299835205078125, -0.012939453125, 0.024932861328125, 0.00513458251953125, -0.0207977294921875, 0.00833892822265625, 0.00742340087890625, 0.04241943359375, 0.0289764404296875, -0.020751953125, -0.0013189315795898438, -0.0210723876953125, -0.02386474609375, 0.04547119140625, -0.00824737548828125, 0.006855010986328125, -0.019775390625, -0.029937744140625, -0.019805908203125, 0.03839111328125, -0.00426483154296875, 0.03173828125, 0.0027446746826171875, -0.009185791015625, -0.0528564453125, -0.01123046875, -0.0413818359375, 0.0012731552124023438, -0.0093994140625, -0.02093505859375, -0.0278167724609375, -0.0826416015625, 0.040985107421875, 0.030181884765625, -0.046630859375, 0.017181396484375, 0.037933349609375, -0.0015583038330078125, -0.0224761962890625, -0.1318359375, 0.0119781494140625, 0.042266845703125, -0.041534423828125, 0.00226593017578125, -0.011627197265625, -0.052337646484375, 0.10638427734375, -0.0218048095703125, -0.006267547607421875, 0.0166473388671875, 0.013946533203125, 0.0139617919921875, -0.01331329345703125, -0.0021419525146484375, -0.004543304443359375, 0.0027446746826171875, -0.01068115234375, -0.0126495361328125, -0.00858306884765625, 0.0131072998046875, 0.049530029296875, -0.01102447509765625, 0.0101470947265625, -0.039215087890625, -0.058929443359375, 0.0458984375, -0.06201171875, 0.0301513671875, 0.004241943359375, 0.00023508071899414062, 0.014984130859375, -0.035003662109375, 0.0004143714904785156, 0.01393890380859375, 0.019927978515625, 0.00632476806640625, 0.0282745361328125, -0.0012350082397460938, -0.007213592529296875, -0.0160980224609375, 0.0068511962890625, -0.004230499267578125, -0.007762908935546875, -0.0300750732421875, -0.0294647216796875, -0.004474639892578125, 0.0178375244140625, 0.0034046173095703125, 0.01558685302734375, 0.046783447265625, 0.0186920166015625, 0.01406097412109375, 0.01082611083984375, -0.0372314453125, 0.01605224609375, -0.0312042236328125, 0.0038356781005859375, -0.00042700767517089844, -0.0121612548828125, 0.019561767578125, 0.0379638671875, -0.0240020751953125, 0.025787353515625, -0.01297760009765625, 0.034759521484375, -0.00798797607421875, 0.0548095703125, 0.007022857666015625, -0.01165008544921875, -0.010406494140625, 0.049530029296875, -0.018402099609375, -0.039520263671875, -0.0273284912109375, -0.0030422210693359375, 0.048858642578125, -0.01525115966796875, -0.010650634765625, 0.0233001708984375, -0.0226287841796875, -0.0251312255859375, 0.0167083740234375, 0.01111602783203125, -0.0091705322265625, -0.040313720703125, -0.0015316009521484375, 0.046905517578125, 0.01258087158203125, -0.01983642578125, 0.0218658447265625, -0.040435791015625, 0.010009765625, -0.03155517578125, -0.0122528076171875, -0.00714874267578125, 0.0166473388671875, -0.0011339187622070312, -0.0037670135498046875, 0.032470703125, -0.061981201171875, -0.044158935546875, -0.005855560302734375, -0.0091094970703125, 0.03167724609375, -0.004085540771484375, 0.0228271484375, -0.030670166015625, -0.0024566650390625, -0.014373779296875, 0.007904052734375, 0.0308074951171875, 0.004364013671875, -0.040496826171875, 0.023223876953125, -0.042236328125, -0.003391265869140625, -0.0204010009765625, -0.0584716796875, -0.041717529296875, -0.025543212890625, 0.0024890899658203125, 0.0016765594482421875, 0.00742340087890625, 0.026458740234375, -0.0007634162902832031, 0.052978515625, 0.0053558349609375, 0.0172576904296875, 0.0118560791015625, 0.0227508544921875, -0.0159912109375, 0.053802490234375, -0.0173797607421875, -0.0211639404296875, -0.031982421875, -0.018524169921875, -0.0341796875, -0.11578369140625, -0.00662994384765625, 0.041015625, -0.0273590087890625, 0.053497314453125, -0.013580322265625, 0.0165863037109375, -0.0037517547607421875, -0.003612518310546875, 0.012664794921875, -0.022552490234375, -0.03369140625, -0.0026836395263671875, -0.0113372802734375, -0.011932373046875, -0.0242462158203125, 0.0211029052734375, 0.0156097412109375, 0.0184173583984375, 0.00969696044921875, -0.0194854736328125, 0.01763916015625, 0.0063323974609375, -0.0178985595703125, -0.02679443359375, 0.01026153564453125, 0.047088623046875, 0.043426513671875, -0.007778167724609375, 0.053985595703125, 0.00780487060546875, -0.0031566619873046875, -0.00811767578125, -0.022003173828125, 0.039520263671875, 0.00951385498046875, 0.0024852752685546875, 0.03875732421875, -0.0218658447265625, 0.00887298583984375, 0.033599853515625, 0.077880859375, -0.060394287109375, 0.0203704833984375, 0.05914306640625, 0.0082855224609375, 0.01244354248046875, 0.021820068359375, -0.005817413330078125, -0.0023040771484375, -0.043975830078125, 0.0304718017578125, -0.033416748046875, -0.01517486572265625, 0.0310516357421875, -0.0145263671875, -0.030426025390625, 0.006378173828125, 0.0220489501953125, -0.01325225830078125, 0.0300140380859375, 0.01050567626953125, 0.0267181396484375, -0.0202484130859375, 0.03265380859375, -0.053070068359375, 0.00243377685546875, -0.0264892578125, 0.00576019287109375, -0.0280914306640625, 0.0059356689453125, 0.0110015869140625, -0.004150390625, 0.00945281982421875, 0.033477783203125, -0.02099609375, 0.00632476806640625, 0.005828857421875, -0.0237274169921875, -0.0298309326171875, -0.0236053466796875, -0.022735595703125, 0.0325927734375, -0.027984619140625, 0.024749755859375, -0.0283966064453125, 0.00949859619140625, -0.0133209228515625, 0.004108428955078125, 0.110107421875, -0.0560302734375, -0.00795745849609375, 0.01029205322265625, 0.034393310546875, 0.01983642578125, 0.01195526123046875, 0.0228118896484375, -0.047271728515625, -0.04681396484375, 0.00791168212890625, -0.058135986328125, -0.017120361328125, -0.00701141357421875, -0.086181640625, 0.0740966796875, -0.0030269622802734375, 0.03704833984375, -0.0162811279296875, 0.0205078125, 0.00019550323486328125, 0.0121002197265625, -0.056640625, 0.055450439453125, 0.0139312744140625, 0.05914306640625, -0.03765869140625, 0.0002484321594238281, 0.01873779296875, 0.002857208251953125, 0.02862548828125, -0.00603485107421875, 0.01166534423828125, 0.0028362274169921875, 0.06378173828125, 0.022308349609375, -0.0167083740234375, 0.0018863677978515625, 0.01036834716796875, 0.00916290283203125, 0.0200653076171875, 0.0194244384765625, 0.043121337890625, -0.01148223876953125, -0.035980224609375, 0.0367431640625, 0.03582763671875, 0.048828125, -0.04364013671875, -0.028961181640625, -0.0268402099609375, -0.0145263671875, 0.0245361328125, 0.01056671142578125, 0.01226043701171875, 0.03668212890625, 0.0244140625, -0.01904296875, 0.0140380859375, -0.031646728515625, 0.045928955078125, -0.0021266937255859375, 0.046051025390625, 0.0230560302734375, 0.00395965576171875, 0.10382080078125, -0.0452880859375, 0.0161590576171875, 0.0012407302856445312, -0.00971221923828125, 0.0277099609375, -0.020263671875, 0.01473236083984375, -0.07623291015625, 0.008270263671875, 0.02996826171875, 0.0491943359375, -0.039764404296875, -0.06695556640625, 0.00893402099609375, 0.011627197265625, -0.0038013458251953125, 0.0230712890625, -0.0037326812744140625, 0.05584716796875, 0.10260009765625, -0.0199127197265625, -0.00855255126953125, 0.0023059844970703125, 0.02545166015625, 0.006988525390625, 0.005046844482421875, -0.00732421875, -0.022796630859375, -0.07989501953125, -0.012664794921875, 0.044647216796875, 0.08978271484375, 0.03973388671875, 0.06463623046875, 0.022613525390625, -0.03765869140625, 0.0111846923828125, -0.006683349609375, 0.00618743896484375, -0.0272674560546875, 0.031890869140625, 0.00867462158203125, -0.020782470703125, 0.00238800048828125, -0.00464630126953125, -0.0222930908203125, 0.002170562744140625, 0.0242919921875, -0.0024566650390625, -0.020263671875, 0.030975341796875, -0.006832122802734375, -0.005069732666015625, -0.038360595703125, 0.007083892822265625, 0.026397705078125, -0.01024627685546875, 0.0221405029296875, -0.00754547119140625, 0.06353759765625, -0.01042938232421875, 0.08966064453125, -0.0030975341796875, 0.0310821533203125, 0.0181427001953125, -0.035308837890625, 0.02301025390625, 0.005001068115234375, -0.055694580078125, 0.0011873245239257812, -0.04974365234375, -0.0247802734375, 0.01432037353515625, 0.036956787109375, 0.0099639892578125, 0.0113677978515625, 0.0239715576171875, 0.000797271728515625, -0.0186309814453125, 0.01378631591796875, 0.019500732421875, -0.0153656005859375, 0.01251983642578125, 0.0154266357421875, -0.050445556640625, -0.0266571044921875, -0.0007920265197753906, 0.0226287841796875, 0.019927978515625, 0.035980224609375, 0.00496673583984375, 0.022979736328125, -0.028106689453125, 0.044677734375, -0.048309326171875, -0.0264892578125, 0.028656005859375, 0.00788116455078125, 0.014556884765625, -0.004146575927734375, 0.0010385513305664062, 0.043243408203125, 0.035308837890625, -0.036865234375, -0.00966644287109375, 0.0171661376953125, 0.006885528564453125, -0.0071868896484375, 0.0799560546875, 0.00238800048828125, -0.01081085205078125, -0.02215576171875, -0.005550384521484375, 0.058013916015625, 0.09600830078125, 0.004100799560546875, 0.0016040802001953125, -0.005886077880859375, -0.05975341796875, 0.053253173828125, -0.044158935546875, 0.064208984375, 0.0271759033203125, 0.0165252685546875, -0.032623291015625, 0.03973388671875, -0.00971221923828125, -0.0185699462890625, 0.031524658203125, 0.039703369140625, 0.0287933349609375, -0.0308380126953125, 0.0187835693359375, 0.00811004638671875, 0.02655029296875, -0.0265350341796875, -0.0029773712158203125, 0.0280609130859375, -0.007785797119140625, -0.015777587890625, -0.047271728515625, -0.0513916015625, -0.05120849609375, 0.0164337158203125, 0.0487060546875, -0.0088348388671875, -0.0122833251953125, -0.0662841796875, -0.0592041015625, 0.050994873046875, 0.015228271484375, -0.0035400390625, -0.00693511962890625, -0.01235198974609375, -0.044952392578125, 0.0298614501953125, -0.046142578125, 0.02001953125, 0.043609619140625, -0.0152587890625, -0.0258941650390625, -0.016998291015625, 0.008514404296875, -0.0251312255859375, 0.01032257080078125, 0.0243377685546875, -0.020477294921875, -0.0440673828125, 0.0096893310546875, 0.0148468017578125, 0.02880859375, 0.06494140625, -0.0267486572265625, -0.0272674560546875, 0.0162353515625, -0.043548583984375, -0.035552978515625, 0.043670654296875, -0.0650634765625, -0.06719970703125, 0.00499725341796875, 0.0001289844512939453, 0.006885528564453125, -0.0271453857421875, -0.044586181640625, 0.07879638671875, -0.00740814208984375, -0.014434814453125, -0.045166015625, -0.002414703369140625, -0.003993988037109375, -0.030914306640625, -0.0035400390625, -0.03729248046875, -0.0137481689453125, 0.057220458984375, -0.004638671875, 0.0202789306640625, -0.0013036727905273438, 0.017120361328125, -0.00685882568359375, 0.0462646484375, 0.034912109375, -0.0291748046875, 0.006549835205078125, 0.004009246826171875, 0.01019287109375, 0.038909912109375, -0.036865234375, 0.006099700927734375, -0.0196380615234375, -0.005710601806640625, 0.0002884864807128906, -0.042724609375, 0.0065155029296875, -0.0200042724609375, -0.0089874267578125, 0.0089111328125, -0.01236724853515625, -0.006099700927734375, -0.0201873779296875, 0.01367950439453125, -0.0379638671875, 0.0015974044799804688, 0.0240020751953125, -0.036834716796875, 0.0045928955078125, -0.005458831787109375, -0.01134490966796875, 0.032257080078125, -0.0017862319946289062, -0.0161285400390625, 0.002685546875, 0.020660400390625, -0.0101776123046875, -0.06890869140625, 0.054656982421875, -0.035552978515625, -0.0211181640625, -0.038299560546875, -0.030975341796875, 0.0006241798400878906, -0.0643310546875, -0.065673828125, 0.0044403076171875, -0.021453857421875, 0.0045013427734375, 0.0247039794921875, 0.0134124755859375, 0.035369873046875, -0.00940704345703125, -0.0255126953125, -0.0294036865234375, 0.014190673828125, -0.00226593017578125, -0.0035228729248046875, -0.022674560546875, 0.0286865234375, 0.0181121826171875, 0.07708740234375, -0.01036834716796875, 0.0247039794921875, -0.0236053466796875, 0.05010986328125, -0.028656005859375, -0.00771331787109375, -0.0260772705078125, -0.003345489501953125, 0.00089263916015625, 0.0012826919555664062, -0.0040740966796875, -0.039276123046875, 0.0035991668701171875, 0.036102294921875, 0.0141754150390625, 0.0216064453125 ]
dcd3ade6635555fb6c681558f9b3d05a80491259
Wordpress Stackexchange Q: Menu position (admin menu) of pages Is there a method to change the menu position of the 'pages' post type? When registering new custom post types, you can enter an integer in menu_position but how do I do this for the preregistered post types? Can I somehow overwrite this? PS: I need it to be 5. A: you cannot put this on position 5 because there is something but you can put it on 4.5 with this code : add_action("admin_menu", function () { $GLOBALS["menu"][4.5] = $GLOBALS["menu"][20]; unset($GLOBALS["menu"][20]); });
Q: Menu position (admin menu) of pages Is there a method to change the menu position of the 'pages' post type? When registering new custom post types, you can enter an integer in menu_position but how do I do this for the preregistered post types? Can I somehow overwrite this? PS: I need it to be 5. A: you cannot put this on position 5 because there is something but you can put it on 4.5 with this code : add_action("admin_menu", function () { $GLOBALS["menu"][4.5] = $GLOBALS["menu"][20]; unset($GLOBALS["menu"][20]); });
wordpress
{ "language": "en", "length": 89, "provenance": "stackexchange_00019.jsonl.gz:468173", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/238610" }
[ 0.0557861328125, 0.01493072509765625, 0.02459716796875, 0.044281005859375, 0.0215301513671875, -0.035797119140625, 0.07958984375, -0.07012939453125, 0.00566864013671875, -0.01276397705078125, 0.00344085693359375, -0.029571533203125, -0.02935791015625, -0.04730224609375, 0.0170440673828125, -0.03521728515625, 0.0338134765625, 0.000015914440155029297, 0.051422119140625, 0.0031452178955078125, 0.00820159912109375, 0.019561767578125, 0.03997802734375, 0.011962890625, 0.045623779296875, -0.033477783203125, -0.028900146484375, -0.003582000732421875, 0.017547607421875, -0.005275726318359375, 0.0228729248046875, 0.01325225830078125, 0.028778076171875, -0.0229949951171875, 0.0234375, -0.0086822509765625, -0.0187530517578125, 0.01552581787109375, 0.0234222412109375, -0.033660888671875, 0.024017333984375, -0.005832672119140625, 0.022491455078125, 0.026885986328125, -0.00868988037109375, -0.0309600830078125, 0.010009765625, -0.053802490234375, -0.00534820556640625, -0.06378173828125, 0.02777099609375, -0.0360107421875, 0.054290771484375, -0.06719970703125, -0.0299072265625, 0.0021953582763671875, -0.02801513671875, -0.0073089599609375, 0.007122039794921875, 0.042327880859375, 0.00899505615234375, 0.017181396484375, -0.003993988037109375, -0.03680419921875, 0.009429931640625, 0.0028667449951171875, 0.057952880859375, 0.01322174072265625, -0.0645751953125, 0.006366729736328125, 0.06036376953125, -0.0168304443359375, 0.005733489990234375, 0.00644683837890625, -0.00757598876953125, -0.048919677734375, -0.0059967041015625, -0.011199951171875, 0.025299072265625, 0.0207672119140625, 0.0284271240234375, 0.034698486328125, 0.004512786865234375, -0.00922393798828125, 0.0054779052734375, -0.004993438720703125, -0.0121307373046875, -0.018707275390625, -0.0249786376953125, -0.01812744140625, -0.032806396484375, -0.021148681640625, 0.005725860595703125, 0.007305145263671875, -0.036529541015625, 0.00521087646484375, 0.043212890625, 0.023773193359375, 0.01025390625, 0.0009336471557617188, -0.0054168701171875, -0.03643798828125, 0.031890869140625, -0.0167388916015625, 0.0180816650390625, 0.036285400390625, 0.0003421306610107422, -0.01129913330078125, 0.036346435546875, 0.0133819580078125, -0.00955963134765625, 0.0298309326171875, 0.01238250732421875, -0.01526641845703125, -0.052825927734375, -0.0006732940673828125, -0.0021762847900390625, -0.01092529296875, 0.01983642578125, -0.0109405517578125, -0.005512237548828125, 0.014892578125, 0.02154541015625, -0.0012073516845703125, -0.0013322830200195312, 0.00885772705078125, 0.00023937225341796875, -0.055633544921875, -0.054473876953125, 0.05731201171875, -0.02996826171875, -0.0011463165283203125, 0.08319091796875, 0.052490234375, 0.01114654541015625, -0.03009033203125, 0.00511932373046875, -0.03857421875, -0.022735595703125, 0.041656494140625, -0.019989013671875, -0.0156402587890625, 0.02801513671875, -0.03509521484375, -0.000789642333984375, 0.0212860107421875, 0.02227783203125, 0.0084686279296875, -0.004730224609375, -0.03546142578125, 0.0043792724609375, -0.01702880859375, 0.0228271484375, 0.0265045166015625, -0.01380157470703125, 0.0239105224609375, 0.033843994140625, -0.01055908203125, -0.040435791015625, -0.029510498046875, -0.014556884765625, -0.0261383056640625, 0.013092041015625, -0.059906005859375, -0.0654296875, 0.05810546875, -0.053009033203125, -0.01453399658203125, 0.01654052734375, 0.00933837890625, 0.0217132568359375, 0.0282745361328125, 0.0023593902587890625, -0.02203369140625, -0.0171966552734375, -0.037353515625, 0.0184326171875, -0.034698486328125, 0.01375579833984375, 0.032440185546875, -0.0119171142578125, -0.029571533203125, -0.0308837890625, 0.0028133392333984375, -0.0386962890625, 0.036285400390625, 0.007183074951171875, 0.043701171875, 0.005077362060546875, 0.017669677734375, 0.0148162841796875, 0.020263671875, -0.0307159423828125, 0.0118560791015625, -0.00901031494140625, 0.0151519775390625, -0.01043701171875, 0.0255126953125, -0.020965576171875, -0.020355224609375, -0.05218505859375, 0.02606201171875, -0.027008056640625, 0.046234130859375, -0.007190704345703125, 0.0275726318359375, -0.0008001327514648438, 0.03607177734375, 0.048095703125, 0.0037555694580078125, -0.01091766357421875, -0.00875091552734375, 0.0203399658203125, -0.0809326171875, -0.064453125, 0.036346435546875, -0.02362060546875, 0.0125274658203125, -0.027587890625, 0.02911376953125, -0.04852294921875, -0.02862548828125, -0.041961669921875, 0.004108428955078125, 0.038330078125, -0.005565643310546875, -0.0273895263671875, -0.0305023193359375, 0.0169677734375, -0.0138092041015625, -0.01152801513671875, 0.07293701171875, 0.0032672882080078125, -0.01335906982421875, -0.034454345703125, -0.0010843276977539062, 0.0025501251220703125, -0.0653076171875, -0.00992584228515625, 0.049041748046875, 0.04071044921875, 0.0205078125, 0.003765106201171875, -0.0142059326171875, 0.00435638427734375, -0.047210693359375, 0.0264434814453125, -0.02545166015625, -0.022308349609375, 0.01947021484375, 0.03582763671875, 0.00797271728515625, 0.00702667236328125, -0.0205078125, 0.008087158203125, 0.0180206298828125, -0.009124755859375, 0.005863189697265625, 0.01120758056640625, -0.0107269287109375, 0.0014438629150390625, 0.0032367706298828125, -0.016387939453125, 0.01270294189453125, 0.04229736328125, 0.01338958740234375, 0.0406494140625, 0.03228759765625, -0.0433349609375, -0.01629638671875, 0.03131103515625, 0.0419921875, -0.01224517822265625, -0.0309295654296875, 0.00679779052734375, -0.058135986328125, -0.04034423828125, 0.04510498046875, -0.0167236328125, -0.06182861328125, -0.0218353271484375, 0.012054443359375, -0.05511474609375, -0.01068878173828125, -0.017181396484375, -0.08184814453125, -0.0015974044799804688, 0.0211639404296875, -0.0172271728515625, -0.040313720703125, -0.01194000244140625, 0.011444091796875, -0.03631591796875, 0.02423095703125, 0.01322174072265625, -0.03155517578125, 0.037933349609375, -0.046539306640625, 0.0253143310546875, -0.01971435546875, 0.05859375, 0.06402587890625, 0.0044097900390625, 0.00650787353515625, -0.00039768218994140625, 0.004070281982421875, -0.011566162109375, 0.030303955078125, 0.0175628662109375, -0.04888916015625, 0.01419830322265625, 0.055694580078125, 0.0145721435546875, -0.02447509765625, 0.0084991455078125, -0.033355712890625, -0.02972412109375, -0.006931304931640625, -0.07562255859375, -0.0122833251953125, 0.0134735107421875, -0.04327392578125, 0.0223236083984375, 0.0207672119140625, -0.0160369873046875, -0.028228759765625, 0.055877685546875, 0.00666046142578125, 0.019256591796875, 0.0007319450378417969, -0.0177459716796875, -0.0131683349609375, -0.0447998046875, -0.0195770263671875, -0.006877899169921875, 0.007648468017578125, -0.0013513565063476562, 0.08935546875, 0.0080108642578125, -0.07794189453125, 0.0152587890625, 0.031524658203125, -0.004680633544921875, 0.052154541015625, 0.0665283203125, -0.059295654296875, 0.022857666015625, 0.00005352497100830078, 0.015594482421875, 0.034454345703125, -0.0306549072265625, -0.024505615234375, -0.035552978515625, 0.01378631591796875, 0.021026611328125, -0.002960205078125, 0.023193359375, 0.0177154541015625, 0.00740814208984375, -0.043121337890625, -0.0193939208984375, 0.004207611083984375, -0.02459716796875, -0.0008244514465332031, -0.00399017333984375, -0.006320953369140625, -0.0243072509765625, 0.034149169921875, 0.00791168212890625, 0.002105712890625, 0.0277862548828125, -0.0181884765625, 0.0185089111328125, -0.005977630615234375, 0.0020542144775390625, -0.03271484375, 0.0215606689453125, 0.0010528564453125, 0.0127716064453125, 0.0185394287109375, 0.038604736328125, 0.00795745849609375, 0.03875732421875, -0.0066375732421875, -0.08697509765625, 0.042694091796875, -0.050018310546875, 0.01522064208984375, -0.037750244140625, -0.03167724609375, 0.03363037109375, 0.1446533203125, -0.029388427734375, -0.0220794677734375, -0.020172119140625, 0.0062713623046875, -0.0024662017822265625, -0.0523681640625, -0.0082550048828125, -0.021148681640625, -0.09576416015625, 0.0216217041015625, 0.00205230712890625, -0.0196990966796875, -0.049072265625, 0.08319091796875, -0.0694580078125, -0.030426025390625, 0.05804443359375, -0.048583984375, -0.00734710693359375, 0.04974365234375, -0.009735107421875, -0.009918212890625, -0.05126953125, -0.0016460418701171875, -0.0853271484375, -0.0280914306640625, -0.0190887451171875, 0.0889892578125, 0.033416748046875, -0.049591064453125, -0.0214996337890625, 0.0360107421875, 0.0221099853515625, 0.01287078857421875, 0.0186004638671875, 0.02471923828125, -0.003566741943359375, -0.050384521484375, -0.003963470458984375, -0.057159423828125, 0.005794525146484375, 0.0169525146484375, -0.041473388671875, 0.0219573974609375, -0.00926971435546875, -0.009307861328125, 0.035980224609375, -0.054473876953125, -0.04388427734375, -0.035064697265625, -0.016632080078125, 0.0006198883056640625, -0.002407073974609375, -0.0034236907958984375, -0.03570556640625, -0.051513671875, 0.01488494873046875, -0.0220794677734375, -0.01299285888671875, 0.004726409912109375, 0.0338134765625, 0.0256195068359375, 0.0006670951843261719, 0.0097808837890625, 0.0305328369140625, 0.0269012451171875, -0.01544189453125, 0.053497314453125, 0.018157958984375, 0.0003876686096191406, 0.0212554931640625, -0.0063323974609375, -0.033172607421875, -0.00247955322265625, 0.04803466796875, 0.0007319450378417969, -0.00878143310546875, 0.0108795166015625, -0.0594482421875, 0.03564453125, -0.00152587890625, -0.0194244384765625, -0.02752685546875, -0.06658935546875, 0.075439453125, 0.0186004638671875, 0.025360107421875, -0.08709716796875, -0.001796722412109375, -0.00859832763671875, 0.0294189453125, 0.01561737060546875, 0.035369873046875, -0.01232147216796875, 0.0172882080078125, 0.0286712646484375, 0.0160980224609375, 0.029815673828125, 0.0269317626953125, 0.01409149169921875, 0.0272064208984375, 0.045806884765625, 0.01523590087890625, 0.0040435791015625, 0.0037555694580078125, 0.03143310546875, 0.004669189453125, -0.027313232421875, -0.048583984375, -0.00905609130859375, 0.004077911376953125, -0.011444091796875, -0.01187896728515625, 0.0154571533203125, 0.009979248046875, 0.0116729736328125, -0.01126861572265625, -0.0147857666015625, -0.0005121231079101562, -0.0263214111328125, -0.01442718505859375, 0.0268402099609375, -0.0179901123046875, 0.0145263671875, 0.05194091796875, 0.03436279296875, 0.01178741455078125, -0.0203399658203125, 0.0426025390625, 0.0263214111328125, -0.0006117820739746094, 0.01629638671875, 0.045166015625, -0.00048470497131347656, -0.0264129638671875, -0.00934600830078125, 0.0232086181640625, 0.002735137939453125, -0.002994537353515625, -0.020538330078125, 0.0232696533203125, 0.04241943359375, 0.002307891845703125, -0.002178192138671875, -0.00815582275390625, 0.044708251953125, -0.03399658203125, -0.065185546875, -0.0350341796875, -0.00514984130859375, 0.04425048828125, -0.06292724609375, -0.01299285888671875, 0.0009851455688476562, -0.0260467529296875, -0.005458831787109375, -0.043426513671875, -0.0292510986328125, 0.007091522216796875, 0.010498046875, -0.060882568359375, -0.0075836181640625, 0.015899658203125, -0.0802001953125, -0.0677490234375, 0.0185394287109375, 0.0017747879028320312, 0.005687713623046875, -0.03839111328125, 0.038482666015625, -0.021270751953125, -0.00044417381286621094, -0.03472900390625, 0.0108184814453125, 0.038421630859375, 0.03765869140625, -0.01242828369140625, -0.005401611328125, -0.05853271484375, -0.034149169921875, -0.01751708984375, -0.0095367431640625, -0.039154052734375, -0.00905609130859375, 0.046783447265625, 0.026885986328125, -0.012115478515625, -0.06427001953125, -0.01025390625, 0.01291656494140625, 0.04583740234375, 0.0565185546875, -0.006114959716796875, 0.013427734375, 0.00600433349609375, 0.0234527587890625, 0.0124664306640625, 0.0062255859375, 0.01094818115234375, -0.0242156982421875, 0.006710052490234375, -0.0030460357666015625, -0.01378631591796875, 0.011932373046875, -0.039276123046875, -0.03204345703125, 0.05364990234375, -0.01352691650390625, 0.04119873046875, -0.0057220458984375, 0.0130157470703125, -0.0221710205078125, -0.0264739990234375, -0.0545654296875, 0.0128326416015625, 0.01348876953125, -0.00899505615234375, 0.050445556640625, 0.015411376953125, 0.016143798828125, -0.00768280029296875, -0.0243072509765625, 0.0179443359375, 0.0016756057739257812, -0.052703857421875, 0.043365478515625, 0.0743408203125, 0.02471923828125, 0.064697265625, -0.0019683837890625, 0.02789306640625, 0.04052734375, -0.016937255859375, 0.0048675537109375, 0.01055908203125, 0.033843994140625, 0.0015840530395507812, 0.0143890380859375, 0.028167724609375, -0.02069091796875, 0.0028553009033203125, 0.07305908203125, 0.05731201171875, -0.09844970703125, 0.004436492919921875, 0.01189422607421875, 0.01029205322265625, 0.03204345703125, 0.0011663436889648438, -0.0258331298828125, -0.0247802734375, 0.0171966552734375, -0.03204345703125, -0.0215301513671875, 0.0027923583984375, -0.004665374755859375, -0.03228759765625, -0.0211639404296875, 0.01380157470703125, 0.01995849609375, 0.029296875, 0.004459381103515625, -0.029052734375, 0.0185394287109375, -0.01386260986328125, 0.018310546875, 0.006122589111328125, -0.0008573532104492188, -0.0306396484375, 0.039337158203125, -0.0487060546875, 0.01187896728515625, 0.0264129638671875, 0.0140533447265625, 0.00887298583984375, 0.04412841796875, -0.01165771484375, -0.0005164146423339844, 0.01080322265625, -0.0211639404296875, -0.03802490234375, -0.015960693359375, 0.0163726806640625, 0.007556915283203125, -0.01104736328125, 0.01171875, -0.03839111328125, -0.023590087890625, 0.0002338886260986328, -0.0423583984375, 0.068359375, -0.061767578125, 0.00014495849609375, 0.003452301025390625, -0.0027179718017578125, 0.01556396484375, 0.00496673583984375, 0.005802154541015625, -0.0272216796875, 0.0133514404296875, -0.0006928443908691406, 0.001888275146484375, -0.007785797119140625, -0.0055999755859375, -0.0155792236328125, 0.0989990234375, -0.038116455078125, -0.033294677734375, 0.0126190185546875, 0.059906005859375, -0.0204010009765625, 0.049957275390625, -0.039794921875, 0.03729248046875, -0.007572174072265625, 0.055419921875, -0.0206146240234375, 0.007297515869140625, 0.02337646484375, 0.00980377197265625, 0.04632568359375, 0.01163482666015625, -0.0628662109375, 0.01067352294921875, 0.0809326171875, 0.0670166015625, 0.055938720703125, 0.0390625, -0.0162811279296875, -0.01383209228515625, 0.007778167724609375, -0.0222015380859375, 0.0276641845703125, -0.05181884765625, -0.041839599609375, -0.0254669189453125, 0.0017900466918945312, -0.00970458984375, -0.015869140625, -0.0129241943359375, -0.050323486328125, -0.00656890869140625, 0.01369476318359375, 0.014556884765625, -0.005153656005859375, 0.0063323974609375, -0.00807952880859375, 0.01541900634765625, 0.03387451171875, -0.020050048828125, 0.041290283203125, 0.001583099365234375, 0.04168701171875, 0.01372528076171875, 0.0168609619140625, 0.03399658203125, -0.02886962890625, 0.0087127685546875, 0.024749755859375, -0.04437255859375, 0.049652099609375, 0.0215606689453125, 0.034332275390625, -0.039306640625, -0.01226806640625, 0.02532958984375, 0.06158447265625, -0.041717529296875, -0.0237274169921875, 0.025665283203125, 0.02569580078125, 0.002552032470703125, 0.0065155029296875, 0.03619384765625, -0.03125, 0.007061004638671875, -0.02020263671875, -0.0182647705078125, 0.0199737548828125, 0.05743408203125, -0.003986358642578125, -0.00630950927734375, -0.031036376953125, -0.055908203125, -0.04608154296875, 0.01302337646484375, 0.0262451171875, 0.034881591796875, 0.017913818359375, 0.0423583984375, 0.024261474609375, -0.004150390625, 0.0214080810546875, 0.0087127685546875, -0.0302581787109375, -0.0113677978515625, -0.032440185546875, -0.0478515625, -0.0279998779296875, 0.0333251953125, 0.005413055419921875, -0.023284912109375, 0.01947021484375, 0.007671356201171875, -0.023895263671875, -0.0157012939453125, 0.0264739990234375, -0.0125885009765625, -0.045989990234375, -0.019927978515625, 0.0229949951171875, 0.0523681640625, 0.031280517578125, -0.005832672119140625, 0.05438232421875, 0.03460693359375, 0.0194854736328125, 0.011993408203125, 0.0096893310546875, -0.01203155517578125, 0.00949859619140625, 0.01349639892578125, 0.02862548828125, 0.0521240234375, -0.09869384765625, -0.032379150390625, -0.0491943359375, -0.0543212890625, 0.060699462890625, 0.05145263671875, -0.01253509521484375, 0.00020706653594970703, 0.02294921875, 0.016143798828125, -0.003200531005859375, -0.0180816650390625, 0.01032257080078125, 0.053619384765625, 0.042572021484375, 0.055389404296875, -0.033477783203125, -0.031463623046875, -0.006717681884765625, 0.0264892578125, 0.017608642578125, 0.0243377685546875, 0.00939178466796875, 0.017181396484375, -0.046142578125, 0.00833892822265625, -0.03082275390625, -0.02880859375, 0.022796630859375, 0.0148162841796875, 0.00115203857421875, -0.0023746490478515625, -0.02178955078125, 0.027435302734375, 0.055908203125, -0.036773681640625, 0.018402099609375, -0.01262664794921875, 0.01267242431640625, -0.05279541015625, 0.004695892333984375, -0.0186767578125, 0.008270263671875, -0.0022640228271484375, -0.0163116455078125, 0.030975341796875, -0.006763458251953125, -0.02001953125, 0.04510498046875, -0.022216796875, -0.048614501953125, 0.0290679931640625, -0.06640625, 0.05078125, 0.043121337890625, 0.0031948089599609375, 0.0194549560546875, -0.0020885467529296875, -0.0092620849609375, 0.0201568603515625, 0.0269012451171875, -0.0303802490234375, 0.0220489501953125, 0.00997161865234375, 0.02001953125, -0.00011181831359863281, 0.0213623046875, -0.03289794921875, -0.0065460205078125, 0.01513671875, 0.00547027587890625, -0.007720947265625, 0.01467132568359375, -0.0374755859375, -0.0276336669921875, 0.024017333984375, 0.0161590576171875, 0.0235137939453125, -0.0102691650390625, -0.03619384765625, 0.0053253173828125, 0.050628662109375, 0.0152435302734375, -0.043609619140625, 0.033050537109375, -0.02459716796875, 0.01390838623046875, 0.0185089111328125, -0.031097412109375, 0.0231475830078125, 0.03826904296875, -0.0207672119140625, 0.00823974609375, -0.01552581787109375, -0.0209503173828125, -0.0018262863159179688, 0.007419586181640625, 0.02398681640625, -0.0217132568359375, 0.0102691650390625, -0.003570556640625, 0.00135040283203125, 0.053375244140625, 0.00994873046875, -0.020721435546875, 0.0188140869140625, 0.01708984375, -0.002658843994140625, -0.062164306640625, -0.00787353515625, -0.033355712890625, 0.021270751953125, 0.0013713836669921875, 0.029052734375, 0.0579833984375, -0.00954437255859375, -0.072021484375, 0.0245208740234375, -0.00316619873046875, -0.0428466796875, -0.01242828369140625, -0.01381683349609375, -0.01451873779296875, -0.00032806396484375, 0.01389312744140625, -0.058197021484375, -0.007354736328125, 0.02484130859375, -0.002262115478515625, 0.04730224609375, 0.004352569580078125, 0.0024662017822265625, -0.04345703125, -0.004039764404296875, -0.0034923553466796875, 0.005855560302734375, 0.0262908935546875, -0.0113525390625, 0.0303497314453125, 0.0307464599609375, -0.049591064453125, 0.0096435546875, -0.0156402587890625, -0.00960540771484375, 0.001796722412109375, -0.0092315673828125, -0.04376220703125, -0.0184173583984375, 0.056640625, 0.049652099609375, 0.016845703125, -0.01202392578125, 0.056121826171875, -0.033966064453125, 0.011871337890625, -0.023895263671875, -0.0007338523864746094, -0.051483154296875, -0.05426025390625, 0.0307769775390625, -0.01233673095703125, -0.034881591796875, 0.0211944580078125, -0.017791748046875, -0.0007104873657226562, 0.0404052734375, 0.0029163360595703125, -0.01451873779296875, 0.0143890380859375, 0.01287078857421875, -0.0305938720703125, -0.020538330078125, 0.00453948974609375, -0.00481414794921875, -0.01139068603515625, 0.00563812255859375, -0.01317596435546875, -0.002819061279296875, -0.050994873046875, 0.00957489013671875, -0.026031494140625, 0.056365966796875, -0.04327392578125, -0.00514984130859375, -0.005374908447265625, 0.0255584716796875, 0.0105743408203125, 0.037200927734375, -0.041015625, 0.061065673828125, 0.0118560791015625, 0.006275177001953125, 0.0206756591796875, 0.0562744140625, 0.021575927734375, 0.0484619140625, 0.0143585205078125, -0.03887939453125, 0.038421630859375, -0.059722900390625, -0.00384521484375, 0.0036869049072265625, -0.006496429443359375, -0.064208984375, 0.02374267578125, -0.0211181640625, 0.015777587890625, 0.02337646484375 ]
bd78b9183e4b370a121587ef18485afd0d62d197
Wordpress Stackexchange Q: Saving WordPress generated thumbnails in a subdirectory I.e. an uploaded image image.jpg is stored in wp-content/uploads/2016. WordPress will generate thumbnails named image-150x150.jpg, image-300x300.jpg, and image-1024x1024.jpg in the same directory. Is it possible to store the additional image sizes generated in a subdirectory, such as wp-content/uploads/2016/thumbs?
Q: Saving WordPress generated thumbnails in a subdirectory I.e. an uploaded image image.jpg is stored in wp-content/uploads/2016. WordPress will generate thumbnails named image-150x150.jpg, image-300x300.jpg, and image-1024x1024.jpg in the same directory. Is it possible to store the additional image sizes generated in a subdirectory, such as wp-content/uploads/2016/thumbs?
wordpress
{ "language": "en", "length": 46, "provenance": "stackexchange_00019.jsonl.gz:468228", "question_score": "4", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/238858" }
[ 0.01641845703125, -0.0416259765625, 0.0040283203125, -0.0224456787109375, -0.024627685546875, -0.0266571044921875, 0.050689697265625, 0.01316070556640625, 0.043243408203125, 0.0267333984375, -0.0230255126953125, -0.0032482147216796875, 0.03472900390625, -0.015167236328125, -0.0250396728515625, -0.004550933837890625, 0.049774169921875, -0.031402587890625, 0.016082763671875, 0.00708770751953125, -0.002132415771484375, 0.07342529296875, -0.020263671875, 0.03277587890625, 0.01219940185546875, 0.0077972412109375, 0.0313720703125, -0.0031337738037109375, -0.01239776611328125, -0.0243072509765625, 0.020050048828125, 0.01611328125, 0.0205230712890625, -0.01312255859375, 0.0303802490234375, 0.027679443359375, 0.035369873046875, -0.0193023681640625, 0.01190185546875, 0.01004791259765625, 0.0164337158203125, -0.01177978515625, 0.0638427734375, -0.031768798828125, 0.01036834716796875, 0.00322723388671875, 0.01287841796875, -0.039947509765625, 0.0182952880859375, 0.02252197265625, 0.01404571533203125, 0.0165863037109375, 0.0215301513671875, -0.01480865478515625, -0.01187896728515625, -0.0218963623046875, -0.051300048828125, 0.045928955078125, 0.044586181640625, -0.005611419677734375, -0.03155517578125, -0.043365478515625, 0.022430419921875, -0.01232147216796875, -0.015777587890625, 0.021759033203125, -0.0192108154296875, -0.00949859619140625, 0.011138916015625, -0.0028171539306640625, -0.003917694091796875, -0.0196685791015625, 0.01953125, -0.070556640625, 0.0012121200561523438, 0.07489013671875, -0.014007568359375, 0.027923583984375, 0.0170745849609375, -0.049957275390625, 0.0330810546875, -0.059112548828125, 0.0140533447265625, 0.0225372314453125, 0.007587432861328125, 0.036529541015625, 0.0160980224609375, -0.018707275390625, -0.01171875, 0.012603759765625, -0.0160064697265625, -0.0302581787109375, -0.01470947265625, 0.039398193359375, 0.006923675537109375, -0.01442718505859375, -0.0010395050048828125, 0.026702880859375, -0.00811767578125, 0.0088043212890625, -0.0233612060546875, -0.026763916015625, 0.01136016845703125, -0.050018310546875, 0.01454925537109375, 0.054290771484375, 0.02581787109375, -0.03875732421875, 0.0122222900390625, 0.00978851318359375, 0.004199981689453125, 0.0540771484375, 0.0179901123046875, -0.048583984375, -0.00377655029296875, 0.031829833984375, 0.0159759521484375, 0.03485107421875, 0.032745361328125, 0.006099700927734375, 0.00609588623046875, 0.04278564453125, -0.0097198486328125, -0.01515960693359375, 0.024993896484375, 0.021148681640625, -0.0009522438049316406, -0.01538848876953125, -0.0080108642578125, 0.0234832763671875, -0.00872802734375, 0.0308990478515625, 0.0025768280029296875, -0.048126220703125, -0.041656494140625, -0.00327301025390625, -0.006290435791015625, -0.046051025390625, -0.053497314453125, 0.05926513671875, -0.057037353515625, -0.050689697265625, 0.03643798828125, -0.05615234375, -0.00511932373046875, 0.01309967041015625, -0.02008056640625, 0.01042938232421875, 0.0250701904296875, -0.0240478515625, -0.01078033447265625, -0.0367431640625, 0.0399169921875, 0.001972198486328125, -0.01105499267578125, -0.06353759765625, 0.0347900390625, -0.035736083984375, 0.0094757080078125, -0.0650634765625, 0.006282806396484375, 0.0066070556640625, 0.00836181640625, -0.0292510986328125, -0.018280029296875, -0.033416748046875, -0.03692626953125, 0.00778961181640625, 0.0274810791015625, 0.044586181640625, 0.04095458984375, -0.004741668701171875, -0.0113677978515625, 0.00699615478515625, -0.000036716461181640625, -0.01409149169921875, 0.0452880859375, -0.07080078125, 0.01995849609375, 0.10302734375, 0.023468017578125, 0.0171051025390625, 0.01450347900390625, 0.004833221435546875, 0.0105133056640625, -0.0389404296875, -0.010040283203125, -0.044158935546875, 0.035919189453125, 0.009857177734375, 0.01287841796875, 0.006267547607421875, -0.0966796875, 0.03070068359375, -0.01020050048828125, 0.019744873046875, -0.041534423828125, 0.00574493408203125, -0.006343841552734375, -0.01548004150390625, 0.040374755859375, 0.006641387939453125, 0.0020599365234375, 0.00395965576171875, -0.03045654296875, -0.0015325546264648438, -0.009765625, 0.01629638671875, -0.0236053466796875, 0.0310821533203125, 0.00215911865234375, -0.004241943359375, 0.007080078125, -0.075927734375, -0.02923583984375, -0.019317626953125, -0.0216522216796875, -0.007442474365234375, 0.004974365234375, 0.032012939453125, -0.020111083984375, 0.0085296630859375, -0.040557861328125, -0.04083251953125, 0.00756072998046875, -0.0016374588012695312, -0.01556396484375, -0.007305145263671875, -0.0299072265625, 0.0279541015625, -0.059417724609375, 0.0196380615234375, -0.0338134765625, -0.0016336441040039062, -0.03656005859375, -0.020599365234375, -0.03167724609375, -0.049407958984375, 0.02410888671875, 0.06414794921875, 0.024169921875, 0.06884765625, 0.007167816162109375, 0.041015625, 0.08544921875, 0.0271148681640625, 0.0157470703125, 0.0037174224853515625, -0.018218994140625, -0.006877899169921875, 0.017822265625, -0.01396942138671875, 0.0019025802612304688, -0.028594970703125, -0.0172576904296875, 0.017333984375, -0.01342010498046875, -0.00909423828125, 0.00788116455078125, 0.0184173583984375, -0.01052093505859375, 0.031158447265625, 0.0242767333984375, -0.00013828277587890625, -0.006626129150390625, 0.04510498046875, 0.01279449462890625, 0.0211639404296875, -0.024444580078125, 0.039581298828125, 0.017852783203125, -0.0215606689453125, 0.0006341934204101562, 0.004909515380859375, 0.022247314453125, 0.0133819580078125, -0.04486083984375, 0.0191192626953125, 0.035919189453125, 0.0055389404296875, -0.0098419189453125, 0.0176239013671875, -0.0282440185546875, -0.0076141357421875, -0.04327392578125, -0.08685302734375, 0.01343536376953125, 0.043182373046875, -0.019805908203125, 0.0167388916015625, 0.0147552490234375, 0.0765380859375, 0.01220703125, 0.045440673828125, -0.0224609375, 0.033843994140625, 0.03839111328125, -0.02508544921875, 0.0291290283203125, -0.024627685546875, 0.037384033203125, 0.053466796875, -0.003490447998046875, -0.022369384765625, -0.00901031494140625, -0.022735595703125, -0.01287078857421875, -0.0023517608642578125, -0.02655029296875, -0.00395965576171875, -0.0653076171875, 0.0159759521484375, -0.01036834716796875, -0.0010547637939453125, -0.0296630859375, -0.0185546875, -0.00804901123046875, -0.0181884765625, -0.07855224609375, -0.050262451171875, -0.042236328125, -0.0231781005859375, 0.0096282958984375, 0.006061553955078125, -0.000698089599609375, -0.00260162353515625, 0.0164337158203125, 0.0164642333984375, -0.04498291015625, -0.015777587890625, 0.023223876953125, -0.0343017578125, -0.01323699951171875, 0.0186004638671875, 0.0178070068359375, 0.0287017822265625, 0.0118865966796875, 0.01250457763671875, -0.0175933837890625, -0.05511474609375, -0.01300811767578125, 0.035064697265625, 0.004016876220703125, -0.0026912689208984375, -0.036376953125, -0.00499725341796875, -0.0187530517578125, -0.028411865234375, 0.054656982421875, 0.042083740234375, -0.009552001953125, 0.047821044921875, -0.03240966796875, -0.028350830078125, -0.03253173828125, 0.0294036865234375, 0.0594482421875, -0.047943115234375, -0.0162353515625, -0.068115234375, -0.021331787109375, -0.0423583984375, -0.05413818359375, 0.06256103515625, 0.013092041015625, 0.02362060546875, 0.00777435302734375, 0.031707763671875, 0.0281829833984375, 0.048675537109375, 0.000012159347534179688, -0.017364501953125, 0.048431396484375, -0.0180816650390625, 0.003696441650390625, -0.0300750732421875, 0.0258941650390625, -0.0214385986328125, 0.05255126953125, 0.01346588134765625, -0.017333984375, -0.021026611328125, -0.01336669921875, -0.040740966796875, -0.030120849609375, 0.02679443359375, -0.039886474609375, 0.0250701904296875, -0.032989501953125, -0.0013570785522460938, -0.03509521484375, 0.04144287109375, -0.0767822265625, -0.014923095703125, -0.00559234619140625, 0.033843994140625, -0.0228729248046875, -0.069091796875, -0.04248046875, -0.006000518798828125, -0.0447998046875, -0.0024929046630859375, 0.0106658935546875, -0.03668212890625, 0.0158538818359375, -0.06134033203125, -0.017486572265625, -0.03228759765625, 0.0210723876953125, 0.0283966064453125, 0.015411376953125, 0.0162811279296875, 0.031341552734375, 0.01045989990234375, 0.016265869140625, -0.0190582275390625, -0.10546875, -0.0178985595703125, -0.040069580078125, 0.0718994140625, -0.01898193359375, 0.047271728515625, -0.0631103515625, 0.041839599609375, -0.02862548828125, 0.01412200927734375, 0.0244140625, 0.05010986328125, -0.00566864013671875, -0.020111083984375, 0.0207061767578125, -0.049072265625, -0.006256103515625, -0.0665283203125, -0.0202484130859375, -0.06103515625, -0.0494384765625, 0.027313232421875, -0.045806884765625, 0.0165863037109375, 0.00888824462890625, -0.003643035888671875, -0.006343841552734375, 0.03997802734375, -0.005901336669921875, 0.0036468505859375, -0.0301361083984375, -0.018035888671875, 0.05657958984375, 0.01340484619140625, 0.0088653564453125, 0.01099395751953125, 0.07940673828125, -0.0097503662109375, -0.00992584228515625, -0.08319091796875, -0.00473785400390625, 0.03509521484375, 0.02325439453125, 0.048858642578125, 0.053070068359375, 0.0011892318725585938, -0.016998291015625, 0.034454345703125, -0.0116424560546875, 0.004974365234375, 0.0701904296875, 0.001811981201171875, -0.028350830078125, 0.0158233642578125, -0.022857666015625, 0.01090240478515625, 0.033294677734375, -0.0195465087890625, -0.015411376953125, -0.0271453857421875, 0.036376953125, -0.011627197265625, 0.007457733154296875, -0.044677734375, -0.061553955078125, 0.022125244140625, -0.039093017578125, 0.04150390625, 0.0212860107421875, -0.0160369873046875, 0.058380126953125, 0.042266845703125, -0.0032024383544921875, 0.052215576171875, -0.00952911376953125, 0.07183837890625, 0.033111572265625, 0.05126953125, 0.030364990234375, -0.004459381103515625, 0.0361328125, -0.0400390625, 0.00383758544921875, -0.01032257080078125, -0.0689697265625, 0.012054443359375, -0.03253173828125, -0.0256195068359375, -0.05059814453125, 0.02398681640625, 0.045074462890625, -0.020355224609375, 0.004581451416015625, -0.04248046875, -0.0101318359375, -0.042877197265625, 0.02154541015625, 0.018768310546875, -0.0372314453125, 0.01009368896484375, -0.01267242431640625, -0.01531982421875, -0.0181732177734375, 0.01403045654296875, 0.01222991943359375, 0.051605224609375, 0.0032176971435546875, 0.0240631103515625, 0.0172576904296875, -0.024749755859375, -0.0018529891967773438, 0.0283660888671875, -0.0302886962890625, 0.006866455078125, 0.01018524169921875, 0.0296630859375, -0.003986358642578125, -0.02008056640625, 0.01461029052734375, -0.002857208251953125, 0.0112152099609375, -0.0281219482421875, -0.06524658203125, -0.0364990234375, 0.0291290283203125, 0.002544403076171875, 0.01134490966796875, -0.037506103515625, -0.019012451171875, 0.0002779960632324219, -0.0350341796875, 0.0034770965576171875, 0.0034389495849609375, -0.045928955078125, 0.0190887451171875, 0.018310546875, -0.037628173828125, -0.006969451904296875, 0.004627227783203125, 0.0169830322265625, -0.01325225830078125, -0.000591278076171875, -0.01422119140625, 0.02716064453125, -0.021514892578125, -0.033203125, 0.010101318359375, 0.017669677734375, 0.01441192626953125, 0.036865234375, 0.007843017578125, -0.03607177734375, -0.0134124755859375, 0.01505279541015625, -0.0164794921875, -0.0036602020263671875, 0.0889892578125, 0.023895263671875, -0.01004791259765625, -0.04736328125, -0.02008056640625, 0.01239013671875, -0.0057525634765625, 0.0230560302734375, -0.011322021484375, 0.01419830322265625, -0.009521484375, -0.0095062255859375, -0.0116424560546875, 0.0198822021484375, 0.00681304931640625, 0.0030879974365234375, -0.01200103759765625, -0.01050567626953125, -0.0180816650390625, 0.0023365020751953125, -0.02154541015625, -0.03173828125, 0.0306549072265625, 0.0173797607421875, 0.023101806640625, 0.00844573974609375, 0.040557861328125, 0.0290069580078125, 0.0193939208984375, 0.0011224746704101562, 0.003391265869140625, -0.0240631103515625, 0.01425933837890625, -0.01317596435546875, 0.0171356201171875, 0.0298004150390625, -0.033843994140625, 0.037017822265625, -0.003570556640625, 0.001140594482421875, 0.0174102783203125, -0.044677734375, -0.005680084228515625, 0.080322265625, 0.019561767578125, 0.0225982666015625, 0.06268310546875, 0.005237579345703125, 0.048370361328125, 0.0491943359375, 0.0295562744140625, 0.021484375, 0.016815185546875, 0.055206298828125, -0.00940704345703125, 0.09149169921875, 0.0159912109375, -0.0233001708984375, 0.055389404296875, -0.05621337890625, 0.029541015625, -0.00968170166015625, 0.040771484375, -0.0045318603515625, 0.0196380615234375, -0.005458831787109375, -0.038055419921875, 0.047332763671875, -0.0107269287109375, -0.01331329345703125, 0.0026950836181640625, 0.002468109130859375, -0.005126953125, -0.0399169921875, -0.0250701904296875, 0.016357421875, -0.0048828125, 0.032318115234375, 0.0009646415710449219, -0.0093841552734375, -0.057769775390625, -0.043365478515625, 0.07159423828125, -0.037841796875, -0.00806427001953125, 0.029205322265625, -0.01285552978515625, 0.01386260986328125, -0.00995635986328125, 0.01690673828125, -0.0250244140625, -0.00543975830078125, -0.01010894775390625, -0.009002685546875, 0.041748046875, 0.028228759765625, -0.01050567626953125, -0.00882720947265625, 0.0036716461181640625, 0.01419830322265625, 0.019317626953125, -0.01354217529296875, 0.021240234375, 0.005580902099609375, -0.0955810546875, -0.00948333740234375, -0.04791259765625, 0.033447265625, 0.01100921630859375, 0.037841796875, 0.0251922607421875, -0.05584716796875, -0.0016956329345703125, 0.04302978515625, 0.05108642578125, 0.01055908203125, 0.01406097412109375, 0.0210723876953125, -0.060516357421875, -0.019622802734375, 0.002422332763671875, -0.0121307373046875, 0.02093505859375, -0.006992340087890625, -0.0595703125, 0.045074462890625, -0.047821044921875, 0.0362548828125, 0.0179443359375, 0.0079498291015625, 0.014404296875, -0.004398345947265625, 0.0110626220703125, 0.0127716064453125, -0.029693603515625, -0.0096588134765625, -0.0086212158203125, 0.0160369873046875, 0.004276275634765625, 0.0014400482177734375, 0.08428955078125, 0.0272369384765625, -0.031341552734375, -0.0189666748046875, 0.0400390625, 0.00350189208984375, -0.020111083984375, 0.04718017578125, -0.0015439987182617188, -0.06488037109375, 0.048583984375, 0.00588226318359375, 0.01580810546875, -0.0001844167709350586, 0.02581787109375, 0.0253143310546875, -0.007659912109375, -0.01345062255859375, 0.0042266845703125, 0.00522613525390625, -0.0301361083984375, 0.01120758056640625, 0.0272674560546875, -0.04248046875, 0.026092529296875, 0.0261993408203125, 0.0257110595703125, -0.0226287841796875, -0.059844970703125, -0.0029468536376953125, 0.026885986328125, 0.00003135204315185547, 0.00843048095703125, 0.01309967041015625, 0.01082611083984375, 0.047882080078125, -0.0117950439453125, -0.0100250244140625, 0.0206451416015625, 0.0003285408020019531, 0.0313720703125, 0.042694091796875, 0.035675048828125, -0.0195465087890625, -0.007297515869140625, 0.059112548828125, 0.051177978515625, -0.0298919677734375, -0.041229248046875, 0.0046539306640625, 0.0083465576171875, 0.0098419189453125, -0.00494384765625, 0.012847900390625, -0.053009033203125, 0.007625579833984375, -0.049102783203125, 0.003826141357421875, 0.047393798828125, 0.0081787109375, -0.00644683837890625, 0.00450897216796875, -0.005573272705078125, 0.00685882568359375, -0.01171875, 0.0031147003173828125, 0.0239105224609375, 0.03094482421875, 0.0033626556396484375, 0.0254058837890625, -0.0109710693359375, -0.006195068359375, -0.02410888671875, 0.03863525390625, -0.00809478759765625, 0.035003662109375, -0.03558349609375, -0.0297088623046875, 0.040557861328125, 0.039093017578125, 0.0109100341796875, 0.0218658447265625, 0.052032470703125, 0.035491943359375, -0.07421875, -0.00897216796875, 0.0221405029296875, -0.03936767578125, 0.0352783203125, -0.03289794921875, 0.056884765625, 0.0272979736328125, -0.01302337646484375, -0.0305023193359375, -0.02410888671875, 0.09649658203125, -0.01065826416015625, 0.020111083984375, 0.0017080307006835938, -0.01280975341796875, 0.01215362548828125, -0.0390625, 0.00839996337890625, -0.007793426513671875, -0.0290069580078125, 0.00395965576171875, -0.00550079345703125, -0.0187835693359375, 0.01303863525390625, 0.0202484130859375, -0.04388427734375, 0.035888671875, 0.06329345703125, -0.03118896484375, 0.01546478271484375, 0.0007567405700683594, 0.03509521484375, 0.01026153564453125, 0.0100250244140625, 0.0222320556640625, -0.059539794921875, -0.0311279296875, -0.0260009765625, 0.03448486328125, 0.0034885406494140625, 0.08160400390625, -0.015380859375, 0.006526947021484375, 0.0269927978515625, -0.00630950927734375, 0.0021457672119140625, 0.0267181396484375, 0.021087646484375, -0.0244903564453125, -0.0179290771484375, -0.02392578125, 0.005474090576171875, -0.0128631591796875, 0.004611968994140625, -0.03912353515625, -0.047576904296875, -0.0330810546875, 0.03363037109375, 0.06756591796875, 0.01318359375, -0.0197906494140625, -0.01666259765625, -0.041778564453125, -0.002773284912109375, 0.03302001953125, 0.0372314453125, -0.01201629638671875, 0.01812744140625, 0.0501708984375, -0.004772186279296875, 0.06524658203125, -0.036956787109375, 0.11016845703125, 0.05401611328125, -0.03582763671875, -0.041412353515625, -0.05133056640625, -0.01302337646484375, -0.0206756591796875, -0.01194000244140625, 0.0007772445678710938, -0.0246734619140625, -0.04400634765625, 0.018218994140625, -0.0037784576416015625, 0.01045989990234375, -0.048614501953125, -0.016143798828125, 0.0217742919921875, 0.01332855224609375, 0.012908935546875, 0.00626373291015625, -0.016693115234375, -0.03802490234375, -0.006832122802734375, 0.0301513671875, -0.026153564453125, 0.0242767333984375, -0.029693603515625, -0.028839111328125, 0.06768798828125, 0.041595458984375, -0.052947998046875, 0.01959228515625, 0.00705718994140625, -0.00734710693359375, 0.06463623046875, 0.0126190185546875, -0.0304107666015625, 0.0038318634033203125, 0.00238037109375, -0.05828857421875, -0.0350341796875, 0.06939697265625, -0.0217437744140625, 0.02581787109375, 0.01238250732421875, -0.022369384765625, 0.018829345703125, 0.035400390625, 0.017578125, 0.09735107421875, -0.01678466796875, -0.035003662109375, 0.001621246337890625, 0.0274658203125, -0.01296234130859375, -0.048187255859375, -0.009521484375, -0.033447265625, 0.024566650390625, -0.031982421875, 0.01116180419921875, 0.027252197265625, -0.03424072265625, -0.07159423828125, 0.03839111328125, -0.01352691650390625, -0.03466796875, 0.007080078125, 0.004878997802734375, -0.025238037109375, 0.014251708984375, 0.017913818359375, -0.00408172607421875, 0.02716064453125, 0.037017822265625, -0.00595855712890625, -0.01447296142578125, 0.032470703125, -0.042999267578125, -0.01049041748046875, 0.0158538818359375, 0.035491943359375, -0.0296173095703125, 0.033843994140625, -0.0229949951171875, 0.033782958984375, 0.065673828125, -0.016937255859375, -0.0291290283203125, -0.01303863525390625, -0.06512451171875, -0.031524658203125, -0.004650115966796875, 0.0026416778564453125, 0.0164794921875, 0.037933349609375, 0.04632568359375, -0.0024242401123046875, -0.039886474609375, 0.0225982666015625, -0.0111541748046875, 0.01360321044921875, -0.02459716796875, 0.0032024383544921875, -0.04791259765625, -0.03759765625, 0.01076507568359375, -0.004093170166015625, -0.036865234375, 0.054931640625, -0.01467132568359375, -0.01285552978515625, 0.033782958984375, -0.0254364013671875, -0.0273590087890625, 0.00807952880859375, -0.005039215087890625, -0.005199432373046875, 0.0110626220703125, -0.02838134765625, 0.02252197265625, -0.0056304931640625, 0.0013875961303710938, -0.0013818740844726562, 0.043914794921875, -0.045928955078125, 0.0180816650390625, -0.0191650390625, -0.0111846923828125, -0.06048583984375, 0.0114898681640625, -0.01282501220703125, -0.00016999244689941406, 0.01007080078125, 0.010528564453125, 0.00017821788787841797, -0.0091552734375, 0.00014281272888183594, 0.03515625, -0.0091705322265625, -0.044036865234375, -0.0299530029296875, 0.0280914306640625, -0.01435089111328125, -0.0154266357421875, 0.0225067138671875, -0.01317596435546875, 0.0036525726318359375, -0.0037899017333984375, -0.0523681640625, -0.0467529296875, -0.0007839202880859375, -0.026641845703125, -0.0225982666015625, 0.01081085205078125 ]
88cd0bead2bf6e12944331f22a85620aa186a061
Wordpress Stackexchange Q: wp.customize.bind ready event not fired I'm trying to add some javascript to my theme customizer. My JS file is loaded no problem and my document ready event works but wp.customize.bind() isn't calling my callback. jQuery(document).on('ready', function(){ console.log('binding') wp.customize.bind('ready', function(){ console.log('ready') }) }) binding gets outputed to the console but ready does not. What am I missing? there seems to be little to no documentation on using the javascript here. A: Do not put the Customizer ready event handler inside of the jQuery event handler. The Customizer ready will trigger at jQuery ready, so you are adding the event handler too late. Just do: wp.customize.bind('ready', function(){ console.log('ready'); }); Your JS needs to be enqueued with customize-controls script as its dependency. Enqueue at the customize_controls_enqueue_scripts action.
Q: wp.customize.bind ready event not fired I'm trying to add some javascript to my theme customizer. My JS file is loaded no problem and my document ready event works but wp.customize.bind() isn't calling my callback. jQuery(document).on('ready', function(){ console.log('binding') wp.customize.bind('ready', function(){ console.log('ready') }) }) binding gets outputed to the console but ready does not. What am I missing? there seems to be little to no documentation on using the javascript here. A: Do not put the Customizer ready event handler inside of the jQuery event handler. The Customizer ready will trigger at jQuery ready, so you are adding the event handler too late. Just do: wp.customize.bind('ready', function(){ console.log('ready'); }); Your JS needs to be enqueued with customize-controls script as its dependency. Enqueue at the customize_controls_enqueue_scripts action. A: I had same problem. The reason it was not binding for me was because I had this error "Uncaught TypeError: Cannot read property 'unsync' of undefined" on my console. It was caused because I removed the header_textcolor settings from the theme template by using $wp_customize->remove_setting( 'header_textcolor' ); but it was still being referenced in the js. After fixing this, bind worked as intended.
wordpress
{ "language": "en", "length": 189, "provenance": "stackexchange_00019.jsonl.gz:468247", "question_score": "7", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/238941" }
[ 0.019378662109375, -0.0150909423828125, -0.027008056640625, -0.0736083984375, 0.0011701583862304688, -0.0009775161743164062, -0.033416748046875, -0.004302978515625, -0.06494140625, 0.024383544921875, 0.03753662109375, 0.024810791015625, -0.0439453125, -0.029693603515625, 0.0030155181884765625, -0.04425048828125, 0.0435791015625, -0.005008697509765625, 0.045501708984375, -0.0155487060546875, -0.006740570068359375, 0.01061248779296875, 0.0589599609375, 0.1011962890625, 0.06036376953125, -0.0189208984375, 0.06414794921875, 0.0008749961853027344, 0.043121337890625, 0.01409149169921875, 0.049041748046875, -0.060302734375, 0.0225830078125, 0.03570556640625, -0.05145263671875, 0.007564544677734375, 0.01074981689453125, 0.0011777877807617188, -0.011444091796875, 0.048553466796875, 0.037933349609375, -0.0259857177734375, 0.016937255859375, 0.02032470703125, -0.007404327392578125, -0.049591064453125, 0.064697265625, -0.0257568359375, -0.01108551025390625, -0.01111602783203125, 0.0056304931640625, -0.01355743408203125, 0.025482177734375, -0.05645751953125, 0.0019102096557617188, -0.00901031494140625, -0.04376220703125, 0.0257110595703125, -0.0036678314208984375, 0.09490966796875, 0.03814697265625, 0.04364013671875, -0.03106689453125, -0.05303955078125, 0.00098419189453125, 0.03106689453125, -0.0280303955078125, 0.002254486083984375, 0.0024356842041015625, 0.01483154296875, -0.01297760009765625, -0.043731689453125, -0.0278778076171875, 0.01084136962890625, -0.02484130859375, -0.0174560546875, 0.0086822509765625, -0.02947998046875, 0.0179595947265625, 0.0192108154296875, 0.035308837890625, -0.0081787109375, 0.0321044921875, -0.0031890869140625, -0.005039215087890625, 0.017120361328125, -0.00013446807861328125, -0.025360107421875, -0.01435089111328125, -0.029937744140625, -0.0236968994140625, -0.0031414031982421875, 0.006855010986328125, 0.0023345947265625, -0.05145263671875, 0.020172119140625, 0.01363372802734375, 0.027252197265625, 0.0021533966064453125, 0.0205841064453125, -0.0007205009460449219, -0.0382080078125, 0.043365478515625, -0.0391845703125, -0.00969696044921875, 0.0157623291015625, 0.0278167724609375, 0.0596923828125, 0.022735595703125, 0.013702392578125, -0.017547607421875, -0.01242828369140625, 0.054046630859375, 0.025543212890625, -0.0032253265380859375, -0.06939697265625, -0.0191192626953125, 0.0222015380859375, -0.0112152099609375, -0.030792236328125, 0.0279693603515625, 0.0058135986328125, -0.0165863037109375, 0.03173828125, 0.01100921630859375, 0.0030193328857421875, -0.0264739990234375, -0.0005197525024414062, 0.03570556640625, -0.007488250732421875, -0.022125244140625, 0.01087188720703125, 0.07086181640625, 0.05841064453125, 0.0347900390625, -0.0158233642578125, 0.08251953125, 0.0174102783203125, 0.0154266357421875, 0.00345611572265625, 0.0018415451049804688, -0.01201629638671875, -0.02960205078125, -0.01055908203125, 0.00264739990234375, 0.0147552490234375, -0.0005488395690917969, 0.007022857666015625, 0.034759521484375, -0.05804443359375, 0.03460693359375, -0.03546142578125, 0.03271484375, 0.045928955078125, -0.00986480712890625, -0.002223968505859375, 0.0731201171875, -0.044647216796875, -0.022857666015625, -0.06341552734375, 0.006702423095703125, 0.0243682861328125, -0.01296234130859375, -0.0222320556640625, 0.0041046142578125, -0.03497314453125, -0.01186370849609375, 0.0164947509765625, 0.0244598388671875, 0.053314208984375, -0.0023746490478515625, 0.00667572021484375, -0.0024261474609375, 0.03790283203125, 0.012542724609375, 0.007297515869140625, -0.006198883056640625, 0.0166015625, 0.020050048828125, -0.018341064453125, -0.019775390625, -0.02972412109375, 0.06134033203125, -0.0208587646484375, -0.0213165283203125, 0.0004050731658935547, 0.004093170166015625, 0.014007568359375, 0.016204833984375, 0.0149078369140625, 0.025421142578125, 0.010162353515625, -0.020782470703125, -0.0152740478515625, -0.035003662109375, -0.01531982421875, -0.01432037353515625, -0.001247406005859375, -0.034698486328125, 0.04632568359375, -0.030548095703125, -0.0035305023193359375, -0.007740020751953125, 0.0024242401123046875, -0.03857421875, -0.003082275390625, -0.0222625732421875, 0.04412841796875, 0.045806884765625, -0.0210113525390625, -0.0157318115234375, -0.0235443115234375, 0.0005650520324707031, -0.0253448486328125, -0.04656982421875, 0.02239990234375, -0.01541900634765625, 0.08056640625, -0.0079803466796875, 0.047698974609375, 0.002155303955078125, -0.05377197265625, 0.006412506103515625, 0.0270843505859375, 0.01398468017578125, 0.0171051025390625, -0.0256805419921875, -0.01467132568359375, 0.0076904296875, 0.01605224609375, -0.02008056640625, 0.040252685546875, 0.031768798828125, 0.0012884140014648438, -0.0258636474609375, -0.00536346435546875, 0.0162506103515625, -0.063232421875, 0.0013608932495117188, 0.045440673828125, 0.0193328857421875, 0.0210113525390625, -0.00502777099609375, 0.018402099609375, 0.055816650390625, 0.0272216796875, 0.03350830078125, -0.0232391357421875, 0.040679931640625, 0.034271240234375, 0.01837158203125, -0.04315185546875, 0.01451873779296875, -0.048187255859375, 0.024169921875, 0.0223846435546875, -0.00403594970703125, 0.0025234222412109375, -0.0166168212890625, 0.035491943359375, -0.0173187255859375, 0.005535125732421875, 0.01120758056640625, -0.0121307373046875, 0.043182373046875, 0.02392578125, 0.039215087890625, 0.03564453125, -0.02716064453125, 0.03497314453125, 0.005321502685546875, -0.042083740234375, -0.00946807861328125, 0.01059722900390625, 0.031585693359375, -0.003604888916015625, -0.042572021484375, 0.003322601318359375, -0.0005230903625488281, 0.0040740966796875, 0.004833221435546875, 0.017425537109375, -0.053314208984375, 0.0006170272827148438, 0.024169921875, -0.032440185546875, -0.010345458984375, 0.050018310546875, 0.040863037109375, 0.005130767822265625, 0.0178375244140625, 0.01995849609375, -0.0135498046875, 0.0443115234375, 0.038909912109375, -0.036163330078125, -0.01525115966796875, -0.0181732177734375, 0.03338623046875, -0.031951904296875, 0.0347900390625, 0.0670166015625, -0.0079345703125, 0.0222625732421875, 0.006420135498046875, 0.01187896728515625, 0.046478271484375, 0.0010652542114257812, -0.0014352798461914062, -0.00891876220703125, -0.0673828125, -0.041656494140625, 0.0307464599609375, 0.08087158203125, -0.0183563232421875, -0.038970947265625, 0.0016679763793945312, 0.038726806640625, -0.027435302734375, -0.0745849609375, -0.006626129150390625, -0.0701904296875, 0.02496337890625, -0.034637451171875, -0.0263671875, -0.002712249755859375, -0.03326416015625, 0.01348114013671875, -0.0445556640625, -0.0088653564453125, -0.01438140869140625, -0.07244873046875, -0.0469970703125, -0.045074462890625, -0.01123046875, -0.0020751953125, 0.005100250244140625, 0.08050537109375, 0.0164794921875, -0.0257568359375, 0.0230865478515625, -0.0115203857421875, -0.0098876953125, 0.0313720703125, 0.03497314453125, -0.025177001953125, 0.0258636474609375, -0.0024967193603515625, 0.014678955078125, 0.0482177734375, -0.035003662109375, -0.0277252197265625, -0.0110015869140625, -0.004390716552734375, -0.0099945068359375, 0.07977294921875, 0.0291290283203125, -0.038726806640625, 0.005672454833984375, -0.07147216796875, -0.0049285888671875, -0.005092620849609375, -0.030731201171875, 0.01332855224609375, 0.046539306640625, -0.02301025390625, -0.0086669921875, -0.00684356689453125, 0.0216522216796875, 0.00394439697265625, -0.0077972412109375, 0.01366424560546875, 0.0277862548828125, 0.003414154052734375, 0.008758544921875, -0.017913818359375, 0.0379638671875, -0.0126190185546875, 0.0235443115234375, 0.01117706298828125, 0.01030731201171875, -0.0171356201171875, -0.0294952392578125, -0.0843505859375, -0.048736572265625, 0.055755615234375, 0.021759033203125, 0.00440216064453125, -0.009490966796875, -0.038818359375, 0.02960205078125, 0.0906982421875, -0.0299835205078125, 0.00975799560546875, 0.001644134521484375, -0.00489044189453125, -0.0228271484375, -0.00640106201171875, -0.070556640625, -0.005275726318359375, -0.07293701171875, 0.003265380859375, -0.010650634765625, -0.0159912109375, -0.0338134765625, 0.06597900390625, -0.057220458984375, -0.03607177734375, 0.0221710205078125, -0.01690673828125, -0.005306243896484375, -0.0031642913818359375, -0.01204681396484375, -0.03875732421875, 0.01434326171875, -0.030059814453125, -0.054351806640625, -0.00183868408203125, -0.0257110595703125, 0.024627685546875, 0.0189056396484375, -0.018157958984375, 0.005641937255859375, 0.0312347412109375, 0.060638427734375, -0.0072479248046875, 0.030059814453125, -0.03790283203125, -0.022491455078125, -0.0007543563842773438, 0.032806396484375, -0.044158935546875, -0.00328826904296875, 0.029022216796875, -0.041839599609375, 0.0093536376953125, -0.00553131103515625, -0.05499267578125, 0.0428466796875, -0.045989990234375, -0.03271484375, 0.01239013671875, -0.038177490234375, -0.01153564453125, -0.04449462890625, 0.0016384124755859375, 0.01560211181640625, -0.037567138671875, -0.0121612548828125, -0.05047607421875, 0.0092620849609375, 0.008270263671875, 0.02850341796875, 0.0284423828125, -0.0024318695068359375, 0.040924072265625, 0.0059814453125, 0.0259246826171875, 0.05169677734375, 0.023284912109375, 0.007396697998046875, -0.0203399658203125, 0.018951416015625, 0.04840087890625, 0.009490966796875, -0.017608642578125, 0.06951904296875, -0.005031585693359375, -0.03265380859375, 0.028472900390625, 0.0000057220458984375, -0.040985107421875, 0.05169677734375, -0.01013946533203125, 0.0123748779296875, 0.034881591796875, -0.01221466064453125, -0.06036376953125, -0.0081939697265625, 0.00989532470703125, 0.01099395751953125, -0.004451751708984375, 0.0070953369140625, 0.09423828125, 0.00567626953125, 0.01314544677734375, -0.00724029541015625, 0.02099609375, 0.0261383056640625, 0.027557373046875, 0.01506805419921875, -0.0266571044921875, 0.0181427001953125, 0.06329345703125, 0.0106658935546875, 0.01398468017578125, -0.01261138916015625, 0.056732177734375, 0.038818359375, -0.01544952392578125, -0.00804901123046875, 0.00501251220703125, 0.004486083984375, -0.052001953125, -0.004486083984375, 0.019256591796875, 0.04010009765625, -0.00818634033203125, 0.00977325439453125, 0.0257415771484375, 0.0247955322265625, -0.0219268798828125, 0.059356689453125, -0.00395965576171875, -0.01351165771484375, -0.040740966796875, 0.01247406005859375, 0.0032558441162109375, -0.04022216796875, 0.0167388916015625, 0.03515625, -0.00957489013671875, 0.062286376953125, 0.019805908203125, -0.045562744140625, 0.00376129150390625, 0.0435791015625, -0.0246734619140625, -0.061767578125, -0.0219879150390625, 0.0187835693359375, 0.05780029296875, 0.00853729248046875, -0.009490966796875, 0.0099334716796875, 0.00591278076171875, -0.048370361328125, 0.037200927734375, 0.0333251953125, -0.03692626953125, -0.028289794921875, 0.00983428955078125, 0.040679931640625, 0.035552978515625, 0.01143646240234375, 0.01336669921875, -0.01131439208984375, 0.013885498046875, -0.03857421875, 0.0185699462890625, -0.0291748046875, -0.028656005859375, -0.02618408203125, -0.00704193115234375, 0.01197052001953125, -0.06622314453125, -0.0236358642578125, -0.00010091066360473633, -0.00046181678771972656, 0.0214996337890625, -0.006587982177734375, -0.004207611083984375, -0.04730224609375, 0.0249786376953125, -0.0823974609375, 0.005138397216796875, 0.045379638671875, 0.0251312255859375, 0.0080108642578125, -0.0010366439819335938, -0.0304107666015625, -0.017913818359375, -0.0362548828125, -0.0457763671875, -0.04388427734375, -0.0024738311767578125, -0.006534576416015625, 0.007724761962890625, -0.0013513565063476562, 0.006031036376953125, -0.00901031494140625, 0.01493072509765625, 0.01554107666015625, 0.00476837158203125, -0.018402099609375, 0.0204315185546875, 0.0364990234375, 0.024688720703125, 0.01515960693359375, 0.0106964111328125, 0.01441192626953125, -0.040679931640625, 0.0109100341796875, -0.029571533203125, -0.01085662841796875, -0.054412841796875, 0.004970550537109375, -0.0014667510986328125, 0.041290283203125, -0.005084991455078125, 0.05743408203125, -0.030975341796875, -0.0019273757934570312, -0.0133209228515625, -0.000690460205078125, -0.04583740234375, 0.01232147216796875, 0.03900146484375, -0.01290130615234375, 0.0254669189453125, -0.0206451416015625, 0.00428009033203125, 0.0158843994140625, -0.0230255126953125, 0.0258026123046875, -0.0032958984375, -0.0128021240234375, 0.0206146240234375, 0.0259857177734375, 0.010833740234375, 0.031951904296875, -0.00815582275390625, 0.0276336669921875, -0.0024662017822265625, 0.048583984375, -0.04132080078125, -0.025604248046875, 0.0146942138671875, 0.0113372802734375, -0.023040771484375, -0.0192108154296875, 0.0031528472900390625, 0.0299530029296875, 0.03485107421875, 0.0780029296875, -0.06011962890625, 0.01448822021484375, 0.03472900390625, -0.0299530029296875, 0.00909423828125, -0.009063720703125, 0.037841796875, 0.01032257080078125, -0.0041656494140625, 0.0269775390625, -0.007068634033203125, 0.0147552490234375, -0.015625, -0.00690460205078125, -0.00882720947265625, -0.0022411346435546875, 0.004505157470703125, 0.0027103424072265625, 0.0169219970703125, -0.01450347900390625, 0.0296173095703125, -0.00133514404296875, 0.002521514892578125, -0.01336669921875, -0.04132080078125, -0.034332275390625, -0.004924774169921875, -0.021087646484375, -0.0137939453125, 0.0173492431640625, 0.0108489990234375, 0.0022945404052734375, 0.0443115234375, -0.01812744140625, 0.030029296875, -0.005855560302734375, 0.01275634765625, 0.023834228515625, -0.037017822265625, 0.0207672119140625, 0.06591796875, -0.10186767578125, 0.03033447265625, -0.0023975372314453125, 0.01702880859375, -0.0034732818603515625, 0.0038051605224609375, 0.0885009765625, -0.08154296875, 0.0139617919921875, 0.0418701171875, 0.0546875, -0.0219268798828125, -0.006557464599609375, -0.0030307769775390625, -0.0399169921875, -0.013885498046875, -0.00751495361328125, -0.04437255859375, -0.0170745849609375, -0.0249481201171875, -0.052001953125, 0.1038818359375, -0.0022258758544921875, 0.0205535888671875, 0.0168914794921875, 0.046783447265625, -0.0093841552734375, 0.0350341796875, -0.0178375244140625, 0.043853759765625, -0.0246429443359375, 0.038909912109375, -0.0050506591796875, 0.0221710205078125, 0.019256591796875, 0.00844573974609375, -0.01129913330078125, -0.00836944580078125, 0.0168609619140625, -0.0018062591552734375, 0.0196380615234375, 0.006526947021484375, -0.0181427001953125, 0.0095977783203125, -0.0098419189453125, -0.0242462158203125, -0.037109375, 0.0239105224609375, 0.024932861328125, -0.041168212890625, -0.05096435546875, 0.022552490234375, -0.00847625732421875, -0.023681640625, 0.001983642578125, 0.01593017578125, -0.06927490234375, 0.01071929931640625, 0.041259765625, 0.002185821533203125, -0.0251312255859375, 0.0220947265625, 0.0245513916015625, -0.00826263427734375, -0.01502227783203125, -0.0230712890625, 0.0238189697265625, 0.02239990234375, -0.0070953369140625, -0.062042236328125, 0.0026950836181640625, -0.0986328125, -0.02264404296875, -0.02764892578125, 0.06683349609375, -0.06842041015625, 0.040191650390625, 0.006839752197265625, 0.03387451171875, -0.038665771484375, -0.0418701171875, -0.003971099853515625, 0.045135498046875, -0.015625, -0.02362060546875, 0.0260772705078125, 0.0232086181640625, 0.0004944801330566406, -0.002735137939453125, 0.0199127197265625, -0.0133514404296875, 0.0286407470703125, -0.0092620849609375, 0.018096923828125, 0.00400543212890625, 0.00724029541015625, 0.0026416778564453125, 0.052337646484375, -0.05072021484375, 0.0258026123046875, 0.0096588134765625, -0.04083251953125, -0.0015420913696289062, 0.044097900390625, 0.0186920166015625, 0.0238037109375, -0.053924560546875, -0.0176849365234375, 0.01186370849609375, 0.002410888671875, -0.0026416778564453125, -0.0194854736328125, -0.00203704833984375, -0.0123443603515625, -0.01861572265625, 0.02838134765625, 0.0175933837890625, -0.0001895427703857422, 0.016204833984375, -0.0008068084716796875, -0.01128387451171875, 0.01250457763671875, 0.02777099609375, -0.010406494140625, -0.01523590087890625, 0.01383209228515625, 0.03692626953125, 0.035980224609375, 0.000213623046875, -0.004131317138671875, 0.0692138671875, 0.0203857421875, -0.018524169921875, 0.03973388671875, -0.00011444091796875, -0.032440185546875, 0.04327392578125, -0.0010404586791992188, 0.1326904296875, 0.00470733642578125, -0.00897979736328125, 0.0082244873046875, -0.031463623046875, -0.0697021484375, 0.047149658203125, 0.058013916015625, -0.0164947509765625, 0.013641357421875, 0.006565093994140625, -0.033935546875, -0.01849365234375, 0.079345703125, -0.0294342041015625, 0.007659912109375, 0.043548583984375, -0.00589752197265625, -0.042327880859375, -0.031280517578125, 0.0113677978515625, 0.027618408203125, -0.01026153564453125, 0.0306854248046875, -0.0033130645751953125, 0.014190673828125, 0.048583984375, 0.026123046875, 0.0126495361328125, 0.0169677734375, -0.00737762451171875, 0.0017862319946289062, 0.023040771484375, -0.022247314453125, -0.005306243896484375, 0.0452880859375, -0.014190673828125, -0.01457977294921875, 0.0213470458984375, -0.0245208740234375, 0.0049591064453125, 0.03448486328125, 0.00008046627044677734, -0.03509521484375, -0.01342010498046875, 0.00342559814453125, -0.01097869873046875, 0.006069183349609375, -0.0281982421875, 0.0108642578125, -0.0264434814453125, -0.03515625, -0.03131103515625, 0.0153656005859375, 0.003719329833984375, -0.01053619384765625, 0.0214996337890625, -0.0175323486328125, -0.01216888427734375, 0.01294708251953125, -0.007244110107421875, 0.011474609375, 0.0092010498046875, -0.0059356689453125, 0.019378662109375, -0.025177001953125, 0.003688812255859375, 0.033843994140625, 0.033599853515625, -0.00034117698669433594, -0.00957489013671875, 0.0219879150390625, -0.035736083984375, -0.0040283203125, -0.0214385986328125, -0.02020263671875, -0.031463623046875, -0.0040435791015625, 0.0225372314453125, -0.013946533203125, -0.0160064697265625, -0.05078125, 0.01141357421875, 0.040557861328125, 0.00286865234375, -0.064697265625, 0.03240966796875, -0.04364013671875, 0.0355224609375, -0.006305694580078125, 0.0147247314453125, 0.01302337646484375, 0.051788330078125, -0.00243377685546875, -0.02020263671875, 0.003726959228515625, 0.0299530029296875, 0.0137176513671875, 0.0213470458984375, 0.039459228515625, -0.0034809112548828125, -0.043060302734375, 0.01395416259765625, -0.01543426513671875, 0.07171630859375, -0.0199127197265625, -0.0080108642578125, 0.0162811279296875, 0.015838623046875, -0.037750244140625, -0.042449951171875, 0.0178985595703125, -0.020782470703125, 0.013397216796875, -0.0645751953125, 0.0290069580078125, 0.021728515625, -0.0484619140625, -0.08734130859375, 0.037353515625, -0.03076171875, -0.021087646484375, -0.08111572265625, 0.0555419921875, 0.04638671875, -0.0810546875, -0.055389404296875, 0.00701904296875, -0.0538330078125, 0.0006384849548339844, 0.00969696044921875, 0.0033016204833984375, 0.04931640625, -0.00835418701171875, -0.043243408203125, -0.0023403167724609375, -0.0015497207641601562, 0.00864410400390625, 0.00024700164794921875, -0.0183258056640625, 0.033050537109375, 0.040313720703125, -0.03936767578125, -0.048980712890625, -0.0015125274658203125, 0.034759521484375, -0.007762908935546875, -0.01142120361328125, 0.0012254714965820312, -0.016632080078125, 0.042633056640625, -0.0220489501953125, 0.0029468536376953125, -0.007572174072265625, 0.011260986328125, -0.0171661376953125, -0.0252685546875, -0.0035266876220703125, 0.012237548828125, -0.0186767578125, 0.0210723876953125, -0.00576019287109375, -0.0178680419921875, -0.01528167724609375, -0.00655364990234375, -0.0460205078125, -0.006061553955078125, -0.031036376953125, 0.0171661376953125, -0.07861328125, -0.018218994140625, 0.08380126953125, -0.053253173828125, -0.0211029052734375, 0.042572021484375, 0.0255584716796875, 0.03558349609375, 0.00850677490234375, 0.01027679443359375, 0.0143585205078125, -0.052734375, 0.01361846923828125, -0.008270263671875, 0.027069091796875, -0.04949951171875, -0.02642822265625, 0.00020062923431396484, 0.0024585723876953125, -0.01296234130859375, 0.00534820556640625, 0.038726806640625, 0.0099029541015625, -0.0121917724609375, -0.007640838623046875, -0.0268707275390625, -0.0189666748046875, -0.029205322265625, 0.024322509765625, -0.0009908676147460938, 0.009796142578125, 0.034423828125, -0.005886077880859375, -0.00942230224609375, 0.005641937255859375, -0.0657958984375, -0.042388916015625, -0.0164031982421875, -0.0257720947265625, -0.0200042724609375, 0.00812530517578125 ]
8c6353d1e1859f6a33081d78208e173d1cab010f
Wordpress Stackexchange Q: Can I use the wp media uploader for my own plugin? I'd like to use the media uploader within my own plugin and I was wondering if this was possible? Essentially I'd like the same functionality as found in media-new.php so I can have the same interface to add new files within my plugin as WordPress does. Apologies for the lack of detail but I'm not sure how else to ask this question. A: You can use wp_enqueue_media() in your admin_enqueue_scripts hook. In a javascript file hook it into a button and use insert event to capture the selected image's details $('.media-button').click(function() { var media_uploader = wp.media({ frame: "post", text : "Add image", state: "insert", multiple: false }); media_uploader.on("insert", function(){ var json = media_uploader.state().get("selection").first().toJSON(); var image_name = json.filename; var image_url = json.url; var image_caption = json.caption; var image_title = json.title; }); });
Q: Can I use the wp media uploader for my own plugin? I'd like to use the media uploader within my own plugin and I was wondering if this was possible? Essentially I'd like the same functionality as found in media-new.php so I can have the same interface to add new files within my plugin as WordPress does. Apologies for the lack of detail but I'm not sure how else to ask this question. A: You can use wp_enqueue_media() in your admin_enqueue_scripts hook. In a javascript file hook it into a button and use insert event to capture the selected image's details $('.media-button').click(function() { var media_uploader = wp.media({ frame: "post", text : "Add image", state: "insert", multiple: false }); media_uploader.on("insert", function(){ var json = media_uploader.state().get("selection").first().toJSON(); var image_name = json.filename; var image_url = json.url; var image_caption = json.caption; var image_title = json.title; }); });
wordpress
{ "language": "en", "length": 143, "provenance": "stackexchange_00019.jsonl.gz:468260", "question_score": "6", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/238980" }
[ 0.027984619140625, 0.0002808570861816406, -0.00582122802734375, 0.005985260009765625, 0.01024627685546875, -0.0340576171875, 0.06658935546875, -0.0255126953125, -0.006847381591796875, 0.021331787109375, -0.00687408447265625, 0.0182952880859375, -0.0178985595703125, -0.0144195556640625, -0.00658416748046875, -0.0195770263671875, 0.0340576171875, -0.01541900634765625, 0.049163818359375, 0.01305389404296875, 0.014129638671875, 0.0499267578125, 0.02142333984375, 0.025054931640625, 0.007701873779296875, 0.0270843505859375, 0.057647705078125, 0.0231475830078125, -0.0082244873046875, -0.00897216796875, 0.0166015625, -0.01554107666015625, 0.015869140625, 0.0281524658203125, -0.032196044921875, 0.0117034912109375, 0.01349639892578125, 0.01219940185546875, 0.02398681640625, 0.03985595703125, 0.037689208984375, -0.0139617919921875, 0.0207977294921875, 0.049072265625, 0.01168060302734375, -0.06829833984375, 0.057647705078125, -0.032745361328125, 0.0222625732421875, 0.0185546875, 0.0157928466796875, -0.037109375, 0.0263671875, -0.004306793212890625, -0.021728515625, -0.0260162353515625, 0.009307861328125, 0.0263824462890625, 0.0278778076171875, 0.00789642333984375, -0.0489501953125, 0.00838470458984375, 0.00972747802734375, -0.041717529296875, -0.007266998291015625, -0.00327301025390625, -0.00429534912109375, -0.0006866455078125, -0.02911376953125, -0.0130767822265625, 0.035430908203125, -0.0286102294921875, 0.034759521484375, -0.0183868408203125, -0.0380859375, 0.0028476715087890625, 0.032928466796875, -0.0131072998046875, 0.00905609130859375, -0.046661376953125, 0.03143310546875, -0.0284423828125, 0.00620269775390625, -0.022430419921875, 0.04473876953125, 0.0230865478515625, 0.01125335693359375, -0.02008056640625, -0.00200653076171875, -0.0007915496826171875, -0.01513671875, -0.0214996337890625, 0.00298309326171875, 0.04083251953125, -0.0130615234375, 0.002330780029296875, 0.0135040283203125, 0.011444091796875, 0.0036525726318359375, 0.05108642578125, 0.0014781951904296875, -0.05804443359375, 0.06341552734375, -0.039825439453125, 0.0162506103515625, -0.00254058837890625, -0.016693115234375, -0.0894775390625, 0.011077880859375, 0.00836181640625, -0.021240234375, 0.041351318359375, 0.00600433349609375, -0.0286102294921875, 0.0143890380859375, 0.007503509521484375, -0.028961181640625, 0.047943115234375, 0.0037670135498046875, 0.014678955078125, -0.0275726318359375, -0.0026874542236328125, -0.0029048919677734375, 0.0007271766662597656, -0.0111236572265625, -0.01959228515625, 0.0146026611328125, -0.00963592529296875, -0.02215576171875, 0.0174713134765625, -0.02197265625, 0.0282440185546875, 0.0550537109375, 0.0246734619140625, -0.00090789794921875, -0.0096588134765625, 0.023223876953125, 0.00002467632293701172, 0.015533447265625, -0.033416748046875, 0.0279541015625, 0.0010328292846679688, 0.0142974853515625, 0.0013904571533203125, -0.0298309326171875, 0.032379150390625, 0.00273895263671875, 0.0033740997314453125, -0.01280975341796875, -0.044708251953125, 0.00936126708984375, -0.05523681640625, 0.0035877227783203125, 0.0030460357666015625, 0.05224609375, -0.0241546630859375, 0.06402587890625, -0.03631591796875, 0.0225830078125, -0.0244903564453125, -0.0025920867919921875, 0.0139007568359375, 0.0452880859375, -0.00988006591796875, 0.008392333984375, -0.01317596435546875, -0.0450439453125, -0.000016748905181884766, 0.0292510986328125, -0.00357818603515625, 0.02471923828125, -0.02801513671875, 0.02880859375, 0.02935791015625, 0.00794219970703125, 0.028533935546875, -0.00214385986328125, 0.041534423828125, 0.0175933837890625, 0.04913330078125, 0.0211639404296875, -0.028564453125, 0.09173583984375, -0.025115966796875, -0.028961181640625, 0.007663726806640625, 0.01000213623046875, 0.035888671875, 0.01079559326171875, 0.02691650390625, 0.038909912109375, 0.01081085205078125, -0.01244354248046875, -0.0018777847290039062, -0.0011129379272460938, -0.023651123046875, -0.035247802734375, 0.0129241943359375, -0.0121002197265625, 0.00814056396484375, 0.0208587646484375, 0.0200042724609375, 0.0005273818969726562, 0.01053619384765625, -0.049102783203125, 0.0088653564453125, -0.0230255126953125, 0.01528167724609375, 0.0033092498779296875, -0.0014200210571289062, 0.0190582275390625, -0.0030803680419921875, -0.0042877197265625, -0.04937744140625, -0.033935546875, 0.000027298927307128906, -0.0311431884765625, 0.024017333984375, 0.00341796875, 0.053680419921875, -0.0018978118896484375, -0.01183319091796875, -0.01336669921875, 0.0089569091796875, 0.02203369140625, 0.0242767333984375, -0.0284576416015625, -0.003910064697265625, 0.002887725830078125, 0.0194549560546875, -0.028717041015625, 0.0252227783203125, -0.0311737060546875, 0.0029544830322265625, -0.014892578125, -0.020416259765625, -0.0303497314453125, -0.10186767578125, 0.03753662109375, 0.057281494140625, 0.020751953125, 0.00897216796875, 0.004016876220703125, 0.039825439453125, 0.0450439453125, 0.0149383544921875, 0.0254669189453125, 0.0026073455810546875, 0.032745361328125, 0.0226593017578125, -0.054931640625, -0.0165252685546875, 0.03253173828125, -0.08685302734375, 0.023651123046875, 0.04925537109375, -0.0035076141357421875, -0.001983642578125, -0.0260772705078125, 0.01311492919921875, 0.01027679443359375, 0.0039005279541015625, -0.020721435546875, -0.0094146728515625, 0.0297393798828125, 0.0121307373046875, 0.03228759765625, 0.03369140625, -0.0128173828125, 0.004154205322265625, 0.0029506683349609375, -0.03765869140625, 0.014129638671875, 0.043609619140625, 0.01128387451171875, 0.00910186767578125, -0.04632568359375, -0.02716064453125, 0.058074951171875, 0.03265380859375, -0.0254974365234375, -0.016845703125, -0.0872802734375, -0.01507568359375, -0.0239105224609375, -0.058807373046875, 0.00281524658203125, 0.0260467529296875, 0.0077362060546875, -0.0033054351806640625, 0.044097900390625, -0.0014019012451171875, -0.0308074951171875, 0.038543701171875, -0.01319122314453125, -0.0160064697265625, 0.007328033447265625, -0.050750732421875, 0.04656982421875, -0.019287109375, 0.08319091796875, 0.0849609375, -0.0122222900390625, 0.019317626953125, 0.00244140625, -0.053619384765625, -0.034698486328125, 0.0233612060546875, -0.01546478271484375, -0.02685546875, -0.06744384765625, -0.00039005279541015625, 0.00919342041015625, -0.0248870849609375, 0.00750732421875, -0.035858154296875, -0.02362060546875, -0.01264190673828125, -0.080078125, -0.05535888671875, -0.004894256591796875, -0.11328125, 0.0091552734375, -0.00537109375, -0.057952880859375, -0.01788330078125, 0.056182861328125, 0.0130615234375, -0.05078125, 0.00478363037109375, 0.0278167724609375, -0.01488494873046875, -0.017852783203125, 0.001293182373046875, 0.007389068603515625, 0.0224456787109375, 0.0063323974609375, 0.0154266357421875, 0.0158843994140625, -0.004283905029296875, 0.02142333984375, 0.0194549560546875, -0.0006055831909179688, -0.0198211669921875, 0.07012939453125, -0.021942138671875, -0.0260772705078125, 0.0213623046875, 0.006885528564453125, 0.04998779296875, -0.07843017578125, -0.01361846923828125, -0.028106689453125, -0.02423095703125, -0.032867431640625, 0.04229736328125, 0.033111572265625, -0.0306396484375, -0.01332855224609375, -0.055328369140625, 0.033447265625, -0.0247344970703125, -0.006763458251953125, -0.00458526611328125, -0.01338958740234375, -0.0183258056640625, -0.006275177001953125, -0.0066070556640625, 0.0175933837890625, 0.0175628662109375, -0.0302886962890625, -0.017822265625, 0.01107025146484375, 0.00955963134765625, 0.035491943359375, 0.024627685546875, -0.00905609130859375, -0.029388427734375, 0.0321044921875, -0.0163726806640625, 0.007030487060546875, -0.0157623291015625, 0.032745361328125, -0.0380859375, -0.06768798828125, 0.037384033203125, -0.01169586181640625, 0.0208892822265625, -0.027679443359375, -0.0164947509765625, 0.00934600830078125, 0.09649658203125, -0.03900146484375, -0.0038700103759765625, -0.005176544189453125, 0.0107421875, -0.027557373046875, -0.03826904296875, -0.04119873046875, -0.012420654296875, 0.013427734375, -0.01128387451171875, -0.010284423828125, -0.02490234375, 0.0206756591796875, -0.0264434814453125, 0.0186309814453125, -0.0266876220703125, 0.0199127197265625, -0.031494140625, 0.0156707763671875, -0.00926971435546875, -0.01171112060546875, -0.035491943359375, 0.00579833984375, -0.046630859375, -0.11944580078125, -0.0124053955078125, -0.01276397705078125, 0.079833984375, -0.008636474609375, 0.0175933837890625, -0.0401611328125, 0.05108642578125, 0.006244659423828125, 0.060211181640625, -0.023162841796875, 0.005359649658203125, 0.0158233642578125, -0.031585693359375, 0.0114898681640625, -0.0170135498046875, -0.0036563873291015625, -0.0545654296875, -0.04437255859375, -0.027984619140625, -0.0234527587890625, 0.0194244384765625, -0.017730712890625, -0.0084991455078125, -0.018310546875, -0.0159149169921875, -0.027313232421875, -0.0177764892578125, -0.0249481201171875, -0.01247406005859375, -0.00794219970703125, -0.0114593505859375, 0.0128631591796875, -0.0226593017578125, 0.01087188720703125, 0.02349853515625, 0.0748291015625, 0.0127716064453125, 0.001049041748046875, -0.07989501953125, -0.01320648193359375, 0.003391265869140625, -0.00525665283203125, 0.050140380859375, 0.0111846923828125, -0.0138092041015625, 0.06097412109375, -0.01325225830078125, 0.0170440673828125, -0.0281982421875, 0.025848388671875, 0.026611328125, -0.0211944580078125, 0.0299072265625, 0.040069580078125, -0.026885986328125, -0.0186004638671875, -0.0213775634765625, 0.0164947509765625, -0.0145263671875, 0.0031108856201171875, -0.004131317138671875, 0.03228759765625, -0.01035308837890625, -0.07525634765625, 0.024139404296875, -0.0804443359375, 0.053924560546875, 0.0156707763671875, -0.0159759521484375, 0.06494140625, 0.03265380859375, 0.00020039081573486328, 0.006641387939453125, 0.014007568359375, -0.007450103759765625, 0.0215911865234375, 0.041534423828125, 0.00006139278411865234, -0.0194854736328125, 0.0036983489990234375, -0.032073974609375, -0.007701873779296875, -0.0124359130859375, -0.05047607421875, 0.0004107952117919922, 0.042816162109375, -0.0001735687255859375, -0.007045745849609375, 0.027740478515625, 0.05145263671875, 0.004306793212890625, 0.006134033203125, -0.018951416015625, 0.044281005859375, -0.0418701171875, 0.007366180419921875, 0.0259552001953125, -0.0245208740234375, -0.0023632049560546875, 0.057891845703125, -0.014678955078125, 0.017242431640625, 0.010406494140625, 0.0653076171875, 0.0472412109375, 0.03564453125, 0.0129852294921875, -0.026885986328125, 0.0228271484375, -0.00788116455078125, -0.020599365234375, -0.0274658203125, 0.0234832763671875, -0.016937255859375, 0.0201416015625, -0.015350341796875, -0.02703857421875, 0.047576904296875, -0.03857421875, -0.0235748291015625, -0.0017099380493164062, -0.042816162109375, -0.035369873046875, -0.0226287841796875, 0.02374267578125, 0.04217529296875, 0.01174163818359375, 0.00036835670471191406, -0.0017480850219726562, 0.0055084228515625, 0.00276947021484375, -0.03759765625, -0.027313232421875, 0.03033447265625, 0.032562255859375, 0.03802490234375, -0.0005288124084472656, -0.0132904052734375, -0.0394287109375, -0.0195465087890625, -0.0251617431640625, -0.0030803680419921875, 0.070556640625, -0.0484619140625, 0.006916046142578125, -0.02593994140625, 0.0271148681640625, -0.06671142578125, 0.0286865234375, 0.019866943359375, 0.0213165283203125, 0.029205322265625, -0.04864501953125, -0.0295257568359375, -0.037017822265625, 0.0227508544921875, 0.0048828125, -0.00984954833984375, -0.0205230712890625, -0.01324462890625, 0.0167083740234375, 0.001689910888671875, -0.0020236968994140625, -0.00015091896057128906, 0.020538330078125, 0.0028209686279296875, 0.0239410400390625, -0.0037975311279296875, 0.0220489501953125, 0.0261077880859375, 0.03070068359375, 0.016876220703125, -0.00864410400390625, -0.0276947021484375, -0.024139404296875, -0.0182037353515625, -0.057220458984375, -0.0153350830078125, 0.0269622802734375, -0.002788543701171875, 0.0443115234375, 0.0130767822265625, 0.00982666015625, 0.043609619140625, -0.00859832763671875, -0.0141143798828125, -0.0114288330078125, 0.0306549072265625, -0.0167083740234375, 0.02239990234375, 0.04888916015625, -0.03662109375, -0.0110931396484375, -0.0196380615234375, -0.0121917724609375, 0.039459228515625, -0.032012939453125, 0.004352569580078125, 0.0181427001953125, -0.0105438232421875, 0.050567626953125, 0.0689697265625, -0.01215362548828125, 0.0478515625, 0.051239013671875, 0.00537872314453125, 0.008392333984375, 0.025726318359375, 0.0222320556640625, -0.043701171875, 0.0389404296875, -0.00833892822265625, 0.002330780029296875, 0.0284271240234375, -0.0225830078125, 0.023223876953125, -0.0055389404296875, 0.040771484375, -0.0259246826171875, 0.018951416015625, -0.00726318359375, -0.005950927734375, 0.04071044921875, -0.01428985595703125, 0.019744873046875, 0.01495361328125, 0.04443359375, -0.0164337158203125, -0.033355712890625, 0.023590087890625, -0.0323486328125, -0.00714111328125, 0.032257080078125, -0.01244354248046875, 0.00966644287109375, -0.02874755859375, -0.043731689453125, 0.03515625, -0.0258941650390625, 0.0270538330078125, 0.0299224853515625, -0.02398681640625, -0.0145111083984375, -0.005077362060546875, 0.0172882080078125, -0.0325927734375, -0.00722503662109375, 0.0009083747863769531, 0.004974365234375, 0.05938720703125, 0.06353759765625, 0.0009465217590332031, -0.007476806640625, 0.037750244140625, 0.0205078125, 0.01068115234375, -0.0243988037109375, 0.0264129638671875, 0.02484130859375, -0.055328369140625, 0.02874755859375, -0.0026798248291015625, -0.0200958251953125, 0.01751708984375, 0.00806427001953125, 0.040130615234375, -0.039306640625, -0.00937652587890625, 0.0170745849609375, -0.010650634765625, 0.0181884765625, -0.01375579833984375, 0.028106689453125, -0.0533447265625, -0.0310211181640625, 0.01534271240234375, -0.0257720947265625, -0.01184844970703125, 0.005573272705078125, -0.065185546875, 0.1544189453125, 0.0004074573516845703, 0.0272979736328125, 0.032989501953125, 0.05780029296875, -0.044830322265625, 0.0159759521484375, -0.030487060546875, 0.017425537109375, -0.039703369140625, 0.01113128662109375, -0.05291748046875, -0.002166748046875, -0.0152740478515625, 0.0345458984375, 0.06134033203125, 0.00858306884765625, -0.02435302734375, -0.01251983642578125, 0.0330810546875, 0.03643798828125, -0.0033817291259765625, 0.025054931640625, 0.02764892578125, -0.00652313232421875, 0.055511474609375, 0.0054473876953125, 0.043853759765625, -0.01325225830078125, 0.0090484619140625, 0.03759765625, 0.01337432861328125, 0.00971221923828125, 0.00818634033203125, 0.007564544677734375, -0.00127410888671875, -0.005397796630859375, 0.00981903076171875, -0.031829833984375, 0.0245208740234375, 0.0548095703125, 0.0091705322265625, 0.02484130859375, 0.01959228515625, -0.022430419921875, 0.0330810546875, -0.033233642578125, 0.0008783340454101562, -0.006397247314453125, -0.0037479400634765625, -0.00594329833984375, 0.006114959716796875, -0.012481689453125, 0.0284576416015625, -0.003490447998046875, 0.0408935546875, -0.0287628173828125, 0.0103302001953125, -0.0751953125, -0.002613067626953125, 0.0303497314453125, 0.041046142578125, -0.031036376953125, -0.03466796875, 0.007373809814453125, -0.01299285888671875, -0.01465606689453125, 0.0018100738525390625, -0.013641357421875, -0.045257568359375, -0.01163482666015625, 0.011444091796875, 0.0061187744140625, 0.029083251953125, 0.028594970703125, 0.00801849365234375, 0.04217529296875, -0.0650634765625, -0.0013561248779296875, -0.036346435546875, 0.0228729248046875, -0.0074615478515625, 0.0272216796875, 0.00539398193359375, 0.0345458984375, -0.0218505859375, -0.005146026611328125, -0.016510009765625, 0.049468994140625, 0.00792694091796875, 0.0286865234375, -0.01654052734375, -0.0380859375, 0.0283050537109375, 0.00864410400390625, 0.0273895263671875, 0.08184814453125, 0.059661865234375, 0.024688720703125, 0.00801849365234375, 0.0185394287109375, 0.00818634033203125, -0.0239105224609375, 0.0095062255859375, -0.03466796875, 0.0203857421875, 0.0030956268310546875, -0.0071258544921875, 0.00952911376953125, 0.0042724609375, 0.037353515625, -0.036102294921875, 0.03753662109375, -0.018096923828125, -0.06365966796875, 0.00133514404296875, -0.040283203125, 0.1236572265625, -0.0197906494140625, -0.04693603515625, -0.014862060546875, -0.0282440185546875, -0.00501251220703125, 0.005443572998046875, 0.0276031494140625, -0.033721923828125, 0.060394287109375, -0.0006566047668457031, -0.005096435546875, 0.03350830078125, -0.0345458984375, 0.01165008544921875, -0.04638671875, -0.003871917724609375, -0.0253448486328125, -0.0015878677368164062, -0.0019054412841796875, 0.00537109375, 0.0325927734375, 0.0323486328125, 0.04156494140625, -0.0230865478515625, 0.0209503173828125, 0.01702880859375, -0.0386962890625, 0.022003173828125, 0.0256805419921875, -0.058929443359375, -0.002620697021484375, -0.003795623779296875, -0.01103973388671875, 0.024200439453125, 0.01297760009765625, 0.025787353515625, -0.0128326416015625, -0.026824951171875, -0.01258087158203125, 0.0272369384765625, 0.0487060546875, 0.031097412109375, -0.0096435546875, -0.0015954971313476562, 0.003360748291015625, -0.01363372802734375, 0.0330810546875, 0.0257720947265625, -0.0017633438110351562, 0.0289154052734375, -0.048797607421875, -0.0521240234375, -0.01001739501953125, -0.0496826171875, -0.043731689453125, 0.01605224609375, 0.00809478759765625, -0.051422119140625, 0.00402069091796875, -0.006999969482421875, -0.0218353271484375, 0.021759033203125, 0.05731201171875, -0.01258087158203125, -0.06573486328125, 0.042938232421875, 0.01218414306640625, 0.0198822021484375, -0.030670166015625, -0.00365447998046875, 0.0318603515625, 0.00472259521484375, -0.0176544189453125, -0.075927734375, -0.0330810546875, -0.08758544921875, 0.00705718994140625, 0.03826904296875, -0.043121337890625, -0.010101318359375, -0.0660400390625, 0.0178070068359375, 0.037353515625, 0.006061553955078125, -0.052947998046875, 0.01134490966796875, -0.028076171875, 0.0435791015625, 0.0025157928466796875, 0.0251617431640625, -0.014892578125, 0.008880615234375, -0.043212890625, -0.0782470703125, -0.031402587890625, 0.06439208984375, -0.034698486328125, 0.020843505859375, 0.0157623291015625, -0.036468505859375, -0.00015628337860107422, 0.0648193359375, 0.036163330078125, 0.12335205078125, 0.0025482177734375, -0.0117340087890625, -0.03387451171875, 0.019775390625, -0.00453948974609375, -0.0144805908203125, 0.00732421875, -0.0208587646484375, -0.028472900390625, -0.0129852294921875, -0.000017940998077392578, 0.01194000244140625, -0.043365478515625, -0.08984375, 0.0203704833984375, -0.010498046875, -0.0391845703125, -0.044158935546875, 0.0219573974609375, 0.019378662109375, -0.008575439453125, -0.0146636962890625, -0.025787353515625, -0.038238525390625, 0.015625, -0.01216888427734375, 0.027801513671875, 0.0033855438232421875, -0.013885498046875, -0.04132080078125, -0.007568359375, -0.006130218505859375, 0.001979827880859375, 0.00621795654296875, 0.0016107559204101562, 0.02117919921875, 0.01557159423828125, -0.03515625, 0.01161956787109375, -0.013885498046875, -0.00698089599609375, -0.037506103515625, -0.004871368408203125, -0.00829315185546875, 0.0285491943359375, 0.09869384765625, 0.0650634765625, 0.016265869140625, -0.040985107421875, -0.0006604194641113281, -0.0472412109375, 0.0013780593872070312, -0.004863739013671875, 0.0006833076477050781, -0.045684814453125, 0.005764007568359375, 0.0218963623046875, 0.0209503173828125, -0.04266357421875, 0.010345458984375, -0.01459503173828125, -0.0469970703125, 0.01049041748046875, 0.0058746337890625, -0.024688720703125, 0.00980377197265625, 0.1195068359375, -0.06463623046875, 0.005619049072265625, 0.0254058837890625, 0.0029201507568359375, 0.0634765625, 0.0094757080078125, 0.0106201171875, 0.021270751953125, -0.0526123046875, -0.005023956298828125, 0.005889892578125, 0.004322052001953125, -0.01788330078125, -0.0091705322265625, -0.01485443115234375, 0.0158233642578125, 0.006298065185546875, 0.034423828125, -0.01325225830078125, 0.0159912109375, 0.00811767578125, 0.00920867919921875, -0.015350341796875, -0.04962158203125, -0.03436279296875, 0.0206146240234375, -0.022613525390625, 0.0083465576171875, 0.018310546875, -0.038055419921875, 0.02056884765625, 0.00858306884765625, -0.00862884521484375, -0.0382080078125, 0.0179595947265625, -0.0037975311279296875, -0.00337982177734375, 0.01434326171875 ]
bceb0a4e678e5f3dcd740d671dbcfc473fb2fd5a
Wordpress Stackexchange Q: add_filter OO with parameters How to use Oriented Object concept in add_filter or add_action with priority and number of parameters? This is possible without additional parameters: add_filter('wp_get_attachment_image_src', array($this, 'useCDN'); With parameters this is possible? How to? A: It's done the same way you would do in procedural, you need to provide the priority and the number of parameters so you would have; add_filter('wp_get_attachment_image_src', array($this, 'useCDN'), 10, 3); to pass 3 additional parameters to the filter
Q: add_filter OO with parameters How to use Oriented Object concept in add_filter or add_action with priority and number of parameters? This is possible without additional parameters: add_filter('wp_get_attachment_image_src', array($this, 'useCDN'); With parameters this is possible? How to? A: It's done the same way you would do in procedural, you need to provide the priority and the number of parameters so you would have; add_filter('wp_get_attachment_image_src', array($this, 'useCDN'), 10, 3); to pass 3 additional parameters to the filter
wordpress
{ "language": "en", "length": 76, "provenance": "stackexchange_00019.jsonl.gz:468265", "question_score": "4", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/238991" }
[ 0.1231689453125, 0.005573272705078125, 0.036773681640625, -0.0882568359375, 0.03729248046875, -0.01338958740234375, 0.0537109375, -0.0082855224609375, -0.01517486572265625, 0.0269622802734375, -0.030731201171875, -0.00698089599609375, -0.00946807861328125, -0.00441741943359375, -0.009521484375, -0.037933349609375, 0.036224365234375, -0.012115478515625, 0.033111572265625, 0.0011310577392578125, 0.01194000244140625, 0.0140380859375, 0.01551055908203125, 0.017669677734375, 0.0260772705078125, -0.0305023193359375, 0.0026721954345703125, -0.0259857177734375, 0.022125244140625, 0.004718780517578125, 0.018402099609375, -0.021148681640625, 0.0243377685546875, 0.0017566680908203125, -0.00968170166015625, 0.0170745849609375, 0.012176513671875, -0.01204681396484375, -0.00344085693359375, 0.008056640625, 0.0396728515625, -0.006763458251953125, -0.0465087890625, 0.039886474609375, -0.042327880859375, -0.057708740234375, 0.0560302734375, 0.00647735595703125, 0.005817413330078125, -0.0098419189453125, 0.0245819091796875, -0.00478363037109375, 0.038818359375, -0.0367431640625, -0.0113677978515625, 0.0024890899658203125, -0.0194549560546875, 0.0848388671875, 0.0246734619140625, -0.0173187255859375, -0.053619384765625, 0.0377197265625, 0.00798797607421875, -0.008148193359375, 0.040618896484375, 0.0125885009765625, 0.0173797607421875, 0.01308441162109375, -0.087890625, 0.018035888671875, 0.053375244140625, -0.08270263671875, -0.006195068359375, -0.00429534912109375, 0.01276397705078125, -0.034942626953125, -0.009307861328125, -0.023284912109375, 0.03521728515625, 0.0181121826171875, -0.01297760009765625, 0.00640106201171875, -0.0526123046875, 0.041778564453125, -0.0075836181640625, 0.06719970703125, -0.015533447265625, -0.034912109375, -0.01561737060546875, -0.008636474609375, -0.02520751953125, -0.025604248046875, 0.00719451904296875, -0.015533447265625, -0.03265380859375, -0.01898193359375, -0.0028667449951171875, -0.0164337158203125, 0.01029205322265625, 0.023406982421875, 0.0186309814453125, -0.06219482421875, 0.074462890625, -0.03302001953125, -0.01543426513671875, 0.0009036064147949219, 0.018218994140625, 0.060882568359375, 0.047607421875, 0.0335693359375, -0.00603485107421875, 0.0360107421875, 0.0440673828125, 0.00527191162109375, -0.00707244873046875, -0.0265045166015625, -0.0025634765625, 0.021942138671875, 0.0024318695068359375, -0.00389862060546875, -0.031463623046875, -0.0260162353515625, 0.007080078125, 0.005794525146484375, 0.034576416015625, -0.0033111572265625, -0.027252197265625, 0.0179901123046875, 0.00634002685546875, -0.017730712890625, -0.01328277587890625, 0.0499267578125, 0.023590087890625, -0.021728515625, -0.027862548828125, 0.007373809814453125, 0.022064208984375, 0.004486083984375, -0.0017118453979492188, -0.01499176025390625, 0.06158447265625, -0.005352020263671875, -0.035919189453125, 0.047637939453125, 0.004993438720703125, -0.0165252685546875, 0.0084381103515625, 0.03759765625, -0.00969696044921875, -0.043731689453125, 0.046844482421875, -0.027557373046875, 0.0036258697509765625, 0.0167999267578125, -0.01129913330078125, 0.03521728515625, 0.0025653839111328125, -0.0039520263671875, -0.016998291015625, -0.016387939453125, 0.005214691162109375, 0.00664520263671875, 0.0296478271484375, -0.0204010009765625, -0.01348114013671875, -0.0133209228515625, -0.033538818359375, 0.00231170654296875, 0.00787353515625, 0.043914794921875, -0.04473876953125, 0.0159149169921875, 0.0158843994140625, -0.0160369873046875, -0.0310211181640625, 0.000028192996978759766, -0.01611328125, 0.019256591796875, 0.0008234977722167969, 0.0266571044921875, 0.0017919540405273438, -0.04815673828125, 0.02191162109375, -0.0007729530334472656, -0.0728759765625, 0.04339599609375, -0.010009765625, 0.05718994140625, 0.032440185546875, -0.003162384033203125, 0.048126220703125, 0.00504302978515625, -0.0272979736328125, -0.0084075927734375, -0.037872314453125, -0.0035152435302734375, 0.01202392578125, 0.00897979736328125, -0.0269775390625, 0.03692626953125, 0.03631591796875, -0.003879547119140625, 0.0182647705078125, -0.0129547119140625, 0.02679443359375, -0.017059326171875, 0.0026340484619140625, 0.01435089111328125, -0.038543701171875, 0.017852783203125, 0.0311279296875, 0.0023288726806640625, -0.056396484375, 0.06854248046875, 0.0219879150390625, -0.0187225341796875, 0.007556915283203125, 0.02801513671875, 0.0084991455078125, 0.0283660888671875, 0.00036072731018066406, -0.0176544189453125, -0.0133514404296875, -0.01198577880859375, 0.08612060546875, 0.003566741943359375, 0.01280975341796875, -0.01280975341796875, 0.0836181640625, 0.04119873046875, -0.07183837890625, -0.02081298828125, 0.01457977294921875, 0.023406982421875, 0.002086639404296875, -0.00064849853515625, -0.0124053955078125, -0.08453369140625, 0.0072174072265625, 0.0482177734375, 0.022613525390625, 0.0755615234375, 0.006500244140625, 0.03887939453125, 0.08447265625, -0.0192108154296875, 0.006694793701171875, 0.014129638671875, -0.033905029296875, -0.0325927734375, -0.0074310302734375, -0.0233917236328125, 0.03436279296875, -0.07269287109375, -0.02056884765625, 0.044281005859375, -0.0261383056640625, -0.044464111328125, 0.01059722900390625, 0.0024356842041015625, 0.01406097412109375, 0.006694793701171875, -0.0069732666015625, 0.0173797607421875, -0.0023174285888671875, 0.013824462890625, 0.00969696044921875, 0.00112152099609375, -0.018096923828125, 0.01511383056640625, 0.023284912109375, -0.0306243896484375, -0.00879669189453125, -0.004528045654296875, -0.08746337890625, -0.004207611083984375, 0.007289886474609375, 0.052001953125, -0.05230712890625, -0.05145263671875, -0.009857177734375, 0.040252685546875, 0.032196044921875, -0.0233001708984375, -0.01226043701171875, 0.03851318359375, 0.0256500244140625, -0.0239715576171875, 0.00274658203125, -0.0106353759765625, 0.046966552734375, -0.03369140625, -0.035064697265625, 0.0158843994140625, -0.039306640625, -0.044921875, -0.0467529296875, -0.006725311279296875, 0.0219573974609375, -0.039886474609375, -0.0203399658203125, 0.045257568359375, -0.023345947265625, 0.007457733154296875, 0.00269317626953125, -0.00579833984375, -0.006427764892578125, 0.0218963623046875, 0.011962890625, 0.0025959014892578125, -0.031494140625, 0.0338134765625, 0.00693511962890625, 0.012969970703125, 0.0083465576171875, -0.02642822265625, 0.0034942626953125, 0.0090179443359375, -0.0244293212890625, -0.0210723876953125, 0.042388916015625, -0.047271728515625, -0.01345062255859375, 0.005268096923828125, -0.036651611328125, -0.0160980224609375, 0.040557861328125, -0.0206451416015625, -0.0306854248046875, 0.0003211498260498047, -0.0008559226989746094, -0.023895263671875, -0.0197906494140625, 0.01055908203125, -0.0048675537109375, 0.004474639892578125, 0.0030517578125, 0.01070404052734375, 0.0016574859619140625, -0.013153076171875, 0.035491943359375, -0.005741119384765625, 0.015594482421875, 0.0225830078125, 0.0173492431640625, -0.049957275390625, -0.0162506103515625, -0.026214599609375, 0.0372314453125, 0.022857666015625, -0.0223846435546875, 0.027801513671875, -0.0200042724609375, 0.00156402587890625, -0.009307861328125, 0.005123138427734375, 0.0166778564453125, -0.0185546875, -0.009368896484375, -0.05621337890625, 0.01544952392578125, -0.00243377685546875, 0.0030689239501953125, -0.005115509033203125, -0.0248870849609375, -0.007335662841796875, -0.0194549560546875, 0.037322998046875, -0.0302276611328125, 0.02081298828125, -0.049835205078125, -0.01428985595703125, 0.0157012939453125, -0.00803375244140625, 0.0027256011962890625, 0.04815673828125, -0.004131317138671875, -0.035064697265625, 0.0182952880859375, -0.00237274169921875, -0.00273895263671875, 0.013519287109375, -0.0084075927734375, 0.008636474609375, -0.035369873046875, 0.0390625, 0.0028743743896484375, 0.054779052734375, -0.0474853515625, -0.035675048828125, -0.039642333984375, 0.08245849609375, -0.00693511962890625, -0.044921875, -0.007640838623046875, 0.035858154296875, -0.04119873046875, -0.0614013671875, 0.054351806640625, -0.028533935546875, -0.033782958984375, -0.0235748291015625, -0.0230255126953125, -0.035491943359375, -0.0007252693176269531, -0.06805419921875, -0.03271484375, -0.045166015625, 0.033233642578125, 0.0036487579345703125, -0.0135650634765625, 0.030029296875, -0.03173828125, 0.02484130859375, -0.04827880859375, 0.0113983154296875, -0.10882568359375, -0.028564453125, 0.00726318359375, 0.09521484375, -0.0265045166015625, 0.029876708984375, -0.05255126953125, 0.057464599609375, 0.0041656494140625, 0.05462646484375, 0.000029265880584716797, 0.01396942138671875, 0.0221099853515625, -0.035858154296875, 0.00853729248046875, -0.035003662109375, 0.004177093505859375, -0.03973388671875, -0.03509521484375, -0.03497314453125, -0.030029296875, 0.03155517578125, -0.01494598388671875, -0.0259246826171875, -0.044464111328125, -0.04803466796875, -0.018035888671875, 0.0056304931640625, -0.0158233642578125, 0.002262115478515625, -0.0506591796875, -0.01479339599609375, 0.01195526123046875, 0.0035495758056640625, -0.004848480224609375, 0.0135040283203125, 0.0679931640625, 0.0189666748046875, -0.0133819580078125, -0.034149169921875, -0.00797271728515625, 0.0031948089599609375, -0.0201263427734375, 0.0237274169921875, -0.00930023193359375, -0.0102996826171875, 0.0263824462890625, -0.022186279296875, 0.0082244873046875, -0.05279541015625, 0.0270538330078125, 0.0019092559814453125, -0.004062652587890625, 0.01348876953125, 0.01214599609375, 0.059844970703125, -0.003925323486328125, -0.03125, -0.007251739501953125, -0.0205230712890625, 0.0280303955078125, -0.02203369140625, 0.05517578125, -0.00585174560546875, -0.036895751953125, 0.004131317138671875, -0.01837158203125, 0.0166473388671875, 0.03192138671875, -0.0101470947265625, 0.0024890899658203125, 0.01293182373046875, 0.0347900390625, 0.058349609375, 0.051177978515625, -0.0176544189453125, 0.06683349609375, 0.0343017578125, 0.0020008087158203125, 0.0011844635009765625, -0.00812530517578125, 0.0328369140625, -0.0009245872497558594, -0.01934814453125, 0.0152587890625, -0.020538330078125, -0.012420654296875, -0.002742767333984375, -0.060821533203125, 0.0067901611328125, 0.03924560546875, -0.0260772705078125, 0.0257720947265625, -0.07891845703125, 0.0279083251953125, -0.035980224609375, 0.035125732421875, 0.02374267578125, -0.0153656005859375, 0.02899169921875, 0.003559112548828125, 0.005367279052734375, 0.01235198974609375, -0.006015777587890625, -0.025146484375, -0.004894256591796875, -0.0111083984375, 0.01238250732421875, 0.036163330078125, 0.008087158203125, -0.01422882080078125, 0.0675048828125, -0.0196685791015625, -0.0008745193481445312, -0.0106353759765625, 0.024566650390625, -0.023223876953125, -0.01495361328125, 0.0232391357421875, -0.0345458984375, -0.019561767578125, -0.01904296875, 0.032012939453125, 0.0008106231689453125, 0.01129913330078125, 0.0087432861328125, -0.0142364501953125, 0.0251922607421875, -0.0057220458984375, -0.0012454986572265625, -0.0104827880859375, 0.0213775634765625, -0.00214385986328125, 0.00786590576171875, -0.0158538818359375, -0.00948333740234375, -0.01065826416015625, -0.0390625, -0.02459716796875, -0.0338134765625, 0.0139007568359375, -0.0185699462890625, -0.0196075439453125, 0.04339599609375, -0.007671356201171875, 0.0277099609375, -0.01049041748046875, -0.0141754150390625, 0.044464111328125, 0.0025691986083984375, 0.04815673828125, 0.00342559814453125, 0.00853729248046875, -0.021575927734375, -0.034088134765625, -0.0455322265625, -0.057403564453125, 0.001407623291015625, -0.0325927734375, 0.0391845703125, -0.05035400390625, 0.0411376953125, -0.0164642333984375, 0.05377197265625, 0.0181121826171875, 0.01409149169921875, -0.051422119140625, 0.04547119140625, 0.0259246826171875, 0.02081298828125, -0.018096923828125, 0.045745849609375, 0.01154327392578125, -0.03277587890625, -0.056182861328125, -0.00039577484130859375, 0.006793975830078125, -0.0743408203125, -0.01331329345703125, 0.00771331787109375, -0.06536865234375, 0.0123748779296875, 0.0167083740234375, -0.0035076141357421875, 0.05902099609375, -0.04876708984375, -0.015472412109375, -0.02056884765625, 0.038299560546875, -0.07904052734375, 0.025146484375, 0.01337432861328125, -0.023406982421875, 0.03643798828125, -0.0153350830078125, 0.03692626953125, 0.00449371337890625, -0.040496826171875, 0.006561279296875, 0.025360107421875, -0.0109100341796875, 0.0169219970703125, 0.058807373046875, 0.01035308837890625, 0.04681396484375, 0.038848876953125, 0.03271484375, 0.0199432373046875, 0.032318115234375, 0.030303955078125, -0.028533935546875, 0.042327880859375, -0.0004935264587402344, -0.0198822021484375, 0.01068115234375, -0.03753662109375, 0.056549072265625, 0.00948333740234375, 0.07012939453125, -0.04248046875, 0.0264739990234375, 0.00937652587890625, -0.020416259765625, 0.06744384765625, 0.02392578125, 0.01324462890625, -0.006317138671875, -0.007434844970703125, 0.00015175342559814453, -0.0018053054809570312, -0.0035552978515625, -0.005535125732421875, -0.00772857666015625, -0.0156402587890625, -0.03533935546875, -0.00909423828125, -0.0001264810562133789, -0.007343292236328125, 0.0205078125, -0.0288543701171875, 0.005828857421875, 0.03277587890625, -0.03472900390625, -0.007053375244140625, -0.0230255126953125, 0.0014047622680664062, -0.0340576171875, -0.0101470947265625, 0.01534271240234375, -0.034759521484375, 0.040740966796875, 0.042877197265625, -0.005428314208984375, -0.003437042236328125, 0.016998291015625, -0.03546142578125, 0.0017271041870117188, -0.0225372314453125, 0.0014190673828125, 0.062164306640625, -0.09466552734375, 0.011688232421875, -0.04656982421875, 0.053955078125, -0.00897979736328125, -0.01273345947265625, 0.01104736328125, 0.0153045654296875, -0.025177001953125, 0.0285797119140625, 0.020599365234375, -0.0208892822265625, 0.0084991455078125, -0.006938934326171875, -0.06597900390625, -0.087646484375, 0.005176544189453125, -0.1124267578125, 0.00531005859375, -0.003688812255859375, -0.059661865234375, 0.05059814453125, 0.00705718994140625, 0.01446533203125, -0.00971221923828125, 0.020843505859375, -0.0118408203125, 0.0024394989013671875, -0.027069091796875, 0.0219879150390625, -0.043792724609375, 0.016021728515625, -0.0582275390625, 0.02227783203125, -0.0302581787109375, 0.0204620361328125, 0.0484619140625, 0.0037078857421875, -0.036529541015625, -0.037933349609375, 0.03277587890625, 0.04754638671875, 0.02392578125, 0.0277557373046875, 0.006122589111328125, -0.017578125, 0.0264739990234375, -0.004985809326171875, 0.030487060546875, -0.03826904296875, 0.01236724853515625, 0.021636962890625, -0.0014104843139648438, -0.0113983154296875, 0.0055999755859375, 0.06768798828125, -0.050750732421875, -0.00749969482421875, 0.0499267578125, -0.049591064453125, 0.02581787109375, 0.0271759033203125, 0.0132293701171875, 0.00811767578125, -0.02923583984375, -0.0004048347473144531, 0.03411865234375, -0.0027027130126953125, 0.0243682861328125, 0.07562255859375, 0.021575927734375, 0.01213836669921875, 0.01346588134765625, 0.027099609375, -0.0010251998901367188, 0.005786895751953125, 0.016571044921875, 0.027374267578125, 0.0159149169921875, -0.0110931396484375, 0.004581451416015625, 0.039825439453125, 0.0254669189453125, -0.019805908203125, -0.012603759765625, -0.00010824203491210938, 0.00048041343688964844, 0.035552978515625, -0.01213836669921875, 0.050567626953125, -0.0452880859375, -0.0279083251953125, -0.0782470703125, 0.0189208984375, 0.0176239013671875, 0.01270294189453125, -0.0200042724609375, -0.0234527587890625, -0.0322265625, 0.023406982421875, -0.0024662017822265625, -0.007198333740234375, 0.00704193115234375, 0.0633544921875, 0.00955963134765625, 0.031494140625, -0.0762939453125, -0.0208740234375, 0.0001329183578491211, -0.002532958984375, -0.0084686279296875, -0.0019435882568359375, -0.0095062255859375, -0.00566864013671875, -0.0301361083984375, 0.0218505859375, 0.033294677734375, 0.025390625, 0.0238037109375, 0.0028667449951171875, -0.01531219482421875, 0.0170440673828125, 0.05694580078125, -0.0293426513671875, -0.01090240478515625, -0.034332275390625, 0.0286865234375, 0.05194091796875, 0.0104522705078125, -0.00577545166015625, -0.031890869140625, 0.09490966796875, -0.0206451416015625, 0.010986328125, 0.0008993148803710938, -0.042083740234375, 0.038330078125, -0.01446533203125, 0.059051513671875, -0.005901336669921875, -0.0731201171875, -0.0212860107421875, -0.0372314453125, -0.043212890625, 0.02911376953125, 0.040191650390625, -0.027099609375, 0.0291748046875, -0.004474639892578125, -0.0305328369140625, -0.00595855712890625, 0.0134124755859375, 0.0203399658203125, 0.004058837890625, 0.013397216796875, -0.0095062255859375, -0.004878997802734375, 0.00922393798828125, 0.013336181640625, -0.00518798828125, 0.0222930908203125, 0.06781005859375, -0.007068634033203125, 0.01021575927734375, 0.0266265869140625, -0.00264739990234375, 0.0239105224609375, 0.0259552001953125, 0.0017614364624023438, -0.00494384765625, -0.00046133995056152344, -0.017608642578125, 0.0247802734375, -0.0007061958312988281, 0.040557861328125, -0.043426513671875, -0.0178375244140625, 0.0077362060546875, 0.0167999267578125, -0.0122528076171875, 0.07305908203125, -0.015716552734375, -0.0157470703125, -0.0640869140625, -0.050018310546875, 0.054595947265625, 0.0372314453125, 0.0234375, 0.0010013580322265625, 0.01277923583984375, 0.01389312744140625, 0.037017822265625, 0.0212249755859375, 0.05023193359375, 0.03350830078125, -0.0679931640625, 0.0012350082397460938, -0.0162506103515625, -0.016998291015625, 0.01369476318359375, -0.002414703369140625, 0.0090179443359375, 0.0003142356872558594, -0.01363372802734375, -0.01461029052734375, 0.0120697021484375, 0.037384033203125, -0.01198577880859375, 0.002971649169921875, 0.003875732421875, -0.01555633544921875, -0.042938232421875, 0.00965118408203125, -0.029815673828125, -0.044036865234375, -0.02740478515625, -0.019500732421875, -0.0182952880859375, -0.08697509765625, -0.033294677734375, -0.0229339599609375, 0.047821044921875, 0.02117919921875, -0.041778564453125, 0.005931854248046875, -0.0031719207763671875, 0.0013208389282226562, 0.0224761962890625, -0.0164947509765625, 0.01494598388671875, 0.021392822265625, -0.00838470458984375, -0.02911376953125, -0.0128631591796875, 0.026824951171875, 0.0083465576171875, 0.030059814453125, 0.0404052734375, -0.007228851318359375, 0.025115966796875, 0.0309906005859375, 0.003978729248046875, 0.08026123046875, -0.0960693359375, -0.0243072509765625, -0.01152801513671875, 0.0178375244140625, -0.02374267578125, -0.022125244140625, 0.027862548828125, -0.017669677734375, -0.031707763671875, -0.014495849609375, -0.01678466796875, -0.01296234130859375, -0.04876708984375, -0.04791259765625, 0.032806396484375, 0.01067352294921875, -0.0243682861328125, -0.043853759765625, 0.01212310791015625, -0.0009126663208007812, 0.0178680419921875, -0.014404296875, -0.006229400634765625, -0.031341552734375, 0.01910400390625, 0.013519287109375, -0.0279541015625, 0.03314208984375, 0.0012178421020507812, -0.0306854248046875, 0.026214599609375, 0.02874755859375, -0.01361083984375, 0.0284881591796875, -0.03765869140625, 0.08367919921875, 0.05108642578125, -0.004695892333984375, 0.0256805419921875, 0.026519775390625, -0.049072265625, -0.0174407958984375, -0.0030117034912109375, -0.02130126953125, 0.040374755859375, 0.08062744140625, 0.07708740234375, 0.02191162109375, -0.06964111328125, 0.01418304443359375, 0.0122528076171875, -0.024261474609375, -0.00862884521484375, 0.021697998046875, -0.048919677734375, -0.0300750732421875, -0.007476806640625, 0.0234222412109375, 0.0010051727294921875, -0.00278472900390625, -0.0017595291137695312, -0.033538818359375, 0.040283203125, 0.0059967041015625, -0.03277587890625, -0.00844573974609375, -0.01078033447265625, -0.005107879638671875, -0.004299163818359375, -0.0157012939453125, 0.021209716796875, -0.022369384765625, 0.0293426513671875, -0.0235595703125, 0.0029544830322265625, -0.0179290771484375, 0.0139617919921875, 0.0024585723876953125, 0.028076171875, 0.000016450881958007812, 0.0146636962890625, -0.0294342041015625, 0.0132598876953125, 0.01953125, -0.005252838134765625, -0.0350341796875, 0.04302978515625, 0.007007598876953125, 0.0859375, -0.02569580078125, -0.0113983154296875, -0.0234375, 0.005802154541015625, 0.00445556640625, 0.0035572052001953125, 0.05584716796875, -0.033721923828125, -0.00846099853515625, -0.00696563720703125, -0.05413818359375, -0.0467529296875, 0.0136871337890625, 0.0186920166015625, -0.01904296875, 0.0271453857421875 ]
e2c080804d29c34405b3c0139dc7131de13ccb93
Wordpress Stackexchange Q: How to force stylesheet to load before anything else in header? I need a stylesheet to be added to the header before anything else. That means before any styles or scripts that are automatically added by any of the plugins I'm also using. I figured I could add this stylesheet with wp_enqueue_script, but I'm not sure how to force it to be loaded before other stylesheets or scripts that I do not have control over. Thanks. *This is for a theme which I need to add a stylesheet to. This is not for a plugin I'm building. A: The tag that you want to call to execute your function is the wp_head() with a priority of 1. In your child theme's functions.php file, add the following: add_action( 'wp_head', 'wpse_239006_style', 1 ); function wpse_239006_style() { wp_enqueue_script(); }
Q: How to force stylesheet to load before anything else in header? I need a stylesheet to be added to the header before anything else. That means before any styles or scripts that are automatically added by any of the plugins I'm also using. I figured I could add this stylesheet with wp_enqueue_script, but I'm not sure how to force it to be loaded before other stylesheets or scripts that I do not have control over. Thanks. *This is for a theme which I need to add a stylesheet to. This is not for a plugin I'm building. A: The tag that you want to call to execute your function is the wp_head() with a priority of 1. In your child theme's functions.php file, add the following: add_action( 'wp_head', 'wpse_239006_style', 1 ); function wpse_239006_style() { wp_enqueue_script(); } A: To add stylesheet before other stylesheets, use wp_register_style() instead of wp_enqueue_style(), and then manually add your style to be first at queue: wp_register_style('handle', get_template_directory_uri()."/custom.css"); array_unshift(wp_styles()->queue, 'handle');
wordpress
{ "language": "en", "length": 164, "provenance": "stackexchange_00019.jsonl.gz:468267", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/239006" }
[ 0.0109100341796875, 0.016693115234375, -0.061248779296875, -0.038726806640625, 0.0127105712890625, -0.036895751953125, -0.00876617431640625, 0.00679779052734375, -0.03668212890625, -0.004352569580078125, -0.0645751953125, 0.045989990234375, -0.04510498046875, 0.01197052001953125, 0.032196044921875, -0.07305908203125, 0.04193115234375, -0.041229248046875, 0.01561737060546875, 0.0003685951232910156, 0.00710296630859375, 0.0316162109375, 0.02557373046875, 0.0157928466796875, -0.006671905517578125, -0.009307861328125, 0.054412841796875, 0.0172576904296875, -0.00696563720703125, -0.0008473396301269531, 0.01215362548828125, -0.018646240234375, 0.0104522705078125, 0.05987548828125, -0.042510986328125, 0.0148162841796875, 0.004688262939453125, 0.021270751953125, 0.0112762451171875, 0.039520263671875, 0.01042938232421875, 0.005184173583984375, -0.00884246826171875, 0.06048583984375, -0.0283966064453125, -0.03619384765625, -0.00018417835235595703, -0.023101806640625, -0.02880859375, -0.0005731582641601562, 0.0157623291015625, 0.02117919921875, 0.041595458984375, -0.00923919677734375, -0.00012362003326416016, 0.00029397010803222656, -0.044586181640625, 0.034881591796875, 0.0007882118225097656, 0.01123809814453125, 0.0126800537109375, 0.0109405517578125, 0.01064300537109375, -0.0018100738525390625, 0.0015554428100585938, 0.0107421875, -0.002166748046875, 0.0137176513671875, -0.053497314453125, -0.001728057861328125, 0.032745361328125, -0.049652099609375, -0.01500701904296875, -0.0280914306640625, -0.02667236328125, 0.0020389556884765625, 0.013702392578125, -0.0149993896484375, 0.0229339599609375, -0.017913818359375, 0.007617950439453125, 0.003208160400390625, -0.021331787109375, -0.05108642578125, 0.03204345703125, -0.018280029296875, -0.0135955810546875, -0.00902557373046875, -0.0280914306640625, -0.04498291015625, -0.037628173828125, -0.005634307861328125, -0.02435302734375, -0.03546142578125, -0.038482666015625, -0.0220794677734375, 0.021728515625, 0.06787109375, -0.02423095703125, 0.0257110595703125, -0.0252532958984375, -0.03240966796875, 0.033966064453125, -0.047149658203125, -0.020263671875, 0.016510009765625, -0.0164947509765625, -0.028533935546875, 0.0022430419921875, 0.038970947265625, -0.00469970703125, -0.035858154296875, 0.0172882080078125, 0.0245819091796875, -0.031707763671875, -0.0170135498046875, -0.00821685791015625, -0.0220489501953125, -0.025238037109375, -0.01947021484375, 0.01364898681640625, 0.0292205810546875, -0.011566162109375, -0.030731201171875, 0.0005764961242675781, -0.0260772705078125, -0.0203094482421875, -0.0202178955078125, 0.0173492431640625, -0.0205230712890625, 0.0006380081176757812, 0.01490020751953125, 0.01021575927734375, 0.027191162109375, -0.00516510009765625, 0.0015668869018554688, 0.0259246826171875, -0.036346435546875, -0.035430908203125, 0.0233001708984375, -0.0194244384765625, -0.04296875, -0.02459716796875, -0.0268402099609375, -0.0003459453582763672, 0.0002932548522949219, 0.0130462646484375, 0.0241851806640625, -0.0169525146484375, -0.040069580078125, 0.043609619140625, -0.036529541015625, 0.047271728515625, -0.0042877197265625, -0.01422882080078125, -0.017181396484375, 0.002391815185546875, -0.00286102294921875, -0.0222625732421875, -0.0103912353515625, -0.071533203125, 0.004119873046875, 0.032989501953125, -0.058837890625, -0.04583740234375, 0.00289154052734375, -0.00720977783203125, -0.0019779205322265625, 0.027618408203125, 0.0005097389221191406, -0.02203369140625, -0.010955810546875, 0.0310211181640625, 0.00789642333984375, -0.00963592529296875, 0.03753662109375, 0.027587890625, -0.0142974853515625, 0.0287628173828125, 0.0229644775390625, -0.02392578125, -0.02655029296875, 0.062286376953125, -0.048828125, -0.0257110595703125, 0.0003597736358642578, 0.0157318115234375, 0.05072021484375, 0.006633758544921875, 0.03955078125, 0.004596710205078125, -0.00020360946655273438, -0.007251739501953125, -0.03607177734375, 0.00740814208984375, -0.01068878173828125, 0.02105712890625, 0.0093536376953125, 0.0028839111328125, 0.00011980533599853516, 0.0012521743774414062, 0.00411224365234375, 0.011627197265625, -0.0169677734375, 0.0037994384765625, -0.0267181396484375, 0.000583648681640625, 0.02276611328125, 0.01166534423828125, 0.0162353515625, -0.01070404052734375, -0.0252532958984375, 0.03887939453125, -0.07781982421875, -0.029510498046875, 0.02093505859375, -0.00807952880859375, 0.072265625, 0.01186370849609375, 0.0479736328125, 0.0205078125, -0.0386962890625, 0.0232391357421875, -0.02606201171875, -0.0006427764892578125, 0.0287933349609375, -0.0323486328125, 0.0106201171875, 0.0028476715087890625, 0.0266876220703125, 0.0025386810302734375, 0.0204315185546875, 0.041290283203125, 0.0655517578125, -0.0219879150390625, -0.0009675025939941406, -0.002025604248046875, -0.0181884765625, 0.0099029541015625, 0.0271148681640625, 0.025054931640625, 0.0293121337890625, 0.009552001953125, 0.05364990234375, 0.0198516845703125, -0.0031566619873046875, 0.0196075439453125, 0.006252288818359375, 0.024322509765625, 0.00818634033203125, 0.016204833984375, -0.0168609619140625, 0.030517578125, -0.07073974609375, 0.0511474609375, 0.0273284912109375, -0.0030345916748046875, -0.032196044921875, -0.017059326171875, -0.00157928466796875, 0.0291290283203125, 0.024200439453125, -0.052886962890625, 0.03216552734375, 0.0521240234375, -0.01971435546875, 0.0123748779296875, -0.0131072998046875, -0.016754150390625, 0.00609588623046875, 0.0294952392578125, -0.047576904296875, 0.004711151123046875, 0.0428466796875, 0.0426025390625, -0.028076171875, -0.0198211669921875, -0.012115478515625, -0.01222991943359375, 0.0203857421875, -0.006168365478515625, -0.0038280487060546875, -0.027618408203125, 0.001552581787109375, -0.0064849853515625, -0.03961181640625, 0.0236663818359375, 0.04803466796875, 0.00502777099609375, -0.00437164306640625, 0.0181427001953125, 0.022796630859375, -0.0175323486328125, 0.0307769775390625, 0.0094451904296875, -0.027374267578125, 0.00370025634765625, -0.0036983489990234375, 0.0233612060546875, -0.0248870849609375, 0.01898193359375, 0.045196533203125, -0.0121307373046875, 0.004032135009765625, 0.00399017333984375, -0.014862060546875, 0.007335662841796875, -0.01904296875, -0.0239105224609375, -0.006015777587890625, -0.047821044921875, 0.0182647705078125, 0.04144287109375, 0.06591796875, 0.021392822265625, -0.0401611328125, 0.014434814453125, 0.053802490234375, -0.04791259765625, -0.07220458984375, 0.007476806640625, -0.045623779296875, 0.0236358642578125, -0.0235748291015625, -0.014068603515625, -0.021392822265625, -0.01277923583984375, 0.00753021240234375, -0.005466461181640625, -0.0230865478515625, -0.0207366943359375, -0.06329345703125, -0.0518798828125, -0.03204345703125, 0.0025615692138671875, -0.00919342041015625, 0.006011962890625, 0.02423095703125, -0.0147552490234375, -0.059051513671875, -0.0231170654296875, -0.0174102783203125, -0.00510406494140625, -0.006008148193359375, 0.0289154052734375, -0.03240966796875, 0.01332855224609375, 0.006450653076171875, -0.01806640625, 0.034423828125, -0.016082763671875, -0.005401611328125, -0.05474853515625, -0.07098388671875, -0.0430908203125, 0.06036376953125, 0.05609130859375, -0.055694580078125, 0.015777587890625, -0.08160400390625, -0.04815673828125, -0.0025119781494140625, -0.055023193359375, -0.0010595321655273438, 0.0279693603515625, 0.0019521713256835938, -0.0268096923828125, 0.0175018310546875, -0.003452301025390625, -0.0079345703125, 0.0068817138671875, -0.0201263427734375, 0.049591064453125, -0.01027679443359375, -0.002361297607421875, -0.0224151611328125, 0.052581787109375, -0.004016876220703125, 0.00567626953125, 0.0144805908203125, 0.0011777877807617188, -0.03387451171875, 0.03778076171875, -0.0654296875, -0.0175628662109375, 0.0151214599609375, -0.01309967041015625, 0.061553955078125, -0.044189453125, -0.0203704833984375, -0.0148773193359375, 0.08642578125, -0.04083251953125, -0.018280029296875, 0.00372314453125, 0.0186309814453125, -0.05047607421875, -0.062744140625, -0.03424072265625, -0.002628326416015625, -0.09539794921875, 0.0192108154296875, -0.0162506103515625, -0.01922607421875, -0.0307464599609375, 0.01302337646484375, -0.0595703125, -0.03875732421875, 0.0163421630859375, 0.006061553955078125, -0.051910400390625, 0.058319091796875, -0.078125, 0.04248046875, -0.0129852294921875, -0.01145172119140625, -0.10052490234375, -0.011474609375, -0.06243896484375, 0.0714111328125, 0.0190277099609375, 0.0006265640258789062, -0.0161590576171875, 0.0511474609375, 0.01474761962890625, 0.0347900390625, 0.0234222412109375, 0.0013723373413085938, 0.0208892822265625, -0.0254364013671875, 0.014617919921875, -0.02972412109375, -0.015533447265625, 0.0279541015625, -0.019256591796875, 0.0821533203125, 0.00670623779296875, 0.004161834716796875, 0.047607421875, -0.03741455078125, 0.0034332275390625, -0.0164642333984375, 0.005176544189453125, 0.01983642578125, 0.009063720703125, -0.006694793701171875, -0.0233001708984375, 0.00028252601623535156, 0.018585205078125, 0.0212554931640625, 0.010009765625, -0.01142120361328125, 0.030975341796875, 0.034698486328125, -0.0216064453125, 0.047821044921875, 0.025604248046875, 0.041351318359375, -0.00257110595703125, 0.02252197265625, -0.01739501953125, -0.041534423828125, 0.09405517578125, 0.005184173583984375, 0.00966644287109375, 0.01239013671875, 0.0753173828125, 0.014190673828125, -0.04827880859375, 0.047821044921875, 0.0182952880859375, -0.0748291015625, 0.0020999908447265625, 0.00518035888671875, -0.00099945068359375, 0.018280029296875, -0.028778076171875, 0.031951904296875, -0.052490234375, -0.0171356201171875, 0.021636962890625, -0.0206756591796875, 0.03240966796875, 0.047515869140625, 0.0631103515625, -0.0139617919921875, -0.0016651153564453125, 0.016265869140625, 0.000583648681640625, -0.00428009033203125, -0.01160430908203125, -0.016448974609375, 0.024169921875, -0.019317626953125, -0.0107574462890625, 0.0175628662109375, -0.02301025390625, 0.07965087890625, 0.0102386474609375, -0.01348114013671875, -0.03704833984375, -0.01617431640625, 0.06842041015625, -0.0157470703125, 0.0125885009765625, 0.04779052734375, -0.0194854736328125, -0.02239990234375, -0.0399169921875, -0.05267333984375, -0.00962066650390625, -0.05712890625, 0.02642822265625, 0.0224151611328125, -0.03759765625, 0.0013666152954101562, -0.0200347900390625, 0.0173492431640625, -0.035919189453125, 0.0034847259521484375, 0.00995635986328125, -0.001499176025390625, -0.004222869873046875, 0.0170135498046875, 0.0266876220703125, 0.0301513671875, -0.04571533203125, 0.049041748046875, -0.05029296875, 0.021728515625, -0.016571044921875, 0.037078857421875, -0.04949951171875, -0.050018310546875, 0.0792236328125, -0.0172271728515625, -0.0198974609375, 0.0189208984375, 0.031829833984375, -0.018646240234375, -0.01544952392578125, -0.00017499923706054688, 0.0225830078125, 0.031829833984375, -0.01224517822265625, 0.0268096923828125, 0.005596160888671875, 0.059661865234375, 0.0159912109375, -0.0035495758056640625, 0.01324462890625, 0.0009160041809082031, -0.0083465576171875, -0.0107879638671875, -0.01096343994140625, -0.012939453125, -0.017791748046875, 0.0009512901306152344, -0.008575439453125, -0.01447296142578125, -0.02813720703125, 0.04351806640625, -0.0233612060546875, -0.004734039306640625, -0.0494384765625, 0.031005859375, -0.0008749961853027344, 0.01453399658203125, -0.01152801513671875, 0.0086669921875, -0.045166015625, -0.027923583984375, -0.065185546875, -0.065185546875, -0.03094482421875, -0.0089111328125, -0.0002532005310058594, 0.0006160736083984375, -0.033416748046875, -0.043121337890625, -0.0303192138671875, 0.042572021484375, 0.034393310546875, 0.0138702392578125, -0.039642333984375, 0.1173095703125, 0.0039520263671875, 0.006229400634765625, 0.015899658203125, 0.07177734375, -0.004589080810546875, 0.020843505859375, -0.01043701171875, -0.045318603515625, -0.00937652587890625, -0.00991058349609375, -0.0191650390625, 0.031402587890625, 0.07037353515625, 0.0023784637451171875, 0.01158905029296875, 0.01015472412109375, 0.0157623291015625, -0.0111541748046875, -0.027740478515625, 0.005611419677734375, -0.033203125, 0.0264434814453125, 0.01419830322265625, 0.036468505859375, -0.00934600830078125, -0.00991058349609375, 0.039337158203125, -0.010284423828125, 0.0687255859375, -0.050506591796875, -0.0902099609375, 0.072998046875, 0.052978515625, 0.0207672119140625, 0.0343017578125, -0.0178680419921875, 0.01517486572265625, -0.0051116943359375, 0.0158538818359375, -0.00527191162109375, -0.0233306884765625, 0.041748046875, 0.00615692138671875, 0.0090484619140625, 0.0285797119140625, -0.018524169921875, -0.003925323486328125, 0.023956298828125, 0.04425048828125, -0.025146484375, 0.0027103424072265625, -0.0184173583984375, -0.009979248046875, 0.048492431640625, -0.020263671875, -0.0236358642578125, -0.0203857421875, 0.07672119140625, 0.00450897216796875, 0.0037975311279296875, 0.058685302734375, 0.0153961181640625, -0.0278778076171875, -0.027557373046875, -0.049652099609375, -0.006443023681640625, -0.033660888671875, 0.0214080810546875, 0.0169830322265625, -0.01953125, -0.03009033203125, 0.021575927734375, 0.0114593505859375, -0.03106689453125, -0.0189971923828125, 0.038330078125, 0.01200103759765625, -0.0196075439453125, 0.046173095703125, 0.007266998291015625, -0.0029392242431640625, 0.021759033203125, -0.01171112060546875, 0.033111572265625, -0.031494140625, 0.032073974609375, 0.00829315185546875, -0.03857421875, 0.0252838134765625, 0.0233154296875, -0.04132080078125, 0.0183563232421875, 0.0135345458984375, -0.040557861328125, -0.01495361328125, -0.0187530517578125, 0.06610107421875, -0.02423095703125, -0.005458831787109375, 0.006214141845703125, 0.038848876953125, -0.0093994140625, -0.0181884765625, 0.04730224609375, -0.046051025390625, -0.009368896484375, 0.0158233642578125, -0.01092529296875, -0.0628662109375, -0.0460205078125, -0.025634765625, 0.03936767578125, -0.058074951171875, 0.0145416259765625, 0.0489501953125, 0.0074005126953125, -0.01442718505859375, -0.009124755859375, -0.0007562637329101562, 0.047332763671875, -0.021942138671875, 0.023529052734375, -0.07293701171875, -0.018829345703125, -0.0011692047119140625, 0.065673828125, 0.022125244140625, -0.0008783340454101562, -0.0171051025390625, 0.0287322998046875, 0.093994140625, 0.068603515625, 0.033599853515625, 0.006160736083984375, -0.00435638427734375, -0.047332763671875, -0.041595458984375, 0.042205810546875, 0.047637939453125, -0.06707763671875, -0.06500244140625, -0.01229095458984375, 0.0084075927734375, 0.003692626953125, 0.0047607421875, 0.0263824462890625, -0.056121826171875, 0.0178985595703125, 0.044647216796875, 0.0123443603515625, -0.00673675537109375, 0.036407470703125, 0.0223236083984375, 0.033050537109375, -0.03814697265625, 0.00782012939453125, 0.035369873046875, 0.0193328857421875, -0.00021123886108398438, -0.01161956787109375, -0.005115509033203125, 0.004383087158203125, 0.0025482177734375, -0.007518768310546875, 0.03997802734375, -0.0220794677734375, 0.02362060546875, 0.01505279541015625, 0.0276947021484375, -0.01259613037109375, -0.0043487548828125, -0.01030731201171875, 0.008087158203125, -0.0211639404296875, 0.00457000732421875, 0.018951416015625, -0.007205963134765625, -0.0225677490234375, -0.0199737548828125, 0.0016736984252929688, -0.044677734375, -0.039306640625, -0.016204833984375, -0.004974365234375, 0.007415771484375, -0.0017538070678710938, -0.003131866455078125, 0.0263824462890625, -0.002017974853515625, 0.0113067626953125, -0.040557861328125, 0.04083251953125, -0.00013899803161621094, 0.043975830078125, 0.000156402587890625, 0.05401611328125, -0.033538818359375, -0.01543426513671875, -0.041717529296875, 0.0386962890625, 0.0165252685546875, 0.034576416015625, -0.015167236328125, 0.0212554931640625, -0.0201263427734375, 0.026092529296875, 0.03619384765625, -0.01126861572265625, 0.058135986328125, 0.01006317138671875, -0.06689453125, -0.003631591796875, 0.0016002655029296875, -0.0244598388671875, 0.005153656005859375, -0.0210723876953125, 0.0287933349609375, 0.0205841064453125, -0.003932952880859375, -0.0097198486328125, 0.0309600830078125, 0.0394287109375, -0.0286712646484375, 0.00920867919921875, 0.004711151123046875, -0.0229949951171875, 0.0254058837890625, -0.00992584228515625, 0.016510009765625, 0.0002624988555908203, -0.00930023193359375, -0.0011510848999023438, -0.0272674560546875, 0.0171051025390625, 0.01263427734375, 0.024627685546875, -0.004100799560546875, 0.042999267578125, 0.03521728515625, -0.0408935546875, 0.01554107666015625, -0.0004355907440185547, 0.021759033203125, 0.030853271484375, -0.00252532958984375, 0.0299224853515625, -0.06573486328125, -0.031463623046875, -0.044921875, 0.0300750732421875, 0.01509857177734375, 0.0511474609375, -0.00933837890625, 0.02923583984375, 0.025909423828125, 0.0000655055046081543, 0.030426025390625, -0.00218963623046875, 0.03240966796875, -0.00016891956329345703, 0.0121002197265625, -0.008819580078125, -0.079833984375, 0.00041937828063964844, 0.0296630859375, 0.00786590576171875, 0.0186614990234375, -0.013702392578125, 0.026947021484375, -0.0081634521484375, 0.01092529296875, -0.040252685546875, -0.057373046875, -0.052398681640625, 0.006809234619140625, -0.01220703125, -0.017578125, -0.0189208984375, 0.001705169677734375, 0.0226898193359375, -0.038970947265625, 0.033599853515625, -0.0169830322265625, 0.039031982421875, 0.0214385986328125, 0.040496826171875, -0.0325927734375, 0.0260162353515625, -0.0181121826171875, 0.01444244384765625, 0.0101318359375, 0.051055908203125, -0.0024871826171875, -0.03759765625, 0.02911376953125, 0.05718994140625, 0.07366943359375, -0.007289886474609375, 0.0264129638671875, 0.047088623046875, -0.02166748046875, -0.005924224853515625, -0.07037353515625, -0.03790283203125, -0.031585693359375, 0.0163726806640625, 0.03515625, 0.006656646728515625, -0.0215301513671875, -0.049591064453125, 0.03277587890625, 0.0572509765625, -0.01154327392578125, -0.04766845703125, 0.0096893310546875, -0.06341552734375, 0.1015625, -0.0054931640625, 0.021331787109375, 0.0014123916625976562, 0.004547119140625, -0.03070068359375, -0.0278472900390625, -0.01157379150390625, 0.05133056640625, -0.0158843994140625, -0.017974853515625, 0.0289306640625, 0.0125885009765625, 0.050567626953125, -0.0217742919921875, -0.0308074951171875, 0.044525146484375, -0.042266845703125, -0.00518798828125, 0.040679931640625, -0.0226593017578125, -0.0191650390625, -0.06988525390625, -0.00971221923828125, -0.048248291015625, 0.00714874267578125, -0.0406494140625, -0.0016727447509765625, 0.002422332763671875, -0.040435791015625, -0.036376953125, 0.06878662109375, -0.00939178466796875, -0.0240020751953125, -0.05419921875, 0.0181732177734375, -0.0127105712890625, -0.03912353515625, -0.0200347900390625, -0.023895263671875, 0.009033203125, 0.060150146484375, -0.002254486083984375, 0.0088043212890625, 0.01702880859375, -0.0272369384765625, -0.0491943359375, 0.017333984375, 0.0227508544921875, 0.00628662109375, -0.061798095703125, 0.0201873779296875, 0.00927734375, 0.01201629638671875, -0.00778961181640625, 0.046966552734375, 0.06195068359375, 0.019561767578125, -0.0257110595703125, -0.00006401538848876953, -0.00824737548828125, 0.02191162109375, 0.07037353515625, 0.03131103515625, 0.01049041748046875, -0.0272216796875, 0.0171051025390625, 0.0159912109375, -0.027984619140625, 0.0054779052734375, 0.013336181640625, -0.010009765625, -0.0131378173828125, -0.0213470458984375, -0.01293182373046875, 0.0165252685546875, -0.050079345703125, -0.025482177734375, -0.00974273681640625, -0.033935546875, 0.003082275390625, -0.0223236083984375, -0.00432586669921875, 0.054107666015625, -0.027801513671875, -0.0188751220703125, 0.01157379150390625, 0.01837158203125, -0.00286865234375, 0.0015468597412109375, 0.007312774658203125, 0.06182861328125, -0.057281494140625, -0.005313873291015625, 0.00276947021484375, 0.0135040283203125, -0.029205322265625, 0.01329803466796875, -0.01082611083984375, 0.00327301025390625, -0.01494598388671875, -0.01416015625, 0.00400543212890625, -0.005889892578125, -0.0197906494140625, 0.0760498046875, -0.017578125, -0.0290374755859375, -0.017913818359375, -0.00263214111328125, 0.003326416015625, 0.0214691162109375, 0.061737060546875, -0.017852783203125, 0.004238128662109375, -0.00885772705078125, -0.00765228271484375, -0.0297698974609375, 0.0251312255859375, -0.021728515625, -0.00852203369140625, 0.005390167236328125 ]
5140ad72b3a8c40ff2cc5f66e9305fb56b4b4456
Wordpress Stackexchange Q: Difference between widget form code variables I'm attempting to create my first ever widget and was hoping someone could explain the difference between $this and $instance used in the following widget form code. <?php public function form($instance){ ?> <label for="<?php echo $this->get_field_id('title'); ?>">Title: <input type="text" name="<?php echo $this->get_field_name('title'); ?>" value="<?php echo $instance['title']; ?>" id="<?php echo $this->get_field_id('title'); ?>" /> </label> <?php } A: $this is the widget object, an instance of the relevant widget class. It includes things like the widget ID and class identifiers which are required for the method that generate the input id and name attribute in the snippet $instance is the array which includes the widget setting. The settings ae not stored as part of the object and therefor needs to be passed as a parameter
Q: Difference between widget form code variables I'm attempting to create my first ever widget and was hoping someone could explain the difference between $this and $instance used in the following widget form code. <?php public function form($instance){ ?> <label for="<?php echo $this->get_field_id('title'); ?>">Title: <input type="text" name="<?php echo $this->get_field_name('title'); ?>" value="<?php echo $instance['title']; ?>" id="<?php echo $this->get_field_id('title'); ?>" /> </label> <?php } A: $this is the widget object, an instance of the relevant widget class. It includes things like the widget ID and class identifiers which are required for the method that generate the input id and name attribute in the snippet $instance is the array which includes the widget setting. The settings ae not stored as part of the object and therefor needs to be passed as a parameter
wordpress
{ "language": "en", "length": 130, "provenance": "stackexchange_00019.jsonl.gz:468277", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/239057" }
[ 0.0247344970703125, -0.058746337890625, 0.02197265625, -0.02288818359375, -0.05938720703125, -0.004734039306640625, 0.006198883056640625, -0.005756378173828125, 0.019012451171875, 0.0182647705078125, -0.00800323486328125, -0.0240631103515625, -0.006938934326171875, -0.0445556640625, -0.0008873939514160156, -0.0312042236328125, 0.0150604248046875, -0.007144927978515625, 0.0174102783203125, -0.017791748046875, 0.026519775390625, -0.00356292724609375, -0.0097808837890625, 0.0105743408203125, 0.0380859375, -0.06451416015625, 0.00437164306640625, 0.0435791015625, -0.0189056396484375, -0.00980377197265625, 0.014495849609375, -0.005359649658203125, 0.0292816162109375, 0.0253448486328125, -0.0479736328125, -0.0097503662109375, 0.005374908447265625, -0.01267242431640625, 0.0127716064453125, 0.0028858184814453125, 0.03753662109375, -0.0274810791015625, -0.006488800048828125, 0.00778961181640625, -0.0239105224609375, -0.046905517578125, 0.059814453125, 0.00045037269592285156, -0.012359619140625, -0.004917144775390625, 0.0142364501953125, -0.022064208984375, 0.0265045166015625, -0.016632080078125, -0.01189422607421875, 0.006072998046875, 0.0234527587890625, -0.034332275390625, 0.052490234375, -0.001346588134765625, -0.026214599609375, -0.0380859375, 0.027191162109375, -0.0279693603515625, -0.036285400390625, 0.0070343017578125, -0.032928466796875, -0.00795745849609375, 0.019073486328125, -0.031829833984375, 0.020477294921875, -0.00555419921875, 0.003818511962890625, -0.023895263671875, -0.007175445556640625, 0.004535675048828125, 0.0258331298828125, -0.019439697265625, -0.019805908203125, 0.0103759765625, 0.01690673828125, 0.003498077392578125, -0.044189453125, 0.002346038818359375, 0.028289794921875, 0.038818359375, -0.010223388671875, -0.039520263671875, 0.00823211669921875, -0.04022216796875, -0.009613037109375, -0.0556640625, 0.0230712890625, 0.0164337158203125, -0.0047149658203125, -0.04376220703125, 0.01282501220703125, 0.006351470947265625, -0.0161590576171875, 0.007617950439453125, 0.001888275146484375, -0.0282135009765625, 0.01971435546875, -0.00525665283203125, 0.00012314319610595703, -0.0261688232421875, -0.0208892822265625, -0.00858306884765625, 0.01551055908203125, 0.0200958251953125, -0.021026611328125, -0.0185546875, 0.022064208984375, -0.034271240234375, 0.01216888427734375, -0.00861358642578125, -0.004108428955078125, 0.0305633544921875, 0.0215911865234375, -0.0323486328125, 0.01727294921875, 0.00997161865234375, 0.074462890625, 0.0030841827392578125, 0.014892578125, 0.053375244140625, 0.0019235610961914062, -0.088623046875, -0.0322265625, -0.0004425048828125, -0.04150390625, 0.00450897216796875, 0.09600830078125, 0.035430908203125, 0.0197296142578125, -0.02252197265625, 0.016815185546875, 0.0121307373046875, -0.006702423095703125, 0.01446533203125, -0.02178955078125, -0.042083740234375, 0.00246429443359375, -0.020751953125, -0.0209197998046875, 0.0241241455078125, 0.0024013519287109375, 0.0007491111755371094, 0.001438140869140625, -0.07208251953125, 0.012054443359375, -0.065673828125, 0.0077362060546875, 0.04412841796875, 0.00821685791015625, 0.03631591796875, 0.0552978515625, -0.01230621337890625, -0.047332763671875, -0.037445068359375, -0.0249176025390625, -0.0240325927734375, -0.013519287109375, -0.030242919921875, -0.053497314453125, 0.036651611328125, -0.01251220703125, 0.002471923828125, 0.0176544189453125, -0.033843994140625, 0.0117645263671875, -0.0201873779296875, 0.004634857177734375, 0.02337646484375, 0.0165863037109375, 0.042510986328125, -0.04827880859375, 0.0123138427734375, 0.02423095703125, -0.060760498046875, -0.06549072265625, -0.06585693359375, -0.015411376953125, -0.00958251953125, -0.025634765625, 0.001018524169921875, -0.00177764892578125, 0.01526641845703125, 0.039794921875, 0.0061798095703125, 0.025848388671875, -0.0028820037841796875, -0.0069122314453125, 0.0224609375, -0.01267242431640625, -0.0026226043701171875, -0.01004791259765625, 0.025115966796875, -0.0265960693359375, -0.0178375244140625, 0.045867919921875, -0.0162811279296875, 0.0240325927734375, -0.0177001953125, -0.0015697479248046875, -0.0195159912109375, 0.01259613037109375, 0.00942230224609375, -0.024749755859375, 0.03399658203125, 0.038604736328125, 0.0260009765625, -0.048370361328125, -0.0016164779663085938, 0.004680633544921875, -0.019256591796875, -0.035614013671875, 0.02459716796875, 0.00701904296875, 0.0362548828125, 0.001285552978515625, -0.02142333984375, -0.0263519287109375, -0.022216796875, 0.052734375, -0.0185699462890625, -0.0084991455078125, -0.03369140625, 0.050872802734375, -0.0145263671875, -0.0026187896728515625, 0.0169830322265625, -0.0051422119140625, 0.007709503173828125, -0.05914306640625, -0.01812744140625, -0.041229248046875, -0.006626129150390625, 0.00832366943359375, 0.044342041015625, 0.0175323486328125, 0.0246734619140625, -0.00862884521484375, 0.028594970703125, 0.01092529296875, -0.031829833984375, -0.0035724639892578125, 0.0019330978393554688, 0.004154205322265625, 0.0279388427734375, -0.011932373046875, 0.0221099853515625, 0.03143310546875, 0.00801849365234375, -0.016632080078125, 0.056060791015625, -0.04339599609375, 0.0160064697265625, -0.0005593299865722656, -0.03216552734375, -0.0050201416015625, -0.047943115234375, 0.01198577880859375, -0.037506103515625, 0.0267333984375, 0.03125, 0.034912109375, 0.04815673828125, -0.053497314453125, 0.0241546630859375, 0.00844573974609375, 0.0183258056640625, 0.01401519775390625, 0.0185699462890625, -0.01422119140625, 0.0007033348083496094, -0.005977630615234375, -0.0061798095703125, -0.0279083251953125, -0.0188751220703125, -0.021331787109375, 0.006855010986328125, -0.0075225830078125, -0.006694793701171875, -0.01058197021484375, -0.032684326171875, 0.0274810791015625, 0.019195556640625, 0.056396484375, -0.0018596649169921875, 0.0435791015625, -0.030548095703125, -0.0265655517578125, 0.0280914306640625, 0.02325439453125, -0.06817626953125, -0.0239410400390625, 0.06439208984375, -0.014892578125, -0.007732391357421875, 0.0229034423828125, 0.01442718505859375, -0.028839111328125, -0.0294647216796875, 0.0279541015625, -0.048187255859375, 0.0012311935424804688, 0.0191192626953125, 0.001781463623046875, 0.05072021484375, -0.10760498046875, 0.0323486328125, 0.00792694091796875, 0.06512451171875, -0.0038509368896484375, -0.0391845703125, -0.0157318115234375, 0.017913818359375, -0.053863525390625, -0.05584716796875, -0.0140838623046875, -0.0259246826171875, 0.01277923583984375, -0.0122833251953125, -0.0011692047119140625, -0.0194549560546875, 0.004261016845703125, 0.0151519775390625, -0.00923919677734375, 0.0014581680297851562, -0.0299530029296875, -0.036346435546875, -0.053192138671875, -0.05023193359375, -0.016937255859375, 0.0160369873046875, 0.023468017578125, -0.01776123046875, -0.0138702392578125, -0.02716064453125, 0.00597381591796875, 0.01380157470703125, 0.00957489013671875, 0.007648468017578125, -0.0216217041015625, -0.02667236328125, 0.0145416259765625, 0.0006785392761230469, -0.033111572265625, -0.01299285888671875, 0.032135009765625, -0.0321044921875, 0.01496124267578125, 0.0092926025390625, 0.048553466796875, 0.047088623046875, -0.00946044921875, -0.0019006729125976562, 0.035614013671875, -0.0374755859375, -0.00257110595703125, -0.0157318115234375, -0.033111572265625, 0.00966644287109375, 0.00867462158203125, -0.01221466064453125, 0.024383544921875, -0.006683349609375, -0.061859130859375, -0.01727294921875, -0.03472900390625, -0.05194091796875, 0.058563232421875, -0.006137847900390625, -0.0226898193359375, 0.068359375, 0.0394287109375, -0.0189971923828125, 0.01044464111328125, 0.01442718505859375, -0.018829345703125, 0.0145111083984375, -0.018402099609375, 0.007465362548828125, -0.043243408203125, 0.025360107421875, -0.06597900390625, -0.003879547119140625, -0.0181121826171875, 0.01080322265625, 0.00958251953125, 0.057525634765625, -0.0540771484375, -0.01617431640625, 0.0059814453125, 0.0296478271484375, -0.0711669921875, -0.06317138671875, -0.05364990234375, -0.004138946533203125, -0.0635986328125, -0.00823974609375, 0.0079803466796875, -0.0029392242431640625, -0.0223846435546875, 0.08349609375, -0.05572509765625, -0.0109405517578125, -0.0014104843139648438, -0.0271759033203125, 0.0238189697265625, 0.0257110595703125, -0.00469970703125, 0.039306640625, 0.03558349609375, -0.091552734375, -0.06787109375, -0.01119232177734375, -0.0197296142578125, 0.02001953125, 0.003261566162109375, -0.0267333984375, -0.01136016845703125, 0.04730224609375, -0.00922393798828125, -0.03485107421875, 0.027191162109375, 0.01641845703125, -0.0015459060668945312, 0.0242156982421875, -0.0158538818359375, -0.016845703125, 0.0189361572265625, -0.03485107421875, -0.1275634765625, -0.035675048828125, -0.025909423828125, 0.0270538330078125, 0.006351470947265625, -0.05316162109375, -0.0255279541015625, -0.01788330078125, -0.02459716796875, 0.008880615234375, -0.0323486328125, 0.026580810546875, -0.00823974609375, -0.04144287109375, 0.026031494140625, -0.001689910888671875, -0.0133056640625, 0.0136566162109375, 0.08978271484375, 0.0164947509765625, -0.0194244384765625, -0.03680419921875, -0.04693603515625, 0.013214111328125, 0.021697998046875, 0.007720947265625, 0.00015544891357421875, -0.007572174072265625, 0.0033206939697265625, -0.005290985107421875, 0.014068603515625, -0.0140533447265625, 0.060791015625, 0.0229034423828125, -0.00870513916015625, -0.0037689208984375, 0.016143798828125, -0.034027099609375, -0.0228271484375, -0.0026836395263671875, -0.026580810546875, 0.07611083984375, 0.0211334228515625, -0.044219970703125, 0.044403076171875, 0.020263671875, 0.00716400146484375, -0.0018873214721679688, 0.0215911865234375, 0.00836944580078125, 0.01300811767578125, 0.024688720703125, -0.042236328125, -0.031768798828125, -0.0086517333984375, 0.048858642578125, 0.03814697265625, 0.0333251953125, -0.00446319580078125, 0.08062744140625, -0.01520538330078125, -0.0272369384765625, 0.0164031982421875, 0.023773193359375, -0.01338958740234375, -0.00453948974609375, -0.05609130859375, 0.014984130859375, -0.0228118896484375, 0.00887298583984375, 0.02423095703125, 0.039398193359375, 0.0045318603515625, 0.01102447509765625, 0.0251617431640625, 0.0151519775390625, 0.01226043701171875, 0.001239776611328125, 0.004062652587890625, 0.0208282470703125, -0.0184326171875, -0.01593017578125, 0.0118560791015625, -0.0157623291015625, -0.0228424072265625, -0.01226806640625, 0.047943115234375, 0.036163330078125, 0.0206146240234375, 0.03314208984375, -0.046295166015625, 0.0229034423828125, -0.01910400390625, -0.0132598876953125, 0.00412750244140625, -0.0093994140625, -0.0014734268188476562, 0.0157928466796875, 0.0018339157104492188, 0.011932373046875, 0.02703857421875, -0.0074462890625, 0.0020923614501953125, 0.0184173583984375, 0.0133056640625, -0.042083740234375, 0.0150604248046875, 0.013397216796875, 0.0196990966796875, -0.006622314453125, -0.0011434555053710938, -0.00806427001953125, -0.019500732421875, 0.0262603759765625, -0.00798797607421875, 0.01422119140625, -0.0015344619750976562, -0.01255035400390625, -0.004299163818359375, -0.02081298828125, -0.02947998046875, -0.0185394287109375, -0.01198577880859375, 0.0086669921875, -0.0150299072265625, 0.023468017578125, -0.021514892578125, 0.07208251953125, -0.058135986328125, 0.002597808837890625, -0.0792236328125, 0.010772705078125, 0.01343536376953125, 0.0243072509765625, -0.051788330078125, -0.0167694091796875, -0.0242462158203125, 0.00707244873046875, -0.0275115966796875, -0.04058837890625, -0.0287017822265625, 0.004932403564453125, -0.036224365234375, -0.0026874542236328125, 0.0047760009765625, 0.04608154296875, 0.0029888153076171875, 0.004608154296875, -0.0352783203125, -0.0259857177734375, -0.00695037841796875, 0.03887939453125, 0.00365447998046875, 0.06671142578125, -0.01342010498046875, -0.0096282958984375, -0.0252685546875, 0.001773834228515625, 0.035430908203125, -0.017181396484375, -0.0361328125, -0.03179931640625, 0.01009368896484375, -0.03521728515625, 0.0000667572021484375, -0.0296630859375, 0.0124359130859375, 0.01268768310546875, 0.0115509033203125, -0.0022735595703125, -0.00997161865234375, -0.00799560546875, -0.01751708984375, 0.03668212890625, 0.0023975372314453125, -0.005596160888671875, 0.01776123046875, 0.017974853515625, 0.00909423828125, -0.00614166259765625, 0.006565093994140625, -0.0189208984375, -0.028472900390625, 0.032867431640625, 0.0428466796875, 0.0008559226989746094, 0.052520751953125, 0.0043487548828125, 0.037811279296875, 0.0703125, 0.018402099609375, -0.057769775390625, -0.0254669189453125, 0.04638671875, 0.025848388671875, -0.0013990402221679688, 0.04327392578125, -0.000545501708984375, 0.036376953125, 0.046051025390625, 0.09832763671875, -0.06939697265625, 0.026580810546875, 0.0445556640625, -0.045654296875, 0.0010385513305664062, 0.03912353515625, -0.0267791748046875, -0.05242919921875, 0.006290435791015625, -0.0003609657287597656, 0.004241943359375, 0.0172576904296875, 0.0155029296875, -0.0070037841796875, -0.02264404296875, 0.003604888916015625, 0.0224151611328125, -0.004238128662109375, 0.03826904296875, -0.024200439453125, 0.0245819091796875, 0.002407073974609375, -0.0054473876953125, 0.002330780029296875, -0.042449951171875, -0.08306884765625, -0.043731689453125, -0.034210205078125, -0.04986572265625, 0.007747650146484375, -0.0103607177734375, 0.08868408203125, 0.059478759765625, 0.0196075439453125, -0.0178375244140625, 0.012451171875, 0.0589599609375, -0.01555633544921875, 0.002216339111328125, -0.0004737377166748047, 0.0635986328125, -0.057586669921875, 0.0243988037109375, -0.046966552734375, 0.058074951171875, 0.011016845703125, 0.0213775634765625, 0.01910400390625, -0.00888824462890625, -0.02532958984375, 0.024383544921875, -0.007740020751953125, 0.016265869140625, -0.0169677734375, -0.0209503173828125, -0.033660888671875, -0.023834228515625, -0.051177978515625, -0.0660400390625, 0.013580322265625, -0.08477783203125, -0.07000732421875, 0.0670166015625, 0.06005859375, 0.02252197265625, 0.0012836456298828125, 0.015716552734375, -0.040283203125, -0.03021240234375, -0.052947998046875, 0.007434844970703125, -0.01047515869140625, -0.01141357421875, -0.010040283203125, 0.0189971923828125, -0.032684326171875, -0.0478515625, 0.053253173828125, -0.0032863616943359375, 0.0279541015625, -0.005252838134765625, 0.0229339599609375, 0.0270843505859375, -0.038177490234375, 0.0127410888671875, 0.027801513671875, -0.006786346435546875, 0.06134033203125, -0.0034694671630859375, 0.051727294921875, -0.043426513671875, 0.03741455078125, 0.025360107421875, -0.005092620849609375, -0.0006399154663085938, -0.0252685546875, 0.0185394287109375, -0.01354217529296875, -0.0186920166015625, 0.0022735595703125, 0.02978515625, -0.00006031990051269531, 0.053619384765625, 0.044403076171875, -0.01560211181640625, -0.004619598388671875, -0.03155517578125, 0.045623779296875, 0.0175628662109375, 0.0318603515625, 0.06793212890625, 0.01055908203125, 0.02587890625, 0.0281524658203125, 0.01910400390625, 0.00026702880859375, 0.0282440185546875, 0.03271484375, -0.0114898681640625, 0.0028667449951171875, -0.04931640625, 0.035919189453125, 0.01531219482421875, 0.034942626953125, -0.0540771484375, -0.022979736328125, -0.0069580078125, 0.004055023193359375, 0.0013742446899414062, 0.0009560585021972656, 0.0260467529296875, -0.02850341796875, 0.0193634033203125, -0.03875732421875, 0.01023101806640625, 0.0281982421875, -0.01157379150390625, -0.0034618377685546875, 0.0204925537109375, -0.048675537109375, 0.03759765625, -0.0221405029296875, -0.0115203857421875, -0.0171966552734375, 0.06390380859375, 0.0121612548828125, 0.0574951171875, -0.056640625, -0.033660888671875, -0.014617919921875, 0.0143280029296875, 0.0181121826171875, 0.004756927490234375, -0.0108642578125, 0.0160369873046875, 0.028289794921875, 0.005126953125, 0.0312347412109375, 0.013916015625, 0.048004150390625, 0.0350341796875, -0.0084381103515625, 0.024261474609375, 0.044403076171875, 0.00267791748046875, 0.007030487060546875, -0.01062774658203125, -0.0305023193359375, -0.0308380126953125, -0.038726806640625, -0.0011777877807617188, 0.02996826171875, -0.0159454345703125, -0.02850341796875, 0.0499267578125, -0.0101776123046875, -0.0198822021484375, 0.058563232421875, -0.05438232421875, 0.08453369140625, -0.0213470458984375, -0.056793212890625, -0.0061187744140625, 0.038421630859375, -0.0810546875, 0.007312774658203125, 0.0269775390625, -0.0176544189453125, 0.00798797607421875, 0.0204925537109375, -0.0009484291076660156, 0.027191162109375, -0.019134521484375, -0.01373291015625, -0.0028858184814453125, 0.040252685546875, -0.01287078857421875, -0.01055908203125, 0.006500244140625, 0.032073974609375, 0.0205841064453125, 0.017730712890625, 0.0017118453979492188, 0.0099334716796875, 0.01090240478515625, -0.01593017578125, 0.02679443359375, -0.04638671875, -0.0616455078125, 0.1007080078125, -0.0117034912109375, -0.004421234130859375, -0.005527496337890625, -0.07623291015625, 0.007678985595703125, 0.0098114013671875, -0.0294647216796875, 0.0244140625, 0.0281982421875, 0.0125885009765625, 0.004497528076171875, 0.0335693359375, -0.01346588134765625, 0.032379150390625, 0.0224761962890625, -0.0240020751953125, 0.049591064453125, 0.015106201171875, 0.0004000663757324219, 0.0012159347534179688, 0.0157928466796875, -0.005352020263671875, 0.0103607177734375, 0.006740570068359375, -0.01216888427734375, 0.0172882080078125, -0.01247406005859375, -0.07989501953125, 0.004764556884765625, -0.0160980224609375, -0.003376007080078125, 0.000762939453125, 0.036346435546875, 0.01342010498046875, -0.015838623046875, 0.0226593017578125, 0.0169830322265625, -0.010772705078125, -0.06292724609375, -0.0203399658203125, 0.0946044921875, -0.0284881591796875, -0.0284881591796875, -0.0384521484375, -0.0308380126953125, -0.04425048828125, 0.0108489990234375, 0.01453399658203125, 0.00859832763671875, -0.05902099609375, -0.042449951171875, 0.00011199712753295898, 0.0038471221923828125, -0.0030384063720703125, -0.02069091796875, 0.0118255615234375, -0.01477813720703125, -0.00214385986328125, -0.0037021636962890625, 0.01296234130859375, -0.0127105712890625, 0.00168609619140625, -0.050140380859375, 0.01508331298828125, -0.056915283203125, -0.01424407958984375, -0.021392822265625, 0.03216552734375, 0.02752685546875, -0.0206298828125, 0.01540374755859375, 0.06402587890625, 0.03076171875, 0.09246826171875, -0.00762176513671875, -0.0306396484375, 0.019744873046875, 0.004573822021484375, -0.0110015869140625, -0.0142974853515625, 0.0177154541015625, -0.01873779296875, -0.0073699951171875, 0.0275726318359375, -0.045440673828125, -0.041412353515625, -0.052398681640625, -0.06707763671875, 0.042755126953125, 0.0277252197265625, -0.03167724609375, -0.00713348388671875, -0.00656890869140625, 0.0088653564453125, 0.0352783203125, 0.017425537109375, -0.037200927734375, -0.02777099609375, -0.0026988983154296875, 0.031005859375, 0.004772186279296875, 0.061431884765625, 0.003620147705078125, -0.064208984375, -0.01947021484375, -0.046112060546875, 0.035125732421875, 0.0152587890625, -0.035186767578125, 0.0202484130859375, 0.021392822265625, -0.04754638671875, -0.059234619140625, 0.004749298095703125, 0.018341064453125, -0.0214691162109375, 0.0031986236572265625, -0.04974365234375, -0.006275177001953125, 0.05267333984375, 0.07757568359375, 0.0243377685546875, -0.036529541015625, -0.01123046875, 0.04315185546875, -0.057159423828125, -0.0274200439453125, 0.042816162109375, -0.0860595703125, -0.041229248046875, -0.00395965576171875, -0.0178985595703125, 0.0171966552734375, -0.01049041748046875, -0.0237274169921875, -0.005008697509765625, 0.004116058349609375, 0.00746917724609375, -0.0305023193359375, -0.037933349609375, 0.01099395751953125, -0.012451171875, 0.0245208740234375, 0.0019311904907226562, 0.0308837890625, 0.02203369140625, 0.0615234375, -0.0010118484497070312, -0.004032135009765625, -0.057708740234375, 0.019073486328125, -0.033050537109375, 0.038177490234375, -0.058502197265625, -0.01198577880859375, -0.01090240478515625, 0.031158447265625, 0.01123046875, 0.01409912109375, -0.0218963623046875, 0.069091796875, 0.020751953125, 0.037841796875, -0.01178741455078125, 0.01113128662109375, -0.03204345703125, 0.049468994140625, 0.0262908935546875, -0.01438140869140625, 0.045989990234375, 0.0242156982421875, 0.01285552978515625, -0.0011453628540039062, 0.022552490234375, -0.03338623046875, 0.022705078125, 0.005794525146484375, -0.00959014892578125, 0.0213775634765625 ]
86e658526f26e83e59565cd4b124aeace5a0bcdf
Wordpress Stackexchange Q: How can I change a user role upon visiting a page? This Stack response explains how to change the role of a given user. Is there a way to execute that when the page loads? I run a language school and there are unique login destinations for Prospective, Active and Inactive students depending on the desired action that I want them to take. Once they make a purchase, I would like them to become Active so that they're not, for instance, looking at taking a trial lesson. A: I would suggest, rather than trying to do this on a page load, adding an extra function to the purchase code you have. Here you will already have the user_ID and data available. You then just use wp_update_user on purchase completion.
Q: How can I change a user role upon visiting a page? This Stack response explains how to change the role of a given user. Is there a way to execute that when the page loads? I run a language school and there are unique login destinations for Prospective, Active and Inactive students depending on the desired action that I want them to take. Once they make a purchase, I would like them to become Active so that they're not, for instance, looking at taking a trial lesson. A: I would suggest, rather than trying to do this on a page load, adding an extra function to the purchase code you have. Here you will already have the user_ID and data available. You then just use wp_update_user on purchase completion. A: Visit User Role Editor. It's a plugin that are provided to change user role. For the custom code you can find out in wp_update_user. A: EDIT I updated the function to check for role for which we want to make changes for, if the current user role is not within our roles_to_change array then the function exits. Note that I haven't tested for bugs, so if you find any, just report them here. @Malisa's answer is a good approach. However, if you still want to hook on page load, you could try the template_redirect hook. You would need some kind logic to only run the code on specific use case. So assuming you already have that logic AND that the user is already logged in when you try to change his role. something like this should work add_action( 'template_redirect', 'my_change_user_role' ); function my_change_user_role(){ $current_user = wp_get_current_user(); // Bail if no one is logged in if( 0 == $current_user->ID ) return; // Fetch the WP_User object of our user. $cur_user = new WP_User( $current_user->ID ); // Only Apply to users within these roles $roles_to_change = array( 'role_x', 'role_y', 'role_z' ); $make_change = false; // Flag telling to make the changes or not // Check if we can make the change to the current user foreach( $roles_to_change as $change ){ foreach ( $cur_user->roles as $user_role ){ if( $change == $user_role ){ $make_change = true; continue; } } } // Bail if role is not within those we want to make a change for if( ! $make_change ) return; // Replace the current role with our 'new_role' role $cur_user->set_role( 'new_role' ); } If you use this in a form you could use the $_GET or $_POST superglobal to pass on some information about the user (like is ID for instance).
wordpress
{ "language": "en", "length": 428, "provenance": "stackexchange_00019.jsonl.gz:468282", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/239071" }
[ 0.0650634765625, 0.01039886474609375, -0.01367950439453125, -0.01184844970703125, 0.0239410400390625, -0.061187744140625, 0.068115234375, -0.0159454345703125, 0.0173797607421875, 0.01227569580078125, -0.016204833984375, -0.01424407958984375, -0.03900146484375, -0.032989501953125, -0.02435302734375, -0.043243408203125, 0.00616455078125, 0.01389312744140625, 0.0207672119140625, -0.01148223876953125, -0.0019407272338867188, -0.00379180908203125, 0.030059814453125, 0.0413818359375, 0.033355712890625, -0.026580810546875, 0.0302886962890625, -0.0350341796875, 0.034942626953125, -0.01232147216796875, 0.0212860107421875, -0.01329803466796875, -0.005462646484375, -0.00612640380859375, 0.03863525390625, 0.0014734268188476562, 0.02825927734375, 0.0039043426513671875, 0.0308990478515625, 0.016448974609375, 0.032562255859375, 0.004283905029296875, -0.0287017822265625, 0.015472412109375, -0.02276611328125, -0.05487060546875, 0.0268402099609375, -0.032806396484375, 0.01971435546875, -0.0289459228515625, 0.023773193359375, 0.013092041015625, 0.0428466796875, -0.0214385986328125, -0.0127716064453125, -0.007122039794921875, -0.028533935546875, 0.02935791015625, 0.020050048828125, 0.007144927978515625, -0.01035308837890625, -0.00011479854583740234, 0.005992889404296875, -0.0196380615234375, 0.002346038818359375, -0.005950927734375, 0.0023670196533203125, 0.043609619140625, -0.06396484375, -0.01373291015625, 0.0251922607421875, -0.02947998046875, -0.03759765625, 0.003631591796875, -0.04058837890625, 0.01541900634765625, 0.0369873046875, -0.004589080810546875, -0.0008664131164550781, 0.0286712646484375, -0.00693511962890625, 0.03338623046875, -0.0249481201171875, -0.0325927734375, 0.0087127685546875, -0.01535797119140625, -0.01678466796875, -0.0087738037109375, -0.0181732177734375, -0.016693115234375, -0.0142364501953125, 0.0294342041015625, 0.003711700439453125, -0.016876220703125, -0.0615234375, -0.0032520294189453125, 0.02166748046875, 0.033447265625, 0.0074615478515625, -0.019927978515625, -0.0017986297607421875, -0.020294189453125, -0.03021240234375, -0.00750732421875, -0.0239715576171875, 0.03887939453125, 0.034454345703125, 0.049224853515625, 0.003330230712890625, -0.0015439987182617188, -0.001373291015625, 0.01800537109375, -0.007335662841796875, 0.0003311634063720703, -0.0423583984375, -0.0207366943359375, -0.05035400390625, 0.00467681884765625, -0.0120086669921875, 0.005580902099609375, -0.01055908203125, 0.006221771240234375, 0.0472412109375, -0.037567138671875, -0.01171875, -0.0196533203125, -0.019256591796875, -0.0445556640625, -0.036712646484375, 0.0032501220703125, -0.013641357421875, 0.03558349609375, 0.0572509765625, 0.048614501953125, -0.0016002655029296875, -0.0028476715087890625, 0.0184783935546875, 0.00566864013671875, -0.000009179115295410156, 0.025634765625, 0.01384735107421875, -0.05291748046875, -0.0233306884765625, 0.0200653076171875, 0.029815673828125, 0.0282745361328125, 0.01410675048828125, 0.01064300537109375, 0.0082855224609375, -0.015838623046875, 0.00894927978515625, -0.02850341796875, -0.03582763671875, 0.0232696533203125, 0.0858154296875, 0.0200653076171875, 0.0272216796875, 0.0168609619140625, 0.0416259765625, 0.0423583984375, 0.04840087890625, 0.003452301025390625, -0.00334930419921875, 0.0093994140625, -0.0168609619140625, -0.0201263427734375, -0.025054931640625, 0.006683349609375, 0.030548095703125, -0.0191497802734375, 0.016143798828125, 0.0021209716796875, 0.0034351348876953125, 0.021392822265625, 0.0210113525390625, 0.0421142578125, -0.026824951171875, 0.03411865234375, 0.0203704833984375, -0.035552978515625, -0.013275146484375, -0.043487548828125, 0.02960205078125, 0.007076263427734375, 0.0184478759765625, 0.01023101806640625, 0.005107879638671875, -0.00852203369140625, -0.01629638671875, 0.022796630859375, -0.031524658203125, 0.056427001953125, -0.00940704345703125, 0.0237579345703125, -0.0018863677978515625, -0.0362548828125, -0.01239776611328125, 0.005954742431640625, -0.017486572265625, -0.0111083984375, 0.0755615234375, -0.002964019775390625, -0.012542724609375, -0.0199432373046875, -0.05596923828125, -0.033935546875, -0.0117950439453125, 0.0029315948486328125, 0.035797119140625, 0.031646728515625, -0.0114898681640625, 0.0209808349609375, -0.01007843017578125, -0.050537109375, -0.01457977294921875, 0.033447265625, -0.013763427734375, 0.028839111328125, 0.00656890869140625, 0.028228759765625, 0.0147705078125, -0.03204345703125, 0.003810882568359375, -0.004711151123046875, -0.007762908935546875, 0.0124053955078125, -0.0271148681640625, 0.0006098747253417969, 0.0195465087890625, 0.0017004013061523438, 0.03802490234375, 0.01224517822265625, 0.0279998779296875, -0.0170745849609375, -0.049835205078125, 0.0005021095275878906, -0.03973388671875, -0.07037353515625, -0.01727294921875, 0.07421875, 0.0221710205078125, 0.00867462158203125, -0.017547607421875, 0.01058197021484375, -0.0300445556640625, -0.05426025390625, 0.0237274169921875, -0.0030040740966796875, 0.006038665771484375, 0.069580078125, -0.0123443603515625, 0.020721435546875, 0.00066375732421875, -0.043548583984375, -0.009918212890625, 0.051849365234375, -0.0102081298828125, 0.00516510009765625, 0.0009503364562988281, 0.009368896484375, -0.012237548828125, -0.01617431640625, 0.007167816162109375, -0.018463134765625, -0.0214996337890625, -0.0208892822265625, -0.02508544921875, -0.0228271484375, -0.01399993896484375, -0.008758544921875, 0.035186767578125, -0.03155517578125, 0.000035822391510009766, 0.03948974609375, -0.01158905029296875, -0.0211181640625, -0.01107025146484375, 0.000530242919921875, -0.0625, 0.0006589889526367188, -0.02679443359375, -0.0203094482421875, -0.00862884521484375, -0.008209228515625, 0.018707275390625, -0.00780487060546875, 0.01200103759765625, -0.01207733154296875, 0.00989532470703125, -0.0173187255859375, 0.040740966796875, -0.022796630859375, -0.041595458984375, 0.042877197265625, -0.0226898193359375, -0.058441162109375, 0.023468017578125, -0.035430908203125, 0.009490966796875, -0.027191162109375, 0.04388427734375, 0.05999755859375, 0.01305389404296875, -0.0175628662109375, 0.017303466796875, -0.0341796875, 0.0153045654296875, 0.0232391357421875, 0.007183074951171875, -0.0209808349609375, -0.0159759521484375, 0.028289794921875, 0.0106964111328125, 0.01312255859375, -0.007083892822265625, -0.038238525390625, -0.02044677734375, 0.00307464599609375, -0.04864501953125, -0.033599853515625, -0.055572509765625, -0.0875244140625, 0.0211029052734375, 0.0211334228515625, -0.025482177734375, -0.004657745361328125, 0.055511474609375, 0.0219879150390625, -0.0024280548095703125, -0.00713348388671875, -0.01105499267578125, -0.015472412109375, -0.00768280029296875, 0.01751708984375, -0.0052032470703125, -0.00859832763671875, -0.0030841827392578125, 0.0178375244140625, -0.01457977294921875, -0.035369873046875, -0.05743408203125, 0.043182373046875, -0.00757598876953125, -0.051361083984375, -0.00844573974609375, -0.044342041015625, 0.0187530517578125, -0.0112152099609375, 0.0294952392578125, -0.0006999969482421875, 0.014404296875, -0.0002582073211669922, 0.0379638671875, 0.0006513595581054688, 0.034027099609375, -0.0147705078125, -0.06158447265625, 0.00988006591796875, 0.017486572265625, -0.042694091796875, 0.0198211669921875, -0.0034542083740234375, -0.036865234375, -0.06658935546875, 0.022369384765625, -0.02496337890625, -0.02459716796875, -0.051788330078125, 0.0008711814880371094, 0.0120086669921875, -0.0287933349609375, -0.0006799697875976562, 0.0120391845703125, -0.0080413818359375, 0.0020599365234375, 0.0087127685546875, 0.048919677734375, 0.01470947265625, -0.01433563232421875, 0.0211334228515625, 0.04510498046875, -0.00882720947265625, 0.02716064453125, -0.07318115234375, -0.07244873046875, 0.04986572265625, -0.03436279296875, 0.00811767578125, -0.048370361328125, -0.0312042236328125, -0.000823974609375, 0.12060546875, 0.0196533203125, 0.01580810546875, 0.032684326171875, -0.010986328125, -0.0394287109375, 0.003742218017578125, -0.10107421875, 0.004360198974609375, -0.04437255859375, -0.01293182373046875, -0.0157623291015625, -0.0078887939453125, -0.0281524658203125, 0.0287933349609375, -0.023223876953125, -0.0389404296875, 0.0460205078125, -0.05291748046875, 0.01282501220703125, 0.0172119140625, -0.01371002197265625, -0.0175323486328125, -0.036285400390625, -0.0233001708984375, -0.0491943359375, 0.005828857421875, -0.038726806640625, 0.053558349609375, 0.039398193359375, -0.01131439208984375, -0.0102996826171875, 0.034881591796875, 0.032470703125, 0.042327880859375, 0.0086822509765625, -0.0222930908203125, 0.06768798828125, -0.007297515869140625, 0.012359619140625, 0.002399444580078125, -0.01186370849609375, -0.0250396728515625, -0.027984619140625, 0.005329132080078125, -0.0364990234375, 0.0020656585693359375, -0.0157318115234375, -0.0196075439453125, -0.056793212890625, -0.034271240234375, -0.007335662841796875, 0.0377197265625, -0.00777435302734375, 0.0201263427734375, -0.062347412109375, -0.0706787109375, 0.0198974609375, -0.037933349609375, 0.0159149169921875, 0.00920867919921875, 0.0634765625, 0.0207672119140625, 0.00492095947265625, 0.03369140625, 0.0164947509765625, 0.040130615234375, 0.01413726806640625, 0.034088134765625, 0.01544189453125, -0.02093505859375, 0.04608154296875, 0.010284423828125, 0.0022449493408203125, 0.0018720626831054688, 0.0546875, 0.0032863616943359375, -0.035552978515625, 0.044830322265625, -0.005138397216796875, -0.05450439453125, -0.01404571533203125, 0.001499176025390625, -0.0003330707550048828, 0.03125, -0.0040130615234375, -0.028778076171875, 0.0210418701171875, 0.0196990966796875, -0.01082611083984375, -0.00567626953125, 0.0325927734375, 0.009246826171875, 0.0237579345703125, 0.00926971435546875, -0.0035190582275390625, 0.007793426513671875, 0.0003383159637451172, -0.054473876953125, -0.03900146484375, -0.03717041015625, 0.032073974609375, -0.0626220703125, -0.005176544189453125, -0.012939453125, -0.0233612060546875, 0.0731201171875, -0.004444122314453125, -0.0743408203125, 0.028228759765625, -0.0255584716796875, 0.046142578125, 0.03594970703125, 0.0033092498779296875, 0.0173187255859375, -0.0243988037109375, 0.00826263427734375, -0.01055145263671875, -0.005054473876953125, -0.00527191162109375, -0.0266571044921875, -0.0017910003662109375, -0.006343841552734375, -0.01021575927734375, 0.0227813720703125, 0.049957275390625, 0.0100555419921875, 0.037139892578125, -0.03253173828125, 0.062286376953125, 0.058807373046875, -0.0294342041015625, -0.0006456375122070312, 0.0606689453125, -0.0239715576171875, -0.0284881591796875, 0.0003821849822998047, -0.0068359375, -0.005207061767578125, 0.0174102783203125, 0.02099609375, -0.0071258544921875, 0.01506805419921875, 0.002819061279296875, -0.0235137939453125, 0.0103912353515625, 0.017333984375, -0.030517578125, -0.06097412109375, -0.026336669921875, 0.0255584716796875, 0.030914306640625, -0.0396728515625, -0.008544921875, -0.01031494140625, -0.0535888671875, 0.01200103759765625, 0.01282501220703125, -0.0157318115234375, -0.0267181396484375, -0.032440185546875, -0.057464599609375, -0.043914794921875, -0.0174102783203125, -0.0260467529296875, 0.0286407470703125, -0.0102691650390625, -0.0208892822265625, 0.01398468017578125, -0.0003223419189453125, 0.01247406005859375, -0.038116455078125, -0.00363922119140625, -0.0194549560546875, -0.0010471343994140625, 0.03338623046875, -0.0170135498046875, -0.0753173828125, -0.029510498046875, -0.07000732421875, 0.0029296875, -0.06927490234375, -0.0467529296875, -0.0274200439453125, 0.04193115234375, 0.034881591796875, 0.02642822265625, -0.0208892822265625, -0.06719970703125, -0.015045166015625, 0.006603240966796875, 0.05975341796875, 0.031829833984375, -0.00572967529296875, 0.043212890625, 0.003353118896484375, 0.042633056640625, 0.028900146484375, 0.01557159423828125, -0.016998291015625, -0.0280609130859375, -0.0115203857421875, 0.0421142578125, -0.005260467529296875, -0.019561767578125, -0.00885772705078125, -0.01003265380859375, 0.10577392578125, -0.00711822509765625, 0.0106658935546875, -0.0086822509765625, 0.01303863525390625, -0.03680419921875, 0.01152801513671875, -0.04345703125, 0.0035381317138671875, -0.0151824951171875, -0.0018100738525390625, 0.00494384765625, -0.01114654541015625, 0.01337432861328125, -0.02093505859375, -0.0125732421875, -0.0127716064453125, -0.003765106201171875, -0.06951904296875, 0.040130615234375, 0.050445556640625, 0.0088043212890625, 0.038421630859375, -0.0007710456848144531, 0.00540924072265625, 0.017120361328125, -0.01386260986328125, -0.026580810546875, 0.01873779296875, 0.037841796875, -0.01061248779296875, -0.01374053955078125, 0.01385498046875, -0.01436614990234375, 0.034271240234375, 0.0760498046875, 0.049041748046875, -0.1370849609375, 0.030487060546875, -0.022979736328125, 0.00003725290298461914, 0.06817626953125, 0.004955291748046875, -0.007686614990234375, -0.0178680419921875, 0.03338623046875, -0.03643798828125, -0.00699615478515625, 0.01360321044921875, -0.01788330078125, -0.006427764892578125, 0.00009459257125854492, 0.007007598876953125, 0.01120758056640625, -0.0037517547607421875, 0.0037479400634765625, 0.0106048583984375, 0.035064697265625, -0.034912109375, 0.015106201171875, 0.03289794921875, 0.00028777122497558594, -0.04150390625, 0.042633056640625, -0.0301666259765625, -0.004726409912109375, 0.005626678466796875, -0.00736236572265625, 0.05596923828125, 0.02508544921875, 0.00981903076171875, -0.0396728515625, 0.006778717041015625, -0.007564544677734375, -0.039520263671875, -0.047821044921875, 0.0038051605224609375, 0.0200653076171875, -0.050811767578125, 0.0291900634765625, -0.02642822265625, -0.0323486328125, -0.0173187255859375, -0.0736083984375, 0.040618896484375, -0.033416748046875, -0.0019683837890625, 0.01873779296875, -0.004917144775390625, -0.0167236328125, 0.0160064697265625, -0.0101470947265625, -0.001094818115234375, 0.007762908935546875, -0.005054473876953125, -0.035308837890625, 0.0007219314575195312, -0.00612640380859375, -0.0694580078125, 0.06390380859375, -0.035736083984375, 0.0457763671875, 0.01071929931640625, 0.01551055908203125, 0.0014963150024414062, -0.0085296630859375, -0.024810791015625, 0.0533447265625, 0.0291595458984375, 0.05499267578125, -0.019134521484375, -0.0003643035888671875, 0.021331787109375, 0.028350830078125, 0.0035648345947265625, 0.01611328125, -0.032958984375, -0.01507568359375, 0.01263427734375, 0.016815185546875, 0.004596710205078125, 0.03802490234375, -0.031768798828125, 0.0648193359375, 0.0021209716796875, -0.07452392578125, 0.0215301513671875, -0.039764404296875, -0.07733154296875, -0.00963592529296875, 0.0174102783203125, 0.00312042236328125, -0.00403594970703125, 0.055450439453125, -0.0728759765625, 0.004611968994140625, 0.050994873046875, 0.01021575927734375, 0.01776123046875, 0.0235443115234375, 0.019134521484375, 0.0185699462890625, 0.0220947265625, -0.0228271484375, 0.044677734375, 0.003582000732421875, -0.00843048095703125, 0.0010519027709960938, 0.00788116455078125, -0.007293701171875, -0.00039458274841308594, -0.02349853515625, 0.04107666015625, -0.0010023117065429688, 0.0653076171875, 0.0638427734375, 0.0310821533203125, -0.005657196044921875, 0.0184173583984375, 0.05859375, 0.08477783203125, -0.05694580078125, 0.000087738037109375, 0.0194549560546875, 0.009246826171875, 0.001216888427734375, -0.041778564453125, 0.0189666748046875, -0.046630859375, -0.0099029541015625, -0.0178680419921875, 0.01250457763671875, 0.0020904541015625, -0.001827239990234375, -0.004058837890625, 0.045806884765625, -0.034149169921875, 0.016082763671875, -0.0186004638671875, 0.0002014636993408203, -0.004730224609375, -0.035736083984375, 0.01015472412109375, -0.01197052001953125, 0.08026123046875, 0.04534912109375, 0.0022754669189453125, 0.03753662109375, -0.036712646484375, 0.017303466796875, -0.04547119140625, -0.0614013671875, -0.0238189697265625, 0.045379638671875, 0.00725555419921875, -0.00202178955078125, 0.00884246826171875, 0.0396728515625, 0.0301513671875, -0.015869140625, 0.037353515625, -0.00209808349609375, 0.02691650390625, -0.0204010009765625, 0.01531219482421875, -0.0025615692138671875, -0.013153076171875, -0.039215087890625, 0.019989013671875, 0.038970947265625, -0.00847625732421875, 0.0555419921875, -0.01189422607421875, -0.0204620361328125, 0.01922607421875, -0.0142059326171875, 0.1072998046875, 0.0298919677734375, -0.059326171875, -0.00676727294921875, -0.056549072265625, -0.05780029296875, 0.042724609375, 0.042205810546875, -0.019256591796875, 0.023040771484375, 0.0030059814453125, 0.004825592041015625, 0.02947998046875, -0.0284881591796875, -0.0018873214721679688, 0.0136260986328125, 0.01837158203125, 0.0002815723419189453, -0.0687255859375, -0.027191162109375, -0.00933837890625, 0.00847625732421875, -0.00811767578125, 0.01461029052734375, 0.0173797607421875, 0.0239105224609375, -0.0394287109375, 0.00830841064453125, -0.03863525390625, -0.057891845703125, 0.091552734375, -0.025634765625, -0.039581298828125, 0.0158233642578125, -0.0285797119140625, 0.060028076171875, -0.0217132568359375, 0.0162506103515625, 0.033599853515625, -0.049163818359375, 0.008514404296875, 0.037109375, 0.039947509765625, -0.0203094482421875, -0.04595947265625, -0.051177978515625, 0.0111846923828125, 0.0231475830078125, 0.030914306640625, -0.0307159423828125, 0.038116455078125, 0.002727508544921875, -0.0056304931640625, -0.0171356201171875, 0.0011758804321289062, -0.047882080078125, 0.0186309814453125, 0.004306793212890625, 0.031097412109375, 0.016571044921875, -0.02099609375, 0.02197265625, 0.0163726806640625, -0.0228271484375, 0.02923583984375, -0.01171112060546875, 0.0025653839111328125, 0.01280975341796875, 0.0369873046875, 0.0030422210693359375, 0.01268768310546875, -0.00031375885009765625, 0.008697509765625, -0.042022705078125, -0.0224761962890625, -0.026214599609375, -0.0219573974609375, 0.0103759765625, -0.0008273124694824219, 0.0155181884765625, -0.0306243896484375, -0.022979736328125, -0.00553131103515625, 0.0210723876953125, 0.0355224609375, -0.11163330078125, 0.058319091796875, 0.003528594970703125, 0.031890869140625, -0.0084075927734375, -0.044708251953125, 0.031585693359375, 0.05657958984375, -0.05072021484375, 0.0262451171875, -0.023895263671875, -0.0877685546875, -0.028076171875, -0.0038585662841796875, 0.031341552734375, 0.003810882568359375, -0.0129547119140625, 0.004077911376953125, -0.0225067138671875, 0.0638427734375, -0.0579833984375, -0.025054931640625, 0.01300811767578125, 0.0109710693359375, 0.01233673095703125, -0.07855224609375, -0.02301025390625, -0.032958984375, 0.02935791015625, -0.039459228515625, 0.01448822021484375, 0.0185699462890625, -0.026092529296875, -0.052703857421875, 0.093505859375, -0.034271240234375, -0.00836944580078125, -0.0615234375, 0.029327392578125, 0.01145172119140625, -0.0035305023193359375, -0.0166168212890625, -0.0086669921875, -0.0284576416015625, 0.016143798828125, 0.01172637939453125, -0.003917694091796875, 0.0167236328125, 0.016876220703125, -0.0506591796875, 0.030975341796875, 0.019744873046875, 0.00408935546875, 0.01332855224609375, -0.009124755859375, 0.01824951171875, 0.03961181640625, -0.034088134765625, -0.0506591796875, -0.016632080078125, -0.01207733154296875, -0.0212249755859375, -0.02972412109375, 0.005527496337890625, -0.0112762451171875, 0.032745361328125, 0.0182647705078125, -0.006519317626953125, 0.004451751708984375, 0.0163421630859375, -0.0288238525390625, -0.042205810546875, 0.0027179718017578125, 0.013031005859375, -0.037109375, 0.004352569580078125, 0.0162506103515625, -0.039459228515625, -0.0014276504516601562, 0.0106048583984375, -0.07177734375, 0.015838623046875, -0.017578125, -0.01331329345703125, -0.03814697265625, 0.024505615234375, 0.034637451171875, -0.04193115234375, -0.0404052734375, 0.017425537109375, -0.00850677490234375, -0.02606201171875, -0.0244293212890625, 0.005016326904296875, 0.0367431640625, -0.048828125, 0.0043792724609375, -0.0029144287109375, 0.0133514404296875, -0.048828125, 0.0001742839813232422, 0.00616455078125, 0.03466796875, -0.014007568359375, 0.039520263671875, 0.01110076904296875, 0.04571533203125, -0.0012302398681640625, 0.033660888671875, -0.01074981689453125, 0.0172882080078125, -0.0175933837890625, 0.042022705078125, -0.0009708404541015625, -0.0166778564453125, 0.059783935546875, -0.053741455078125, -0.01491546630859375, 0.00732421875, -0.035186767578125, -0.04718017578125, 0.0049285888671875, -0.02978515625, 0.007259368896484375, 0.01015472412109375 ]
a24ed3d8783e775a03b0d72f6621f91f58338f15
Wordpress Stackexchange Q: Adding a within *'s from wp_nav_menu() I'm trying to format the list produced by wp_nav_menu() so that within each <li> is a <span> that wraps the text. At first I thought I could accomplish this using the the items_wrap argument, but that changes only the enclosing <ul>, correct? This seems like it should be simple enough to accomplish. Thanks! A: One way to change the tags that wrap both the menu and its individual items is to create a custom walker. https://codex.wordpress.org/Class_Reference/Walker#General_Menu_Example
Q: Adding a within *'s from wp_nav_menu() I'm trying to format the list produced by wp_nav_menu() so that within each <li> is a <span> that wraps the text. At first I thought I could accomplish this using the the items_wrap argument, but that changes only the enclosing <ul>, correct? This seems like it should be simple enough to accomplish. Thanks! A: One way to change the tags that wrap both the menu and its individual items is to create a custom walker. https://codex.wordpress.org/Class_Reference/Walker#General_Menu_Example A: Yes, items_wrap is used to to modify or replace the default <ul> wrapper. To wrap the individual links inside of that element, simply use link_before and link_after, like so: wp_nav_menu( array( 'theme_location' => 'some-location', 'link_before' => '<span>', 'link_after' => '</span>', ) );
wordpress
{ "language": "en", "length": 126, "provenance": "stackexchange_00019.jsonl.gz:468368", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/239423" }
[ 0.040130615234375, -0.0261383056640625, 0.0018444061279296875, 0.0202484130859375, 0.01050567626953125, -0.043121337890625, 0.0738525390625, -0.0192108154296875, -0.02838134765625, -0.007656097412109375, -0.09002685546875, 0.04669189453125, -0.044891357421875, 0.002445220947265625, 0.029388427734375, -0.058013916015625, 0.038421630859375, -0.0028324127197265625, 0.04534912109375, -0.01531219482421875, -0.003223419189453125, 0.004360198974609375, 0.046142578125, 0.0777587890625, 0.01873779296875, -0.05712890625, 0.0640869140625, -0.03826904296875, 0.044281005859375, -0.0163421630859375, 0.02386474609375, -0.0223541259765625, 0.01268768310546875, 0.01277923583984375, 0.0016880035400390625, 0.01169586181640625, -0.03607177734375, 0.013458251953125, 0.0102996826171875, 0.00138092041015625, 0.014434814453125, -0.003971099853515625, 0.0224151611328125, 0.015777587890625, -0.0277862548828125, -0.0178070068359375, -0.008819580078125, -0.0279998779296875, 0.026641845703125, -0.0775146484375, 0.0236053466796875, 0.02447509765625, 0.050933837890625, -0.00902557373046875, -0.029327392578125, 0.0369873046875, -0.00476837158203125, -0.0660400390625, 0.02740478515625, 0.03265380859375, 0.0125885009765625, -0.0287628173828125, 0.01580810546875, -0.03070068359375, 0.0190887451171875, 0.021759033203125, 0.07794189453125, -0.0002884864807128906, -0.042694091796875, 0.039337158203125, 0.03021240234375, -0.040924072265625, -0.0222320556640625, -0.00771331787109375, 0.0008335113525390625, -0.02655029296875, 0.0122528076171875, -0.04962158203125, -0.0061492919921875, 0.046600341796875, 0.00971221923828125, 0.0254364013671875, 0.0005908012390136719, -0.03948974609375, 0.00693511962890625, -0.0170745849609375, -0.028839111328125, -0.0191650390625, -0.0026493072509765625, -0.0015888214111328125, -0.01198577880859375, -0.001964569091796875, 0.0193939208984375, 0.00270843505859375, -0.028961181640625, -0.036529541015625, 0.032989501953125, 0.0587158203125, -0.0014238357543945312, 0.049468994140625, 0.01155853271484375, -0.05877685546875, 0.08563232421875, -0.0758056640625, 0.0032787322998046875, 0.0179595947265625, -0.01465606689453125, 0.053680419921875, 0.07568359375, 0.04180908203125, 0.0255889892578125, 0.057952880859375, -0.021881103515625, -0.0309906005859375, -0.0065765380859375, 0.0144805908203125, -0.048583984375, 0.040557861328125, 0.004039764404296875, 0.004238128662109375, -0.0304718017578125, 0.0075836181640625, -0.0211944580078125, 0.034393310546875, 0.01091766357421875, 0.0386962890625, 0.0426025390625, -0.0401611328125, 0.018402099609375, 0.005313873291015625, -0.026092529296875, 0.004772186279296875, 0.058837890625, 0.05670166015625, 0.0311737060546875, -0.01126861572265625, -0.005023956298828125, 0.003154754638671875, -0.00734710693359375, 0.003414154052734375, 0.001926422119140625, -0.0012960433959960938, 0.0250091552734375, -0.02679443359375, -0.00299835205078125, 0.00844573974609375, 0.002040863037109375, 0.0256195068359375, -0.00948333740234375, -0.035797119140625, 0.042388916015625, -0.053497314453125, 0.04522705078125, -0.00868988037109375, -0.05841064453125, -0.0251312255859375, -0.0202789306640625, -0.0172576904296875, -0.029388427734375, -0.048675537109375, -0.048583984375, -0.0085601806640625, 0.038238525390625, -0.0751953125, -0.055755615234375, 0.01479339599609375, -0.041229248046875, -0.0034427642822265625, 0.0211029052734375, 0.051788330078125, 0.006366729736328125, -0.056671142578125, 0.01042938232421875, 0.006832122802734375, -0.0181884765625, 0.03216552734375, 0.01062774658203125, -0.00565338134765625, 0.0222320556640625, 0.057037353515625, -0.0159759521484375, -0.038421630859375, 0.03253173828125, -0.03564453125, -0.0394287109375, 0.0088043212890625, 0.029754638671875, 0.095947265625, 0.018951416015625, 0.031402587890625, -0.0010232925415039062, -0.031951904296875, -0.054443359375, -0.033355712890625, -0.017791748046875, 0.029388427734375, 0.01519775390625, 0.020843505859375, -0.01043701171875, 0.00202178955078125, -0.0223541259765625, -0.004207611083984375, -0.005947113037109375, 0.0054168701171875, -0.045166015625, 0.0028018951416015625, -0.0243988037109375, 0.03594970703125, -0.0254058837890625, -0.01265716552734375, 0.0082244873046875, -0.0281829833984375, 0.0123291015625, -0.06585693359375, -0.0294342041015625, -0.0006327629089355469, 0.01554107666015625, 0.01396942138671875, 0.01861572265625, -0.017333984375, 0.0340576171875, -0.01163482666015625, 0.0299072265625, 0.032196044921875, 0.036651611328125, -0.044677734375, -0.0126953125, -0.039947509765625, -0.0157470703125, -0.0003502368927001953, -0.05731201171875, 0.05072021484375, 0.08892822265625, 0.0675048828125, -0.02410888671875, 0.006938934326171875, 0.016326904296875, -0.040069580078125, -0.0211029052734375, 0.03466796875, 0.04815673828125, 0.0102386474609375, 0.01084136962890625, 0.001399993896484375, 0.048736572265625, -0.009796142578125, 0.04071044921875, -0.03179931640625, -0.0250396728515625, -0.0110321044921875, 0.07843017578125, 0.003955841064453125, 0.040985107421875, 0.0087890625, 0.030242919921875, 0.01421356201171875, -0.01751708984375, -0.01104736328125, 0.020965576171875, 0.00403594970703125, 0.0020427703857421875, 0.0218048095703125, 0.0166168212890625, 0.0042877197265625, -0.0017499923706054688, -0.01299285888671875, 0.0231475830078125, 0.0224151611328125, -0.00026798248291015625, -0.053253173828125, 0.0156402587890625, 0.076904296875, 0.01433563232421875, 0.01528167724609375, -0.055419921875, 0.028167724609375, -0.004535675048828125, 0.006908416748046875, -0.0018062591552734375, -0.0044708251953125, -0.008575439453125, 0.070556640625, 0.04595947265625, -0.0185699462890625, -0.0267181396484375, -0.07830810546875, -0.002841949462890625, -0.035186767578125, -0.026580810546875, -0.01458740234375, -0.0009241104125976562, 0.03179931640625, -0.0301971435546875, 0.03863525390625, -0.0035266876220703125, -0.01430511474609375, 0.0246734619140625, 0.01096343994140625, 0.0164031982421875, -0.005786895751953125, 0.016082763671875, 0.041290283203125, -0.0171661376953125, -0.0004620552062988281, -0.0041046142578125, -0.000759124755859375, -0.01235198974609375, 0.035400390625, 0.0016736984252929688, -0.049530029296875, 0.00447845458984375, 0.02142333984375, 0.00949859619140625, 0.037261962890625, -0.015716552734375, -0.0479736328125, 0.00551605224609375, 0.006103515625, -0.018096923828125, -0.00872802734375, 0.0477294921875, -0.062103271484375, -0.00260162353515625, 0.0250091552734375, -0.04217529296875, -0.031646728515625, 0.075439453125, -0.0149078369140625, -0.049072265625, -0.051788330078125, -0.0179443359375, -0.063232421875, -0.048187255859375, 0.06463623046875, 0.00893402099609375, 0.014984130859375, 0.00740814208984375, 0.042205810546875, 0.0073089599609375, -0.04327392578125, 0.024505615234375, 0.00902557373046875, -0.0193328857421875, 0.03399658203125, 0.0170440673828125, -0.0051116943359375, -0.006084442138671875, 0.033477783203125, -0.0231781005859375, 0.01268768310546875, -0.00942230224609375, -0.032470703125, -0.006622314453125, -0.01153564453125, 0.04486083984375, -0.01904296875, -0.00806427001953125, 0.07342529296875, 0.06915283203125, 0.0067596435546875, -0.034210205078125, -0.01197052001953125, -0.043792724609375, 0.0248260498046875, 0.0185394287109375, 0.01678466796875, 0.0114288330078125, 0.01532745361328125, -0.007537841796875, -0.00530242919921875, 0.0301971435546875, -0.0273284912109375, 0.01605224609375, -0.014434814453125, -0.0247039794921875, -0.044525146484375, 0.025299072265625, 0.001495361328125, -0.01009368896484375, -0.00577545166015625, 0.0294647216796875, -0.01165008544921875, 0.03839111328125, -0.033416748046875, -0.03521728515625, 0.0299072265625, -0.032623291015625, 0.02911376953125, -0.02154541015625, -0.022857666015625, -0.005077362060546875, 0.07098388671875, -0.04998779296875, -0.03656005859375, -0.007312774658203125, 0.029693603515625, -0.00609588623046875, -0.045257568359375, -0.0110626220703125, -0.0386962890625, -0.055267333984375, 0.0244140625, -0.02593994140625, -0.007472991943359375, -0.036407470703125, 0.06427001953125, -0.04498291015625, -0.03179931640625, 0.016204833984375, -0.019134521484375, -0.004314422607421875, -0.03460693359375, -0.0205535888671875, -0.060516357421875, 0.0008072853088378906, -0.0328369140625, -0.052825927734375, -0.0141143798828125, -0.038482666015625, 0.081298828125, 0.027069091796875, -0.004398345947265625, 0.01030731201171875, 0.064453125, 0.034027099609375, -0.0233917236328125, 0.044189453125, -0.007152557373046875, 0.028717041015625, 0.010894775390625, 0.01557159423828125, -0.022613525390625, -0.01151275634765625, -0.016845703125, -0.0318603515625, 0.0196685791015625, 0.01035308837890625, 0.01523590087890625, 0.032318115234375, -0.01519012451171875, -0.0675048828125, -0.0272064208984375, 0.005496978759765625, 0.003948211669921875, -0.0071563720703125, 0.01012420654296875, -0.00725555419921875, -0.042236328125, 0.0139312744140625, 0.0248260498046875, -0.0213623046875, 0.00923919677734375, 0.05438232421875, 0.022705078125, -0.035247802734375, -0.0089569091796875, 0.0176849365234375, 0.0215301513671875, -0.04541015625, 0.0287017822265625, -0.0036525726318359375, -0.000006556510925292969, 0.027252197265625, -0.0322265625, 0.03338623046875, -0.0093841552734375, 0.0290069580078125, 0.02728271484375, 0.01027679443359375, 0.007007598876953125, 0.0234222412109375, -0.02239990234375, 0.026702880859375, 0.003955841064453125, 0.01409912109375, 0.00023472309112548828, 0.01125335693359375, 0.0143280029296875, -0.033660888671875, -0.0236968994140625, -0.028228759765625, 0.01062774658203125, -0.01094818115234375, 0.04425048828125, 0.0264129638671875, 0.0011873245239257812, 0.0156402587890625, 0.0225830078125, 0.0036449432373046875, -0.0157012939453125, -0.0361328125, -0.0369873046875, 0.0308074951171875, -0.057098388671875, -0.021942138671875, 0.019256591796875, -0.003192901611328125, 0.0682373046875, 0.0249481201171875, -0.0244293212890625, -0.027008056640625, 0.0078887939453125, -0.0250396728515625, -0.0218353271484375, 0.0628662109375, 0.017608642578125, -0.056732177734375, 0.0206756591796875, -0.006259918212890625, -0.0067138671875, -0.019866943359375, -0.00997161865234375, -0.0193328857421875, 0.00847625732421875, -0.0147247314453125, 0.0166778564453125, 0.0310211181640625, 0.007518768310546875, 0.011810302734375, -0.01751708984375, -0.010162353515625, -0.0243682861328125, 0.040069580078125, 0.01226806640625, -0.002452850341796875, -0.0116424560546875, 0.042022705078125, 0.04144287109375, -0.0177459716796875, -0.00817108154296875, 0.01314544677734375, 0.03082275390625, 0.0240478515625, 0.005092620849609375, 0.0101165771484375, -0.0175628662109375, -0.00449371337890625, 0.0219268798828125, -0.00261688232421875, -0.058563232421875, -0.025360107421875, 0.0281219482421875, 0.0291748046875, -0.0293731689453125, -0.00342559814453125, -0.00357818603515625, -0.0133056640625, 0.001171112060546875, -0.00954437255859375, -0.0199127197265625, -0.01242828369140625, 0.00019919872283935547, -0.024688720703125, 0.00916290283203125, 0.004978179931640625, -0.06829833984375, -0.021270751953125, -0.012451171875, -0.0264129638671875, 0.061920166015625, -0.00949859619140625, 0.011810302734375, -0.02532958984375, -0.0024738311767578125, -0.039794921875, -0.0019989013671875, 0.031097412109375, 0.008575439453125, 0.035491943359375, -0.0037059783935546875, 0.005260467529296875, -0.0145111083984375, 0.01197052001953125, -0.037322998046875, 0.006317138671875, -0.020782470703125, -0.0117034912109375, 0.01528167724609375, -0.0028934478759765625, -0.00475311279296875, -0.0023136138916015625, 0.01287841796875, -0.0026264190673828125, 0.002124786376953125, -0.029144287109375, 0.0372314453125, 0.0298614501953125, 0.027862548828125, -0.0035915374755859375, 0.01026153564453125, 0.0059967041015625, -0.0182342529296875, 0.00949859619140625, -0.05908203125, -0.03857421875, -0.049713134765625, 0.00537109375, 0.0733642578125, 0.0621337890625, 0.00287628173828125, 0.0443115234375, -0.028839111328125, 0.01543426513671875, -0.0145263671875, 0.0027065277099609375, -0.056640625, -0.0157318115234375, 0.044342041015625, 0.0211181640625, 0.0285491943359375, -0.031646728515625, -0.00954437255859375, -0.02728271484375, 0.0237884521484375, 0.00873565673828125, -0.0276336669921875, -0.0145263671875, 0.047088623046875, 0.034423828125, 0.01389312744140625, 0.01317596435546875, 0.0286712646484375, 0.021881103515625, -0.053558349609375, -0.004688262939453125, 0.005096435546875, 0.03497314453125, 0.0634765625, -0.0005559921264648438, -0.0007405281066894531, 0.032012939453125, -0.01983642578125, 0.00787353515625, 0.0288848876953125, 0.0418701171875, -0.049774169921875, 0.0072021484375, -0.0005207061767578125, -0.0117645263671875, 0.039154052734375, 0.0287933349609375, 0.0092315673828125, 0.0008983612060546875, 0.0056915283203125, -0.0537109375, -0.007205963134765625, 0.0089874267578125, -0.0184326171875, 0.015899658203125, -0.045318603515625, 0.055450439453125, 0.0234375, -0.019317626953125, -0.01485443115234375, 0.016143798828125, 0.0133819580078125, -0.0269012451171875, -0.01224517822265625, 0.02398681640625, -0.027984619140625, -0.0289764404296875, 0.04736328125, -0.022674560546875, 0.0218658447265625, -0.0169677734375, 0.0014591217041015625, -0.00627899169921875, 0.032257080078125, -0.030731201171875, -0.00937652587890625, 0.015380859375, -0.02825927734375, 0.0128631591796875, -0.01020050048828125, 0.0005030632019042969, -0.005474090576171875, -0.0110321044921875, 0.00864410400390625, -0.0223388671875, -0.01045989990234375, -0.0306396484375, -0.021240234375, 0.0804443359375, -0.0533447265625, -0.00806427001953125, -0.01480865478515625, 0.031982421875, 0.037261962890625, -0.0183258056640625, 0.055084228515625, -0.0528564453125, -0.00852203369140625, 0.0067596435546875, -0.021484375, -0.013031005859375, -0.040557861328125, -0.026580810546875, 0.085205078125, -0.005634307861328125, -0.00714874267578125, 0.0228271484375, 0.04302978515625, -0.035919189453125, 0.011138916015625, -0.0293121337890625, 0.0275115966796875, 0.0140533447265625, 0.0113372802734375, -0.033050537109375, -0.01219940185546875, -0.00948333740234375, 0.02044677734375, -0.04754638671875, -0.01068878173828125, -0.005401611328125, 0.007808685302734375, 0.05865478515625, 0.0418701171875, 0.034393310546875, -0.004146575927734375, 0.0029659271240234375, 0.0113372802734375, 0.03314208984375, -0.0203399658203125, 0.033355712890625, -0.0191192626953125, -0.0034122467041015625, 0.0103302001953125, 0.01528167724609375, 0.0247955322265625, 0.00672149658203125, 0.03729248046875, -0.0281524658203125, 0.005939483642578125, 0.016693115234375, -0.019683837890625, 0.013916015625, 0.048248291015625, 0.003574371337890625, -0.004497528076171875, -0.00750732421875, -0.0279541015625, 0.023040771484375, -0.0236053466796875, 0.0178070068359375, 0.034820556640625, 0.0012054443359375, 0.017913818359375, 0.0498046875, 0.0175933837890625, 0.03564453125, 0.0224456787109375, 0.016265869140625, 0.017333984375, 0.0179901123046875, -0.02984619140625, 0.00254058837890625, 0.06121826171875, 0.04608154296875, -0.031646728515625, -0.01849365234375, -0.005626678466796875, -0.006229400634765625, 0.017730712890625, -0.004425048828125, 0.06146240234375, -0.001499176025390625, -0.008148193359375, 0.0095977783203125, -0.015594482421875, 0.015716552734375, 0.0430908203125, 0.0149688720703125, 0.0125274658203125, -0.03973388671875, -0.030609130859375, -0.060546875, 0.03472900390625, 0.01080322265625, 0.05206298828125, 0.021240234375, 0.044281005859375, 0.012237548828125, -0.0126953125, 0.0389404296875, 0.00762176513671875, 0.0048675537109375, -0.055999755859375, 0.05810546875, -0.0115203857421875, 0.0052032470703125, -0.01361083984375, 0.004390716552734375, 0.02325439453125, 0.035552978515625, 0.019195556640625, -0.020904541015625, -0.0043487548828125, 0.040679931640625, -0.0277252197265625, -0.0301971435546875, -0.0653076171875, 0.0555419921875, 0.059478759765625, 0.043121337890625, 0.0261383056640625, 0.00007611513137817383, 0.0721435546875, 0.0015382766723632812, 0.019989013671875, -0.0008263587951660156, -0.005214691162109375, -0.019012451171875, -0.007965087890625, -0.0095977783203125, 0.01312255859375, -0.10418701171875, -0.01129150390625, -0.045654296875, -0.0709228515625, 0.05059814453125, 0.054168701171875, -0.0222625732421875, 0.0006427764892578125, 0.041046142578125, -0.0179595947265625, 0.02398681640625, 0.00994873046875, 0.00811004638671875, 0.003894805908203125, 0.019073486328125, 0.0045166015625, -0.0672607421875, -0.041229248046875, -0.031707763671875, 0.0440673828125, 0.04071044921875, 0.0033397674560546875, 0.0225982666015625, 0.037445068359375, 0.006305694580078125, 0.0165557861328125, -0.02520751953125, -0.0232391357421875, 0.04718017578125, -0.0172119140625, -0.0027027130126953125, -0.014892578125, -0.033660888671875, -0.0030422210693359375, 0.04827880859375, -0.037078857421875, -0.0212249755859375, -0.004413604736328125, 0.02362060546875, -0.0270538330078125, 0.06201171875, -0.002292633056640625, 0.0080108642578125, 0.0135498046875, -0.025299072265625, 0.0360107421875, 0.0227203369140625, 0.0245513916015625, 0.0267486572265625, 0.0307769775390625, -0.0129241943359375, 0.030120849609375, -0.0171356201171875, 0.0251922607421875, 0.022125244140625, 0.006450653076171875, 0.015380859375, -0.0440673828125, -0.0364990234375, 0.0030975341796875, -0.00983428955078125, -0.022308349609375, -0.019805908203125, -0.004703521728515625, 0.045257568359375, 0.038421630859375, 0.06939697265625, -0.00905609130859375, 0.0265960693359375, 0.0207672119140625, 0.0024394989013671875, 0.00986480712890625, -0.0279693603515625, -0.054901123046875, -0.0792236328125, 0.0019197463989257812, 0.03631591796875, -0.051025390625, -0.025115966796875, -0.116455078125, -0.009429931640625, 0.022308349609375, 0.010101318359375, -0.04168701171875, 0.00395965576171875, 0.0072174072265625, 0.040008544921875, -0.01255035400390625, -0.0182952880859375, 0.01078033447265625, 0.020355224609375, -0.0160980224609375, -0.034515380859375, -0.02398681640625, 0.03558349609375, -0.0280609130859375, 0.0014829635620117188, -0.0038433074951171875, -0.0233001708984375, -0.01071929931640625, 0.007389068603515625, 0.037017822265625, 0.0482177734375, 0.03729248046875, -0.0252838134765625, -0.017974853515625, 0.01003265380859375, 0.007587432861328125, -0.0085906982421875, 0.01306915283203125, -0.0240936279296875, -0.034271240234375, 0.04742431640625, -0.0285797119140625, 0.00020039081573486328, -0.037353515625, -0.0845947265625, 0.031951904296875, 0.016876220703125, -0.04449462890625, -0.0170745849609375, -0.0007615089416503906, -0.0284881591796875, 0.01212310791015625, -0.01058197021484375, -0.0079345703125, 0.0108489990234375, 0.038238525390625, 0.0264739990234375, 0.067138671875, 0.023712158203125, -0.0062408447265625, -0.024444580078125, 0.00196075439453125, -0.0121612548828125, 0.057342529296875, -0.0247039794921875, 0.0098114013671875, -0.0092926025390625, 0.006679534912109375, -0.03955078125, -0.0309295654296875, -0.013031005859375, 0.023590087890625, 0.018524169921875, -0.030517578125, -0.01088714599609375, -0.00908660888671875, 0.0172882080078125, -0.00036334991455078125, 0.005191802978515625, -0.02520751953125, -0.006500244140625, -0.01282501220703125, 0.01812744140625, 0.01441192626953125, -0.017333984375, -0.035614013671875, -0.0041656494140625, -0.00855255126953125, -0.0272979736328125, -0.0257720947265625, 0.0306549072265625, -0.045013427734375, 0.00925445556640625, 0.019989013671875, -0.00400543212890625, -0.0533447265625, -0.03302001953125, 0.11181640625, -0.0684814453125, -0.021514892578125, 0.0024967193603515625, 0.03265380859375, 0.021026611328125, -0.0625, -0.06195068359375, -0.007457733154296875, -0.030792236328125, 0.0227508544921875, -0.044189453125, 0.036102294921875, -0.0550537109375, 0.041229248046875, -0.02203369140625, 0.01238250732421875, 0.01042938232421875, 0.01971435546875, 0.00045371055603027344, 0.005123138427734375, 0.01372528076171875, 0.0175323486328125, -0.0205230712890625, 0.06048583984375, -0.00881195068359375, 0.0256500244140625, 0.0171661376953125, -0.007610321044921875, 0.061187744140625, -0.015167236328125, -0.01457977294921875, 0.031768798828125, -0.06884765625, -0.07501220703125, 0.01009368896484375, 0.01358795166015625, 0.01268768310546875, 0.024139404296875 ]
dd4b088771d3bb4ca9da06df620ed8255e98cf97
Wordpress Stackexchange Q: Wordpress remove EXIF Data from specific Thumb Is it possible to hook in to action when uploading and resizing specific size added by add_image_size( 'mini-placeholder', 32 ) for image in Wordpress, and remove EXIF Data, and set quality of this one to minimum (10/20%)? I want to achieve small thumb under 1kb (the goal is smallest as it is possible). A: Assuming you are using ImageMagick (the WP standard) as your library there is a filter called image_strip_meta which controls whether the EXIF data must be preserved. Normally you would just use a boolean to do an overall setting, but you could easily make that a function like this: add_filter ('image_strip_meta','wpse239481_conditional_strip') function wpse239481_conditional_strip { if (...condition ..) return true else return false; } The problem is in the condition. You would need to access the current thumbnail label, which doesn't trickle down from the multi_resize method that sets thing going. However, the target width and height are known in the resize function where the filter resides. Still, you can't access those dimensions inside the filter unless you hack the core to make this instance of apply_filters pass parameters. Unless of course, someone smarter than me knows a trick.
Q: Wordpress remove EXIF Data from specific Thumb Is it possible to hook in to action when uploading and resizing specific size added by add_image_size( 'mini-placeholder', 32 ) for image in Wordpress, and remove EXIF Data, and set quality of this one to minimum (10/20%)? I want to achieve small thumb under 1kb (the goal is smallest as it is possible). A: Assuming you are using ImageMagick (the WP standard) as your library there is a filter called image_strip_meta which controls whether the EXIF data must be preserved. Normally you would just use a boolean to do an overall setting, but you could easily make that a function like this: add_filter ('image_strip_meta','wpse239481_conditional_strip') function wpse239481_conditional_strip { if (...condition ..) return true else return false; } The problem is in the condition. You would need to access the current thumbnail label, which doesn't trickle down from the multi_resize method that sets thing going. However, the target width and height are known in the resize function where the filter resides. Still, you can't access those dimensions inside the filter unless you hack the core to make this instance of apply_filters pass parameters. Unless of course, someone smarter than me knows a trick.
wordpress
{ "language": "en", "length": 199, "provenance": "stackexchange_00019.jsonl.gz:468379", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/239481" }
[ 0.006591796875, -0.01488494873046875, -0.01329803466796875, 0.02899169921875, -0.0015096664428710938, -0.043914794921875, 0.0574951171875, -0.01198577880859375, 0.0357666015625, 0.005069732666015625, -0.05242919921875, -0.006195068359375, -0.0269775390625, -0.01177215576171875, -0.016326904296875, -0.036590576171875, 0.032684326171875, -0.010040283203125, 0.0357666015625, 0.00644683837890625, -0.01214599609375, 0.036041259765625, 0.0164031982421875, 0.025787353515625, -0.028533935546875, 0.0187225341796875, 0.09881591796875, 0.0010061264038085938, -0.033782958984375, -0.0284576416015625, 0.0030059814453125, -0.00965118408203125, 0.0223236083984375, 0.04071044921875, -0.02874755859375, 0.05169677734375, 0.00750732421875, 0.0141754150390625, 0.01373291015625, 0.01203155517578125, 0.0307464599609375, -0.00919342041015625, -0.007251739501953125, 0.00836181640625, -0.01273345947265625, -0.021697998046875, 0.0299224853515625, -0.04150390625, -0.002857208251953125, 0.0035686492919921875, 0.0032634735107421875, 0.0309600830078125, 0.02587890625, -0.01526641845703125, 0.0017347335815429688, 0.031158447265625, -0.0604248046875, 0.044769287109375, 0.0173797607421875, 0.06170654296875, 0.00824737548828125, 0.020355224609375, -0.0283660888671875, -0.05224609375, 0.0173187255859375, -0.0084381103515625, -0.04608154296875, 0.01425933837890625, -0.050872802734375, 0.01885986328125, 0.042694091796875, -0.06121826171875, -0.0196990966796875, -0.037689208984375, -0.006591796875, 0.053131103515625, -0.0031299591064453125, 0.0035953521728515625, -0.0087738037109375, 0.00420379638671875, 0.044769287109375, -0.01396942138671875, 0.0006289482116699219, 0.0228271484375, 0.034881591796875, 0.0631103515625, -0.00264739990234375, -0.0518798828125, -0.0198974609375, 0.00240325927734375, -0.01010894775390625, -0.0264892578125, -0.04425048828125, 0.0540771484375, 0.0086822509765625, -0.005817413330078125, 0.0294189453125, 0.01108551025390625, 0.01357269287109375, -0.0009660720825195312, 0.0223541259765625, -0.0592041015625, 0.027679443359375, -0.0232391357421875, 0.02166748046875, 0.013092041015625, -0.0037136077880859375, -0.01806640625, 0.038665771484375, 0.0191497802734375, -0.0220947265625, 0.01451873779296875, -0.03753662109375, 0.001617431640625, -0.03387451171875, 0.03497314453125, -0.049896240234375, 0.00263214111328125, -0.0240631103515625, 0.035247802734375, -0.01444244384765625, -0.006359100341796875, -0.0018224716186523438, -0.005374908447265625, 0.029327392578125, 0.00920867919921875, -0.0257720947265625, 0.008209228515625, 0.0059051513671875, 0.0155029296875, -0.0110626220703125, 0.052490234375, 0.03741455078125, -0.035675048828125, -0.04046630859375, 0.0019016265869140625, 0.026641845703125, -0.031494140625, -0.01136016845703125, 0.036285400390625, -0.01849365234375, -0.038848876953125, 0.0095672607421875, -0.01268768310546875, 0.0210723876953125, 0.0101776123046875, -0.00746917724609375, 0.01023101806640625, 0.0478515625, -0.050628662109375, 0.0242462158203125, -0.05279541015625, 0.056488037109375, -0.004795074462890625, 0.005352020263671875, -0.0145111083984375, 0.06884765625, -0.03594970703125, -0.05999755859375, -0.055816650390625, 0.062255859375, -0.0006279945373535156, -0.022735595703125, 0.00540924072265625, -0.01021575927734375, -0.014678955078125, -0.034423828125, -0.0045013427734375, 0.0229949951171875, 0.00830078125, 0.041656494140625, -0.01070404052734375, -0.022918701171875, -0.0037689208984375, 0.01380157470703125, -0.003047943115234375, 0.01517486572265625, 0.031982421875, -0.003406524658203125, 0.0286102294921875, -0.00778961181640625, -0.04583740234375, 0.0556640625, -0.0303192138671875, 0.0018072128295898438, -0.05084228515625, 0.0176544189453125, -0.0157623291015625, -0.0017614364624023438, 0.0360107421875, 0.025482177734375, 0.0096435546875, -0.06427001953125, 0.0259246826171875, -0.0068511962890625, -0.0100250244140625, -0.00040411949157714844, -0.01093292236328125, -0.0006384849548339844, 0.0199432373046875, 0.0528564453125, 0.0005383491516113281, 0.0035610198974609375, -0.041473388671875, -0.07354736328125, 0.00617218017578125, -0.03668212890625, 0.038238525390625, -0.03955078125, 0.0003116130828857422, 0.042816162109375, 0.00983428955078125, -0.0670166015625, 0.052337646484375, 0.0026702880859375, -0.0108489990234375, -0.0063018798828125, 0.003246307373046875, -0.03094482421875, 0.032257080078125, -0.05889892578125, -0.01537322998046875, -0.0638427734375, 0.01342010498046875, 0.032012939453125, -0.0033168792724609375, -0.030853271484375, -0.018157958984375, -0.01448822021484375, 0.00559234619140625, -0.05902099609375, 0.07183837890625, -0.039215087890625, 0.01506805419921875, -0.00818634033203125, -0.017730712890625, -0.032958984375, -0.0830078125, 0.02349853515625, 0.0548095703125, 0.041900634765625, 0.05413818359375, 0.0193939208984375, 0.01904296875, 0.0810546875, 0.00954437255859375, 0.0279083251953125, -0.0243988037109375, 0.013824462890625, 0.0065765380859375, -0.007740020751953125, -0.023345947265625, 0.023529052734375, -0.07012939453125, 0.0284881591796875, 0.0243682861328125, -0.013336181640625, 0.0172271728515625, -0.0247802734375, 0.021942138671875, -0.01313018798828125, 0.0242767333984375, 0.0190277099609375, -0.00897216796875, 0.022705078125, 0.023101806640625, 0.0223541259765625, 0.0169525146484375, -0.0241546630859375, 0.039825439453125, 0.02105712890625, -0.042022705078125, 0.0007500648498535156, 0.0038890838623046875, -0.0160369873046875, -0.00897216796875, -0.035308837890625, 0.019256591796875, 0.01367950439453125, -0.01314544677734375, -0.00945281982421875, 0.0176239013671875, -0.005702972412109375, -0.01436614990234375, -0.01013946533203125, -0.029998779296875, 0.0225372314453125, -0.0032367706298828125, -0.017669677734375, -0.05096435546875, -0.006443023681640625, 0.00849151611328125, -0.015777587890625, 0.025054931640625, 0.0097198486328125, -0.03607177734375, 0.0189208984375, -0.072021484375, 0.054901123046875, -0.057403564453125, 0.0545654296875, 0.07470703125, -0.0265350341796875, 0.027801513671875, -0.01195526123046875, -0.01129150390625, -0.0433349609375, 0.0022106170654296875, -0.0215911865234375, -0.0172119140625, -0.0220794677734375, 0.03973388671875, 0.004703521728515625, -0.006404876708984375, -0.025146484375, -0.01006317138671875, -0.027587890625, 0.004425048828125, -0.01439666748046875, 0.0465087890625, -0.00279998779296875, -0.06317138671875, -0.0108795166015625, 0.02972412109375, -0.04071044921875, -0.003875732421875, 0.057952880859375, 0.0001913309097290039, 0.004638671875, -0.028472900390625, 0.00028634071350097656, -0.034210205078125, -0.03668212890625, -0.0280609130859375, 0.01212310791015625, -0.00785064697265625, 0.004337310791015625, 0.042938232421875, -0.00930023193359375, -0.0570068359375, -0.0190887451171875, -0.037811279296875, 0.004024505615234375, 0.012847900390625, -0.0079345703125, -0.0008554458618164062, -0.015960693359375, 0.00849151611328125, -0.05157470703125, 0.0033721923828125, 0.008544921875, -0.01323699951171875, -0.031982421875, -0.021484375, -0.047027587890625, 0.063232421875, 0.05487060546875, -0.0401611328125, -0.01416015625, -0.06512451171875, -0.037628173828125, -0.00798797607421875, -0.041748046875, 0.0256195068359375, 0.0251617431640625, -0.0164794921875, -0.0081329345703125, 0.020477294921875, 0.051971435546875, 0.0263214111328125, 0.01094818115234375, -0.002361297607421875, 0.034454345703125, 0.0033779144287109375, 0.02362060546875, -0.047882080078125, -0.0160675048828125, -0.032867431640625, 0.0413818359375, -0.00971221923828125, 0.0211334228515625, 0.01495361328125, 0.00829315185546875, 0.0006337165832519531, -0.013214111328125, 0.03533935546875, 0.0112762451171875, 0.06549072265625, -0.024749755859375, -0.032073974609375, -0.008758544921875, 0.08624267578125, -0.043701171875, -0.039459228515625, -0.01348114013671875, 0.02801513671875, -0.007144927978515625, -0.025665283203125, 0.0257720947265625, -0.019195556640625, -0.11932373046875, -0.0145416259765625, 0.01021575927734375, -0.07257080078125, 0.005115509033203125, -0.035003662109375, -0.076416015625, -0.04266357421875, 0.029571533203125, 0.040802001953125, -0.00220489501953125, 0.022064208984375, 0.002460479736328125, 0.013214111328125, -0.00862884521484375, -0.006092071533203125, -0.070068359375, -0.010406494140625, -0.018218994140625, 0.039398193359375, -0.03125, 0.060638427734375, -0.068603515625, 0.013916015625, -0.0418701171875, 0.0022335052490234375, -0.01224517822265625, 0.0460205078125, -0.019378662109375, 0.00693511962890625, -0.0023403167724609375, -0.0285797119140625, -0.018951416015625, -0.05682373046875, -0.04693603515625, -0.0262603759765625, -0.01715087890625, -0.0085296630859375, 0.000431060791015625, 0.0006961822509765625, -0.04547119140625, -0.01358795166015625, -0.0131072998046875, 0.0406494140625, -0.012237548828125, -0.00879669189453125, -0.03302001953125, -0.05828857421875, 0.06591796875, 0.04376220703125, 0.0180511474609375, -0.0157012939453125, 0.055816650390625, 0.00376129150390625, -0.0423583984375, -0.031951904296875, 0.011627197265625, 0.0153961181640625, 0.00576019287109375, 0.0233154296875, 0.0111846923828125, 0.00922393798828125, -0.03887939453125, 0.003833770751953125, 0.0150146484375, -0.024261474609375, 0.09344482421875, -0.01355743408203125, -0.0288238525390625, 0.045501708984375, -0.01910400390625, -0.0257415771484375, 0.0079193115234375, 0.0048065185546875, -0.0256195068359375, 0.02813720703125, 0.0276947021484375, -0.001941680908203125, -0.01214599609375, -0.01471710205078125, -0.0184173583984375, 0.00960540771484375, -0.04693603515625, 0.03729248046875, 0.0382080078125, -0.0211029052734375, 0.01413726806640625, 0.01515960693359375, 0.034881591796875, 0.001903533935546875, -0.001056671142578125, -0.037109375, 0.045074462890625, 0.01468658447265625, 0.0157623291015625, 0.0115203857421875, 0.01218414306640625, -0.057342529296875, -0.0008540153503417969, -0.003993988037109375, -0.075927734375, 0.0185546875, 0.037017822265625, -0.02545166015625, -0.02294921875, 0.024749755859375, 0.019805908203125, -0.004909515380859375, -0.01407623291015625, -0.03765869140625, 0.0029010772705078125, -0.0457763671875, 0.046966552734375, -0.00125885009765625, -0.006450653076171875, 0.0203094482421875, -0.01149749755859375, 0.00800323486328125, -0.015594482421875, 0.0010175704956054688, 0.02642822265625, 0.0242767333984375, 0.00511932373046875, -0.0006103515625, 0.0305633544921875, -0.0006966590881347656, -0.0003972053527832031, 0.0266265869140625, -0.0219879150390625, -0.01885986328125, -0.00135040283203125, 0.01824951171875, -0.0264739990234375, -0.00676727294921875, 0.036956787109375, 0.0038604736328125, 0.01323699951171875, 0.006183624267578125, -0.0035381317138671875, -0.03546142578125, 0.00446319580078125, 0.03924560546875, 0.017303466796875, -0.0321044921875, -0.0226287841796875, -0.01055908203125, -0.0295257568359375, -0.0225830078125, 0.050933837890625, -0.04852294921875, 0.00959014892578125, 0.002227783203125, -0.0004982948303222656, -0.03302001953125, -0.060882568359375, 0.002918243408203125, 0.004985809326171875, -0.00022721290588378906, -0.008026123046875, 0.01116943359375, -0.0278778076171875, 0.0030117034912109375, -0.02880859375, 0.0199432373046875, -0.0262451171875, 0.018707275390625, 0.023590087890625, 0.007297515869140625, -0.0222625732421875, -0.018310546875, -0.02227783203125, -0.024932861328125, 0.01079559326171875, -0.002986907958984375, -0.01248931884765625, -0.0093994140625, -0.0245819091796875, 0.008148193359375, -0.0040740966796875, 0.02734375, 0.035797119140625, 0.0113983154296875, -0.03192138671875, 0.00788116455078125, -0.044525146484375, 0.043792724609375, -0.0200347900390625, 0.01324462890625, -0.03570556640625, 0.00994110107421875, 0.0306854248046875, -0.0055999755859375, -0.00566864013671875, -0.047454833984375, -0.020172119140625, -0.00611114501953125, -0.0102691650390625, 0.0301666259765625, 0.0321044921875, 0.01262664794921875, 0.01201629638671875, -0.0037555694580078125, -0.0100555419921875, -0.034515380859375, 0.0316162109375, -0.01611328125, 0.037109375, -0.022491455078125, -0.0310516357421875, 0.0341796875, -0.004680633544921875, 0.0108184814453125, 0.04364013671875, -0.0655517578125, 0.031951904296875, 0.05224609375, -0.015350341796875, 0.03155517578125, 0.038055419921875, -0.007129669189453125, 0.0362548828125, 0.028900146484375, 0.011322021484375, 0.021636962890625, -0.02105712890625, -0.009765625, 0.0173187255859375, 0.024871826171875, -0.01165008544921875, -0.01174163818359375, 0.016571044921875, -0.0258331298828125, 0.05047607421875, 0.00937652587890625, 0.067138671875, -0.038360595703125, 0.036468505859375, 0.0269317626953125, -0.03131103515625, 0.0399169921875, -0.0200653076171875, -0.022979736328125, -0.0215911865234375, 0.05950927734375, -0.003894805908203125, -0.016693115234375, 0.01421356201171875, 0.005352020263671875, -0.0177459716796875, -0.005008697509765625, 0.0059356689453125, 0.00701904296875, -0.0283203125, -0.01441192626953125, 0.0304107666015625, -0.035369873046875, 0.0157012939453125, 0.03924560546875, 0.00705718994140625, -0.024566650390625, -0.073486328125, -0.040130615234375, 0.002468109130859375, -0.08319091796875, 0.038818359375, -0.0232086181640625, 0.06256103515625, 0.02734375, 0.014801025390625, -0.0303802490234375, 0.00936126708984375, -0.024078369140625, -0.04327392578125, -0.0235748291015625, 0.035308837890625, 0.00991058349609375, -0.060882568359375, 0.035125732421875, -0.04705810546875, 0.000051856040954589844, -0.000016689300537109375, 0.0186920166015625, 0.08697509765625, -0.077392578125, -0.004978179931640625, 0.0276641845703125, 0.0181884765625, -0.00910186767578125, 0.00728607177734375, 0.052642822265625, -0.05914306640625, -0.058074951171875, 0.0200042724609375, -0.0472412109375, -0.0111236572265625, 0.0096282958984375, -0.058013916015625, 0.078369140625, -0.0115814208984375, 0.03021240234375, 0.0160980224609375, 0.0243682861328125, -0.0296783447265625, -0.0026836395263671875, -0.0259857177734375, 0.031768798828125, -0.0030040740966796875, 0.002696990966796875, -0.02008056640625, 0.018096923828125, -0.0181732177734375, -0.02740478515625, 0.05377197265625, 0.0089569091796875, -0.0153045654296875, -0.030242919921875, -0.00795745849609375, 0.029266357421875, -0.0180206298828125, 0.0234375, -0.0092010498046875, -0.0025730133056640625, -0.016448974609375, 0.0021457672119140625, 0.03277587890625, -0.036224365234375, -0.057037353515625, 0.0231781005859375, -0.0043182373046875, 0.0101470947265625, 0.0168609619140625, 0.06427001953125, -0.017822265625, -0.011627197265625, 0.040435791015625, -0.08807373046875, 0.025909423828125, 0.022796630859375, 0.0213470458984375, -0.007770538330078125, -0.04107666015625, 0.00075531005859375, 0.037445068359375, -0.00933837890625, 0.0207977294921875, 0.0159454345703125, -0.0015869140625, 0.06536865234375, -0.00405120849609375, 0.0008053779602050781, 0.01499176025390625, 0.0194854736328125, 0.022979736328125, -0.01407623291015625, -0.003772735595703125, -0.023834228515625, 0.0478515625, 0.0260009765625, 0.0228424072265625, -0.040283203125, -0.054779052734375, 0.0172271728515625, 0.0027523040771484375, 0.0080413818359375, 0.00838470458984375, 0.0125579833984375, -0.05621337890625, -0.0056304931640625, -0.052490234375, 0.02227783203125, 0.04736328125, 0.0245513916015625, -0.00606536865234375, 0.0272674560546875, -0.06683349609375, -0.012420654296875, -0.020965576171875, -0.01302337646484375, 0.00937652587890625, 0.00893402099609375, 0.0182037353515625, 0.0213775634765625, 0.0589599609375, 0.0153961181640625, -0.02911376953125, 0.0269927978515625, -0.019287109375, 0.047119140625, -0.0299072265625, -0.005401611328125, -0.01995849609375, 0.034393310546875, -0.0157623291015625, -0.006816864013671875, 0.05035400390625, 0.0243072509765625, -0.09124755859375, -0.0310516357421875, 0.0108642578125, -0.05120849609375, 0.00879669189453125, -0.02313232421875, 0.028076171875, 0.032562255859375, 0.0015439987182617188, -0.014312744140625, 0.01262664794921875, 0.059600830078125, -0.0218963623046875, 0.02685546875, -0.01003265380859375, -0.036346435546875, 0.0204315185546875, -0.016082763671875, 0.0467529296875, -0.0013790130615234375, -0.0301971435546875, -0.00420379638671875, -0.0007524490356445312, -0.028350830078125, -0.0009965896606445312, 0.0168609619140625, -0.03912353515625, 0.044830322265625, 0.0170440673828125, -0.01494598388671875, -0.01178741455078125, -0.00885009765625, 0.0195159912109375, 0.006549835205078125, 0.01113128662109375, 0.020965576171875, -0.0212860107421875, -0.01052093505859375, 0.0123748779296875, 0.0238800048828125, -0.015594482421875, 0.0670166015625, -0.0259552001953125, 0.007358551025390625, 0.027679443359375, -0.0286102294921875, 0.0245208740234375, 0.03375244140625, 0.003459930419921875, 0.0001481771469116211, -0.0303497314453125, -0.02294921875, 0.06365966796875, -0.00641632080078125, 0.032958984375, -0.05194091796875, -0.0252838134765625, -0.0218353271484375, 0.02362060546875, 0.0216217041015625, -0.01207733154296875, -0.0247955322265625, -0.0134735107421875, -0.0007243156433105469, 0.00388336181640625, 0.016204833984375, 0.02227783203125, 0.004497528076171875, 0.0014467239379882812, 0.035919189453125, -0.014617919921875, 0.035400390625, 0.00997161865234375, 0.075927734375, 0.0433349609375, -0.0230255126953125, -0.0304107666015625, -0.000255584716796875, -0.00868988037109375, -0.02215576171875, 0.023193359375, 0.0260162353515625, 0.002910614013671875, 0.015594482421875, 0.022705078125, -0.01308441162109375, 0.020263671875, -0.0054931640625, -0.02130126953125, 0.0090179443359375, -0.0026149749755859375, -0.05010986328125, -0.004558563232421875, -0.0124053955078125, -0.0195465087890625, -0.0183868408203125, 0.00988006591796875, -0.0074920654296875, -0.0230255126953125, -0.02239990234375, 0.0131072998046875, 0.03619384765625, 0.038787841796875, -0.07177734375, 0.0643310546875, -0.006847381591796875, 0.0166778564453125, 0.027557373046875, 0.0216522216796875, -0.02716064453125, -0.01413726806640625, -0.05755615234375, -0.082763671875, -0.040008544921875, 0.08251953125, -0.057525634765625, 0.0203399658203125, 0.05804443359375, -0.034149169921875, -0.0229034423828125, 0.0158538818359375, 0.026458740234375, 0.0753173828125, 0.0020542144775390625, -0.0275115966796875, 0.00623321533203125, 0.0019931793212890625, 0.0160369873046875, -0.05889892578125, -0.009765625, -0.0596923828125, 0.041778564453125, 0.01434326171875, -0.035491943359375, -0.02655029296875, -0.042694091796875, -0.035186767578125, 0.06671142578125, 0.006641387939453125, -0.024810791015625, 0.007110595703125, 0.01001739501953125, -0.032470703125, 0.061737060546875, 0.0144805908203125, 0.00008153915405273438, 0.0279083251953125, 0.016845703125, 0.007335662841796875, -0.03863525390625, 0.04083251953125, -0.0023365020751953125, -0.03082275390625, 0.02825927734375, 0.0350341796875, -0.01873779296875, 0.0035877227783203125, -0.01971435546875, 0.048675537109375, 0.038818359375, -0.025421142578125, 0.0181732177734375, 0.01378631591796875, -0.0214691162109375, -0.0189361572265625, -0.00322723388671875, -0.01242828369140625, 0.03460693359375, 0.10333251953125, 0.06982421875, 0.019866943359375, -0.07037353515625, 0.0146026611328125, -0.01708984375, 0.0019397735595703125, -0.0270233154296875, -0.00519561767578125, -0.04046630859375, -0.034759521484375, -0.0007734298706054688, -0.0035305023193359375, -0.0273895263671875, -0.0006866455078125, -0.05322265625, -0.01549530029296875, -0.0024318695068359375, 0.03955078125, -0.10540771484375, 0.0272979736328125, 0.0159759521484375, -0.01861572265625, 0.01512908935546875, -0.052490234375, 0.0187225341796875, 0.006549835205078125, -0.049072265625, -0.037200927734375, 0.00588226318359375, 0.00531768798828125, 0.027984619140625, -0.007633209228515625, -0.029754638671875, -0.003692626953125, 0.029083251953125, -0.0185089111328125, 0.0005645751953125, 0.01523590087890625, 0.016937255859375, 0.0123138427734375, -0.0305633544921875, 0.008453369140625, -0.040557861328125, -0.01503753662109375, -0.021484375, -0.044708251953125, 0.033721923828125, -0.006481170654296875, -0.00902557373046875, 0.033538818359375, -0.0010709762573242188, 0.0022373199462890625, 0.0250091552734375, -0.0272064208984375, -0.0203704833984375, 0.00778961181640625, -0.0718994140625, 0.0165557861328125, -0.00040793418884277344 ]
b1e9330ff3ab5fcfd45f606f00798c516a0bc30f
Wordpress Stackexchange Q: What is the Difference between directly call a function and call a function using add_action? What is the difference between following two codes? (Directly call a function and call a function using add_action) function pp_submit__link_form(){ if(isset( $_POST['action']) && $_POST['action']="submit_link" ){ echo "Hello"; } } add_action( 'init', 'pp_submit__link_form' ); function pp_submit__link_form(){ if(isset( $_POST['pp_action']) && $_POST['pp_action']="submit_link" ){ echo "Hello"; } } pp_submit__link_form(); A: In the first block of code, pp_submit__link_form() will be fired on the init action in WordPress. In the second block of code, pp_submit__link_form() will be fired immediately at the time the function is called.
Q: What is the Difference between directly call a function and call a function using add_action? What is the difference between following two codes? (Directly call a function and call a function using add_action) function pp_submit__link_form(){ if(isset( $_POST['action']) && $_POST['action']="submit_link" ){ echo "Hello"; } } add_action( 'init', 'pp_submit__link_form' ); function pp_submit__link_form(){ if(isset( $_POST['pp_action']) && $_POST['pp_action']="submit_link" ){ echo "Hello"; } } pp_submit__link_form(); A: In the first block of code, pp_submit__link_form() will be fired on the init action in WordPress. In the second block of code, pp_submit__link_form() will be fired immediately at the time the function is called. A: In the first example you are registering the function 'pp_submit__link_form' into the action hook 'init'. So that means when WordPress fires the action 'init' (by calling do_action('init') ) it will include your function call. See the WordPress codex on hooks, actions and filters In the second example you are simply calling that function in the general execution of your php script So it will fire everytime your plugin is loaded. From your example it looks like you want to do something with the $_POST data, (maybe when someone posts a form) so the first example is the correct one to use. A: Another reason to use add_action() when you want to call a function is, its opposite, the remove_action(), which allow any plugin/script to not call the function when the action is running. add_action / add_filter, remove_action / remove_filter are the best for the developper to maximize the customization of a plugin, theme and core behaviours. So, in any running process you'll be able to remove a function called and right after add your own function by using add_action(). For example, from your code: remove_action('init', 'pp_submit__link_form'); action_action('init', 'my_pp_submit__link_form); function my_pp_submit__link_form(){ if(isset( $_POST['action']) && $_POST['action']="submit_link" ){ echo "Good bye, see you later, I'm tired"; } } A: 1) when executing directly, you cant access almost any important WP global variable, because the query/variables are run within add_action functions. 2) using add_action you execute function whenever it is necessary. For example, you want to check logged-in user, then you should do it after 'init' action started. 3) add_action is the recommended way in most cases 4) with add_action you make function to be "removable" also,if you meet some conditions... i.e: if($url = 'mypage.php') { remove_action('wp_footer'); } 5) with add_action you make your function to be readable by DEBUGER plugins, to check that function's execution time,CPU usage, and etc...
wordpress
{ "language": "en", "length": 403, "provenance": "stackexchange_00019.jsonl.gz:468408", "question_score": "4", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/239584" }
[ 0.1173095703125, -0.002910614013671875, -0.01552581787109375, -0.0810546875, 0.04852294921875, -0.04638671875, 0.039642333984375, 0.00388336181640625, -0.0214080810546875, 0.006237030029296875, -0.01197052001953125, 0.04083251953125, -0.0238494873046875, -0.0318603515625, 0.04510498046875, -0.016998291015625, 0.04364013671875, -0.0313720703125, 0.029449462890625, -0.02447509765625, 0.04400634765625, -0.0052032470703125, 0.03668212890625, 0.09332275390625, 0.021697998046875, -0.046142578125, 0.002498626708984375, 0.01094818115234375, -0.008880615234375, -0.00933074951171875, 0.00501251220703125, 0.01404571533203125, 0.02899169921875, 0.033355712890625, -0.07525634765625, 0.0089263916015625, 0.0024871826171875, 0.018524169921875, -0.0222015380859375, 0.0355224609375, 0.036529541015625, -0.029693603515625, -0.0272064208984375, -0.004863739013671875, -0.0244598388671875, -0.041168212890625, 0.060516357421875, -0.0008478164672851562, -0.00444793701171875, 0.00014829635620117188, 0.01617431640625, 0.0300445556640625, 0.0274658203125, 0.0227508544921875, -0.005645751953125, -0.00292205810546875, -0.0223236083984375, -0.00032782554626464844, 0.029541015625, 0.051055908203125, -0.01274871826171875, 0.004352569580078125, 0.0031528472900390625, -0.055145263671875, -0.005573272705078125, 0.033599853515625, -0.01123046875, -0.0140838623046875, 0.0202178955078125, -0.0006189346313476562, -0.0165863037109375, -0.0186767578125, -0.00458526611328125, -0.004993438720703125, 0.01055908203125, -0.0191802978515625, 0.0288238525390625, 0.004245758056640625, -0.0027027130126953125, 0.0289154052734375, 0.00571441650390625, -0.014984130859375, -0.0174713134765625, 0.0152587890625, -0.0119171142578125, 0.017242431640625, -0.00914764404296875, -0.01273345947265625, -0.0301666259765625, -0.0758056640625, -0.0206146240234375, -0.0533447265625, -0.0599365234375, -0.0287933349609375, -0.0007691383361816406, -0.055419921875, 0.0248870849609375, 0.0026226043701171875, 0.034332275390625, -0.004787445068359375, 0.0269622802734375, -0.045013427734375, 0.0002148151397705078, -0.01641845703125, 0.0135040283203125, 0.07916259765625, 0.006496429443359375, -0.026214599609375, 0.004085540771484375, -0.0225982666015625, 0.01018524169921875, -0.0096435546875, 0.01219940185546875, -0.02374267578125, 0.030059814453125, -0.0199127197265625, -0.038055419921875, 0.08734130859375, 0.0248260498046875, 0.034454345703125, 0.00021326541900634766, 0.007373809814453125, 0.03662109375, -0.01207733154296875, 0.019927978515625, 0.0215911865234375, -0.0120086669921875, -0.05340576171875, 0.004913330078125, 0.00586700439453125, -0.03863525390625, 0.0052642822265625, 0.043121337890625, 0.0169525146484375, -0.0018930435180664062, -0.02105712890625, 0.00047397613525390625, 0.01007080078125, 0.002925872802734375, 0.0300750732421875, -0.00370025634765625, -0.061431884765625, -0.0235137939453125, 0.01885986328125, -0.009429931640625, 0.046844482421875, -0.00012087821960449219, -0.0110931396484375, -0.00308990478515625, -0.033294677734375, -0.016571044921875, -0.050140380859375, -0.0013265609741210938, 0.0161590576171875, -0.00724029541015625, 0.032073974609375, -0.0265960693359375, 0.0149383544921875, 0.0072174072265625, 0.021331787109375, -0.021942138671875, -0.017120361328125, -0.0142364501953125, -0.04766845703125, -0.047882080078125, -0.004001617431640625, 0.0102691650390625, 0.0047607421875, 0.0221710205078125, 0.0269012451171875, 0.0214385986328125, 0.01052093505859375, 0.01203155517578125, 0.016448974609375, 0.0058441162109375, 0.00484466552734375, -0.031463623046875, 0.06134033203125, 0.00331878662109375, -0.00299072265625, -0.00811004638671875, -0.048370361328125, 0.053009033203125, -0.0212860107421875, -0.0640869140625, 0.038360595703125, -0.001689910888671875, 0.056243896484375, 0.022857666015625, 0.0119476318359375, 0.0254364013671875, 0.01513671875, 0.0204010009765625, 0.0076446533203125, 0.00537872314453125, -0.08648681640625, 0.0364990234375, -0.0258331298828125, -0.00591278076171875, 0.0179290771484375, -0.045623779296875, 0.005779266357421875, 0.006809234619140625, 0.047119140625, -0.0002548694610595703, 0.032318115234375, -0.01546478271484375, 0.031768798828125, -0.05364990234375, -0.01071929931640625, 0.0367431640625, 0.0035114288330078125, -0.0021915435791015625, -0.05853271484375, -0.0008516311645507812, 0.0390625, -0.06634521484375, 0.02783203125, -0.0058135986328125, 0.048065185546875, -0.0283355712890625, -0.0023651123046875, -0.0341796875, -0.054779052734375, 0.035003662109375, -0.01007080078125, -0.02362060546875, -0.0211944580078125, -0.00009775161743164062, 0.0047454833984375, -0.046875, 0.050201416015625, 0.05828857421875, 0.05645751953125, -0.02587890625, 0.00055694580078125, -0.0178985595703125, -0.052276611328125, -0.01898193359375, 0.0538330078125, 0.02734375, 0.0048828125, 0.0023326873779296875, 0.0361328125, 0.043212890625, 0.00681304931640625, 0.02490234375, -0.0114898681640625, 0.0018949508666992188, 0.0178375244140625, 0.003204345703125, -0.01058197021484375, 0.016876220703125, -0.0360107421875, 0.0299224853515625, 0.0186309814453125, 0.0084381103515625, -0.044921875, -0.0201568603515625, 0.031707763671875, 0.01529693603515625, -0.058837890625, -0.052154541015625, -0.0067901611328125, 0.01004791259765625, -0.0241546630859375, -0.0009016990661621094, -0.0091705322265625, -0.0303802490234375, -0.0126800537109375, 0.047882080078125, 0.018280029296875, -0.0286407470703125, 0.045989990234375, 0.053009033203125, -0.042327880859375, -0.0306243896484375, 0.0015411376953125, -0.0655517578125, 0.011444091796875, -0.01479339599609375, 0.0173187255859375, 0.00832366943359375, -0.01496124267578125, 0.0142669677734375, 0.002101898193359375, 0.0023784637451171875, -0.0300750732421875, 0.051544189453125, 0.0201416015625, 0.055389404296875, -0.045623779296875, -0.0222015380859375, 0.01140594482421875, -0.00728607177734375, -0.057373046875, -0.0075531005859375, 0.033966064453125, -0.0264892578125, 0.018157958984375, 0.02423095703125, 0.040740966796875, 0.00226593017578125, 0.004161834716796875, -0.01454925537109375, -0.00942230224609375, -0.01108551025390625, -0.023345947265625, -0.01861572265625, -0.0005626678466796875, -0.057708740234375, 0.03033447265625, 0.0046844482421875, 0.00946044921875, -0.0150299072265625, -0.056365966796875, -0.0248870849609375, -0.00978851318359375, -0.08221435546875, -0.0013666152954101562, -0.013519287109375, -0.09326171875, 0.041107177734375, -0.0005574226379394531, -0.044891357421875, -0.02880859375, 0.037841796875, 0.03118896484375, 0.016143798828125, 0.01861572265625, 0.00849151611328125, 0.0052490234375, -0.032989501953125, -0.0194091796875, 0.004364013671875, -0.012054443359375, 0.01206207275390625, 0.0200958251953125, 0.016326904296875, -0.0062255859375, 0.033355712890625, -0.01416015625, -0.02978515625, -0.0174560546875, -0.043121337890625, -0.0299224853515625, 0.050048828125, -0.010894775390625, -0.00186920166015625, 0.00310516357421875, 0.0333251953125, -0.00984954833984375, 0.0293121337890625, -0.0093536376953125, 0.0306549072265625, 0.06182861328125, -0.033233642578125, 0.0020542144775390625, 0.056854248046875, -0.051177978515625, -0.00923919677734375, 0.0242462158203125, -0.020172119140625, -0.02288818359375, 0.0080108642578125, -0.0188751220703125, -0.0081634521484375, 0.01519012451171875, -0.01029205322265625, 0.0254974365234375, 0.0223846435546875, -0.01214599609375, -0.002208709716796875, -0.013580322265625, -0.01045989990234375, -0.006626129150390625, 0.033050537109375, -0.0181121826171875, 0.037689208984375, 0.031890869140625, 0.0300140380859375, 0.0204620361328125, -0.032562255859375, -0.026611328125, -0.0127716064453125, 0.00374603271484375, -0.04132080078125, -0.0156707763671875, 0.0163116455078125, 0.0164337158203125, 0.01983642578125, 0.013641357421875, 0.006374359130859375, -0.020599365234375, 0.0271148681640625, 0.0231781005859375, -0.0711669921875, -0.04266357421875, -0.0242462158203125, 0.0026035308837890625, -0.0032405853271484375, -0.00954437255859375, -0.007904052734375, 0.01898193359375, -0.0401611328125, 0.06549072265625, -0.029571533203125, -0.0028858184814453125, 0.01314544677734375, 0.0086212158203125, -0.00098419189453125, 0.0149688720703125, -0.0033702850341796875, 0.01186370849609375, 0.00960540771484375, -0.026031494140625, -0.05364990234375, 0.0013914108276367188, -0.046112060546875, 0.035980224609375, 0.0289154052734375, -0.0047149658203125, -0.01342010498046875, 0.006343841552734375, -0.004848480224609375, 0.024627685546875, 0.01013946533203125, -0.0006651878356933594, 0.048492431640625, -0.00832366943359375, -0.006866455078125, -0.0191192626953125, -0.00677490234375, -0.045684814453125, -0.0159759521484375, -0.00199127197265625, -0.02825927734375, 0.038970947265625, -0.04217529296875, 0.00698089599609375, -0.05517578125, -0.033050537109375, -0.032470703125, 0.016815185546875, -0.01192474365234375, 0.0013971328735351562, -0.028961181640625, -0.056060791015625, -0.0019350051879882812, -0.04827880859375, -0.01064300537109375, 0.0029850006103515625, 0.06488037109375, 0.02813720703125, 0.006206512451171875, 0.0322265625, 0.015869140625, 0.0212860107421875, -0.0036296844482421875, 0.03314208984375, -0.0013217926025390625, -0.01224517822265625, 0.03411865234375, 0.0000731348991394043, 0.06097412109375, -0.0426025390625, 0.043670654296875, 0.02093505859375, 0.043304443359375, -0.007781982421875, 0.046600341796875, 0.0018281936645507812, -0.0260162353515625, -0.013214111328125, 0.0008416175842285156, 0.0253448486328125, 0.01436614990234375, -0.0172882080078125, 0.03253173828125, -0.006992340087890625, 0.005062103271484375, -0.00820159912109375, 0.0173492431640625, 0.0313720703125, 0.041259765625, -0.00272369384765625, -0.00849151611328125, 0.003963470458984375, 0.004924774169921875, 0.054229736328125, 0.00803375244140625, 0.01384735107421875, 0.017333984375, 0.050018310546875, -0.0016994476318359375, 0.005336761474609375, -0.00803375244140625, -0.005741119384765625, 0.0244293212890625, -0.0038814544677734375, -0.05126953125, 0.0181884765625, 0.0482177734375, -0.03912353515625, 0.006763458251953125, 0.03314208984375, -0.0240936279296875, -0.0225372314453125, 0.0175628662109375, 0.0183563232421875, -0.048797607421875, -0.0223846435546875, 0.033294677734375, 0.0029697418212890625, -0.00537109375, 0.030731201171875, 0.01210784912109375, 0.0015325546264648438, 0.033477783203125, -0.0226287841796875, 0.00023996829986572266, 0.0206451416015625, 0.001476287841796875, 0.0303802490234375, 0.00972747802734375, -0.028167724609375, -0.0008625984191894531, 0.0224151611328125, -0.01244354248046875, -0.01052093505859375, 0.027252197265625, 0.0228424072265625, 0.036376953125, 0.02655029296875, -0.01251983642578125, 0.01806640625, -0.01412200927734375, -0.0012063980102539062, 0.049835205078125, -0.0037746429443359375, 0.0014562606811523438, 0.006031036376953125, -0.006320953369140625, 0.019073486328125, 0.0032444000244140625, 0.05499267578125, 0.0494384765625, 0.0755615234375, -0.0313720703125, 0.01318359375, 0.0105743408203125, 0.0257568359375, 0.03033447265625, -0.014190673828125, -0.03631591796875, 0.0262908935546875, 0.0178375244140625, -0.025146484375, -0.02655029296875, 0.05084228515625, 0.0005893707275390625, 0.0133209228515625, -0.036834716796875, -0.0087890625, 0.007305145263671875, -0.01513671875, 0.1038818359375, 0.0249176025390625, -0.07763671875, -0.0028705596923828125, -0.03057861328125, -0.00022876262664794922, -0.07025146484375, -0.050323486328125, -0.03900146484375, 0.020294189453125, -0.03125, 0.0016355514526367188, -0.00574493408203125, 0.04327392578125, 0.0189361572265625, 0.0421142578125, -0.0231475830078125, 0.02215576171875, 0.006290435791015625, 0.04180908203125, -0.00612640380859375, 0.035980224609375, 0.01491546630859375, 0.03668212890625, 0.01351165771484375, -0.0214996337890625, 0.0156402587890625, -0.063720703125, 0.002666473388671875, -0.01361846923828125, 0.007335662841796875, -0.000759124755859375, -0.01522064208984375, -0.0105743408203125, -0.0167999267578125, 0.0097503662109375, -0.0150299072265625, -0.01959228515625, 0.0107574462890625, 0.04949951171875, 0.0216217041015625, -0.03863525390625, -0.029266357421875, -0.010589599609375, 0.00914764404296875, -0.001750946044921875, 0.051177978515625, -0.0259552001953125, 0.026275634765625, -0.005855560302734375, -0.03759765625, 0.052490234375, 0.031890869140625, -0.018096923828125, 0.0210113525390625, 0.01256561279296875, 0.005504608154296875, 0.0133514404296875, 0.02978515625, -0.036712646484375, -0.007595062255859375, 0.09869384765625, 0.03131103515625, -0.0433349609375, 0.07110595703125, -0.047119140625, 0.055023193359375, 0.0743408203125, 0.1318359375, -0.0892333984375, 0.01068115234375, 0.037933349609375, -0.050994873046875, 0.040069580078125, -0.016754150390625, 0.01108551025390625, -0.00672149658203125, 0.033203125, 0.05169677734375, -0.00882720947265625, 0.0237274169921875, 0.0222320556640625, -0.00739288330078125, -0.019805908203125, -0.002651214599609375, 0.0177001953125, -0.01788330078125, 0.0247650146484375, 0.002532958984375, -0.00022923946380615234, -0.019622802734375, -0.0019483566284179688, -0.0218048095703125, -0.0205078125, -0.0819091796875, -0.03692626953125, -0.00400543212890625, -0.0099945068359375, 0.005229949951171875, 0.0029430389404296875, 0.044158935546875, 0.035797119140625, -0.004787445068359375, 0.0080108642578125, 0.0036296844482421875, 0.038970947265625, -0.033935546875, -0.0079498291015625, 0.007251739501953125, 0.03472900390625, -0.053619384765625, 0.0157470703125, -0.0572509765625, 0.01241302490234375, 0.00803375244140625, -0.00916290283203125, 0.037139892578125, -0.049468994140625, -0.004222869873046875, 0.045623779296875, -0.04150390625, -0.00908660888671875, -0.04718017578125, -0.0234832763671875, -0.05816650390625, -0.0075531005859375, -0.042938232421875, -0.050445556640625, 0.00907135009765625, -0.0662841796875, -0.0294647216796875, 0.08026123046875, 0.00473785400390625, -0.0115814208984375, 0.004634857177734375, 0.0391845703125, -0.029388427734375, 0.0100860595703125, -0.049896240234375, 0.0445556640625, -0.004150390625, -0.0102386474609375, -0.0307464599609375, 0.0205078125, -0.03424072265625, -0.040679931640625, 0.08404541015625, -0.0035915374755859375, 0.0030918121337890625, 0.0142669677734375, 0.0877685546875, 0.0217132568359375, -0.03106689453125, 0.00859832763671875, -0.0202178955078125, 0.01238250732421875, 0.0247955322265625, -0.040740966796875, 0.004711151123046875, 0.0283203125, -0.0301361083984375, 0.0237579345703125, -0.012603759765625, -0.0284271240234375, -0.030303955078125, 0.0198516845703125, -0.01209259033203125, -0.0299224853515625, -0.024658203125, 0.060821533203125, -0.0288238525390625, 0.06988525390625, 0.005523681640625, 0.000009000301361083984, -0.03265380859375, -0.0299224853515625, 0.0288543701171875, -0.0241241455078125, 0.03228759765625, 0.0313720703125, 0.0271453857421875, 0.0274658203125, -0.05035400390625, 0.006198883056640625, -0.01357269287109375, -0.037811279296875, 0.06805419921875, 0.050323486328125, 0.037384033203125, 0.0004570484161376953, -0.01064300537109375, 0.03790283203125, 0.0787353515625, -0.0474853515625, -0.0023956298828125, -0.00237274169921875, 0.01258087158203125, 0.03521728515625, -0.045501708984375, 0.03240966796875, -0.022186279296875, -0.004482269287109375, -0.018463134765625, -0.0236663818359375, 0.0095672607421875, 0.000518798828125, 0.00013303756713867188, 0.0151214599609375, 0.02044677734375, -0.0119476318359375, -0.01432037353515625, 0.0231475830078125, 0.00150299072265625, 0.00720977783203125, -0.039398193359375, 0.072265625, 0.0045623779296875, 0.00254058837890625, -0.0321044921875, 0.045806884765625, -0.00981903076171875, 0.04217529296875, -0.0294189453125, -0.0206451416015625, 0.01201629638671875, 0.0235595703125, 0.031402587890625, 0.0667724609375, 0.019073486328125, -0.004253387451171875, 0.05474853515625, 0.030242919921875, 0.04095458984375, -0.0192413330078125, -0.021881103515625, -0.02716064453125, -0.032012939453125, -0.01300811767578125, -0.0256195068359375, 0.01096343994140625, -0.004901885986328125, -0.00373077392578125, -0.01824951171875, 0.023895263671875, -0.01039886474609375, -0.027679443359375, 0.041748046875, -0.014495849609375, 0.09539794921875, 0.01041412353515625, -0.0279998779296875, -0.0205078125, 0.0093994140625, -0.0185089111328125, 0.0242462158203125, 0.035980224609375, -0.017120361328125, 0.033905029296875, 0.0347900390625, -0.00897979736328125, 0.00032210350036621094, 0.0198211669921875, -0.0037975311279296875, 0.0256500244140625, 0.0308990478515625, 0.0088043212890625, -0.0131072998046875, -0.00782012939453125, 0.0033550262451171875, 0.0200042724609375, -0.0001958608627319336, 0.07000732421875, -0.03558349609375, 0.0020389556884765625, 0.04754638671875, 0.0223236083984375, -0.0124359130859375, 0.006778717041015625, 0.06219482421875, -0.031524658203125, 0.004146575927734375, -0.00798797607421875, -0.0243072509765625, 0.0233154296875, 0.020416259765625, -0.0006442070007324219, -0.01462554931640625, 0.035552978515625, 0.019683837890625, 0.01346588134765625, 0.037811279296875, -0.01416778564453125, -0.00920867919921875, -0.0293731689453125, -0.033660888671875, 0.036102294921875, 0.0228118896484375, 0.024810791015625, 0.0251922607421875, -0.03692626953125, -0.0165557861328125, 0.0022830963134765625, -0.02813720703125, -0.039459228515625, 0.0142974853515625, -0.0005373954772949219, -0.0173797607421875, -0.0099334716796875, -0.0237274169921875, 0.0304412841796875, -0.01049041748046875, 0.010009765625, 0.0347900390625, -0.04840087890625, 0.005535125732421875, -0.0184173583984375, 0.0203857421875, -0.0282440185546875, -0.0007457733154296875, -0.004947662353515625, -0.00008821487426757812, 0.0131378173828125, -0.0286102294921875, -0.0017843246459960938, -0.035736083984375, -0.019012451171875, -0.01727294921875, -0.0109100341796875, -0.05755615234375, 0.044769287109375, 0.00012010335922241211, 0.03717041015625, -0.0117034912109375, -0.037445068359375, 0.01294708251953125, -0.040283203125, 0.02410888671875, -0.000583648681640625, 0.007137298583984375, -0.0086822509765625, 0.03631591796875, -0.025543212890625, -0.0192108154296875, -0.043182373046875, 0.0213775634765625, -0.03460693359375, 0.029632568359375, 0.044708251953125, -0.026641845703125, -0.0384521484375, 0.061492919921875, 0.0159912109375, 0.09796142578125, 0.0023288726806640625, -0.0186920166015625, 0.03411865234375, -0.0172882080078125, -0.00844573974609375, -0.021209716796875, 0.0099029541015625, -0.03326416015625, -0.028289794921875, -0.0281829833984375, -0.0101776123046875, -0.001811981201171875, -0.043975830078125, -0.06622314453125, 0.04510498046875, -0.007328033447265625, -0.0267791748046875, -0.0709228515625, 0.0350341796875, 0.0107879638671875, 0.0290679931640625, -0.02630615234375, -0.01172637939453125, -0.027496337890625, 0.01285552978515625, 0.0092010498046875, 0.030242919921875, 0.0169677734375, -0.01525115966796875, -0.004062652587890625, 0.0121002197265625, 0.0236663818359375, -0.0024852752685546875, 0.035430908203125, -0.041168212890625, 0.07391357421875, 0.0328369140625, -0.037384033203125, 0.056854248046875, 0.00731658935546875, 0.001308441162109375, -0.025421142578125, -0.03411865234375, 0.0027008056640625, -0.0024871826171875, 0.06146240234375, -0.0109405517578125, 0.005954742431640625, -0.033203125, -0.021209716796875, 0.0226593017578125, -0.0274658203125, -0.0049285888671875, 0.01953125, -0.04168701171875, 0.0025577545166015625, -0.025604248046875, -0.0113677978515625, 0.01071929931640625, -0.00775909423828125, -0.029083251953125, -0.0084381103515625, 0.00876617431640625, -0.00118255615234375, -0.0345458984375, -0.05572509765625, 0.07989501953125, -0.047943115234375, -0.0293121337890625, 0.043548583984375, 0.0265960693359375, -0.00025534629821777344, 0.04541015625, 0.00629425048828125, 0.06512451171875, -0.0270233154296875, -0.01232147216796875, 0.039825439453125, -0.030731201171875, 0.0163421630859375, -0.0011539459228515625, 0.0226287841796875, 0.007205963134765625, -0.0098114013671875, -0.006267547607421875, -0.0136566162109375, 0.0479736328125, -0.04266357421875, 0.10321044921875, -0.0213165283203125, 0.056182861328125, -0.006565093994140625, 0.007572174072265625, -0.0048065185546875, 0.01120758056640625, 0.064453125, -0.038055419921875, -0.01503753662109375, -0.006832122802734375, -0.0252685546875, -0.0482177734375, 0.0263519287109375, -0.0020084381103515625, -0.006927490234375, 0.031494140625 ]
566a9234584777a4c92c10eae045d45f3ef23db2
Wordpress Stackexchange Q: How to retrieve all post titles of a specific post type? I would like to use the titles within a select element in a form I am echoing to the client side. What would be the best way to do this? A: For an hierarchical post type, we have the built-in: wp_dropdown_pages( [ 'post_type' => 'page', 'echo' => 1, 'name' => 'wpse_titles', 'id' => 'wpse-titles' ] ); that will generate a select element with post titles and the post ID as the option value. Example: <select name='wpse_titles' id='wpse-titles'> <option class="level-0" value="1">AAA</option> <option class="level-0" value="2">BBB</option> <option class="level-1" value="3">&nbsp;&nbsp;&nbsp;CCC</option> </select> It's not clear from the documentation for wp_dropdown_pages(), but it's a wrapper for get_pages() and also support it's input arguments.
Q: How to retrieve all post titles of a specific post type? I would like to use the titles within a select element in a form I am echoing to the client side. What would be the best way to do this? A: For an hierarchical post type, we have the built-in: wp_dropdown_pages( [ 'post_type' => 'page', 'echo' => 1, 'name' => 'wpse_titles', 'id' => 'wpse-titles' ] ); that will generate a select element with post titles and the post ID as the option value. Example: <select name='wpse_titles' id='wpse-titles'> <option class="level-0" value="1">AAA</option> <option class="level-0" value="2">BBB</option> <option class="level-1" value="3">&nbsp;&nbsp;&nbsp;CCC</option> </select> It's not clear from the documentation for wp_dropdown_pages(), but it's a wrapper for get_pages() and also support it's input arguments. A: You could - and in my mind, should - use API functions to get the data. // query for your post type $post_type_query = new WP_Query( array ( 'post_type' => 'your-post-type', 'posts_per_page' => -1 ) ); // we need the array of posts $posts_array = $post_type_query->posts; // create a list with needed information // the key equals the ID, the value is the post_title $post_title_array = wp_list_pluck( $posts_array, 'post_title', 'ID' ); A: Query all post titles of a specific post type // Function that returns post titles from specific post type as form select element // returns null if found no results. function output_projects_list() { global $wpdb; $custom_post_type = 'page'; // define your custom post type slug here // A sql query to return all post titles $results = $wpdb->get_results( $wpdb->prepare( "SELECT ID, post_title FROM {$wpdb->posts} WHERE post_type = %s and post_status = 'publish'", $custom_post_type ), ARRAY_A ); // Return null if we found no results if ( ! $results ) return; // HTML for our select printing post titles as loop $output = '<select name="project" id="project">'; foreach( $results as $index => $post ) { $output .= '<option value="' . $post['ID'] . '">' . $post['post_title'] . '</option>'; } $output .= '</select>'; // end of select element // get the html return $output; } // Then in your project just call the function // Where you want the select form to appear echo output_projects_list(); A: The way I have always done things like this is using get_posts and foreach like something below: // Create our arguments for getting our post $args = [ 'post_type'=>'custom-slug' ]; // we get an array of posts objects $posts = get_posts($args); // start our string $str = '<select>'; // then we create an option for each post foreach($posts as $key=>$post){ $str .= '<option>'.$post->post_title.'</option>'; } $str .= '</select>'; echo $str;
wordpress
{ "language": "en", "length": 423, "provenance": "stackexchange_00019.jsonl.gz:468523", "question_score": "11", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/240043" }
[ 0.025360107421875, -0.007183074951171875, -0.0122833251953125, 0.0169830322265625, -0.01194000244140625, -0.043853759765625, 0.05865478515625, -0.021453857421875, 0.035919189453125, 0.01335906982421875, -0.03369140625, -0.005340576171875, -0.01189422607421875, -0.02191162109375, -0.01412200927734375, -0.031524658203125, 0.03936767578125, -0.045318603515625, 0.0218353271484375, -0.0079803466796875, 0.0013780593872070312, 0.0180511474609375, 0.034881591796875, 0.0167999267578125, -0.0008325576782226562, -0.035888671875, 0.043121337890625, -0.024322509765625, 0.006870269775390625, -0.015838623046875, 0.013641357421875, 0.012847900390625, 0.018157958984375, -0.058258056640625, 0.0972900390625, 0.024810791015625, 0.037322998046875, -0.0316162109375, 0.034912109375, -0.00417327880859375, 0.0044403076171875, 0.007007598876953125, 0.01364898681640625, 0.022125244140625, -0.0291900634765625, -0.01389312744140625, 0.009918212890625, 0.0035991668701171875, -0.01526641845703125, -0.0305328369140625, 0.028411865234375, -0.02197265625, 0.0611572265625, -0.03594970703125, -0.0131683349609375, -0.00922393798828125, 0.02044677734375, 0.0220794677734375, 0.04046630859375, -0.05377197265625, -0.06597900390625, -0.0189971923828125, 0.037750244140625, -0.01727294921875, 0.00027942657470703125, 0.0242919921875, 0.051239013671875, 0.00797271728515625, 0.011199951171875, -0.015838623046875, -0.010894775390625, -0.006145477294921875, 0.00830841064453125, -0.03912353515625, -0.006740570068359375, -0.0110931396484375, -0.027740478515625, -0.05706787109375, 0.03704833984375, -0.01241302490234375, 0.0161895751953125, -0.023590087890625, -0.03143310546875, -0.023468017578125, 0.04046630859375, 0.002246856689453125, -0.006046295166015625, -0.0091705322265625, -0.0281524658203125, -0.01812744140625, -0.0176544189453125, -0.0189971923828125, -0.0543212890625, 0.045928955078125, 0.00402069091796875, 0.0014505386352539062, 0.01593017578125, 0.04071044921875, -0.0244903564453125, 0.01183319091796875, -0.006206512451171875, -0.0258636474609375, 0.032623291015625, -0.034912109375, 0.0189971923828125, 0.0254974365234375, -0.02880859375, -0.0197296142578125, 0.04888916015625, 0.027252197265625, 0.006153106689453125, 0.026824951171875, 0.0005283355712890625, 0.01457977294921875, -0.0074310302734375, -0.01178741455078125, -0.0477294921875, 0.01947021484375, -0.00984954833984375, 0.01117706298828125, -0.0030193328857421875, 0.00025177001953125, 0.0223846435546875, -0.0328369140625, 0.00920867919921875, 0.006610870361328125, -0.0309906005859375, -0.03594970703125, 0.01104736328125, 0.0284881591796875, -0.0338134765625, 0.01494598388671875, 0.069580078125, -0.0033779144287109375, -0.00478363037109375, -0.0276641845703125, -0.048492431640625, -0.020050048828125, 0.004169464111328125, 0.006946563720703125, 0.01258087158203125, -0.03729248046875, 0.0268096923828125, 0.032501220703125, 0.00572967529296875, 0.007556915283203125, 0.02679443359375, 0.0097198486328125, -0.01538848876953125, -0.023101806640625, -0.01016998291015625, 0.004062652587890625, 0.0263824462890625, 0.0033855438232421875, -0.0144195556640625, -0.03094482421875, 0.037139892578125, -0.04339599609375, 0.007965087890625, -0.06488037109375, -0.00931549072265625, 0.0171966552734375, 0.038299560546875, -0.006198883056640625, -0.01499176025390625, -0.0185699462890625, -0.0220794677734375, -0.01763916015625, 0.0161895751953125, -0.00274658203125, 0.0215911865234375, -0.04840087890625, -0.01082611083984375, -0.00289154052734375, -0.006198883056640625, 0.036834716796875, -0.0452880859375, -0.021820068359375, 0.0244598388671875, -0.01432037353515625, -0.039093017578125, -0.033111572265625, -0.00597381591796875, 0.0093994140625, -0.060150146484375, 0.0228424072265625, 0.0002446174621582031, 0.067138671875, 0.028411865234375, 0.026885986328125, 0.00919342041015625, 0.00577545166015625, -0.0382080078125, -0.0186614990234375, 0.003017425537109375, -0.004734039306640625, -0.027191162109375, -0.0096435546875, -0.01021575927734375, 0.046630859375, -0.00327301025390625, -0.0034942626953125, 0.02154541015625, 0.032440185546875, 0.02716064453125, -0.00986480712890625, 0.0051422119140625, -0.007572174072265625, 0.042327880859375, 0.0269012451171875, 0.007965087890625, 0.017547607421875, -0.01812744140625, -0.0506591796875, -0.06488037109375, 0.018463134765625, -0.0279693603515625, -0.027374267578125, -0.0296478271484375, -0.00418853759765625, -0.03875732421875, -0.040435791015625, -0.044921875, 0.044952392578125, 0.07586669921875, 0.034027099609375, -0.009033203125, 0.00995635986328125, 0.1102294921875, 0.0313720703125, 0.0004405975341796875, -0.0285186767578125, 0.028076171875, 0.050018310546875, -0.046417236328125, -0.0289459228515625, -0.04559326171875, -0.05047607421875, 0.0066680908203125, 0.06732177734375, 0.0286102294921875, 0.05682373046875, 0.0186920166015625, 0.011138916015625, 0.036285400390625, -0.0587158203125, -0.004528045654296875, -0.0037517547607421875, 0.0026454925537109375, 0.0328369140625, 0.0273895263671875, 0.0282745361328125, 0.00878143310546875, 0.00016188621520996094, 0.019775390625, 0.0399169921875, -0.0270233154296875, 0.01363372802734375, -0.009429931640625, -0.01904296875, -0.0006480216979980469, -0.049652099609375, -0.0261688232421875, -0.011871337890625, 0.08270263671875, 0.030426025390625, 0.0517578125, 0.03778076171875, -0.054901123046875, 0.040679931640625, 0.0181884765625, -0.003696441650390625, 0.004878997802734375, 0.0262908935546875, 0.0352783203125, -0.032806396484375, -0.0360107421875, -0.006252288818359375, -0.0086669921875, 0.0017957687377929688, -0.004375457763671875, 0.034759521484375, -0.0012111663818359375, -0.0230712890625, 0.00490570068359375, -0.058563232421875, 0.006748199462890625, 0.006927490234375, 0.01343536376953125, 0.0289154052734375, 0.01580810546875, 0.0215606689453125, -0.0156402587890625, 0.043060302734375, 0.01331329345703125, -0.010284423828125, 0.03668212890625, -0.047760009765625, 0.036529541015625, -0.0196075439453125, 0.07080078125, 0.06927490234375, -0.0099945068359375, 0.0177459716796875, -0.01557159423828125, -0.0203094482421875, 0.01210784912109375, -0.0083160400390625, -0.0287017822265625, -0.0190582275390625, -0.048004150390625, 0.01087188720703125, 0.006961822509765625, 0.0546875, 0.0013446807861328125, -0.04364013671875, 0.0062408447265625, 0.0301666259765625, -0.076904296875, -0.0635986328125, 0.04473876953125, -0.0721435546875, -0.01708984375, -0.04974365234375, -0.0382080078125, 0.0057830810546875, -0.0374755859375, -0.0004851818084716797, 0.034576416015625, -0.0300140380859375, -0.060882568359375, -0.017333984375, -0.06463623046875, -0.0174713134765625, -0.0017766952514648438, 0.004913330078125, 0.01186370849609375, 0.0489501953125, 0.01432037353515625, -0.045989990234375, 0.0019378662109375, 0.0706787109375, -0.024658203125, -0.0153350830078125, 0.0032749176025390625, -0.0004737377166748047, 0.007442474365234375, 0.0182952880859375, -0.03582763671875, 0.00844573974609375, -0.007709503173828125, -0.0167999267578125, 0.0012941360473632812, 0.02276611328125, 0.0229644775390625, -0.00661468505859375, 0.004299163818359375, 0.0579833984375, 0.0257415771484375, -0.007568359375, -0.049530029296875, -0.0120086669921875, -0.06512451171875, -0.0178985595703125, 0.0242919921875, 0.02685546875, 0.003841400146484375, 0.01076507568359375, 0.002498626708984375, 0.02020263671875, 0.02972412109375, -0.02301025390625, 0.032379150390625, -0.0059967041015625, 0.0145721435546875, -0.022918701171875, 0.045745849609375, -0.0016756057739257812, -0.00855255126953125, 0.02362060546875, 0.00771331787109375, 0.0220794677734375, -0.0258026123046875, 0.00615692138671875, -0.09722900390625, 0.04290771484375, -0.050628662109375, -0.004123687744140625, -0.032135009765625, -0.0281524658203125, 0.0287933349609375, 0.1085205078125, -0.06597900390625, -0.0214385986328125, -0.0266265869140625, 0.0213470458984375, -0.01409912109375, -0.060821533203125, -0.0095977783203125, -0.0164947509765625, -0.08648681640625, 0.0175628662109375, -0.002227783203125, -0.0167236328125, -0.0150604248046875, 0.004241943359375, -0.04937744140625, -0.0333251953125, 0.007190704345703125, -0.053619384765625, 0.017181396484375, 0.0006513595581054688, -0.03021240234375, 0.0068359375, -0.01160430908203125, -0.044403076171875, -0.0570068359375, -0.0165863037109375, 0.030517578125, 0.023101806640625, -0.03173828125, -0.00907135009765625, -0.0226593017578125, 0.030548095703125, 0.012542724609375, 0.051666259765625, 0.005542755126953125, 0.0015230178833007812, -0.020233154296875, -0.0162353515625, 0.0188140869140625, -0.043670654296875, -0.00873565673828125, -0.023040771484375, -0.01102447509765625, 0.0015859603881835938, -0.031280517578125, 0.0278778076171875, -0.0229339599609375, -0.007152557373046875, -0.050384521484375, -0.0250396728515625, -0.008026123046875, 0.0045166015625, -0.00807952880859375, -0.00566864013671875, -0.041595458984375, -0.06524658203125, 0.06561279296875, 0.063232421875, -0.017791748046875, -0.0128326416015625, 0.019927978515625, 0.00021779537200927734, -0.079833984375, -0.036895751953125, -0.02618408203125, 0.0180816650390625, -0.03326416015625, 0.06304931640625, 0.004680633544921875, -0.021453857421875, 0.12396240234375, -0.03131103515625, 0.0023956298828125, -0.002048492431640625, 0.0086669921875, 0.004123687744140625, -0.03436279296875, 0.0199127197265625, 0.0017995834350585938, 0.005802154541015625, 0.038909912109375, -0.0111846923828125, -0.042236328125, -0.00370025634765625, 0.05462646484375, -0.01180267333984375, 0.02838134765625, -0.032012939453125, -0.031707763671875, -0.0005779266357421875, -0.0010118484497070312, 0.0369873046875, 0.03424072265625, 0.0038204193115234375, 0.014739990234375, 0.00418853759765625, 0.009979248046875, 0.00859832763671875, 0.03662109375, 0.0213470458984375, 0.051513671875, -0.0177459716796875, 0.00033354759216308594, -0.0210723876953125, -0.0114288330078125, 0.038482666015625, -0.002994537353515625, -0.049285888671875, 0.017791748046875, -0.0182342529296875, 0.052337646484375, 0.0306243896484375, 0.0193939208984375, 0.021575927734375, 0.050994873046875, -0.016204833984375, -0.025665283203125, 0.01305389404296875, 0.029266357421875, -0.03851318359375, 0.0298919677734375, 0.0291748046875, -0.00112152099609375, -0.001255035400390625, 0.1036376953125, -0.004123687744140625, 0.054107666015625, -0.0242767333984375, 0.03271484375, 0.046661376953125, 0.007244110107421875, 0.01157379150390625, 0.004726409912109375, -0.002197265625, -0.003589630126953125, 0.0175933837890625, -0.033599853515625, -0.00270843505859375, 0.04046630859375, 0.035308837890625, 0.032867431640625, -0.00188446044921875, -0.02532958984375, -0.00787353515625, -0.0057525634765625, 0.0303802490234375, -0.0000769495964050293, -0.03863525390625, -0.027618408203125, 0.0212860107421875, 0.03924560546875, -0.0071868896484375, -0.009918212890625, 0.006320953369140625, 0.019317626953125, 0.01470947265625, 0.017608642578125, -0.06463623046875, 0.032135009765625, 0.05621337890625, -0.04949951171875, -0.02337646484375, 0.010101318359375, -0.062286376953125, -0.012054443359375, -0.01195526123046875, -0.02362060546875, 0.04730224609375, -0.041778564453125, 0.070556640625, -0.036834716796875, -0.005008697509765625, -0.022491455078125, 0.0011014938354492188, 0.060302734375, 0.07012939453125, -0.034576416015625, 0.0195770263671875, -0.0411376953125, -0.018646240234375, -0.00017189979553222656, -0.06353759765625, -0.042755126953125, -0.042144775390625, -0.003826141357421875, 0.004436492919921875, 0.027099609375, 0.035614013671875, 0.00789642333984375, 0.022308349609375, -0.0229034423828125, -0.006359100341796875, -0.019012451171875, 0.0869140625, -0.0168914794921875, 0.03466796875, -0.012481689453125, 0.016448974609375, -0.033599853515625, 0.0217132568359375, -0.0000286102294921875, -0.0687255859375, -0.03314208984375, 0.0055694580078125, -0.0248870849609375, 0.0467529296875, 0.0277252197265625, 0.007904052734375, 0.0171966552734375, -0.0021648406982421875, 0.0009074211120605469, 0.0004687309265136719, -0.029022216796875, 0.008880615234375, -0.0367431640625, 0.0831298828125, -0.018829345703125, -0.0016164779663085938, -0.015899658203125, -0.021514892578125, 0.0029754638671875, -0.0126800537109375, -0.006587982177734375, 0.039459228515625, -0.02288818359375, 0.021575927734375, 0.07611083984375, 0.022308349609375, 0.04278564453125, 0.004611968994140625, 0.00811004638671875, 0.0181884765625, 0.018585205078125, -0.0201416015625, -0.02093505859375, 0.044921875, 0.005275726318359375, -0.0172882080078125, 0.0338134765625, -0.0305023193359375, -0.0198211669921875, 0.016693115234375, 0.03173828125, -0.02960205078125, 0.02099609375, 0.02252197265625, 0.0224151611328125, 0.0124969482421875, -0.004787445068359375, -0.005809783935546875, -0.02581787109375, 0.01358795166015625, 0.024505615234375, -0.018585205078125, -0.0005488395690917969, 0.002956390380859375, -0.007167816162109375, -0.0161895751953125, 0.05255126953125, 0.0165557861328125, -0.0196075439453125, -0.0160675048828125, 0.01013946533203125, -0.004077911376953125, -0.042388916015625, 0.01220703125, -0.01171112060546875, -0.0223541259765625, -0.07366943359375, 0.0008721351623535156, 0.01044464111328125, -0.01873779296875, -0.0090789794921875, 0.03936767578125, -0.01849365234375, 0.0758056640625, -0.026947021484375, 0.01462554931640625, 0.0396728515625, 0.00017762184143066406, -0.052154541015625, -0.0262298583984375, 0.005825042724609375, 0.0283203125, -0.0283660888671875, 0.032958984375, -0.02947998046875, -0.0111083984375, -0.0045013427734375, -0.0200042724609375, 0.051177978515625, 0.01425933837890625, -0.029754638671875, 0.01010894775390625, -0.00036215782165527344, 0.0139007568359375, 0.0003504753112792969, 0.0301666259765625, -0.018829345703125, 0.00829315185546875, 0.00901031494140625, 0.007198333740234375, -0.016693115234375, -0.000026047229766845703, -0.044525146484375, 0.05828857421875, -0.01131439208984375, -0.006649017333984375, 0.0323486328125, 0.0233917236328125, -0.050811767578125, -0.0034732818603515625, -0.05047607421875, 0.06951904296875, 0.0170745849609375, 0.04437255859375, -0.03857421875, -0.010040283203125, 0.01824951171875, 0.03192138671875, -0.012786865234375, -0.01220703125, -0.0173492431640625, -0.031768798828125, 0.051025390625, 0.07965087890625, 0.0517578125, -0.005626678466796875, 0.01102447509765625, 0.0090179443359375, 0.061126708984375, -0.0438232421875, 0.02349853515625, -0.0250701904296875, 0.032928466796875, 0.0262298583984375, 0.0084991455078125, 0.0026226043701171875, 0.029266357421875, -0.0623779296875, -0.0233154296875, 0.00909423828125, -0.0024356842041015625, 0.02520751953125, 0.0009598731994628906, 0.059356689453125, 0.044097900390625, -0.039215087890625, -0.0296478271484375, -0.0259246826171875, 0.040374755859375, -0.0030670166015625, 0.020172119140625, 0.024017333984375, 0.0192413330078125, 0.00960540771484375, -0.004802703857421875, 0.0152130126953125, 0.0010194778442382812, 0.007709503173828125, 0.037139892578125, 0.0031280517578125, 0.01157379150390625, -0.045440673828125, 0.0123748779296875, 0.049652099609375, 0.040313720703125, -0.04815673828125, -0.059356689453125, 0.024322509765625, 0.01558685302734375, -0.020233154296875, 0.0157623291015625, -0.00243377685546875, -0.004955291748046875, 0.083251953125, 0.002277374267578125, -0.0290069580078125, 0.0188446044921875, 0.031890869140625, 0.001373291015625, -0.0161590576171875, 0.008026123046875, -0.038787841796875, -0.00952911376953125, -0.00814056396484375, 0.0094146728515625, 0.033843994140625, 0.0205230712890625, 0.03619384765625, -0.03558349609375, -0.00949859619140625, 0.01061248779296875, 0.026824951171875, 0.03619384765625, -0.02325439453125, 0.00490570068359375, -0.0244598388671875, 0.018890380859375, 0.0027408599853515625, 0.0712890625, 0.028656005859375, 0.055450439453125, 0.031524658203125, 0.0013647079467773438, 0.01788330078125, 0.01385498046875, -0.0060882568359375, -0.004245758056640625, -0.0039825439453125, -0.0123748779296875, 0.0280914306640625, -0.0309600830078125, 0.0189056396484375, 0.0223388671875, 0.0257110595703125, 0.0027599334716796875, 0.042999267578125, -0.00762939453125, 0.0180816650390625, 0.0312042236328125, -0.0110321044921875, -0.0023174285888671875, 0.003170013427734375, -0.1160888671875, -0.0292816162109375, -0.00811004638671875, -0.01248931884765625, 0.030853271484375, 0.04486083984375, -0.025726318359375, -0.007274627685546875, -0.012847900390625, -0.012908935546875, 0.043975830078125, 0.005496978759765625, -0.0278472900390625, 0.043701171875, 0.0274505615234375, -0.0112762451171875, -0.06317138671875, -0.021728515625, -0.0118408203125, 0.00838470458984375, 0.0009026527404785156, -0.003337860107421875, 0.029266357421875, 0.024322509765625, -0.0181884765625, 0.0282135009765625, -0.032501220703125, -0.0274200439453125, 0.068115234375, 0.005123138427734375, -0.0005898475646972656, -0.0161285400390625, -0.01910400390625, 0.0309906005859375, 0.0218353271484375, 0.002166748046875, 0.0270233154296875, -0.036834716796875, 0.013336181640625, -0.0149688720703125, 0.0225677490234375, -0.003231048583984375, 0.0308380126953125, 0.001026153564453125, -0.040679931640625, 0.06787109375, 0.0732421875, 0.033477783203125, 0.0177154541015625, -0.005828857421875, 0.00852203369140625, 0.01219940185546875, 0.004283905029296875, 0.012115478515625, 0.0302581787109375, -0.0438232421875, -0.004856109619140625, 0.0291290283203125, -0.002445220947265625, -0.002399444580078125, 0.043426513671875, -0.007175445556640625, 0.0311126708984375, -0.0179901123046875, -0.0306243896484375, -0.02716064453125, 0.027252197265625, -0.0006432533264160156, 0.0097808837890625, -0.034912109375, 0.0131683349609375, -0.03955078125, -0.0265655517578125, -0.0245819091796875, -0.04022216796875, -0.005573272705078125, 0.0166168212890625, -0.01806640625, -0.0036182403564453125, -0.021026611328125, -0.02069091796875, -0.011505126953125, -0.000545501708984375, -0.01387786865234375, 0.00565338134765625, -0.01009368896484375, -0.00913238525390625, -0.02880859375, -0.00888824462890625, 0.016326904296875, 0.0491943359375, -0.047760009765625, 0.01275634765625, -0.0180816650390625, -0.038116455078125, -0.0278778076171875, 0.01123046875, 0.029693603515625, -0.02874755859375, -0.015472412109375, 0.0273284912109375, 0.020172119140625, 0.062744140625, 0.022918701171875, -0.0207366943359375, 0.0269927978515625, -0.0009293556213378906, -0.030181884765625, -0.066650390625, 0.023345947265625, -0.0765380859375, -0.008544921875, -0.036590576171875, 0.0183868408203125, 0.0194549560546875, -0.0283355712890625, -0.036773681640625, 0.11663818359375, -0.019134521484375, 0.005374908447265625, -0.033203125, 0.026214599609375, 0.01214599609375, 0.006549835205078125, 0.00887298583984375, -0.0389404296875, -0.02471923828125, -0.00007617473602294922, 0.02099609375, 0.04547119140625, 0.02435302734375, 0.019378662109375, -0.04998779296875, 0.0008435249328613281, -0.027252197265625, 0.021728515625, 0.034088134765625, -0.0223846435546875, 0.0291748046875, 0.038787841796875, -0.053802490234375, -0.0186004638671875, -0.0291900634765625, -0.0019779205322265625, 0.0265960693359375, -0.01328277587890625, -0.054779052734375, -0.038543701171875, 0.0236358642578125, 0.026641845703125, 0.029022216796875, -0.00713348388671875, -0.0200042724609375, -0.0211944580078125, -0.036865234375, -0.00496673583984375, 0.0140533447265625, -0.0163421630859375, 0.0266571044921875, -0.03399658203125, -0.017486572265625, 0.009033203125, -0.0155792236328125, -0.024078369140625, -0.01538848876953125, -0.01090240478515625, -0.006504058837890625, -0.036895751953125, 0.0180206298828125, 0.025970458984375, -0.034423828125, -0.035614013671875, 0.01537322998046875, 0.0021648406982421875, -0.00817108154296875, 0.01139068603515625, -0.036651611328125, 0.017242431640625, 0.00494384765625, 0.013824462890625, -0.005615234375, 0.037017822265625, -0.0169219970703125, 0.025634765625, -0.0269927978515625, 0.0458984375, 0.0280914306640625, 0.0369873046875, -0.049224853515625, 0.07574462890625, 0.03173828125, 0.015777587890625, 0.005435943603515625, 0.056060791015625, -0.0030803680419921875, 0.04412841796875, 0.029510498046875, -0.03302001953125, 0.04144287109375, -0.03509521484375, -0.0024127960205078125, -0.00777435302734375, -0.048248291015625, -0.02874755859375, 0.0236968994140625, 0.06024169921875, -0.03466796875, 0.0157318115234375 ]
85bdf0f49654be3dfc0f7a5a5e2ed17cc100f8ef
Wordpress Stackexchange Q: the_post_navigation seems to ignore same category filter I have single CPT called portfolio. There approx 40 items. half have a category assigned of 'projects', and the other half 'gallery'. When you are on the single portfolio page, I would like to have post navigation only relate to posts of a certain category. However when I am at the oldest post of 'Gallery' I can see the previous post link to 'project'. My code is below.. Am I missing something? thanks <?php the_post_navigation(array( 'prev_text'=>__('previous project: %title'), 'next_text'=>__('next project: %title'), 'in_same_term' => true, )); ?> A: You mention a custom post type, are you also using a custom taxonomy? If so you need to specify this taxonomy in your function call: the_post_navigation(array( 'prev_text'=>__('previous project: %title'), 'next_text'=>__('next project: %title'), 'in_same_term' => true, 'taxonomy' => 'wpse240053_custom_taxonomy_name', )); By default the built-in category taxonomy for Posts is used. This requires WP4.4 or later.
Q: the_post_navigation seems to ignore same category filter I have single CPT called portfolio. There approx 40 items. half have a category assigned of 'projects', and the other half 'gallery'. When you are on the single portfolio page, I would like to have post navigation only relate to posts of a certain category. However when I am at the oldest post of 'Gallery' I can see the previous post link to 'project'. My code is below.. Am I missing something? thanks <?php the_post_navigation(array( 'prev_text'=>__('previous project: %title'), 'next_text'=>__('next project: %title'), 'in_same_term' => true, )); ?> A: You mention a custom post type, are you also using a custom taxonomy? If so you need to specify this taxonomy in your function call: the_post_navigation(array( 'prev_text'=>__('previous project: %title'), 'next_text'=>__('next project: %title'), 'in_same_term' => true, 'taxonomy' => 'wpse240053_custom_taxonomy_name', )); By default the built-in category taxonomy for Posts is used. This requires WP4.4 or later.
wordpress
{ "language": "en", "length": 149, "provenance": "stackexchange_00019.jsonl.gz:468524", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/240053" }
[ 0.04632568359375, -0.0015773773193359375, 0.00621795654296875, -0.018890380859375, 0.027923583984375, -0.0328369140625, 0.05084228515625, -0.0250091552734375, 0.0145111083984375, -0.00762176513671875, -0.0703125, -0.0204620361328125, -0.0689697265625, -0.020721435546875, -0.016632080078125, -0.07208251953125, 0.0190887451171875, -0.0153656005859375, 0.0177764892578125, -0.0104522705078125, 0.00868988037109375, -0.006938934326171875, 0.00926971435546875, 0.004138946533203125, 0.0093841552734375, -0.0128173828125, 0.0309906005859375, -0.018646240234375, 0.0106048583984375, -0.020721435546875, 0.007106781005859375, -0.0269775390625, -0.023834228515625, 0.0245513916015625, 0.01345062255859375, -0.03582763671875, -0.018951416015625, 0.033355712890625, 0.023162841796875, -0.0092926025390625, 0.0272369384765625, -0.014190673828125, -0.0167999267578125, -0.0209503173828125, -0.01558685302734375, -0.0462646484375, 0.03173828125, -0.034423828125, 0.0300750732421875, -0.020538330078125, 0.0233001708984375, -0.01311492919921875, 0.02899169921875, -0.02081298828125, -0.03436279296875, -0.004741668701171875, -0.016876220703125, -0.0207061767578125, 0.027984619140625, 0.0269622802734375, -0.00786590576171875, -0.0192718505859375, 0.006458282470703125, -0.056640625, 0.0003039836883544922, 0.005069732666015625, 0.0361328125, 0.008880615234375, -0.0452880859375, -0.01129150390625, 0.041473388671875, -0.02947998046875, 0.00177001953125, -0.0110931396484375, -0.02740478515625, -0.0164794921875, 0.0234375, -0.03271484375, 0.00844573974609375, 0.0057525634765625, -0.0435791015625, 0.005924224853515625, -0.06500244140625, -0.035552978515625, 0.003875732421875, -0.005496978759765625, -0.0296173095703125, 0.00479888916015625, -0.04986572265625, -0.0195465087890625, -0.0338134765625, -0.01165771484375, -0.054840087890625, -0.0026607513427734375, -0.00890350341796875, -0.0018863677978515625, 0.00893402099609375, 0.051727294921875, -0.01373291015625, 0.021575927734375, -0.019805908203125, -0.0247344970703125, 0.0195770263671875, -0.038909912109375, 0.028656005859375, 0.01541900634765625, -0.0048065185546875, 0.007236480712890625, 0.0640869140625, 0.01453399658203125, -0.0038776397705078125, 0.06463623046875, -0.0094146728515625, -0.0137939453125, -0.019500732421875, 0.01503753662109375, -0.00360107421875, -0.024261474609375, -0.012176513671875, -0.0082244873046875, -0.01558685302734375, 0.01099395751953125, 0.0230255126953125, -0.0418701171875, 0.04150390625, 0.0141448974609375, -0.0243377685546875, -0.022735595703125, 0.070068359375, -0.0252685546875, -0.0504150390625, 0.01129913330078125, 0.052001953125, 0.0245208740234375, 0.033416748046875, -0.0034770965576171875, 0.0176849365234375, -0.00864410400390625, -0.0262298583984375, 0.0272674560546875, -0.017730712890625, -0.0105743408203125, 0.002910614013671875, -0.035858154296875, 0.0209503173828125, -0.006649017333984375, 0.0186614990234375, 0.031494140625, 0.009185791015625, -0.018951416015625, 0.02642822265625, 0.0029087066650390625, 0.029296875, 0.0177001953125, -0.03509521484375, -0.0218353271484375, 0.017547607421875, -0.0227813720703125, -0.01434326171875, -0.0416259765625, 0.045654296875, 0.018463134765625, 0.00799560546875, -0.07012939453125, -0.0762939453125, -0.03973388671875, -0.065185546875, -0.0191192626953125, 0.0142822265625, 0.018310546875, 0.0037593841552734375, -0.0073089599609375, -0.01513671875, -0.017364501953125, -0.01320648193359375, -0.00621795654296875, 0.004150390625, -0.0103759765625, 0.00884246826171875, 0.058868408203125, -0.009674072265625, -0.044097900390625, 0.004009246826171875, -0.015838623046875, -0.060760498046875, -0.0032596588134765625, 0.00647735595703125, -0.0051422119140625, 0.01013946533203125, 0.005542755126953125, 0.0740966796875, 0.02056884765625, -0.035186767578125, -0.0038166046142578125, 0.00443267822265625, -0.01494598388671875, 0.0247955322265625, -0.0010423660278320312, 0.0082550048828125, -0.00102996826171875, 0.003604888916015625, 0.0148162841796875, -0.0012483596801757812, 0.002986907958984375, -0.05029296875, 0.01305389404296875, -0.021636962890625, 0.0372314453125, -0.03607177734375, 0.0172576904296875, 0.0237274169921875, 0.003002166748046875, -0.028411865234375, -0.0102996826171875, -0.004581451416015625, -0.0013561248779296875, -0.01053619384765625, -0.05328369140625, -0.0009131431579589844, -0.03851318359375, 0.014434814453125, 0.032867431640625, -0.0220794677734375, 0.030364990234375, 0.099609375, 0.01435089111328125, -0.010833740234375, -0.019256591796875, 0.05792236328125, 0.0216064453125, -0.08502197265625, 0.0152130126953125, 0.0293731689453125, 0.00537109375, -0.032073974609375, 0.0143585205078125, 0.0261077880859375, -0.0172882080078125, -0.0030364990234375, 0.034423828125, 0.015716552734375, -0.0020427703857421875, -0.0357666015625, 0.01143646240234375, 0.0345458984375, -0.044219970703125, -0.0272369384765625, 0.029693603515625, -0.0260162353515625, 0.0546875, 0.0255584716796875, 0.051849365234375, -0.005489349365234375, 0.036468505859375, -0.0020275115966796875, 0.0389404296875, 0.0005383491516113281, -0.01444244384765625, -0.006412506103515625, -0.00638580322265625, 0.0049591064453125, -0.0094146728515625, -0.0406494140625, 0.01029205322265625, 0.0469970703125, -0.0167388916015625, 0.031646728515625, 0.003673553466796875, -0.0260162353515625, -0.0272674560546875, 0.026214599609375, 0.0273590087890625, 0.01410675048828125, 0.033782958984375, 0.028717041015625, 0.004177093505859375, -0.0372314453125, -0.016387939453125, 0.0312042236328125, 0.0103607177734375, -0.024932861328125, 0.012542724609375, 0.005035400390625, -0.005229949951171875, -0.0161590576171875, -0.02191162109375, 0.02392578125, -0.00844573974609375, -0.0159149169921875, -0.034942626953125, 0.0206298828125, -0.0251312255859375, -0.0323486328125, 0.011383056640625, -0.0085296630859375, -0.040252685546875, -0.041717529296875, -0.0428466796875, 0.039581298828125, -0.05419921875, 0.0153045654296875, 0.05938720703125, -0.0159759521484375, 0.022186279296875, -0.00284576416015625, 0.01270294189453125, -0.0010356903076171875, 0.0018157958984375, -0.021270751953125, -0.0046844482421875, -0.0313720703125, 0.0162506103515625, 0.0269622802734375, 0.0023822784423828125, 0.003986358642578125, -0.0214385986328125, -0.004375457763671875, 0.024017333984375, -0.07501220703125, -0.05487060546875, -0.0126953125, -0.059173583984375, 0.05145263671875, 0.016204833984375, -0.007122039794921875, -0.043701171875, 0.055145263671875, 0.0262603759765625, 0.004596710205078125, -0.0341796875, -0.088623046875, -0.07855224609375, -0.07391357421875, 0.006534576416015625, -0.0129547119140625, 0.0077056884765625, 0.017913818359375, 0.0433349609375, 0.0195770263671875, -0.060333251953125, 0.023651123046875, 0.028350830078125, -0.040679931640625, 0.034576416015625, 0.0146026611328125, -0.0233154296875, -0.000720977783203125, 0.023834228515625, 0.0237274169921875, 0.00989532470703125, -0.01324462890625, -0.012237548828125, 0.0193328857421875, 0.005931854248046875, 0.04412841796875, -0.003498077392578125, -0.0296478271484375, 0.041717529296875, 0.055755615234375, -0.01195526123046875, -0.022674560546875, -0.030517578125, -0.06085205078125, -0.008514404296875, 0.042205810546875, 0.01180267333984375, -0.038818359375, 0.01348876953125, -0.036224365234375, -0.0009279251098632812, 0.00514984130859375, -0.057464599609375, 0.047607421875, -0.0053863525390625, -0.0064544677734375, -0.005115509033203125, -0.0043792724609375, -0.03228759765625, 0.00995635986328125, -0.0085296630859375, -0.0029964447021484375, -0.0049285888671875, -0.00901031494140625, -0.00174713134765625, -0.0249176025390625, -0.00021445751190185547, -0.043212890625, 0.01097869873046875, -0.01739501953125, 0.00634765625, 0.016845703125, 0.06298828125, -0.071044921875, -0.0172119140625, -0.00785064697265625, 0.005161285400390625, 0.0458984375, -0.0244598388671875, -0.009063720703125, -0.0462646484375, -0.08673095703125, 0.015167236328125, 0.003971099853515625, -0.037322998046875, 0.01126861572265625, -0.0043182373046875, -0.03460693359375, -0.035858154296875, 0.046295166015625, -0.0386962890625, 0.028778076171875, -0.0006136894226074219, -0.0008325576782226562, -0.0286865234375, -0.037628173828125, -0.01450347900390625, -0.06585693359375, -0.0131072998046875, 0.013824462890625, 0.04852294921875, -0.0127716064453125, 0.011474609375, -0.03436279296875, 0.050018310546875, 0.03485107421875, 0.0016355514526367188, -0.004116058349609375, -0.031341552734375, 0.0138397216796875, 0.01222991943359375, -0.0087738037109375, 0.00141143798828125, 0.0003612041473388672, -0.040802001953125, -0.01174163818359375, 0.007274627685546875, -0.04156494140625, 0.0062255859375, -0.046051025390625, -0.00041675567626953125, -0.0594482421875, -0.0188751220703125, -0.018096923828125, 0.00826263427734375, -0.0059356689453125, -0.0126953125, -0.020904541015625, -0.0675048828125, 0.005474090576171875, -0.0134124755859375, -0.01666259765625, 0.02557373046875, 0.0723876953125, 0.0216064453125, -0.0013208389282226562, -0.025421142578125, 0.0308685302734375, 0.047637939453125, 0.034088134765625, 0.0404052734375, 0.01214599609375, -0.03424072265625, 0.0753173828125, 0.028717041015625, -0.0107421875, -0.004520416259765625, 0.03753662109375, -0.0007357597351074219, -0.032379150390625, 0.01322174072265625, -0.0240325927734375, 0.0213775634765625, 0.056793212890625, 0.00005698204040527344, -0.0458984375, -0.005615234375, 0.051971435546875, 0.0014028549194335938, -0.032470703125, -0.061370849609375, 0.00579071044921875, -0.014862060546875, 0.050994873046875, 0.02264404296875, 0.01555633544921875, -0.0107879638671875, -0.015838623046875, 0.02392578125, -0.0136260986328125, -0.01177978515625, 0.0643310546875, -0.01371002197265625, 0.031402587890625, 0.00858306884765625, -0.01132965087890625, -0.06378173828125, -0.0133209228515625, -0.003452301025390625, 0.005466461181640625, -0.027069091796875, 0.01186370849609375, 0.017547607421875, 0.04168701171875, 0.0227203369140625, 0.00464630126953125, 0.05718994140625, 0.01415252685546875, -0.0237579345703125, -0.019622802734375, -0.0205230712890625, -0.01320648193359375, -0.060943603515625, 0.025390625, 0.0157623291015625, 0.0026226043701171875, 0.02398681640625, 0.051055908203125, 0.01177978515625, 0.0364990234375, -0.0251922607421875, -0.0026187896728515625, 0.0017023086547851562, 0.01297760009765625, 0.0169525146484375, -0.001216888427734375, -0.0149688720703125, 0.0295562744140625, 0.0316162109375, -0.056793212890625, 0.0166168212890625, -0.00582122802734375, 0.03472900390625, 0.0188140869140625, -0.028350830078125, 0.036041259765625, -0.0169677734375, 0.006748199462890625, 0.018585205078125, 0.0008063316345214844, -0.047698974609375, -0.0028324127197265625, 0.034271240234375, 0.021728515625, -0.03009033203125, -0.0291900634765625, -0.005466461181640625, -0.028076171875, 0.0274658203125, 0.0100250244140625, -0.006557464599609375, 0.02313232421875, 0.001384735107421875, 0.0084991455078125, -0.0335693359375, 0.00330352783203125, -0.0298309326171875, 0.041046142578125, -0.028411865234375, -0.0274810791015625, 0.028167724609375, 0.0079498291015625, 0.04840087890625, -0.03204345703125, -0.039276123046875, 0.0198211669921875, -0.002716064453125, 0.049774169921875, 0.004924774169921875, -0.005107879638671875, -0.00957489013671875, -0.028594970703125, -0.0226287841796875, 0.0076751708984375, -0.03485107421875, -0.0294342041015625, -0.01971435546875, 0.01727294921875, 0.0135955810546875, 0.03997802734375, 0.01129150390625, -0.048980712890625, -0.011688232421875, 0.0222320556640625, 0.01285552978515625, -0.03472900390625, 0.07391357421875, 0.020721435546875, 0.041046142578125, -0.00780487060546875, -0.00492095947265625, -0.048797607421875, 0.025970458984375, -0.0023174285888671875, -0.0830078125, -0.0195770263671875, 0.00763702392578125, -0.050048828125, 0.0633544921875, 0.040496826171875, 0.004940032958984375, 0.0330810546875, -0.0199432373046875, 0.005718231201171875, 0.0046234130859375, -0.0292816162109375, -0.0204010009765625, -0.0270538330078125, 0.0906982421875, 0.031341552734375, 0.05755615234375, -0.0129547119140625, -0.037994384765625, -0.01393890380859375, 0.017242431640625, 0.0201416015625, -0.0007724761962890625, -0.00838470458984375, -0.0132904052734375, 0.031097412109375, 0.005138397216796875, 0.03253173828125, -0.00339508056640625, 0.02117919921875, 0.014373779296875, -0.01318359375, 0.016693115234375, 0.0027523040771484375, 0.03973388671875, -0.01751708984375, 0.006587982177734375, 0.045989990234375, -0.02899169921875, -0.0687255859375, 0.0157623291015625, -0.030853271484375, -0.0172882080078125, -0.0341796875, -0.01187896728515625, 0.00887298583984375, -0.0419921875, 0.0061798095703125, -0.0059661865234375, -0.03350830078125, 0.002513885498046875, -0.028656005859375, -0.0254974365234375, -0.0254364013671875, -0.027008056640625, 0.0087738037109375, 0.0197296142578125, 0.02813720703125, -0.0154876708984375, -0.04180908203125, -0.08502197265625, 0.016876220703125, -0.06732177734375, -0.0501708984375, -0.058685302734375, 0.038482666015625, -0.05950927734375, -0.099365234375, -0.005672454833984375, -0.006710052490234375, 0.032440185546875, 0.04254150390625, -0.00748443603515625, 0.005245208740234375, 0.041534423828125, -0.023406982421875, 0.03167724609375, 0.0040435791015625, -0.019500732421875, 0.0203399658203125, -0.01342010498046875, 0.00650787353515625, 0.043060302734375, -0.041717529296875, 0.00927734375, -0.005046844482421875, 0.006893157958984375, -0.024566650390625, -0.028167724609375, 0.10943603515625, -0.0174102783203125, -0.0260162353515625, 0.0125579833984375, 0.00521087646484375, -0.0229644775390625, 0.034393310546875, 0.01480865478515625, -0.02978515625, -0.0501708984375, 0.02777099609375, -0.06756591796875, 0.004283905029296875, 0.035400390625, -0.0469970703125, 0.085693359375, -0.037750244140625, 0.0465087890625, 0.0439453125, 0.02276611328125, -0.007526397705078125, 0.0133514404296875, -0.03399658203125, 0.040618896484375, 0.0018644332885742188, 0.049835205078125, -0.042022705078125, -0.002925872802734375, 0.00743865966796875, 0.0390625, 0.07275390625, 0.0203704833984375, -0.0474853515625, -0.0117645263671875, 0.043731689453125, 0.05078125, 0.006805419921875, 0.048248291015625, -0.0020885467529296875, 0.007167816162109375, 0.016510009765625, -0.012939453125, 0.032012939453125, -0.01311492919921875, -0.0278778076171875, 0.010498046875, 0.0156707763671875, 0.00963592529296875, -0.0230865478515625, 0.0077056884765625, -0.028594970703125, -0.015869140625, 0.0247955322265625, -0.0017185211181640625, 0.015289306640625, 0.0188140869140625, 0.059844970703125, -0.045867919921875, -0.006496429443359375, -0.00858306884765625, 0.057098388671875, 0.02313232421875, 0.05224609375, 0.04058837890625, 0.029876708984375, 0.06298828125, -0.03350830078125, 0.019927978515625, -0.0111846923828125, -0.0295257568359375, 0.04779052734375, 0.0190582275390625, 0.024993896484375, -0.0281219482421875, 0.007038116455078125, 0.03619384765625, 0.0615234375, -0.042694091796875, -0.046295166015625, 0.0255584716796875, 0.024078369140625, -0.001430511474609375, 0.0293731689453125, 0.0280303955078125, 0.0015935897827148438, 0.0482177734375, -0.044464111328125, -0.00634002685546875, 0.034759521484375, 0.0241241455078125, -0.004711151123046875, -0.01812744140625, -0.0284423828125, -0.0115814208984375, -0.0660400390625, 0.05755615234375, 0.048004150390625, 0.070556640625, -0.0201263427734375, 0.056182861328125, -0.0264434814453125, -0.01849365234375, 0.00362396240234375, 0.01462554931640625, -0.0305633544921875, 0.0147857666015625, -0.06396484375, -0.05743408203125, 0.01329803466796875, 0.055419921875, 0.030029296875, 0.0221405029296875, 0.037994384765625, 0.05303955078125, 0.028167724609375, -0.00519561767578125, 0.027069091796875, 0.003917694091796875, -0.038787841796875, -0.036651611328125, 0.018829345703125, 0.03704833984375, 0.00872039794921875, 0.0352783203125, -0.011566162109375, 0.048828125, -0.01009368896484375, 0.00981903076171875, -0.0013704299926757812, -0.03631591796875, 0.0252838134765625, -0.0038967132568359375, 0.061737060546875, 0.0136566162109375, -0.046539306640625, -0.008056640625, -0.03167724609375, -0.054443359375, 0.022705078125, 0.04608154296875, -0.032257080078125, 0.01389312744140625, 0.0252838134765625, -0.046844482421875, -0.022430419921875, 0.0396728515625, 0.0092315673828125, 0.031707763671875, 0.01448822021484375, 0.01470184326171875, 0.004611968994140625, 0.003795623779296875, -0.0014591217041015625, 0.0265350341796875, 0.052215576171875, 0.0235595703125, 0.01012420654296875, 0.043548583984375, 0.0225067138671875, 0.06768798828125, -0.047271728515625, -0.0015201568603515625, 0.036865234375, -0.0146026611328125, 0.0307159423828125, -0.009918212890625, -0.055328369140625, -0.03533935546875, 0.07891845703125, -0.0341796875, -0.00042247772216796875, 0.00473785400390625, 0.017120361328125, -0.06463623046875, -0.0037784576416015625, -0.0281829833984375, 0.012908935546875, -0.037139892578125, -0.05389404296875, 0.062408447265625, 0.0187225341796875, 0.002605438232421875, 0.006561279296875, 0.00907135009765625, -0.03509521484375, 0.0233306884765625, -0.004886627197265625, 0.0187530517578125, 0.037261962890625, 0.0035343170166015625, 0.01380157470703125, -0.01401519775390625, -0.01059722900390625, -0.02252197265625, 0.0279388427734375, -0.049835205078125, -0.00789642333984375, -0.0570068359375, 0.0100555419921875, 0.001209259033203125, 0.016204833984375, -0.051727294921875, 0.01146697998046875, 0.0157012939453125, 0.00595855712890625, 0.006412506103515625, -0.04193115234375, -0.032501220703125, -0.0296783447265625, -0.0018596649169921875, 0.032501220703125, -0.0206298828125, -0.0242462158203125, -0.07769775390625, -0.0201416015625, 0.064697265625, 0.0298919677734375, -0.045501708984375, 0.043365478515625, -0.03814697265625, -0.0193023681640625, 0.03424072265625, -0.00563812255859375, 0.004055023193359375, 0.018585205078125, -0.025390625, 0.0258941650390625, -0.0180511474609375, -0.040618896484375, -0.0127105712890625, 0.0012874603271484375, 0.019287109375, -0.017669677734375, -0.040130615234375, -0.0078125, -0.0225982666015625, 0.0428466796875, 0.03515625, -0.03375244140625, -0.01349639892578125, -0.01096343994140625, 0.0186920166015625, 0.021881103515625, 0.003448486328125, -0.0104217529296875, -0.043121337890625, 0.04833984375, -0.0634765625, -0.0262451171875, -0.04364013671875, -0.0635986328125, 0.052032470703125, 0.017059326171875, -0.0462646484375, -0.01357269287109375, 0.01000213623046875, -0.0292510986328125, 0.0269927978515625, 0.004375457763671875, -0.049346923828125, 0.03045654296875, 0.045074462890625, 0.00811004638671875, 0.066162109375, -0.01380157470703125, 0.01151275634765625, -0.00930023193359375, 0.0213623046875, 0.005695343017578125, -0.0015163421630859375, 0.0124969482421875, 0.004009246826171875, 0.00595855712890625, 0.0022106170654296875, -0.061676025390625, -0.0075836181640625, -0.0221099853515625, 0.0296173095703125, 0.03857421875, -0.01824951171875, -0.05987548828125, -0.046234130859375, 0.0261383056640625, 0.0261688232421875, 0.0200958251953125, 0.0191192626953125, 0.002681732177734375, -0.01340484619140625, -0.04766845703125, 0.0016345977783203125, 0.0303497314453125, -0.052825927734375, -0.00870513916015625, 0.00788116455078125, 0.007366180419921875, -0.0239105224609375, 0.0088043212890625, -0.0027637481689453125, -0.028106689453125, 0.018798828125, -0.01201629638671875, -0.00775909423828125, 0.0083465576171875, -0.06732177734375, 0.02301025390625, -0.00968170166015625, -0.017547607421875, -0.00801849365234375, -0.0550537109375, 0.033660888671875, -0.03802490234375, 0.0272979736328125, -0.0208282470703125, -0.019866943359375, 0.0128936767578125, -0.0217437744140625, 0.0285797119140625, 0.03436279296875, -0.0178070068359375, 0.0179595947265625, 0.0182647705078125, 0.02142333984375, -0.0290069580078125, 0.00408172607421875, 0.01131439208984375, 0.034393310546875, 0.0222015380859375, 0.038360595703125, 0.0016679763793945312, 0.048248291015625, -0.005298614501953125, -0.037353515625, 0.027557373046875, -0.0443115234375, -0.007625579833984375, 0.0126495361328125, -0.0709228515625, -0.0467529296875, -0.007568359375, 0.0251312255859375, -0.007709503173828125, -0.0025424957275390625 ]
b3c0f089e51d3db2a5b6c7024214824f6359ace6
Wordpress Stackexchange Q: Favicon causes mixed content warning over SSL I have the following favicon loading via header.php: <link rel="shortcut icon" type="image/x-icon" href="<?php echo esc_url( home_url( '/wp-content/themes/themename/img/favicon.ico' ) ); ?>"> My site has an SSL certificate installed. Google Chrome loads the each page over SSL perfectly, but Firefox flags a mixed content warning. I can see via the source (both in Chrome and Firefox), that the favicon is being served via http. I can't work out why this is happening. A: After a little more reading via the WordPress Codex, I discovered that I was calling the favicon incorrectly. It should be called like this: <link rel="shortcut icon" href="<?php echo get_stylesheet_directory_uri(); ?>/favicon.ico" /> Using get_stylesheet_directory_uri() checks for SSL.
Q: Favicon causes mixed content warning over SSL I have the following favicon loading via header.php: <link rel="shortcut icon" type="image/x-icon" href="<?php echo esc_url( home_url( '/wp-content/themes/themename/img/favicon.ico' ) ); ?>"> My site has an SSL certificate installed. Google Chrome loads the each page over SSL perfectly, but Firefox flags a mixed content warning. I can see via the source (both in Chrome and Firefox), that the favicon is being served via http. I can't work out why this is happening. A: After a little more reading via the WordPress Codex, I discovered that I was calling the favicon incorrectly. It should be called like this: <link rel="shortcut icon" href="<?php echo get_stylesheet_directory_uri(); ?>/favicon.ico" /> Using get_stylesheet_directory_uri() checks for SSL.
wordpress
{ "language": "en", "length": 116, "provenance": "stackexchange_00019.jsonl.gz:468528", "question_score": "4", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/240069" }
[ 0.022003173828125, 0.022308349609375, -0.0266571044921875, 0.02264404296875, 0.0158538818359375, -0.03912353515625, 0.052886962890625, -0.037689208984375, -0.024444580078125, 0.01442718505859375, 0.010223388671875, -0.01898193359375, -0.004024505615234375, -0.033233642578125, 0.0291748046875, -0.03253173828125, 0.025604248046875, 0.0024738311767578125, 0.035003662109375, -0.00333404541015625, -0.006305694580078125, 0.0197296142578125, -0.0012826919555664062, -0.0124664306640625, 0.02630615234375, -0.015594482421875, 0.1298828125, -0.0034542083740234375, 0.0105133056640625, -0.013092041015625, 0.03326416015625, -0.03717041015625, 0.03021240234375, 0.07427978515625, -0.1011962890625, 0.0560302734375, 0.004848480224609375, 0.0220794677734375, -0.016632080078125, 0.064208984375, -0.007843017578125, 0.005863189697265625, 0.07696533203125, 0.002735137939453125, 0.005451202392578125, -0.0013370513916015625, -0.012237548828125, -0.05169677734375, -0.025115966796875, 0.0274505615234375, 0.01983642578125, -0.00438690185546875, 0.03131103515625, 0.01450347900390625, -0.003314971923828125, -0.01611328125, -0.0025501251220703125, 0.033233642578125, 0.03240966796875, 0.0021419525146484375, -0.031829833984375, 0.0298919677734375, 0.0007719993591308594, -0.02197265625, -0.01132965087890625, 0.004383087158203125, -0.0116729736328125, 0.0107269287109375, -0.031280517578125, -0.02069091796875, 0.0128631591796875, -0.0225067138671875, -0.00746917724609375, -0.057830810546875, -0.00080108642578125, 0.0809326171875, -0.056182861328125, -0.0212554931640625, 0.034912109375, -0.0274200439453125, -0.0059967041015625, 0.038665771484375, -0.10052490234375, -0.00974273681640625, 0.03155517578125, 0.03570556640625, -0.01534271240234375, -0.0460205078125, 0.02752685546875, -0.003948211669921875, -0.0124359130859375, 0.0241546630859375, 0.015472412109375, 0.00868988037109375, -0.0225982666015625, -0.017608642578125, -0.0269317626953125, 0.0282440185546875, -0.0224456787109375, 0.0107574462890625, -0.00447845458984375, -0.0204620361328125, 0.022979736328125, -0.04217529296875, -0.021697998046875, 0.05413818359375, 0.021453857421875, 0.0147857666015625, -0.0015573501586914062, 0.01357269287109375, 0.004016876220703125, -0.01552581787109375, -0.0216217041015625, -0.005954742431640625, -0.0158538818359375, -0.00003641843795776367, -0.043701171875, -0.001621246337890625, -0.0174102783203125, 0.0013818740844726562, 0.032867431640625, 0.0672607421875, 0.004611968994140625, -0.0279541015625, -0.0087890625, 0.0001646280288696289, 0.0024242401123046875, -0.06695556640625, -0.020904541015625, 0.0672607421875, -0.049591064453125, -0.023406982421875, 0.0670166015625, 0.0286407470703125, 0.0160980224609375, -0.048583984375, -0.01009368896484375, -0.01029205322265625, -0.029205322265625, 0.03021240234375, 0.001873016357421875, -0.03509521484375, 0.0029010772705078125, 0.01131439208984375, 0.017486572265625, 0.03924560546875, 0.0256500244140625, 0.0012493133544921875, -0.01617431640625, -0.03411865234375, -0.01837158203125, 0.020904541015625, 0.048126220703125, 0.00905609130859375, -0.01459503173828125, -0.046722412109375, 0.0445556640625, -0.06353759765625, -0.009185791015625, -0.07000732421875, -0.05780029296875, -0.008697509765625, 0.038177490234375, -0.0574951171875, -0.0230560302734375, -0.0003974437713623047, 0.00732421875, 0.003742218017578125, 0.007049560546875, 0.04949951171875, -0.017974853515625, -0.0176544189453125, -0.059112548828125, -0.017425537109375, -0.0142364501953125, 0.005950927734375, 0.04205322265625, 0.0164337158203125, 0.0210113525390625, 0.01416778564453125, -0.0162200927734375, -0.0313720703125, 0.1064453125, -0.059844970703125, -0.058135986328125, 0.047119140625, -0.00922393798828125, 0.05963134765625, 0.0303802490234375, 0.0023345947265625, 0.0167083740234375, 0.024871826171875, -0.0032711029052734375, 0.01349639892578125, -0.01357269287109375, -0.03594970703125, -0.060699462890625, -0.0237274169921875, -0.0279693603515625, 0.0214080810546875, 0.014434814453125, -0.009521484375, -0.01345062255859375, 0.0002384185791015625, -0.047119140625, -0.003398895263671875, -0.015777587890625, 0.01448822021484375, -0.0091552734375, 0.015960693359375, 0.007389068603515625, -0.011962890625, -0.0233306884765625, -0.01568603515625, -0.0050811767578125, 0.016143798828125, -0.03143310546875, 0.005176544189453125, -0.038330078125, 0.023162841796875, -0.038299560546875, -0.034393310546875, -0.036346435546875, 0.041748046875, 0.0141754150390625, 0.04736328125, -0.045166015625, 0.0321044921875, 0.0300445556640625, 0.0303802490234375, 0.008758544921875, -0.002716064453125, -0.0030879974365234375, 0.035858154296875, -0.0264129638671875, -0.01462554931640625, 0.009307861328125, -0.04437255859375, 0.022064208984375, 0.031494140625, 0.04827880859375, 0.047515869140625, 0.0028667449951171875, -0.017242431640625, 0.043426513671875, -0.055816650390625, 0.0291290283203125, -0.045196533203125, 0.00543975830078125, -0.00470733642578125, -0.005035400390625, -0.026702880859375, 0.0226287841796875, -0.01264190673828125, 0.0072784423828125, 0.01495361328125, -0.011932373046875, -0.034698486328125, -0.0124359130859375, -0.0035533905029296875, 0.03509521484375, -0.0026454925537109375, -0.041168212890625, 0.0115814208984375, -0.0169830322265625, -0.01552581787109375, -0.0166778564453125, -0.02294921875, -0.00418853759765625, -0.009857177734375, 0.0163116455078125, -0.0455322265625, -0.02166748046875, 0.0430908203125, 0.06256103515625, -0.0013360977172851562, -0.02392578125, -0.016448974609375, 0.0163421630859375, 0.0277252197265625, -0.0164642333984375, -0.0093536376953125, 0.00016748905181884766, 0.002960205078125, -0.0184478759765625, -0.02630615234375, 0.045562744140625, 0.026092529296875, 0.0338134765625, 0.0169830322265625, 0.01294708251953125, 0.03814697265625, 0.0002789497375488281, 0.025909423828125, 0.0265655517578125, -0.004878997802734375, 0.0306396484375, -0.01473236083984375, 0.0266571044921875, -0.00010293722152709961, 0.0142364501953125, 0.0418701171875, -0.01334381103515625, -0.01189422607421875, 0.006687164306640625, 0.0236968994140625, 0.006744384765625, -0.019927978515625, -0.0171051025390625, 0.01070404052734375, -0.03826904296875, 0.04376220703125, 0.0235137939453125, -0.019195556640625, 0.029693603515625, -0.00406646728515625, -0.0015134811401367188, 0.0177459716796875, -0.07861328125, -0.081787109375, -0.055450439453125, -0.0225830078125, 0.0347900390625, -0.0045013427734375, 0.01361083984375, -0.003940582275390625, 0.0238494873046875, 0.023040771484375, -0.04595947265625, -0.0093841552734375, -0.03314208984375, -0.044158935546875, -0.04150390625, 0.041900634765625, -0.006656646728515625, 0.0261688232421875, 0.0119171142578125, -0.03289794921875, -0.003025054931640625, -0.0037212371826171875, 0.004474639892578125, 0.055023193359375, -0.00743865966796875, -0.051483154296875, -0.004833221435546875, -0.0185089111328125, -0.0297393798828125, 0.01001739501953125, 0.0091552734375, -0.0017995834350585938, -0.005706787109375, -0.00641632080078125, -0.0254364013671875, 0.00728607177734375, -0.00616455078125, -0.019256591796875, 0.033355712890625, -0.008331298828125, -0.0237579345703125, -0.044586181640625, 0.0024890899658203125, -0.0290679931640625, -0.0399169921875, 0.00855255126953125, 0.02911376953125, -0.003070831298828125, 0.003871917724609375, -0.021026611328125, -0.006694793701171875, -0.0004429817199707031, 0.039581298828125, -0.0273590087890625, 0.08123779296875, -0.0221710205078125, -0.02252197265625, -0.053466796875, 0.03692626953125, 0.01116943359375, 0.0347900390625, 0.022186279296875, 0.046112060546875, 0.005649566650390625, -0.00946044921875, -0.06817626953125, -0.019500732421875, 0.039886474609375, -0.0001195073127746582, 0.040557861328125, -0.05841064453125, -0.042999267578125, -0.05657958984375, 0.0706787109375, 0.0088958740234375, -0.035858154296875, -0.0216064453125, 0.0175323486328125, -0.022430419921875, -0.034332275390625, 0.022705078125, -0.02374267578125, -0.070556640625, 0.0146331787109375, 0.00041365623474121094, -0.0147857666015625, -0.0200347900390625, -0.0345458984375, -0.04913330078125, -0.038299560546875, 0.036346435546875, 0.0011339187622070312, -0.01142120361328125, 0.06036376953125, 0.00868988037109375, 0.009857177734375, -0.0292205810546875, -0.01200103759765625, -0.0831298828125, -0.0207061767578125, -0.040985107421875, 0.08062744140625, 0.03265380859375, -0.03094482421875, -0.04150390625, 0.0450439453125, 0.0291290283203125, 0.0232391357421875, 0.01458740234375, -0.0279541015625, 0.02899169921875, 0.02288818359375, 0.0250701904296875, 0.0008111000061035156, 0.0114898681640625, 0.0154876708984375, -0.05865478515625, 0.004302978515625, -0.0181427001953125, 0.010833740234375, 0.028717041015625, -0.04827880859375, -0.037750244140625, -0.01061248779296875, -0.005336761474609375, 0.01561737060546875, 0.022491455078125, -0.02996826171875, -0.0141754150390625, -0.04241943359375, 0.0182342529296875, -0.00826263427734375, -0.00980377197265625, 0.01303863525390625, 0.027801513671875, 0.0225830078125, -0.0232696533203125, 0.00849151611328125, 0.0235748291015625, 0.0159912109375, -0.041778564453125, 0.08331298828125, 0.045562744140625, 0.0250244140625, 0.0159149169921875, -0.0284423828125, 0.0462646484375, 0.0284423828125, -0.0227203369140625, 0.0019273757934570312, -0.051666259765625, 0.04547119140625, 0.03240966796875, -0.057037353515625, 0.0462646484375, 0.0197601318359375, 0.0222930908203125, 0.045135498046875, -0.0438232421875, -0.00726318359375, -0.04681396484375, 0.0188751220703125, -0.0528564453125, 0.0149993896484375, 0.006015777587890625, 0.048004150390625, 0.02020263671875, 0.0126800537109375, 0.040557861328125, 0.0518798828125, -0.002582550048828125, -0.0447998046875, 0.02252197265625, -0.0799560546875, 0.042205810546875, -0.0821533203125, -0.04937744140625, -0.040924072265625, -0.024749755859375, 0.1104736328125, 0.03668212890625, -0.0181121826171875, 0.005947113037109375, -0.024566650390625, -0.00351715087890625, -0.02252197265625, 0.016326904296875, 0.0147552490234375, -0.02447509765625, -0.0269775390625, -0.01291656494140625, 0.001506805419921875, -0.0357666015625, -0.0333251953125, -0.0005064010620117188, -0.013214111328125, -0.0092620849609375, -0.014495849609375, 0.0250396728515625, 0.02093505859375, -0.0070343017578125, -0.00954437255859375, -0.022857666015625, -0.0166168212890625, 0.031524658203125, 0.018096923828125, -0.0157318115234375, 0.027862548828125, -0.00710296630859375, 0.042633056640625, -0.0175323486328125, -0.05157470703125, 0.01495361328125, 0.059295654296875, -0.044189453125, 0.0027027130126953125, 0.001209259033203125, -0.0352783203125, -0.0178985595703125, 0.040618896484375, -0.00038313865661621094, -0.05078125, -0.037872314453125, 0.01100921630859375, 0.05596923828125, 0.0027675628662109375, -0.031219482421875, 0.0091705322265625, 0.0020294189453125, 0.04632568359375, -0.025115966796875, -0.0245361328125, 0.0413818359375, 0.048370361328125, 0.0189056396484375, -0.05645751953125, -0.0165252685546875, -0.051849365234375, 0.047149658203125, -0.039764404296875, -0.0021381378173828125, 0.0182647705078125, -0.024322509765625, 0.03143310546875, -0.0022068023681640625, -0.015106201171875, 0.005764007568359375, 0.047607421875, -0.007015228271484375, -0.0172576904296875, -0.0305633544921875, 0.0109405517578125, -0.05255126953125, -0.004123687744140625, 0.024566650390625, -0.01190185546875, -0.021881103515625, -0.034698486328125, 0.01983642578125, 0.012847900390625, -0.0201568603515625, -0.0247344970703125, -0.02923583984375, 0.038238525390625, 0.043182373046875, 0.057281494140625, 0.0041046142578125, 0.0198822021484375, 0.00479888916015625, 0.04547119140625, 0.01435089111328125, 0.0200653076171875, -0.002567291259765625, -0.0302581787109375, -0.0085601806640625, -0.078857421875, -0.00864410400390625, 0.0123443603515625, -0.0103607177734375, 0.044830322265625, 0.0227813720703125, 0.006595611572265625, 0.00467681884765625, -0.00482940673828125, 0.0084228515625, -0.01326751708984375, -0.01055145263671875, 0.0048065185546875, -0.035552978515625, 0.043182373046875, 0.0157623291015625, 0.01175689697265625, -0.0228424072265625, -0.0242767333984375, 0.009429931640625, 0.0094146728515625, -0.003841400146484375, -0.0098419189453125, -0.0156402587890625, 0.051361083984375, 0.0821533203125, -0.0168609619140625, 0.04876708984375, 0.040130615234375, 0.001781463623046875, 0.0347900390625, -0.01175689697265625, 0.004695892333984375, -0.0263671875, -0.00620269775390625, -0.0209808349609375, 0.023345947265625, 0.0221710205078125, 0.005352020263671875, 0.034423828125, 0.0665283203125, 0.10260009765625, -0.07525634765625, -0.0032253265380859375, 0.03302001953125, -0.06854248046875, -0.0153656005859375, 0.0119171142578125, 0.0133209228515625, 0.004425048828125, 0.023345947265625, -0.0216064453125, -0.0115966796875, 0.00945281982421875, -0.0135040283203125, -0.0162353515625, 0.021209716796875, 0.004734039306640625, -0.0033435821533203125, -0.028472900390625, -0.033843994140625, 0.0230255126953125, -0.022125244140625, 0.0102691650390625, 0.0196075439453125, -0.01387786865234375, -0.0250701904296875, -0.043670654296875, -0.024139404296875, 0.004329681396484375, -0.045440673828125, 0.003025054931640625, 0.0288543701171875, 0.0045166015625, 0.043731689453125, -0.00211334228515625, 0.006862640380859375, 0.010711669921875, 0.0106201171875, 0.0701904296875, 0.016571044921875, -0.00688934326171875, 0.023040771484375, -0.00992584228515625, -0.0191192626953125, -0.01003265380859375, 0.035491943359375, -0.0140228271484375, 0.00862884521484375, 0.0870361328125, -0.041900634765625, -0.01195526123046875, 0.040252685546875, 0.0214080810546875, -0.03558349609375, -0.01160430908203125, 0.061187744140625, -0.05364990234375, -0.028778076171875, 0.0204620361328125, -0.0276947021484375, -0.048065185546875, -0.044464111328125, -0.061065673828125, 0.0225067138671875, -0.027069091796875, 0.0266571044921875, -0.00884246826171875, -0.0148468017578125, 0.0025463104248046875, -0.0267791748046875, -0.033538818359375, 0.059295654296875, 0.03509521484375, 0.0133514404296875, -0.036590576171875, -0.01523590087890625, 0.0036411285400390625, 0.00809478759765625, 0.01275634765625, 0.00887298583984375, -0.058135986328125, -0.01023101806640625, 0.00734710693359375, 0.025421142578125, 0.018829345703125, 0.0435791015625, -0.012451171875, -0.01003265380859375, 0.0330810546875, 0.0008683204650878906, 0.026824951171875, -0.0013427734375, -0.0196380615234375, 0.01800537109375, 0.047119140625, 0.02978515625, 0.016845703125, 0.01812744140625, -0.04144287109375, 0.0322265625, 0.0305938720703125, 0.032745361328125, 0.0111846923828125, 0.043487548828125, 0.01338958740234375, 0.0268707275390625, 0.01654052734375, -0.0160675048828125, 0.045135498046875, -0.0097198486328125, -0.004364013671875, 0.007686614990234375, 0.01357269287109375, 0.002979278564453125, 0.0156707763671875, -0.006000518798828125, 0.03143310546875, -0.0125274658203125, -0.0272216796875, 0.02239990234375, 0.0299072265625, -0.004924774169921875, -0.00183868408203125, -0.0035858154296875, -0.006256103515625, 0.005828857421875, -0.04534912109375, 0.0023479461669921875, -0.00012165307998657227, 0.0281524658203125, 0.007755279541015625, 0.040985107421875, -0.046966552734375, -0.02288818359375, 0.0073089599609375, 0.00936126708984375, 0.029937744140625, 0.00884246826171875, 0.0265960693359375, 0.0689697265625, -0.05926513671875, 0.018646240234375, -0.033172607421875, 0.0272369384765625, 0.00954437255859375, 0.01367950439453125, -0.01552581787109375, 0.053863525390625, 0.0188446044921875, 0.0087890625, 0.02032470703125, -0.000011622905731201172, 0.01213836669921875, -0.03857421875, -0.021026611328125, -0.035919189453125, 0.028350830078125, 0.02593994140625, 0.020233154296875, 0.006191253662109375, 0.017547607421875, 0.042510986328125, 0.0220794677734375, -0.01142120361328125, 0.0406494140625, -0.000579833984375, 0.0021610260009765625, -0.06011962890625, 0.02557373046875, 0.041595458984375, 0.00676727294921875, 0.0277099609375, -0.061370849609375, 0.10357666015625, -0.0303192138671875, 0.0303192138671875, -0.016326904296875, -0.0078125, 0.019622802734375, -0.0394287109375, -0.0230712890625, -0.031646728515625, 0.01174163818359375, 0.01580810546875, 0.01091766357421875, -0.06988525390625, -0.002544403076171875, 0.041839599609375, -0.00418853759765625, 0.0135345458984375, 0.03546142578125, -0.03466796875, 0.003543853759765625, 0.0204620361328125, 0.0167999267578125, 0.0151824951171875, 0.0114593505859375, -0.0111083984375, -0.0250244140625, -0.0478515625, -0.01025390625, 0.07086181640625, -0.0207672119140625, 0.06207275390625, -0.04461669921875, 0.0268707275390625, 0.031524658203125, -0.054412841796875, 0.0577392578125, 0.005840301513671875, 0.046844482421875, -0.01202392578125, -0.0323486328125, -0.0265350341796875, -0.078369140625, 0.050872802734375, 0.023529052734375, 0.0206298828125, 0.048492431640625, 0.03009033203125, 0.001522064208984375, -0.03704833984375, 0.017333984375, -0.0382080078125, -0.05645751953125, -0.0811767578125, 0.01091766357421875, 0.01800537109375, 0.0188751220703125, -0.0242462158203125, 0.04168701171875, -0.0038051605224609375, -0.01470184326171875, 0.027008056640625, -0.040435791015625, 0.007678985595703125, 0.0236663818359375, 0.011627197265625, -0.00925445556640625, -0.007415771484375, -0.020843505859375, 0.01297760009765625, 0.00667572021484375, 0.0224151611328125, -0.0137939453125, 0.0399169921875, 0.0004515647888183594, -0.004024505615234375, -0.02215576171875, -0.04388427734375, -0.0343017578125, 0.054412841796875, -0.02020263671875, -0.022552490234375, 0.05926513671875, -0.0013093948364257812, -0.013580322265625, -0.040679931640625, -0.028717041015625, -0.01348876953125, -0.064208984375, -0.006565093994140625, -0.0241241455078125, 0.0325927734375, -0.004833221435546875, -0.020782470703125, -0.0204010009765625, -0.0147857666015625, 0.07891845703125, -0.016021728515625, 0.051483154296875, -0.0229949951171875, -0.0240478515625, -0.07830810546875, -0.046356201171875, -0.0255279541015625, 0.0531005859375, -0.0310516357421875, 0.00899505615234375, 0.05328369140625, -0.0168304443359375, -0.0294342041015625, -0.0198211669921875, 0.0003192424774169922, 0.03741455078125, -0.0172119140625, -0.0223846435546875, -0.00110626220703125, -0.0034046173095703125, -0.03515625, -0.0164031982421875, 0.0197601318359375, -0.0297698974609375, -0.045654296875, 0.00325775146484375, -0.006801605224609375, 0.01142120361328125, -0.0260162353515625, -0.0192413330078125, 0.039276123046875, 0.0141754150390625, -0.0193328857421875, -0.0394287109375, 0.006649017333984375, -0.0197906494140625, 0.0277252197265625, 0.00782012939453125, -0.0323486328125, -0.005367279052734375, 0.035491943359375, -0.00125885009765625, 0.04730224609375, -0.0196990966796875, 0.022247314453125, -0.0216217041015625, 0.0159149169921875, -0.00579833984375, -0.0166168212890625, -0.0131072998046875, 0.014068603515625, -0.006931304931640625, 0.0247955322265625, -0.0394287109375, -0.0010967254638671875, -0.0098419189453125, 0.0241851806640625, -0.0016994476318359375, -0.00370025634765625, 0.003620147705078125, -0.02532958984375, 0.0063323974609375, -0.01045989990234375, 0.005466461181640625, 0.00513458251953125, -0.0221710205078125, -0.0323486328125, -0.021759033203125, -0.0009965896606445312, 0.01158905029296875, -0.02301025390625, 0.025482177734375, -0.0242156982421875, 0.004917144775390625, 0.044189453125, -0.007442474365234375, 0.01261138916015625, 0.004428863525390625, 0.05303955078125, -0.01058197021484375, -0.0014352798461914062, -0.0038204193115234375, 0.0304107666015625, -0.00933074951171875, 0.0535888671875, -0.022705078125, 0.027740478515625, 0.03082275390625, -0.001434326171875, 0.0219268798828125, 0.061126708984375, -0.0259246826171875, 0.003246307373046875, 0.035552978515625, -0.0301513671875, -0.00688934326171875, 0.00910186767578125, -0.0005125999450683594, 0.01430511474609375, 0.001842498779296875, 0.032073974609375, 0.01157379150390625, -0.00861358642578125, -0.018157958984375, 0.019989013671875, -0.0216827392578125, 0.01465606689453125, -0.01541900634765625, 0.0260772705078125, -0.045989990234375, 0.019134521484375, -0.00458526611328125, -0.0174560546875, 0.0210418701171875, 0.0029850006103515625, 0.0181121826171875, -0.0097503662109375, 0.00864410400390625, -0.047882080078125, -0.01558685302734375, 0.00824737548828125 ]
a70bfebefbfdf19714d30cf8b65308601cf6862c
Wordpress Stackexchange Q: Promoting child theme to stand alone I have developed a website using a fully fledged theme packed with tons of bloatware and custom functions/widgets I am not using. The package is slow, and 95% of CSS (1MB!!!!) and Javascript is never used by the child theme. This is why I am thinking about unlinking the child theme from the parent and promote the child theme as a standalone theme. However this requires "walking" through PHP code, scripts and CSS to verify what is being used before trimming. What steps would you take, generally speaking, to achieve this? A: Start with "view source" of rendered HTML and then work backward from that, building a new theme by pulling whatever css, php files and functions from the parent as needed. (footnote - thank you for the pointer to the 'dust me' utility, I will check that out).
Q: Promoting child theme to stand alone I have developed a website using a fully fledged theme packed with tons of bloatware and custom functions/widgets I am not using. The package is slow, and 95% of CSS (1MB!!!!) and Javascript is never used by the child theme. This is why I am thinking about unlinking the child theme from the parent and promote the child theme as a standalone theme. However this requires "walking" through PHP code, scripts and CSS to verify what is being used before trimming. What steps would you take, generally speaking, to achieve this? A: Start with "view source" of rendered HTML and then work backward from that, building a new theme by pulling whatever css, php files and functions from the parent as needed. (footnote - thank you for the pointer to the 'dust me' utility, I will check that out).
wordpress
{ "language": "en", "length": 146, "provenance": "stackexchange_00019.jsonl.gz:468572", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/240211" }
[ 0.02484130859375, 0.00623321533203125, -0.0316162109375, -0.0626220703125, 0.0220947265625, -0.01031494140625, -0.01181793212890625, -0.0018606185913085938, -0.05841064453125, 0.0103759765625, -0.01629638671875, 0.0096588134765625, -0.032440185546875, -0.0330810546875, 0.01258087158203125, -0.049163818359375, 0.0263671875, 0.00275421142578125, 0.04022216796875, 0.007293701171875, -0.00337982177734375, 0.0183868408203125, 0.01326751708984375, 0.058868408203125, 0.026214599609375, -0.06494140625, 0.05291748046875, -0.03411865234375, 0.0263671875, -0.03240966796875, 0.0230865478515625, 0.0211334228515625, -0.01392364501953125, 0.028564453125, 0.016448974609375, -0.0082550048828125, 0.025970458984375, 0.009521484375, 0.032562255859375, 0.017333984375, 0.01467132568359375, -0.025665283203125, 0.0290374755859375, 0.0164794921875, -0.01523590087890625, -0.016571044921875, 0.003795623779296875, -0.029937744140625, -0.0154876708984375, -0.06591796875, 0.056549072265625, 0.0007753372192382812, 0.07666015625, -0.04901123046875, -0.02020263671875, 0.006381988525390625, -0.00799560546875, -0.01226806640625, 0.02825927734375, 0.00885772705078125, -0.022705078125, -0.00743865966796875, 0.0183868408203125, -0.031524658203125, 0.042724609375, 0.0032501220703125, -0.0565185546875, 0.034881591796875, -0.060089111328125, 0.0222930908203125, 0.0166015625, -0.0748291015625, 0.0010089874267578125, -0.045013427734375, 0.013427734375, -0.00177001953125, -0.0014743804931640625, -0.0247802734375, 0.0019683837890625, 0.01258087158203125, -0.01556396484375, 0.035980224609375, -0.0526123046875, -0.06390380859375, 0.02459716796875, -0.039764404296875, -0.02069091796875, -0.00873565673828125, -0.041015625, -0.022857666015625, -0.03204345703125, -0.017242431640625, -0.0273590087890625, -0.006420135498046875, -0.029052734375, 0.0229339599609375, 0.07525634765625, 0.047607421875, -0.0084991455078125, 0.001251220703125, -0.006999969482421875, -0.0582275390625, 0.033355712890625, -0.035858154296875, 0.01560211181640625, 0.052215576171875, 0.01091766357421875, -0.0408935546875, 0.01351165771484375, 0.002422332763671875, 0.0169830322265625, 0.03814697265625, 0.0188140869140625, 0.001308441162109375, -0.04095458984375, 0.03228759765625, 0.0235748291015625, -0.0024280548095703125, -0.003345489501953125, 0.052947998046875, -0.00740814208984375, -0.0120697021484375, 0.0188751220703125, 0.042694091796875, -0.01763916015625, -0.0055084228515625, -0.01519012451171875, -0.0274200439453125, 0.049163818359375, -0.007480621337890625, -0.034088134765625, 0.023223876953125, 0.040374755859375, 0.02020263671875, -0.00225067138671875, -0.0134735107421875, 0.04010009765625, -0.00980377197265625, 0.0364990234375, -0.00885009765625, 0.044342041015625, -0.04473876953125, -0.0172882080078125, 0.056427001953125, -0.0098724365234375, 0.00677490234375, 0.0068511962890625, 0.007526397705078125, 0.00308990478515625, -0.01953125, 0.0224609375, -0.0279693603515625, 0.033599853515625, -0.006221771240234375, 0.0091400146484375, -0.0609130859375, 0.01517486572265625, -0.03363037109375, 0.024566650390625, -0.03765869140625, 0.01934814453125, 0.0174713134765625, 0.03173828125, -0.01153564453125, -0.0355224609375, -0.03338623046875, -0.021087646484375, -0.00983428955078125, 0.01116180419921875, -0.06695556640625, -0.005619049072265625, -0.0523681640625, -0.0238800048828125, -0.0005707740783691406, 0.0187530517578125, 0.08221435546875, -0.01241302490234375, 0.0028514862060546875, 0.0257568359375, 0.01555633544921875, 0.01336669921875, -0.0220489501953125, 0.04010009765625, 0.006206512451171875, -0.04833984375, 0.0216827392578125, 0.00852203369140625, 0.0166473388671875, 0.0136566162109375, -0.003177642822265625, 0.0164947509765625, 0.027130126953125, 0.00690460205078125, -0.01137542724609375, 0.01360321044921875, -0.03448486328125, -0.0423583984375, -0.01409149169921875, -0.01561737060546875, 0.0076904296875, -0.022552490234375, -0.0016469955444335938, 0.0011463165283203125, -0.02764892578125, 0.0200653076171875, -0.03125, 0.0017490386962890625, 0.0242919921875, -0.025726318359375, 0.03070068359375, 0.0195159912109375, 0.00994873046875, -0.0196685791015625, -0.036163330078125, 0.00962066650390625, -0.01041412353515625, 0.0236358642578125, 0.0413818359375, 0.032989501953125, -0.0251617431640625, 0.053009033203125, -0.01264190673828125, 0.047271728515625, 0.042755126953125, 0.0494384765625, 0.008056640625, -0.0226287841796875, -0.0172271728515625, -0.00730133056640625, 0.0343017578125, -0.10498046875, 0.05206298828125, 0.033782958984375, 0.044342041015625, -0.01715087890625, 0.0026264190673828125, 0.003223419189453125, -0.01275634765625, -0.0233001708984375, 0.0189361572265625, 0.038604736328125, 0.02044677734375, 0.007640838623046875, 0.0163421630859375, 0.0509033203125, -0.053863525390625, 0.00015032291412353516, 0.0169219970703125, 0.0299072265625, 0.041351318359375, -0.032318115234375, -0.0276336669921875, 0.0244293212890625, -0.057708740234375, 0.0190582275390625, 0.025909423828125, 0.0140380859375, -0.03009033203125, -0.0001195073127746582, 0.0088653564453125, 0.0248260498046875, -0.01488494873046875, -0.0670166015625, 0.0186309814453125, -0.030364990234375, 0.046844482421875, 0.02679443359375, 0.0275726318359375, 0.0017910003662109375, 0.0158843994140625, -0.004550933837890625, -0.0172882080078125, 0.0009899139404296875, -0.009246826171875, 0.037445068359375, 0.01215362548828125, -0.02142333984375, -0.01171875, 0.0214996337890625, 0.0015583038330078125, -0.0037174224853515625, 0.0168914794921875, 0.052093505859375, -0.00479888916015625, -0.007770538330078125, -0.00585174560546875, 0.041015625, 0.0000712275505065918, -0.01296234130859375, 0.0151519775390625, 0.007472991943359375, 0.036956787109375, -0.013275146484375, 0.019989013671875, 0.031524658203125, -0.006084442138671875, 0.045257568359375, 0.004215240478515625, 0.0227813720703125, -0.005825042724609375, 0.042083740234375, 0.043670654296875, -0.03509521484375, 0.04010009765625, 0.01163482666015625, 0.040435791015625, 0.039764404296875, -0.0142669677734375, 0.00255584716796875, 0.03369140625, -0.046112060546875, 0.01285552978515625, 0.0297393798828125, 0.060272216796875, -0.0156707763671875, -0.04278564453125, -0.0016345977783203125, 0.0189361572265625, -0.0307769775390625, -0.045257568359375, -0.0280914306640625, -0.0120697021484375, 0.00937652587890625, 0.0303955078125, 0.006511688232421875, -0.01812744140625, 0.03759765625, 0.0145721435546875, 0.048583984375, -0.05767822265625, -0.0867919921875, -0.0665283203125, -0.10443115234375, 0.006778717041015625, -0.0026454925537109375, 0.0234832763671875, -0.01171112060546875, 0.034271240234375, -0.0011425018310546875, -0.0211334228515625, 0.013336181640625, 0.0684814453125, 0.00882720947265625, -0.01274871826171875, -0.0030689239501953125, -0.0279541015625, -0.0022563934326171875, 0.01441192626953125, -0.05657958984375, -0.0008854866027832031, -0.01445770263671875, -0.012481689453125, -0.01236724853515625, 0.01800537109375, -0.015838623046875, 0.060272216796875, 0.017486572265625, -0.00943756103515625, 0.01812744140625, -0.0400390625, -0.053863525390625, 0.0078582763671875, -0.049652099609375, -0.00594329833984375, 0.046905517578125, -0.0184173583984375, -0.0046234130859375, -0.0109100341796875, 0.03314208984375, 0.01467132568359375, -0.0211029052734375, 0.0028553009033203125, 0.047271728515625, 0.00628662109375, 0.03070068359375, -0.00652313232421875, 0.01053619384765625, -0.031646728515625, 0.0236663818359375, 0.0004374980926513672, 0.01450347900390625, 0.00922393798828125, -0.0166015625, -0.014434814453125, -0.008514404296875, 0.0259246826171875, 0.02130126953125, 0.036346435546875, 0.0012388229370117188, -0.0181427001953125, -0.00910186767578125, 0.056671142578125, -0.10784912109375, -0.0026531219482421875, 0.024749755859375, 0.020050048828125, -0.0243988037109375, -0.0256805419921875, -0.076171875, -0.0181427001953125, -0.07440185546875, 0.017303466796875, -0.01399993896484375, -0.0234832763671875, 0.0026073455810546875, -0.0428466796875, -0.0217132568359375, -0.0517578125, 0.0089111328125, 0.0033092498779296875, -0.0262603759765625, 0.013427734375, -0.0190277099609375, -0.01171112060546875, 0.01212310791015625, -0.0250396728515625, -0.0161895751953125, -0.0036716461181640625, -0.0218353271484375, 0.0226593017578125, -0.006866455078125, 0.036865234375, -0.01203155517578125, 0.0222625732421875, -0.002086639404296875, 0.047027587890625, -0.027374267578125, -0.0022735595703125, -0.02728271484375, 0.01128387451171875, 0.016937255859375, -0.01393890380859375, -0.0243072509765625, -0.0428466796875, -0.0302734375, 0.0015745162963867188, -0.007434844970703125, 0.016937255859375, -0.0060272216796875, -0.0011844635009765625, -0.01458740234375, -0.0272979736328125, -0.043975830078125, 0.034149169921875, -0.0113677978515625, -0.0038852691650390625, -0.04949951171875, -0.044708251953125, 0.00835418701171875, 0.0018796920776367188, -0.0278778076171875, 0.0214385986328125, 0.0309295654296875, 0.0323486328125, -0.026824951171875, -0.0266571044921875, -0.0222625732421875, 0.01302337646484375, -0.004726409912109375, 0.040374755859375, -0.003589630126953125, -0.006168365478515625, 0.031341552734375, -0.01715087890625, 0.00945281982421875, 0.0118865966796875, 0.03167724609375, -0.003452301025390625, -0.0156402587890625, 0.0225677490234375, 0.01158905029296875, -0.01415252685546875, 0.0145721435546875, -0.01477813720703125, 0.00919342041015625, -0.0165863037109375, 0.0305328369140625, 0.014312744140625, -0.020965576171875, -0.05572509765625, -0.0111083984375, -0.0007443428039550781, 0.0085296630859375, 0.036163330078125, 0.0255889892578125, 0.008270263671875, 0.0102996826171875, 0.0180816650390625, 0.02593994140625, -0.0059967041015625, 0.0526123046875, -0.031890869140625, 0.046722412109375, 0.0124664306640625, 0.0096282958984375, -0.0207061767578125, -0.0177154541015625, 0.0677490234375, 0.0516357421875, 0.0006866455078125, -0.0189208984375, 0.0115509033203125, 0.02093505859375, -0.0418701171875, 0.01318359375, 0.020416259765625, -0.004940032958984375, -0.00913238525390625, 0.0023174285888671875, 0.035430908203125, -0.042510986328125, -0.03778076171875, -0.0303192138671875, -0.01297760009765625, -0.03173828125, 0.044219970703125, -0.03387451171875, -0.049652099609375, 0.007495880126953125, 0.011444091796875, -0.0015974044799804688, -0.0013608932495117188, 0.0163726806640625, 0.01007080078125, -0.01110076904296875, 0.036102294921875, -0.03253173828125, 0.054840087890625, 0.01123809814453125, 0.00485992431640625, 0.01523590087890625, 0.0212249755859375, 0.0288848876953125, 0.0240325927734375, -0.0205841064453125, -0.034637451171875, -0.0178985595703125, 0.022125244140625, -0.0037021636962890625, -0.00341796875, -0.0245819091796875, -0.004535675048828125, 0.043121337890625, 0.02294921875, -0.027618408203125, 0.0034332275390625, -0.03448486328125, 0.00045800209045410156, 0.040924072265625, -0.04852294921875, 0.01522064208984375, 0.020294189453125, -0.027679443359375, -0.01763916015625, -0.0006117820739746094, -0.055877685546875, -0.0279083251953125, 0.003780364990234375, 0.01505279541015625, 0.0187225341796875, 0.043121337890625, 0.006153106689453125, -0.050933837890625, 0.0171051025390625, -0.01442718505859375, -0.0300750732421875, 0.045562744140625, -0.046905517578125, -0.0684814453125, 0.01007080078125, -0.07391357421875, -0.0195770263671875, -0.044769287109375, -0.047760009765625, -0.08148193359375, 0.003582000732421875, -0.0155029296875, -0.00539398193359375, -0.00466156005859375, -0.028289794921875, -0.046539306640625, 0.0240478515625, 0.03619384765625, -0.031463623046875, -0.02020263671875, 0.042694091796875, -0.0101470947265625, 0.02935791015625, 0.00308990478515625, 0.0157928466796875, -0.0012416839599609375, -0.009521484375, 0.00391387939453125, 0.00197601318359375, -0.01904296875, -0.0014905929565429688, 0.0029697418212890625, -0.0285186767578125, 0.017730712890625, -0.0045318603515625, 0.026702880859375, -0.03802490234375, -0.00548553466796875, -0.0266571044921875, 0.04742431640625, -0.077880859375, 0.043609619140625, -0.04541015625, -0.028350830078125, -0.0138702392578125, 0.0197601318359375, -0.004222869873046875, -0.007457733154296875, 0.01323699951171875, -0.033660888671875, 0.0308685302734375, -0.01788330078125, 0.051422119140625, 0.0626220703125, -0.03106689453125, 0.03076171875, 0.0159454345703125, -0.0035877227783203125, 0.01369476318359375, 0.0223541259765625, -0.0161285400390625, -0.031097412109375, 0.0280303955078125, 0.0066986083984375, -0.00534820556640625, 0.01480865478515625, -0.0062103271484375, -0.00228118896484375, 0.044891357421875, 0.05615234375, -0.06719970703125, 0.0087127685546875, 0.026031494140625, -0.0030536651611328125, -0.020477294921875, 0.005664825439453125, -0.008392333984375, -0.0157012939453125, -0.01605224609375, 0.03289794921875, -0.0083160400390625, -0.0009655952453613281, 0.01241302490234375, 0.004962921142578125, -0.0083770751953125, 0.025054931640625, -0.0020542144775390625, -0.049285888671875, -0.021881103515625, 0.043670654296875, -0.0223388671875, -0.01092529296875, 0.01438140869140625, -0.0095367431640625, -0.0263671875, -0.01611328125, 0.01004791259765625, -0.025360107421875, 0.007419586181640625, 0.0024471282958984375, -0.006580352783203125, 0.011444091796875, 0.0699462890625, -0.040435791015625, 0.040924072265625, 0.0178680419921875, 0.004993438720703125, -0.0246429443359375, -0.0005860328674316406, 0.028289794921875, -0.050018310546875, 0.005401611328125, 0.00536346435546875, -0.05859375, -0.046661376953125, -0.018218994140625, 0.0283355712890625, 0.097412109375, -0.00251007080078125, -0.037017822265625, 0.0640869140625, 0.0191192626953125, -0.05718994140625, -0.01540374755859375, 0.030548095703125, -0.040283203125, -0.033233642578125, -0.007038116455078125, -0.0460205078125, -0.024566650390625, -0.03955078125, -0.06109619140625, 0.1365966796875, -0.0067901611328125, 0.0259246826171875, 0.027984619140625, 0.0711669921875, -0.0684814453125, 0.0169830322265625, -0.01059722900390625, 0.048919677734375, 0.03790283203125, 0.031951904296875, -0.00643157958984375, -0.0024871826171875, 0.0113067626953125, 0.029296875, 0.0296630859375, 0.005046844482421875, -0.0069122314453125, 0.0009560585021972656, 0.05145263671875, -0.004459381103515625, -0.0218353271484375, 0.041595458984375, -0.033477783203125, -0.023712158203125, 0.00537872314453125, 0.01439666748046875, 0.021820068359375, 0.0127716064453125, -0.063232421875, -0.003772735595703125, 0.03558349609375, -0.0019779205322265625, 0.0246734619140625, -0.0101776123046875, -0.0814208984375, 0.034454345703125, 0.049224853515625, 0.028472900390625, -0.023468017578125, 0.004383087158203125, -0.0257415771484375, -0.033111572265625, 0.025360107421875, -0.043975830078125, 0.042694091796875, -0.0176849365234375, 0.02532958984375, -0.029510498046875, 0.0087738037109375, 0.01230621337890625, -0.037078857421875, 0.002223968505859375, 0.034515380859375, -0.0521240234375, -0.01058197021484375, 0.01488494873046875, 0.0396728515625, -0.0004673004150390625, 0.00791168212890625, 0.02056884765625, -0.007808685302734375, -0.0013151168823242188, -0.004329681396484375, 0.006771087646484375, -0.003681182861328125, -0.0092620849609375, 0.00731658935546875, 0.03924560546875, 0.007175445556640625, -0.005100250244140625, -0.0302276611328125, -0.0205841064453125, 0.01084136962890625, 0.009521484375, -0.00002956390380859375, 0.060089111328125, 0.0040740966796875, -0.019256591796875, -0.00827789306640625, -0.004425048828125, 0.00958251953125, 0.013427734375, -0.0021114349365234375, 0.049224853515625, 0.00579071044921875, 0.006923675537109375, -0.0209503173828125, 0.0227813720703125, 0.0265655517578125, -0.00209808349609375, -0.007659912109375, -0.0013275146484375, 0.0198974609375, 0.014556884765625, -0.0068511962890625, -0.04638671875, 0.03240966796875, 0.04437255859375, -0.08203125, -0.034942626953125, -0.0007710456848144531, -0.031646728515625, 0.01910400390625, -0.00466156005859375, 0.0169830322265625, 0.006847381591796875, -0.020477294921875, -0.02337646484375, 0.030792236328125, 0.03033447265625, 0.0100860595703125, 0.013092041015625, 0.0058746337890625, -0.0225372314453125, 0.0452880859375, -0.00397491455078125, 0.059814453125, 0.04071044921875, -0.056304931640625, -0.0103759765625, 0.025604248046875, -0.0181732177734375, -0.0070037841796875, 0.019805908203125, -0.043701171875, 0.04541015625, 0.010498046875, 0.017669677734375, -0.009735107421875, -0.00910186767578125, -0.005680084228515625, 0.0289154052734375, 0.045989990234375, 0.034759521484375, 0.0001137852668762207, -0.016265869140625, -0.022705078125, 0.06964111328125, 0.038177490234375, 0.07806396484375, -0.05401611328125, 0.048858642578125, 0.0183258056640625, 0.01427459716796875, 0.004329681396484375, 0.027252197265625, 0.0240478515625, 0.004627227783203125, 0.017364501953125, -0.027252197265625, -0.078857421875, 0.034332275390625, 0.0238037109375, 0.0152130126953125, 0.011871337890625, 0.019622802734375, 0.00580596923828125, -0.00222015380859375, -0.008392333984375, -0.016754150390625, -0.0179901123046875, 0.01035308837890625, -0.002735137939453125, 0.013885498046875, -0.01470947265625, -0.02679443359375, 0.01456451416015625, 0.04754638671875, -0.0254058837890625, 0.016021728515625, -0.00984954833984375, -0.0157470703125, 0.01947021484375, 0.060821533203125, -0.059661865234375, 0.08331298828125, -0.0038814544677734375, 0.0278778076171875, 0.01560211181640625, 0.0970458984375, 0.056243896484375, -0.0733642578125, 0.072509765625, 0.0784912109375, 0.031768798828125, -0.057769775390625, -0.016265869140625, 0.1209716796875, -0.0265350341796875, 0.035369873046875, -0.027587890625, -0.02825927734375, -0.0262908935546875, 0.004878997802734375, 0.02978515625, -0.01302337646484375, -0.0301971435546875, -0.056976318359375, -0.0158538818359375, 0.0596923828125, 0.0178985595703125, -0.03668212890625, 0.023193359375, -0.0169525146484375, 0.0030078887939453125, 0.01198577880859375, 0.0333251953125, -0.0272674560546875, -0.050445556640625, -0.026519775390625, -0.03314208984375, -0.039398193359375, 0.07476806640625, 0.0031585693359375, 0.040191650390625, 0.043701171875, -0.029388427734375, 0.059173583984375, 0.03961181640625, 0.0285797119140625, 0.09771728515625, -0.0170135498046875, -0.0435791015625, 0.00021409988403320312, -0.006320953369140625, 0.019317626953125, -0.01464080810546875, 0.00366973876953125, -0.0256500244140625, -0.0164642333984375, -0.032440185546875, 0.030853271484375, 0.043243408203125, -0.0286865234375, -0.0443115234375, 0.061798095703125, -0.015655517578125, -0.0211029052734375, -0.04376220703125, 0.00543975830078125, -0.006023406982421875, -0.031707763671875, -0.0258941650390625, 0.0012226104736328125, -0.006870269775390625, 0.06512451171875, 0.001251220703125, 0.03662109375, -0.00594329833984375, 0.0357666015625, -0.0155029296875, 0.0294342041015625, 0.0139617919921875, -0.003265380859375, -0.0235748291015625, 0.031005859375, 0.014068603515625, 0.0155487060546875, -0.033233642578125, 0.047515869140625, 0.00432586669921875, 0.00665283203125, 0.006755828857421875, -0.01776123046875, -0.004878997802734375, -0.01096343994140625, 0.0109710693359375, 0.0153656005859375, -0.007610321044921875, -0.003246307373046875, -0.0296173095703125, -0.043670654296875, -0.0260467529296875, -0.002536773681640625, 0.0228424072265625, -0.07965087890625, 0.01528167724609375, 0.036163330078125, -0.0187530517578125, 0.0147247314453125, 0.0050048828125, -0.0328369140625, 0.0115814208984375, 0.0193328857421875, -0.00632476806640625, -0.060302734375, -0.034271240234375, 0.040679931640625, -0.006649017333984375, 0.0291900634765625, 0.007843017578125, 0.0258331298828125, 0.029510498046875, 0.06658935546875, 0.0234222412109375, 0.0300750732421875, -0.040191650390625, 0.005146026611328125, 0.0093536376953125, 0.0087127685546875, -0.025238037109375, -0.047210693359375, -0.0017032623291015625, 0.0240020751953125, 0.0209503173828125, 0.033935546875, -0.042938232421875, 0.022979736328125, -0.007648468017578125, 0.0447998046875, -0.0021991729736328125, 0.025238037109375, -0.021514892578125, 0.03326416015625, -0.0027713775634765625, -0.00868988037109375, 0.0196075439453125, -0.0175323486328125, 0.00695037841796875, 0.00757598876953125, -0.00839996337890625, -0.050628662109375, 0.037384033203125, -0.02703857421875, -0.00505828857421875, 0.0213775634765625 ]
07d0f0208cbea25b61731c254ae2d5489a29a674
Wordpress Stackexchange Q: Modify page title format (when using title-tag) Currently my page titles are handled by WordPress, in a call to wp_head (I have add_theme_support( 'title-tag' ) in functions.php). I'd like to change the page title format for category archives - currently these look like <Category name> Archives - <Site name> I'd like them just to be: <Category name> - <Site name> Is there a way of achieving this? A: If you're using the Yoast SEO plugin (which it looks like you are) then this answer might help you If you are using yoast SEO plugin then the easiest method is to remove the archive word from "titles & metas-> Taxonomies->category" find: %%term_title%% Archives %%page%% %%sep%% %%sitename%% replace it with: %%term_title%% %%page%% %%sep%% %%sitename%% Alternatively you could try changing it using the get_the_archive_title filter as explained here add_filter( 'get_the_archive_title', function ($title) { if ( is_category() ) { $title = single_cat_title( '', false ); } elseif ( is_tag() ) { $title = single_tag_title( '', false ); } elseif ( is_author() ) { $title = '<span class="vcard">' . get_the_author() . '</span>' ; } return $title; });
Q: Modify page title format (when using title-tag) Currently my page titles are handled by WordPress, in a call to wp_head (I have add_theme_support( 'title-tag' ) in functions.php). I'd like to change the page title format for category archives - currently these look like <Category name> Archives - <Site name> I'd like them just to be: <Category name> - <Site name> Is there a way of achieving this? A: If you're using the Yoast SEO plugin (which it looks like you are) then this answer might help you If you are using yoast SEO plugin then the easiest method is to remove the archive word from "titles & metas-> Taxonomies->category" find: %%term_title%% Archives %%page%% %%sep%% %%sitename%% replace it with: %%term_title%% %%page%% %%sep%% %%sitename%% Alternatively you could try changing it using the get_the_archive_title filter as explained here add_filter( 'get_the_archive_title', function ($title) { if ( is_category() ) { $title = single_cat_title( '', false ); } elseif ( is_tag() ) { $title = single_tag_title( '', false ); } elseif ( is_author() ) { $title = '<span class="vcard">' . get_the_author() . '</span>' ; } return $title; }); A: You need to use the wp_title hook, try this code it should work for you : add_filter( 'wp_title', 'my_new_category_title', 10, 2 ); function my_new_category_title($title) { if (is_category() || is_archive()) { $title = ' - '.get_bloginfo('name').' '.$title; } return $title; } A: If you only want to edit the title tag () and not what is at the top of the page you can do this: // define the document_title_parts callback function filter_document_title_parts( $title ) { if( is_category() ){ $title[title] = str_replace( 'Archives', '', $title[title] ); } return $title; }; // add the filter add_filter( 'document_title_parts', 'filter_document_title_parts', 10, 1 ); A: Also, you can change the default Category Title without using SEO plugins using a function by override the default filter single_cat_title as follow: /** * Add Custom Category Title */ add_filter( 'single_cat_title', 'custom_category_title', 10, 2 ); function custom_category_title( $title ) { if ( is_category() || is_archive() ) { $title = $title . ' Example'; } return $title; } The output of the above code is: Category Example
wordpress
{ "language": "en", "length": 351, "provenance": "stackexchange_00019.jsonl.gz:468576", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/240221" }
[ 0.01413726806640625, -0.00353240966796875, -0.0036373138427734375, 0.00746917724609375, -0.00036787986755371094, -0.01552581787109375, 0.0242462158203125, -0.02142333984375, -0.01031494140625, 0.0211639404296875, 0.0389404296875, -0.011322021484375, 0.018280029296875, -0.049896240234375, 0.0020542144775390625, 0.004100799560546875, 0.01299285888671875, -0.010589599609375, 0.0020046234130859375, -0.00630950927734375, 0.00441741943359375, 0.0011281967163085938, -0.006160736083984375, -0.01103973388671875, 0.022003173828125, -0.05780029296875, 0.098876953125, -0.0277557373046875, 0.03509521484375, -0.0289306640625, 0.026580810546875, -0.006336212158203125, 0.045318603515625, -0.017578125, -0.01470947265625, 0.07965087890625, -0.027618408203125, 0.0097198486328125, -0.00586700439453125, 0.03399658203125, 0.0355224609375, -0.026458740234375, -0.00522613525390625, -0.01393890380859375, 0.0111236572265625, -0.036468505859375, 0.0382080078125, -0.050201416015625, 0.0302276611328125, -0.0238800048828125, 0.004375457763671875, 0.01267242431640625, 0.0224761962890625, -0.030670166015625, -0.027069091796875, -0.004199981689453125, -0.0056915283203125, -0.0192413330078125, 0.003101348876953125, -0.01404571533203125, -0.00013136863708496094, -0.0016155242919921875, 0.01395416259765625, 0.0126190185546875, 0.00461578369140625, -0.0177154541015625, 0.045196533203125, 0.0330810546875, -0.0162200927734375, 0.013671875, 0.041748046875, 0.01334381103515625, -0.019866943359375, 0.01343536376953125, -0.05352783203125, 0.005939483642578125, -0.006938934326171875, -0.038818359375, 0.03692626953125, -0.0131072998046875, 0.043243408203125, -0.01117706298828125, 0.0275726318359375, -0.021881103515625, 0.046234130859375, 0.005222320556640625, 0.01401519775390625, -0.022735595703125, -0.060699462890625, -0.00209808349609375, -0.035064697265625, -0.0150146484375, -0.04351806640625, -0.0037784576416015625, 0.00611114501953125, -0.004734039306640625, 0.01088714599609375, 0.061859130859375, 0.013519287109375, 0.018341064453125, 0.01383209228515625, -0.03851318359375, 0.014892578125, -0.049896240234375, 0.009979248046875, 0.024932861328125, 0.002941131591796875, 0.0250091552734375, 0.03521728515625, 0.00737762451171875, -0.0159759521484375, 0.0031585693359375, -0.050933837890625, 0.0160369873046875, -0.051300048828125, 0.047149658203125, -0.05181884765625, -0.01605224609375, -0.02960205078125, 0.0382080078125, 0.0186920166015625, 0.047943115234375, 0.033966064453125, -0.0207672119140625, -0.0069427490234375, 0.0233612060546875, -0.0290069580078125, -0.06890869140625, -0.0016927719116210938, -0.0272369384765625, -0.0085906982421875, 0.0124053955078125, 0.053375244140625, 0.0667724609375, 0.0175628662109375, -0.0021991729736328125, -0.01277923583984375, -0.042388916015625, -0.018157958984375, 0.01433563232421875, -0.0204620361328125, 0.0028476715087890625, 0.061737060546875, -0.0305023193359375, -0.0108642578125, -0.00759124755859375, 0.0021953582763671875, 0.041168212890625, -0.007366180419921875, -0.04522705078125, 0.051788330078125, -0.0211639404296875, 0.037933349609375, -0.0020542144775390625, -0.042938232421875, -0.03057861328125, 0.003871917724609375, -0.0213623046875, -0.012176513671875, -0.037811279296875, 0.025604248046875, -0.00847625732421875, -0.00949859619140625, 0.0102386474609375, -0.021209716796875, 0.0240936279296875, -0.0225067138671875, -0.0023746490478515625, 0.0006213188171386719, -0.029571533203125, -0.0035190582275390625, 0.0248565673828125, -0.023406982421875, -0.0007581710815429688, 0.0135650634765625, 0.00806427001953125, -0.0304718017578125, 0.0310211181640625, -0.0032634735107421875, 0.035858154296875, 0.009246826171875, -0.04119873046875, 0.007572174072265625, -0.0027904510498046875, -0.0300445556640625, -0.01253509521484375, 0.01493072509765625, 0.020111083984375, 0.0220794677734375, 0.0233612060546875, 0.02117919921875, 0.01392364501953125, -0.0231475830078125, -0.0281982421875, 0.0273895263671875, -0.012420654296875, 0.0029392242431640625, -0.0244293212890625, 0.005245208740234375, 0.0216064453125, 0.007110595703125, 0.004016876220703125, -0.00959014892578125, 0.017822265625, -0.023284912109375, -0.00879669189453125, 0.0016393661499023438, 0.01187896728515625, -0.03326416015625, 0.0268707275390625, 0.00862884521484375, -0.0311126708984375, 0.0013427734375, -0.0139007568359375, 0.023590087890625, -0.0113525390625, 0.01983642578125, -0.048858642578125, -0.038543701171875, -0.031585693359375, -0.0142059326171875, 0.016082763671875, -0.03857421875, 0.1019287109375, 0.06207275390625, -0.01331329345703125, -0.021728515625, -0.053497314453125, 0.025970458984375, 0.0029430389404296875, -0.06512451171875, 0.05877685546875, 0.05535888671875, 0.050323486328125, -0.036773681640625, -0.016021728515625, -0.0221710205078125, -0.06427001953125, -0.006427764892578125, 0.06488037109375, 0.03118896484375, -0.0323486328125, -0.024993896484375, -0.01081085205078125, 0.0379638671875, -0.0014467239379882812, 0.00603485107421875, 0.0018339157104492188, 0.03131103515625, 0.0154266357421875, -0.036895751953125, -0.0338134765625, 0.045501708984375, -0.054779052734375, -0.006137847900390625, 0.0555419921875, -0.0242919921875, -0.0308380126953125, 0.0158538818359375, -0.02130126953125, 0.0144805908203125, -0.0081329345703125, -0.0240325927734375, 0.012481689453125, 0.044219970703125, 0.005214691162109375, 0.0290374755859375, 0.02288818359375, -0.033477783203125, 0.018157958984375, -0.0006046295166015625, 0.00109100341796875, 0.013031005859375, 0.031768798828125, -0.036865234375, 0.0345458984375, -0.03253173828125, 0.01499176025390625, -0.006103515625, 0.0050201416015625, -0.004108428955078125, 0.045166015625, 0.015838623046875, -0.01202392578125, -0.0299224853515625, -0.07318115234375, 0.0161895751953125, 0.026611328125, -0.0167388916015625, -0.037750244140625, -0.00835418701171875, 0.036834716796875, -0.047760009765625, 0.0692138671875, -0.01190185546875, -0.02777099609375, 0.0125579833984375, -0.062347412109375, 0.048248291015625, -0.042449951171875, 0.070556640625, 0.059967041015625, -0.0279541015625, 0.03546142578125, 0.00884246826171875, -0.0013685226440429688, 0.03546142578125, -0.011871337890625, -0.01727294921875, -0.00605010986328125, -0.0254669189453125, 0.0117950439453125, 0.013763427734375, 0.01806640625, 0.0171356201171875, -0.03857421875, 0.01641845703125, 0.02130126953125, -0.059844970703125, -0.07281494140625, 0.03656005859375, -0.08074951171875, 0.01317596435546875, 0.02545166015625, -0.053985595703125, -0.04766845703125, 0.08721923828125, -0.0020847320556640625, 0.03173828125, -0.06536865234375, -0.04461669921875, -0.0445556640625, -0.0657958984375, -0.0223388671875, 0.0061798095703125, -0.0240325927734375, 0.0008702278137207031, 0.043701171875, 0.0214996337890625, -0.034454345703125, 0.0103607177734375, 0.053436279296875, -0.00521087646484375, -0.0196685791015625, 0.0089263916015625, -0.042724609375, 0.0295257568359375, 0.008514404296875, -0.0163421630859375, 0.006439208984375, 0.01678466796875, -0.027374267578125, -0.009796142578125, 0.0254364013671875, 0.022705078125, -0.0030498504638671875, 0.0202789306640625, 0.068603515625, 0.0380859375, 0.0013208389282226562, -0.0380859375, -0.00850677490234375, -0.053680419921875, 0.06353759765625, 0.04400634765625, -0.0186920166015625, 0.0079803466796875, 0.0173797607421875, -0.017181396484375, -0.0161285400390625, 0.01641845703125, -0.027191162109375, -0.00421142578125, 0.006099700927734375, -0.005779266357421875, 0.00975799560546875, 0.0157470703125, -0.0262603759765625, -0.006500244140625, -0.0021839141845703125, 0.0171966552734375, 0.0206756591796875, -0.029693603515625, 0.00014126300811767578, -0.044769287109375, 0.01502227783203125, -0.08648681640625, -0.00968170166015625, -0.035675048828125, 0.006984710693359375, -0.01280975341796875, 0.041107177734375, -0.050628662109375, -0.02740478515625, 0.002716064453125, 0.032470703125, -0.004573822021484375, -0.02008056640625, -0.00980377197265625, -0.027191162109375, -0.108154296875, 0.037109375, -0.0031452178955078125, -0.021484375, -0.028228759765625, 0.01959228515625, -0.05645751953125, -0.04681396484375, 0.00447845458984375, -0.006328582763671875, -0.00028324127197265625, -0.00312042236328125, -0.0423583984375, 0.006481170654296875, -0.015838623046875, -0.029052734375, -0.09130859375, -0.01561737060546875, -0.01479339599609375, 0.06390380859375, -0.0214996337890625, 0.01358795166015625, -0.0278472900390625, 0.05133056640625, 0.01058197021484375, -0.0118255615234375, 0.023590087890625, -0.012847900390625, 0.02117919921875, 0.0019350051879882812, -0.00719451904296875, -0.0223236083984375, -0.0027294158935546875, 0.0003705024719238281, -0.0794677734375, -0.02313232421875, -0.01255035400390625, -0.033050537109375, 0.04034423828125, -0.0560302734375, -0.0948486328125, -0.055145263671875, 0.005237579345703125, -0.00846099853515625, -0.005886077880859375, 0.015716552734375, -0.053802490234375, -0.06524658203125, 0.0811767578125, 0.02984619140625, -0.01507568359375, -0.012298583984375, 0.052276611328125, 0.0029430389404296875, -0.06781005859375, -0.048309326171875, 0.012115478515625, 0.0438232421875, -0.047149658203125, 0.06646728515625, 0.02734375, -0.041229248046875, 0.102783203125, -0.004810333251953125, -0.01485443115234375, -0.004451751708984375, 0.0218658447265625, -0.00681304931640625, -0.04901123046875, 0.03253173828125, -0.031829833984375, 0.03436279296875, -0.002368927001953125, -0.0008611679077148438, 0.00618743896484375, -0.004619598388671875, 0.01934814453125, 0.0167083740234375, -0.00576019287109375, -0.0226898193359375, -0.027618408203125, 0.0130157470703125, 0.093994140625, -0.001338958740234375, 0.0304718017578125, 0.006866455078125, -0.01375579833984375, -0.0203399658203125, -0.0097808837890625, -0.051544189453125, -0.0010356903076171875, -0.0404052734375, 0.0169677734375, -0.05511474609375, -0.03314208984375, -0.0303955078125, 0.0003941059112548828, -0.03045654296875, 0.00727081298828125, -0.00553131103515625, -0.027923583984375, 0.0005478858947753906, 0.0118865966796875, 0.0011692047119140625, 0.01541900634765625, 0.014801025390625, 0.007717132568359375, 0.01678466796875, -0.0014181137084960938, -0.0247650146484375, 0.01357269287109375, -0.019378662109375, 0.00812530517578125, 0.021087646484375, -0.0287322998046875, 0.0138092041015625, 0.043792724609375, 0.04052734375, 0.0116424560546875, -0.035430908203125, 0.00506591796875, -0.00803375244140625, 0.039276123046875, 0.0293121337890625, -0.044403076171875, -0.0179443359375, 0.04803466796875, -0.0008554458618164062, -0.032379150390625, 0.01076507568359375, 0.0197296142578125, 0.032806396484375, 0.01303863525390625, -0.0335693359375, 0.0196685791015625, -0.019805908203125, -0.015838623046875, 0.020965576171875, -0.039337158203125, -0.035308837890625, -0.049468994140625, -0.0289764404296875, 0.040069580078125, -0.01214599609375, -0.0232696533203125, -0.00531768798828125, -0.054107666015625, -0.0013780593872070312, 0.0240936279296875, -0.01457977294921875, -0.0024662017822265625, -0.004367828369140625, 0.02728271484375, -0.0025768280029296875, -0.0074005126953125, 0.01325225830078125, 0.01678466796875, -0.03460693359375, -0.0027065277099609375, 0.023193359375, -0.0048980712890625, 0.06915283203125, -0.04168701171875, -0.0305938720703125, 0.0023670196533203125, -0.01038360595703125, 0.068359375, 0.03631591796875, -0.0487060546875, 0.00366973876953125, -0.0450439453125, -0.00994110107421875, -0.0216064453125, -0.040557861328125, -0.046295166015625, -0.0201416015625, -0.00229644775390625, -0.0047149658203125, 0.00966644287109375, 0.0119171142578125, -0.034759521484375, 0.038909912109375, 0.0201568603515625, 0.027984619140625, -0.03900146484375, 0.0860595703125, 0.0089874267578125, 0.06036376953125, -0.00991058349609375, 0.018218994140625, -0.039642333984375, -0.003986358642578125, -0.0035457611083984375, -0.053314208984375, -0.004955291748046875, -0.0049591064453125, -0.0250091552734375, 0.028228759765625, 0.0447998046875, 0.017852783203125, -0.01168060302734375, -0.0006723403930664062, 0.003326416015625, -0.0102996826171875, 0.006404876708984375, 0.003631591796875, -0.040374755859375, 0.01160430908203125, -0.0185546875, 0.0163116455078125, -0.028411865234375, -0.0216522216796875, 0.03375244140625, -0.0218658447265625, 0.0179595947265625, 0.0419921875, -0.061187744140625, 0.050445556640625, 0.00704193115234375, -0.0023097991943359375, 0.022186279296875, -0.01410675048828125, 0.0204010009765625, 0.0152130126953125, -0.0306243896484375, 0.04327392578125, 0.0096435546875, 0.055908203125, -0.01143646240234375, 0.0491943359375, 0.0595703125, -0.01251220703125, -0.0102691650390625, 0.03704833984375, 0.025146484375, -0.06072998046875, 0.000850677490234375, 0.020751953125, 0.0222015380859375, 0.01456451416015625, 0.00675201416015625, 0.0009055137634277344, -0.040069580078125, 0.005893707275390625, 0.01319122314453125, -0.00009614229202270508, -0.00034165382385253906, 0.01580810546875, 0.0187835693359375, -0.01470947265625, 0.059844970703125, 0.0187530517578125, -0.048248291015625, -0.01238250732421875, 0.0283660888671875, 0.01041412353515625, -0.0335693359375, -0.00290679931640625, 0.010528564453125, -0.0225982666015625, -0.059722900390625, 0.03460693359375, 0.00576019287109375, -0.00881195068359375, -0.00539398193359375, 0.0280914306640625, -0.0008568763732910156, 0.032745361328125, -0.01369476318359375, -0.01398468017578125, 0.0036525726318359375, -0.0216064453125, -0.01824951171875, -0.0222930908203125, -0.0002257823944091797, 0.00800323486328125, -0.027801513671875, 0.006458282470703125, -0.0234527587890625, -0.019500732421875, -0.01416015625, -0.05999755859375, 0.018768310546875, 0.01081085205078125, -0.0179901123046875, 0.00913238525390625, -0.005184173583984375, 0.007770538330078125, 0.018402099609375, 0.0209808349609375, -0.03839111328125, -0.0161590576171875, 0.0213623046875, -0.037567138671875, -0.0008792877197265625, 0.0091400146484375, -0.0908203125, 0.08245849609375, 0.029449462890625, 0.032623291015625, -0.0250396728515625, 0.0221710205078125, -0.0287322998046875, -0.004268646240234375, -0.01032257080078125, 0.021759033203125, 0.0136871337890625, 0.01004791259765625, -0.003871917724609375, -0.0021533966064453125, 0.0213775634765625, 0.0274200439453125, 0.00530242919921875, 0.00913238525390625, -0.033233642578125, -0.00673675537109375, 0.0128173828125, 0.018829345703125, -0.001995086669921875, 0.03985595703125, -0.029510498046875, -0.0290374755859375, -0.01145172119140625, 0.01016998291015625, 0.0283203125, -0.0206451416015625, -0.055572509765625, 0.01308441162109375, 0.045318603515625, 0.036956787109375, 0.041015625, -0.025299072265625, -0.05120849609375, 0.028564453125, 0.04241943359375, -0.026763916015625, -0.0257110595703125, 0.06243896484375, 0.045257568359375, -0.033447265625, -0.0013895034790039062, -0.04180908203125, 0.050811767578125, 0.01654052734375, 0.022064208984375, 0.027496337890625, 0.001983642578125, 0.049102783203125, -0.00010216236114501953, 0.00959014892578125, -0.0018053054809570312, 0.026580810546875, 0.0435791015625, 0.0088043212890625, 0.0159759521484375, -0.0269317626953125, 0.02899169921875, 0.036041259765625, 0.050628662109375, -0.044403076171875, -0.006481170654296875, 0.006591796875, -0.01044464111328125, -0.02252197265625, -0.022613525390625, -0.00498199462890625, 0.03118896484375, 0.032562255859375, 0.0053253173828125, -0.01100921630859375, 0.038238525390625, 0.01340484619140625, 0.0086822509765625, 0.0121612548828125, -0.03155517578125, -0.00864410400390625, -0.0499267578125, -0.005096435546875, 0.00617218017578125, 0.0706787109375, 0.0278167724609375, 0.05426025390625, -0.0136871337890625, -0.04144287109375, -0.007534027099609375, 0.0289154052734375, -0.016876220703125, -0.0014286041259765625, -0.036651611328125, -0.046844482421875, 0.022705078125, 0.03277587890625, 0.038665771484375, 0.006397247314453125, 0.061431884765625, 0.0633544921875, -0.004352569580078125, -0.0030670166015625, 0.04180908203125, -0.0038585662841796875, -0.0231475830078125, -0.01055908203125, 0.01549530029296875, 0.034423828125, 0.005191802978515625, -0.01027679443359375, 0.06878662109375, 0.034820556640625, -0.06280517578125, -0.0032138824462890625, -0.0016698837280273438, -0.0467529296875, 0.0196533203125, -0.0113677978515625, 0.024932861328125, -0.0186004638671875, -0.07696533203125, -0.01224517822265625, -0.0131683349609375, -0.053314208984375, 0.0208282470703125, 0.045623779296875, -0.038299560546875, 0.007904052734375, -0.0189056396484375, 0.015350341796875, 0.0301055908203125, -0.032989501953125, -0.0007410049438476562, 0.045623779296875, 0.00824737548828125, 0.01456451416015625, -0.0030422210693359375, 0.0011920928955078125, 0.01143646240234375, 0.041229248046875, 0.02685546875, 0.0274810791015625, -0.0205535888671875, 0.032989501953125, 0.02093505859375, 0.0194091796875, -0.057769775390625, -0.036590576171875, 0.06298828125, -0.07470703125, -0.007381439208984375, 0.0166778564453125, -0.01371002197265625, 0.01611328125, 0.032745361328125, -0.0216522216796875, 0.01739501953125, -0.0256805419921875, 0.0169219970703125, -0.0207061767578125, 0.0186614990234375, -0.023101806640625, -0.0189056396484375, -0.04229736328125, -0.0222930908203125, 0.03387451171875, 0.022857666015625, 0.002613067626953125, 0.0352783203125, 0.0038700103759765625, 0.0215606689453125, 0.0187225341796875, -0.01027679443359375, 0.0181121826171875, 0.02679443359375, -0.0374755859375, -0.01038360595703125, 0.0243682861328125, -0.011932373046875, 0.0296478271484375, 0.020538330078125, 0.03729248046875, -0.0002617835998535156, 0.01580810546875, -0.000701904296875, -0.0311279296875, 0.003322601318359375, -0.0175323486328125, 0.0036792755126953125, 0.009552001953125, 0.01462554931640625, -0.052398681640625, 0.0016679763793945312, -0.048309326171875, -0.028045654296875, 0.01116180419921875, 0.0195159912109375, 0.00582122802734375, -0.020416259765625, -0.07562255859375, -0.036834716796875, 0.00832366943359375, -0.01763916015625, 0.0240325927734375, -0.00799560546875, -0.038970947265625, -0.0297698974609375, -0.00839996337890625, -0.049774169921875, 0.0172576904296875, 0.031890869140625, -0.0311431884765625, -0.04620361328125, -0.07086181640625, -0.007663726806640625, -0.09161376953125, -0.0037860870361328125, 0.057220458984375, 0.00033664703369140625, -0.050994873046875, -0.0230712890625, -0.02606201171875, 0.041229248046875, -0.048126220703125, -0.0013189315795898438, 0.01385498046875, 0.00978851318359375, -0.0194549560546875, -0.08929443359375, 0.003055572509765625, -0.043975830078125, -0.00702667236328125, 0.030517578125, -0.06866455078125, -0.046600341796875, -0.056976318359375, -0.03033447265625, 0.04840087890625, 0.0282440185546875, -0.0283203125, -0.01143646240234375, 0.031036376953125, 0.0037708282470703125, -0.0224761962890625, -0.00283050537109375, 0.0008535385131835938, 0.0224151611328125, 0.017578125, 0.0244293212890625, 0.03973388671875, 0.0107269287109375, 0.024139404296875, -0.02008056640625, 0.02056884765625, 0.011016845703125, 0.00197601318359375, 0.00498199462890625, -0.006237030029296875, -0.0006899833679199219, 0.018798828125, -0.055572509765625, -0.016998291015625, -0.024444580078125, 0.041412353515625, 0.0021877288818359375, -0.0377197265625, -0.048065185546875, -0.0204620361328125, 0.029205322265625, 0.056976318359375, 0.009185791015625, -0.0279388427734375, -0.0272064208984375, -0.0229949951171875, -0.018463134765625, 0.015655517578125, 0.021087646484375, -0.0657958984375, 0.0004849433898925781, 0.044708251953125, -0.0293121337890625, -0.0214385986328125, -0.0030345916748046875, -0.05242919921875, 0.00902557373046875, 0.0009479522705078125, 0.0137481689453125, -0.016387939453125, -0.025421142578125, 0.018463134765625, -0.032318115234375, -0.0362548828125, 0.01456451416015625, 0.0206756591796875, -0.025848388671875, 0.0106964111328125, -0.06378173828125, 0.0010509490966796875, -0.0078582763671875, 0.00464630126953125, -0.01238250732421875, 0.0184173583984375, -0.0008835792541503906, 0.038055419921875, 0.009033203125, 0.01459503173828125, -0.01800537109375, 0.013824462890625, 0.01432037353515625, 0.0181732177734375, -0.0208892822265625, 0.07647705078125, 0.0007619857788085938, -0.0156707763671875, -0.013671875, 0.036956787109375, -0.0014524459838867188, -0.0291748046875, 0.0038661956787109375, -0.0252838134765625, 0.006587982177734375, -0.030731201171875, 0.0421142578125, -0.04852294921875, 0.021484375, -0.07952880859375, 0.020172119140625, 0.024078369140625 ]
196f3ff0fe8fcfb89d464f44bbc9a6fbfb4a491a
Wordpress Stackexchange Q: WordPress API - Get Drafts I want to check if a post already exists. This includes to check if the post exists as draft as well. But I struggle a little bit with the wordpress API v2. http://v2.wp-api.org/reference/posts/ Under List Posts -> status they say Limit result set to posts assigned a specific status. Default: publish I tried to assign the value as parameter, but I get an error response: {"code":"rest_invalid_param","message":"Invalid parameter: status","data":{"status":400,"params":{"status":"Status is forbidden"}}} I als asign the title of the post to check: filter[s] = post Title So how to get the posts with draft state? I'm currently using the Basic Auth for developing? I also tried filter[post_status]=draft but with no success. I have the following plugins installed: WP REST API WP REST API - filter fields JSON Basic Authentication A: I think the query parameter that you want for post status is: status=draft Let me know if this doesn't work.
Q: WordPress API - Get Drafts I want to check if a post already exists. This includes to check if the post exists as draft as well. But I struggle a little bit with the wordpress API v2. http://v2.wp-api.org/reference/posts/ Under List Posts -> status they say Limit result set to posts assigned a specific status. Default: publish I tried to assign the value as parameter, but I get an error response: {"code":"rest_invalid_param","message":"Invalid parameter: status","data":{"status":400,"params":{"status":"Status is forbidden"}}} I als asign the title of the post to check: filter[s] = post Title So how to get the posts with draft state? I'm currently using the Basic Auth for developing? I also tried filter[post_status]=draft but with no success. I have the following plugins installed: WP REST API WP REST API - filter fields JSON Basic Authentication A: I think the query parameter that you want for post status is: status=draft Let me know if this doesn't work. A: that is due to the fact, that draft is a protected status. and protected status are not publicly queriable simply by adding the attribute to the url. because that would mean, that everybody could query any wordpress api and query for "hidden" posts. by default protected statuses are ‘future‘, ‘draft‘ and ‘pending‘. but you still could change that behavior for your api... following is a working example, but it only exposes drafts to logged in users: /** * make drafts public for logged in users */ function so240254_init() { if (is_user_logged_in()) : global $wp_post_statuses; $wp_post_statuses['draft']->public = true; $wp_post_statuses['draft']->exclude_from_search = false; $wp_post_statuses['draft']->publicly_queryable = true; endif; } add_action('init', 'so240254_init'); /* * expose drafts to api for logged in users */ function so240254_rest_post_query($args) { if (is_user_logged_in()) : $args['post_status'] = ['publish', 'draft']; endif; return $args; } add_filter('rest_post_query', 'so240254_rest_post_query'); now, when you are logged in and call the rest api, you get published and draft posts (no query parameter required!). if not, you only get published posts. you could strip the is_user_logged_in() method, if you really wanted to expose drafts to all queries, no matter the current user status... A: Having recently been through a similar problem, and learning to solve it, I thought I'd share my learning experience. As we learned, anybody can request a post with status=publish. If you get errors like the following or similar, then you should start thinking in terms of problems with authentication or permissions: stdClass Object ( [code] => rest_invalid_param [message] => Invalid parameter(s): status [data] => stdClass Object ( [status] => 400 [params] => stdClass Object ( [status] => Status is forbidden. ) [details] => stdClass Object ( [status] => stdClass Object ( [code] => rest_forbidden_status [message] => Status is forbidden. [data] => stdClass Object ( [status] => 401 ) ) ) ) ) ...or... stdClass Object ( [code] => jwt_auth_invalid_token [message] => Wrong number of segments [data] => stdClass Object ( [status] => 403 ) ) ...If you are logged in as an admin, then you should have permission to see draft posts. Therefore, it is likely your API calls are not authenticating for some reason. The first thing I tested was the token. I happen to be using the JWT Authentication for WP-API plugin, which is actually pretty easy to implement. After installing/activating JWT Auth, go to the user you want to assign to use your API calls, and at the bottom of the user profile you will see : Give your application a name, Add New, and then a new application password will pop up. It will look like this: Copy the whole password, keeping the spaces is fine. I'm using PHP and cURL, so my get token code looks like this: private function getAuthHeader(){ $JWTtoken = json_decode($this->getJWTToken()); $token = $JWTtoken->token; $header = array( "Content-type: application/json", "Authorization: Bearer " . $token ); return $header; } public function getJWTToken(){ /* Request: POST http://basic/wp-json/api/v1/token Body: username = <wordpress username> password = <wordpress password> */ $url = $this->baseurl . "jwt-auth/v1/token"; $params = array( 'requesttype' => 'POST', 'url' => $url, 'post' => array('username' => 'admin', 'password' => 'esmA UJom vxAG LFKU q8oN DSGK') ); $ch = curl_init(); CURL_SETOPT($ch, CURLOPT_RETURNTRANSFER, 1); CURL_SETOPT($ch, CURLOPT_URL, $params['url']); CURL_SETOPT($ch, CURLOPT_POST, TRUE); CURL_SETOPT($ch, CURLOPT_POSTFIELDS, http_build_query($params['post'])); CURL_SETOPT($ch, CURLOPT_SSL_VERIFYPEER, false); $response = curl_exec($ch); curl_close($ch); return $response; } ...You will see way down in $params where I set the username/password. The username is "admin", because that's the user I set the new application password for, and the password is esmA UJom vxAG LFKU q8oN DSGK. Notice I'm NOT using the admin's WordPress password. Your header becomes an array, and it should look something like this, which includes a loooong token string: Array ( [0] => Content-type: application/json [1] => Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJodHRwOlwvXC9iYXNpYyIsImlhdCI6MTYyMzI2NjUyNSwibmJmIjoxNjIzMjY2NTI1LCJleHAiOjE2MjM4NzEzMjUsImRhdGEiOnsidXNlciI6eyJpZCI6IjEifX19.YX1UvJ5nlbG2MIlheI2NzTTzaQKBZ8I9WQOr70CE1Tk ) Finally, the function that makes the request using cURL looks like this: public function getResponse($params){ $auth_header = $this->getAuthHeader(); $ch = curl_init(); CURL_SETOPT($ch, CURLOPT_RETURNTRANSFER, 1); CURL_SETOPT($ch, CURLOPT_URL, $params['url']); if( isset($params['requesttype']) && $params['requesttype'] == "POST" ){ //additional code to detect whether I'm making a GET, POST, or PUT request. CURL_SETOPT($ch, CURLOPT_POST, TRUE); } else if( isset($params['requesttype']) && $params['requesttype'] == "PUT"){ CURL_SETOPT($ch, CURLOPT_CUSTOMREQUEST, "PUT"); } if(isset($params['post'])){ CURL_SETOPT($ch, CURLOPT_POSTFIELDS, http_build_query($params['post'])); } CURL_SETOPT($ch, CURLOPT_SSL_VERIFYPEER, false); CURL_SETOPT($ch, CURLOPT_HTTPHEADER, $auth_header); $response = curl_exec($ch); curl_close($ch); return $response; } Notice that before executing the cURL, I want to get my header, with the new token, by calling the getAuthHeader function: $auth_header = $this->getAuthHeader(); and notice that I have to pass that header, which contains the new token, to the web service: CURL_SETOPT($ch, CURLOPT_HTTPHEADER, $auth_header); Barring any typos, which is always my problem, this should return posts with status=draft: public function getPosts($params){ // I passed $params['status'] = "draft"; $url = $this->baseurl . "wp/v2/posts/?status=" . $params['status'] . ""; $data = array( 'requesttype' => 'GET', 'url' => $url ); return $this->getResponse($data); } A: this is work for me as well add_action('init', function () { if (is_user_logged_in()) : global $wp_post_statuses; $wp_post_statuses['draft']->public = true; $wp_post_statuses['draft']->exclude_from_search = false; $wp_post_statuses['draft']->publicly_queryable = true; endif; }); add_filter('rest_post_query', function ($args) { $args['post_status'] = ['publish', 'draft']; return $args; });
wordpress
{ "language": "en", "length": 980, "provenance": "stackexchange_00019.jsonl.gz:468587", "question_score": "7", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/240254" }
[ 0.0413818359375, 0.00576019287109375, 0.005863189697265625, -0.00677490234375, 0.0024356842041015625, -0.030120849609375, 0.03826904296875, -0.047119140625, 0.015960693359375, 0.018829345703125, -0.0633544921875, 0.0060577392578125, -0.020965576171875, 0.0057373046875, -0.0311431884765625, -0.052703857421875, 0.0194549560546875, -0.02545166015625, -0.00484466552734375, -0.02117919921875, -0.0092315673828125, -0.00696563720703125, 0.019866943359375, 0.031463623046875, -0.0061187744140625, 0.0111083984375, 0.04937744140625, -0.02911376953125, 0.00333404541015625, -0.0239410400390625, 0.007144927978515625, 0.0009484291076660156, 0.006229400634765625, 0.01432037353515625, 0.00102996826171875, 0.003383636474609375, 0.02044677734375, 0.008819580078125, 0.0021991729736328125, 0.0249481201171875, 0.0474853515625, -0.03741455078125, -0.003940582275390625, -0.004428863525390625, -0.0197601318359375, -0.0135955810546875, 0.048492431640625, 0.003658294677734375, 0.0159759521484375, 0.04901123046875, 0.0137176513671875, -0.0186004638671875, 0.006649017333984375, 0.037200927734375, -0.021820068359375, -0.039093017578125, 0.02850341796875, -0.0004849433898925781, 0.040496826171875, -0.062469482421875, -0.033660888671875, 0.0025730133056640625, 0.043792724609375, 0.03070068359375, -0.0200347900390625, 0.006687164306640625, 0.025115966796875, 0.0196990966796875, -0.017486572265625, -0.0222015380859375, -0.004390716552734375, -0.00952911376953125, 0.0001475811004638672, -0.0034008026123046875, -0.0285491943359375, -0.0174102783203125, 0.003368377685546875, -0.0264129638671875, 0.0208282470703125, 0.0085906982421875, 0.04058837890625, 0.007297515869140625, -0.01395416259765625, -0.0026149749755859375, 0.00283050537109375, 0.0129547119140625, -0.00409698486328125, -0.02130126953125, -0.0265045166015625, -0.0011701583862304688, -0.0253448486328125, -0.0931396484375, 0.01312255859375, 0.019317626953125, 0.0013456344604492188, -0.0200042724609375, 0.0312347412109375, 0.08740234375, -0.004581451416015625, 0.0255279541015625, -0.0246429443359375, -0.032958984375, 0.0094146728515625, -0.056671142578125, 0.0135040283203125, 0.017608642578125, -0.0133819580078125, -0.016693115234375, 0.03118896484375, 0.0160369873046875, -0.01105499267578125, 0.0283050537109375, 0.01146697998046875, -0.0179290771484375, -0.027801513671875, -0.0161590576171875, -0.028656005859375, -0.00725555419921875, 0.0025539398193359375, -0.042999267578125, -0.00907135009765625, 0.01544952392578125, -0.0097808837890625, 0.01174163818359375, 0.02423095703125, 0.01605224609375, -0.005329132080078125, -0.01727294921875, 0.00021696090698242188, 0.018524169921875, -0.00884246826171875, 0.0333251953125, 0.02313232421875, -0.01212310791015625, -0.03448486328125, -0.01174163818359375, 0.04010009765625, 0.028472900390625, -0.0308380126953125, 0.00772857666015625, 0.004398345947265625, 0.012725830078125, 0.00013625621795654297, -0.035186767578125, -0.03826904296875, 0.031463623046875, 0.0214691162109375, -0.0080413818359375, -0.03424072265625, -0.0418701171875, -0.066162109375, 0.0254669189453125, 0.0095977783203125, 0.0210418701171875, 0.0033473968505859375, -0.005435943603515625, 0.030426025390625, -0.0222930908203125, -0.004856109619140625, -0.0244293212890625, 0.062042236328125, -0.01525115966796875, -0.01995849609375, -0.0022525787353515625, -0.0482177734375, 0.0173187255859375, -0.043701171875, -0.008453369140625, 0.00778961181640625, 0.0367431640625, -0.0217742919921875, -0.01192474365234375, 0.005123138427734375, -0.027923583984375, -0.04052734375, -0.00803375244140625, 0.034576416015625, 0.004123687744140625, 0.01494598388671875, 0.000885009765625, -0.030731201171875, -0.033782958984375, 0.049285888671875, -0.0298004150390625, -0.067626953125, 0.058868408203125, 0.005748748779296875, 0.055206298828125, -0.0002244710922241211, 0.00524139404296875, 0.050384521484375, 0.045196533203125, -0.01373291015625, 0.0237579345703125, -0.05804443359375, -0.06494140625, 0.020660400390625, -0.0012664794921875, -0.036712646484375, 0.06640625, 0.02301025390625, 0.0011692047119140625, -0.005680084228515625, -0.023193359375, -0.0193023681640625, -0.0323486328125, 0.00031638145446777344, 0.0181121826171875, -0.040374755859375, 0.013336181640625, 0.043792724609375, -0.0147857666015625, -0.038848876953125, 0.033477783203125, 0.0049285888671875, -0.0249786376953125, -0.026763916015625, -0.0306396484375, -0.02203369140625, 0.0273895263671875, -0.03521728515625, 0.012420654296875, -0.05712890625, -0.0183868408203125, 0.028472900390625, -0.020904541015625, 0.01136016845703125, -0.0213470458984375, 0.08135986328125, 0.007709503173828125, 0.03167724609375, -0.0265655517578125, 0.046051025390625, 0.0675048828125, 0.0142059326171875, -0.010284423828125, 0.017059326171875, -0.0950927734375, 0.0280914306640625, 0.04498291015625, 0.0239410400390625, 0.0509033203125, 0.004344940185546875, 0.031585693359375, 0.054656982421875, -0.030517578125, 0.00508880615234375, 0.01198577880859375, 0.039581298828125, 0.067138671875, -0.013031005859375, -0.017852783203125, -0.0001742839813232422, -0.053375244140625, 0.0021839141845703125, 0.028472900390625, -0.0124664306640625, -0.0100860595703125, 0.0020160675048828125, -0.01396942138671875, 0.01404571533203125, -0.03741455078125, -0.033538818359375, -0.00862884521484375, 0.03851318359375, -0.0154266357421875, 0.048858642578125, 0.03668212890625, -0.00978851318359375, -0.0243988037109375, 0.00994873046875, 0.002437591552734375, -0.0023651123046875, 0.044189453125, 0.042266845703125, 0.057464599609375, -0.0279693603515625, -0.029693603515625, 0.03564453125, 0.044952392578125, -0.0279998779296875, 0.0179290771484375, -0.041534423828125, -0.0132293701171875, -0.006748199462890625, 0.00046372413635253906, -0.0010843276977539062, 0.0004303455352783203, 0.036346435546875, 0.032806396484375, 0.052520751953125, 0.0158843994140625, 0.0031719207763671875, 0.040191650390625, 0.014007568359375, -0.016845703125, -0.009796142578125, -0.07928466796875, 0.0556640625, -0.036041259765625, 0.0076751708984375, 0.073974609375, 0.0197601318359375, 0.0018224716186523438, -0.0181121826171875, 0.002513885498046875, -0.0209808349609375, 0.01525115966796875, -0.011199951171875, -0.039825439453125, -0.01325225830078125, 0.03179931640625, 0.030853271484375, 0.0183868408203125, 0.044342041015625, -0.00476837158203125, 0.0134124755859375, 0.044403076171875, -0.044586181640625, -0.048370361328125, 0.00795745849609375, -0.034027099609375, 0.00939178466796875, -0.00991058349609375, -0.01290130615234375, -0.01727294921875, 0.0006561279296875, -0.0006308555603027344, -0.0467529296875, -0.0033435821533203125, -0.0718994140625, -0.06231689453125, -0.08392333984375, -0.0170440673828125, -0.0165557861328125, 0.033203125, 0.01434326171875, 0.104736328125, 0.037872314453125, -0.05511474609375, 0.0284271240234375, 0.060028076171875, -0.0318603515625, 0.0271759033203125, -0.0009899139404296875, 0.020294189453125, 0.01172637939453125, 0.005558013916015625, 0.03497314453125, 0.06793212890625, -0.069580078125, 0.0165863037109375, -0.02862548828125, -0.016082763671875, -0.0166473388671875, 0.0469970703125, 0.0391845703125, -0.03350830078125, 0.0230712890625, -0.034332275390625, -0.005443572998046875, -0.01403045654296875, -0.044403076171875, -0.0122528076171875, 0.00923919677734375, -0.007587432861328125, 0.00768280029296875, -0.016448974609375, -0.01468658447265625, 0.0147705078125, 0.0300445556640625, -0.02020263671875, 0.015625, -0.0289306640625, -0.06396484375, -0.01715087890625, 0.025115966796875, -0.0236358642578125, -0.0192108154296875, -0.005596160888671875, -0.0181427001953125, -0.0345458984375, -0.004405975341796875, -0.0438232421875, -0.0352783203125, 0.0281524658203125, -0.0249481201171875, 0.025054931640625, -0.0565185546875, -0.0140838623046875, -0.032623291015625, 0.07061767578125, 0.016204833984375, -0.0287322998046875, -0.0290374755859375, 0.0216217041015625, -0.05169677734375, -0.0738525390625, 0.0222015380859375, 0.00865936279296875, 0.00844573974609375, 0.00750732421875, -0.004909515380859375, -0.0018024444580078125, -0.01314544677734375, -0.033355712890625, 0.0290374755859375, -0.01255035400390625, 0.0199127197265625, -0.050872802734375, 0.042449951171875, -0.047943115234375, 0.032623291015625, -0.057586669921875, 0.004123687744140625, -0.058685302734375, -0.0291595458984375, -0.018524169921875, 0.0030689239501953125, 0.0206756591796875, 0.004108428955078125, -0.0174713134765625, 0.00266265869140625, 0.021392822265625, 0.0101776123046875, 0.0458984375, -0.0210418701171875, -0.0218505859375, 0.0103607177734375, 0.0087738037109375, -0.003185272216796875, -0.0110015869140625, -0.02740478515625, -0.0323486328125, -0.022674560546875, -0.0245208740234375, -0.03558349609375, -0.007030487060546875, -0.0201416015625, -0.00904083251953125, -0.043060302734375, -0.041534423828125, -0.010406494140625, 0.016357421875, -0.028076171875, 0.02642822265625, -0.040374755859375, -0.029388427734375, 0.04620361328125, 0.0145721435546875, -0.02752685546875, -0.007843017578125, 0.070556640625, 0.0159454345703125, -0.03106689453125, -0.0257568359375, -0.0252532958984375, 0.033447265625, -0.015350341796875, 0.042724609375, 0.034515380859375, -0.0243072509765625, 0.053375244140625, 0.004669189453125, -0.0440673828125, 0.07684326171875, -0.03460693359375, 0.0277252197265625, -0.030029296875, -0.0265350341796875, 0.01806640625, -0.002468109130859375, 0.019317626953125, -0.02557373046875, 0.002285003662109375, 0.0296173095703125, 0.02398681640625, -0.07269287109375, 0.053466796875, 0.0009365081787109375, -0.035858154296875, 0.0205535888671875, -0.01093292236328125, -0.0120849609375, 0.0080718994140625, 0.0007414817810058594, -0.00412750244140625, 0.0006561279296875, 0.00238037109375, -0.0285491943359375, 0.0300750732421875, -0.0263214111328125, 0.0404052734375, -0.027618408203125, -0.0265045166015625, -0.04345703125, -0.0298309326171875, 0.0999755859375, -0.0246429443359375, -0.094970703125, 0.04620361328125, -0.03692626953125, 0.0034160614013671875, 0.0633544921875, -0.006587982177734375, 0.01214599609375, 0.036376953125, -0.01560211181640625, -0.004932403564453125, 0.01122283935546875, 0.023223876953125, -0.026214599609375, 0.0210113525390625, 0.0128631591796875, -0.0104522705078125, 0.004207611083984375, 0.06597900390625, 0.00952911376953125, 0.031402587890625, -0.0172119140625, 0.019287109375, -0.005039215087890625, 0.040496826171875, 0.0295257568359375, -0.0362548828125, 0.01346588134765625, 0.0193023681640625, -0.0154571533203125, -0.0219268798828125, -0.034912109375, 0.01399993896484375, 0.017364501953125, -0.019287109375, -0.00043392181396484375, 0.047332763671875, 0.018646240234375, -0.0281219482421875, -0.00957489013671875, 0.0164794921875, 0.0023365020751953125, 0.002269744873046875, 0.037109375, 0.0019044876098632812, 0.03668212890625, -0.01175689697265625, -0.0175323486328125, 0.003078460693359375, 0.035369873046875, -0.01513671875, -0.008544921875, 0.01551055908203125, 0.020477294921875, -0.00858306884765625, -0.056488037109375, -0.0220489501953125, 0.0123138427734375, 0.055084228515625, -0.03155517578125, -0.03564453125, 0.041748046875, -0.028045654296875, 0.015045166015625, -0.02252197265625, 0.0302886962890625, -0.02069091796875, 0.0147857666015625, 0.0003941059112548828, -0.0094757080078125, 0.03399658203125, -0.028778076171875, -0.0196685791015625, -0.053802490234375, 0.037017822265625, 0.017303466796875, -0.0272674560546875, -0.0291900634765625, 0.0171356201171875, 0.052886962890625, -0.0177154541015625, -0.049530029296875, -0.0186004638671875, -0.03570556640625, 0.0196380615234375, 0.0265960693359375, -0.0077972412109375, 0.0855712890625, -0.0311279296875, 0.07928466796875, 0.01580810546875, 0.0394287109375, -0.03314208984375, -0.025482177734375, 0.02081298828125, -0.057586669921875, -0.029296875, -0.0036640167236328125, -0.0290679931640625, 0.015960693359375, -0.005035400390625, -0.0027141571044921875, -0.0007081031799316406, -0.007717132568359375, 0.014739990234375, -0.0118865966796875, 0.0167388916015625, 0.0133056640625, -0.037994384765625, 0.06329345703125, -0.037078857421875, 0.0003943443298339844, -0.01425933837890625, 0.0286712646484375, -0.0066680908203125, -0.025543212890625, -0.01885986328125, 0.043212890625, -0.0209808349609375, 0.035369873046875, 0.06982421875, 0.0128936767578125, 0.040771484375, 0.005615234375, 0.0286865234375, 0.0275115966796875, 0.0037326812744140625, -0.0291900634765625, -0.04278564453125, 0.02679443359375, 0.00247955322265625, -0.01386260986328125, 0.03509521484375, -0.023406982421875, 0.0111846923828125, 0.0099029541015625, 0.046173095703125, -0.0218963623046875, 0.00384521484375, 0.0283966064453125, -0.0268402099609375, 0.00885009765625, -0.00677490234375, -0.006031036376953125, -0.049896240234375, 0.06500244140625, -0.026336669921875, 0.0010290145874023438, 0.030853271484375, -0.0204925537109375, -0.0088958740234375, -0.0265045166015625, 0.01329803466796875, 0.0205230712890625, -0.018707275390625, 0.0394287109375, 0.0047454833984375, 0.023345947265625, -0.014984130859375, 0.0050048828125, -0.0049591064453125, -0.0233306884765625, -0.055755615234375, 0.00586700439453125, 0.0030765533447265625, -0.0138092041015625, -0.01385498046875, 0.0247039794921875, 0.047576904296875, 0.056884765625, 0.0008349418640136719, -0.017822265625, 0.042144775390625, -0.01483917236328125, -0.0237884521484375, -0.00897216796875, 0.0242156982421875, 0.0289154052734375, -0.048431396484375, 0.0292816162109375, -0.02392578125, -0.005584716796875, 0.004962921142578125, -0.01216888427734375, 0.071533203125, -0.05621337890625, -0.00545501708984375, 0.024322509765625, -0.0010242462158203125, 0.0036945343017578125, -0.0149078369140625, 0.0193328857421875, -0.054779052734375, -0.02655029296875, -0.00043773651123046875, -0.047943115234375, 0.0014667510986328125, -0.00830078125, -0.0723876953125, 0.08123779296875, 0.01255035400390625, 0.0228271484375, -0.0095977783203125, 0.042694091796875, -0.0278778076171875, 0.0130462646484375, -0.056610107421875, 0.0594482421875, -0.0225982666015625, 0.046539306640625, -0.06298828125, 0.0160064697265625, -0.00580596923828125, -0.00223541259765625, 0.10845947265625, 0.01390838623046875, -0.0064239501953125, -0.032257080078125, 0.04595947265625, 0.0323486328125, -0.0204315185546875, 0.030059814453125, 0.025604248046875, 0.01239013671875, 0.049835205078125, -0.033966064453125, 0.04339599609375, -0.05615234375, 0.048553466796875, 0.0288848876953125, 0.02508544921875, 0.00933837890625, -0.005245208740234375, 0.0201416015625, -0.05517578125, 0.00453948974609375, 0.048614501953125, -0.019073486328125, 0.0018768310546875, 0.03521728515625, 0.047119140625, -0.0298309326171875, -0.03118896484375, -0.016876220703125, 0.0396728515625, 0.0221710205078125, 0.046783447265625, 0.043701171875, 0.0219573974609375, 0.0233612060546875, 0.030059814453125, 0.0367431640625, 0.039520263671875, -0.034759521484375, 0.03802490234375, 0.03509521484375, 0.0146331787109375, -0.01506805419921875, 0.0023593902587890625, 0.044769287109375, 0.045654296875, -0.03533935546875, -0.020843505859375, 0.02288818359375, 0.011871337890625, 0.006664276123046875, 0.0031795501708984375, 0.024688720703125, -0.01395416259765625, 0.01013946533203125, -0.042449951171875, 0.0195159912109375, 0.0474853515625, 0.0222625732421875, 0.003360748291015625, -0.0117034912109375, -0.05078125, 0.003753662109375, -0.036376953125, -0.023956298828125, 0.01033782958984375, 0.0826416015625, 0.03076171875, 0.0248565673828125, -0.04132080078125, -0.041534423828125, 0.017303466796875, 0.0118865966796875, 0.01519775390625, -0.036041259765625, 0.010711669921875, -0.036163330078125, 0.032745361328125, 0.01158905029296875, 0.03314208984375, 0.0171356201171875, 0.0367431640625, -0.00420379638671875, -0.04840087890625, 0.00728607177734375, 0.026153564453125, -0.036376953125, -0.031982421875, -0.02960205078125, -0.0428466796875, -0.0048675537109375, -0.029571533203125, 0.03680419921875, -0.015716552734375, 0.01415252685546875, -0.007198333740234375, 0.045257568359375, 0.004062652587890625, -0.0162506103515625, 0.0260772705078125, 0.0153350830078125, 0.040924072265625, 0.005916595458984375, -0.05255126953125, 0.01325225830078125, -0.04437255859375, -0.0770263671875, 0.007244110107421875, 0.035491943359375, -0.0296173095703125, 0.01457977294921875, -0.005298614501953125, -0.0170440673828125, 0.0030918121337890625, 0.0021076202392578125, 0.0295562744140625, 0.032928466796875, 0.0015649795532226562, 0.01378631591796875, -0.0535888671875, -0.01192474365234375, -0.00913238525390625, 0.00009238719940185547, 0.01776123046875, 0.022003173828125, 0.022796630859375, 0.010528564453125, -0.0244903564453125, 0.0399169921875, -0.05517578125, -0.019134521484375, 0.0047454833984375, 0.001087188720703125, 0.018768310546875, 0.01490020751953125, -0.0235748291015625, 0.017791748046875, 0.024749755859375, -0.01259613037109375, 0.030792236328125, -0.033477783203125, 0.01299285888671875, -0.0157318115234375, -0.005695343017578125, -0.046905517578125, -0.033111572265625, -0.008575439453125, 0.00815582275390625, -0.0211944580078125, -0.01751708984375, 0.027679443359375, 0.0223388671875, -0.008636474609375, -0.04718017578125, 0.02880859375, -0.035919189453125, 0.039154052734375, 0.03680419921875, -0.01024627685546875, 0.0728759765625, -0.053680419921875, -0.0318603515625, -0.004802703857421875, 0.00064849853515625, -0.070556640625, -0.032623291015625, 0.05828857421875, -0.041412353515625, -0.0269622802734375, -0.0160369873046875, -0.032562255859375, -0.004283905029296875, 0.00128173828125, -0.0007634162902832031, -0.005977630615234375, -0.0193328857421875, -0.01236724853515625, -0.0266571044921875, 0.0065155029296875, 0.0118865966796875, 0.01218414306640625, -0.0163421630859375, 0.016815185546875, -0.018035888671875, 0.007289886474609375, -0.033782958984375, 0.0183563232421875, -0.01397705078125, -0.0222625732421875, 0.0008807182312011719, -0.0237884521484375, -0.01016998291015625, 0.0039215087890625, 0.0294189453125, -0.028778076171875, -0.007434844970703125, -0.032073974609375, -0.0026607513427734375, -0.0089263916015625, -0.01071929931640625, 0.027557373046875, -0.0220947265625, -0.040252685546875, -0.053253173828125, 0.003986358642578125, -0.0241851806640625, 0.0252838134765625, -0.0232391357421875, 0.006542205810546875, 0.0086212158203125, -0.007190704345703125, -0.0299530029296875, 0.0111083984375, -0.033050537109375, -0.024017333984375, -0.04351806640625, 0.032928466796875, 0.040985107421875, -0.0255279541015625, -0.095703125, 0.00946044921875, -0.033355712890625, -0.041961669921875, -0.053314208984375, -0.01904296875, 0.01268768310546875, -0.0037994384765625, -0.021514892578125, -0.01343536376953125, -0.04669189453125, 0.0217742919921875, -0.033203125, 0.06097412109375, -0.0209197998046875, -0.02532958984375, -0.06134033203125, -0.0231475830078125, -0.02777099609375, -0.0002675056457519531, 0.002185821533203125, 0.0078125, 0.02154541015625, 0.06610107421875, -0.01277923583984375, -0.02978515625, -0.024200439453125, -0.06463623046875, 0.0027294158935546875, -0.0400390625, -0.054656982421875, -0.0225982666015625, 0.08050537109375, 0.045867919921875, 0.0275115966796875, -0.0311431884765625, 0.01355743408203125, -0.018280029296875, -0.039642333984375, -0.0015125274658203125, 0.0162200927734375, -0.035675048828125, 0.01520538330078125, -0.01529693603515625, 0.0168304443359375, -0.002262115478515625, -0.0592041015625, -0.0195770263671875, -0.0250396728515625, -0.05230712890625, 0.0088043212890625, -0.0161590576171875, -0.024444580078125, 0.0261077880859375, -0.027984619140625, 0.00409698486328125, 0.00571441650390625, 0.0255126953125, 0.007289886474609375, 0.04400634765625, -0.0010080337524414062, 0.0021305084228515625, -0.0117340087890625, -0.032562255859375, 0.03387451171875, -0.03021240234375, 0.035003662109375, -0.013702392578125, -0.0278778076171875, -0.017730712890625, 0.015960693359375, -0.04168701171875, -0.036895751953125, -0.0031032562255859375, -0.006427764892578125, 0.1025390625, 0.0014209747314453125, 0.036712646484375, 0.0013799667358398438, 0.03289794921875, 0.0010480880737304688, -0.0220794677734375, 0.01421356201171875, -0.0247650146484375, 0.00457000732421875, -0.005039215087890625, 0.006439208984375, -0.06878662109375, 0.049560546875, 0.0088958740234375, 0.00402069091796875, 0.032196044921875 ]
8305e1e8ca323a0cd14fd2a91e4c2150ba1a758a
Wordpress Stackexchange Q: wp_list_categories exclude not working I'm try to exclude a specific category from a list of categories that a custom post has (in this case 'Uncategorized' - ID: 1). I've tried exclude: wp_list_categories([ 'include' => wp_list_pluck(get_the_category(), 'term_id'), 'title_li' => '', 'exclude' => 1 ]); But it still appears. How can I make sure it never appears, even if a post is tagged 'Uncategorized'? A: The wp_list_categories() function uses get_terms() behind the scenes, where the documentation for the exclude argument says: If $include is non-empty, $exclude is ignored. Instead you could try to exclude the term_id from the include values: $include = wp_filter_object_list( get_the_category(), // Data [ 'term_id' => 1 ], // Filter Data 'NOT', // Filter Option (exclude) 'term_id' // Pluck Data ); where we use wp_filter_object_list() to both filter and pluck. In general it could be better to check if the $include array is empty or not: if( $include ) { // ... stuff above ... wp_list_categories( [ 'include' => $includes, 'title_li' => '', ] ); // ... stuff below... }
Q: wp_list_categories exclude not working I'm try to exclude a specific category from a list of categories that a custom post has (in this case 'Uncategorized' - ID: 1). I've tried exclude: wp_list_categories([ 'include' => wp_list_pluck(get_the_category(), 'term_id'), 'title_li' => '', 'exclude' => 1 ]); But it still appears. How can I make sure it never appears, even if a post is tagged 'Uncategorized'? A: The wp_list_categories() function uses get_terms() behind the scenes, where the documentation for the exclude argument says: If $include is non-empty, $exclude is ignored. Instead you could try to exclude the term_id from the include values: $include = wp_filter_object_list( get_the_category(), // Data [ 'term_id' => 1 ], // Filter Data 'NOT', // Filter Option (exclude) 'term_id' // Pluck Data ); where we use wp_filter_object_list() to both filter and pluck. In general it could be better to check if the $include array is empty or not: if( $include ) { // ... stuff above ... wp_list_categories( [ 'include' => $includes, 'title_li' => '', ] ); // ... stuff below... } A: I build some tricky code to exclude category having ID 1. I'm trying to exclude category(ID:1) even remove from pluck also. Your code has include and exclude both parameter and this conflict the result. //List the pluck... $exclude_cat_id = 1; $list_pluck = wp_list_pluck(get_the_category(), 'term_id'); //Get exlude pluck(ID:1) index... $exclude_pluck = array_search($exclude_cat_id, $list_pluck); //unset excluded pluck... unset($list_pluck[$exclude_pluck]); //Get all category except ID=1 $arrCat = wp_list_categories([ 'include' => $list_pluck, 'title_li' => '', 'exclude' => array($exclude_cat_id), 'exclude_tree' => array($exclude_cat_id), ]); Hope this help you well! A: If my case, the only time I didn't want the list of categories to appear was if a post was 'Uncategorized'. The simplest solution in the end was just to use in_category(): if (!in_category(1)) { // Display the categories this post belongs to, as links wp_list_categories([ 'include' => wp_list_pluck(get_the_category(), 'term_id'), 'title_li' => '' ]); } A: $exclude = array(); foreach (get_categories() as $category) {$exclude[] = 1;} if (! empty($exclude)) { $args .= ('' === $args) ? '' : '&';$args .= exclude='.implode(',', $exclude);} wp_list_categories($args); A: How can I display only the specific category when accessing the posts related to that category? For example, I want to show only CSR Events under Categories When accessing posts related to CSR events. Here's the link to CSR post https://www.mi-eq.com/blood-donation-compaign/ Screenshot: https://i.stack.imgur.com/YoTfk.jpg Similarly, when visiting posts related to other categories, only the specific category will be shown. Is there any simplest to achieve that?
wordpress
{ "language": "en", "length": 405, "provenance": "stackexchange_00019.jsonl.gz:468607", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/240330" }
[ 0.064697265625, 0.013580322265625, -0.00782012939453125, -0.046630859375, 0.03619384765625, -0.03778076171875, 0.048492431640625, -0.0242919921875, -0.016815185546875, 0.0019092559814453125, -0.040802001953125, 0.00920867919921875, -0.0285797119140625, -0.010406494140625, -0.0112152099609375, -0.0501708984375, 0.0083465576171875, 0.01033782958984375, 0.0251312255859375, -0.020263671875, 0.01434326171875, -0.0187225341796875, 0.00958251953125, 0.025634765625, -0.003570556640625, -0.05224609375, 0.058258056640625, -0.0155487060546875, -0.0098114013671875, -0.042266845703125, 0.02099609375, 0.0284423828125, 0.008636474609375, 0.0303955078125, -0.01983642578125, 0.0245819091796875, -0.00893402099609375, 0.01514434814453125, 0.01226806640625, 0.01294708251953125, 0.02764892578125, -0.01537322998046875, 0.0015621185302734375, -0.0065765380859375, -0.0086212158203125, -0.0335693359375, 0.035125732421875, -0.0174560546875, 0.00030994415283203125, -0.0284423828125, 0.03106689453125, 0.0355224609375, 0.054046630859375, -0.0552978515625, 0.0083160400390625, 0.043975830078125, -0.007305145263671875, 0.032867431640625, 0.051116943359375, 0.00677490234375, -0.046112060546875, -0.01338958740234375, 0.01461029052734375, -0.05401611328125, 0.0059356689453125, 0.0052032470703125, 0.035797119140625, 0.015655517578125, -0.06610107421875, -0.0037746429443359375, 0.042694091796875, -0.046600341796875, -0.00262451171875, -0.0026092529296875, -0.0440673828125, -0.0161285400390625, 0.0300140380859375, -0.0126800537109375, 0.01415252685546875, -0.00899505615234375, -0.0221405029296875, -0.0149993896484375, -0.034698486328125, -0.01922607421875, 0.03173828125, 0.03802490234375, -0.023223876953125, -0.01495361328125, -0.024200439453125, 0.00424957275390625, -0.006427764892578125, 0.004390716552734375, -0.06671142578125, 0.038818359375, 0.03302001953125, -0.01042938232421875, 0.050689697265625, 0.093505859375, -0.034942626953125, -0.0177459716796875, -0.01377105712890625, -0.033172607421875, 0.00669097900390625, -0.0469970703125, 0.02508544921875, 0.035186767578125, -0.03485107421875, 0.00807952880859375, 0.055419921875, 0.031951904296875, 0.0134735107421875, -0.0007534027099609375, 0.002288818359375, -0.03167724609375, -0.014495849609375, -0.00689697265625, -0.037384033203125, 0.0233917236328125, 0.006893157958984375, 0.0023250579833984375, 0.01666259765625, 0.0288238525390625, -0.01042938232421875, -0.041748046875, 0.040496826171875, 0.012481689453125, -0.0290679931640625, -0.00803375244140625, 0.01023101806640625, 0.00437164306640625, -0.042633056640625, 0.0284576416015625, 0.08380126953125, 0.0214385986328125, 0.0113983154296875, -0.0301666259765625, 0.0262603759765625, 0.016571044921875, 0.014434814453125, -0.0196380615234375, 0.031463623046875, 0.01043701171875, 0.01190185546875, 0.0011005401611328125, 0.031829833984375, 0.0191802978515625, 0.005802154541015625, 0.01261138916015625, 0.0243072509765625, -0.027801513671875, 0.057830810546875, -0.06292724609375, 0.037322998046875, 0.01277923583984375, -0.01477813720703125, -0.01129150390625, 0.0325927734375, -0.046844482421875, -0.0157012939453125, -0.064697265625, 0.05865478515625, -0.00559234619140625, -0.031829833984375, -0.03472900390625, -0.06622314453125, 0.01390838623046875, -0.050323486328125, -0.010650634765625, 0.007068634033203125, -0.0023784637451171875, 0.014404296875, 0.0020904541015625, 0.0187835693359375, 0.004566192626953125, 0.00995635986328125, 0.00719451904296875, -0.034271240234375, -0.0160675048828125, 0.031158447265625, 0.048797607421875, -0.007099151611328125, -0.037017822265625, -0.0009975433349609375, 0.0123443603515625, -0.073974609375, 0.037750244140625, 0.0208587646484375, 0.060821533203125, 0.0007462501525878906, 0.00946044921875, 0.069091796875, 0.041748046875, -0.0338134765625, -0.0175323486328125, -0.0170135498046875, -0.0259552001953125, -0.0173492431640625, -0.0203399658203125, -0.01114654541015625, 0.057586669921875, 0.04876708984375, -0.03863525390625, 0.017791748046875, -0.0214996337890625, -0.0919189453125, -0.00720977783203125, -0.03900146484375, 0.023590087890625, -0.02496337890625, 0.018463134765625, 0.024932861328125, -0.004261016845703125, -0.040771484375, 0.03533935546875, -0.0012073516845703125, -0.0025768280029296875, -0.0156097412109375, 0.0168914794921875, -0.00244903564453125, -0.0023555755615234375, 0.0162811279296875, -0.0041046142578125, 0.01058197021484375, 0.0157470703125, 0.0726318359375, 0.01430511474609375, -0.0289459228515625, -0.0245513916015625, 0.0220794677734375, 0.0262908935546875, -0.0823974609375, 0.041839599609375, 0.044708251953125, 0.06549072265625, -0.03497314453125, -0.009307861328125, -0.01342010498046875, -0.0204620361328125, -0.00753021240234375, 0.05230712890625, 0.043304443359375, 0.0261993408203125, -0.0116119384765625, -0.04107666015625, 0.060394287109375, -0.045196533203125, 0.0013895034790039062, -0.044830322265625, -0.00913238525390625, 0.0287322998046875, 0.030853271484375, 0.0170135498046875, 0.0067138671875, 0.0137786865234375, 0.0156402587890625, 0.0184326171875, -0.0221405029296875, -0.007358551025390625, 0.0266876220703125, -0.0347900390625, 0.01265716552734375, -0.018829345703125, -0.0254364013671875, -0.006214141845703125, 0.042327880859375, -0.0288543701171875, 0.00982666015625, 0.0100555419921875, -0.00626373291015625, -0.013763427734375, 0.005550384521484375, -0.033233642578125, 0.007122039794921875, 0.050323486328125, -0.006389617919921875, 0.0523681640625, -0.046875, 0.00669097900390625, 0.0176239013671875, 0.032867431640625, 0.00007832050323486328, 0.06866455078125, 0.042999267578125, -0.0160675048828125, -0.03961181640625, -0.0628662109375, 0.01009368896484375, -0.00731658935546875, -0.0259857177734375, -0.0390625, -0.0055084228515625, 0.0208282470703125, -0.0221405029296875, 0.009796142578125, 0.006465911865234375, -0.0191497802734375, 0.03436279296875, -0.0024967193603515625, 0.018890380859375, -0.018890380859375, 0.0258941650390625, 0.04083251953125, 0.0054779052734375, -0.0225067138671875, -0.002079010009765625, 0.006740570068359375, 0.0013065338134765625, -0.004085540771484375, -0.01537322998046875, 0.003582000732421875, -0.052703857421875, 0.012786865234375, 0.0180816650390625, 0.04632568359375, 0.016845703125, -0.0302581787109375, 0.032501220703125, 0.02239990234375, -0.016845703125, -0.0482177734375, 0.04193115234375, -0.01264190673828125, -0.01248931884765625, -0.0092620849609375, -0.019744873046875, -0.0306243896484375, -0.007312774658203125, -0.01047515869140625, 0.0222320556640625, -0.042144775390625, -0.08038330078125, -0.054351806640625, -0.07293701171875, 0.0023403167724609375, -0.011749267578125, 0.01049041748046875, -0.0086669921875, 0.1297607421875, 0.01273345947265625, -0.077880859375, -0.02239990234375, 0.044189453125, -0.0162811279296875, 0.0224761962890625, 0.0085906982421875, 0.02874755859375, 0.0059814453125, 0.0207977294921875, 0.038360595703125, 0.02166748046875, -0.04168701171875, -0.033294677734375, -0.0235748291015625, -0.0097808837890625, 0.0233917236328125, 0.0033359527587890625, 0.016387939453125, 0.02020263671875, 0.045166015625, -0.0123291015625, -0.035858154296875, -0.019195556640625, -0.0457763671875, 0.00921630859375, 0.007495880126953125, 0.0190582275390625, 0.0018682479858398438, 0.010162353515625, -0.01047515869140625, 0.024169921875, -0.02783203125, -0.0104827880859375, 0.0280609130859375, 0.005695343017578125, 0.0006580352783203125, 0.0300140380859375, 0.0157012939453125, -0.027923583984375, -0.0006060600280761719, -0.007450103759765625, 0.0102081298828125, -0.0079803466796875, -0.0215301513671875, -0.04669189453125, -0.01493072509765625, 0.041015625, -0.0005326271057128906, 0.014312744140625, -0.00591278076171875, -0.03192138671875, 0.0130462646484375, 0.061126708984375, -0.034515380859375, -0.0555419921875, -0.039703369140625, 0.0276336669921875, 0.01122283935546875, -0.045745849609375, 0.058074951171875, -0.03955078125, -0.058349609375, -0.0002758502960205078, -0.0160980224609375, -0.0157623291015625, -0.01120758056640625, 0.0206146240234375, -0.0347900390625, -0.0330810546875, 0.034759521484375, -0.0546875, 0.0297698974609375, -0.0104217529296875, 0.02386474609375, -0.05059814453125, -0.029998779296875, -0.0174102783203125, -0.0028553009033203125, 0.0240325927734375, -0.022491455078125, -0.03472900390625, -0.011688232421875, 0.042327880859375, -0.04052734375, -0.007724761962890625, 0.007762908935546875, -0.037750244140625, -0.007717132568359375, 0.00867462158203125, -0.0305328369140625, 0.038665771484375, -0.0130767822265625, 0.0012426376342773438, -0.037811279296875, -0.034332275390625, -0.0287628173828125, 0.057525634765625, 0.004032135009765625, 0.031829833984375, 0.003726959228515625, -0.005168914794921875, -0.03204345703125, -0.037200927734375, -0.02178955078125, -0.00653076171875, -0.01331329345703125, 0.0002639293670654297, -0.033782958984375, -0.0390625, 0.074462890625, 0.026885986328125, -0.00908660888671875, 0.000370025634765625, 0.041778564453125, 0.003108978271484375, -0.051483154296875, -0.0679931640625, 0.0280914306640625, 0.031463623046875, -0.056182861328125, 0.08563232421875, 0.025390625, -0.0169219970703125, 0.11944580078125, -0.01110076904296875, 0.0340576171875, -0.0005774497985839844, 0.033843994140625, -0.008819580078125, -0.00951385498046875, 0.020233154296875, -0.006275177001953125, -0.0229644775390625, 0.01953125, 0.0178070068359375, -0.00991058349609375, 0.0325927734375, 0.005886077880859375, -0.00455474853515625, -0.034515380859375, -0.0003619194030761719, 0.00798797607421875, -0.0108489990234375, 0.01192474365234375, 0.0718994140625, 0.05596923828125, -0.007122039794921875, 0.016448974609375, 0.0163116455078125, 0.018890380859375, -0.0094146728515625, 0.0060272216796875, -0.043609619140625, 0.034881591796875, -0.0010080337524414062, 0.001369476318359375, 0.0015172958374023438, 0.004730224609375, 0.00383758544921875, -0.026336669921875, -0.033447265625, -0.02984619140625, -0.00785064697265625, -0.01114654541015625, 0.031280517578125, 0.00646209716796875, 0.01541900634765625, -0.005680084228515625, 0.0045623779296875, 0.0156402587890625, -0.0230560302734375, -0.0168609619140625, -0.018768310546875, 0.005146026611328125, 0.0262298583984375, -0.027313232421875, 0.00482940673828125, 0.02239990234375, 0.023712158203125, 0.01091766357421875, -0.02496337890625, 0.0241546630859375, 0.0212249755859375, 0.0584716796875, 0.0043792724609375, -0.0270233154296875, -0.01593017578125, 0.052276611328125, 0.006710052490234375, -0.0472412109375, -0.045166015625, 0.0182037353515625, 0.0163421630859375, -0.0302276611328125, -0.0167999267578125, 0.04327392578125, 0.024658203125, -0.037994384765625, 0.0305938720703125, -0.0021495819091796875, -0.055816650390625, -0.0302581787109375, 0.0009050369262695312, 0.0211029052734375, -0.004306793212890625, -0.04022216796875, 0.0330810546875, -0.061676025390625, -0.01390838623046875, 0.0733642578125, -0.04400634765625, -0.0012722015380859375, 0.005542755126953125, -0.01436614990234375, -0.0201568603515625, -0.0031871795654296875, -0.00803375244140625, -0.0034198760986328125, -0.0144805908203125, -0.01209259033203125, 0.00957489013671875, -0.0147857666015625, 0.05377197265625, -0.01336669921875, -0.028900146484375, 0.046295166015625, -0.005985260009765625, 0.0679931640625, 0.039642333984375, -0.020599365234375, 0.0038585662841796875, -0.0557861328125, -0.01490020751953125, -0.00832366943359375, -0.03570556640625, -0.049041748046875, -0.01380157470703125, -0.0055389404296875, -0.0020503997802734375, -0.01258087158203125, -0.028839111328125, -0.0014009475708007812, 0.0245361328125, 0.01849365234375, -0.008270263671875, -0.04815673828125, 0.07080078125, 0.024169921875, 0.0352783203125, -0.0095367431640625, 0.0035552978515625, -0.006771087646484375, -0.004207611083984375, -0.0308990478515625, -0.06854248046875, 0.01399993896484375, 0.0302886962890625, -0.0169830322265625, 0.052459716796875, 0.041839599609375, 0.0205841064453125, -0.0005483627319335938, -0.020233154296875, -0.0014982223510742188, -0.0036792755126953125, 0.0204010009765625, -0.00830078125, -0.017120361328125, 0.043212890625, -0.01021575927734375, 0.0041351318359375, -0.0009350776672363281, -0.0056610107421875, -0.001720428466796875, 0.005680084228515625, -0.0036869049072265625, -0.0025463104248046875, -0.037139892578125, 0.05206298828125, 0.04345703125, 0.0098724365234375, 0.01364898681640625, 0.01168060302734375, 0.005413055419921875, -0.043182373046875, -0.006679534912109375, 0.023193359375, -0.0053863525390625, 0.031982421875, -0.00849151611328125, -0.008697509765625, 0.0189666748046875, -0.0300140380859375, -0.002651214599609375, 0.024322509765625, 0.032623291015625, -0.03802490234375, -0.00685882568359375, 0.0166168212890625, -0.0171661376953125, -0.01271820068359375, -0.005855560302734375, -0.0243682861328125, -0.046112060546875, 0.017669677734375, -0.0214691162109375, -0.04052734375, -0.0169677734375, 0.002002716064453125, -0.009307861328125, -0.01033782958984375, 0.033416748046875, 0.023345947265625, -0.04254150390625, 0.0035076141357421875, 0.0251312255859375, -0.01922607421875, 0.0042572021484375, 0.01788330078125, -0.00751495361328125, -0.032379150390625, -0.069091796875, 0.009552001953125, 0.004909515380859375, -0.028350830078125, 0.031829833984375, -0.0301361083984375, 0.01396942138671875, 0.02642822265625, -0.014007568359375, 0.007793426513671875, 0.00727081298828125, -0.056915283203125, 0.03912353515625, 0.00598907470703125, 0.007843017578125, 0.042694091796875, -0.0543212890625, 0.004558563232421875, -0.01454925537109375, 0.0225830078125, -0.01096343994140625, -0.0272216796875, 0.0831298828125, -0.04034423828125, -0.0187225341796875, -0.01125335693359375, 0.033050537109375, 0.028900146484375, 0.00140380859375, 0.03057861328125, -0.0195159912109375, 0.00713348388671875, 0.0023555755615234375, 0.00542449951171875, -0.028106689453125, -0.0107269287109375, -0.079345703125, 0.06707763671875, -0.026611328125, 0.06988525390625, 0.00733184814453125, 0.00447845458984375, 0.011688232421875, 0.001094818115234375, -0.044525146484375, 0.059051513671875, 0.02984619140625, 0.0438232421875, -0.043487548828125, -0.01531982421875, 0.0205841064453125, 0.054962158203125, 0.01812744140625, -0.0005316734313964844, -0.020965576171875, 0.004993438720703125, 0.034942626953125, 0.046295166015625, 0.0153961181640625, 0.025421142578125, -0.00743865966796875, 0.0008273124694824219, -0.01568603515625, -0.00455474853515625, 0.04412841796875, -0.056182861328125, -0.046051025390625, -0.0016078948974609375, 0.01323699951171875, 0.03436279296875, 0.028350830078125, 0.00418853759765625, 0.029998779296875, -0.0035114288330078125, -0.0260009765625, 0.01059722900390625, 0.0217742919921875, 0.0006737709045410156, 0.01666259765625, -0.08636474609375, 0.018218994140625, -0.043121337890625, 0.0531005859375, -0.001979827880859375, 0.049530029296875, 0.034332275390625, 0.01338958740234375, 0.0860595703125, -0.0164642333984375, 0.01934814453125, 0.0016851425170898438, -0.0018053054809570312, 0.022186279296875, 0.0295257568359375, 0.0247650146484375, -0.00797271728515625, 0.01425933837890625, 0.06243896484375, 0.034820556640625, -0.0244903564453125, -0.05059814453125, 0.0287933349609375, 0.032135009765625, -0.018707275390625, 0.008941650390625, 0.00029015541076660156, -0.00885772705078125, 0.06036376953125, -0.07855224609375, 0.0246429443359375, 0.0635986328125, 0.019989013671875, -0.005649566650390625, -0.034210205078125, -0.042724609375, 0.00994110107421875, -0.043487548828125, 0.025604248046875, 0.0035572052001953125, 0.07049560546875, 0.015472412109375, 0.067138671875, -0.043701171875, -0.0416259765625, -0.00299072265625, 0.03033447265625, -0.0262298583984375, 0.00980377197265625, -0.013885498046875, -0.0445556640625, -0.0004930496215820312, 0.0195159912109375, -0.0021266937255859375, -0.0113372802734375, 0.035736083984375, 0.05511474609375, -0.033843994140625, -0.0190582275390625, 0.033538818359375, -0.00868988037109375, -0.04254150390625, -0.038787841796875, 0.035797119140625, 0.07196044921875, 0.0233612060546875, 0.03985595703125, -0.002910614013671875, 0.083740234375, -0.0091094970703125, 0.0285186767578125, 0.0013885498046875, -0.045135498046875, -0.0019083023071289062, -0.00836944580078125, 0.07244873046875, 0.0157928466796875, -0.078857421875, -0.0238037109375, -0.016082763671875, -0.0194091796875, 0.0130157470703125, 0.024749755859375, -0.021697998046875, 0.031951904296875, 0.04095458984375, -0.03448486328125, 0.0144805908203125, 0.0275115966796875, -0.0084991455078125, -0.03167724609375, 0.036285400390625, -0.0231170654296875, -0.006610870361328125, 0.005352020263671875, 0.0261077880859375, 0.01174163818359375, 0.020111083984375, 0.0071868896484375, -0.00372314453125, 0.00537872314453125, -0.0098114013671875, 0.045684814453125, -0.06793212890625, -0.03155517578125, 0.0265655517578125, -0.042083740234375, 0.0162200927734375, 0.00646209716796875, -0.02703857421875, -0.006839752197265625, 0.0234375, -0.0352783203125, 0.01183319091796875, -0.0423583984375, 0.0253448486328125, -0.027496337890625, 0.061431884765625, -0.007793426513671875, 0.001148223876953125, -0.0418701171875, -0.0230865478515625, 0.04327392578125, 0.02117919921875, -0.0024967193603515625, -0.00832366943359375, -0.01461029052734375, -0.01056671142578125, 0.0180816650390625, 0.017364501953125, -0.0107421875, 0.02032470703125, 0.004688262939453125, -0.00457000732421875, 0.00556182861328125, -0.00820159912109375, -0.016204833984375, 0.036956787109375, -0.0236968994140625, 0.018585205078125, -0.0249786376953125, -0.005451202392578125, 0.053985595703125, 0.032135009765625, -0.03533935546875, 0.02362060546875, 0.032379150390625, -0.021392822265625, -0.01331329345703125, -0.0180816650390625, -0.03704833984375, -0.0262603759765625, -0.035491943359375, -0.0077667236328125, -0.0263519287109375, -0.07489013671875, -0.036651611328125, -0.007785797119140625, 0.0201416015625, 0.006641387939453125, -0.0523681640625, 0.05517578125, -0.03466796875, 0.019500732421875, -0.0249481201171875, 0.0313720703125, -0.0064239501953125, 0.013397216796875, -0.04473876953125, -0.0038127899169921875, -0.0144805908203125, 0.020416259765625, -0.0056304931640625, 0.0133056640625, 0.05902099609375, -0.0219268798828125, -0.0958251953125, 0.007137298583984375, 0.003871917724609375, 0.035400390625, -0.00008827447891235352, -0.0211029052734375, -0.015045166015625, 0.0274200439453125, -0.0096893310546875, -0.0185546875, 0.022857666015625, -0.0093231201171875, -0.0254364013671875, 0.00782012939453125, -0.011383056640625, 0.0033092498779296875, -0.044464111328125, -0.08013916015625, 0.03985595703125, -0.003108978271484375, -0.038818359375, -0.03369140625, 0.026580810546875, -0.013916015625, 0.03924560546875, -0.0020465850830078125, -0.036041259765625, -0.0024051666259765625, 0.00946807861328125, 0.026214599609375, 0.005283355712890625, 0.0335693359375, -0.00881195068359375, -0.06903076171875, -0.006313323974609375, -0.0171661376953125, 0.0233001708984375, 0.0173492431640625, -0.0093994140625, 0.022918701171875, 0.0284576416015625, -0.035980224609375, -0.004100799560546875, -0.0089569091796875, -0.0297698974609375, 0.0340576171875, -0.028350830078125, -0.07904052734375, -0.050140380859375, 0.05279541015625, 0.0287628173828125, 0.032501220703125, 0.0033245086669921875, -0.0105743408203125, -0.040008544921875, 0.0003561973571777344, -0.01183319091796875, 0.007587432861328125, -0.055938720703125, -0.007293701171875, 0.019195556640625, -0.0019626617431640625, 0.0079193115234375, -0.01177978515625, -0.020843505859375, -0.023590087890625, -0.0263519287109375, -0.01253509521484375, -0.041168212890625, 0.02154541015625, -0.054046630859375, -0.0114593505859375, -0.047882080078125, -0.0167083740234375, -0.00043272972106933594, -0.07012939453125, -0.01336669921875, -0.046295166015625, -0.0556640625, 0.036895751953125, 0.025543212890625, -0.005451202392578125, 0.0430908203125, 0.0252532958984375, 0.0160980224609375, -0.0261383056640625, 0.0003676414489746094, 0.0117034912109375, -0.019561767578125, -0.004543304443359375, 0.019866943359375, 0.017791748046875, 0.0094451904296875, -0.00614166259765625, 0.012420654296875, -0.00745391845703125, 0.041168212890625, 0.034454345703125, -0.0267791748046875, 0.076171875, -0.03118896484375, -0.0011720657348632812, 0.01219940185546875, -0.048553466796875, -0.01195526123046875, 0.0012989044189453125, -0.0457763671875, -0.0196380615234375, 0.005107879638671875 ]
c69b012aa89ab22321a7dca364de856c12d88e69
Wordpress Stackexchange Q: How to edit multiple post with Custom fields I created a custom field for my post. All sounds good except for the fact that when I try to edit multiple posts (in the same time) by selecting the multiple option in the post list, I only find some fields available and not my custom field. Is there a way to edit the multiple edit option for posts in order to have my custom field available too?
Q: How to edit multiple post with Custom fields I created a custom field for my post. All sounds good except for the fact that when I try to edit multiple posts (in the same time) by selecting the multiple option in the post list, I only find some fields available and not my custom field. Is there a way to edit the multiple edit option for posts in order to have my custom field available too?
wordpress
{ "language": "en", "length": 77, "provenance": "stackexchange_00019.jsonl.gz:468630", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/240426" }
[ 0.034942626953125, -0.01568603515625, 0.002056121826171875, -0.0162200927734375, 0.0021762847900390625, -0.0134735107421875, 0.03448486328125, -0.0171966552734375, -0.048004150390625, -0.0146942138671875, -0.003490447998046875, -0.00580596923828125, -0.0648193359375, -0.034515380859375, 0.009552001953125, -0.06671142578125, 0.01074981689453125, -0.009002685546875, 0.0034236907958984375, -0.03167724609375, 0.0357666015625, -0.044403076171875, -0.005504608154296875, 0.060791015625, 0.031463623046875, 0.0025691986083984375, -0.02294921875, -0.0008144378662109375, 0.01024627685546875, -0.01042938232421875, 0.020904541015625, 0.01523590087890625, 0.030731201171875, -0.01065826416015625, -0.0122528076171875, -0.020477294921875, 0.01922607421875, -0.01419830322265625, -0.02301025390625, 0.040191650390625, 0.01885986328125, -0.00980377197265625, 0.0004057884216308594, 0.031951904296875, 0.00014317035675048828, -0.03448486328125, 0.0249481201171875, -0.057830810546875, 0.0312347412109375, -0.041748046875, -0.00815582275390625, 0.003810882568359375, 0.0047149658203125, -0.025054931640625, -0.031707763671875, -0.047119140625, -0.004032135009765625, 0.0201568603515625, 0.056060791015625, -0.042694091796875, -0.056549072265625, -0.03057861328125, 0.037139892578125, -0.0015192031860351562, -0.00412750244140625, 0.0117340087890625, 0.00909423828125, 0.0052337646484375, -0.052093505859375, -0.00328826904296875, 0.03448486328125, -0.044952392578125, 0.03546142578125, -0.02838134765625, 0.0158233642578125, -0.03411865234375, -0.01397705078125, -0.02874755859375, 0.027252197265625, -0.01291656494140625, -0.0019741058349609375, -0.006153106689453125, -0.01425933837890625, -0.039825439453125, -0.0020904541015625, -0.017059326171875, -0.01219940185546875, 0.006946563720703125, -0.0258941650390625, -0.01183319091796875, -0.01128387451171875, -0.0738525390625, -0.04913330078125, 0.048431396484375, 0.0226287841796875, -0.0200042724609375, 0.0170745849609375, -0.004123687744140625, 0.006175994873046875, -0.004009246826171875, 0.0144195556640625, -0.042388916015625, 0.01454925537109375, -0.0133819580078125, 0.0002161264419555664, -0.03350830078125, -0.0085601806640625, 0.031585693359375, 0.0338134765625, 0.046722412109375, -0.04217529296875, 0.04010009765625, 0.032928466796875, 0.00115203857421875, -0.041168212890625, -0.039398193359375, -0.004589080810546875, -0.0179290771484375, -0.0042724609375, -0.037384033203125, -0.002010345458984375, 0.00421142578125, 0.0078125, -0.032928466796875, -0.0182647705078125, -0.036102294921875, -0.0289306640625, -0.00408935546875, 0.03485107421875, -0.00971221923828125, -0.04315185546875, 0.0145263671875, 0.05963134765625, 0.028472900390625, 0.0274810791015625, -0.01068878173828125, -0.040130615234375, -0.008544921875, -0.0033740997314453125, -0.002819061279296875, 0.0169219970703125, -0.0352783203125, 0.01210784912109375, 0.018707275390625, 0.0006914138793945312, 0.040283203125, 0.0297393798828125, -0.0023746490478515625, -0.020904541015625, -0.042510986328125, -0.036346435546875, 0.0316162109375, -0.006771087646484375, 0.017333984375, 0.052703857421875, -0.031829833984375, 0.031951904296875, -0.044708251953125, 0.0501708984375, -0.0148162841796875, 0.021453857421875, -0.0082244873046875, 0.03472900390625, -0.004199981689453125, -0.03448486328125, 0.02117919921875, -0.06134033203125, -0.0175933837890625, 0.0230712890625, -0.057342529296875, 0.0030765533447265625, 0.006145477294921875, 0.03582763671875, 0.016876220703125, 0.01322174072265625, 0.031890869140625, -0.00783538818359375, -0.015899658203125, 0.010955810546875, 0.05792236328125, 0.02459716796875, -0.0164337158203125, -0.0154571533203125, 0.033538818359375, -0.0693359375, 0.060546875, -0.01172637939453125, 0.095947265625, 0.04278564453125, 0.0102996826171875, -0.004405975341796875, -0.01348876953125, -0.032623291015625, -0.0204010009765625, 0.007030487060546875, 0.0016422271728515625, -0.03314208984375, -0.004077911376953125, -0.017852783203125, -0.00855255126953125, -0.019256591796875, -0.01471710205078125, -0.004459381103515625, 0.0455322265625, -0.0181732177734375, -0.005809783935546875, -0.01145172119140625, -0.005290985107421875, -0.0198974609375, 0.0027370452880859375, 0.01367950439453125, -0.032073974609375, 0.01416015625, -0.05352783203125, -0.04058837890625, -0.018096923828125, -0.0178680419921875, -0.023681640625, -0.005466461181640625, -0.04486083984375, 0.006206512451171875, -0.00785064697265625, -0.0128936767578125, 0.057464599609375, 0.033721923828125, -0.00044536590576171875, -0.0306549072265625, -0.0183258056640625, 0.0126495361328125, 0.0079193115234375, -0.042816162109375, 0.048675537109375, 0.02203369140625, 0.006908416748046875, -0.03155517578125, -0.0214996337890625, -0.017181396484375, -0.055389404296875, 0.0102996826171875, 0.0611572265625, 0.016326904296875, -0.007595062255859375, -0.00376129150390625, 0.03436279296875, 0.04876708984375, -0.006702423095703125, 0.01003265380859375, 0.022369384765625, 0.0234375, 0.044097900390625, -0.016326904296875, -0.00162506103515625, 0.01555633544921875, -0.0640869140625, 0.051727294921875, 0.0165557861328125, -0.0179901123046875, -0.005161285400390625, 0.0044708251953125, -0.008636474609375, -0.0006117820739746094, -0.052337646484375, -0.0262908935546875, -0.023162841796875, 0.05279541015625, 0.00002276897430419922, 0.060211181640625, 0.055908203125, -0.0165252685546875, -0.0026683807373046875, -0.00018930435180664062, -0.0013799667358398438, 0.0242156982421875, -0.0182037353515625, -0.03924560546875, 0.0249176025390625, -0.00432586669921875, 0.00922393798828125, 0.01091766357421875, -0.026031494140625, -0.0179595947265625, -0.0158843994140625, -0.048187255859375, -0.0213165283203125, 0.033447265625, -0.053009033203125, -0.0192108154296875, -0.0103607177734375, -0.0105133056640625, -0.03717041015625, -0.001529693603515625, 0.0174102783203125, -0.04705810546875, 0.0289764404296875, 0.00794219970703125, -0.044281005859375, -0.018280029296875, -0.057891845703125, 0.049591064453125, -0.03955078125, -0.0083160400390625, 0.07952880859375, 0.005771636962890625, 0.0215911865234375, -0.0133209228515625, 0.0240020751953125, 0.003993988037109375, -0.0006694793701171875, -0.00707244873046875, -0.0293731689453125, -0.0609130859375, -0.0384521484375, 0.0394287109375, 0.04376220703125, 0.00940704345703125, -0.0220794677734375, 0.007747650146484375, 0.05218505859375, -0.06182861328125, -0.050750732421875, 0.01611328125, -0.043182373046875, -0.01110076904296875, -0.0323486328125, -0.027435302734375, 0.00032329559326171875, -0.0159454345703125, 0.0086517333984375, 0.0249176025390625, -0.007568359375, 0.0042266845703125, 0.004863739013671875, -0.048980712890625, -0.04022216796875, 0.00033211708068847656, 0.01055908203125, -0.0086822509765625, 0.07806396484375, -0.01029205322265625, -0.0556640625, -0.0204925537109375, -0.05291748046875, -0.0166778564453125, 0.0214385986328125, 0.02349853515625, -0.02154541015625, 0.0167083740234375, 0.0179290771484375, 0.034576416015625, 0.0301055908203125, -0.03643798828125, -0.037750244140625, -0.0276031494140625, 0.01210784912109375, 0.0179443359375, -0.0182647705078125, 0.01059722900390625, 0.0697021484375, 0.0338134765625, -0.00365447998046875, 0.0110931396484375, -0.0197296142578125, -0.012786865234375, 0.002445220947265625, -0.0010232925415039062, -0.016326904296875, -0.03131103515625, 0.028564453125, 0.01776123046875, 0.0018262863159179688, -0.024749755859375, -0.017120361328125, 0.04730224609375, 0.01385498046875, 0.03759765625, -0.0090789794921875, -0.052032470703125, -0.0484619140625, 0.06207275390625, -0.034088134765625, -0.0014982223510742188, -0.0311279296875, 0.05865478515625, -0.031951904296875, -0.04840087890625, 0.032135009765625, -0.05767822265625, 0.002101898193359375, -0.050048828125, -0.0157470703125, -0.0311431884765625, 0.069580078125, -0.048858642578125, -0.0181732177734375, 0.01268768310546875, 0.0277862548828125, -0.00955963134765625, -0.04296875, -0.01800537109375, -0.040924072265625, -0.031646728515625, 0.0185699462890625, 0.00386810302734375, -0.0208587646484375, -0.032623291015625, 0.03973388671875, -0.04205322265625, -0.01007080078125, 0.039520263671875, -0.033355712890625, 0.0142364501953125, -0.019866943359375, 0.0042572021484375, -0.051544189453125, -0.037200927734375, -0.00754547119140625, -0.06793212890625, 0.0004489421844482422, -0.0340576171875, 0.031646728515625, 0.01010894775390625, 0.0002884864807128906, 0.0050201416015625, 0.03948974609375, 0.0289154052734375, 0.0243072509765625, -0.00797271728515625, -0.03765869140625, 0.025360107421875, -0.0017766952514648438, -0.0014181137084960938, -0.0128021240234375, -0.04034423828125, -0.04779052734375, -0.0011968612670898438, 0.038330078125, -0.031982421875, -0.0008568763732910156, -0.0478515625, 0.016632080078125, -0.0197296142578125, 0.0015554428100585938, -0.044158935546875, -0.005527496337890625, -0.031829833984375, -0.0001385211944580078, -0.001811981201171875, -0.0521240234375, 0.017608642578125, -0.01384735107421875, 0.005550384521484375, 0.0202484130859375, 0.08966064453125, 0.0003771781921386719, 0.00449371337890625, -0.10955810546875, -0.035614013671875, 0.025482177734375, 0.025726318359375, 0.0254669189453125, 0.0236053466796875, -0.0040283203125, 0.0042877197265625, 0.0088958740234375, -0.03216552734375, -0.02593994140625, 0.049163818359375, 0.006725311279296875, 0.0014495849609375, -0.00751495361328125, -0.041961669921875, 0.056732177734375, 0.0121002197265625, -0.01971435546875, 0.01467132568359375, -0.00891876220703125, 0.046966552734375, -0.00856781005859375, -0.0034885406494140625, -0.053985595703125, -0.04541015625, 0.0164794921875, -0.0426025390625, 0.03985595703125, 0.0460205078125, -0.0145263671875, 0.056304931640625, 0.0002391338348388672, 0.0242767333984375, -0.0119781494140625, -0.0159912109375, -0.0225372314453125, 0.032470703125, 0.00708770751953125, 0.00881195068359375, 0.0124969482421875, -0.01934814453125, 0.072509765625, -0.00492095947265625, -0.06494140625, 0.0187530517578125, -0.025543212890625, 0.00870513916015625, 0.023223876953125, 0.004283905029296875, -0.00884246826171875, 0.0528564453125, 0.005977630615234375, 0.020965576171875, 0.03631591796875, 0.04156494140625, -0.0012350082397460938, 0.020050048828125, 0.0175933837890625, 0.0033588409423828125, 0.025146484375, 0.04925537109375, -0.01210784912109375, 0.032379150390625, -0.02703857421875, 0.0513916015625, 0.0491943359375, 0.0010080337524414062, 0.0015878677368164062, 0.0303192138671875, -0.0072174072265625, -0.021484375, -0.0289459228515625, -0.033477783203125, -0.023834228515625, 0.0244293212890625, 0.03509521484375, 0.04290771484375, 0.020904541015625, -0.0035076141357421875, 0.01110076904296875, -0.01468658447265625, 0.0249786376953125, 0.003936767578125, -0.07550048828125, 0.0210113525390625, 0.055389404296875, -0.013031005859375, -0.031219482421875, 0.01318359375, -0.0291290283203125, -0.032501220703125, -0.00026297569274902344, -0.06378173828125, 0.0041656494140625, -0.027984619140625, -0.0225067138671875, -0.0188751220703125, 0.0222320556640625, 0.01093292236328125, -0.061126708984375, -0.07342529296875, 0.0118560791015625, 0.00140380859375, 0.033599853515625, -0.010833740234375, -0.00794219970703125, -0.0026836395263671875, -0.01018524169921875, -0.0048370361328125, 0.006114959716796875, 0.034759521484375, 0.00466156005859375, -0.0113067626953125, -0.017791748046875, -0.06317138671875, -0.028778076171875, -0.048431396484375, -0.041229248046875, -0.029144287109375, 0.01453399658203125, 0.02484130859375, 0.0265350341796875, 0.0034351348876953125, -0.038330078125, -0.0016460418701171875, -0.001796722412109375, 0.0194854736328125, 0.0141448974609375, 0.003124237060546875, 0.0203094482421875, 0.005237579345703125, 0.03900146484375, 0.0103302001953125, 0.0221099853515625, -0.0018978118896484375, -0.040557861328125, -0.007785797119140625, -0.06915283203125, -0.013458251953125, 0.0452880859375, -0.0267333984375, 0.0232086181640625, -0.004093170166015625, 0.0130615234375, -0.003124237060546875, -0.03466796875, 0.0156402587890625, -0.0198516845703125, 0.054534912109375, -0.051910400390625, -0.032470703125, 0.00653839111328125, -0.0052032470703125, 0.05859375, 0.00545501708984375, -0.0333251953125, 0.032196044921875, -0.00337982177734375, 0.039642333984375, -0.0088043212890625, -0.01174163818359375, 0.01221466064453125, 0.002552032470703125, -0.028106689453125, 0.0056915283203125, 0.020599365234375, 0.002162933349609375, 0.004364013671875, -0.01519775390625, -0.039215087890625, 0.0122528076171875, -0.00923919677734375, -0.02838134765625, -0.0111083984375, -0.02374267578125, -0.0014562606811523438, 0.01551055908203125, 0.039398193359375, 0.07318115234375, -0.0823974609375, 0.033172607421875, 0.00299072265625, 0.006938934326171875, 0.049224853515625, 0.03009033203125, 0.01078033447265625, 0.028564453125, -0.024017333984375, -0.02215576171875, -0.01605224609375, 0.00778961181640625, -0.0023708343505859375, -0.0009393692016601562, -0.027618408203125, 0.0228271484375, -0.00039386749267578125, -0.021453857421875, 0.013153076171875, 0.022247314453125, 0.0116424560546875, -0.0160980224609375, -0.007053375244140625, 0.0265655517578125, -0.033233642578125, -0.04913330078125, 0.0277557373046875, -0.015380859375, 0.007663726806640625, -0.004238128662109375, 0.0213470458984375, -0.00991058349609375, 0.0426025390625, -0.0218048095703125, 0.0239105224609375, 0.022247314453125, -0.0210418701171875, -0.0008935928344726562, -0.0275421142578125, -0.007091522216796875, 0.0400390625, -0.0281219482421875, 0.0189056396484375, 0.0050506591796875, -0.0120391845703125, -0.01222991943359375, 0.0032444000244140625, 0.03839111328125, 0.0030994415283203125, -0.0311126708984375, 0.0246124267578125, 0.01465606689453125, -0.007076263427734375, -0.002147674560546875, -0.06878662109375, -0.0232391357421875, -0.0048828125, -0.04327392578125, -0.052764892578125, 0.03546142578125, -0.0207977294921875, -0.08319091796875, 0.158203125, -0.00392913818359375, 0.0447998046875, 0.007434844970703125, 0.06439208984375, -0.035003662109375, 0.033233642578125, -0.038482666015625, 0.052642822265625, -0.010345458984375, 0.041717529296875, -0.0748291015625, -0.00661468505859375, -0.007534027099609375, 0.041778564453125, 0.0183258056640625, 0.0080413818359375, -0.01354217529296875, -0.0162506103515625, 0.0540771484375, 0.04376220703125, 0.018524169921875, 0.02044677734375, 0.01523590087890625, 0.0214691162109375, 0.039093017578125, 0.0046234130859375, 0.040985107421875, 0.003879547119140625, -0.0257415771484375, 0.037750244140625, 0.005611419677734375, 0.00220489501953125, 0.0277099609375, 0.0018701553344726562, -0.002941131591796875, 0.0013637542724609375, 0.0033664703369140625, -0.0010175704956054688, -0.027313232421875, 0.03350830078125, 0.030609130859375, -0.0013933181762695312, 0.047088623046875, -0.032958984375, 0.054962158203125, 0.0077362060546875, 0.0362548828125, 0.006954193115234375, 0.004184722900390625, 0.0255279541015625, 0.00850677490234375, 0.024383544921875, 0.0266265869140625, -0.0164031982421875, -0.0016546249389648438, 0.0011606216430664062, -0.009002685546875, -0.0731201171875, 0.0367431640625, 0.046142578125, 0.0263824462890625, -0.045196533203125, -0.023651123046875, 0.0051116943359375, 0.01399993896484375, 0.0045013427734375, -0.039642333984375, -0.0234832763671875, -0.0000508427619934082, 0.06005859375, -0.0462646484375, 0.016937255859375, 0.020050048828125, 0.037689208984375, -0.01052093505859375, -0.030426025390625, -0.06268310546875, -0.01403045654296875, -0.03643798828125, -0.0194091796875, 0.0078277587890625, 0.049346923828125, 0.047943115234375, 0.0484619140625, 0.00926971435546875, -0.032501220703125, 0.0010347366333007812, 0.06378173828125, 0.0156402587890625, -0.0160369873046875, -0.00855255126953125, -0.0703125, 0.0029621124267578125, 0.020599365234375, 0.0222015380859375, 0.058380126953125, 0.05938720703125, 0.040435791015625, -0.0091552734375, -0.002643585205078125, 0.03369140625, -0.030914306640625, 0.0070343017578125, -0.020843505859375, -0.0112152099609375, 0.0162506103515625, -0.0211334228515625, 0.01104736328125, -0.0128021240234375, 0.04736328125, 0.0214080810546875, 0.0193939208984375, 0.018768310546875, -0.0081939697265625, 0.0232696533203125, 0.014312744140625, 0.034637451171875, 0.044525146484375, -0.08026123046875, -0.0167694091796875, -0.01316070556640625, -0.05517578125, 0.036163330078125, 0.05657958984375, -0.01076507568359375, -0.01123809814453125, -0.004558563232421875, -0.021148681640625, -0.0175933837890625, 0.0270843505859375, 0.02227783203125, -0.002166748046875, -0.000045418739318847656, -0.01068878173828125, -0.0904541015625, -0.048309326171875, -0.01271820068359375, 0.00787353515625, 0.0051422119140625, 0.005321502685546875, 0.03472900390625, 0.023895263671875, 0.0213470458984375, 0.03570556640625, -0.010284423828125, 0.020904541015625, 0.005649566650390625, -0.007205963134765625, 0.01335906982421875, -0.016265869140625, 0.022186279296875, 0.059783935546875, 0.0242919921875, -0.0238800048828125, 0.00827789306640625, 0.0159912109375, 0.0037593841552734375, -0.01165771484375, 0.0137786865234375, -0.0152587890625, -0.01251983642578125, -0.01325225830078125, -0.0105743408203125, 0.0299530029296875, 0.01357269287109375, 0.00469970703125, -0.006298065185546875, 0.030914306640625, -0.0153656005859375, 0.01029205322265625, 0.0035266876220703125, 0.006595611572265625, 0.02630615234375, -0.0002624988555908203, -0.0261993408203125, 0.0098419189453125, -0.010223388671875, -0.020172119140625, 0.037322998046875, -0.01303863525390625, 0.0357666015625, -0.00676727294921875, 0.0005617141723632812, 0.0216217041015625, 0.035247802734375, -0.0183868408203125, 0.00878143310546875, 0.01824951171875, -0.0187225341796875, 0.00911712646484375, 0.005428314208984375, -0.01837158203125, -0.0341796875, 0.01374053955078125, -0.001827239990234375, 0.0025882720947265625, -0.005863189697265625, -0.00726318359375, -0.0202484130859375, 0.0207061767578125, -0.0207977294921875, -0.003025054931640625, -0.0036945343017578125, -0.020111083984375, -0.01003265380859375, -0.03631591796875, -0.0706787109375, 0.04473876953125, 0.067138671875, -0.00012201070785522461, 0.00543212890625, 0.00757598876953125, -0.0265960693359375, 0.028045654296875, 0.01491546630859375, 0.01213836669921875, -0.019073486328125, 0.0008091926574707031, 0.046112060546875, 0.03662109375, 0.08453369140625, 0.0390625, -0.030029296875, 0.0010881423950195312, -0.006500244140625, 0.0010042190551757812, -0.0193634033203125, 0.0184783935546875, -0.045440673828125, -0.0245208740234375, -0.0269775390625, 0.0262603759765625, 0.037200927734375, -0.033843994140625, -0.1324462890625, 0.040740966796875, -0.046356201171875, -0.046661376953125, -0.058197021484375, -0.0224761962890625, 0.006366729736328125, 0.00019073486328125, -0.01290130615234375, -0.04803466796875, -0.04156494140625, 0.048126220703125, -0.005748748779296875, 0.04644775390625, 0.0071563720703125, 0.029632568359375, -0.033599853515625, 0.005680084228515625, -0.03741455078125, -0.019439697265625, 0.038848876953125, -0.0284423828125, 0.0194091796875, 0.027191162109375, -0.0537109375, -0.09844970703125, -0.034515380859375, -0.01529693603515625, -0.0028228759765625, -0.0081329345703125, -0.06231689453125, -0.033416748046875, 0.045867919921875, 0.0767822265625, 0.02813720703125, -0.026702880859375, 0.08087158203125, -0.020172119140625, -0.05596923828125, 0.0155487060546875, -0.008636474609375, 0.01331329345703125, 0.01128387451171875, 0.006122589111328125, -0.0196685791015625, -0.015899658203125, 0.0175018310546875, -0.029327392578125, 0.004058837890625, 0.0218505859375, -0.0034313201904296875, -0.0638427734375, 0.053863525390625, 0.0389404296875, -0.041168212890625, -0.02801513671875, -0.0010280609130859375, -0.031646728515625, -0.007518768310546875, -0.01580810546875, -0.00679779052734375, -0.048583984375, -0.01036834716796875, 0.049560546875, -0.0163421630859375, 0.049835205078125, -0.040679931640625, -0.0277252197265625, -0.015045166015625, 0.0318603515625, -0.0009403228759765625, 0.035308837890625, -0.01303863525390625, 0.037017822265625, 0.004764556884765625, 0.061248779296875, -0.04815673828125, 0.0482177734375, -0.045684814453125, 0.042999267578125, -0.0182342529296875, 0.03594970703125, 0.0189666748046875, 0.0069580078125, 0.00225830078125, 0.02789306640625, -0.029388427734375, -0.00875091552734375, -0.00104522705078125, 0.0163421630859375, 0.0014629364013671875, 0.00021195411682128906 ]
c6e5b9658e9254ea7aedfcb18c50e15c53aed985
Wordpress Stackexchange Q: Media files exist in upload folder but not showing up In my wordpress, I tried to upload my images by media uploader but it says "couldn't create directory wp-content/uploads/2016/09". Then I create the folders correctly. And now when I tried to upload my files by media uploader, it says "couldn't move to directory wp-content/uploads/2016/09". Finally I uploaded my images in the folder and then checked the media library and the media library saying "no media founds". Why is it happening? A: You can use Media Sync for new updated plugin for the year 2020. The plugin description reads You can scan all files that are in “uploads” directory and see which ones are actually in Media Library and which ones are just sitting there. Then you can select those that you want to import to database and therefore make them available in Media Library.
Q: Media files exist in upload folder but not showing up In my wordpress, I tried to upload my images by media uploader but it says "couldn't create directory wp-content/uploads/2016/09". Then I create the folders correctly. And now when I tried to upload my files by media uploader, it says "couldn't move to directory wp-content/uploads/2016/09". Finally I uploaded my images in the folder and then checked the media library and the media library saying "no media founds". Why is it happening? A: You can use Media Sync for new updated plugin for the year 2020. The plugin description reads You can scan all files that are in “uploads” directory and see which ones are actually in Media Library and which ones are just sitting there. Then you can select those that you want to import to database and therefore make them available in Media Library. A: Just by uploading files into the wp-content/uploads won't show up in the Media Library , those media ID's needs to be there in the database to show up in the Media Library. If you already have files in the uploads folder and want to add them into the database, you can use this plugin to add files from server. But this is not the correct solution instead fix the permissions issue for that uploads folder. A: Media files exist in upload folder but not showing up Simply Paste this code in wpconfig.php and save it all is done :) but exactly where to paste? define( 'UPLOADS', 'wp-content/'.'uploads' );
wordpress
{ "language": "en", "length": 254, "provenance": "stackexchange_00019.jsonl.gz:468645", "question_score": "22", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/240487" }
[ 0.016571044921875, -0.03216552734375, 0.028533935546875, 0.05792236328125, -0.0279083251953125, -0.041778564453125, 0.0977783203125, -0.039154052734375, 0.034149169921875, 0.033599853515625, -0.0169830322265625, -0.02154541015625, 0.0245208740234375, -0.015655517578125, -0.033294677734375, -0.0213470458984375, 0.005199432373046875, 0.0036869049072265625, 0.02862548828125, -0.0190582275390625, 0.0172882080078125, -0.004398345947265625, 0.0209503173828125, -0.022369384765625, -0.00969696044921875, 0.02789306640625, 0.010345458984375, -0.01125335693359375, -0.0221099853515625, -0.021636962890625, 0.01198577880859375, 0.025909423828125, 0.03582763671875, -0.01375579833984375, -0.00998687744140625, 0.0200042724609375, 0.00945281982421875, -0.0171966552734375, 0.0005369186401367188, 0.004482269287109375, 0.005840301513671875, 0.00939178466796875, 0.062469482421875, 0.00969696044921875, 0.021636962890625, -0.04473876953125, 0.01019287109375, -0.06781005859375, 0.01277923583984375, 0.0416259765625, -0.0110931396484375, 0.0024700164794921875, -0.003566741943359375, -0.0169677734375, 0.0031337738037109375, -0.03912353515625, -0.014923095703125, 0.0635986328125, 0.01611328125, -0.027862548828125, -0.043365478515625, 0.0335693359375, 0.005279541015625, 0.01364898681640625, -0.0222625732421875, 0.00859832763671875, -0.025665283203125, 0.014923095703125, -0.04791259765625, -0.04766845703125, 0.01355743408203125, -0.0399169921875, 0.0173797607421875, -0.054779052734375, 0.024078369140625, 0.0218505859375, -0.01393890380859375, -0.00189971923828125, 0.020477294921875, -0.007495880126953125, 0.03369140625, -0.026458740234375, -0.0022907257080078125, -0.0214996337890625, 0.03167724609375, 0.00238037109375, 0.01415252685546875, -0.0200347900390625, 0.010955810546875, 0.02667236328125, -0.00836181640625, 0.0009832382202148438, 0.02001953125, 0.048583984375, -0.00830841064453125, 0.00811767578125, 0.03369140625, 0.07501220703125, 0.0037593841552734375, 0.0330810546875, -0.0293121337890625, -0.03387451171875, 0.01364898681640625, -0.053253173828125, 0.0419921875, -0.003875732421875, -0.03955078125, -0.0865478515625, 0.04315185546875, 0.025146484375, -0.01364898681640625, 0.05828857421875, -0.01207733154296875, -0.03680419921875, 0.005069732666015625, 0.0389404296875, -0.0128326416015625, 0.01139068603515625, 0.00266265869140625, 0.01500701904296875, -0.0278472900390625, 0.0251617431640625, -0.06451416015625, -0.0290069580078125, 0.0308074951171875, -0.02545166015625, -0.01213836669921875, 0.052032470703125, -0.0001266002655029297, 0.047943115234375, -0.03411865234375, 0.0214385986328125, 0.0379638671875, -0.04315185546875, -0.0306854248046875, -0.0316162109375, 0.00506591796875, -0.01178741455078125, -0.0120697021484375, 0.020843505859375, 0.01515960693359375, -0.0406494140625, -0.0110931396484375, 0.0034637451171875, 0.002307891845703125, 0.040313720703125, -0.00952911376953125, 0.0030155181884765625, 0.0202484130859375, -0.04473876953125, -0.0183563232421875, -0.02667236328125, 0.039093017578125, -0.0022125244140625, 0.002918243408203125, -0.054840087890625, 0.041015625, -0.053741455078125, 0.0243988037109375, -0.06573486328125, 0.03900146484375, 0.023773193359375, 0.0338134765625, 0.004100799560546875, -0.0076141357421875, -0.033477783203125, -0.07684326171875, -0.00920867919921875, 0.02252197265625, 0.0255126953125, 0.0012178421020507812, -0.0185546875, -0.0038013458251953125, 0.01392364501953125, -0.007083892822265625, 0.015289306640625, 0.022705078125, 0.018524169921875, 0.0141448974609375, 0.05072021484375, 0.009796142578125, -0.01210784912109375, 0.0845947265625, -0.017730712890625, -0.0177764892578125, -0.01103973388671875, 0.0148773193359375, -0.0083465576171875, 0.0040740966796875, 0.01456451416015625, 0.052642822265625, 0.039825439453125, -0.0212860107421875, -0.0177459716796875, -0.0135650634765625, -0.0032806396484375, -0.027130126953125, 0.00818634033203125, -0.020416259765625, 0.0052947998046875, -0.001377105712890625, 0.01512908935546875, -0.006988525390625, 0.016693115234375, -0.01885986328125, -0.002368927001953125, -0.0121612548828125, 0.0094451904296875, -0.007450103759765625, -0.00794219970703125, 0.020263671875, 0.0182647705078125, -0.035675048828125, -0.050018310546875, -0.037872314453125, 0.02813720703125, -0.052459716796875, 0.009796142578125, -0.022979736328125, 0.068359375, -0.050384521484375, -0.00855255126953125, -0.05328369140625, 0.000040650367736816406, 0.0023193359375, 0.040130615234375, -0.040252685546875, 0.020751953125, 0.0059814453125, 0.0394287109375, -0.005626678466796875, -0.0032367706298828125, -0.0360107421875, 0.0107879638671875, -0.0223846435546875, -0.026641845703125, -0.032012939453125, -0.08038330078125, 0.04022216796875, 0.0633544921875, 0.0209808349609375, 0.053466796875, -0.003597259521484375, 0.054412841796875, 0.0787353515625, -0.012847900390625, 0.0015573501586914062, 0.01494598388671875, 0.0060882568359375, 0.003131866455078125, 0.0163726806640625, -0.016845703125, 0.00980377197265625, -0.058441162109375, 0.0213775634765625, 0.0026226043701171875, -0.0205841064453125, -0.0095062255859375, -0.01010894775390625, 0.015869140625, 0.00171661376953125, -0.0135498046875, -0.0171966552734375, -0.0181427001953125, -0.0054168701171875, 0.0367431640625, 0.024200439453125, 0.0290679931640625, -0.0137786865234375, 0.03326416015625, 0.00868988037109375, -0.0452880859375, 0.006359100341796875, 0.053192138671875, 0.017974853515625, 0.03167724609375, -0.0357666015625, -0.023895263671875, 0.0288238525390625, 0.04388427734375, -0.01401519775390625, -0.01377105712890625, -0.06378173828125, -0.00846099853515625, -0.0162200927734375, -0.038238525390625, 0.00815582275390625, 0.033355712890625, 0.00295257568359375, -0.0052947998046875, 0.0231781005859375, 0.036529541015625, 0.006710052490234375, 0.041748046875, -0.01345062255859375, -0.0028362274169921875, 0.0204620361328125, -0.033355712890625, 0.046600341796875, -0.03094482421875, 0.01480865478515625, 0.0618896484375, -0.00893402099609375, 0.00675201416015625, 0.00904083251953125, 0.01276397705078125, 0.0206298828125, 0.0303192138671875, 0.0013170242309570312, -0.032470703125, -0.0280914306640625, -0.04058837890625, 0.002490997314453125, -0.059326171875, -0.01038360595703125, -0.0193634033203125, -0.0338134765625, -0.03887939453125, -0.11041259765625, -0.052001953125, -0.006862640380859375, -0.045440673828125, -0.011016845703125, 0.00791168212890625, -0.02142333984375, -0.0205535888671875, 0.0301666259765625, 0.009918212890625, -0.01340484619140625, -0.004566192626953125, -0.0174407958984375, -0.01503753662109375, -0.0238800048828125, 0.0167388916015625, 0.0020923614501953125, 0.0148162841796875, 0.006031036376953125, 0.03997802734375, -0.012176513671875, -0.04754638671875, -0.0028324127197265625, 0.032623291015625, 0.01439666748046875, 0.026336669921875, 0.032623291015625, -0.01377105712890625, 0.0005297660827636719, 0.0008940696716308594, 0.0750732421875, 0.07275390625, -0.0753173828125, 0.00406646728515625, -0.0063323974609375, -0.0163726806640625, -0.038787841796875, 0.07379150390625, 0.047882080078125, -0.057281494140625, -0.01120758056640625, -0.056243896484375, 0.0209808349609375, -0.0294952392578125, -0.004940032958984375, 0.050384521484375, -0.0210418701171875, -0.018524169921875, -0.007656097412109375, 0.058380126953125, -0.0021572113037109375, 0.053741455078125, -0.0234222412109375, -0.035675048828125, 0.0226898193359375, -0.0010814666748046875, -0.00489044189453125, 0.01464080810546875, 0.022216796875, -0.00494384765625, 0.021148681640625, 0.0144805908203125, 0.0153656005859375, -0.03070068359375, 0.0430908203125, -0.050628662109375, -0.037353515625, 0.0306396484375, -0.051483154296875, 0.019012451171875, -0.060302734375, -0.006412506103515625, -0.0285797119140625, 0.06536865234375, -0.044097900390625, -0.0122222900390625, -0.01206207275390625, 0.04144287109375, -0.05230712890625, -0.047698974609375, -0.01036834716796875, -0.0011167526245117188, 0.0147857666015625, -0.005680084228515625, 0.010498046875, -0.029693603515625, 0.03009033203125, -0.0975341796875, 0.0144805908203125, -0.0269927978515625, 0.0352783203125, 0.0052490234375, 0.032470703125, -0.01291656494140625, 0.0269012451171875, -0.0372314453125, -0.006023406982421875, -0.0171356201171875, -0.10009765625, -0.016021728515625, -0.0236358642578125, 0.0604248046875, -0.0160064697265625, 0.047821044921875, -0.0660400390625, 0.02960205078125, 0.018280029296875, 0.005474090576171875, 0.005382537841796875, -0.00605010986328125, 0.038787841796875, -0.0290679931640625, -0.0007452964782714844, -0.0245361328125, -0.0166778564453125, -0.0855712890625, -0.0283966064453125, -0.019927978515625, -0.0275421142578125, 0.048919677734375, -0.05682373046875, 0.018096923828125, 0.032684326171875, 0.00140380859375, -0.057769775390625, 0.0129547119140625, -0.0135498046875, -0.01364898681640625, -0.01556396484375, -0.01372528076171875, 0.030120849609375, -0.02252197265625, 0.003810882568359375, 0.0200653076171875, 0.0875244140625, 0.005901336669921875, 0.0085906982421875, -0.07025146484375, 0.0223236083984375, 0.027313232421875, 0.02618408203125, 0.020233154296875, 0.004241943359375, -0.006328582763671875, -0.00942230224609375, 0.01441192626953125, 0.00720977783203125, -0.018463134765625, 0.038360595703125, 0.005218505859375, -0.0279541015625, 0.0178375244140625, 0.004306793212890625, -0.006961822509765625, 0.023712158203125, -0.0010938644409179688, -0.0133819580078125, -0.016448974609375, 0.04193115234375, 0.0194854736328125, -0.01171875, -0.045867919921875, -0.07177734375, 0.0180511474609375, -0.0439453125, 0.06005859375, -0.00640106201171875, 0.01291656494140625, 0.06890869140625, 0.055084228515625, -0.0014801025390625, 0.027069091796875, -0.010528564453125, -0.00396728515625, 0.00730133056640625, 0.055419921875, -0.01739501953125, 0.0185394287109375, -0.0038471221923828125, 0.0254058837890625, 0.01393890380859375, -0.031646728515625, 0.010040283203125, -0.0280303955078125, 0.0158233642578125, 0.0152587890625, -0.0203857421875, 0.019561767578125, 0.04901123046875, 0.0007810592651367188, 0.006465911865234375, -0.0172576904296875, 0.03936767578125, -0.0295562744140625, 0.0391845703125, 0.001781463623046875, -0.01497650146484375, 0.0023860931396484375, 0.013153076171875, -0.0343017578125, -0.008575439453125, 0.0124359130859375, -0.01451873779296875, -0.0064849853515625, 0.03814697265625, 0.031982421875, -0.03582763671875, 0.011962890625, 0.0183563232421875, 0.02337646484375, -0.035552978515625, 0.024505615234375, -0.01488494873046875, 0.0236053466796875, -0.02142333984375, -0.03973388671875, 0.049774169921875, -0.04583740234375, -0.004322052001953125, -0.01287078857421875, -0.060791015625, -0.040618896484375, -0.00481414794921875, 0.00824737548828125, 0.049713134765625, -0.01004791259765625, -0.0239715576171875, -0.00858306884765625, -0.029296875, -0.0137176513671875, 0.0767822265625, -0.064208984375, 0.020477294921875, 0.0196075439453125, 0.029327392578125, -0.00849151611328125, -0.03167724609375, -0.022491455078125, -0.0116119384765625, -0.02239990234375, -0.00927734375, 0.08343505859375, -0.0281829833984375, -0.037872314453125, -0.00514984130859375, 0.027130126953125, -0.026641845703125, 0.031707763671875, -0.0025653839111328125, -0.0179595947265625, 0.01345062255859375, -0.0264892578125, -0.00897979736328125, -0.0285186767578125, 0.0166778564453125, -0.00543975830078125, -0.020782470703125, -0.0140838623046875, -0.01337432861328125, 0.0227508544921875, -0.01088714599609375, -0.01385498046875, -0.040130615234375, 0.0212554931640625, 0.036834716796875, 0.00960540771484375, 0.0006031990051269531, 0.005115509033203125, 0.006977081298828125, 0.02691650390625, 0.00157928466796875, -0.01045989990234375, -0.0133209228515625, -0.031890869140625, -0.0274505615234375, -0.047882080078125, 0.0189208984375, 0.0123138427734375, 0.01544952392578125, 0.059539794921875, 0.043243408203125, 0.0254669189453125, 0.016876220703125, -0.0263824462890625, 0.0038661956787109375, -0.0213623046875, 0.043487548828125, -0.044281005859375, 0.00432586669921875, 0.01271820068359375, -0.025146484375, 0.019866943359375, 0.004306793212890625, -0.04144287109375, 0.0323486328125, -0.011016845703125, 0.01381683349609375, 0.038360595703125, -0.0120697021484375, 0.03924560546875, 0.01195526123046875, -0.01439666748046875, 0.02166748046875, 0.019561767578125, 0.01320648193359375, -0.00212860107421875, 0.024566650390625, 0.0217132568359375, -0.016845703125, 0.06939697265625, 0.018585205078125, -0.0011167526245117188, 0.057037353515625, -0.0211639404296875, -0.00052642822265625, 0.01462554931640625, 0.01222991943359375, -0.0129852294921875, -0.0246124267578125, -0.0252685546875, -0.01357269287109375, 0.01544189453125, -0.0118560791015625, 0.0093994140625, -0.0211639404296875, 0.0234222412109375, 0.00739288330078125, -0.0230712890625, -0.0006351470947265625, -0.0019254684448242188, 0.00016129016876220703, 0.01299285888671875, 0.005870819091796875, 0.00829315185546875, -0.0275726318359375, -0.046417236328125, 0.03717041015625, -0.0265045166015625, 0.035400390625, 0.037322998046875, -0.051025390625, 0.00400543212890625, 0.0037631988525390625, -0.005458831787109375, -0.03466796875, -0.008636474609375, 0.01248931884765625, -0.003276824951171875, 0.043426513671875, 0.041351318359375, -0.00730133056640625, 0.008087158203125, 0.003757476806640625, 0.021240234375, -0.00968170166015625, -0.01262664794921875, 0.025848388671875, 0.019256591796875, -0.048492431640625, 0.01055908203125, -0.041046142578125, 0.0108795166015625, 0.00821685791015625, -0.03936767578125, 0.01007843017578125, -0.0555419921875, 0.0191497802734375, 0.0222625732421875, 0.01873779296875, 0.011444091796875, 0.027252197265625, 0.04656982421875, -0.038360595703125, -0.0184783935546875, 0.024017333984375, -0.0205078125, -0.0186004638671875, 0.0298919677734375, -0.053192138671875, 0.0654296875, -0.04168701171875, 0.037628173828125, 0.0465087890625, 0.0195159912109375, -0.021331787109375, -0.01280975341796875, -0.0223388671875, 0.01629638671875, -0.037445068359375, 0.0128173828125, -0.0654296875, 0.013702392578125, -0.033721923828125, 0.025115966796875, 0.07427978515625, 0.0199432373046875, -0.034271240234375, -0.0308685302734375, 0.0251922607421875, 0.03948974609375, 0.0012254714965820312, 0.037384033203125, -0.003753662109375, -0.032989501953125, -0.005855560302734375, 0.0039005279541015625, 0.0162200927734375, -0.00943756103515625, -0.0400390625, 0.0183868408203125, 0.01348876953125, 0.02099609375, 0.0263214111328125, 0.022613525390625, 0.001567840576171875, 0.00026917457580566406, 0.0145416259765625, -0.03826904296875, 0.0147247314453125, 0.0190887451171875, 0.01238250732421875, -0.0291900634765625, -0.016937255859375, -0.007354736328125, 0.031707763671875, -0.0057830810546875, 0.01078033447265625, 0.01395416259765625, 0.00800323486328125, 0.00534820556640625, -0.018646240234375, 0.004985809326171875, 0.01177215576171875, -0.01824951171875, 0.0231475830078125, 0.002811431884765625, 0.0228424072265625, -0.058990478515625, 0.006984710693359375, 0.041046142578125, 0.04193115234375, -0.0245361328125, -0.036956787109375, 0.01198577880859375, -0.00290679931640625, -0.021484375, -0.028564453125, -0.042327880859375, -0.040252685546875, 0.0101165771484375, -0.043365478515625, -0.01241302490234375, 0.01113128662109375, 0.0323486328125, -0.01297760009765625, 0.0092620849609375, -0.007335662841796875, -0.03936767578125, -0.037322998046875, 0.071533203125, 0.0269775390625, 0.030029296875, -0.060028076171875, 0.06256103515625, -0.0192413330078125, 0.005645751953125, -0.003925323486328125, 0.0611572265625, -0.0174102783203125, 0.0186920166015625, -0.048126220703125, -0.09161376953125, 0.04302978515625, 0.04156494140625, 0.0306854248046875, 0.039520263671875, 0.02777099609375, 0.028900146484375, 0.0257568359375, 0.0035915374755859375, -0.005611419677734375, -0.0131378173828125, -0.02215576171875, -0.039642333984375, 0.025482177734375, 0.046905517578125, 0.00518035888671875, 0.01085662841796875, -0.00800323486328125, 0.0733642578125, -0.04449462890625, 0.026153564453125, -0.017364501953125, -0.044403076171875, 0.0316162109375, -0.03472900390625, 0.07342529296875, -0.036407470703125, -0.021148681640625, -0.01983642578125, -0.025177001953125, -0.0016231536865234375, 0.004779815673828125, 0.037841796875, 0.005340576171875, 0.0002589225769042969, 0.034881591796875, -0.02093505859375, 0.012939453125, -0.018524169921875, 0.040313720703125, 0.0031108856201171875, -0.004680633544921875, 0.0139617919921875, -0.033935546875, -0.004184722900390625, 0.00035452842712402344, 0.012542724609375, 0.0017795562744140625, 0.125732421875, -0.03411865234375, 0.007770538330078125, 0.037261962890625, 0.00899505615234375, -0.019012451171875, 0.0290069580078125, -0.0242919921875, -0.0391845703125, -0.002628326416015625, -0.015655517578125, 0.00453948974609375, 0.0033016204833984375, 0.0144195556640625, -0.03460693359375, -0.05169677734375, -0.005218505859375, 0.0272369384765625, 0.06280517578125, 0.0223846435546875, -0.01244354248046875, -0.0158233642578125, -0.001983642578125, 0.01385498046875, 0.0197906494140625, 0.040679931640625, -0.02337646484375, 0.02410888671875, -0.00382232666015625, -0.063232421875, 0.029449462890625, -0.0616455078125, 0.031585693359375, 0.0298919677734375, 0.032501220703125, -0.0455322265625, -0.052398681640625, -0.01303863525390625, -0.024139404296875, -0.0012998580932617188, 0.0217132568359375, -0.038482666015625, -0.006717681884765625, 0.022003173828125, 0.0197601318359375, -0.0040283203125, -0.05157470703125, -0.01403045654296875, 0.05889892578125, -0.0178375244140625, 0.024566650390625, -0.03607177734375, -0.0169677734375, -0.056365966796875, -0.005046844482421875, 0.031646728515625, -0.030487060546875, 0.0069427490234375, -0.0440673828125, 0.0130615234375, 0.034942626953125, 0.0038661956787109375, -0.0718994140625, 0.0280609130859375, -0.0182037353515625, 0.050445556640625, -0.0122222900390625, 0.027587890625, -0.01264190673828125, 0.048492431640625, -0.0171051025390625, -0.057464599609375, -0.0013904571533203125, 0.0501708984375, 0.005168914794921875, 0.00893402099609375, -0.0008993148803710938, -0.0264892578125, 0.0145263671875, 0.02734375, 0.0191497802734375, 0.08197021484375, 0.01216888427734375, -0.03570556640625, -0.020782470703125, -0.00923919677734375, 0.0137176513671875, 0.0081939697265625, 0.0221099853515625, -0.0302276611328125, -0.0269317626953125, -0.01442718505859375, 0.01165008544921875, 0.02703857421875, -0.0276641845703125, -0.1126708984375, -0.003917694091796875, -0.0158233642578125, -0.051910400390625, -0.038360595703125, 0.00797271728515625, -0.0170440673828125, 0.031982421875, -0.01160430908203125, -0.01528167724609375, 0.007190704345703125, 0.0665283203125, -0.0197296142578125, 0.017333984375, 0.019378662109375, -0.0267791748046875, -0.03424072265625, -0.0263824462890625, -0.0092926025390625, -0.0282745361328125, 0.03814697265625, -0.01297760009765625, 0.01947021484375, 0.052764892578125, -0.0195159912109375, -0.0257110595703125, -0.038604736328125, -0.07403564453125, -0.007205963134765625, -0.043121337890625, -0.037139892578125, -0.0186767578125, 0.0428466796875, 0.0648193359375, 0.013946533203125, -0.0233612060546875, 0.0216064453125, -0.047119140625, -0.006481170654296875, -0.0091552734375, -0.00539398193359375, -0.028594970703125, -0.0005450248718261719, 0.007518768310546875, 0.0201873779296875, -0.0469970703125, -0.0006504058837890625, -0.0079803466796875, -0.032257080078125, 0.00412750244140625, 0.006450653076171875, -0.004085540771484375, -0.01146697998046875, 0.06695556640625, -0.0289459228515625, 0.03887939453125, -0.00305938720703125, 0.023284912109375, 0.048187255859375, 0.0209503173828125, 0.02313232421875, 0.007450103759765625, -0.01399993896484375, 0.016937255859375, 0.0146484375, -0.0236358642578125, -0.0056610107421875, -0.02471923828125, 0.0276031494140625, -0.01421356201171875, -0.0325927734375, -0.02301025390625, 0.0162353515625, 0.029754638671875, -0.05670166015625, 0.10919189453125, -0.0019426345825195312, -0.011322021484375, -0.0228729248046875, 0.0357666015625, -0.0345458984375, 0.0016317367553710938, -0.0003769397735595703, -0.0244598388671875, -0.0005712509155273438, 0.02581787109375, -0.00803375244140625, -0.052947998046875, 0.0279083251953125, -0.05584716796875, 0.02001953125, 0.01494598388671875 ]
8d532c369d0d6407ce472afae024258dea91f4b6
Wordpress Stackexchange Q: Does the "promote_users" capability allow someone to create a new admin account? I've created a "Second Administrator" role to avoid the worst case scenario happening on my WordPress site when I have casual web development contractors. However if I give them the 'promote_users' capability, can they promote a random user to an Admin and then circumvent the limitations in place? A: Yes, if you assign 'promote_users' to another user, that user could promote non-site admins to site admin. https://codex.wordpress.org/Roles_and_Capabilities#promote_users
Q: Does the "promote_users" capability allow someone to create a new admin account? I've created a "Second Administrator" role to avoid the worst case scenario happening on my WordPress site when I have casual web development contractors. However if I give them the 'promote_users' capability, can they promote a random user to an Admin and then circumvent the limitations in place? A: Yes, if you assign 'promote_users' to another user, that user could promote non-site admins to site admin. https://codex.wordpress.org/Roles_and_Capabilities#promote_users A: From the docs: * *Enables the "Change role to..." dropdown in the admin user list. This * *does not depend on 'edit_users' capability. So it would appear that yes, a casual contractor could promote a random user to an administrator, but you may be missing the point: If someone is doing development work on your site and they have any of the following access or permissions they can (should they be so inclined) own your site: * *FTP access with write permissions *Remote database access *cPanel or other hosting access *WordPress user access at Editor level or above *A whole bunch of individual permissions including, but not limited to: * *edit_files *install_plugins *unfiltered_html So choose your freelancers with care!
wordpress
{ "language": "en", "length": 200, "provenance": "stackexchange_00019.jsonl.gz:468665", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/240557" }
[ 0.0701904296875, -0.0120391845703125, 0.041412353515625, -0.01922607421875, 0.006656646728515625, -0.0291290283203125, 0.049407958984375, -0.03631591796875, -0.019500732421875, 0.034088134765625, 0.0179443359375, -0.012359619140625, 0.0206298828125, -0.036773681640625, -0.0108795166015625, -0.02752685546875, -0.00647735595703125, 0.05029296875, 0.0222015380859375, -0.022369384765625, 0.0005860328674316406, -0.0325927734375, -0.00952911376953125, 0.014251708984375, -0.0090179443359375, 0.0110321044921875, 0.02081298828125, -0.0440673828125, 0.004611968994140625, -0.02130126953125, -0.003124237060546875, 0.007053375244140625, -0.007587432861328125, -0.007205963134765625, 0.0284881591796875, -0.0308837890625, 0.0017633438110351562, 0.00131988525390625, 0.0202789306640625, -0.01085662841796875, 0.0227813720703125, -0.0054779052734375, 0.01107025146484375, -0.01519775390625, 0.00322723388671875, -0.062408447265625, 0.04058837890625, -0.037628173828125, 0.0293731689453125, -0.0309600830078125, 0.0288848876953125, 0.007465362548828125, 0.052978515625, -0.037445068359375, -0.022735595703125, -0.01325225830078125, 0.00283050537109375, -0.01503753662109375, 0.0293121337890625, -0.007793426513671875, -0.029144287109375, -0.00891876220703125, 0.0273895263671875, -0.045684814453125, 0.014862060546875, 0.0030727386474609375, -0.0258026123046875, 0.017852783203125, -0.053253173828125, -0.008544921875, 0.0198211669921875, -0.044952392578125, -0.0291900634765625, 0.00920867919921875, -0.0182342529296875, -0.0223236083984375, 0.017822265625, -0.0268707275390625, 0.0018444061279296875, 0.0439453125, 0.00858306884765625, 0.0286407470703125, 0.016387939453125, 0.0166778564453125, -0.043548583984375, 0.00589752197265625, -0.02783203125, -0.0164642333984375, 0.0267181396484375, -0.0205078125, 0.000049948692321777344, -0.055511474609375, 0.0065155029296875, 0.059722900390625, -0.006885528564453125, -0.0187530517578125, 0.08477783203125, 0.0697021484375, -0.00983428955078125, -0.038330078125, 0.0233612060546875, -0.060577392578125, -0.0009188652038574219, -0.018890380859375, 0.006603240966796875, 0.0284881591796875, 0.00562286376953125, -0.017333984375, -0.0012922286987304688, 0.0124969482421875, -0.020538330078125, -0.005924224853515625, 0.0014505386352539062, -0.048065185546875, 0.0035152435302734375, 0.033782958984375, 0.01222991943359375, 0.011199951171875, 0.016357421875, -0.004302978515625, -0.00864410400390625, 0.0005621910095214844, 0.041656494140625, -0.019927978515625, -0.005260467529296875, -0.0086822509765625, -0.033050537109375, -0.030670166015625, -0.00501251220703125, -0.01412200927734375, -0.0340576171875, 0.040069580078125, 0.040679931640625, 0.00933074951171875, -0.01739501953125, -0.0009331703186035156, 0.016510009765625, -0.0325927734375, 0.013275146484375, -0.0103912353515625, 0.0289306640625, -0.003070831298828125, 0.0120697021484375, 0.01499176025390625, 0.00617218017578125, 0.031402587890625, -0.0117034912109375, -0.0088043212890625, 0.02020263671875, 0.01528167724609375, -0.0341796875, -0.0638427734375, -0.0308837890625, 0.0283660888671875, 0.0721435546875, 0.00002181529998779297, 0.0128021240234375, -0.0061492919921875, 0.03350830078125, 0.0225067138671875, 0.020477294921875, 0.004604339599609375, 0.037506103515625, -0.04376220703125, -0.05438232421875, -0.01134490966796875, -0.08001708984375, -0.023284912109375, 0.0168914794921875, -0.0450439453125, 0.01393890380859375, 0.005878448486328125, 0.039337158203125, 0.00710296630859375, -0.00417327880859375, 0.0322265625, 0.0413818359375, 0.0250701904296875, 0.01126861572265625, -0.00806427001953125, -0.01412200927734375, -0.0308990478515625, 0.087646484375, -0.03240966796875, 0.005428314208984375, -0.0309600830078125, -0.001491546630859375, -0.0252532958984375, 0.030181884765625, 0.004802703857421875, -0.01447296142578125, 0.0164337158203125, 0.032958984375, 0.00732421875, -0.0243377685546875, -0.05419921875, -0.0031032562255859375, 0.00750732421875, -0.0296173095703125, 0.0138702392578125, 0.064697265625, -0.019622802734375, 0.0198516845703125, 0.002689361572265625, -0.0263519287109375, 0.002834320068359375, -0.0212554931640625, 0.0012388229370117188, 0.02001953125, 0.00635528564453125, -0.0150909423828125, -0.016937255859375, 0.010711669921875, -0.051239013671875, -0.037689208984375, -0.0093994140625, 0.008636474609375, 0.062744140625, 0.01910400390625, 0.0092926025390625, 0.01605224609375, -0.023193359375, 0.0274658203125, 0.0244140625, 0.0252532958984375, -0.0013866424560546875, 0.005573272705078125, -0.004657745361328125, 0.03497314453125, 0.01384735107421875, 0.0199737548828125, -0.0032958984375, 0.0374755859375, 0.0247955322265625, -0.0155792236328125, -0.0209197998046875, -0.019775390625, -0.11328125, 0.0104522705078125, 0.066162109375, 0.019561767578125, 0.0010805130004882812, 0.007671356201171875, 0.041046142578125, 0.01959228515625, -0.031707763671875, 0.0172271728515625, 0.0149383544921875, -0.022003173828125, 0.06622314453125, -0.0108795166015625, 0.034820556640625, -0.0066375732421875, -0.0159912109375, -0.045074462890625, 0.0567626953125, -0.0110015869140625, -0.0012922286987304688, 0.0043182373046875, -0.0264434814453125, 0.0258026123046875, -0.059906005859375, -0.03961181640625, -0.00839996337890625, -0.03631591796875, -0.01120758056640625, 0.00927734375, 0.0137481689453125, 0.0230255126953125, -0.0638427734375, 0.0194549560546875, 0.01641845703125, 0.01190185546875, 0.0020008087158203125, 0.040283203125, 0.051910400390625, -0.047271728515625, -0.00579833984375, 0.063720703125, 0.0161895751953125, -0.0154571533203125, 0.00897979736328125, 0.021575927734375, -0.0182342529296875, -0.001438140869140625, 0.007053375244140625, 0.03521728515625, -0.0215911865234375, -0.035552978515625, -0.068359375, 0.00281524658203125, -0.0298919677734375, -0.06134033203125, 0.01433563232421875, -0.0260162353515625, -0.0418701171875, -0.0266265869140625, -0.038421630859375, 0.0244598388671875, -0.038909912109375, 0.0153961181640625, 0.066162109375, 0.0077362060546875, -0.0124359130859375, -0.0009131431579589844, 0.0379638671875, -0.004459381103515625, 0.0050811767578125, 0.021881103515625, -0.0111846923828125, 0.02716064453125, 0.06451416015625, 0.0225830078125, 0.0261688232421875, 0.00516510009765625, -0.016571044921875, 0.00740814208984375, 0.0213165283203125, 0.00351715087890625, 0.023529052734375, -0.056884765625, -0.042877197265625, -0.00788116455078125, 0.04107666015625, -0.0156402587890625, 0.0172576904296875, 0.0703125, 0.02008056640625, -0.0301971435546875, -0.0018644332885742188, 0.036956787109375, -0.016632080078125, -0.005443572998046875, -0.003101348876953125, 0.00019419193267822266, -0.00919342041015625, 0.0000521540641784668, 0.0229644775390625, -0.005035400390625, -0.03839111328125, -0.00308990478515625, 0.042572021484375, 0.006580352783203125, -0.0029468536376953125, -0.005889892578125, -0.017547607421875, 0.01419830322265625, 0.00250244140625, 0.026947021484375, 0.006412506103515625, -0.0081329345703125, -0.007110595703125, 0.00771331787109375, 0.0197296142578125, 0.035919189453125, -0.0155792236328125, -0.022186279296875, 0.00884246826171875, 0.001251220703125, -0.03179931640625, 0.033538818359375, 0.0159454345703125, -0.0284423828125, -0.05126953125, 0.002338409423828125, -0.0175018310546875, 0.020172119140625, -0.07171630859375, -0.005001068115234375, 0.0106964111328125, -0.0196533203125, 0.000202178955078125, -0.0225830078125, -0.00572967529296875, 0.0006380081176757812, 0.03448486328125, 0.007793426513671875, -0.035064697265625, 0.0282135009765625, -0.003177642822265625, -0.01202392578125, -0.021881103515625, 0.0190277099609375, -0.0157470703125, -0.07208251953125, 0.033172607421875, -0.038421630859375, 0.023834228515625, -0.0626220703125, -0.0206451416015625, -0.0095977783203125, 0.1270751953125, -0.05517578125, -0.02288818359375, 0.0189361572265625, 0.04058837890625, -0.06622314453125, -0.003673553466796875, -0.04803466796875, -0.020050048828125, -0.030303955078125, -0.01116180419921875, 0.000736236572265625, -0.0220794677734375, -0.0178070068359375, 0.0384521484375, -0.01329803466796875, -0.012939453125, 0.0157470703125, -0.0139312744140625, 0.0256195068359375, 0.0036334991455078125, 0.027496337890625, -0.0189208984375, 0.01226043701171875, -0.0430908203125, -0.08154296875, -0.0261383056640625, 0.0087127685546875, 0.04443359375, -0.01232147216796875, 0.0184173583984375, -0.0202789306640625, 0.040069580078125, -0.0034942626953125, 0.0301361083984375, -0.01525115966796875, 0.00461578369140625, 0.0119476318359375, -0.0290069580078125, -0.014739990234375, -0.02813720703125, -0.006740570068359375, -0.03778076171875, -0.004894256591796875, -0.00514984130859375, -0.061187744140625, -0.003505706787109375, -0.049285888671875, -0.002292633056640625, -0.049163818359375, -0.0384521484375, -0.0259857177734375, -0.01264190673828125, -0.00945281982421875, -0.00628662109375, -0.042083740234375, -0.04327392578125, 0.007465362548828125, -0.04486083984375, -0.00457000732421875, 0.01776123046875, 0.0538330078125, 0.0310516357421875, 0.007381439208984375, 0.0242767333984375, -0.026824951171875, 0.019805908203125, -0.005054473876953125, 0.06353759765625, 0.04632568359375, -0.0088348388671875, 0.0197601318359375, 0.00937652587890625, -0.0103607177734375, 0.015716552734375, -0.0054931640625, 0.0057525634765625, -0.0250244140625, 0.0005164146423339844, -0.009124755859375, 0.0236663818359375, 0.006500244140625, -0.00843048095703125, 0.00013911724090576172, -0.02789306640625, 0.026519775390625, 0.024078369140625, -0.017791748046875, -0.047210693359375, -0.04412841796875, 0.0211639404296875, -0.07440185546875, -0.0099029541015625, 0.00505828857421875, -0.00725555419921875, -0.01303863525390625, -0.01212310791015625, 0.01425933837890625, -0.0188751220703125, -0.0172271728515625, -0.0228118896484375, 0.045684814453125, -0.02764892578125, 0.01168060302734375, -0.005397796630859375, -0.0216522216796875, 0.10760498046875, 0.031402587890625, -0.034027099609375, 0.040985107421875, -0.0262603759765625, 0.0191802978515625, 0.0011854171752929688, 0.01297760009765625, 0.0249786376953125, 0.0182037353515625, 0.0027599334716796875, -0.0003592967987060547, 0.0140228271484375, -0.011444091796875, -0.0207061767578125, 0.0199432373046875, 0.00643157958984375, -0.0005288124084472656, -0.01134490966796875, 0.0631103515625, 0.0157012939453125, 0.01441192626953125, -0.0168914794921875, 0.0892333984375, 0.061065673828125, -0.034027099609375, -0.0031681060791015625, 0.06170654296875, 0.002201080322265625, -0.0587158203125, -0.00701141357421875, -0.0074920654296875, 0.00835418701171875, 0.0216064453125, 0.0158538818359375, 0.04583740234375, 0.027435302734375, -0.0268096923828125, -0.0256805419921875, -0.0078125, 0.000751495361328125, -0.009124755859375, -0.01361846923828125, -0.0227508544921875, 0.006954193115234375, 0.0239105224609375, -0.00823974609375, -0.0199432373046875, 0.0229949951171875, -0.042999267578125, 0.018463134765625, -0.008941650390625, -0.002727508544921875, -0.002208709716796875, -0.00638580322265625, -0.0352783203125, -0.0289154052734375, -0.0178985595703125, 0.027252197265625, 0.017547607421875, -0.0144805908203125, -0.0330810546875, 0.03717041015625, 0.02569580078125, -0.017181396484375, -0.06768798828125, 0.03765869140625, -0.083251953125, -0.0247955322265625, 0.056884765625, 0.003231048583984375, -0.039703369140625, -0.0037250518798828125, -0.055328369140625, -0.0172271728515625, -0.07421875, -0.03326416015625, -0.045684814453125, 0.0182037353515625, 0.0280609130859375, 0.007572174072265625, 0.01369476318359375, -0.03570556640625, -0.02447509765625, 0.0193634033203125, 0.042144775390625, 0.02490234375, -0.0296173095703125, 0.0469970703125, 0.024322509765625, 0.0230712890625, 0.01105499267578125, 0.0325927734375, 0.0281829833984375, -0.0235748291015625, 0.00775909423828125, -0.0011138916015625, -0.032928466796875, -0.0263824462890625, -0.0165863037109375, -0.0143280029296875, 0.0298919677734375, -0.02166748046875, 0.033782958984375, 0.005878448486328125, 0.01122283935546875, -0.01180267333984375, -0.050689697265625, -0.0174560546875, 0.00646209716796875, -0.014678955078125, -0.047088623046875, 0.04229736328125, 0.009613037109375, 0.002727508544921875, 0.01384735107421875, -0.0465087890625, 0.011871337890625, 0.04718017578125, -0.0020313262939453125, 0.00554656982421875, 0.040069580078125, -0.01373291015625, 0.0255279541015625, 0.037322998046875, 0.02093505859375, 0.0191802978515625, -0.033599853515625, 0.0030670166015625, 0.0078277587890625, 0.00897216796875, -0.0258026123046875, 0.00138092041015625, -0.005924224853515625, -0.00792694091796875, 0.01239013671875, 0.09130859375, 0.0662841796875, -0.12890625, 0.00775909423828125, 0.01435089111328125, 0.0016412734985351562, 0.0059356689453125, 0.00795745849609375, -0.0185699462890625, -0.049896240234375, 0.043792724609375, -0.03802490234375, -0.009307861328125, 0.006732940673828125, -0.02154541015625, -0.0213470458984375, 0.0006952285766601562, 0.010467529296875, 0.01154327392578125, 0.0279083251953125, 0.00013685226440429688, -0.0249481201171875, 0.0215911865234375, -0.016357421875, -0.007694244384765625, -0.0101776123046875, -0.032989501953125, -0.057586669921875, -0.0307769775390625, -0.0263671875, -0.004985809326171875, -0.03326416015625, 0.005161285400390625, 0.0784912109375, 0.02960205078125, 0.00817108154296875, -0.03955078125, 0.0105133056640625, 0.031768798828125, -0.041412353515625, -0.03424072265625, 0.02313232421875, 0.007556915283203125, 0.0151824951171875, 0.035064697265625, -0.0022296905517578125, -0.0765380859375, -0.011444091796875, 0.0122833251953125, 0.054229736328125, 0.021820068359375, -0.049102783203125, 0.0218048095703125, 0.00771331787109375, -0.019287109375, 0.0251312255859375, -0.0275115966796875, -0.08160400390625, -0.07305908203125, 0.005901336669921875, -0.0711669921875, 0.04376220703125, 0.053680419921875, -0.0186767578125, 0.04901123046875, 0.004352569580078125, -0.0135498046875, 0.0267791748046875, 0.0176544189453125, -0.04400634765625, 0.006153106689453125, -0.037200927734375, 0.04425048828125, -0.01203155517578125, 0.0294647216796875, -0.036590576171875, 0.00550079345703125, 0.00341796875, 0.0028591156005859375, 0.033905029296875, 0.0301055908203125, -0.051025390625, -0.0002694129943847656, 0.01467132568359375, -0.04144287109375, -0.026885986328125, 0.09539794921875, 0.006557464599609375, -0.0017986297607421875, 0.043121337890625, 0.007106781005859375, 0.04107666015625, -0.01641845703125, -0.0255126953125, 0.0086822509765625, 0.000514984130859375, -0.00014448165893554688, 0.027008056640625, -0.020843505859375, -0.07440185546875, 0.0217742919921875, 0.0419921875, -0.0163726806640625, -0.03619384765625, 0.0199432373046875, -0.0144805908203125, 0.0238189697265625, 0.0335693359375, -0.03656005859375, 0.04217529296875, 0.01374053955078125, 0.0001373291015625, 0.035491943359375, 0.0207672119140625, -0.0028362274169921875, 0.00559234619140625, 0.01556396484375, 0.02520751953125, -0.0157318115234375, 0.031951904296875, 0.00287628173828125, 0.02593994140625, -0.04144287109375, -0.0104217529296875, 0.0208892822265625, 0.0545654296875, -0.02130126953125, -0.022430419921875, 0.0018014907836914062, 0.02197265625, 0.0289764404296875, 0.00589752197265625, 0.0308685302734375, 0.031036376953125, 0.05908203125, -0.06378173828125, 0.0211639404296875, 0.04986572265625, 0.011871337890625, -0.023101806640625, -0.00836181640625, -0.0207061767578125, 0.0196380615234375, -0.03509521484375, -0.0204620361328125, 0.043914794921875, 0.0328369140625, 0.031402587890625, 0.006702423095703125, 0.042236328125, -0.01224517822265625, 0.0177459716796875, 0.0259857177734375, -0.0185394287109375, -0.02716064453125, -0.01526641845703125, -0.06451416015625, -0.011749267578125, 0.022674560546875, -0.032379150390625, -0.01233673095703125, -0.01055908203125, 0.03948974609375, 0.01042938232421875, -0.03253173828125, 0.0309600830078125, -0.015045166015625, 0.04852294921875, -0.029449462890625, 0.0008916854858398438, -0.026641845703125, -0.047760009765625, -0.026397705078125, -0.0279693603515625, 0.0374755859375, 0.0035572052001953125, 0.0008215904235839844, 0.0017557144165039062, -0.039794921875, 0.02764892578125, -0.007076263427734375, 0.052734375, 0.018280029296875, -0.08624267578125, -0.02294921875, -0.007251739501953125, -0.033935546875, 0.0223388671875, 0.040771484375, -0.052093505859375, 0.05126953125, 0.017852783203125, -0.03765869140625, 0.0080108642578125, 0.016082763671875, 0.0291595458984375, 0.0181884765625, -0.0108489990234375, 0.0031890869140625, 0.0010223388671875, 0.0005559921264648438, 0.005340576171875, 0.034271240234375, 0.012939453125, 0.0556640625, -0.036224365234375, 0.0200347900390625, -0.052764892578125, 0.00820159912109375, -0.0306243896484375, -0.048675537109375, 0.02154541015625, 0.0266265869140625, -0.0155181884765625, -0.001811981201171875, -0.07501220703125, 0.0537109375, 0.015594482421875, 0.007965087890625, 0.029052734375, 0.0355224609375, -0.004669189453125, -0.007251739501953125, 0.033233642578125, -0.03692626953125, -0.0684814453125, -0.08966064453125, 0.0121002197265625, 0.0063323974609375, -0.012451171875, -0.04937744140625, 0.0256500244140625, -0.053924560546875, -0.04443359375, -0.019073486328125, -0.049560546875, -0.06536865234375, 0.006572723388671875, 0.020263671875, 0.0179595947265625, 0.06549072265625, -0.0011854171752929688, 0.0017547607421875, 0.04583740234375, -0.004314422607421875, 0.04290771484375, -0.0379638671875, -0.00141143798828125, 0.005290985107421875, 0.0269927978515625, -0.013580322265625, -0.01184844970703125, -0.01398468017578125, -0.01336669921875, 0.01320648193359375, -0.00008726119995117188, -0.03179931640625, -0.034759521484375, -0.0024471282958984375, 0.0114593505859375, -0.002773284912109375, -0.032135009765625, -0.050567626953125, 0.03277587890625, 0.040313720703125, 0.0211639404296875, -0.0816650390625, 0.087890625, -0.039459228515625, 0.01291656494140625, 0.003936767578125, 0.01070404052734375, 0.00737762451171875, 0.00019347667694091797, -0.04541015625, -0.018341064453125, -0.0251312255859375, 0.01274871826171875, -0.01959228515625, 0.0335693359375, 0.018829345703125, -0.01324462890625, 0.0248870849609375, 0.0504150390625, -0.01305389404296875, 0.10772705078125, -0.04425048828125, -0.0169830322265625, -0.0173797607421875, 0.01788330078125, -0.0017833709716796875, -0.049652099609375, 0.003566741943359375, -0.011474609375, -0.020355224609375, -0.0124969482421875, 0.04876708984375, 0.0694580078125, 0.00510406494140625, -0.04180908203125, 0.0221710205078125, -0.00653076171875, -0.0298919677734375, -0.0193939208984375, 0.0101470947265625, -0.017303466796875, 0.015838623046875, -0.0004470348358154297, -0.00922393798828125, -0.01473236083984375, 0.0144805908203125, 0.006191253662109375, -0.0213470458984375, -0.00812530517578125, 0.018585205078125, -0.054718017578125, 0.0262451171875, 0.016693115234375, -0.031707763671875, 0.032073974609375, 0.01374053955078125, 0.0151214599609375, 0.0780029296875, -0.004093170166015625, -0.0303955078125, -0.0256500244140625, -0.073486328125, -0.0224456787109375, -0.01383209228515625, -0.02496337890625, -0.038848876953125, 0.055450439453125, 0.04095458984375, 0.01261138916015625, 0.005054473876953125, -0.009857177734375, -0.0215301513671875, 0.004779815673828125, -0.0113372802734375, 0.0181732177734375, -0.08221435546875, -0.0224456787109375, 0.0299530029296875, -0.0218505859375, 0.0005145072937011719, -0.00691986083984375, -0.039215087890625, 0.00418853759765625, 0.00037407875061035156, 0.009124755859375, -0.037841796875, 0.0156402587890625, -0.005859375, -0.0196685791015625, -0.06951904296875, -0.0050811767578125, 0.01277923583984375, -0.066162109375, -0.028045654296875, -0.00537872314453125, -0.021942138671875, -0.0034503936767578125, 0.031585693359375, -0.0009794235229492188, 0.036346435546875, -0.0193939208984375, -0.01445770263671875, 0.0187530517578125, 0.019989013671875, 0.003780364990234375, 0.025238037109375, -0.018096923828125, 0.0762939453125, -0.0057373046875, 0.03369140625, -0.01407623291015625, 0.040679931640625, -0.0119171142578125, 0.036529541015625, -0.0258331298828125, -0.0011816024780273438, 0.003185272216796875, -0.01058197021484375, -0.0007410049438476562, 0.050201416015625, 0.004314422607421875, -0.02569580078125, 0.016754150390625, 0.064453125, 0.04913330078125, 0.004924774169921875 ]
280d8aa0043a7c3b9a9d62de9759176dc7343742
Wordpress Stackexchange Q: Using '$' instead of 'jQuery' in WordPress jQuery included with WordPress is in compatibility mode. To avoid conflicts with other libraries we can not use the '$' shortcut for 'jQuery'. To use the '$' sign we use: jQuery(document).ready(function($) { $('#myid').css({'background': 'black', 'color':'white'}); }); This works. But my question is how to do the same with window load. I have been facing this problem since last few projects. So, thought better to make the concept clear. jQuery(window).load(function($) { $('#myid').css({'background': 'black', 'color':'white'}); }); With this I get an error that says : "$ is not a function". So, I am unable to use $ inside of the window.load code block. So, can anyone help how I can use the $ shortcut inside window.load? A: Using a self invoking anonymous function that passes the jQuery object will do the trick: (function($){ $(window).load(function(){ $('#myid').css({'background': 'black', 'color':'white'}); }); })(jQuery); //Passing the jQuery object as a first argument
Q: Using '$' instead of 'jQuery' in WordPress jQuery included with WordPress is in compatibility mode. To avoid conflicts with other libraries we can not use the '$' shortcut for 'jQuery'. To use the '$' sign we use: jQuery(document).ready(function($) { $('#myid').css({'background': 'black', 'color':'white'}); }); This works. But my question is how to do the same with window load. I have been facing this problem since last few projects. So, thought better to make the concept clear. jQuery(window).load(function($) { $('#myid').css({'background': 'black', 'color':'white'}); }); With this I get an error that says : "$ is not a function". So, I am unable to use $ inside of the window.load code block. So, can anyone help how I can use the $ shortcut inside window.load? A: Using a self invoking anonymous function that passes the jQuery object will do the trick: (function($){ $(window).load(function(){ $('#myid').css({'background': 'black', 'color':'white'}); }); })(jQuery); //Passing the jQuery object as a first argument A: This is because window load event is different than Jquery load function. Note also this function can take multiple parameters. (function(wordpress, $){ $(window).load(function(){ var emoji = wordpress.emoji; // do somehting with emoji ;) console.log(emoji); $('body').css({'background': 'black', 'color':'white'}); }); })(wp, jQuery);
wordpress
{ "language": "en", "length": 194, "provenance": "stackexchange_00019.jsonl.gz:468702", "question_score": "4", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/240658" }
[ 0.0400390625, 0.0130615234375, -0.021728515625, -0.066162109375, 0.0136871337890625, -0.0250396728515625, 0.0007238388061523438, 0.0010471343994140625, -0.016815185546875, -0.017364501953125, -0.054107666015625, 0.021026611328125, -0.055877685546875, -0.007656097412109375, 0.01425933837890625, -0.039306640625, 0.044952392578125, -0.06781005859375, -0.02349853515625, -0.0218353271484375, 0.01043701171875, -0.0011091232299804688, 0.037261962890625, 0.040130615234375, 0.06591796875, -0.07000732421875, 0.062347412109375, 0.0016880035400390625, 0.03692626953125, 0.0015878677368164062, 0.047698974609375, -0.01371002197265625, 0.0028209686279296875, 0.030120849609375, -0.0067291259765625, 0.0240936279296875, 0.029083251953125, 0.0229339599609375, 0.027740478515625, 0.00901031494140625, 0.023162841796875, -0.0110931396484375, -0.0155181884765625, 0.01267242431640625, -0.034027099609375, -0.03363037109375, 0.045013427734375, -0.00637054443359375, 0.00962066650390625, -0.021575927734375, 0.008026123046875, 0.0625, 0.02996826171875, -0.00995635986328125, -0.0090484619140625, 0.0293426513671875, -0.0287017822265625, -0.035980224609375, 0.01534271240234375, 0.10028076171875, 0.024993896484375, -0.0035076141357421875, -0.02362060546875, -0.07733154296875, -0.0082244873046875, -0.00501251220703125, -0.0032520294189453125, 0.0036067962646484375, -0.032470703125, 0.0037746429443359375, 0.02960205078125, -0.0298004150390625, -0.0272979736328125, -0.0216064453125, -0.021209716796875, -0.0088653564453125, 0.032440185546875, -0.0261077880859375, -0.021484375, 0.02044677734375, 0.03875732421875, 0.00870513916015625, -0.03863525390625, 0.02862548828125, 0.00848388671875, 0.061614990234375, 0.000988006591796875, -0.054840087890625, -0.023681640625, -0.0287017822265625, -0.030548095703125, 0.021087646484375, -0.0019102096557617188, -0.044097900390625, -0.04705810546875, -0.01184844970703125, -0.058135986328125, 0.018035888671875, 0.003597259521484375, 0.05047607421875, -0.022125244140625, 0.009765625, 0.023773193359375, -0.051116943359375, -0.025390625, 0.03509521484375, 0.038116455078125, 0.07159423828125, 0.007427215576171875, 0.003841400146484375, -0.03363037109375, -0.01517486572265625, 0.01338958740234375, 0.027984619140625, -0.0521240234375, -0.01018524169921875, -0.012603759765625, -0.03399658203125, -0.0257720947265625, -0.01155853271484375, 0.01059722900390625, 0.018524169921875, 0.01178741455078125, 0.0095062255859375, -0.009521484375, 0.00859832763671875, -0.0010776519775390625, -0.05206298828125, -0.049224853515625, 0.0036907196044921875, -0.0185699462890625, 0.038543701171875, 0.056732177734375, 0.023162841796875, 0.006885528564453125, -0.0172271728515625, 0.0291748046875, -0.01108551025390625, 0.006702423095703125, -0.015716552734375, 0.00231170654296875, -0.0168304443359375, 0.003147125244140625, 0.01522064208984375, -0.0271148681640625, 0.015625, 0.006946563720703125, 0.01290130615234375, 0.00786590576171875, -0.06842041015625, 0.0192718505859375, -0.0254364013671875, 0.0186920166015625, 0.0523681640625, -0.031158447265625, 0.00612640380859375, 0.06329345703125, -0.044830322265625, -0.024322509765625, -0.0718994140625, 0.01293182373046875, 0.0167083740234375, 0.0131988525390625, 0.0034275054931640625, 0.00408172607421875, -0.039031982421875, 0.0113372802734375, 0.013519287109375, 0.02154541015625, 0.022186279296875, -0.00922393798828125, -0.020904541015625, 0.005283355712890625, 0.0223388671875, 0.013916015625, 0.016143798828125, 0.0153656005859375, 0.0195465087890625, 0.03179931640625, -0.01715087890625, -0.041046142578125, -0.04425048828125, 0.08740234375, -0.042572021484375, -0.0275115966796875, 0.015869140625, 0.02056884765625, 0.05975341796875, 0.00312042236328125, 0.0166015625, 0.0277862548828125, 0.0062713623046875, -0.00565338134765625, 0.0020084381103515625, -0.008941650390625, -0.004634857177734375, -0.0302276611328125, 0.0181121826171875, -0.0109405517578125, 0.0035648345947265625, 0.04541015625, -0.037078857421875, 0.014678955078125, -0.03857421875, -0.058807373046875, -0.0204925537109375, -0.0191497802734375, 0.03228759765625, 0.0010194778442382812, -0.01129913330078125, 0.01085662841796875, -0.0010042190551757812, -0.005931854248046875, -0.061004638671875, -0.057281494140625, 0.03466796875, -0.03125, 0.03179931640625, -0.00318145751953125, 0.042236328125, 0.023468017578125, -0.0323486328125, 0.02374267578125, 0.02197265625, 0.0074310302734375, 0.007640838623046875, -0.008453369140625, -0.019134521484375, 0.005779266357421875, 0.0017223358154296875, 0.0219879150390625, 0.03778076171875, 0.032958984375, 0.08087158203125, -0.0034046173095703125, -0.001277923583984375, 0.002315521240234375, -0.01444244384765625, 0.004638671875, 0.020721435546875, 0.032379150390625, 0.00762176513671875, -0.004680633544921875, -0.013580322265625, 0.056182861328125, -0.00893402099609375, 0.011993408203125, -0.019622802734375, 0.0018911361694335938, -0.038360595703125, 0.0164031982421875, -0.0273284912109375, 0.04150390625, -0.025970458984375, 0.0186614990234375, 0.022918701171875, 0.024505615234375, 0.019287109375, -0.0010547637939453125, 0.0241241455078125, -0.0283050537109375, 0.00853729248046875, 0.00762939453125, -0.0100555419921875, 0.0104217529296875, -0.0175933837890625, 0.032012939453125, 0.032745361328125, 0.027587890625, -0.02117919921875, 0.00479888916015625, -0.06292724609375, -0.01285552978515625, 0.019287109375, 0.036102294921875, 0.0301361083984375, -0.0194091796875, -0.013885498046875, -0.014312744140625, 0.034027099609375, -0.0119171142578125, 0.0026378631591796875, -0.006374359130859375, 0.002201080322265625, 0.0006895065307617188, -0.0362548828125, 0.0216827392578125, 0.0072479248046875, 0.04290771484375, 0.034271240234375, 0.052734375, 0.0257568359375, 0.0177001953125, 0.0256500244140625, 0.01244354248046875, -0.0142669677734375, 0.11944580078125, 0.027496337890625, -0.006656646728515625, 0.0178070068359375, 0.0216217041015625, 0.00894927978515625, 0.007572174072265625, -0.0259552001953125, -0.00836181640625, 0.038970947265625, 0.015167236328125, -0.031341552734375, -0.0299835205078125, -0.014007568359375, -0.01297760009765625, 0.01824951171875, 0.023895263671875, 0.0274200439453125, -0.0049896240234375, -0.043548583984375, -0.02276611328125, 0.0035037994384765625, -0.137451171875, -0.1351318359375, -0.0089111328125, -0.1251220703125, 0.023529052734375, 0.004302978515625, -0.06365966796875, -0.015960693359375, 0.048858642578125, 0.02130126953125, -0.01078033447265625, -0.031646728515625, -0.016204833984375, -0.05181884765625, -0.06451416015625, -0.0244140625, 0.0121002197265625, 0.006946563720703125, 0.01458740234375, -0.0012979507446289062, 0.0178070068359375, -0.0208587646484375, 0.0301361083984375, 0.04522705078125, -0.014068603515625, -0.0009217262268066406, 0.044891357421875, -0.060943603515625, -0.0264892578125, -0.00769805908203125, 0.02618408203125, 0.0274810791015625, -0.016204833984375, -0.00516510009765625, -0.0369873046875, -0.01216888427734375, -0.0228424072265625, 0.087646484375, 0.06207275390625, -0.02862548828125, 0.0134735107421875, -0.051788330078125, -0.0400390625, -0.012725830078125, -0.06561279296875, -0.01416015625, 0.044708251953125, 0.01271820068359375, -0.00010919570922851562, -0.0128326416015625, 0.038787841796875, 0.00836181640625, -0.0001838207244873047, -0.0226593017578125, 0.0537109375, 0.002475738525390625, 0.0628662109375, -0.03997802734375, 0.0433349609375, -0.027313232421875, -0.004856109619140625, 0.0174102783203125, -0.035491943359375, 0.0197906494140625, -0.06414794921875, 0.019500732421875, 0.005298614501953125, 0.01097869873046875, 0.0160980224609375, 0.039276123046875, -0.011474609375, 0.0006937980651855469, -0.0217132568359375, -0.0035800933837890625, 0.01416778564453125, 0.012603759765625, 0.035980224609375, 0.0087890625, -0.08184814453125, -0.06787109375, -0.09674072265625, 0.0138397216796875, -0.06927490234375, 0.0237274169921875, -0.008544921875, -0.00908660888671875, -0.02191162109375, 0.035675048828125, -0.0277862548828125, -0.040618896484375, 0.0207061767578125, 0.0240936279296875, -0.01332855224609375, -0.0146026611328125, -0.01374053955078125, -0.0180816650390625, -0.011627197265625, 0.0038299560546875, -0.08575439453125, -0.019287109375, -0.020111083984375, 0.07086181640625, 0.0098114013671875, -0.007694244384765625, 0.013092041015625, 0.08062744140625, -0.0126800537109375, 0.056396484375, 0.01334381103515625, 0.017669677734375, 0.0236663818359375, -0.03656005859375, 0.01203155517578125, -0.0247650146484375, 0.0302581787109375, 0.0023345947265625, -0.06890869140625, -0.0391845703125, -0.037872314453125, -0.0214385986328125, 0.0199737548828125, -0.046539306640625, -0.02752685546875, -0.0236358642578125, -0.0223541259765625, 0.0231170654296875, -0.024505615234375, 0.00006312131881713867, -0.01910400390625, -0.032958984375, 0.01971435546875, 0.022552490234375, 0.01528167724609375, -0.0250396728515625, 0.0235443115234375, 0.020355224609375, -0.0155181884765625, 0.044647216796875, -0.0191192626953125, 0.046875, -0.0270538330078125, 0.00021266937255859375, 0.0018091201782226562, -0.04473876953125, 0.07763671875, -0.0045623779296875, 0.0198516845703125, -0.022186279296875, 0.086669921875, -0.02459716796875, -0.024139404296875, 0.04644775390625, -0.0018835067749023438, -0.05731201171875, 0.006381988525390625, 0.02496337890625, 0.0209808349609375, 0.04156494140625, -0.043243408203125, -0.0113677978515625, -0.00994110107421875, 0.036895751953125, -0.02459716796875, 0.00024378299713134766, -0.039398193359375, 0.06536865234375, 0.0367431640625, -0.005645751953125, 0.04217529296875, 0.04241943359375, -0.0235137939453125, 0.037109375, 0.0173187255859375, 0.02337646484375, 0.00232696533203125, 0.05218505859375, -0.0113983154296875, -0.025970458984375, -0.017578125, 0.06451416015625, 0.0191802978515625, -0.032928466796875, -0.0150299072265625, -0.00605010986328125, 0.04547119140625, -0.00789642333984375, 0.0316162109375, 0.0296630859375, 0.01183319091796875, 0.01201629638671875, 0.00047969818115234375, 0.05279541015625, -0.021087646484375, -0.0179901123046875, 0.029998779296875, 0.029144287109375, -0.0323486328125, -0.04766845703125, 0.0311737060546875, 0.0386962890625, -0.04559326171875, -0.00021409988403320312, 0.03521728515625, -0.061553955078125, 0.0689697265625, -0.0255126953125, 0.00771331787109375, 0.0216827392578125, 0.0526123046875, 0.00821685791015625, -0.053192138671875, -0.028411865234375, 0.0037994384765625, 0.053314208984375, -0.0548095703125, -0.01403045654296875, 0.030487060546875, -0.003154754638671875, -0.0245819091796875, -0.00666046142578125, -0.053192138671875, 0.0020389556884765625, -0.047210693359375, -0.0267181396484375, 0.050811767578125, 0.0531005859375, 0.0201568603515625, -0.013092041015625, 0.033233642578125, 0.01406097412109375, -0.003215789794921875, 0.009765625, -0.018798828125, -0.0160369873046875, 0.0472412109375, 0.007419586181640625, -0.0302886962890625, -0.0216522216796875, 0.00030112266540527344, -0.01393890380859375, 0.007843017578125, 0.034820556640625, 0.006175994873046875, 0.0389404296875, -0.054351806640625, -0.004657745361328125, -0.033599853515625, -0.01468658447265625, 0.04962158203125, 0.0251312255859375, 0.006549835205078125, -0.01727294921875, -0.0533447265625, -0.0479736328125, -0.05157470703125, -0.0118408203125, -0.056396484375, 0.023345947265625, -0.039215087890625, 0.00769805908203125, -0.024658203125, 0.004131317138671875, -0.054718017578125, 0.0406494140625, 0.04400634765625, 0.0316162109375, -0.030792236328125, 0.0248870849609375, 0.008392333984375, 0.0224151611328125, 0.0141754150390625, 0.0250091552734375, 0.03228759765625, -0.0302886962890625, -0.0223541259765625, -0.05987548828125, 0.0258941650390625, 0.005970001220703125, -0.00011008977890014648, 0.04107666015625, 0.06011962890625, 0.02587890625, 0.044403076171875, 0.001483917236328125, 0.0095062255859375, -0.0191650390625, -0.024078369140625, -0.0282745361328125, 0.044219970703125, -0.0070648193359375, 0.0234222412109375, 0.041473388671875, -0.0249481201171875, -0.0177001953125, -0.00705718994140625, -0.015625, 0.0135955810546875, -0.0031299591064453125, -0.01195526123046875, 0.0256805419921875, 0.039642333984375, -0.023956298828125, 0.0158538818359375, 0.00943756103515625, -0.01018524169921875, 0.0216064453125, 0.033172607421875, -0.003429412841796875, -0.006999969482421875, 0.0290679931640625, 0.00565338134765625, -0.01422119140625, -0.0009169578552246094, -0.00894927978515625, -0.0172882080078125, 0.045257568359375, 0.04254150390625, -0.0305633544921875, -0.032379150390625, 0.011199951171875, -0.0255584716796875, -0.007007598876953125, -0.017181396484375, -0.0057373046875, -0.0214385986328125, 0.04632568359375, 0.02947998046875, -0.0178375244140625, 0.031036376953125, 0.027679443359375, -0.004241943359375, -0.0155792236328125, 0.001983642578125, -0.0079803466796875, -0.01702880859375, -0.01436614990234375, 0.01415252685546875, -0.006061553955078125, -0.00611114501953125, 0.007587432861328125, 0.00156402587890625, -0.034088134765625, -0.046783447265625, 0.003177642822265625, -0.0037059783935546875, -0.04833984375, 0.0264892578125, 0.0182647705078125, 0.004657745361328125, 0.0506591796875, -0.0162811279296875, 0.0302886962890625, 0.015380859375, 0.0300140380859375, 0.05743408203125, -0.006465911865234375, 0.00742340087890625, -0.01428985595703125, -0.025177001953125, 0.00270843505859375, 0.0009889602661132812, -0.0176544189453125, 0.005054473876953125, -0.0229339599609375, 0.004032135009765625, -0.050689697265625, 0.0095367431640625, 0.030426025390625, 0.0145721435546875, -0.00901031494140625, 0.0259246826171875, 0.0009064674377441406, -0.03900146484375, -0.0180816650390625, 0.0209197998046875, -0.050872802734375, -0.031402587890625, 0.01030731201171875, -0.03271484375, 0.0838623046875, -0.0193634033203125, 0.00984954833984375, 0.01020050048828125, 0.036712646484375, -0.003910064697265625, 0.03369140625, -0.0229034423828125, -0.004650115966796875, -0.004352569580078125, 0.0177764892578125, -0.038116455078125, 0.00151824951171875, -0.0161590576171875, 0.004810333251953125, -0.0230255126953125, -0.01538848876953125, -0.00962066650390625, 0.0008959770202636719, 0.01812744140625, 0.0240020751953125, 0.0199432373046875, 0.01024627685546875, -0.005504608154296875, -0.0069732666015625, 0.0044708251953125, -0.0106658935546875, 0.0162353515625, -0.01378631591796875, -0.035552978515625, 0.0188751220703125, 0.0252838134765625, 0.0254974365234375, 0.034332275390625, 0.003200531005859375, -0.056640625, 0.028076171875, 0.0421142578125, 0.031982421875, 0.0180206298828125, 0.0178985595703125, -0.0034656524658203125, -0.0193634033203125, -0.042694091796875, -0.01064300537109375, 0.0233917236328125, -0.01061248779296875, -0.025665283203125, -0.023895263671875, -0.007843017578125, -0.008392333984375, -0.0021209716796875, -0.036224365234375, 0.031463623046875, 0.021148681640625, 0.03955078125, 0.0309906005859375, 0.03424072265625, -0.0243682861328125, -0.0026702880859375, 0.01398468017578125, 0.04425048828125, -0.037261962890625, -0.0242156982421875, -0.0037746429443359375, -0.007656097412109375, 0.0185546875, -0.01523590087890625, 0.023834228515625, -0.0131378173828125, -0.0026702880859375, -0.0294342041015625, 0.00466156005859375, 0.03765869140625, -0.00044655799865722656, 0.00818634033203125, 0.0162506103515625, -0.0272674560546875, 0.0133209228515625, -0.0284271240234375, -0.01003265380859375, 0.016265869140625, 0.0275115966796875, 0.0105438232421875, 0.045989990234375, 0.01287078857421875, -0.0118865966796875, -0.0047760009765625, 0.01520538330078125, 0.057586669921875, -0.0294036865234375, 0.0191497802734375, 0.0218963623046875, 0.012176513671875, 0.003917694091796875, 0.01168060302734375, 0.0076141357421875, 0.060546875, 0.0253753662109375, -0.065673828125, -0.00714874267578125, 0.0270538330078125, -0.0306396484375, 0.0239105224609375, 0.004192352294921875, 0.05078125, 0.00833892822265625, -0.00421905517578125, -0.034027099609375, 0.08404541015625, 0.00194549560546875, -0.0284271240234375, 0.0430908203125, 0.0023040771484375, 0.006542205810546875, 0.00318145751953125, 0.01395416259765625, 0.03985595703125, 0.0145111083984375, -0.04766845703125, -0.01360321044921875, -0.01294708251953125, -0.0275115966796875, 0.04254150390625, 0.03778076171875, -0.0108184814453125, 0.031646728515625, 0.0535888671875, -0.034759521484375, -0.00916290283203125, 0.0479736328125, 0.01479339599609375, -0.0176849365234375, 0.02099609375, 0.009429931640625, -0.033966064453125, 0.0031337738037109375, -0.01364898681640625, -0.0168914794921875, 0.005615234375, 0.03204345703125, 0.0138397216796875, -0.007080078125, 0.0335693359375, 0.02740478515625, 0.010498046875, 0.022369384765625, -0.032806396484375, -0.01238250732421875, 0.043121337890625, -0.007221221923828125, 0.00495147705078125, 0.0765380859375, -0.0160980224609375, 0.03753662109375, 0.0283966064453125, -0.027313232421875, 0.01336669921875, 0.04888916015625, 0.06256103515625, -0.00844573974609375, -0.0333251953125, -0.007843017578125, 0.01342010498046875, 0.01739501953125, 0.017974853515625, -0.01837158203125, 0.020538330078125, 0.04803466796875, 0.0011644363403320312, 0.013458251953125, -0.0087127685546875, -0.0011386871337890625, 0.01499176025390625, 0.0271148681640625, -0.040374755859375, 0.029632568359375, -0.004329681396484375, -0.00954437255859375, 0.0297088623046875, 0.0027618408203125, 0.0076751708984375, -0.047943115234375, 0.048919677734375, 0.049163818359375, 0.054718017578125, -0.00555419921875, 0.00963592529296875, 0.045440673828125, -0.01255035400390625, -0.0185394287109375, -0.0165557861328125, -0.0158538818359375, -0.0012979507446289062, -0.00005811452865600586, 0.0047454833984375, 0.0352783203125, -0.0018358230590820312, 0.021759033203125, -0.0287017822265625, 0.0027446746826171875, 0.001140594482421875, -0.049774169921875, 0.0152435302734375, -0.0023059844970703125, 0.01715087890625, -0.041656494140625, 0.0207366943359375, -0.038787841796875, -0.02838134765625, -0.0261383056640625, -0.0555419921875, -0.032623291015625, 0.0850830078125, -0.009674072265625, 0.00873565673828125, 0.018157958984375, -0.0062255859375, 0.0276641845703125, 0.00506591796875, 0.0310211181640625, 0.05157470703125, 0.0005817413330078125, -0.01812744140625, 0.017181396484375, 0.03289794921875, -0.0267333984375, -0.0640869140625, -0.0157928466796875, -0.01171112060546875, 0.046051025390625, -0.0243988037109375, -0.01239776611328125, -0.0093231201171875, -0.052947998046875, -0.060516357421875, 0.01123809814453125, 0.015899658203125, -0.044097900390625, 0.0207977294921875, -0.0063323974609375, 0.006591796875, -0.0450439453125, -0.004741668701171875, -0.05474853515625, -0.0255126953125, 0.005947113037109375, 0.0114898681640625, 0.00975799560546875, -0.0006775856018066406, 0.012969970703125, -0.07568359375, 0.0152740478515625, -0.01497650146484375, 0.0015249252319335938, -0.052825927734375, 0.043731689453125, -0.00838470458984375, 0.0250701904296875, 0.0009360313415527344, 0.0038928985595703125, 0.0215911865234375, 0.0024051666259765625, -0.01418304443359375, -0.046630859375, -0.005504608154296875, -0.01496124267578125, 0.06951904296875, -0.0166778564453125, 0.0039520263671875, -0.018157958984375, -0.045684814453125, -0.006771087646484375, 0.0179443359375, -0.0157012939453125, 0.0155181884765625, -0.06011962890625, 0.002796173095703125, -0.00902557373046875, -0.0010557174682617188, 0.01079559326171875, -0.0108184814453125, -0.0271453857421875, 0.00003594160079956055, -0.0145721435546875, -0.0119171142578125, -0.039306640625, 0.01255035400390625, 0.09588623046875, -0.0404052734375, 0.00875091552734375, 0.053741455078125, -0.01027679443359375, 0.07373046875, 0.06884765625, -0.030792236328125, 0.006183624267578125, -0.0025234222412109375, -0.0013790130615234375, -0.0012111663818359375, -0.01258087158203125, -0.0028400421142578125, 0.01363372802734375, 0.00882720947265625, -0.0218658447265625, -0.02996826171875, -0.035400390625, 0.034576416015625, -0.01812744140625, -0.044525146484375, 0.0187530517578125, -0.05706787109375, -0.006641387939453125, -0.01296234130859375, -0.0200653076171875, -0.00630950927734375, 0.040130615234375, 0.0596923828125, -0.019500732421875, -0.00598907470703125, -0.004032135009765625, -0.012908935546875, -0.03350830078125, 0.0184783935546875, -0.04168701171875, -0.018280029296875, 0.0157928466796875 ]
c62eb752827acb70e6334b88ccc96170ec67c293
Wordpress Stackexchange Q: How to stop WordPress using utf8mb4_unicode_520_ci collation? Recently I've installed PHP7 on my MAMP and updated to newest version of WordPress. Every time I do a new site all my tables are using collation utf8mb4_unicode_520_ci I have tried setting define('DB_COLLATE', 'utf8_general_ci'); in my wp-config.php which worked fine until Gravity Forms ignored it and created all it's tables in utf8mb4_unicode_520_ci I've seen that if utf8mb4_unicode_520_ci is available it will use that so is there a surefire way to stop WP using that collation? Can I just remove that collation as I am having to run 10 ALTER TABLE queries before I can port the database over to staging/live server? A: Not using utf8mb4_unicode.... collation and using a utf8 one instead is a security problem. The right answer is to upgrade your sites and DBs so they all use utf8mb4
Q: How to stop WordPress using utf8mb4_unicode_520_ci collation? Recently I've installed PHP7 on my MAMP and updated to newest version of WordPress. Every time I do a new site all my tables are using collation utf8mb4_unicode_520_ci I have tried setting define('DB_COLLATE', 'utf8_general_ci'); in my wp-config.php which worked fine until Gravity Forms ignored it and created all it's tables in utf8mb4_unicode_520_ci I've seen that if utf8mb4_unicode_520_ci is available it will use that so is there a surefire way to stop WP using that collation? Can I just remove that collation as I am having to run 10 ALTER TABLE queries before I can port the database over to staging/live server? A: Not using utf8mb4_unicode.... collation and using a utf8 one instead is a security problem. The right answer is to upgrade your sites and DBs so they all use utf8mb4 A: I ran into a similar issue while deploying sites using BackupBuddy. Ninja Forms was constantly creating tables in unicode_520_ci, no matter what settings I used in Sequel Pro. Not sure if this helps or not, but all I had to do was change the collation within Sequel Pro for the specific Ninja Forms tables, and then the deployment would work as normal.
wordpress
{ "language": "en", "length": 202, "provenance": "stackexchange_00019.jsonl.gz:468732", "question_score": "6", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/240750" }
[ 0.003002166748046875, 0.003582000732421875, -0.0216827392578125, -0.00470733642578125, 0.026092529296875, -0.0123748779296875, 0.03057861328125, -0.0076141357421875, 0.054229736328125, 0.0404052734375, -0.00029206275939941406, -0.0279693603515625, 0.07464599609375, -0.03802490234375, -0.0184326171875, 0.040740966796875, 0.0184173583984375, -0.039154052734375, -0.0038356781005859375, -0.033935546875, 0.02142333984375, -0.028533935546875, 0.0158843994140625, 0.0116424560546875, -0.0095062255859375, -0.004756927490234375, 0.0875244140625, -0.01296234130859375, 0.0002429485321044922, -0.0285491943359375, 0.01995849609375, -0.0010976791381835938, -0.0013704299926757812, 0.06146240234375, -0.039764404296875, 0.004497528076171875, -0.0239105224609375, 0.048187255859375, 0.00843048095703125, 0.0163421630859375, 0.034881591796875, -0.032867431640625, -0.01490020751953125, -0.0132904052734375, -0.01317596435546875, -0.02850341796875, 0.043548583984375, -0.01467132568359375, 0.034088134765625, -0.0004949569702148438, 0.0265655517578125, 0.022064208984375, 0.04443359375, -0.0166015625, -0.03729248046875, -0.023223876953125, -0.0019350051879882812, 0.059783935546875, 0.005584716796875, 0.007305145263671875, 0.005168914794921875, 0.071044921875, -0.025115966796875, 0.0118560791015625, 0.013916015625, -0.029937744140625, 0.022216796875, 0.0137481689453125, -0.029632568359375, 0.01715087890625, 0.041778564453125, -0.01261138916015625, -0.0229949951171875, -0.03387451171875, 0.0013370513916015625, 0.066162109375, -0.01355743408203125, 0.006591796875, 0.00726318359375, 0.014190673828125, 0.005603790283203125, 0.002349853515625, -0.03240966796875, -0.02227783203125, 0.0112152099609375, -0.007843017578125, -0.0048980712890625, -0.0167083740234375, 0.006801605224609375, -0.0309295654296875, -0.01268768310546875, -0.0234375, -0.044891357421875, 0.026885986328125, 0.01053619384765625, -0.0198211669921875, 0.033966064453125, 0.029083251953125, -0.039031982421875, -0.02593994140625, 0.01526641845703125, -0.0526123046875, 0.052154541015625, -0.031524658203125, 0.0257568359375, 0.01456451416015625, -0.059814453125, 0.009185791015625, 0.08306884765625, 0.042999267578125, 0.03515625, 0.044525146484375, -0.049591064453125, -0.0828857421875, 0.01534271240234375, 0.0799560546875, -0.00311279296875, 0.011077880859375, 0.021026611328125, -0.041595458984375, 0.005504608154296875, 0.0114898681640625, 0.019866943359375, -0.04730224609375, 0.008331298828125, -0.012420654296875, -0.03826904296875, -0.0028934478759765625, -0.044219970703125, 0.0399169921875, -0.007541656494140625, -0.0198516845703125, 0.01366424560546875, 0.081298828125, 0.0032711029052734375, -0.0114898681640625, -0.004779815673828125, 0.04083251953125, 0.0030727386474609375, 0.0231475830078125, -0.030181884765625, -0.058502197265625, 0.0024566650390625, -0.00567626953125, -0.025665283203125, 0.0183258056640625, 0.0269927978515625, 0.0112762451171875, -0.0157928466796875, -0.03863525390625, -0.041107177734375, 0.015350341796875, 0.07049560546875, -0.0031528472900390625, -0.045928955078125, -0.037811279296875, 0.0386962890625, -0.040191650390625, -0.042724609375, -0.06524658203125, -0.01947021484375, -0.039337158203125, -0.02099609375, -0.044281005859375, -0.0770263671875, 0.046295166015625, 0.0005526542663574219, -0.0028514862060546875, 0.01708984375, -0.069580078125, -0.019500732421875, 0.03851318359375, 0.050048828125, 0.0223541259765625, 0.02850341796875, 0.01453399658203125, 0.0031871795654296875, 0.0256195068359375, -0.01035308837890625, 0.08538818359375, 0.05218505859375, -0.0222320556640625, 0.038330078125, 0.0031337738037109375, -0.028656005859375, 0.01512908935546875, 0.021240234375, 0.0576171875, 0.01113128662109375, 0.027130126953125, 0.00970458984375, 0.00936126708984375, -0.0367431640625, 0.07537841796875, 0.06707763671875, -0.039947509765625, -0.032073974609375, -0.015167236328125, 0.0183868408203125, -0.07525634765625, 0.046051025390625, 0.0240020751953125, -0.021759033203125, -0.0423583984375, -0.12158203125, 0.0079803466796875, -0.028717041015625, 0.053680419921875, 0.00740814208984375, 0.0100860595703125, 0.008148193359375, -0.005474090576171875, -0.023651123046875, 0.0157470703125, -0.0204620361328125, 0.02508544921875, -0.0162353515625, 0.0792236328125, 0.02423095703125, 0.06719970703125, 0.001155853271484375, -0.0282135009765625, 0.011199951171875, -0.03582763671875, -0.014678955078125, -0.01447296142578125, -0.004299163818359375, -0.00788116455078125, 0.0117645263671875, -0.0246734619140625, 0.06744384765625, 0.023651123046875, -0.00021600723266601562, -0.0048065185546875, -0.02203369140625, 0.0006151199340820312, -0.0261688232421875, -0.0615234375, -0.00859832763671875, 0.06591796875, 0.05950927734375, 0.00849151611328125, -0.01383209228515625, -0.0693359375, 0.0006132125854492188, -0.075439453125, 0.01885986328125, -0.058135986328125, 0.0240325927734375, 0.061492919921875, -0.0276947021484375, -0.003574371337890625, 0.02105712890625, -0.036590576171875, 0.0025577545166015625, 0.0323486328125, -0.0216064453125, -0.0347900390625, -0.0027790069580078125, 0.01458740234375, 0.0122222900390625, -0.054656982421875, -0.03692626953125, -0.017425537109375, -0.013946533203125, -0.0184326171875, 0.01239776611328125, 0.01284027099609375, -0.0006656646728515625, -0.017791748046875, 0.0340576171875, 0.00907135009765625, 0.0012493133544921875, -0.039337158203125, -0.005840301513671875, 0.0341796875, -0.048736572265625, 0.033050537109375, 0.025604248046875, -0.01543426513671875, -0.023040771484375, 0.015869140625, -0.04840087890625, -0.0240325927734375, -0.0078125, -0.0240020751953125, -0.02508544921875, -0.039093017578125, -0.07568359375, -0.04681396484375, -0.014404296875, 0.035675048828125, -0.0134735107421875, -0.0014219284057617188, 0.01105499267578125, -0.003833770751953125, 0.007965087890625, 0.0002086162567138672, 0.001861572265625, 0.00099945068359375, 0.035614013671875, 0.047332763671875, 0.01004791259765625, -0.01416778564453125, -0.0007734298706054688, -0.0005726814270019531, 0.01486968994140625, -0.023529052734375, -0.0179901123046875, 0.034393310546875, -0.0618896484375, 0.052276611328125, 0.0229034423828125, -0.0099945068359375, 0.02734375, -0.0171051025390625, -0.0077362060546875, 0.00986480712890625, -0.06048583984375, -0.0340576171875, -0.0107574462890625, 0.041717529296875, -0.06396484375, 0.032379150390625, 0.0115203857421875, 0.0196075439453125, -0.004619598388671875, -0.01517486572265625, 0.009521484375, 0.00644683837890625, -0.0311431884765625, -0.031280517578125, -0.042999267578125, -0.05841064453125, -0.00286102294921875, 0.00945281982421875, 0.0185546875, -0.01824951171875, -0.00730133056640625, -0.016845703125, 0.012115478515625, -0.0167694091796875, -0.0196075439453125, -0.021392822265625, -0.0223846435546875, -0.0200042724609375, -0.01274871826171875, -0.004161834716796875, 0.0194244384765625, 0.01125335693359375, -0.01513671875, 0.020294189453125, 0.032806396484375, -0.022796630859375, 0.03759765625, 0.01983642578125, -0.056549072265625, -0.03179931640625, 0.01126861572265625, -0.06341552734375, -0.06243896484375, 0.0445556640625, -0.0175933837890625, 0.0031299591064453125, -0.0257568359375, -0.026519775390625, 0.003360748291015625, 0.0489501953125, 0.002170562744140625, -0.01024627685546875, 0.0184326171875, -0.0273284912109375, 0.04925537109375, 0.0079803466796875, 0.0293121337890625, -0.0239105224609375, 0.0083770751953125, -0.024810791015625, 0.0192108154296875, 0.01776123046875, 0.0217437744140625, 0.03204345703125, -0.020751953125, 0.021728515625, -0.0246124267578125, 0.0455322265625, -0.0293121337890625, -0.0070953369140625, -0.005405426025390625, -0.00681304931640625, 0.012603759765625, 0.058868408203125, -0.0089263916015625, -0.0144805908203125, 0.006244659423828125, 0.0221099853515625, -0.050567626953125, -0.04522705078125, -0.036346435546875, -0.0190277099609375, -0.0193634033203125, -0.023162841796875, -0.020263671875, -0.038238525390625, -0.004825592041015625, -0.0152130126953125, 0.006519317626953125, -0.0301513671875, 0.01526641845703125, -0.022186279296875, 0.0001150965690612793, 0.03326416015625, -0.0171966552734375, 0.0191497802734375, -0.0113525390625, -0.03619384765625, -0.125, -0.0166778564453125, -0.0323486328125, 0.07952880859375, -0.0009150505065917969, -0.000865936279296875, -0.0300140380859375, 0.056976318359375, -0.0027618408203125, 0.016143798828125, 0.0260772705078125, 0.0304412841796875, -0.0216522216796875, 0.042633056640625, 0.05303955078125, -0.034576416015625, -0.021942138671875, -0.033050537109375, -0.0085296630859375, 0.004764556884765625, -0.0259246826171875, -0.0159912109375, -0.0189971923828125, -0.007709503173828125, -0.039886474609375, -0.033477783203125, -0.0345458984375, 0.0330810546875, -0.041656494140625, 0.02606201171875, -0.067626953125, -0.058990478515625, 0.05572509765625, 0.0423583984375, 0.01171112060546875, -0.0014190673828125, 0.0408935546875, 0.001590728759765625, -0.05322265625, -0.055572509765625, -0.00859832763671875, 0.031646728515625, -0.0260772705078125, 0.055908203125, 0.0216827392578125, -0.01904296875, 0.08270263671875, -0.005176544189453125, -0.021881103515625, -0.0060577392578125, 0.013580322265625, -0.00033211708068847656, -0.060028076171875, 0.035491943359375, 0.0004963874816894531, -0.003940582275390625, 0.038055419921875, 0.039215087890625, -0.0391845703125, 0.0002872943878173828, 0.0287017822265625, 0.052642822265625, -0.06982421875, -0.038818359375, -0.08172607421875, 0.034423828125, -0.07598876953125, -0.0220947265625, -0.0278472900390625, 0.00910186767578125, 0.021820068359375, 0.007495880126953125, 0.00475311279296875, -0.033599853515625, 0.025909423828125, -0.0184173583984375, 0.032684326171875, 0.003936767578125, -0.0025157928466796875, -0.04193115234375, -0.007251739501953125, 0.022735595703125, -0.0084991455078125, -0.0281982421875, 0.0216827392578125, -0.004192352294921875, -0.043731689453125, 0.030242919921875, -0.00756072998046875, 0.00531005859375, 0.0217742919921875, 0.0148468017578125, 0.00824737548828125, 0.0282745361328125, -0.0179901123046875, -0.0163116455078125, -0.01216888427734375, 0.0016355514526367188, -0.02008056640625, 0.0234375, 0.052886962890625, 0.0008754730224609375, 0.0271148681640625, -0.017578125, 0.0011167526245117188, -0.032745361328125, 0.040557861328125, 0.0130615234375, -0.0064239501953125, 0.0169219970703125, 0.01296234130859375, 0.004856109619140625, -0.038299560546875, -0.0036029815673828125, 0.008209228515625, 0.03509521484375, -0.01134490966796875, -0.018646240234375, 0.034698486328125, 0.0019502639770507812, 0.0091094970703125, 0.050262451171875, 0.019622802734375, -0.052032470703125, -0.00498199462890625, 0.0244598388671875, 0.029296875, -0.025146484375, 0.001983642578125, -0.0172271728515625, 0.00868988037109375, 0.0201263427734375, 0.0183563232421875, -0.00775146484375, -0.0020389556884765625, -0.018096923828125, -0.00852203369140625, -0.05126953125, -0.00823211669921875, -0.01494598388671875, 0.031890869140625, -0.0179443359375, -0.0262908935546875, 0.00891876220703125, -0.0277557373046875, 0.01476287841796875, 0.0027523040771484375, -0.01446533203125, -0.00865936279296875, 0.0241241455078125, 0.02166748046875, 0.01041412353515625, -0.0128021240234375, 0.01145172119140625, -0.038116455078125, -0.01812744140625, 0.00998687744140625, -0.037139892578125, -0.03924560546875, -0.0345458984375, -0.004360198974609375, -0.0008373260498046875, -0.017822265625, -0.0218505859375, -0.0458984375, 0.056121826171875, 0.041015625, 0.01210784912109375, -0.057861328125, 0.047943115234375, 0.041534423828125, -0.0181427001953125, -0.016754150390625, 0.02471923828125, 0.04486083984375, 0.007663726806640625, 0.0205535888671875, -0.052978515625, -0.03692626953125, -0.01505279541015625, -0.0126800537109375, 0.00859832763671875, -0.010589599609375, -0.0196990966796875, 0.0169830322265625, -0.038818359375, 0.01397705078125, -0.02490234375, 0.05181884765625, -0.05615234375, 0.0012292861938476562, 0.01430511474609375, -0.0008254051208496094, 0.026153564453125, -0.031829833984375, -0.0248565673828125, 0.045806884765625, -0.02276611328125, 0.0237274169921875, 0.0021495819091796875, 0.0333251953125, 0.00600433349609375, 0.0085601806640625, 0.023651123046875, 0.0165557861328125, 0.040679931640625, 0.0232696533203125, -0.039825439453125, 0.006328582763671875, -0.01232147216796875, -0.0191192626953125, 0.0099945068359375, -0.002262115478515625, 0.020294189453125, -0.0002372264862060547, -0.0025882720947265625, -0.000010609626770019531, 0.09619140625, 0.0498046875, -0.1209716796875, 0.0026397705078125, -0.0138397216796875, -0.003173828125, 0.0145263671875, 0.0010547637939453125, -0.04150390625, -0.050933837890625, 0.034698486328125, -0.0430908203125, -0.040252685546875, -0.0016336441040039062, -0.003337860107421875, -0.0005931854248046875, -0.0006046295166015625, 0.025848388671875, 0.0147247314453125, 0.0166778564453125, -0.03936767578125, -0.00914764404296875, -0.0093994140625, 0.007335662841796875, -0.005390167236328125, -0.0283050537109375, -0.042999267578125, -0.047332763671875, -0.0277252197265625, -0.05377197265625, -0.0198974609375, 0.0069732666015625, 0.018585205078125, 0.030731201171875, 0.06524658203125, -0.0078582763671875, -0.0134735107421875, 0.0313720703125, -0.0028839111328125, -0.019805908203125, -0.0005884170532226562, -0.007537841796875, 0.0257415771484375, -0.0491943359375, 0.0215301513671875, -0.0494384765625, 0.0204620361328125, -0.022216796875, -0.037445068359375, 0.075927734375, 0.026702880859375, -0.034332275390625, 0.00748443603515625, 0.032501220703125, 0.003448486328125, -0.019500732421875, 0.017120361328125, -0.045684814453125, -0.0313720703125, -0.000881195068359375, -0.03497314453125, -0.0303955078125, -0.038726806640625, -0.039581298828125, 0.047027587890625, -0.02484130859375, -0.017181396484375, -0.0278472900390625, 0.038116455078125, 0.01157379150390625, 0.022003173828125, -0.03472900390625, 0.06427001953125, -0.0032711029052734375, 0.0185089111328125, -0.04461669921875, 0.016693115234375, 0.00803375244140625, 0.0004100799560546875, -0.00241851806640625, -0.003185272216796875, -0.02972412109375, 0.0118255615234375, 0.0479736328125, 0.0242462158203125, 0.0201568603515625, 0.04254150390625, 0.005222320556640625, -0.0225830078125, 0.040740966796875, 0.006427764892578125, 0.0253448486328125, 0.0180206298828125, -0.01507568359375, 0.0125732421875, 0.0151214599609375, 0.02349853515625, -0.02294921875, -0.0155792236328125, -0.00807952880859375, -0.0245819091796875, 0.00994110107421875, -0.03668212890625, 0.01273345947265625, -0.00009131431579589844, 0.0312347412109375, -0.08148193359375, 0.019561767578125, -0.0396728515625, 0.047393798828125, 0.006351470947265625, -0.0048370361328125, 0.03350830078125, 0.0272674560546875, -0.003925323486328125, -0.027374267578125, -0.003253936767578125, 0.01326751708984375, -0.02166748046875, 0.0242462158203125, 0.041412353515625, 0.03857421875, -0.001331329345703125, -0.00768280029296875, 0.052825927734375, 0.03851318359375, -0.028076171875, -0.04119873046875, 0.010101318359375, -0.0182647705078125, 0.0004572868347167969, -0.020965576171875, -0.01486968994140625, -0.03887939453125, -0.022735595703125, 0.0150146484375, -0.0162811279296875, 0.005218505859375, 0.0122222900390625, 0.01157379150390625, 0.032928466796875, 0.0021305084228515625, -0.0010385513305664062, -0.07763671875, 0.0179443359375, 0.034637451171875, 0.07574462890625, 0.039215087890625, 0.052398681640625, 0.053985595703125, -0.043487548828125, -0.00467681884765625, 0.0012569427490234375, -0.0252227783203125, -0.0113525390625, 0.0004398822784423828, -0.052093505859375, 0.00867462158203125, 0.0115509033203125, 0.01007080078125, -0.01142120361328125, 0.0592041015625, 0.062744140625, -0.038177490234375, -0.0300750732421875, 0.08203125, 0.0032634735107421875, -0.04937744140625, -0.04278564453125, 0.01229095458984375, 0.03857421875, 0.01068878173828125, 0.0038547515869140625, 0.024200439453125, 0.0222930908203125, -0.00016307830810546875, 0.0309295654296875, 0.005023956298828125, -0.013763427734375, 0.028167724609375, 0.002590179443359375, 0.01413726806640625, 0.0208587646484375, -0.01363372802734375, 0.006618499755859375, -0.0159149169921875, 0.007404327392578125, 0.006809234619140625, 0.01216888427734375, -0.02764892578125, 0.050079345703125, 0.04180908203125, -0.05621337890625, 0.03973388671875, 0.05157470703125, -0.036376953125, -0.01152801513671875, 0.03515625, -0.034912109375, 0.0030498504638671875, -0.01354217529296875, 0.044464111328125, 0.0423583984375, -0.04486083984375, 0.0313720703125, -0.03411865234375, -0.016021728515625, 0.00823974609375, -0.033233642578125, 0.04046630859375, 0.023529052734375, -0.003208160400390625, 0.0277099609375, 0.0022602081298828125, -0.0259552001953125, -0.0201416015625, 0.0016813278198242188, 0.006717681884765625, -0.01532745361328125, -0.0203704833984375, -0.0367431640625, 0.0439453125, 0.0341796875, -0.0220794677734375, -0.033233642578125, -0.00019240379333496094, 0.0210723876953125, 0.0095977783203125, 0.0163726806640625, -0.0264739990234375, -0.01467132568359375, 0.0100250244140625, 0.0032958984375, -0.0197296142578125, 0.033294677734375, -0.0269775390625, 0.062164306640625, 0.0238800048828125, -0.0426025390625, -0.0004763603210449219, 0.0298309326171875, -0.005096435546875, -0.01233673095703125, 0.03497314453125, 0.000055849552154541016, 0.037628173828125, -0.0716552734375, -0.00409698486328125, 0.00751495361328125, 0.034820556640625, -0.01013946533203125, 0.020111083984375, -0.0117645263671875, 0.00965118408203125, 0.029083251953125, -0.01238250732421875, -0.01287078857421875, -0.0304107666015625, 0.0011692047119140625, 0.0128021240234375, -0.0153961181640625, -0.0003437995910644531, -0.01418304443359375, -0.0186004638671875, 0.0179443359375, -0.01898193359375, -0.007099151611328125, 0.0010881423950195312, -0.0219573974609375, 0.00281524658203125, -0.018341064453125, 0.01129913330078125, -0.008087158203125, 0.0020751953125, -0.04803466796875, -0.048553466796875, -0.02191162109375, 0.034027099609375, -0.0155029296875, -0.0004544258117675781, 0.01363372802734375, -0.0012874603271484375, -0.0255279541015625, 0.0002741813659667969, -0.0083160400390625, 0.033477783203125, -0.006977081298828125, -0.03607177734375, 0.005474090576171875, 0.004146575927734375, -0.034759521484375, -0.0841064453125, 0.0207977294921875, -0.1204833984375, 0.01438140869140625, 0.004215240478515625, -0.02032470703125, -0.0236968994140625, -0.03857421875, -0.056060791015625, 0.025665283203125, 0.014984130859375, -0.01995849609375, -0.0191497802734375, -0.00464630126953125, -0.022613525390625, 0.0150604248046875, -0.0008068084716796875, -0.025177001953125, 0.01297760009765625, 0.049957275390625, 0.0281524658203125, 0.00496673583984375, 0.01309967041015625, 0.02197265625, -0.0245819091796875, 0.048583984375, 0.03363037109375, 0.0178985595703125, -0.008392333984375, 0.021209716796875, -0.0128936767578125, 0.0266571044921875, -0.03057861328125, -0.035247802734375, -0.016754150390625, 0.011993408203125, -0.0281524658203125, -0.04437255859375, -0.01412200927734375, -0.031951904296875, 0.074951171875, 0.035614013671875, -0.0011873245239257812, -0.0248565673828125, -0.028564453125, -0.00421142578125, 0.0203094482421875, 0.0004210472106933594, 0.00374603271484375, -0.034759521484375, 0.00640106201171875, 0.0058135986328125, 0.01094818115234375, 0.040863037109375, -0.0104217529296875, 0.006618499755859375, 0.0016260147094726562, 0.0285797119140625, -0.0222015380859375, -0.005962371826171875, 0.0166473388671875, -0.0214996337890625, -0.01314544677734375, -0.01171112060546875, -0.0243682861328125, 0.01259613037109375, -0.029693603515625, -0.031890869140625, -0.038238525390625, -0.0267791748046875, 0.024871826171875, 0.042144775390625, -0.01139068603515625, 0.0007476806640625, 0.002086639404296875, 0.015716552734375, -0.013031005859375, 0.0161285400390625, 0.01239776611328125, 0.042327880859375, -0.02655029296875, 0.0056915283203125, 0.0163726806640625, -0.0004494190216064453, -0.004261016845703125, -0.06976318359375, -0.046966552734375, 0.04571533203125, 0.0061492919921875, -0.0252685546875, 0.033966064453125, -0.00923919677734375, 0.02581787109375, -0.0187835693359375, 0.0341796875, 0.01045989990234375, -0.0186004638671875, 0.005950927734375, -0.017730712890625, 0.0004401206970214844 ]
469c2685f54bb231b8cba8de0db7223bf35ec5cd
Wordpress Stackexchange Q: List of available events for wp.media Is there a list of available events for wp.media object? By doing some googling, I managed to find following events: for wp.media.view.Modal.prototype: open, ready - they are triggered, when user opens the Modal window. The reason why I need this list is that I want to insert a select box on the right side, when user clicks an item on the Insert Media window. This select has to be formatted with Chosen library, but since the Backbone view is loaded only on user interaction, I need to know, on which event to initialize Chosen. Please add other events in your answers. A: If you're still looking for this kind of answer, one way of figuring out what is firing is by entering this in your browser console and using the media modal: wp.media.frame.on('all', function(e) { console.log(e); });
Q: List of available events for wp.media Is there a list of available events for wp.media object? By doing some googling, I managed to find following events: for wp.media.view.Modal.prototype: open, ready - they are triggered, when user opens the Modal window. The reason why I need this list is that I want to insert a select box on the right side, when user clicks an item on the Insert Media window. This select has to be formatted with Chosen library, but since the Backbone view is loaded only on user interaction, I need to know, on which event to initialize Chosen. Please add other events in your answers. A: If you're still looking for this kind of answer, one way of figuring out what is firing is by entering this in your browser console and using the media modal: wp.media.frame.on('all', function(e) { console.log(e); }); A: You can install the plugin WordPress Media Javascript Guide. It explains with screenshots and examples the must use method of the wp.media object.
wordpress
{ "language": "en", "length": 168, "provenance": "stackexchange_00019.jsonl.gz:468743", "question_score": "11", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/240802" }
[ 0.041107177734375, 0.005970001220703125, -0.0103759765625, -0.02490234375, 0.01157379150390625, -0.03265380859375, 0.019775390625, -0.026031494140625, 0.003574371337890625, 0.0177764892578125, -0.007434844970703125, 0.0054168701171875, 0.0185089111328125, -0.043609619140625, 0.01192474365234375, -0.00511932373046875, 0.0477294921875, -0.03863525390625, 0.00942230224609375, -0.015380859375, -0.008636474609375, 0.00969696044921875, 0.04241943359375, 0.068359375, 0.03350830078125, -0.005168914794921875, 0.0229644775390625, 0.004428863525390625, 0.033477783203125, 0.0287933349609375, 0.0286102294921875, -0.03948974609375, 0.01082611083984375, 0.029998779296875, -0.024261474609375, 0.01175689697265625, -0.0169525146484375, 0.025054931640625, 0.0190277099609375, 0.0283050537109375, -0.01020050048828125, 0.0038051605224609375, 0.007343292236328125, 0.0478515625, -0.0170440673828125, -0.04058837890625, -0.023345947265625, -0.057464599609375, 0.004344940185546875, -0.0189666748046875, 0.0026111602783203125, -0.0262451171875, 0.0178375244140625, -0.01495361328125, -0.0175933837890625, -0.007740020751953125, -0.0614013671875, 0.017181396484375, 0.007678985595703125, 0.07891845703125, 0.027099609375, 0.026885986328125, -0.0273590087890625, -0.034149169921875, -0.0038814544677734375, 0.0155792236328125, -0.0025634765625, 0.00875091552734375, 0.0164642333984375, -0.01477813720703125, -0.01258087158203125, -0.00913238525390625, -0.02337646484375, -0.0312042236328125, -0.007198333740234375, 0.08929443359375, -0.029510498046875, 0.0171356201171875, 0.025299072265625, 0.001560211181640625, 0.045562744140625, 0.063720703125, 0.01117706298828125, -0.0251617431640625, 0.0194549560546875, -0.01496124267578125, -0.00726318359375, -0.039093017578125, -0.05255126953125, -0.012298583984375, -0.0257568359375, -0.03192138671875, 0.0029773712158203125, -0.01201629638671875, -0.040924072265625, 0.003849029541015625, -0.01047515869140625, 0.0195465087890625, -0.02923583984375, -0.0018930435180664062, -0.0261993408203125, -0.001529693603515625, -0.0215606689453125, -0.0184173583984375, 0.007801055908203125, 0.032562255859375, 0.022430419921875, 0.0183868408203125, 0.0219573974609375, -0.007717132568359375, -0.027099609375, -0.0010805130004882812, 0.037994384765625, 0.06549072265625, -0.05340576171875, -0.07928466796875, -0.03839111328125, 0.01291656494140625, -0.038055419921875, -0.00389862060546875, 0.0394287109375, 0.030975341796875, -0.01392364501953125, 0.025146484375, 0.005947113037109375, 0.01061248779296875, -0.042022705078125, -0.009002685546875, -0.04766845703125, 0.032928466796875, 0.0003674030303955078, -0.0022068023681640625, 0.019927978515625, 0.0491943359375, -0.006237030029296875, -0.0221099853515625, 0.0168304443359375, 0.0269927978515625, 0.025390625, -0.0283203125, 0.054473876953125, -0.0204010009765625, -0.01380157470703125, 0.039154052734375, 0.0352783203125, 0.017242431640625, 0.0117645263671875, -0.0008387565612792969, 0.045501708984375, 0.014617919921875, -0.034912109375, 0.01468658447265625, 0.0211334228515625, 0.046478271484375, -0.00746917724609375, 0.012542724609375, 0.087890625, -0.05126953125, -0.0206756591796875, -0.06787109375, 0.00023293495178222656, 0.00751495361328125, 0.059173583984375, -0.01088714599609375, 0.004108428955078125, -0.005588531494140625, -0.0767822265625, -0.0093231201171875, 0.0267486572265625, 0.08428955078125, -0.01210784912109375, -0.04180908203125, 0.02313232421875, 0.039398193359375, -0.00817108154296875, 0.02740478515625, 0.01056671142578125, -0.016571044921875, 0.019439697265625, 0.0557861328125, -0.0014352798461914062, -0.0031871795654296875, 0.057861328125, -0.0247802734375, 0.0021991729736328125, 0.0245513916015625, 0.021392822265625, 0.042510986328125, -0.01235198974609375, 0.018524169921875, 0.0103607177734375, 0.0303192138671875, -0.007183074951171875, -0.0197906494140625, -0.025390625, -0.00897216796875, -0.02349853515625, 0.0129547119140625, -0.031585693359375, 0.03173828125, 0.0236358642578125, 0.03240966796875, -0.0017652511596679688, -0.008758544921875, -0.07989501953125, 0.0499267578125, -0.040374755859375, 0.04656982421875, 0.004383087158203125, 0.0028400421142578125, 0.0049896240234375, -0.01512908935546875, 0.009552001953125, -0.0323486328125, -0.027069091796875, -0.0019664764404296875, -0.00975799560546875, 0.040252685546875, -0.007678985595703125, 0.04022216796875, -0.0279693603515625, -0.01556396484375, -0.01282501220703125, 0.005191802978515625, 0.030853271484375, 0.0071258544921875, -0.006008148193359375, -0.0028400421142578125, 0.049652099609375, 0.0137786865234375, 0.0284881591796875, -0.0212554931640625, -0.00420379638671875, -0.00612640380859375, -0.040679931640625, -0.0106353759765625, -0.015899658203125, -0.042144775390625, 0.01255035400390625, 0.04949951171875, 0.02081298828125, 0.02447509765625, 0.0254058837890625, 0.06097412109375, 0.09002685546875, 0.0634765625, 0.0418701171875, -0.0011949539184570312, -0.004138946533203125, 0.0306396484375, 0.0031871795654296875, -0.0079803466796875, 0.0175323486328125, 0.00603485107421875, -0.0022907257080078125, 0.0115966796875, -0.00470733642578125, 0.01421356201171875, 0.00014543533325195312, 0.01139068603515625, -0.007297515869140625, -0.00447845458984375, 0.00460052490234375, -0.019256591796875, 0.01256561279296875, -0.0035114288330078125, 0.0026607513427734375, 0.00270843505859375, -0.03375244140625, 0.031402587890625, 0.024261474609375, -0.033294677734375, -0.01239013671875, 0.044769287109375, 0.040863037109375, 0.0011806488037109375, -0.01226806640625, -0.0167999267578125, -0.0198211669921875, 0.00832366943359375, -0.0166778564453125, 0.002452850341796875, -0.059661865234375, -0.0186309814453125, 0.01503753662109375, -0.0577392578125, -0.0212249755859375, -0.011260986328125, -0.0004208087921142578, -0.0271453857421875, 0.016204833984375, 0.0140838623046875, -0.031982421875, 0.046905517578125, -0.0204620361328125, -0.043304443359375, -0.0139007568359375, -0.02935791015625, 0.042236328125, -0.0262451171875, 0.047271728515625, 0.07305908203125, -0.030731201171875, 0.051422119140625, -0.017059326171875, -0.01314544677734375, -0.015533447265625, 0.0007448196411132812, -0.0294189453125, -0.036163330078125, -0.056549072265625, -0.0278167724609375, 0.03131103515625, -0.019561767578125, 0.00782012939453125, -0.011627197265625, -0.03857421875, 0.0059967041015625, -0.0660400390625, -0.033447265625, 0.018310546875, -0.082275390625, 0.01116180419921875, -0.032501220703125, -0.041961669921875, -0.020477294921875, -0.0029811859130859375, 0.007389068603515625, -0.06597900390625, 0.0204315185546875, -0.01544189453125, -0.03668212890625, -0.00516510009765625, 0.0012531280517578125, -0.024749755859375, -0.006870269775390625, -0.0033473968505859375, 0.0273284912109375, -0.009979248046875, -0.007785797119140625, 0.002971649169921875, -0.0419921875, -0.0175933837890625, -0.0207366943359375, 0.0281982421875, -0.037506103515625, -0.0091400146484375, 0.005519866943359375, 0.0258331298828125, 0.01197052001953125, -0.0185546875, -0.00623321533203125, 0.0164947509765625, -0.0200042724609375, 0.00067901611328125, 0.0770263671875, 0.0080413818359375, 0.0072479248046875, 0.055389404296875, -0.03369140625, 0.056884765625, -0.0184173583984375, -0.0007843971252441406, -0.0594482421875, -0.0128021240234375, -0.0064849853515625, -0.00543975830078125, -0.043731689453125, -0.01434326171875, 0.006252288818359375, 0.0328369140625, -0.03009033203125, 0.01287078857421875, -0.0161895751953125, -0.03314208984375, -0.006435394287109375, 0.037933349609375, -0.01198577880859375, -0.021575927734375, 0.0011224746704101562, -0.005214691162109375, -0.0194244384765625, 0.00786590576171875, -0.036651611328125, -0.0292816162109375, 0.035491943359375, 0.0303802490234375, 0.0188140869140625, -0.01446533203125, -0.039215087890625, -0.009674072265625, 0.068603515625, 0.0208740234375, -0.01548004150390625, -0.01026153564453125, 0.0165557861328125, -0.05584716796875, -0.0254058837890625, -0.0230865478515625, 0.002086639404296875, -0.0391845703125, 0.00972747802734375, 0.006534576416015625, -0.012542724609375, -0.032684326171875, 0.0352783203125, -0.03045654296875, -0.0220947265625, 0.02117919921875, 0.0182952880859375, -0.003360748291015625, -0.0233154296875, 0.018310546875, -0.04681396484375, 0.0159149169921875, -0.00923919677734375, -0.07904052734375, -0.0162200927734375, 0.033660888671875, 0.03375244140625, -0.00936126708984375, -0.03857421875, -0.01181793212890625, 0.03857421875, 0.0277557373046875, 0.04608154296875, 0.0026226043701171875, -0.0245208740234375, 0.00798797607421875, 0.0228424072265625, 0.031768798828125, -0.0019683837890625, 0.004673004150390625, -0.0103759765625, -0.053619384765625, 0.01200103759765625, 0.00042629241943359375, 0.028717041015625, 0.0201873779296875, -0.0311279296875, -0.02911376953125, -0.004451751708984375, -0.057159423828125, -0.00623321533203125, -0.0274810791015625, -0.00975799560546875, 0.005344390869140625, -0.0391845703125, -0.018402099609375, -0.053314208984375, 0.0187530517578125, 0.004611968994140625, 0.0447998046875, 0.0307464599609375, 0.019012451171875, 0.0657958984375, -0.0128936767578125, -0.0063018798828125, 0.048980712890625, 0.00226593017578125, -0.05926513671875, -0.00803375244140625, 0.044708251953125, -0.024688720703125, 0.033233642578125, -0.0179443359375, 0.040771484375, 0.021636962890625, -0.01446533203125, 0.037628173828125, 0.038970947265625, -0.058441162109375, -0.005680084228515625, -0.017669677734375, 0.01349639892578125, 0.0157318115234375, 0.00400543212890625, -0.041290283203125, 0.033294677734375, 0.0038089752197265625, 0.01020050048828125, -0.0145721435546875, -0.0087890625, 0.09259033203125, 0.055511474609375, -0.01363372802734375, 0.03436279296875, 0.060150146484375, 0.007701873779296875, 0.05450439453125, 0.0142822265625, -0.023956298828125, 0.0362548828125, 0.037200927734375, -0.01265716552734375, 0.019287109375, 0.00411224365234375, -0.0288543701171875, 0.0169219970703125, -0.050445556640625, -0.00811004638671875, 0.0163116455078125, -0.001926422119140625, 0.0031375885009765625, -0.029571533203125, 0.0247344970703125, 0.062744140625, -0.00994110107421875, 0.0034332275390625, -0.0300445556640625, 0.02117919921875, -0.047607421875, 0.025665283203125, -0.02886962890625, 0.0167999267578125, 0.02508544921875, 0.0521240234375, -0.053619384765625, 0.059173583984375, -0.0028324127197265625, 0.03704833984375, 0.031646728515625, 0.04644775390625, 0.01885986328125, -0.0487060546875, 0.0008382797241210938, 0.0178985595703125, -0.0092010498046875, -0.040496826171875, -0.02130126953125, -0.003814697265625, 0.0265350341796875, -0.0126495361328125, 0.0106658935546875, 0.032470703125, 0.0167999267578125, -0.01102447509765625, 0.040863037109375, -0.019439697265625, -0.01395416259765625, -0.036895751953125, -0.0008988380432128906, 0.045684814453125, -0.01021575927734375, -0.010284423828125, 0.01004791259765625, -0.025787353515625, 0.004703521728515625, 0.0194091796875, -0.0201873779296875, -0.0038280487060546875, 0.002338409423828125, -0.01525115966796875, 0.00044608116149902344, 0.0182952880859375, -0.11053466796875, -0.02435302734375, -0.027099609375, -0.007495880126953125, 0.0802001953125, -0.026123046875, 0.020477294921875, -0.01210784912109375, -0.0012760162353515625, -0.10626220703125, 0.030792236328125, -0.0140380859375, 0.009552001953125, 0.0096435546875, -0.0223388671875, -0.0078277587890625, 0.0031185150146484375, -0.014190673828125, -0.038970947265625, -0.00658416748046875, -0.0098114013671875, -0.00659942626953125, -0.01151275634765625, 0.0001634359359741211, -0.01117706298828125, 0.043914794921875, 0.02496337890625, -0.005626678466796875, -0.0161285400390625, 0.02606201171875, 0.0213775634765625, 0.0063018798828125, 0.05255126953125, 0.0214385986328125, -0.01320648193359375, -0.060821533203125, -0.03204345703125, -0.005100250244140625, -0.042999267578125, -0.005191802978515625, -0.0005826950073242188, -0.0102386474609375, 0.0080413818359375, 0.0246429443359375, -0.0032062530517578125, 0.0302734375, -0.0245513916015625, -0.0017147064208984375, -0.027679443359375, 0.01763916015625, -0.0457763671875, 0.00231170654296875, 0.006298065185546875, -0.0723876953125, -0.01268768310546875, -0.0033740997314453125, 0.0323486328125, 0.0265350341796875, -0.0679931640625, 0.006778717041015625, 0.0789794921875, -0.0244598388671875, 0.039031982421875, 0.06597900390625, 0.02264404296875, 0.07232666015625, 0.0227508544921875, 0.023345947265625, 0.051666259765625, 0.061859130859375, 0.00027179718017578125, -0.0718994140625, 0.059661865234375, 0.02081298828125, -0.0521240234375, 0.01483154296875, -0.042510986328125, 0.0022106170654296875, -0.01105499267578125, 0.0227813720703125, -0.0013027191162109375, 0.00484466552734375, -0.00789642333984375, -0.023284912109375, 0.00983428955078125, -0.01338958740234375, 0.00577545166015625, -0.0204315185546875, -0.01776123046875, 0.0017156600952148438, -0.044525146484375, -0.0249481201171875, -0.02374267578125, 0.0034332275390625, -0.00926971435546875, -0.0081939697265625, -0.02618408203125, -0.0148468017578125, -0.0306549072265625, 0.0099029541015625, 0.0012922286987304688, -0.041046142578125, 0.054901123046875, -0.033477783203125, -0.005321502685546875, -0.046051025390625, 0.00782012939453125, 0.040618896484375, -0.01470947265625, 0.003509521484375, 0.0286407470703125, -0.0058746337890625, 0.05072021484375, -0.0283203125, 0.03765869140625, 0.0228118896484375, -0.01558685302734375, -0.0369873046875, 0.00609588623046875, 0.032745361328125, 0.04541015625, -0.06298828125, 0.0307159423828125, -0.032928466796875, 0.01513671875, -0.003314971923828125, -0.0219268798828125, 0.042999267578125, -0.0273895263671875, -0.00936126708984375, 0.040069580078125, -0.017852783203125, -0.01580810546875, -0.0022983551025390625, -0.0055389404296875, -0.050018310546875, -0.02056884765625, -0.004291534423828125, -0.025848388671875, 0.006267547607421875, 0.0107269287109375, -0.036041259765625, 0.064453125, 0.03167724609375, 0.001506805419921875, 0.04241943359375, 0.01245880126953125, -0.07757568359375, -0.01806640625, -0.050506591796875, 0.0609130859375, -0.018768310546875, 0.055694580078125, -0.06854248046875, -0.0054779052734375, -0.00223541259765625, 0.0159454345703125, -0.02984619140625, -0.0179595947265625, 0.0254058837890625, -0.0157928466796875, 0.017974853515625, 0.01436614990234375, 0.0016641616821289062, -0.004428863525390625, -0.0180511474609375, -0.00882720947265625, 0.0228729248046875, -0.02386474609375, 0.0226287841796875, -0.052215576171875, -0.006130218505859375, -0.0062103271484375, -0.0024776458740234375, 0.006473541259765625, -0.034881591796875, 0.0077667236328125, 0.03662109375, -0.030181884765625, -0.0214385986328125, -0.0171051025390625, 0.018646240234375, 0.07305908203125, 0.032470703125, 0.032135009765625, 0.0005793571472167969, -0.031341552734375, 0.042755126953125, -0.0162200927734375, -0.056182861328125, -0.015228271484375, 0.007617950439453125, -0.0887451171875, -0.01500701904296875, -0.043182373046875, 0.009490966796875, -0.002979278564453125, 0.011566162109375, -0.036865234375, 0.001033782958984375, -0.09625244140625, -0.042266845703125, 0.061187744140625, 0.036224365234375, -0.01323699951171875, -0.04925537109375, 0.00826263427734375, 0.0251922607421875, -0.0008206367492675781, 0.00020992755889892578, 0.00827789306640625, -0.028472900390625, 0.0267486572265625, 0.0207672119140625, -0.00743865966796875, -0.0005102157592773438, 0.0018892288208007812, 0.01425933837890625, 0.07598876953125, -0.01363372802734375, -0.006687164306640625, 0.041046142578125, -0.037261962890625, -0.04351806640625, -0.001163482666015625, 0.0125732421875, 0.01242828369140625, -0.0535888671875, 0.0015716552734375, -0.00817108154296875, 0.022491455078125, 0.02435302734375, -0.00678253173828125, 0.000926971435546875, -0.01739501953125, 0.0244598388671875, 0.0212860107421875, 0.051239013671875, 0.06817626953125, 0.06634521484375, 0.047149658203125, 0.008056640625, 0.025054931640625, 0.0802001953125, -0.011932373046875, -0.0033359527587890625, -0.0036869049072265625, 0.04180908203125, 0.01666259765625, 0.0093231201171875, -0.004673004150390625, 0.05230712890625, 0.0128173828125, -0.0262603759765625, 0.042510986328125, -0.005237579345703125, 0.00020873546600341797, 0.033935546875, -0.0270843505859375, 0.0506591796875, -0.0010442733764648438, -0.113525390625, -0.0305633544921875, -0.030670166015625, -0.032073974609375, 0.05609130859375, 0.06268310546875, -0.0295867919921875, 0.035888671875, -0.0102081298828125, 0.01678466796875, 0.019073486328125, -0.01509857177734375, -0.0274505615234375, 0.059478759765625, 0.04705810546875, 0.01467132568359375, -0.07855224609375, -0.0361328125, 0.024261474609375, 0.006000518798828125, -0.034637451171875, 0.052093505859375, 0.0098724365234375, -0.002079010009765625, 0.022003173828125, 0.006114959716796875, 0.016265869140625, 0.017608642578125, -0.01300811767578125, 0.0192413330078125, 0.0228118896484375, -0.0176239013671875, 0.0132293701171875, 0.02764892578125, 0.0210723876953125, -0.008331298828125, 0.053955078125, -0.068603515625, 0.014251708984375, -0.01561737060546875, 0.030181884765625, -0.026397705078125, -0.0408935546875, -0.02691650390625, 0.005382537841796875, 0.01090240478515625, 0.0215606689453125, -0.006744384765625, -0.0216064453125, -0.034088134765625, -0.03887939453125, -0.0099639892578125, 0.0174713134765625, -0.06341552734375, 0.00433349609375, 0.0230255126953125, 0.0335693359375, 0.03466796875, -0.0142364501953125, 0.025390625, 0.0130157470703125, -0.0088653564453125, 0.03485107421875, -0.03759765625, 0.032196044921875, 0.00504302978515625, 0.0172271728515625, -0.037811279296875, -0.020965576171875, 0.03515625, 0.0047607421875, -0.0171051025390625, -0.032684326171875, 0.006061553955078125, 0.0006489753723144531, -0.0240631103515625, 0.03240966796875, -0.0136260986328125, 0.0005216598510742188, -0.04339599609375, 0.0196990966796875, 0.012054443359375, 0.014739990234375, -0.049530029296875, 0.042999267578125, -0.01274871826171875, 0.02001953125, -0.0012264251708984375, 0.04632568359375, -0.022216796875, -0.0019702911376953125, -0.047119140625, -0.03521728515625, -0.019775390625, 0.045928955078125, -0.0200042724609375, 0.0043487548828125, 0.013916015625, -0.019439697265625, -0.0162811279296875, 0.0038604736328125, 0.0235137939453125, 0.050750732421875, 0.04644775390625, -0.007904052734375, -0.005260467529296875, 0.0280914306640625, -0.00345611572265625, -0.00714111328125, -0.007568359375, 0.02880859375, -0.0141448974609375, -0.031585693359375, 0.0031833648681640625, 0.00395965576171875, -0.05072021484375, -0.1298828125, 0.03564453125, -0.0284576416015625, -0.039093017578125, -0.04742431640625, 0.030548095703125, 0.0157928466796875, -0.03033447265625, -0.0131988525390625, -0.017913818359375, -0.0164642333984375, 0.006465911865234375, 0.001689910888671875, 0.0013818740844726562, 0.050079345703125, -0.0014133453369140625, -0.03509521484375, -0.0222625732421875, -0.031219482421875, -0.00933837890625, -0.01508331298828125, 0.017974853515625, -0.01436614990234375, 0.02325439453125, -0.043426513671875, -0.05755615234375, -0.027008056640625, 0.01702880859375, -0.0294342041015625, -0.019775390625, -0.0186920166015625, -0.000247955322265625, 0.0439453125, 0.0465087890625, 0.018707275390625, -0.040802001953125, 0.03582763671875, -0.00913238525390625, -0.015167236328125, 0.00939178466796875, -0.00965118408203125, -0.0144500732421875, 0.00780487060546875, -0.0239410400390625, 0.01483917236328125, 0.0270843505859375, 0.00777435302734375, 0.004596710205078125, -0.0159454345703125, 0.006290435791015625, -0.0229644775390625, -0.0230712890625, 0.01421356201171875, 0.07000732421875, -0.04827880859375, -0.0101318359375, 0.009552001953125, 0.0093536376953125, 0.028564453125, -0.01073455810546875, 0.058197021484375, -0.032623291015625, -0.0165252685546875, 0.030029296875, 0.01219940185546875, 0.0131683349609375, -0.04290771484375, -0.056671142578125, -0.0260009765625, 0.01227569580078125, -0.00298309326171875, 0.0191497802734375, 0.025054931640625, -0.0242767333984375, 0.00704193115234375, 0.0200042724609375, -0.01605224609375, 0.07269287109375, -0.0111083984375, 0.029937744140625, 0.005321502685546875, 0.00305938720703125, 0.031707763671875, -0.0015163421630859375, 0.01265716552734375, 0.01526641845703125, -0.060150146484375, -0.033416748046875, -0.0178680419921875, 0.08526611328125, -0.024871826171875, 0.01363372802734375 ]
d09dc801d2e63d0694fa5bcc9f397dc1993d2c55
Wordpress Stackexchange Q: Problem : deletion failed, the theme requested does not exist I had an awkward problem when i want to delete my theme, it gaves me this message: deletion failed, the theme requested does not exist wordpress. I can delete it from ftp manually but for client i want it to be deleted just from dashboard. Is any one have an idea how to resolve this error. P.S. the theme works fine without any error. A: I found what cause this problem, the theme folder shouldn't have any space if you had two words or more on it for example if your theme's name is : twenty sixteen it should be written without space in one word twentysixteen. So all i had to do is make my theme's name in one word and my theme was deleted normally from the dashboard. I hope it will help someone else.
Q: Problem : deletion failed, the theme requested does not exist I had an awkward problem when i want to delete my theme, it gaves me this message: deletion failed, the theme requested does not exist wordpress. I can delete it from ftp manually but for client i want it to be deleted just from dashboard. Is any one have an idea how to resolve this error. P.S. the theme works fine without any error. A: I found what cause this problem, the theme folder shouldn't have any space if you had two words or more on it for example if your theme's name is : twenty sixteen it should be written without space in one word twentysixteen. So all i had to do is make my theme's name in one word and my theme was deleted normally from the dashboard. I hope it will help someone else. A: This can also happen if the Theme is moved out of the /themes folder, for example in to a sub-folder. A: Ok, I had the same issue and it started from the FTP prompt when trying to delete a theme. // Note I am doing this on my local environment, not a production site 1st step was to add define('FS_METHOD', 'direct'); Which then started the Deletion failed: The requested theme does not exist error But this is how to solve the whole issue altogether and you don't need the code define('FS_METHOD', 'direct'); You need to edit the httpd.conf file depending on your setup. Here is how I did it using xampp edit /opt/lampp/etc/httpd.conf <IfModule unixd_module> # # If you wish httpd to run as a different user or group, you must run # httpd as root initially and it will switch. # # User/Group: The name (or #number) of the user/group to run httpd as. # It is usually good practice to create a dedicated user and group for # running httpd, as with most system services. # User nobody Group nogroup </IfModule> Where the User nobody add your username there example User myuser and restart apache and boom! Hope this helps someone out there with an issue that was taking me hours and a lot of headaches.
wordpress
{ "language": "en", "length": 367, "provenance": "stackexchange_00019.jsonl.gz:468788", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/240965" }
[ -0.017578125, -0.0033130645751953125, -0.005321502685546875, 0.045135498046875, -0.00518035888671875, -0.015289306640625, 0.0294036865234375, -0.048675537109375, 0.004642486572265625, 0.044891357421875, -0.022247314453125, -0.0189361572265625, 0.054656982421875, -0.01087188720703125, -0.0010347366333007812, -0.032745361328125, 0.0016660690307617188, -0.00768280029296875, -0.00014090538024902344, -0.025421142578125, 0.01383209228515625, -0.0145721435546875, -0.006153106689453125, 0.025604248046875, -0.0029010772705078125, 0.00814056396484375, 0.0699462890625, -0.02117919921875, -0.039886474609375, -0.055084228515625, 0.01149749755859375, 0.053863525390625, -0.0142364501953125, 0.03582763671875, 0.0003616809844970703, -0.013031005859375, -0.01043701171875, 0.0249786376953125, 0.025665283203125, -0.01318359375, -0.003963470458984375, 0.00791168212890625, 0.01218414306640625, 0.02020263671875, -0.00566864013671875, -0.05841064453125, 0.004238128662109375, -0.056732177734375, 0.006305694580078125, 0.00939178466796875, -0.005588531494140625, 0.0341796875, 0.0229339599609375, -0.042144775390625, -0.0261077880859375, -0.0494384765625, 0.0188751220703125, 0.060821533203125, 0.031005859375, -0.0165863037109375, -0.038543701171875, 0.03564453125, 0.0198211669921875, -0.020843505859375, 0.012054443359375, -0.006031036376953125, -0.00969696044921875, 0.05047607421875, -0.06927490234375, -0.01081085205078125, 0.0213165283203125, -0.037445068359375, 0.02215576171875, 0.0024814605712890625, 0.0174407958984375, -0.049407958984375, 0.00003796815872192383, -0.0134429931640625, 0.02606201171875, 0.0107879638671875, 0.0229644775390625, -0.0117340087890625, -0.07708740234375, 0.0047454833984375, -0.0122222900390625, 0.00870513916015625, 0.001155853271484375, -0.00806427001953125, -0.0482177734375, -0.0188446044921875, -0.03741455078125, -0.061370849609375, -0.03326416015625, 0.0034351348876953125, -0.00848388671875, -0.0035953521728515625, 0.03204345703125, 0.10076904296875, -0.017181396484375, 0.032684326171875, -0.0190582275390625, -0.043121337890625, 0.0298614501953125, -0.07965087890625, -0.0102691650390625, 0.014739990234375, -0.0146331787109375, -0.042694091796875, -0.005558013916015625, 0.0296173095703125, -0.00939178466796875, -0.0268707275390625, 0.034515380859375, -0.03875732421875, -0.0180816650390625, 0.007358551025390625, -0.0005025863647460938, 0.008056640625, 0.0226898193359375, -0.01082611083984375, -0.00649261474609375, 0.0204620361328125, -0.07049560546875, 0.003963470458984375, -0.00004786252975463867, -0.024932861328125, -0.011474609375, 0.046630859375, 0.04888916015625, -0.00005364418029785156, -0.03704833984375, 0.0240478515625, 0.0297088623046875, -0.023956298828125, -0.0166015625, -0.0148773193359375, 0.042755126953125, 0.0184783935546875, -0.00608062744140625, -0.006298065185546875, 0.05767822265625, 0.01216888427734375, -0.00565338134765625, 0.00014793872833251953, 0.00006288290023803711, 0.036865234375, 0.01332855224609375, -0.00514984130859375, -0.0204925537109375, -0.06390380859375, 0.00019252300262451172, -0.0271453857421875, 0.048736572265625, -0.00897216796875, -0.023101806640625, -0.0638427734375, 0.03277587890625, -0.059417724609375, -0.006683349609375, -0.07025146484375, 0.0177459716796875, -0.00490570068359375, 0.0200042724609375, 0.008697509765625, -0.023223876953125, 0.007686614990234375, -0.04119873046875, -0.004322052001953125, 0.0204315185546875, 0.00794219970703125, -0.034210205078125, -0.0330810546875, -0.00719451904296875, 0.00946807861328125, -0.0033473968505859375, 0.048095703125, 0.0307159423828125, -0.034210205078125, 0.032135009765625, 0.034820556640625, -0.00018465518951416016, -0.00859832763671875, 0.021484375, -0.0052490234375, -0.05224609375, 0.01259613037109375, 0.031494140625, 0.0771484375, -0.0011920928955078125, 0.0209503173828125, 0.03924560546875, 0.01194000244140625, 0.025360107421875, -0.0235748291015625, -0.0123138427734375, -0.035736083984375, 0.0005459785461425781, 0.0006699562072753906, -0.01377105712890625, 0.024505615234375, -0.004878997802734375, 0.0021457672119140625, 0.01219940185546875, -0.038848876953125, -0.087646484375, 0.020355224609375, -0.039459228515625, 0.05645751953125, 0.00974273681640625, 0.030853271484375, 0.0044403076171875, -0.0009555816650390625, -0.004161834716796875, -0.0482177734375, -0.028900146484375, 0.02685546875, -0.0447998046875, -0.01448822021484375, -0.032440185546875, 0.036346435546875, -0.0269012451171875, -0.0153961181640625, -0.03802490234375, -0.010894775390625, 0.0279693603515625, 0.01113128662109375, -0.026824951171875, -0.0131988525390625, 0.0244293212890625, 0.00830841064453125, -0.003086090087890625, 0.0284423828125, 0.027862548828125, 0.0272369384765625, -0.0107879638671875, 0.005458831787109375, -0.01020050048828125, -0.07952880859375, -0.0013189315795898438, 0.0474853515625, 0.0168304443359375, 0.0794677734375, -0.0286865234375, 0.01113128662109375, 0.03424072265625, -0.0775146484375, -0.0238800048828125, 0.023101806640625, 0.036895751953125, 0.004787445068359375, 0.04791259765625, -0.0545654296875, 0.0240325927734375, -0.0343017578125, 0.036773681640625, 0.0016384124755859375, -0.0172271728515625, -0.0159912109375, -0.01654052734375, -0.020050048828125, 0.0162506103515625, -0.0161285400390625, -0.05010986328125, 0.0019969940185546875, 0.05108642578125, -0.003917694091796875, 0.010589599609375, 0.00713348388671875, -0.01218414306640625, 0.0008077621459960938, 0.0227203369140625, -0.059478759765625, 0.00170135498046875, 0.047088623046875, 0.0006742477416992188, 0.06549072265625, -0.049560546875, -0.01187896728515625, 0.038238525390625, 0.04547119140625, -0.018829345703125, 0.0033855438232421875, -0.0262451171875, -0.01800537109375, 0.00801849365234375, -0.0103912353515625, 0.0026340484619140625, -0.00228118896484375, 0.043304443359375, 0.0173492431640625, 0.006702423095703125, 0.032073974609375, -0.0250701904296875, 0.05938720703125, 0.0257415771484375, -0.007549285888671875, 0.036834716796875, -0.018524169921875, 0.025146484375, -0.00946044921875, 0.01617431640625, 0.053863525390625, -0.0032634735107421875, 0.005298614501953125, 0.03369140625, 0.0207977294921875, 0.06890869140625, 0.004833221435546875, 0.0134735107421875, 0.038543701171875, -0.052947998046875, 0.00864410400390625, 0.0262451171875, 0.006443023681640625, 0.0117034912109375, -0.019622802734375, -0.01435089111328125, 0.033599853515625, -0.060333251953125, -0.060516357421875, 0.03253173828125, 0.0184326171875, 0.0007424354553222656, -0.0234222412109375, 0.01093292236328125, -0.0258941650390625, -0.018646240234375, -0.0089569091796875, 0.0533447265625, -0.03466796875, -0.039031982421875, -0.037750244140625, -0.0723876953125, -0.060333251953125, 0.006195068359375, -0.00652313232421875, 0.002666473388671875, 0.080078125, 0.00481414794921875, -0.0445556640625, 0.0059661865234375, -0.0236053466796875, -0.004390716552734375, 0.0323486328125, 0.0361328125, -0.00470733642578125, -0.01128387451171875, 0.0291290283203125, 0.0279388427734375, 0.0430908203125, -0.065185546875, -0.041717529296875, -0.03521728515625, -0.053466796875, -0.0426025390625, 0.053375244140625, 0.050506591796875, -0.07769775390625, -0.0044708251953125, -0.0965576171875, -0.031341552734375, -0.002658843994140625, -0.036956787109375, 0.06719970703125, 0.0279998779296875, -0.01495361328125, -0.01120758056640625, 0.034210205078125, 0.0010175704956054688, 0.0191802978515625, -0.00885009765625, -0.0009517669677734375, 0.04205322265625, -0.007160186767578125, -0.00949859619140625, -0.026641845703125, 0.033782958984375, -0.029052734375, 0.0243072509765625, 0.0169219970703125, 0.004230499267578125, -0.015716552734375, -0.01020050048828125, -0.042816162109375, -0.010711669921875, 0.0242919921875, 0.01107025146484375, 0.04107666015625, -0.008026123046875, -0.025909423828125, -0.0083160400390625, 0.056671142578125, -0.01540374755859375, -0.03900146484375, -0.00884246826171875, 0.018829345703125, 0.025238037109375, 0.0039520263671875, 0.03955078125, -0.042694091796875, -0.08795166015625, 0.00396728515625, 0.0055084228515625, -0.05145263671875, 0.00037932395935058594, -0.028961181640625, -0.05419921875, -0.034912109375, 0.05804443359375, -0.03533935546875, 0.037750244140625, -0.0275726318359375, 0.02703857421875, -0.049896240234375, -0.0311431884765625, -0.02459716796875, -0.0181884765625, 0.003631591796875, -0.037109375, 0.00989532470703125, -0.00862884521484375, 0.053253173828125, -0.013519287109375, 0.0260772705078125, 0.045379638671875, 0.057708740234375, -0.020355224609375, -0.047698974609375, 0.0130615234375, -0.0002084970474243164, -0.003910064697265625, -0.004146575927734375, -0.0012969970703125, 0.0006260871887207031, -0.0533447265625, 0.0178680419921875, 0.007671356201171875, 0.01971435546875, 0.0482177734375, -0.04949951171875, -0.00484466552734375, -0.005523681640625, -0.012725830078125, 0.0009622573852539062, 0.0011911392211914062, -0.01654052734375, 0.0009217262268066406, -0.014312744140625, 0.05767822265625, -0.0222320556640625, -0.01372528076171875, 0.0266876220703125, 0.10870361328125, 0.0010175704956054688, -0.015350341796875, -0.1075439453125, -0.004154205322265625, 0.0238189697265625, 0.0228118896484375, -0.01018524169921875, -0.00748443603515625, -0.01131439208984375, -0.00145721435546875, 0.006237030029296875, -0.0242462158203125, 0.0002930164337158203, 0.040679931640625, -0.00873565673828125, -0.01439666748046875, -0.00897979736328125, -0.04827880859375, 0.052276611328125, 0.0176544189453125, 0.021270751953125, 0.0012836456298828125, 0.041290283203125, -0.004261016845703125, -0.0030040740966796875, -0.030731201171875, -0.01168060302734375, -0.0187530517578125, 0.0200042724609375, -0.016998291015625, -0.01204681396484375, -0.0290985107421875, 0.0256195068359375, -0.02252197265625, -0.00487518310546875, -0.002696990966796875, -0.0266265869140625, 0.0070953369140625, -0.03741455078125, 0.021881103515625, -0.006610870361328125, -0.021270751953125, -0.028900146484375, -0.0169830322265625, 0.0838623046875, 0.01137542724609375, -0.03997802734375, -0.033203125, 0.00795745849609375, 0.02606201171875, -0.0014400482177734375, 0.0225372314453125, 0.0195465087890625, 0.0262298583984375, -0.0034313201904296875, -0.016998291015625, 0.0216064453125, 0.0110626220703125, -0.026611328125, 0.033172607421875, -0.0032520294189453125, 0.0019702911376953125, 0.028839111328125, 0.00798797607421875, -0.0025196075439453125, 0.0138702392578125, -0.005474090576171875, 0.00580596923828125, -0.0036640167236328125, 0.045166015625, 0.0287628173828125, -0.042877197265625, 0.0113677978515625, 0.01678466796875, -0.0233917236328125, -0.02117919921875, 0.0010547637939453125, 0.017852783203125, 0.023956298828125, -0.033111572265625, -0.022125244140625, 0.042877197265625, -0.0247344970703125, 0.020355224609375, 0.012359619140625, -0.039703369140625, -0.05462646484375, 0.007354736328125, 0.0147705078125, 0.0128173828125, -0.03619384765625, -0.0203704833984375, 0.0028705596923828125, -0.02191162109375, 0.00897216796875, 0.068359375, -0.0296478271484375, 0.01522064208984375, 0.0110626220703125, 0.0098876953125, 0.00638580322265625, 0.005504608154296875, 0.0064697265625, -0.02630615234375, -0.015716552734375, -0.0287017822265625, 0.041046142578125, -0.0255584716796875, 0.0247039794921875, -0.0253448486328125, 0.0025177001953125, 0.032440185546875, 0.0006227493286132812, 0.05987548828125, 0.025360107421875, -0.05181884765625, -0.00635528564453125, -0.03961181640625, -0.01427459716796875, -0.01024627685546875, -0.040679931640625, -0.03607177734375, -0.002468109130859375, 0.0233612060546875, 0.011962890625, -0.01067352294921875, -0.0205230712890625, -0.00665283203125, 0.033416748046875, 0.0113372802734375, 0.04498291015625, -0.031768798828125, 0.0142059326171875, 0.032318115234375, 0.01277923583984375, -0.003612518310546875, 0.01105499267578125, 0.0270538330078125, -0.0229949951171875, 0.0211334228515625, -0.0224151611328125, -0.00251007080078125, -0.0186614990234375, -0.006793975830078125, -0.0345458984375, 0.026519775390625, -0.004604339599609375, -0.01824951171875, -0.028289794921875, -0.00787353515625, -0.0270233154296875, 0.08673095703125, 0.00128173828125, 0.00325775146484375, 0.00518035888671875, -0.058349609375, -0.0016422271728515625, 0.0268402099609375, 0.023223876953125, -0.0033893585205078125, -0.0443115234375, -0.017547607421875, 0.06817626953125, -0.036041259765625, 0.056854248046875, 0.0304412841796875, -0.0428466796875, -0.00311279296875, -0.01334381103515625, -0.024505615234375, -0.00968170166015625, 0.044586181640625, -0.0308380126953125, -0.039581298828125, 0.01116180419921875, 0.01551055908203125, -0.0178680419921875, -0.00431060791015625, -0.0166778564453125, -0.01314544677734375, 0.07745361328125, 0.07568359375, -0.09320068359375, -0.0178375244140625, 0.01377105712890625, 0.01348114013671875, 0.004638671875, -0.003543853759765625, 0.048980712890625, 0.007904052734375, 0.0306854248046875, 0.00598907470703125, -0.0012722015380859375, 0.00860595703125, -0.041656494140625, -0.00860595703125, -0.00600433349609375, -0.0006966590881347656, 0.00363922119140625, -0.058502197265625, -0.0036907196044921875, 0.04888916015625, -0.043548583984375, -0.0142059326171875, 0.00794219970703125, -0.005382537841796875, -0.01155853271484375, -0.05133056640625, -0.003387451171875, -0.0218353271484375, 0.00040531158447265625, -0.004863739013671875, -0.001407623291015625, 0.0008778572082519531, 0.04095458984375, -0.03131103515625, 0.0203094482421875, 0.00934600830078125, 0.01081085205078125, 0.018035888671875, 0.0134124755859375, 0.07965087890625, -0.0135040283203125, -0.051025390625, 0.01421356201171875, -0.052825927734375, -0.0369873046875, -0.0289154052734375, -0.044464111328125, 0.073974609375, -0.041839599609375, 0.0069732666015625, 0.04119873046875, 0.046875, -0.031768798828125, -0.01436614990234375, 0.0567626953125, -0.047943115234375, 0.0010395050048828125, 0.007785797119140625, 0.023223876953125, -0.0160369873046875, -0.0003559589385986328, -0.045684814453125, 0.061126708984375, -0.01953125, -0.00835418701171875, -0.006351470947265625, 0.04638671875, -0.0058746337890625, 0.020263671875, -0.0257415771484375, 0.022216796875, -0.0189056396484375, 0.0098114013671875, -0.00008124113082885742, 0.026214599609375, -0.01338958740234375, -0.01332855224609375, 0.05670166015625, -0.0062408447265625, -0.0025959014892578125, 0.00081634521484375, 0.0545654296875, 0.0279541015625, -0.0049896240234375, 0.0183563232421875, -0.03570556640625, -0.02880859375, -0.017486572265625, -0.0279693603515625, 0.01415252685546875, -0.026885986328125, -0.0548095703125, -0.0145416259765625, -0.0009732246398925781, 0.00794219970703125, 0.0340576171875, 0.0113372802734375, -0.0239715576171875, 0.002780914306640625, 0.01325225830078125, -0.01226806640625, -0.01329803466796875, 0.015716552734375, 0.033416748046875, -0.08428955078125, -0.054046630859375, -0.0181884765625, 0.041046142578125, 0.0275421142578125, -0.013519287109375, 0.00885772705078125, -0.0012769699096679688, 0.0113677978515625, -0.0484619140625, -0.0170135498046875, 0.01044464111328125, -0.0185546875, 0.0197296142578125, 0.01055145263671875, 0.014495849609375, -0.03863525390625, 0.014678955078125, 0.03057861328125, 0.038330078125, -0.038177490234375, -0.045440673828125, 0.00984954833984375, -0.00214385986328125, 0.00013124942779541016, 0.0172576904296875, -0.006092071533203125, 0.02386474609375, 0.04534912109375, -0.038787841796875, 0.017913818359375, 0.016632080078125, 0.006557464599609375, -0.018280029296875, -0.0077972412109375, -0.0111083984375, 0.0302734375, -0.0145111083984375, 0.038909912109375, 0.0017004013061523438, 0.01751708984375, -0.037384033203125, 0.019622802734375, -0.053680419921875, 0.00493621826171875, 0.01273345947265625, 0.0294647216796875, -0.0196075439453125, -0.00571441650390625, -0.026458740234375, -0.0589599609375, -0.00518035888671875, 0.047210693359375, -0.00006175041198730469, -0.0308380126953125, 0.037994384765625, 0.04571533203125, -0.0233001708984375, -0.032684326171875, -0.048126220703125, -0.0275726318359375, -0.026641845703125, -0.002445220947265625, -0.021881103515625, 0.0088348388671875, -0.0200347900390625, -0.0002269744873046875, 0.03631591796875, 0.00864410400390625, 0.00859832763671875, -0.01551055908203125, 0.0018367767333984375, -0.006053924560546875, 0.037628173828125, -0.0300445556640625, -0.00920867919921875, 0.00843048095703125, -0.052337646484375, 0.0076446533203125, -0.051422119140625, 0.001789093017578125, -0.0155487060546875, 0.009735107421875, 0.0134124755859375, 0.01538848876953125, 0.006534576416015625, -0.035919189453125, 0.007801055908203125, 0.0276947021484375, 0.008087158203125, 0.01708984375, 0.01203155517578125, 0.004085540771484375, -0.044403076171875, -0.04559326171875, -0.0014495849609375, 0.043548583984375, -0.006450653076171875, 0.095703125, -0.01552581787109375, -0.0020503997802734375, -0.0227508544921875, 0.023712158203125, -0.03228759765625, -0.039093017578125, 0.06005859375, 0.0005021095275878906, 0.00040650367736816406, -0.0172882080078125, -0.09893798828125, -0.0007529258728027344, 0.0162353515625, -0.041290283203125, 0.0004935264587402344, -0.00579071044921875, 0.0276641845703125, 0.00031447410583496094, -0.0278472900390625, -0.01715087890625, -0.054168701171875, -0.0028667449951171875, 0.05120849609375, -0.022491455078125, 0.035064697265625, -0.00984954833984375, 0.0131072998046875, 0.0157012939453125, -0.034271240234375, 0.0263519287109375, -0.0301361083984375, 0.0253448486328125, 0.022125244140625, 0.025115966796875, -0.0701904296875, -0.040435791015625, -0.014801025390625, -0.00182342529296875, 0.0016107559204101562, 0.054443359375, -0.01229095458984375, 0.01558685302734375, 0.0037441253662109375, -0.02056884765625, -0.0044097900390625, -0.045684814453125, -0.0261077880859375, 0.0260009765625, 0.0114593505859375, 0.0179443359375, 0.018463134765625, -0.0014543533325195312, -0.01708984375, -0.0188751220703125, 0.012786865234375, -0.012420654296875, -0.0023288726806640625, -0.0345458984375, 0.043121337890625, 0.026580810546875, 0.004726409912109375, -0.05963134765625, 0.04315185546875, -0.0278167724609375, 0.03753662109375, 0.002986907958984375, -0.01776123046875, 0.006702423095703125, 0.004795074462890625, -0.032867431640625, -0.00920867919921875, -0.01296234130859375, 0.014373779296875, 0.0012407302856445312, -0.01221466064453125, 0.00734710693359375, 0.013671875, 0.000988006591796875, -0.0121612548828125, -0.03521728515625, 0.039276123046875, -0.007045745849609375, -0.04205322265625, 0.019744873046875, -0.034759521484375, -0.01153564453125, -0.0210418701171875, 0.0248260498046875, -0.0701904296875, -0.041961669921875, -0.050567626953125, 0.00777435302734375, 0.006183624267578125, -0.039398193359375, -0.05816650390625, 0.021759033203125, -0.0014944076538085938, -0.02593994140625, -0.050689697265625, -0.008819580078125, -0.024871826171875, 0.020416259765625, -0.006015777587890625, -0.02880859375, -0.01207733154296875, 0.06292724609375, 0.00821685791015625, 0.0274505615234375, 0.00335693359375, 0.01025390625, -0.025360107421875, 0.01125335693359375, 0.0066986083984375, 0.0033893585205078125, 0.0024967193603515625, -0.015045166015625, 0.029205322265625, 0.07275390625, -0.011138916015625, -0.038848876953125, -0.0301361083984375, -0.049346923828125, -0.032379150390625, -0.022369384765625, 0.0227203369140625, -0.01235198974609375, 0.023468017578125, 0.017669677734375, -0.0068817138671875, -0.00891876220703125, -0.060333251953125, -0.0693359375, 0.017822265625, -0.018829345703125, 0.0179595947265625, -0.1058349609375, -0.0017910003662109375, 0.041229248046875, -0.0214996337890625, 0.01406097412109375, -0.0308837890625, -0.0487060546875, -0.0070343017578125, -0.033538818359375, 0.0340576171875, -0.069091796875, -0.0251617431640625, 0.0450439453125, -0.007465362548828125, 0.035919189453125, -0.03729248046875, 0.0325927734375, 0.055450439453125, 0.0157470703125, 0.01044464111328125, 0.017547607421875, -0.0689697265625, 0.004413604736328125, 0.002532958984375, 0.042327880859375, -0.035491943359375, -0.0350341796875, 0.032379150390625, 0.0128631591796875, -0.034759521484375, 0.0018072128295898438, 0.0189056396484375, 0.035552978515625, -0.041595458984375, 0.07537841796875, 0.007030487060546875, 0.023406982421875, -0.01251983642578125, 0.056304931640625, 0.00620269775390625, -0.02447509765625, 0.016448974609375, -0.032867431640625, 0.00894927978515625, -0.0006875991821289062, 0.045928955078125, -0.053619384765625, 0.061279296875, 0.0272216796875, 0.04083251953125, 0.050262451171875 ]
bed4a1a7d34b7c17efe5adf01d6bb4d9596f0cf5
Wordpress Stackexchange Q: How to Add an Index to Plugin Database table I've created some additional tables for a plugin I'm developing and need to add indexes to these tables. What's the WordPress way to do this? Using dbDelta() doesn't seem to be working, and I'm not seeing any error in the logs. A: You can execute arbitrary SQL statements with wpdb::query(), including Data Definition Statements, e.g. function create_index () { global $wpdb ; $sql = "CREATE INDEX my_index ON {$wpdb->prefix}my_table (my_column)" ; $wpdb->query ($sql) ; return ; } Note: Because $wpdb->query() can execute arbitrary SQL, if the statement you pass to it contains ANY user input, then you should use wpdb::prepare() to protect against SQL Injection attacks. But this raises the question: how did you create your plugin-specific tables? "Manually" or programmatically? If programmatically, did you not use $wpdb->query()? If you did it "manually", then you really should create the tables (and their indexes) upon plugin activation. See the excellent answer to this other WPSE question for how to hook into plugin activation (and/or deactivation and uninstall) to do things like create private tables.
Q: How to Add an Index to Plugin Database table I've created some additional tables for a plugin I'm developing and need to add indexes to these tables. What's the WordPress way to do this? Using dbDelta() doesn't seem to be working, and I'm not seeing any error in the logs. A: You can execute arbitrary SQL statements with wpdb::query(), including Data Definition Statements, e.g. function create_index () { global $wpdb ; $sql = "CREATE INDEX my_index ON {$wpdb->prefix}my_table (my_column)" ; $wpdb->query ($sql) ; return ; } Note: Because $wpdb->query() can execute arbitrary SQL, if the statement you pass to it contains ANY user input, then you should use wpdb::prepare() to protect against SQL Injection attacks. But this raises the question: how did you create your plugin-specific tables? "Manually" or programmatically? If programmatically, did you not use $wpdb->query()? If you did it "manually", then you really should create the tables (and their indexes) upon plugin activation. See the excellent answer to this other WPSE question for how to hook into plugin activation (and/or deactivation and uninstall) to do things like create private tables. A: Using dbDelta, on top of a PRIMARY KEY, you can include the word KEY to create an index for other columns: You must use the key word KEY rather than its synonym INDEX and you must include at least one KEY. Example from schema.php in core: CREATE TABLE $wpdb->termmeta ( meta_id bigint(20) unsigned NOT NULL auto_increment, term_id bigint(20) unsigned NOT NULL default '0', meta_key varchar(255) default NULL, meta_value longtext, PRIMARY KEY (meta_id), KEY term_id (term_id), KEY meta_key (meta_key($max_index_length)) ) $charset_collate; Source: codex - Creating Tables with Plugins
wordpress
{ "language": "en", "length": 271, "provenance": "stackexchange_00019.jsonl.gz:468807", "question_score": "12", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/241035" }
[ 0.06341552734375, 0.031646728515625, -0.0058135986328125, -0.016357421875, 0.0447998046875, -0.0400390625, 0.033447265625, -0.031280517578125, -0.005084991455078125, 0.0214691162109375, -0.038238525390625, 0.010162353515625, -0.039703369140625, -0.0160369873046875, -0.0197296142578125, -0.053497314453125, 0.0239410400390625, -0.027313232421875, 0.0021991729736328125, -0.0160064697265625, 0.0181427001953125, -0.0024814605712890625, 0.024017333984375, -0.0008492469787597656, 0.01148223876953125, -0.032379150390625, 0.09588623046875, -0.0235748291015625, 0.05126953125, -0.005702972412109375, 0.029876708984375, -0.07025146484375, -0.015869140625, 0.024322509765625, 0.037200927734375, 0.004032135009765625, 0.014373779296875, 0.02667236328125, 0.03216552734375, 0.01537322998046875, 0.053497314453125, -0.0195770263671875, 0.0090179443359375, 0.0310516357421875, -0.005146026611328125, -0.04412841796875, 0.07672119140625, -0.01493072509765625, -0.005794525146484375, -0.035675048828125, -0.0100860595703125, 0.07391357421875, 0.01171112060546875, -0.0799560546875, 0.01062774658203125, 0.030517578125, -0.0160675048828125, 0.0139312744140625, -0.0025959014892578125, 0.07098388671875, -0.0008249282836914062, 0.0399169921875, -0.0276031494140625, -0.048553466796875, 0.03302001953125, 0.00484466552734375, 0.01364898681640625, 0.0225372314453125, -0.0017099380493164062, 0.035064697265625, 0.0017337799072265625, -0.039642333984375, -0.020721435546875, 0.0262298583984375, -0.03802490234375, -0.029327392578125, 0.04522705078125, -0.023193359375, -0.01015472412109375, 0.043487548828125, 0.03570556640625, 0.00322723388671875, -0.0084381103515625, -0.027862548828125, 0.01078033447265625, -0.0253753662109375, 0.006805419921875, -0.01244354248046875, -0.005596160888671875, 0.01412200927734375, -0.011962890625, -0.01375579833984375, 0.004871368408203125, 0.032562255859375, -0.004486083984375, -0.02008056640625, 0.028411865234375, 0.0267486572265625, -0.0107879638671875, 0.0253143310546875, 0.0382080078125, -0.06231689453125, 0.06280517578125, -0.03936767578125, 0.00727081298828125, 0.047027587890625, -0.014190673828125, -0.039398193359375, 0.0172119140625, 0.020904541015625, 0.016082763671875, -0.00501251220703125, -0.0037784576416015625, -0.03021240234375, -0.01013946533203125, 0.003551483154296875, -0.026092529296875, -0.002197265625, 0.00472259521484375, -0.0197906494140625, -0.0203704833984375, -0.007080078125, -0.0655517578125, 0.006195068359375, -0.01325225830078125, -0.06378173828125, -0.0021495819091796875, 0.07012939453125, -0.0282440185546875, -0.0030574798583984375, -0.0084381103515625, 0.035186767578125, 0.07012939453125, 0.0274810791015625, 0.0000152587890625, 0.00856781005859375, 0.04632568359375, 0.005901336669921875, -0.004154205322265625, 0.01218414306640625, -0.0123443603515625, -0.0184173583984375, -0.022186279296875, -0.035247802734375, -0.0206756591796875, -0.00720977783203125, 0.0252227783203125, 0.006988525390625, -0.029266357421875, -0.00010967254638671875, -0.036102294921875, 0.020172119140625, 0.0028171539306640625, 0.0141143798828125, -0.0085906982421875, -0.0036563873291015625, 0.0017852783203125, -0.0135498046875, 0.003772735595703125, -0.0090179443359375, 0.018951416015625, -0.02093505859375, 0.00005620718002319336, -0.030242919921875, -0.0300750732421875, 0.016571044921875, -0.06365966796875, -0.0029735565185546875, 0.04217529296875, 0.0308837890625, 0.00713348388671875, -0.04638671875, 0.0328369140625, 0.0185089111328125, -0.00798797607421875, 0.034820556640625, -0.0127105712890625, -0.02191162109375, 0.07598876953125, -0.01326751708984375, -0.0249786376953125, -0.0022411346435546875, 0.1007080078125, -0.0214996337890625, -0.05438232421875, 0.06658935546875, -0.0010089874267578125, 0.08685302734375, 0.0276336669921875, 0.0149688720703125, 0.00543975830078125, -0.00959014892578125, -0.047210693359375, 0.041717529296875, 0.0238189697265625, -0.04156494140625, -0.0181884765625, -0.0302886962890625, -0.0014886856079101562, -0.0165863037109375, -0.0268096923828125, 0.020660400390625, -0.0018434524536132812, 0.0027866363525390625, -0.050323486328125, 0.0246429443359375, -0.0213165283203125, 0.045196533203125, 0.034942626953125, 0.002185821533203125, -0.004978179931640625, -0.0005888938903808594, -0.005764007568359375, -0.0277862548828125, -0.050537109375, -0.0066375732421875, -0.0206146240234375, 0.047119140625, 0.005828857421875, 0.040740966796875, 0.019439697265625, -0.0335693359375, 0.0261688232421875, -0.013916015625, 0.0335693359375, -0.0205078125, 0.0022983551025390625, -0.02069091796875, 0.037353515625, -0.01116180419921875, 0.0145263671875, 0.03460693359375, 0.0244293212890625, 0.0276031494140625, -0.00696563720703125, -0.01232147216796875, -0.0028438568115234375, -0.103271484375, 0.0140228271484375, 0.051910400390625, 0.031982421875, 0.0102081298828125, -0.0233306884765625, -0.00952911376953125, 0.01065826416015625, -0.035400390625, 0.01104736328125, -0.004337310791015625, 0.006977081298828125, 0.04620361328125, -0.0303802490234375, 0.009552001953125, 0.0174102783203125, 0.021087646484375, -0.01093292236328125, 0.03143310546875, -0.02001953125, -0.01418304443359375, 0.025360107421875, -0.040679931640625, 0.018707275390625, -0.041229248046875, -0.023406982421875, -0.0113677978515625, 0.0164031982421875, -0.0013971328735351562, 0.0506591796875, 0.0340576171875, 0.01036834716796875, -0.0157012939453125, 0.004009246826171875, -0.0225372314453125, 0.0004031658172607422, -0.01451873779296875, -0.0199127197265625, 0.022796630859375, -0.038604736328125, 0.00820159912109375, 0.035369873046875, 0.0010652542114257812, -0.0111846923828125, 0.017578125, -0.05718994140625, -0.0217437744140625, -0.018646240234375, -0.049072265625, -0.0224151611328125, -0.00775909423828125, -0.07379150390625, -0.051910400390625, 0.00017786026000976562, 0.0109405517578125, -0.058197021484375, 0.01806640625, -0.006076812744140625, -0.0203094482421875, 0.01537322998046875, -0.0418701171875, 0.03131103515625, -0.05120849609375, 0.03546142578125, 0.05035400390625, -0.0201568603515625, -0.01483154296875, 0.0062408447265625, -0.0214385986328125, 0.00390625, 0.00879669189453125, -0.01165008544921875, -0.00688934326171875, -0.034576416015625, 0.044342041015625, 0.024749755859375, 0.042388916015625, 0.01318359375, -0.040679931640625, 0.0178680419921875, 0.05633544921875, -0.045318603515625, -0.058868408203125, -0.00600433349609375, -0.0341796875, -0.0004019737243652344, -0.0413818359375, -0.02880859375, 0.0085906982421875, -0.036529541015625, 0.00024127960205078125, -0.01031494140625, -0.0187835693359375, -0.0277557373046875, -0.03326416015625, -0.0511474609375, 0.00905609130859375, 0.0032825469970703125, 0.0167236328125, -0.007488250732421875, 0.0025959014892578125, -0.0218353271484375, -0.018798828125, -0.0234832763671875, -0.05078125, 0.008575439453125, -0.0292510986328125, 0.01543426513671875, 0.0169219970703125, -0.01255035400390625, 0.0284881591796875, -0.0162811279296875, 0.020233154296875, -0.0308990478515625, -0.03900146484375, 0.033721923828125, 0.035919189453125, 0.0266265869140625, 0.019012451171875, -0.03948974609375, 0.0159454345703125, -0.002750396728515625, -0.04888916015625, 0.0300445556640625, 0.002246856689453125, 0.002399444580078125, -0.10369873046875, -0.03863525390625, 0.000972747802734375, -0.044281005859375, -0.0088348388671875, 0.052276611328125, 0.037567138671875, 0.020263671875, 0.0200347900390625, -0.027740478515625, -0.01145172119140625, -0.00957489013671875, -0.046234130859375, 0.018035888671875, -0.03118896484375, -0.040679931640625, -0.004711151123046875, -0.0230255126953125, -0.007213592529296875, -0.00969696044921875, -0.00885009765625, -0.010009765625, 0.004062652587890625, -0.022216796875, 0.025848388671875, -0.0098419189453125, 0.00945281982421875, -0.006496429443359375, 0.046356201171875, -0.03802490234375, -0.01508331298828125, 0.01003265380859375, 0.0236053466796875, -0.059234619140625, -0.04534912109375, -0.0511474609375, -0.00524139404296875, -0.0478515625, -0.0016803741455078125, 0.0009946823120117188, -0.04132080078125, 0.00559234619140625, -0.0616455078125, -0.022735595703125, -0.03961181640625, 0.03338623046875, -0.0104827880859375, -0.0197906494140625, 0.030181884765625, -0.03521728515625, 0.0002655982971191406, -0.0095062255859375, -0.002742767333984375, -0.07470703125, -0.0230712890625, -0.05169677734375, 0.06414794921875, 0.0288848876953125, -0.01380157470703125, -0.0115966796875, 0.0360107421875, -0.01071929931640625, 0.02435302734375, 0.0035381317138671875, 0.027008056640625, -0.0214385986328125, -0.03155517578125, 0.007114410400390625, -0.046173095703125, 0.00188446044921875, -0.0518798828125, -0.0026397705078125, 0.025238037109375, -0.032470703125, 0.05389404296875, -0.0465087890625, 0.0088958740234375, -0.007720947265625, -0.025421142578125, -0.0213623046875, 0.0195770263671875, -0.023712158203125, 0.004833221435546875, -0.0296630859375, -0.0218505859375, 0.038482666015625, -0.0237579345703125, 0.008056640625, 0.0024967193603515625, 0.07977294921875, 0.0177459716796875, -0.00951385498046875, -0.0163421630859375, -0.006557464599609375, 0.024261474609375, 0.04339599609375, 0.028533935546875, 0.00460052490234375, -0.0159149169921875, 0.052215576171875, 0.0198974609375, -0.0206451416015625, -0.038665771484375, 0.0672607421875, -0.00479888916015625, -0.023834228515625, 0.00928497314453125, -0.038360595703125, 0.025360107421875, 0.0302886962890625, -0.0137939453125, -0.0008454322814941406, -0.0048675537109375, 0.018890380859375, -0.01084136962890625, 0.00382232666015625, -0.02001953125, -0.0250091552734375, 0.00751495361328125, 0.0016202926635742188, -0.005596160888671875, 0.01824951171875, -0.007671356201171875, -0.01837158203125, -0.0263824462890625, -0.00354766845703125, 0.0155792236328125, 0.056488037109375, -0.00879669189453125, 0.042694091796875, 0.0019245147705078125, -0.024658203125, -0.038848876953125, -0.00891876220703125, 0.049957275390625, -0.0357666015625, -0.07440185546875, 0.0087127685546875, -0.03973388671875, -0.0015783309936523438, 0.058349609375, -0.01947021484375, 0.026611328125, 0.037109375, -0.0106658935546875, -0.00820159912109375, -0.02947998046875, 0.0171051025390625, -0.033111572265625, 0.00328826904296875, 0.0163421630859375, -0.003269195556640625, 0.020599365234375, 0.05462646484375, -0.002964019775390625, 0.03167724609375, -0.00846099853515625, 0.053009033203125, 0.0313720703125, 0.0294189453125, 0.01038360595703125, -0.0196685791015625, 0.0023746490478515625, -0.006191253662109375, -0.01861572265625, -0.031890869140625, 0.006195068359375, -0.0216064453125, 0.0095672607421875, -0.0247955322265625, -0.0254974365234375, 0.0662841796875, 0.0007605552673339844, -0.01617431640625, -0.00318145751953125, -0.0024852752685546875, 0.0077972412109375, -0.036224365234375, -0.0157012939453125, 0.05133056640625, 0.041778564453125, 0.00208282470703125, -0.004779815673828125, -0.04779052734375, 0.007617950439453125, -0.0037078857421875, 0.0175628662109375, -0.020660400390625, -0.0295867919921875, 0.0217437744140625, -0.0177764892578125, -0.04290771484375, -0.01087188720703125, 0.0005068778991699219, 0.00028252601623535156, -0.0041351318359375, 0.00728607177734375, -0.025390625, 0.077392578125, -0.0306549072265625, -0.0361328125, -0.02618408203125, 0.009185791015625, 0.0316162109375, 0.0292205810546875, 0.015960693359375, -0.030609130859375, -0.0155792236328125, -0.035980224609375, -0.016357421875, -0.001987457275390625, -0.0161895751953125, 0.00009328126907348633, 0.01432037353515625, -0.01120758056640625, 0.01357269287109375, -0.03656005859375, -0.01467132568359375, 0.0220947265625, 0.02886962890625, -0.047454833984375, -0.00888824462890625, 0.052764892578125, -0.0133514404296875, 0.02532958984375, 0.03240966796875, 0.026458740234375, -0.01013946533203125, -0.01049041748046875, 0.01727294921875, -0.0268402099609375, -0.031768798828125, -0.0234832763671875, -0.033905029296875, 0.005107879638671875, 0.036773681640625, -0.0162353515625, 0.033416748046875, -0.000499725341796875, -0.0073699951171875, -0.002925872802734375, 0.0670166015625, 0.00597381591796875, 0.0472412109375, 0.054962158203125, -0.051361083984375, 0.025177001953125, -0.007030487060546875, 0.0072021484375, 0.0227813720703125, -0.051788330078125, 0.01496124267578125, 0.0447998046875, -0.08038330078125, 0.06341552734375, 0.050445556640625, 0.0237274169921875, 0.044097900390625, -0.0253753662109375, 0.0222625732421875, 0.01629638671875, -0.045135498046875, -0.0098724365234375, 0.043975830078125, 0.04986572265625, -0.0078887939453125, -0.0184478759765625, 0.03179931640625, -0.032623291015625, 0.0297088623046875, 0.034515380859375, 0.037384033203125, -0.1009521484375, 0.0252532958984375, -0.00823974609375, -0.030670166015625, 0.01473236083984375, -0.016876220703125, -0.00885772705078125, -0.0220794677734375, 0.004314422607421875, 0.0555419921875, -0.047607421875, -0.0187530517578125, 0.04815673828125, -0.0234375, 0.01061248779296875, -0.008514404296875, 0.0157012939453125, 0.015899658203125, 0.0084075927734375, -0.004718780517578125, 0.0228729248046875, 0.0173492431640625, 0.00383758544921875, 0.0070648193359375, -0.01232147216796875, -0.02508544921875, 0.0157012939453125, -0.0394287109375, -0.0220184326171875, 0.0240478515625, 0.00946044921875, 0.05126953125, 0.0198822021484375, 0.0201568603515625, -0.035919189453125, -0.005397796630859375, 0.0177764892578125, 0.0011425018310546875, 0.010498046875, 0.010986328125, -0.01277923583984375, -0.0009541511535644531, 0.0104217529296875, -0.034454345703125, -0.0074615478515625, 0.00777435302734375, -0.052001953125, 0.01226043701171875, -0.026641845703125, -0.0029392242431640625, 0.0113525390625, -0.01544189453125, 0.02532958984375, -0.015228271484375, 0.007122039794921875, -0.05096435546875, -0.0048980712890625, 0.0007371902465820312, -0.0020923614501953125, 0.003086090087890625, 0.0019683837890625, -0.01526641845703125, 0.0892333984375, -0.050140380859375, -0.01678466796875, 0.0281219482421875, 0.04913330078125, -0.005672454833984375, 0.035552978515625, -0.034912109375, 0.040283203125, -0.038299560546875, 0.0655517578125, -0.03375244140625, 0.00493621826171875, 0.028472900390625, 0.0071258544921875, 0.07421875, 0.01287078857421875, -0.0321044921875, -0.01451873779296875, 0.0224761962890625, -0.0138397216796875, -0.035308837890625, 0.054290771484375, -0.00974273681640625, 0.0238494873046875, 0.044677734375, -0.03167724609375, 0.0232086181640625, 0.0094757080078125, -0.0182037353515625, 0.0169219970703125, 0.00909423828125, 0.0007796287536621094, -0.031158447265625, 0.0012121200561523438, 0.0217437744140625, -0.026397705078125, -0.0213775634765625, -0.0026950836181640625, 0.00057220458984375, 0.04986572265625, 0.0293731689453125, 0.003917694091796875, -0.034637451171875, -0.01364898681640625, 0.040130615234375, 0.0165557861328125, 0.01009368896484375, 0.0283203125, 0.0245513916015625, -0.049072265625, 0.021270751953125, 0.0017261505126953125, 0.0287017822265625, -0.0232391357421875, 0.056427001953125, 0.034210205078125, 0.01396942138671875, -0.04144287109375, 0.0121002197265625, 0.041473388671875, 0.0712890625, -0.051055908203125, -0.042205810546875, 0.0181121826171875, 0.022308349609375, 0.006771087646484375, 0.042999267578125, 0.039825439453125, 0.026153564453125, 0.0701904296875, 0.0283660888671875, -0.0258636474609375, 0.00005167722702026367, 0.01288604736328125, 0.01505279541015625, 0.01387786865234375, -0.01161956787109375, -0.0164642333984375, 0.0179595947265625, -0.01329803466796875, 0.02325439453125, -0.005794525146484375, -0.0276336669921875, 0.0204925537109375, 0.0205230712890625, 0.019866943359375, -0.03277587890625, 0.031463623046875, 0.0149688720703125, 0.045928955078125, -0.0828857421875, -0.042999267578125, 0.0291748046875, 0.06005859375, 0.0144805908203125, 0.039398193359375, 0.039642333984375, 0.033203125, 0.0162506103515625, 0.00811004638671875, 0.01428985595703125, -0.00830841064453125, -0.03741455078125, -0.04144287109375, 0.0677490234375, 0.037261962890625, 0.047149658203125, -0.007282257080078125, 0.06561279296875, 0.0009250640869140625, -0.005222320556640625, 0.031005859375, 0.003665924072265625, -0.0028247833251953125, 0.03704833984375, -0.034637451171875, 0.0181732177734375, -0.00577545166015625, -0.00848388671875, -0.0036640167236328125, 0.0008516311645507812, -0.00959014892578125, -0.021881103515625, 0.030426025390625, -0.00101470947265625, 0.0259246826171875, 0.048797607421875, 0.0003685951232910156, -0.006072998046875, -0.0193023681640625, 0.0257110595703125, 0.02313232421875, 0.033050537109375, 0.037628173828125, -0.00884246826171875, -0.0182037353515625, -0.01824951171875, 0.041748046875, -0.0013494491577148438, 0.0689697265625, -0.0311126708984375, 0.0275115966796875, 0.01380157470703125, 0.006053924560546875, -0.007904052734375, 0.018035888671875, 0.01708984375, 0.0026035308837890625, -0.00787353515625, -0.0146026611328125, -0.0347900390625, -0.022735595703125, 0.04510498046875, -0.0253143310546875, -0.04083251953125, 0.006656646728515625, 0.045867919921875, 0.0175628662109375, 0.029693603515625, -0.0152587890625, -0.0191192626953125, 0.01169586181640625, 0.0022792816162109375, 0.0278778076171875, 0.033203125, 0.0142974853515625, 0.0183868408203125, -0.0198211669921875, -0.00957489013671875, -0.00392913818359375, -0.0247344970703125, -0.013275146484375, 0.021148681640625, -0.0047149658203125, -0.008087158203125, -0.0130767822265625, -0.0253753662109375, 0.0002541542053222656, 0.002239227294921875, 0.0087432861328125, -0.00052642822265625, -0.0379638671875, 0.03143310546875, 0.0665283203125, 0.08453369140625, 0.01067352294921875, 0.046417236328125, 0.01264190673828125, 0.0018367767333984375, 0.01265716552734375, -0.0281219482421875, -0.057952880859375, -0.0421142578125, 0.009033203125, 0.0201568603515625, -0.0181121826171875, -0.042755126953125, -0.0946044921875, 0.042816162109375, 0.020538330078125, 0.002227783203125, -0.0914306640625, 0.029632568359375, -0.00949859619140625, 0.0950927734375, -0.0305938720703125, 0.0318603515625, 0.0014057159423828125, 0.024261474609375, -0.0528564453125, -0.03265380859375, -0.007419586181640625, 0.02581787109375, -0.0176544189453125, 0.0273284912109375, 0.024810791015625, -0.0287628173828125, 0.01458740234375, 0.0361328125, 0.02154541015625, 0.08245849609375, 0.0211639404296875, -0.01119232177734375, 0.044891357421875, -0.01520538330078125, -0.03125, -0.10748291015625, -0.0096282958984375, -0.09375, 0.0159454345703125, -0.022369384765625, 0.0105438232421875, 0.03631591796875, -0.036163330078125, -0.070556640625, 0.060516357421875, -0.02862548828125, -0.0205078125, -0.056915283203125, 0.005706787109375, 0.0006756782531738281, -0.027679443359375, -0.01800537109375, -0.0248260498046875, -0.0267791748046875, 0.040069580078125, -0.0014429092407226562, 0.0242462158203125, 0.005641937255859375, 0.00441741943359375, -0.03131103515625, 0.0030002593994140625, 0.00258636474609375, -0.0129852294921875, -0.0166473388671875, 0.00833892822265625, 0.034149169921875, 0.040618896484375, 0.0065460205078125, 0.05023193359375, 0.03302001953125, -0.038116455078125, -0.01959228515625, -0.07977294921875, 0.0008511543273925781, 0.00406646728515625, 0.07659912109375, 0.03955078125, 0.0230865478515625, -0.07244873046875, -0.0433349609375, -0.0638427734375, 0.0241241455078125, -0.031890869140625, 0.0010061264038085938, -0.056915283203125, 0.00971221923828125, 0.01513671875, 0.01201629638671875, 0.0171051025390625, 0.004306793212890625, 0.010009765625, -0.0166778564453125, 0.05926513671875, -0.009765625, -0.033660888671875, -0.0076141357421875, 0.021240234375, -0.02593994140625, -0.031341552734375, -0.0020809173583984375, 0.01824951171875, -0.028289794921875, -0.03271484375, -0.0281829833984375, -0.01019287109375, 0.006923675537109375, 0.026092529296875, -0.0166778564453125, 0.01512908935546875, -0.01715087890625, 0.007343292236328125, -0.0201263427734375, 0.0205078125, -0.0027141571044921875, 0.01654052734375, -0.0307159423828125, 0.0596923828125, 0.0069580078125, 0.08673095703125, -0.0010423660278320312, 0.0253753662109375, -0.030364990234375, 0.0633544921875, 0.005870819091796875, -0.023834228515625, 0.01271820068359375, -0.007373809814453125, -0.0005903244018554688, -0.0027103424072265625, 0.00959014892578125, -0.0247650146484375, 0.01776123046875, -0.024444580078125, -0.01003265380859375, 0.00717926025390625 ]
7f2f09744471fe10934cd482db3506fab8380f4d
Wordpress Stackexchange Q: How to modify Media Library images How can I modify the size at which images in the media library are displayed when viewing the media library? I use a function to disable generation/modification of images, and manually edit to 750x250px then upload. When viewing the media library, I want them to display in this rectangular format (although smaller than actual) rather than the default square. A: A quick look at the media page with Firebug shows that this CSS statement will allow you to change the size of the picture: .media-frame-content[data-columns="9"] .attachment { width: 11.11%; } Change the 'width' value to something different, with the understanding that the change may affect how the page looks on different size screens. You should put your modified CSS in the styles.css of a Child Theme, since any updates of WP or the theme (which might have their own media page) would cancel out your changes.
Q: How to modify Media Library images How can I modify the size at which images in the media library are displayed when viewing the media library? I use a function to disable generation/modification of images, and manually edit to 750x250px then upload. When viewing the media library, I want them to display in this rectangular format (although smaller than actual) rather than the default square. A: A quick look at the media page with Firebug shows that this CSS statement will allow you to change the size of the picture: .media-frame-content[data-columns="9"] .attachment { width: 11.11%; } Change the 'width' value to something different, with the understanding that the change may affect how the page looks on different size screens. You should put your modified CSS in the styles.css of a Child Theme, since any updates of WP or the theme (which might have their own media page) would cancel out your changes.
wordpress
{ "language": "en", "length": 153, "provenance": "stackexchange_00019.jsonl.gz:468846", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/241187" }
[ -0.00232696533203125, -0.0255584716796875, -0.0030765533447265625, 0.05596923828125, -0.035430908203125, -0.036529541015625, 0.06268310546875, -0.033416748046875, -0.006107330322265625, 0.021820068359375, -0.0145416259765625, 0.00850677490234375, -0.0159912109375, -0.01239013671875, -0.012481689453125, -0.0304107666015625, 0.05792236328125, -0.041168212890625, 0.032440185546875, -0.006511688232421875, 0.00965118408203125, 0.0250244140625, 0.055755615234375, 0.0849609375, -0.03314208984375, -0.021392822265625, 0.09539794921875, -0.020477294921875, -0.02264404296875, -0.031402587890625, 0.0028629302978515625, 0.022430419921875, 0.036376953125, -0.0020503997802734375, -0.026336669921875, 0.01364898681640625, 0.03955078125, -0.0273590087890625, -0.019989013671875, 0.01395416259765625, 0.0272674560546875, -0.0059661865234375, 0.0345458984375, -0.025848388671875, 0.0030117034912109375, 0.0030975341796875, 0.0098876953125, -0.03704833984375, -0.0186920166015625, -0.01305389404296875, 0.03277587890625, -0.006744384765625, 0.045745849609375, 0.0266876220703125, -0.03228759765625, -0.036529541015625, -0.048553466796875, 0.047821044921875, 0.01338958740234375, -0.02197265625, -0.01165771484375, 0.01418304443359375, 0.0175323486328125, 0.017364501953125, -0.0021610260009765625, -0.0181427001953125, 0.008758544921875, 0.015838623046875, -0.048919677734375, -0.0014085769653320312, 0.040283203125, -0.0249176025390625, -0.00738525390625, -0.0517578125, -0.0020046234130859375, 0.04913330078125, 0.007720947265625, 0.0001671314239501953, -0.00218963623046875, -0.0261077880859375, 0.04864501953125, -0.00887298583984375, -0.0106964111328125, 0.0135040283203125, 0.04217529296875, 0.052001953125, -0.0004489421844482422, -0.04913330078125, 0.0066070556640625, 0.01090240478515625, -0.01413726806640625, -0.0182647705078125, 0.0071258544921875, 0.03790283203125, -0.01042938232421875, 0.0016736984252929688, 0.019500732421875, -0.01898193359375, 0.041168212890625, 0.00586700439453125, 0.008941650390625, -0.048675537109375, -0.002536773681640625, -0.0062713623046875, 0.00893402099609375, -0.0173492431640625, -0.008514404296875, 0.007213592529296875, 0.05462646484375, 0.043975830078125, -0.00955963134765625, 0.053070068359375, -0.0157012939453125, 0.00881195068359375, -0.00982666015625, 0.0042877197265625, -0.04180908203125, 0.0253143310546875, -0.028228759765625, 0.021148681640625, -0.0168914794921875, -0.006755828857421875, 0.0255126953125, -0.006130218505859375, 0.037445068359375, 0.0230712890625, -0.025299072265625, -0.00991058349609375, -0.0457763671875, 0.029296875, -0.037322998046875, 0.0242767333984375, 0.043487548828125, 0.031402587890625, 0.00843048095703125, -0.00966644287109375, -0.03668212890625, -0.01434326171875, -0.01245880126953125, 0.0160369873046875, -0.012542724609375, -0.033355712890625, 0.0460205078125, 0.004886627197265625, -0.01245880126953125, 0.00576019287109375, 0.0026531219482421875, 0.0190277099609375, 0.00011086463928222656, -0.0723876953125, 0.02606201171875, -0.01285552978515625, 0.033905029296875, 0.025787353515625, -0.0016078948974609375, 0.006000518798828125, 0.08685302734375, -0.03289794921875, -0.049285888671875, -0.05340576171875, -0.0185089111328125, 0.0284576416015625, 0.08575439453125, 0.007587432861328125, 0.01351165771484375, -0.00571441650390625, -0.047607421875, -0.0113677978515625, 0.0176544189453125, 0.050262451171875, 0.0249481201171875, -0.031158447265625, -0.03173828125, 0.00962066650390625, -0.01275634765625, 0.004741668701171875, -0.00841522216796875, 0.021392822265625, 0.006866455078125, 0.06243896484375, 0.06268310546875, 0.004711151123046875, 0.07781982421875, -0.01268768310546875, 0.0006580352783203125, -0.017669677734375, 0.00501251220703125, -0.0268402099609375, 0.016448974609375, 0.01306915283203125, 0.00852203369140625, 0.0214691162109375, -0.023834228515625, 0.0025119781494140625, -0.03179931640625, 0.0117645263671875, -0.03369140625, 0.008392333984375, -0.0288848876953125, 0.02532958984375, 0.05706787109375, 0.040313720703125, -0.019073486328125, 0.005401611328125, -0.032073974609375, 0.028167724609375, -0.0206298828125, 0.0296173095703125, -0.01715087890625, 0.033355712890625, 0.020721435546875, 0.0234222412109375, -0.0438232421875, 0.002613067626953125, -0.01459503173828125, 0.0075225830078125, -0.0020904541015625, 0.01134490966796875, -0.0107574462890625, 0.0209197998046875, -0.0245819091796875, -0.01448822021484375, -0.01230621337890625, 0.01461029052734375, 0.0281829833984375, 0.023040771484375, -0.0225830078125, -0.007350921630859375, 0.029693603515625, 0.0089111328125, 0.006504058837890625, 0.03424072265625, -0.007640838623046875, 0.0261383056640625, -0.0310821533203125, -0.02593994140625, -0.041748046875, -0.041900634765625, 0.016876220703125, 0.040283203125, 0.0282745361328125, -0.000016987323760986328, -0.0025463104248046875, 0.026519775390625, 0.08221435546875, 0.047393798828125, 0.03460693359375, -0.0030193328857421875, 0.0020847320556640625, -0.005336761474609375, -0.0007843971252441406, -0.04949951171875, 0.0242767333984375, -0.1112060546875, 0.00638580322265625, 0.0235595703125, -0.0237274169921875, -0.0257568359375, 0.0088043212890625, 0.05755615234375, -0.020172119140625, 0.06744384765625, 0.041229248046875, 0.002044677734375, 0.006206512451171875, 0.031494140625, 0.0224456787109375, 0.0206756591796875, -0.0205535888671875, 0.043670654296875, 0.017547607421875, -0.0303192138671875, 0.018707275390625, 0.0266265869140625, -0.0433349609375, -0.01406097412109375, -0.022796630859375, 0.0190582275390625, -0.01568603515625, -0.0110015869140625, -0.00409698486328125, 0.0355224609375, -0.094482421875, -0.0225372314453125, -0.022430419921875, -0.0738525390625, -0.037445068359375, 0.03857421875, -0.0509033203125, -0.0293121337890625, 0.00010269880294799805, 0.054168701171875, 0.0189056396484375, 0.0085601806640625, 0.0001646280288696289, 0.00484466552734375, 0.0278167724609375, -0.040618896484375, 0.061859130859375, -0.041900634765625, 0.0897216796875, 0.066650390625, -0.06732177734375, 0.0675048828125, -0.018402099609375, 0.00893402099609375, 0.00595855712890625, -0.005390167236328125, -0.0153656005859375, -0.059234619140625, 0.0076446533203125, -0.0140228271484375, 0.0038909912109375, -0.075439453125, -0.01268768310546875, -0.0246734619140625, -0.044952392578125, -0.03857421875, -0.06536865234375, 0.019256591796875, -0.016265869140625, -0.0711669921875, -0.0322265625, 0.0031185150146484375, -0.047607421875, 0.00688934326171875, 0.029632568359375, -0.0036983489990234375, -0.0152587890625, -0.0276947021484375, 0.01117706298828125, -0.035186767578125, -0.016143798828125, -0.0126495361328125, 0.01284027099609375, -0.007678985595703125, -0.01393890380859375, 0.032318115234375, -0.0016765594482421875, -0.0098876953125, 0.0004742145538330078, 0.0611572265625, 0.0266265869140625, -0.0299224853515625, 0.0174407958984375, -0.00981903076171875, -0.047271728515625, 0.014892578125, 0.06341552734375, 0.019805908203125, -0.046600341796875, 0.01306915283203125, -0.0163726806640625, -0.046173095703125, -0.00460052490234375, 0.0175933837890625, 0.00936126708984375, -0.049041748046875, -0.004619598388671875, -0.07598876953125, -0.022430419921875, -0.01355743408203125, -0.0305328369140625, 0.0283203125, 0.0037860870361328125, 0.007671356201171875, -0.0006880760192871094, 0.0213623046875, 0.01372528076171875, -0.01323699951171875, 0.05609130859375, -0.06488037109375, 0.07098388671875, 0.015838623046875, 0.0259857177734375, -0.05316162109375, 0.0260467529296875, -0.002689361572265625, 0.0011577606201171875, -0.0040130615234375, 0.0279693603515625, -0.01104736328125, 0.00911712646484375, -0.04241943359375, -0.032135009765625, 0.0225677490234375, -0.06500244140625, 0.01052093505859375, -0.043121337890625, -0.005481719970703125, -0.00991058349609375, 0.0706787109375, -0.05413818359375, -0.0179901123046875, -0.0179290771484375, 0.0255584716796875, -0.03814697265625, -0.04547119140625, -0.019256591796875, -0.0013666152954101562, -0.0304107666015625, 0.005886077880859375, 0.02410888671875, -0.040496826171875, -0.022918701171875, 0.021942138671875, -0.038726806640625, -0.01233673095703125, 0.006031036376953125, 0.05145263671875, -0.04168701171875, -0.01507568359375, -0.05816650390625, 0.00707244873046875, -0.005947113037109375, -0.0017633438110351562, -0.115478515625, -0.0272064208984375, -0.008270263671875, 0.10009765625, -0.0142059326171875, 0.003139495849609375, -0.04119873046875, 0.04058837890625, -0.0014324188232421875, -0.03521728515625, 0.00977325439453125, 0.0081939697265625, 0.0003952980041503906, 0.005802154541015625, -0.005840301513671875, -0.02239990234375, -0.02850341796875, -0.0836181640625, -0.07427978515625, -0.031829833984375, 0.01654052734375, 0.0684814453125, 0.002330780029296875, 0.0174560546875, -0.0567626953125, -0.04730224609375, -0.0217437744140625, 0.033782958984375, -0.004425048828125, 0.02880859375, -0.0732421875, -0.06622314453125, 0.0168304443359375, 0.0521240234375, 0.020721435546875, 0.0014476776123046875, 0.017242431640625, 0.0012645721435546875, -0.0290679931640625, -0.06890869140625, -0.01212310791015625, 0.03912353515625, 0.031707763671875, 0.03326416015625, 0.017242431640625, -0.01427459716796875, 0.0292510986328125, 0.0287933349609375, 0.0280303955078125, -0.0188751220703125, 0.0626220703125, 0.008514404296875, -0.002155303955078125, 0.024871826171875, 0.0031070709228515625, -0.049224853515625, -0.0198822021484375, -0.0012187957763671875, 0.00017309188842773438, -0.0213165283203125, -0.0156707763671875, 0.018646240234375, 0.0350341796875, 0.017425537109375, -0.054962158203125, 0.0159759521484375, -0.00447845458984375, 0.0325927734375, -0.0316162109375, 0.0219879150390625, 0.01427459716796875, 0.024566650390625, 0.0093841552734375, 0.003322601318359375, -0.00942230224609375, -0.04803466796875, 0.0265045166015625, -0.012725830078125, -0.0279388427734375, 0.02459716796875, 0.0094757080078125, -0.037872314453125, -0.01275634765625, -0.03656005859375, -0.055877685546875, 0.0031032562255859375, 0.01468658447265625, 0.0106964111328125, -0.00606536865234375, 0.0304107666015625, -0.009033203125, -0.0116119384765625, -0.0285797119140625, -0.04364013671875, -0.015167236328125, -0.050994873046875, 0.0237884521484375, 0.02838134765625, -0.020538330078125, 0.049560546875, -0.0151519775390625, 0.040679931640625, -0.00876617431640625, -0.01885986328125, 0.03460693359375, 0.03729248046875, -0.003997802734375, 0.0027370452880859375, 0.0487060546875, -0.031494140625, 0.0011043548583984375, 0.01082611083984375, -0.00021338462829589844, 0.0217437744140625, 0.01508331298828125, -0.0034198760986328125, -0.006183624267578125, -0.00510406494140625, 0.0066986083984375, -0.0270538330078125, -0.0006489753723144531, 0.0316162109375, -0.056549072265625, -0.07525634765625, -0.034881591796875, 0.01084136962890625, 0.058624267578125, -0.0557861328125, -0.01126861572265625, -0.031280517578125, -0.0161285400390625, -0.01459503173828125, 0.03387451171875, -0.050018310546875, 0.023223876953125, 0.028594970703125, -0.01422882080078125, -0.00313568115234375, -0.030120849609375, 0.00250244140625, -0.0294647216796875, 0.01284027099609375, 0.016082763671875, 0.033599853515625, -0.042083740234375, 0.00439453125, -0.011505126953125, 0.00742340087890625, -0.050933837890625, 0.036224365234375, 0.00008678436279296875, 0.00200653076171875, -0.00905609130859375, -0.024993896484375, -0.035736083984375, -0.026885986328125, -0.00041556358337402344, -0.008941650390625, -0.0175323486328125, -0.0143280029296875, -0.00769805908203125, 0.01995849609375, -0.02392578125, -0.0280914306640625, -0.0011768341064453125, 0.02044677734375, 0.00920867919921875, 0.0249176025390625, 0.01239013671875, 0.00482177734375, 0.005313873291015625, 0.0372314453125, 0.0176239013671875, -0.0009851455688476562, -0.03363037109375, -0.039093017578125, -0.023712158203125, -0.004764556884765625, 0.003391265869140625, 0.04754638671875, -0.0184478759765625, -0.0310516357421875, 0.004398345947265625, 0.0178070068359375, -0.0035076141357421875, -0.0501708984375, -0.0108184814453125, -0.05059814453125, 0.06781005859375, -0.08758544921875, 0.0080413818359375, -0.0322265625, -0.00399017333984375, 0.0408935546875, -0.01849365234375, -0.0283203125, 0.0408935546875, -0.0201568603515625, 0.046142578125, 0.0155487060546875, -0.005641937255859375, 0.0167083740234375, 0.07196044921875, -0.02349853515625, 0.026611328125, 0.027984619140625, -0.0197601318359375, 0.00400543212890625, -0.01244354248046875, 0.01161956787109375, -0.0028247833251953125, 0.020233154296875, -0.0013446807861328125, 0.005359649658203125, 0.014404296875, -0.014007568359375, 0.031402587890625, -0.0123748779296875, 0.0389404296875, 0.0106353759765625, 0.0127716064453125, -0.01885986328125, -0.02490234375, 0.061920166015625, 0.0084228515625, -0.0205841064453125, -0.038604736328125, 0.023162841796875, -0.0217437744140625, -0.01548004150390625, 0.007106781005859375, -0.0007414817810058594, -0.007526397705078125, 0.0017547607421875, 0.038055419921875, 0.0139617919921875, -0.05010986328125, -0.01629638671875, 0.0218658447265625, 0.00939178466796875, 0.020751953125, 0.0166168212890625, -0.053802490234375, -0.0257568359375, -0.00565338134765625, -0.02728271484375, -0.0230560302734375, -0.022003173828125, -0.004070281982421875, 0.03955078125, -0.00901031494140625, 0.0435791015625, -0.0145416259765625, 0.006855010986328125, 0.030303955078125, -0.07373046875, 0.031890869140625, -0.01372528076171875, 0.026947021484375, 0.00791168212890625, -0.041107177734375, -0.01043701171875, -0.0232391357421875, 0.005016326904296875, 0.00888824462890625, -0.0035533905029296875, 0.06304931640625, -0.046600341796875, -0.0020198822021484375, 0.035736083984375, -0.00402069091796875, -0.01456451416015625, 0.005710601806640625, 0.031524658203125, -0.042694091796875, -0.033599853515625, 0.0082855224609375, -0.051361083984375, -0.0215606689453125, -0.019683837890625, -0.0278472900390625, 0.036773681640625, -0.028594970703125, 0.031524658203125, 0.02313232421875, 0.007518768310546875, 0.014892578125, 0.0033740997314453125, -0.0037479400634765625, 0.0172882080078125, -0.009490966796875, 0.004425048828125, -0.043243408203125, 0.013763427734375, -0.00897979736328125, 0.032196044921875, 0.00848388671875, 0.00363922119140625, -0.038726806640625, -0.035369873046875, 0.023681640625, 0.0477294921875, 0.047698974609375, 0.0284881591796875, -0.06341552734375, -0.017059326171875, -0.01105499267578125, -0.03656005859375, 0.0138092041015625, -0.00312042236328125, -0.07080078125, -0.0188751220703125, 0.0096282958984375, 0.0214691162109375, 0.0142974853515625, 0.04180908203125, -0.01218414306640625, -0.0160675048828125, 0.03839111328125, -0.0675048828125, 0.044219970703125, 0.0201263427734375, 0.0260467529296875, 0.01349639892578125, 0.0246124267578125, -0.014923095703125, 0.04376220703125, -0.0302886962890625, -0.003498077392578125, 0.006076812744140625, 0.00988006591796875, 0.037689208984375, 0.0036678314208984375, -0.01557159423828125, 0.0206298828125, 0.019622802734375, -0.003360748291015625, 0.0025577545166015625, 0.007083892822265625, -0.03900146484375, 0.023712158203125, 0.039337158203125, 0.01629638671875, -0.031982421875, 0.033172607421875, 0.027557373046875, 0.033355712890625, -0.0273590087890625, -0.043212890625, -0.0166778564453125, -0.06658935546875, -0.038055419921875, -0.01543426513671875, -0.0022602081298828125, 0.0188751220703125, 0.052886962890625, -0.01450347900390625, -0.01593017578125, -0.0154266357421875, -0.01702880859375, -0.0245361328125, 0.0006160736083984375, 0.00882720947265625, 0.01715087890625, 0.00814056396484375, 0.0283660888671875, 0.0341796875, 0.0047760009765625, -0.0321044921875, 0.0299835205078125, -0.01470184326171875, 0.04010009765625, -0.02606201171875, 0.0011796951293945312, 0.01157379150390625, 0.032623291015625, 0.0169830322265625, -0.027252197265625, 0.021026611328125, 0.0294647216796875, -0.050018310546875, -0.0155029296875, 0.0128631591796875, -0.01451873779296875, 0.00894927978515625, -0.043853759765625, 0.06402587890625, 0.039215087890625, 0.0023708343505859375, 0.0031147003173828125, 0.02008056640625, 0.06243896484375, -0.029052734375, 0.046051025390625, -0.013946533203125, -0.00829315185546875, -0.005733489990234375, -0.00933837890625, 0.0232696533203125, -0.0018911361694335938, -0.05596923828125, -0.0183563232421875, -0.00286102294921875, -0.038238525390625, 0.0182037353515625, 0.034149169921875, -0.04193115234375, 0.032562255859375, -0.0250701904296875, 0.0181427001953125, -0.0013952255249023438, -0.0203094482421875, -0.0028553009033203125, -0.0203399658203125, 0.0159454345703125, -0.0033054351806640625, -0.055633544921875, -0.0245361328125, -0.03173828125, 0.03167724609375, 0.006206512451171875, 0.10809326171875, -0.038330078125, 0.0235748291015625, 0.0134429931640625, -0.0094451904296875, 0.005153656005859375, 0.00978851318359375, -0.0016984939575195312, -0.00917816162109375, -0.00948333740234375, -0.01230621337890625, 0.0731201171875, 0.047454833984375, 0.013397216796875, -0.05926513671875, 0.00696563720703125, -0.056640625, -0.0029048919677734375, -0.0012054443359375, -0.0006017684936523438, -0.00853729248046875, -0.01183319091796875, 0.0186309814453125, 0.040435791015625, 0.0158233642578125, 0.004817962646484375, -0.048431396484375, 0.0032958984375, -0.0092315673828125, -0.017333984375, 0.03314208984375, -0.0120391845703125, 0.06829833984375, 0.04779052734375, -0.052642822265625, -0.03338623046875, 0.01422119140625, -0.00766754150390625, -0.03582763671875, 0.039794921875, 0.027679443359375, -0.007518768310546875, -0.01053619384765625, 0.03863525390625, 0.01849365234375, 0.021392822265625, -0.035125732421875, -0.01227569580078125, 0.040313720703125, 0.0000941157341003418, -0.00942230224609375, 0.04754638671875, -0.01140594482421875, 0.036376953125, -0.020965576171875, 0.0163726806640625, 0.02813720703125, 0.0047607421875, -0.037017822265625, -0.006420135498046875, 0.0311126708984375, 0.03302001953125, -0.09033203125, 0.060638427734375, -0.0058441162109375, 0.011871337890625, 0.0115966796875, -0.0494384765625, -0.01806640625, 0.014495849609375, -0.0234832763671875, -0.07489013671875, -0.07342529296875, 0.0218353271484375, -0.0531005859375, 0.0200653076171875, 0.035400390625, -0.0396728515625, 0.0196533203125, 0.0258331298828125, 0.048980712890625, 0.06488037109375, -0.0115814208984375, -0.0285186767578125, 0.0021953582763671875, 0.0203704833984375, 0.01367950439453125, -0.0012617111206054688, -0.00318145751953125, 0.0079345703125, 0.0003058910369873047, 0.00640869140625, -0.005924224853515625, 0.01110076904296875, -0.0229644775390625, -0.0272369384765625, -0.0242767333984375, 0.0229949951171875, -0.031982421875, -0.00421142578125, 0.00542449951171875, -0.01690673828125, 0.026947021484375, 0.007656097412109375, -0.006587982177734375, 0.013153076171875, 0.00916290283203125, -0.01003265380859375, 0.032745361328125, -0.0198516845703125, 0.00881195068359375, -0.04913330078125, 0.0269012451171875, 0.0184478759765625, 0.0043182373046875, -0.0447998046875, 0.002864837646484375, 0.001720428466796875, 0.00518798828125, -0.03515625, -0.015350341796875, 0.0234832763671875, 0.033966064453125, -0.03131103515625, -0.0179443359375, -0.0158538818359375, -0.0108642578125, 0.0706787109375, 0.07183837890625, 0.0031795501708984375, -0.038726806640625, 0.06610107421875, 0.0216522216796875, 0.0017566680908203125, 0.0143585205078125, -0.0036907196044921875, -0.031829833984375, -0.045440673828125, 0.034393310546875, -0.0219573974609375, -0.0192718505859375, -0.023956298828125, -0.059112548828125, 0.01380157470703125, -0.01947021484375, 0.0248870849609375, -0.027313232421875, 0.01354217529296875, 0.05364990234375, -0.038299560546875, 0.01103973388671875, -0.0167236328125, 0.01348876953125, 0.0247344970703125, -0.038665771484375, -0.00753021240234375, 0.0118408203125, -0.01270294189453125, 0.020172119140625, 0.0065155029296875, -0.02301025390625, -0.0256500244140625, 0.01202392578125, -0.01505279541015625, -0.006023406982421875, -0.00836181640625, -0.005126953125, 0.0249481201171875, -0.01971435546875, -0.018524169921875, 0.0264892578125, -0.042633056640625, 0.007419586181640625, -0.02239990234375, 0.001796722412109375, -0.0013513565063476562, 0.013153076171875, 0.054290771484375, -0.038848876953125, 0.00365447998046875, 0.0142364501953125, -0.058380126953125, -0.037628173828125, 0.0152435302734375, -0.08905029296875, -0.0011196136474609375, 0.00994110107421875 ]
c01f98a0406416cd289deeca73425dae75d2a0c3
Wordpress Stackexchange Q: security+best practices: root or www-data on a wordpress content folder? drwxr-xr-x 8 www-data www-data drwxr-xr-x 6 www-data www-data -rw-r--r-- 1 www-data www-data -rw-r--r-- 1 www-data www-data -rw-r--r-- 1 www-data www-data drwxr-xr-x 7 www-data www-data drwxr-xr-x 7 root root This is on a wordpress install on an AWS linux server and that "root" owned folder is where all my changes go. To write my changes to that directory I had to sudo them in, that left ownership as "root" whereas every other folder is the defacto "www-data" user group. Is this bad? Why? A: I fixed this by running this command: cd /var/www/html/ sudo chown -Rv www-data:www-data * Changed ownership back to www-data instead of root. This article helped me: http://johnqunknown.me/fixing-wordpress-a-mini-tutorial/
Q: security+best practices: root or www-data on a wordpress content folder? drwxr-xr-x 8 www-data www-data drwxr-xr-x 6 www-data www-data -rw-r--r-- 1 www-data www-data -rw-r--r-- 1 www-data www-data -rw-r--r-- 1 www-data www-data drwxr-xr-x 7 www-data www-data drwxr-xr-x 7 root root This is on a wordpress install on an AWS linux server and that "root" owned folder is where all my changes go. To write my changes to that directory I had to sudo them in, that left ownership as "root" whereas every other folder is the defacto "www-data" user group. Is this bad? Why? A: I fixed this by running this command: cd /var/www/html/ sudo chown -Rv www-data:www-data * Changed ownership back to www-data instead of root. This article helped me: http://johnqunknown.me/fixing-wordpress-a-mini-tutorial/
wordpress
{ "language": "en", "length": 121, "provenance": "stackexchange_00019.jsonl.gz:468871", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/241302" }
[ 0.0537109375, 0.004207611083984375, -0.01378631591796875, -0.036346435546875, 0.0242767333984375, -0.052825927734375, 0.04608154296875, -0.0084381103515625, 0.020904541015625, 0.0032329559326171875, -0.00630950927734375, -0.0083465576171875, 0.01261138916015625, -0.033355712890625, 0.0164642333984375, -0.0018835067749023438, 0.036224365234375, -0.020721435546875, 0.0657958984375, 0.00954437255859375, 0.014190673828125, 0.0298004150390625, 0.09918212890625, -0.02520751953125, 0.006649017333984375, 0.0236968994140625, 0.056610107421875, -0.038787841796875, 0.011322021484375, -0.04254150390625, 0.0244140625, -0.0020904541015625, 0.02557373046875, 0.016693115234375, -0.026153564453125, -0.0004572868347167969, -0.0189361572265625, 0.006641387939453125, -0.0105438232421875, 0.013885498046875, 0.007904052734375, -0.0008130073547363281, 0.042083740234375, 0.033599853515625, 0.0115966796875, -0.07293701171875, 0.0297393798828125, -0.07562255859375, -0.002780914306640625, 0.025146484375, 0.008148193359375, 0.0233917236328125, 0.0128021240234375, 0.031707763671875, 0.01070404052734375, 0.00836181640625, 0.02691650390625, 0.000025451183319091797, 0.023590087890625, -0.0528564453125, -0.0263519287109375, 0.0240020751953125, 0.03338623046875, 0.02459716796875, 0.0166015625, -0.012451171875, 0.0265655517578125, 0.01508331298828125, -0.0911865234375, 0.01372528076171875, 0.062347412109375, -0.0281982421875, 0.010833740234375, -0.033233642578125, 0.0202789306640625, 0.01343536376953125, -0.00818634033203125, 0.01221466064453125, 0.00893402099609375, 0.0306396484375, -0.01430511474609375, -0.003894805908203125, 0.00884246826171875, -0.055999755859375, 0.00482177734375, -0.0166168212890625, -0.0202178955078125, 0.0006170272827148438, 0.0239410400390625, 0.018157958984375, -0.005550384521484375, 0.014495849609375, 0.044891357421875, 0.03363037109375, -0.030059814453125, 0.005229949951171875, -0.0011014938354492188, 0.0153350830078125, -0.00943756103515625, 0.0023250579833984375, 0.01531219482421875, -0.0179443359375, 0.01422882080078125, -0.017669677734375, 0.0145416259765625, 0.027862548828125, -0.00930023193359375, -0.040740966796875, 0.02392578125, 0.014923095703125, -0.024078369140625, 0.0287017822265625, -0.0161590576171875, -0.051177978515625, -0.0151824951171875, 0.082763671875, 0.001926422119140625, -0.018280029296875, 0.0159759521484375, 0.0104522705078125, 0.0011835098266601562, 0.00365447998046875, -0.02740478515625, -0.043487548828125, 0.0068206787109375, -0.034515380859375, -0.024810791015625, 0.0247802734375, -0.01026153564453125, 0.06048583984375, -0.0182342529296875, -0.00019598007202148438, 0.0196685791015625, 0.00849151611328125, -0.0302276611328125, -0.02142333984375, -0.0247955322265625, 0.0021991729736328125, -0.0013027191162109375, 0.040313720703125, 0.0004687309265136719, -0.032806396484375, 0.032745361328125, -0.012908935546875, 0.00901031494140625, 0.031768798828125, 0.007312774658203125, 0.005626678466796875, 0.0087890625, -0.06866455078125, 0.01629638671875, -0.0264739990234375, 0.0272216796875, -0.00362396240234375, 0.01490020751953125, -0.03143310546875, 0.0022258758544921875, -0.022857666015625, 0.00885772705078125, -0.0185546875, 0.004871368408203125, -0.01904296875, 0.0158538818359375, 0.006923675537109375, -0.02496337890625, 0.01934814453125, -0.01312255859375, -0.004665374755859375, 0.002056121826171875, -0.053070068359375, -0.004878997802734375, -0.03106689453125, -0.035675048828125, -0.034515380859375, 0.0105133056640625, 0.0230560302734375, 0.0026645660400390625, 0.0015506744384765625, -0.004489898681640625, 0.0933837890625, 0.03533935546875, -0.029876708984375, -0.00466156005859375, 0.0174407958984375, -0.01074981689453125, 0.0162811279296875, 0.00811767578125, 0.0142669677734375, -0.001537322998046875, 0.01141357421875, 0.013824462890625, 0.049407958984375, -0.04754638671875, 0.0823974609375, -0.01399993896484375, -0.042999267578125, -0.0200042724609375, 0.00028705596923828125, -0.00824737548828125, -0.037200927734375, 0.01458740234375, 0.021209716796875, -0.017425537109375, -0.0026073455810546875, -0.07415771484375, -0.008270263671875, -0.016876220703125, 0.0170440673828125, -0.0120697021484375, 0.0256500244140625, 0.01751708984375, 0.01776123046875, -0.007411956787109375, -0.041778564453125, -0.0157470703125, -0.004810333251953125, -0.033782958984375, 0.007015228271484375, -0.0018177032470703125, 0.06634521484375, 0.000621795654296875, 0.0197906494140625, -0.01233673095703125, -0.0163726806640625, 0.002246856689453125, -0.010894775390625, -0.0024566650390625, -0.00506591796875, 0.028106689453125, 0.002727508544921875, 0.0159149169921875, -0.01016998291015625, 0.0021152496337890625, -0.0052947998046875, -0.032928466796875, -0.02685546875, -0.038665771484375, -0.064208984375, 0.0025424957275390625, 0.0711669921875, 0.04046630859375, 0.0297698974609375, -0.00814056396484375, 0.005153656005859375, 0.051849365234375, -0.043853759765625, 0.01102447509765625, -0.01192474365234375, 0.0044403076171875, 0.0380859375, 0.009765625, 0.01186370849609375, 0.02294921875, -0.00948333740234375, 0.0054931640625, 0.035736083984375, -0.0159149169921875, 0.0183563232421875, -0.0499267578125, 0.007030487060546875, 0.0004868507385253906, -0.03564453125, -0.0189971923828125, -0.021759033203125, -0.0272216796875, -0.0027561187744140625, -0.0252227783203125, -0.0008883476257324219, -0.00829315185546875, -0.0182647705078125, 0.033935546875, -0.032318115234375, -0.005733489990234375, 0.04827880859375, 0.0325927734375, -0.023193359375, -0.032257080078125, -0.007007598876953125, -0.0160675048828125, 0.028900146484375, -0.037139892578125, -0.01401519775390625, -0.044189453125, -0.0134429931640625, 0.0008459091186523438, -0.0311431884765625, 0.00792694091796875, -0.01078033447265625, -0.0294189453125, -0.01366424560546875, -0.00617218017578125, 0.039520263671875, -0.03228759765625, 0.049957275390625, -0.00933074951171875, 0.00734710693359375, 0.0670166015625, -0.015899658203125, 0.01154327392578125, 0.0014009475708007812, 0.023101806640625, 0.049224853515625, 0.040283203125, -0.052581787109375, -0.0006074905395507812, 0.0267181396484375, 0.0252685546875, -0.0189361572265625, -0.0142364501953125, 0.0169830322265625, -0.06561279296875, -0.014892578125, 0.0155181884765625, 0.01236724853515625, -0.0056304931640625, -0.036346435546875, -0.0179901123046875, 0.0000021457672119140625, -0.08099365234375, -0.08380126953125, -0.018585205078125, -0.07354736328125, -0.00588226318359375, -0.01454925537109375, -0.034027099609375, 0.01087188720703125, 0.01519775390625, 0.004741668701171875, 0.0177001953125, -0.019439697265625, -0.056365966796875, -0.040283203125, -0.064208984375, -0.00513458251953125, -0.0166168212890625, 0.0198516845703125, -0.0004012584686279297, 0.0184783935546875, -0.0380859375, -0.06317138671875, -0.0657958984375, 0.042694091796875, 0.00022614002227783203, -0.04119873046875, -0.0083465576171875, -0.02764892578125, -0.00077056884765625, 0.00020968914031982422, 0.0252532958984375, -0.003078460693359375, 0.00583648681640625, -0.005565643310546875, 0.01403045654296875, -0.034912109375, 0.0159149169921875, 0.01486968994140625, -0.036102294921875, -0.0341796875, 0.0084228515625, -0.064453125, -0.0257568359375, 0.031005859375, -0.01080322265625, 0.007312774658203125, -0.016082763671875, -0.02801513671875, -0.01299285888671875, 0.036407470703125, 0.004291534423828125, 0.0174102783203125, 0.0098876953125, 0.0307464599609375, -0.007152557373046875, -0.019378662109375, -0.03192138671875, -0.00687408447265625, 0.035400390625, -0.023895263671875, -0.037200927734375, -0.003082275390625, -0.01392364501953125, -0.00972747802734375, -0.0200958251953125, -0.0006165504455566406, -0.057464599609375, 0.04156494140625, -0.01220703125, 0.0161895751953125, -0.040252685546875, -0.03167724609375, -0.0203857421875, 0.09307861328125, -0.05615234375, -0.01470947265625, 0.0555419921875, 0.018310546875, -0.042816162109375, -0.00927734375, -0.07489013671875, -0.0273895263671875, -0.00907135009765625, -0.02679443359375, -0.01212310791015625, -0.026031494140625, 0.001392364501953125, -0.0625, -0.0179595947265625, -0.019500732421875, 0.0251007080078125, -0.04736328125, 0.0272064208984375, 0.00772857666015625, 0.002796173095703125, 0.00786590576171875, -0.0178375244140625, -0.041168212890625, -0.12646484375, -0.04168701171875, 0.0298919677734375, 0.0804443359375, -0.01201629638671875, -0.0296173095703125, -0.0149688720703125, 0.0872802734375, -0.0262603759765625, 0.0291290283203125, -0.007556915283203125, 0.0211181640625, -0.0201568603515625, -0.0162811279296875, 0.0020923614501953125, -0.0251312255859375, 0.0005660057067871094, -0.041900634765625, -0.04119873046875, -0.0257110595703125, -0.0474853515625, 0.0106353759765625, -0.0305633544921875, -0.013031005859375, -0.053466796875, -0.0271453857421875, -0.08917236328125, 0.016357421875, -0.034820556640625, -0.0193939208984375, -0.055694580078125, -0.09619140625, 0.072509765625, 0.006591796875, 0.0098419189453125, -0.007160186767578125, 0.057037353515625, 0.00817108154296875, -0.042022705078125, -0.032867431640625, -0.00791168212890625, 0.03192138671875, -0.00037384033203125, 0.055206298828125, 0.03692626953125, -0.00362396240234375, 0.036529541015625, 0.00044083595275878906, -0.005489349365234375, 0.0023040771484375, 0.036376953125, 0.0143585205078125, 0.0082244873046875, -0.0189971923828125, 0.014801025390625, -0.01166534423828125, 0.0142974853515625, -0.0135040283203125, 0.01192474365234375, -0.016693115234375, 0.004547119140625, 0.00528717041015625, -0.01934814453125, -0.0288543701171875, -0.07232666015625, 0.021820068359375, -0.0545654296875, 0.0765380859375, -0.0024814605712890625, 0.0001590251922607422, 0.08447265625, 0.061981201171875, 0.0027370452880859375, -0.01739501953125, -0.00830841064453125, -0.011199951171875, 0.0241241455078125, -0.003009796142578125, 0.0098419189453125, -0.0052947998046875, -0.0118255615234375, 0.06195068359375, 0.0242919921875, -0.05401611328125, 0.03399658203125, -0.003299713134765625, 0.004352569580078125, 0.006805419921875, 0.0169677734375, -0.0037994384765625, -0.006847381591796875, -0.0236358642578125, -0.0005941390991210938, 0.0255126953125, -0.0256805419921875, -0.0252532958984375, 0.01502227783203125, 0.01396942138671875, -0.01253509521484375, 0.0311126708984375, -0.01464080810546875, 0.044952392578125, -0.0264739990234375, -0.0246429443359375, 0.03759765625, 0.0017547607421875, 0.01348114013671875, -0.00016117095947265625, 0.0364990234375, 0.0172882080078125, -0.0194091796875, 0.0157470703125, -0.03466796875, -0.004276275634765625, 0.0280303955078125, 0.07952880859375, -0.0087432861328125, -0.0300140380859375, -0.006137847900390625, -0.049652099609375, 0.0296783447265625, -0.0232086181640625, -0.04144287109375, -0.036712646484375, 0.043212890625, 0.037841796875, -0.0086822509765625, -0.05548095703125, 0.012298583984375, -0.0297698974609375, -0.0191802978515625, -0.0184783935546875, 0.014739990234375, -0.01541900634765625, -0.025909423828125, -0.02130126953125, -0.0031833648681640625, 0.0103759765625, 0.009765625, -0.055328369140625, -0.040008544921875, -0.00164794921875, 0.01456451416015625, 0.042694091796875, -0.0188751220703125, 0.0201416015625, -0.026824951171875, 0.0198822021484375, -0.0303497314453125, 0.00458526611328125, 0.0247650146484375, 0.01457977294921875, -0.060089111328125, 0.01195526123046875, -0.0257568359375, 0.01337432861328125, 0.029632568359375, -0.023712158203125, -0.042633056640625, -0.0285797119140625, 0.005565643310546875, -0.0025653839111328125, -0.03515625, -0.052032470703125, -0.0276947021484375, 0.040130615234375, 0.0635986328125, 0.0282440185546875, -0.03533935546875, 0.064208984375, -0.0110626220703125, 0.060028076171875, -0.00397491455078125, 0.0183258056640625, 0.0013818740844726562, -0.01447296142578125, 0.0439453125, -0.0010538101196289062, -0.0504150390625, -0.058135986328125, 0.027191162109375, -0.01129150390625, 0.019012451171875, -0.0237274169921875, 0.0181427001953125, -0.00591278076171875, 0.005939483642578125, -0.004215240478515625, 0.00811767578125, -0.0164642333984375, 0.0145111083984375, 0.004123687744140625, 0.01338958740234375, 0.06597900390625, -0.0273590087890625, -0.049468994140625, 0.060302734375, -0.01611328125, 0.0545654296875, 0.02197265625, -0.036956787109375, 0.048431396484375, 0.0701904296875, 0.0099334716796875, 0.0595703125, 0.0278472900390625, 0.031036376953125, 0.024688720703125, 0.042236328125, -0.0274658203125, -0.0100250244140625, 0.05853271484375, 0.0120697021484375, -0.056182861328125, 0.0187530517578125, -0.048553466796875, 0.0506591796875, 0.09515380859375, 0.1104736328125, -0.08538818359375, -0.006984710693359375, -0.00611114501953125, -0.07110595703125, 0.055389404296875, -0.01342010498046875, -0.03680419921875, -0.01186370849609375, 0.037689208984375, -0.024810791015625, -0.0283355712890625, 0.00606536865234375, 0.0011386871337890625, -0.0172882080078125, 0.01528167724609375, 0.0211639404296875, 0.00800323486328125, 0.049102783203125, -0.033447265625, -0.0210723876953125, 0.0294952392578125, 0.00605010986328125, 0.03717041015625, -0.0248870849609375, -0.0181121826171875, -0.040802001953125, -0.03497314453125, 0.00817108154296875, -0.06201171875, -0.0186309814453125, -0.004871368408203125, 0.0032806396484375, 0.05169677734375, -0.0225372314453125, -0.0153045654296875, 0.02227783203125, -0.01160430908203125, -0.041046142578125, -0.00787353515625, 0.018035888671875, 0.032440185546875, -0.037200927734375, 0.0271453857421875, -0.04595947265625, 0.002960205078125, 0.0003986358642578125, -0.0240020751953125, 0.032501220703125, -0.06890869140625, 0.0134124755859375, 0.035430908203125, -0.008880615234375, -0.006195068359375, -0.0212249755859375, 0.06298828125, -0.03912353515625, 0.009735107421875, 0.007549285888671875, 0.018707275390625, -0.032012939453125, -0.01206207275390625, -0.0180206298828125, 0.042022705078125, -0.0160064697265625, 0.0005850791931152344, 0.0170440673828125, 0.0160064697265625, -0.00751495361328125, 0.007282257080078125, -0.02294921875, 0.04193115234375, 0.0019388198852539062, 0.0123291015625, -0.0130615234375, 0.00048065185546875, 0.0015954971313476562, -0.00658416748046875, 0.0849609375, 0.0170135498046875, -0.0386962890625, -0.04449462890625, 0.01898193359375, 0.04766845703125, 0.00701141357421875, 0.040252685546875, -0.0022983551025390625, 0.056396484375, 0.04132080078125, -0.036834716796875, 0.0330810546875, -0.008453369140625, -0.03729248046875, 0.021240234375, 0.0021114349365234375, -0.01552581787109375, -0.0023555755615234375, 0.0186920166015625, -0.02789306640625, 0.01280975341796875, 0.02227783203125, -0.01300048828125, -0.0008091926574707031, 0.023681640625, 0.025421142578125, -0.0001735687255859375, -0.01457977294921875, -0.01468658447265625, 0.042755126953125, 0.0211181640625, 0.006343841552734375, 0.020782470703125, 0.00778961181640625, -0.03375244140625, 0.0521240234375, 0.00916290283203125, 0.04083251953125, -0.0180206298828125, 0.0272369384765625, 0.046142578125, 0.0272064208984375, 0.0082550048828125, 0.048492431640625, 0.025115966796875, 0.033905029296875, -0.04437255859375, -0.0201873779296875, 0.0172271728515625, 0.0301971435546875, 0.0068511962890625, -0.0124359130859375, 0.004688262939453125, 0.0062255859375, 0.030792236328125, 0.0032901763916015625, -0.0100250244140625, 0.005157470703125, 0.0021648406982421875, 0.005641937255859375, 0.040252685546875, 0.0036678314208984375, -0.0015134811401367188, -0.006450653076171875, 0.012603759765625, 0.007297515869140625, -0.01702880859375, -0.01513671875, 0.029205322265625, 0.03985595703125, 0.027008056640625, 0.0175323486328125, 0.0274810791015625, 0.014312744140625, -0.0159759521484375, -0.0621337890625, -0.08660888671875, 0.042724609375, 0.03912353515625, -0.006168365478515625, 0.00530242919921875, -0.0019969940185546875, 0.0235595703125, 0.006175994873046875, -0.0145416259765625, 0.01605224609375, -0.0143585205078125, -0.0248565673828125, -0.004787445068359375, 0.007770538330078125, 0.01401519775390625, 0.00612640380859375, -0.025238037109375, 0.0780029296875, -0.002696990966796875, -0.01383209228515625, 0.034942626953125, -0.009765625, -0.0157928466796875, -0.0059967041015625, -0.0128021240234375, -0.00004416704177856445, 0.0003604888916015625, 0.0170440673828125, -0.015777587890625, 0.023284912109375, -0.0177154541015625, -0.0082550048828125, 0.029266357421875, 0.0269622802734375, -0.0302276611328125, 0.0208282470703125, -0.00815582275390625, -0.0157928466796875, 0.018585205078125, 0.0086212158203125, 0.0202178955078125, 0.045684814453125, 0.032135009765625, -0.006908416748046875, -0.0208587646484375, -0.008758544921875, 0.058074951171875, 0.0009312629699707031, 0.0714111328125, -0.0421142578125, 0.029571533203125, -0.07122802734375, -0.004978179931640625, -0.0423583984375, -0.0347900390625, 0.01517486572265625, 0.012115478515625, -0.0236358642578125, 0.0126953125, 0.0035686492919921875, -0.003879547119140625, 0.0181732177734375, -0.0604248046875, -0.0132598876953125, -0.043853759765625, 0.0257568359375, -0.007640838623046875, 0.0291900634765625, -0.0246124267578125, -0.04766845703125, -0.028594970703125, 0.01947021484375, 0.0070037841796875, 0.0181884765625, -0.0220184326171875, 0.01154327392578125, 0.005107879638671875, -0.01236724853515625, 0.0091400146484375, 0.00273895263671875, 0.01464080810546875, 0.0218658447265625, -0.017303466796875, -0.057220458984375, 0.0002257823944091797, -0.0180206298828125, 0.00684356689453125, -0.0059051513671875, 0.0565185546875, 0.00778961181640625, -0.037200927734375, -0.053497314453125, 0.03302001953125, 0.0296783447265625, 0.0295562744140625, 0.020599365234375, -0.039642333984375, -0.036529541015625, 0.005596160888671875, -0.004505157470703125, -0.003978729248046875, -0.0162200927734375, -0.024017333984375, 0.009735107421875, -0.005199432373046875, -0.033050537109375, -0.0452880859375, 0.01230621337890625, 0.045257568359375, 0.0083770751953125, -0.059173583984375, 0.04632568359375, -0.030670166015625, 0.0232086181640625, 0.0072479248046875, -0.004650115966796875, -0.006992340087890625, 0.0220489501953125, -0.040435791015625, -0.018951416015625, -0.030059814453125, -0.003185272216796875, -0.0211181640625, 0.016510009765625, 0.005382537841796875, -0.006244659423828125, 0.0018815994262695312, 0.0491943359375, 0.00794219970703125, 0.0921630859375, -0.006847381591796875, -0.04779052734375, -0.01090240478515625, -0.032684326171875, 0.007648468017578125, -0.00861358642578125, 0.016082763671875, -0.0841064453125, -0.026885986328125, -0.05865478515625, 0.040771484375, 0.021636962890625, -0.041168212890625, -0.023712158203125, 0.066650390625, -0.016876220703125, 0.0015363693237304688, -0.0279541015625, 0.006969451904296875, -0.0247802734375, 0.01494598388671875, -0.01024627685546875, -0.0257415771484375, -0.00864410400390625, 0.032318115234375, 0.03790283203125, -0.00048732757568359375, 0.0003676414489746094, 0.05438232421875, -0.0140838623046875, 0.078125, 0.0521240234375, 0.00951385498046875, 0.0037174224853515625, 0.0164794921875, 0.025115966796875, 0.04144287109375, -0.0205535888671875, 0.0225067138671875, 0.0011920928955078125, -0.03924560546875, -0.0095367431640625, 0.03240966796875, -0.035247802734375, 0.007045745849609375, 0.0966796875, 0.060638427734375, 0.02105712890625, -0.037750244140625, -0.056182861328125, -0.0679931640625, -0.0204010009765625, -0.01081085205078125, 0.0168609619140625, -0.06622314453125, 0.0328369140625, 0.0119476318359375, -0.0201416015625, 0.0002765655517578125, -0.006671905517578125, -0.034942626953125, 0.0156097412109375, 0.00017273426055908203, -0.040924072265625, 0.01374053955078125, -0.0255126953125, 0.007770538330078125, -0.00872039794921875, 0.009368896484375, -0.019805908203125, 0.021728515625, 0.01259613037109375, 0.0080718994140625, -0.0081787109375, 0.0076904296875, -0.033447265625, 0.02606201171875, -0.01325225830078125, 0.068115234375, -0.061676025390625, -0.00711822509765625, 0.01120758056640625, -0.0005049705505371094, -0.0131988525390625, 0.0146331787109375, 0.015899658203125, 0.0229644775390625, -0.01458740234375, 0.0318603515625, 0.0025386810302734375, -0.0533447265625, -0.024169921875, 0.0418701171875, -0.02130126953125, -0.0195465087890625, -0.004192352294921875, -0.03204345703125, 0.01210784912109375, 0.00965118408203125, 0.03167724609375, -0.00995635986328125, 0.004230499267578125, -0.0195159912109375, -0.0008192062377929688, -0.0060882568359375 ]
6700823ddb7e8cd784475ed2574b36c0ad2493b5
Wordpress Stackexchange Q: query_vars in home, not loading the "home" page My wp home is: domainname.com/ But if I enable a query_var, like so, in functions.php: function add_query_vars_filter( $vars ){ $vars[] = "section"; return $vars; } Then: domainname.com/?section=bar Loads the posts archive instead of my custom template for the home page. Even that domainname.com/?section_=bar Does load the homepage... Any idea how to prevent it?
Q: query_vars in home, not loading the "home" page My wp home is: domainname.com/ But if I enable a query_var, like so, in functions.php: function add_query_vars_filter( $vars ){ $vars[] = "section"; return $vars; } Then: domainname.com/?section=bar Loads the posts archive instead of my custom template for the home page. Even that domainname.com/?section_=bar Does load the homepage... Any idea how to prevent it?
wordpress
{ "language": "en", "length": 62, "provenance": "stackexchange_00019.jsonl.gz:468892", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/241364" }
[ 0.036834716796875, 0.00905609130859375, 0.01287078857421875, -0.0234527587890625, 0.024139404296875, -0.028350830078125, 0.04345703125, -0.020172119140625, 0.020233154296875, 0.0301055908203125, -0.029052734375, -0.0271759033203125, 0.0209808349609375, -0.0204620361328125, -0.0265960693359375, -0.0241851806640625, 0.021026611328125, -0.027740478515625, -0.0209503173828125, -0.0163116455078125, -0.00994110107421875, -0.00023353099822998047, 0.00787353515625, 0.05902099609375, -0.0074462890625, 0.0173797607421875, 0.07684326171875, -0.01248931884765625, -0.007659912109375, -0.01076507568359375, 0.003444671630859375, -0.013580322265625, 0.00970458984375, -0.002445220947265625, 0.031951904296875, 0.0148468017578125, 0.002166748046875, 0.020294189453125, 0.029449462890625, 0.006256103515625, 0.0064849853515625, -0.01806640625, 0.03436279296875, 0.01467132568359375, 0.016387939453125, -0.05426025390625, 0.04833984375, -0.061187744140625, 0.02880859375, 0.0491943359375, -0.021881103515625, 0.0012559890747070312, -0.0296783447265625, 0.0194091796875, 0.0035247802734375, -0.01181793212890625, 0.0141448974609375, -0.0234527587890625, 0.031341552734375, -0.02874755859375, -0.022674560546875, -0.016357421875, 0.04241943359375, 0.0201568603515625, -0.01345062255859375, 0.01085662841796875, 0.006999969482421875, -0.00901031494140625, -0.0791015625, -0.02069091796875, 0.038818359375, -0.0618896484375, 0.003475189208984375, -0.00032830238342285156, -0.015899658203125, -0.0190277099609375, -0.026397705078125, -0.039459228515625, 0.036163330078125, 0.0029850006103515625, -0.0033893585205078125, -0.0022525787353515625, -0.06634521484375, -0.014404296875, 0.00861358642578125, 0.00798797607421875, -0.00774383544921875, -0.013916015625, -0.02679443359375, -0.0196075439453125, -0.01531982421875, -0.049896240234375, -0.044952392578125, -0.005645751953125, 0.0184326171875, -0.0384521484375, -0.02325439453125, 0.0149383544921875, -0.0239715576171875, -0.004390716552734375, -0.06488037109375, 0.0280914306640625, -0.04913330078125, -0.0190582275390625, -0.004772186279296875, 0.036102294921875, 0.029541015625, 0.06842041015625, 0.020782470703125, 0.0185394287109375, 0.01473236083984375, 0.0029277801513671875, -0.034912109375, 0.01340484619140625, -0.044525146484375, -0.01163482666015625, -0.05865478515625, -0.061248779296875, -0.0209808349609375, -0.047210693359375, 0.0227203369140625, 0.0278472900390625, 0.022552490234375, 0.032196044921875, 0.0039215087890625, 0.024932861328125, -0.006496429443359375, -0.05670166015625, -0.034881591796875, 0.0270538330078125, 0.005695343017578125, 0.0286865234375, -0.0145416259765625, -0.0264434814453125, -0.048858642578125, -0.0142974853515625, 0.0478515625, -0.056427001953125, -0.0168609619140625, -0.004070281982421875, 0.062255859375, 0.01033782958984375, -0.0128936767578125, -0.00766754150390625, 0.0101776123046875, 0.0107269287109375, 0.04083251953125, 0.024200439453125, -0.0264892578125, -0.00472259521484375, 0.00591278076171875, 0.02410888671875, 0.04058837890625, 0.00820159912109375, -0.0214385986328125, 0.0222625732421875, 0.04156494140625, -0.0224761962890625, -0.059814453125, -0.0166168212890625, -0.0197906494140625, 0.0017747879028320312, 0.00418853759765625, -0.045074462890625, -0.03472900390625, -0.0460205078125, 0.0291595458984375, 0.0106201171875, 0.00844573974609375, 0.0266571044921875, 0.02716064453125, -0.01412200927734375, 0.0285797119140625, 0.01080322265625, -0.00823211669921875, -0.0005002021789550781, 0.014678955078125, 0.0016231536865234375, 0.0156707763671875, 0.0528564453125, 0.010162353515625, -0.0157623291015625, 0.05010986328125, -0.01151275634765625, -0.03912353515625, 0.024871826171875, -0.001102447509765625, 0.010009765625, -0.004634857177734375, 0.00785064697265625, 0.046783447265625, 0.051055908203125, -0.07122802734375, 0.0111083984375, 0.0118408203125, -0.01300048828125, 0.018096923828125, -0.00601959228515625, 0.010833740234375, 0.016693115234375, 0.02374267578125, -0.035888671875, 0.042572021484375, -0.0309600830078125, -0.007740020751953125, -0.0209808349609375, -0.0154571533203125, 0.0161285400390625, 0.0177459716796875, 0.041778564453125, 0.0118865966796875, 0.033721923828125, -0.03515625, -0.0161590576171875, -0.03826904296875, 0.0161285400390625, -0.003917694091796875, 0.041351318359375, 0.0269775390625, 0.01318359375, 0.038116455078125, 0.01468658447265625, 0.0272216796875, 0.0012722015380859375, 0.046295166015625, -0.00832366943359375, -0.0198822021484375, -0.0230865478515625, 0.022430419921875, -0.015716552734375, -0.0180206298828125, 0.0653076171875, 0.0240478515625, 0.046478271484375, -0.038177490234375, -0.0157470703125, -0.03533935546875, -0.01800537109375, 0.0183258056640625, 0.04583740234375, 0.0394287109375, -0.032470703125, -0.00420379638671875, -0.0228424072265625, 0.015350341796875, -0.02349853515625, 0.0028705596923828125, -0.0186920166015625, -0.017486572265625, 0.025054931640625, -0.013916015625, 0.0234375, 0.0006546974182128906, -0.07940673828125, -0.00428009033203125, 0.039154052734375, 0.00519561767578125, 0.023223876953125, -0.028717041015625, -0.00003647804260253906, 0.00276947021484375, -0.0203704833984375, -0.0181884765625, 0.00035071372985839844, 0.00847625732421875, -0.00012731552124023438, 0.00612640380859375, 0.0162353515625, -0.006511688232421875, -0.013397216796875, -0.004261016845703125, -0.036163330078125, -0.01232147216796875, 0.00832366943359375, 0.016357421875, -0.0328369140625, -0.049774169921875, 0.037261962890625, -0.005039215087890625, -0.01605224609375, -0.00258636474609375, 0.0240936279296875, -0.01404571533203125, -0.01436614990234375, -0.007965087890625, -0.0162353515625, 0.0156707763671875, 0.0201568603515625, 0.05230712890625, 0.0167236328125, 0.00930023193359375, 0.060089111328125, 0.005832672119140625, 0.07855224609375, 0.01265716552734375, -0.01441192626953125, 0.017547607421875, -0.0222625732421875, 0.0037860870361328125, 0.031768798828125, 0.0731201171875, 0.0731201171875, 0.0355224609375, 0.01812744140625, 0.029754638671875, 0.0139312744140625, 0.07666015625, -0.03204345703125, -0.004627227783203125, 0.050018310546875, -0.055755615234375, 0.0206146240234375, 0.020416259765625, 0.004421234130859375, 0.016937255859375, -0.0244293212890625, -0.0034770965576171875, 0.01471710205078125, -0.08050537109375, -0.0799560546875, 0.00652313232421875, -0.013671875, -0.0022449493408203125, 0.002948760986328125, 0.00222015380859375, 0.0032253265380859375, -0.0023193359375, -0.004749298095703125, -0.01357269287109375, -0.01715087890625, -0.10723876953125, -0.07763671875, -0.0909423828125, -0.004791259765625, -0.0176544189453125, 0.0180206298828125, -0.00797271728515625, 0.09332275390625, 0.00795745849609375, -0.02838134765625, 0.0033283233642578125, 0.02197265625, -0.0014753341674804688, -0.00012683868408203125, -0.0223541259765625, 0.0158843994140625, 0.0142974853515625, 0.007778167724609375, 0.02410888671875, 0.0369873046875, -0.0377197265625, -0.0064239501953125, -0.00888824462890625, 0.032684326171875, -0.0015897750854492188, 0.0297393798828125, 0.0374755859375, 0.0212860107421875, 0.0301361083984375, -0.0213623046875, -0.06060791015625, 0.0045318603515625, -0.0662841796875, 0.00850677490234375, 0.04913330078125, -0.0087890625, 0.0011005401611328125, 0.007781982421875, 0.022918701171875, -0.0090789794921875, 0.0491943359375, -0.0289764404296875, 0.0164337158203125, 0.005054473876953125, 0.036651611328125, -0.0233306884765625, 0.043060302734375, -0.03582763671875, 0.0031757354736328125, 0.0155487060546875, -0.05645751953125, -0.0201873779296875, -0.041229248046875, -0.01275634765625, -0.03753662109375, 0.063720703125, 0.00588226318359375, 0.018218994140625, -0.01763916015625, -0.0496826171875, -0.004138946533203125, 0.0784912109375, -0.0665283203125, -0.0174560546875, 0.056365966796875, 0.03839111328125, -0.04681396484375, -0.05438232421875, -0.0443115234375, -0.031829833984375, -0.032928466796875, 0.00948333740234375, -0.0345458984375, -0.0233154296875, -0.04638671875, 0.007053375244140625, -0.027008056640625, -0.025177001953125, 0.0374755859375, -0.012786865234375, 0.0213775634765625, -0.023284912109375, 0.0038471221923828125, -0.049560546875, 0.0017757415771484375, -0.01131439208984375, -0.1064453125, -0.0279998779296875, 0.044036865234375, 0.061370849609375, 0.0009860992431640625, -0.05975341796875, -0.01073455810546875, 0.062286376953125, 0.00637054443359375, -0.0208587646484375, 0.0308837890625, -0.0004475116729736328, 0.0030078887939453125, 0.00830841064453125, 0.0164794921875, -0.03558349609375, 0.0316162109375, 0.01375579833984375, -0.028594970703125, -0.01476287841796875, -0.05352783203125, -0.0278472900390625, -0.0245208740234375, -0.035491943359375, -0.0540771484375, -0.0228118896484375, -0.003505706787109375, -0.0287628173828125, 0.0255126953125, -0.048797607421875, -0.006927490234375, -0.0267791748046875, 0.042938232421875, 0.0007262229919433594, -0.01190185546875, -0.01238250732421875, 0.053436279296875, 0.03131103515625, -0.035186767578125, 0.0389404296875, 0.025115966796875, 0.0160064697265625, 0.0309906005859375, 0.0533447265625, 0.00693511962890625, -0.01383209228515625, 0.0667724609375, -0.00330352783203125, 0.03662109375, -0.01357269287109375, 0.025421142578125, 0.00905609130859375, -0.0093231201171875, 0.0258636474609375, 0.04730224609375, -0.03375244140625, 0.0394287109375, -0.0008831024169921875, -0.043792724609375, 0.00824737548828125, 0.0263824462890625, -0.0401611328125, 0.039886474609375, -0.0158233642578125, 0.025054931640625, -0.0061798095703125, 0.01247406005859375, 0.0426025390625, 0.0285186767578125, -0.00348663330078125, -0.01922607421875, 0.0005035400390625, 0.01180267333984375, 0.0285491943359375, 0.018035888671875, -0.01059722900390625, 0.028228759765625, 0.018310546875, -0.00019943714141845703, 0.01053619384765625, 0.0027923583984375, 0.019683837890625, -0.046783447265625, -0.04705810546875, -0.043609619140625, -0.00432586669921875, 0.0036678314208984375, 0.059478759765625, 0.0189666748046875, 0.007793426513671875, 0.0271453857421875, 0.00470733642578125, -0.003978729248046875, 0.0260772705078125, 0.0296630859375, -0.0133209228515625, 0.08270263671875, 0.0006251335144042969, 0.0212249755859375, -0.0059051513671875, 0.08203125, 0.0137939453125, 0.0233917236328125, -0.0215301513671875, -0.03131103515625, -0.002719879150390625, 0.0278167724609375, 0.01226806640625, -0.01354217529296875, 0.0240936279296875, 0.028167724609375, 0.0736083984375, -0.01422119140625, 0.002460479736328125, 0.0133514404296875, 0.070556640625, -0.01125335693359375, -0.02032470703125, 0.008941650390625, -0.042816162109375, 0.0010242462158203125, 0.050537109375, -0.0335693359375, -0.06036376953125, -0.04595947265625, -0.029327392578125, 0.05389404296875, -0.030426025390625, -0.0227203369140625, -0.00522613525390625, -0.018035888671875, 0.03948974609375, 0.006378173828125, 0.0017194747924804688, 0.0054931640625, -0.03021240234375, 0.0252227783203125, -0.0107269287109375, -0.034027099609375, -0.002391815185546875, -0.0011472702026367188, -0.022979736328125, -0.016876220703125, 0.040191650390625, -0.01050567626953125, 0.052154541015625, -0.036834716796875, 0.0006346702575683594, 0.0066680908203125, 0.014007568359375, 0.024688720703125, 0.0018529891967773438, -0.08892822265625, 0.01447296142578125, -0.04547119140625, 0.01251983642578125, -0.006381988525390625, -0.040374755859375, -0.04473876953125, -0.039093017578125, 0.009735107421875, 0.01558685302734375, 0.00406646728515625, -0.043853759765625, -0.036346435546875, 0.0014467239379882812, 0.05706787109375, 0.00698089599609375, -0.0178680419921875, 0.0697021484375, -0.03460693359375, 0.057037353515625, -0.00930023193359375, 0.03460693359375, 0.00989532470703125, -0.0265350341796875, 0.01861572265625, -0.04486083984375, -0.0298309326171875, -0.01218414306640625, -0.0262603759765625, 0.03448486328125, 0.0711669921875, -0.004108428955078125, 0.021331787109375, -0.005847930908203125, 0.00794219970703125, -0.03192138671875, -0.038909912109375, -0.046661376953125, -0.0121002197265625, -0.01611328125, 0.005458831787109375, 0.0075225830078125, 0.002262115478515625, -0.01084136962890625, 0.00970458984375, -0.002872467041015625, 0.0246734619140625, -0.017852783203125, -0.032806396484375, 0.0201263427734375, 0.06597900390625, 0.0302276611328125, 0.059234619140625, -0.01275634765625, 0.04150390625, 0.0294647216796875, 0.044342041015625, 0.0007052421569824219, -0.0460205078125, 0.04443359375, -0.00551605224609375, -0.01506805419921875, 0.0297393798828125, -0.0251617431640625, -0.003932952880859375, 0.038604736328125, 0.027374267578125, -0.08453369140625, -0.0060882568359375, -0.00839996337890625, 0.0134429931640625, 0.033233642578125, 0.02288818359375, 0.01456451416015625, 0.00909423828125, -0.002323150634765625, 0.0086669921875, 0.0019855499267578125, 0.024749755859375, 0.0191192626953125, 0.00418853759765625, -0.029327392578125, 0.0259246826171875, -0.0087127685546875, -0.034454345703125, 0.007476806640625, 0.03619384765625, -0.034515380859375, -0.0082855224609375, 0.003398895263671875, 0.03857421875, -0.0247039794921875, -0.0745849609375, 0.012481689453125, -0.031219482421875, -0.0269775390625, 0.00970458984375, 0.01447296142578125, 0.03936767578125, 0.0028018951416015625, 0.023345947265625, -0.022369384765625, -0.02386474609375, 0.0092010498046875, 0.0650634765625, -0.01512908935546875, -0.004596710205078125, 0.01187896728515625, -0.0197296142578125, -0.00218963623046875, 0.005672454833984375, -0.01285552978515625, -0.0213470458984375, -0.0513916015625, 0.049468994140625, -0.0006465911865234375, -0.034576416015625, 0.01007843017578125, -0.02001953125, -0.01204681396484375, -0.0007543563842773438, 0.01058197021484375, -0.03363037109375, -0.0199432373046875, 0.00685882568359375, -0.054412841796875, -0.03936767578125, -0.032257080078125, -0.0382080078125, 0.0782470703125, -0.0051116943359375, 0.0269012451171875, 0.051361083984375, 0.0227813720703125, -0.046295166015625, 0.008087158203125, -0.028045654296875, 0.053924560546875, 0.02972412109375, 0.0452880859375, -0.03302001953125, -0.0089111328125, 0.035552978515625, 0.043365478515625, 0.032684326171875, 0.0142669677734375, -0.0298919677734375, -0.03753662109375, 0.01291656494140625, 0.054962158203125, 0.013641357421875, 0.02142333984375, -0.005794525146484375, 0.064697265625, 0.030548095703125, -0.06390380859375, 0.023590087890625, -0.04266357421875, -0.027679443359375, -0.001190185546875, -0.0063629150390625, 0.0039043426513671875, 0.004383087158203125, -0.035064697265625, -0.0173492431640625, 0.0036678314208984375, 0.01480865478515625, -0.042083740234375, -0.0037326812744140625, 0.0025501251220703125, 0.005100250244140625, -0.01910400390625, -0.03021240234375, -0.01360321044921875, 0.0210113525390625, 0.0187835693359375, -0.0189208984375, 0.050323486328125, 0.0051422119140625, 0.0279693603515625, -0.0303802490234375, -0.010223388671875, -0.00954437255859375, 0.021209716796875, 0.0535888671875, 0.035369873046875, 0.031951904296875, -0.04510498046875, -0.01165008544921875, 0.046875, 0.07373046875, -0.044464111328125, -0.02545166015625, -0.0063323974609375, 0.0009555816650390625, -0.009002685546875, -0.00627899169921875, 0.0003781318664550781, 0.06097412109375, 0.060546875, -0.034912109375, 0.01395416259765625, 0.038330078125, -0.01163482666015625, -0.0123138427734375, 0.020263671875, 0.005443572998046875, 0.042816162109375, -0.0238800048828125, -0.029571533203125, -0.0003516674041748047, 0.06878662109375, 0.053802490234375, 0.005031585693359375, -0.069580078125, -0.038116455078125, -0.050750732421875, 0.08856201171875, -0.00177001953125, 0.06475830078125, -0.08770751953125, -0.06561279296875, -0.020599365234375, 0.04595947265625, 0.033447265625, 0.0272216796875, 0.0386962890625, -0.0008840560913085938, -0.02447509765625, 0.01161956787109375, 0.05029296875, -0.0291748046875, 0.0352783203125, -0.0268402099609375, 0.038482666015625, 0.01169586181640625, -0.006130218505859375, -0.036590576171875, 0.0203704833984375, 0.037384033203125, 0.026763916015625, -0.0306549072265625, 0.0174713134765625, -0.0305633544921875, 0.002384185791015625, 0.00213623046875, 0.0285797119140625, 0.033966064453125, -0.040130615234375, -0.03631591796875, 0.0198822021484375, -0.0304107666015625, 0.0258026123046875, 0.0582275390625, 0.0017995834350585938, -0.01454925537109375, 0.025543212890625, -0.058929443359375, -0.0042572021484375, 0.0290374755859375, 0.033599853515625, -0.0024433135986328125, -0.0267791748046875, -0.0047607421875, -0.052093505859375, 0.00016760826110839844, -0.0170135498046875, -0.01995849609375, 0.00823211669921875, 0.0909423828125, -0.016876220703125, 0.00614166259765625, -0.0206451416015625, 0.0460205078125, -0.0361328125, 0.0061798095703125, -0.00142669677734375, -0.0010995864868164062, 0.00946044921875, -0.003215789794921875, -0.026031494140625, 0.03131103515625, 0.0238800048828125, -0.0208892822265625, 0.04931640625, -0.02362060546875, -0.0006608963012695312, -0.027496337890625, 0.0199127197265625, -0.0201416015625, -0.01325225830078125, -0.0360107421875, -0.03277587890625, 0.049072265625, 0.061279296875, 0.01399993896484375, 0.06793212890625, 0.035980224609375, -0.0005884170532226562, 0.035186767578125, -0.059326171875, 0.0576171875, 0.0264129638671875, 0.002105712890625, 0.02093505859375, -0.0018510818481445312, -0.0225982666015625, 0.033935546875, -0.00778961181640625, 0.0198211669921875, -0.004634857177734375, -0.020263671875, -0.031280517578125, -0.028076171875, 0.0218048095703125, -0.00855255126953125, 0.002838134765625, -0.01119232177734375, -0.00726318359375, -0.011474609375, -0.01336669921875, -0.0235748291015625, -0.0285186767578125, 0.00032901763916015625, 0.01392364501953125, -0.003467559814453125, -0.03985595703125, -0.0281982421875, 0.0012903213500976562, 0.0016927719116210938, -0.0069580078125, -0.05169677734375, 0.039215087890625, -0.039703369140625, -0.0038051605224609375, -0.02398681640625, 0.01433563232421875, 0.0009551048278808594, 0.048492431640625, -0.0220489501953125, 0.031402587890625, -0.01258087158203125, -0.0173797607421875, 0.0251312255859375, 0.022491455078125, 0.04638671875, -0.006771087646484375, -0.03533935546875, 0.031585693359375, -0.00417327880859375, 0.08697509765625, -0.0457763671875, -0.0222320556640625, 0.00634765625, -0.0269012451171875, -0.022369384765625, -0.0028057098388671875, 0.0146484375, -0.03704833984375, -0.03204345703125, -0.01788330078125, -0.005542755126953125, -0.0032901763916015625, -0.0343017578125, -0.07086181640625, 0.062164306640625, -0.00791168212890625, -0.032012939453125, -0.0400390625, -0.0232391357421875, -0.0122833251953125, 0.0162353515625, -0.01110076904296875, -0.044769287109375, -0.03863525390625, 0.0396728515625, 0.0260772705078125, 0.0394287109375, 0.042266845703125, 0.006458282470703125, -0.02703857421875, 0.005435943603515625, -0.026153564453125, 0.015411376953125, -0.030975341796875, 0.022918701171875, 0.0118865966796875, 0.032562255859375, -0.01021575927734375, -0.0018854141235351562, 0.0218963623046875, -0.0037555694580078125, -0.0019741058349609375, -0.0169219970703125, -0.0172119140625, -0.0205841064453125, 0.026885986328125, 0.0115966796875, 0.0009670257568359375, 0.0091705322265625, -0.0212249755859375, -0.043060302734375, -0.005245208740234375, -0.0170745849609375, 0.01174163818359375, -0.0721435546875, -0.01007080078125, 0.0262908935546875, -0.005893707275390625, 0.0130157470703125, -0.0204620361328125, -0.015350341796875, 0.0014123916625976562, 0.0191802978515625, -0.0118255615234375, 0.0082855224609375, -0.033660888671875, 0.006839752197265625, -0.0262908935546875, -0.042999267578125, 0.0123138427734375, 0.03485107421875, -0.037384033203125, 0.00513458251953125, 0.03253173828125, 0.0302276611328125, -0.028961181640625, -0.0027904510498046875, 0.0239715576171875, 0.01393890380859375, -0.0166778564453125, -0.04119873046875, 0.00948333740234375, 0.01293182373046875, 0.0019130706787109375, 0.009796142578125, -0.01763916015625, 0.006549835205078125, -0.0382080078125, 0.043060302734375, -0.0163421630859375, -0.004901885986328125, -0.00030732154846191406, 0.0115966796875, -0.01611328125, 0.006565093994140625, 0.023345947265625, 0.006031036376953125, -0.02264404296875, -0.0170135498046875, -0.0198822021484375, -0.058685302734375, -0.0065765380859375, -0.0421142578125, 0.0003757476806640625, 0.026031494140625 ]
1af490532a6f35b40b62584771fbbc044d8eaf30
Wordpress Stackexchange Q: My custom made plugin has "a new version available" which links to unrelated plugin My custom made plugin has "a new version available", also the "view details" link links to a completely unrelated plugin. The plugin files begins with: <?php /* Plugin Name: Simple Contact Form Plugin URI: http://www.wilcoverhoeven.com Description: Simple contact form Version: 1 Author: Wilco Verhoeven Author URI: http://www.wilcoverhoeven.com */ How can I prevent this? A: As i can see you have named your custom form as 'Simple Contact Form' which conflicts with this plugin name Simple Contact Form. Try changing the name. Edit1: You can also change the version if you don't want to change the name of the plugin. For eg: if you are prompted something like There is a new version of Simple Contact Form. View version 14.13 details or update now. then just rename the version of your plugin to 14.13 or above
Q: My custom made plugin has "a new version available" which links to unrelated plugin My custom made plugin has "a new version available", also the "view details" link links to a completely unrelated plugin. The plugin files begins with: <?php /* Plugin Name: Simple Contact Form Plugin URI: http://www.wilcoverhoeven.com Description: Simple contact form Version: 1 Author: Wilco Verhoeven Author URI: http://www.wilcoverhoeven.com */ How can I prevent this? A: As i can see you have named your custom form as 'Simple Contact Form' which conflicts with this plugin name Simple Contact Form. Try changing the name. Edit1: You can also change the version if you don't want to change the name of the plugin. For eg: if you are prompted something like There is a new version of Simple Contact Form. View version 14.13 details or update now. then just rename the version of your plugin to 14.13 or above A: I think you've got a naming conflict there -- assuming that your plugin is linking to this Simple Contact Form -- try changing the name to something like "Wilco's Simple Contact Form". You'll need to update the plugin folder name and the main plugin file name as well. Update As Aniket points out, you might need to force an update check on your site to get rid of the notice. You can do this by going to http://yourwebsite.com/wp-admin/update-core.php?force-c‌​heck=1
wordpress
{ "language": "en", "length": 229, "provenance": "stackexchange_00019.jsonl.gz:468925", "question_score": "7", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/241477" }
[ 0.036102294921875, -0.042999267578125, -0.0104522705078125, -0.0665283203125, -0.037567138671875, 0.0022735595703125, -0.042694091796875, 0.0174713134765625, -0.0265655517578125, -0.0157012939453125, -0.010772705078125, 0.0175933837890625, -0.07281494140625, -0.044586181640625, 0.03289794921875, -0.048553466796875, 0.02044677734375, 0.007965087890625, 0.0081329345703125, -0.034912109375, 0.0178985595703125, -0.025665283203125, -0.005279541015625, 0.082275390625, 0.0340576171875, -0.0077972412109375, 0.07843017578125, -0.021697998046875, 0.0022830963134765625, -0.036346435546875, 0.039947509765625, -0.0006165504455566406, 0.0474853515625, 0.0150299072265625, -0.07220458984375, -0.0155792236328125, 0.0219879150390625, -0.03662109375, -0.0721435546875, 0.09423828125, 0.060699462890625, -0.03399658203125, -0.003543853759765625, -0.0247955322265625, -0.0033740997314453125, -0.054168701171875, 0.08660888671875, -0.00004029273986816406, -0.0014772415161132812, 0.00811004638671875, -0.005382537841796875, -0.015960693359375, 0.003742218017578125, -0.0269622802734375, -0.004772186279296875, -0.0305633544921875, -0.029541015625, 0.03424072265625, 0.0070953369140625, 0.047088623046875, 0.01849365234375, 0.033905029296875, -0.015777587890625, -0.0144500732421875, 0.012847900390625, 0.00394439697265625, 0.0031948089599609375, 0.0045013427734375, 0.0311126708984375, -0.0009479522705078125, 0.005718231201171875, -0.0010290145874023438, 0.01091766357421875, -0.01084136962890625, -0.0018663406372070312, -0.0088348388671875, 0.0232391357421875, -0.0020160675048828125, 0.01247406005859375, -0.0028667449951171875, 0.00255584716796875, -0.02978515625, -0.0207977294921875, -0.01158905029296875, 0.004680633544921875, 0.0203094482421875, -0.009796142578125, -0.0116119384765625, -0.0214080810546875, 0.0194549560546875, -0.016387939453125, -0.050140380859375, 0.0277252197265625, 0.03466796875, -0.02032470703125, 0.00640869140625, 0.00722503662109375, 0.0221710205078125, 0.0002321004867553711, 0.037506103515625, -0.013824462890625, -0.0360107421875, 0.045623779296875, -0.048919677734375, 0.0016345977783203125, 0.030426025390625, 0.02734375, 0.0179595947265625, 0.00919342041015625, -0.0017871856689453125, -0.0140533447265625, -0.00014603137969970703, -0.0225067138671875, -0.0002275705337524414, -0.006744384765625, -0.0017061233520507812, -0.064208984375, 0.0330810546875, -0.01861572265625, 0.044219970703125, 0.01059722900390625, 0.036529541015625, -0.009674072265625, -0.0219268798828125, 0.0047454833984375, -0.00772857666015625, 0.00032806396484375, -0.0355224609375, 0.01378631591796875, -0.04052734375, -0.046844482421875, 0.038238525390625, 0.0777587890625, 0.0357666015625, 0.0236358642578125, 0.0005550384521484375, -0.0008006095886230469, 0.007843017578125, -0.01593017578125, -0.01256561279296875, -0.024169921875, -0.00717926025390625, 0.054107666015625, -0.040771484375, -0.016815185546875, 0.004558563232421875, 0.0008769035339355469, 0.0182037353515625, 0.000016391277313232422, 0.006534576416015625, -0.030029296875, -0.0207672119140625, 0.040863037109375, 0.010528564453125, -0.01045989990234375, -0.000064849853515625, 0.06219482421875, -0.043365478515625, -0.033416748046875, -0.055877685546875, 0.05450439453125, -0.00687408447265625, -0.040008544921875, -0.0528564453125, -0.033203125, -0.031707763671875, -0.041900634765625, 0.01085662841796875, 0.01137542724609375, -0.007411956787109375, 0.048187255859375, -0.020111083984375, -0.047027587890625, 0.0033702850341796875, 0.018707275390625, -0.0038890838623046875, -0.0574951171875, 0.0675048828125, 0.0367431640625, 0.0011844635009765625, 0.01070404052734375, -0.025634765625, 0.09478759765625, 0.0101165771484375, -0.07611083984375, 0.04718017578125, 0.00890350341796875, 0.033843994140625, -0.0108795166015625, -0.00731658935546875, 0.10430908203125, 0.053680419921875, 0.02020263671875, 0.034912109375, -0.0221099853515625, -0.0124359130859375, -0.02215576171875, 0.0296173095703125, -0.033416748046875, -0.0133819580078125, -0.0843505859375, 0.037841796875, -0.01763916015625, 0.0313720703125, -0.0225830078125, 0.057830810546875, -0.04290771484375, 0.06060791015625, -0.00872802734375, 0.0142059326171875, 0.02508544921875, 0.027099609375, -0.0399169921875, 0.017791748046875, 0.005855560302734375, 0.015869140625, -0.0209503173828125, 0.0257110595703125, -0.006099700927734375, 0.01285552978515625, 0.0063018798828125, -0.045135498046875, 0.01486968994140625, 0.02587890625, -0.033599853515625, 0.027740478515625, -0.031097412109375, 0.01169586181640625, -0.02716064453125, 0.0307464599609375, -0.0103912353515625, 0.006191253662109375, 0.00841522216796875, 0.0194854736328125, -0.04144287109375, -0.0074920654296875, -0.0194091796875, -0.0166778564453125, 0.0181884765625, 0.039031982421875, 0.02294921875, 0.02166748046875, 0.0002206563949584961, 0.0232391357421875, 0.06597900390625, -0.03509521484375, -0.0055694580078125, 0.007717132568359375, 0.0057220458984375, 0.00966644287109375, 0.0112762451171875, -0.0033321380615234375, 0.0232086181640625, 0.01007843017578125, 0.0182342529296875, 0.018829345703125, -0.01251220703125, -0.0345458984375, -0.0130462646484375, 0.0156097412109375, 0.005466461181640625, -0.018768310546875, -0.0234222412109375, -0.00019872188568115234, 0.03436279296875, -0.004261016845703125, 0.05487060546875, 0.056640625, -0.0058746337890625, -0.031341552734375, 0.0129241943359375, 0.042205810546875, -0.00682830810546875, -0.0034313201904296875, 0.026336669921875, 0.0401611328125, -0.034637451171875, 0.0026149749755859375, 0.0162353515625, 0.00945281982421875, -0.0225830078125, -0.028106689453125, 0.0007739067077636719, -0.00270843505859375, 0.011749267578125, -0.09344482421875, 0.0272979736328125, -0.01212310791015625, 0.0389404296875, 0.0224456787109375, 0.04681396484375, -0.02880859375, -0.01412200927734375, 0.019775390625, -0.006298065185546875, -0.04345703125, -0.01282501220703125, -0.0765380859375, 0.055511474609375, -0.05084228515625, 0.053619384765625, 0.0836181640625, -0.005184173583984375, 0.018524169921875, -0.0038604736328125, -0.044403076171875, -0.038848876953125, 0.059051513671875, 0.018890380859375, -0.015960693359375, -0.06634521484375, 0.003879547119140625, 0.034393310546875, 0.027984619140625, 0.011688232421875, -0.00589752197265625, -0.0230712890625, 0.03948974609375, -0.0572509765625, -0.036895751953125, -0.048126220703125, -0.01067352294921875, 0.00836944580078125, 0.0296173095703125, 0.01461029052734375, -0.01474761962890625, 0.02490234375, 0.00930023193359375, 0.0222625732421875, -0.021636962890625, -0.07293701171875, -0.039581298828125, -0.08441162109375, -0.01326751708984375, -0.0016965866088867188, 0.0136260986328125, -0.00664520263671875, 0.06353759765625, -0.00890350341796875, -0.04193115234375, -0.0038242340087890625, -0.00452423095703125, -0.0011949539184570312, 0.01690673828125, 0.0024814605712890625, 0.00588226318359375, 0.00176239013671875, 0.0124969482421875, -0.035308837890625, 0.0220184326171875, -0.0164947509765625, -0.0233917236328125, -0.007221221923828125, -0.034820556640625, 0.00696563720703125, 0.03240966796875, -0.0074462890625, -0.01439666748046875, 0.04266357421875, -0.045013427734375, 0.02166748046875, 0.026763916015625, 0.01397705078125, -0.003185272216796875, -0.053558349609375, -0.02532958984375, 0.0162506103515625, 0.0223236083984375, -0.01031494140625, 0.0031337738037109375, 0.0438232421875, -0.024383544921875, -0.0032100677490234375, -0.025299072265625, -0.029510498046875, -0.034454345703125, 0.06719970703125, -0.0188446044921875, -0.0024051666259765625, 0.0288238525390625, -0.02362060546875, -0.0035858154296875, -0.011322021484375, 0.0105438232421875, -0.06512451171875, 0.0206298828125, -0.09033203125, 0.01099395751953125, -0.06610107421875, 0.0017404556274414062, -0.016754150390625, 0.10400390625, -0.0321044921875, -0.0307769775390625, 0.041961669921875, 0.01374053955078125, -0.004207611083984375, 0.024169921875, -0.055999755859375, -0.040435791015625, -0.10137939453125, -0.0018749237060546875, -0.002685546875, -0.0190277099609375, -0.004852294921875, 0.03155517578125, -0.04119873046875, -0.04754638671875, 0.0204010009765625, 0.01181793212890625, -0.0105438232421875, 0.00760650634765625, -0.01959228515625, -0.01153564453125, -0.010223388671875, 0.00008243322372436523, -0.0882568359375, 0.0016689300537109375, -0.0205230712890625, 0.0185089111328125, -0.00656890869140625, -0.023162841796875, -0.044464111328125, 0.0242767333984375, 0.0303497314453125, 0.07421875, -0.0217132568359375, -0.05010986328125, 0.0017452239990234375, 0.061492919921875, 0.0377197265625, 0.0167388916015625, 0.0140380859375, -0.0115814208984375, -0.042449951171875, -0.03802490234375, -0.032958984375, -0.035614013671875, 0.0021572113037109375, -0.061431884765625, -0.041595458984375, -0.01702880859375, 0.00308990478515625, -0.0141754150390625, 0.0012063980102539062, -0.0155029296875, 0.01435089111328125, -0.0096435546875, -0.0193634033203125, -0.048370361328125, -0.02044677734375, 0.035858154296875, 0.04486083984375, 0.018585205078125, 0.0186920166015625, -0.055755615234375, 0.034820556640625, 0.045257568359375, 0.039276123046875, 0.051666259765625, 0.046295166015625, -0.0233917236328125, 0.028778076171875, 0.05584716796875, 0.022369384765625, 0.01392364501953125, 0.0228118896484375, 0.00978851318359375, -0.049774169921875, 0.03582763671875, 0.045166015625, -0.08892822265625, 0.0209197998046875, -0.0005035400390625, 0.00574493408203125, 0.0029659271240234375, -0.0031070709228515625, -0.03338623046875, 0.0026798248291015625, 0.0190887451171875, -0.0684814453125, 0.0133209228515625, -0.008636474609375, 0.022430419921875, 0.01102447509765625, -0.0018825531005859375, 0.0489501953125, 0.0191497802734375, -0.0227203369140625, -0.01324462890625, -0.00829315185546875, 0.00754547119140625, 0.0158233642578125, 0.0123138427734375, -0.00033783912658691406, -0.0215301513671875, -0.0023021697998046875, 0.04791259765625, 0.018035888671875, -0.027618408203125, -0.0183868408203125, -0.00885009765625, -0.042449951171875, -0.0224151611328125, -0.00980377197265625, -0.006160736083984375, 0.055328369140625, -0.008575439453125, 0.006679534912109375, 0.038665771484375, 0.037628173828125, -0.01380157470703125, 0.01207733154296875, 0.0123138427734375, -0.0182952880859375, -0.013580322265625, 0.05181884765625, 0.06451416015625, 0.0015954971313476562, -0.03302001953125, 0.03607177734375, 0.028106689453125, 0.0108795166015625, 0.002841949462890625, 0.021209716796875, 0.00016450881958007812, -0.0230865478515625, -0.0004208087921142578, -0.0367431640625, -0.0014238357543945312, -0.0192108154296875, 0.006816864013671875, -0.026580810546875, -0.036041259765625, 0.06597900390625, 0.006259918212890625, -0.0158843994140625, -0.0249786376953125, 0.0172271728515625, 0.020599365234375, -0.0026836395263671875, 0.04937744140625, 0.0302276611328125, 0.044525146484375, 0.005565643310546875, -0.06121826171875, -0.049896240234375, -0.035980224609375, -0.01396942138671875, -0.0257110595703125, -0.00894927978515625, -0.0164337158203125, 0.0911865234375, 0.00031828880310058594, -0.0263519287109375, -0.01715087890625, -0.0179290771484375, -0.0281982421875, 0.0242156982421875, 0.0416259765625, -0.0264129638671875, 0.04339599609375, -0.0165557861328125, -0.0262908935546875, -0.0269622802734375, 0.01715087890625, 0.00824737548828125, 0.025604248046875, -0.037628173828125, -0.0260162353515625, -0.0213165283203125, -0.019256591796875, -0.0168914794921875, -0.03765869140625, -0.029998779296875, 0.00658416748046875, -0.0076751708984375, 0.00339508056640625, -0.034576416015625, -0.0232696533203125, 0.0025634765625, 0.0085296630859375, 0.01271820068359375, 0.00725555419921875, 0.01445770263671875, 0.003383636474609375, -0.01763916015625, 0.0516357421875, -0.00927734375, -0.02813720703125, -0.0258026123046875, -0.0267181396484375, 0.0031909942626953125, -0.04742431640625, -0.026275634765625, -0.0389404296875, 0.045135498046875, 0.054473876953125, 0.03369140625, 0.005878448486328125, 0.0117340087890625, -0.00988006591796875, 0.00759124755859375, -0.0188446044921875, 0.059783935546875, -0.0230560302734375, -0.0023097991943359375, 0.0116119384765625, -0.05950927734375, 0.0020904541015625, 0.00890350341796875, 0.01366424560546875, 0.01641845703125, -0.0347900390625, 0.02392578125, 0.040283203125, -0.0210418701171875, 0.04327392578125, 0.01922607421875, -0.0207366943359375, 0.029144287109375, 0.01111602783203125, 0.01499176025390625, 0.022705078125, 0.007373809814453125, 0.00432586669921875, 0.00914764404296875, 0.04168701171875, -0.006504058837890625, -0.0276947021484375, -0.0008959770202636719, -0.035736083984375, 0.020782470703125, 0.0143585205078125, 0.048797607421875, -0.0570068359375, 0.0302734375, 0.0264129638671875, -0.0032958984375, 0.018829345703125, 0.009307861328125, -0.025390625, -0.045074462890625, 0.016204833984375, -0.005123138427734375, -0.01009368896484375, -0.0009260177612304688, 0.0008664131164550781, -0.014892578125, -0.02337646484375, 0.00495147705078125, 0.006931304931640625, 0.0194244384765625, -0.02716064453125, -0.0299530029296875, 0.002044677734375, -0.0014581680297851562, 0.00047588348388671875, 0.01226043701171875, -0.0230560302734375, -0.024505615234375, 0.025115966796875, -0.037384033203125, -0.0027828216552734375, 0.0189208984375, -0.00144195556640625, 0.014801025390625, 0.034881591796875, -0.0160980224609375, 0.00180816650390625, 0.0114288330078125, 0.01806640625, 0.07171630859375, -0.0146484375, -0.0115203857421875, 0.001613616943359375, -0.01306915283203125, -0.0132293701171875, 0.004543304443359375, -0.01038360595703125, -0.015899658203125, 0.017425537109375, 0.10931396484375, 0.025390625, -0.06103515625, 0.02227783203125, 0.004909515380859375, -0.030303955078125, -0.003566741943359375, -0.0193634033203125, -0.061614990234375, -0.0194549560546875, -0.026397705078125, -0.045196533203125, 0.0218505859375, -0.0142974853515625, -0.061859130859375, 0.082763671875, 0.0222015380859375, 0.041839599609375, 0.0298309326171875, 0.0211029052734375, -0.037109375, -0.01383209228515625, -0.01348876953125, 0.0247039794921875, -0.04534912109375, 0.02783203125, -0.01522064208984375, -0.004169464111328125, 0.0038089752197265625, 0.035552978515625, 0.073974609375, 0.01885986328125, -0.0144195556640625, -0.002933502197265625, 0.039581298828125, 0.0255584716796875, -0.035064697265625, 0.040679931640625, 0.020233154296875, 0.0004620552062988281, 0.045013427734375, 0.01299285888671875, 0.025604248046875, 0.0175323486328125, 0.00444793701171875, 0.049560546875, 0.00960540771484375, 0.01279449462890625, -0.0153045654296875, 0.03668212890625, 0.003566741943359375, -0.026031494140625, 0.0105743408203125, -0.0212249755859375, 0.00617218017578125, 0.0004963874816894531, 0.01425933837890625, -0.006206512451171875, 0.033660888671875, -0.01259613037109375, 0.05194091796875, 0.0135498046875, -0.00514984130859375, -0.0254669189453125, 0.0019741058349609375, 0.07110595703125, -0.038665771484375, -0.0135955810546875, 0.039703369140625, -0.0092926025390625, 0.03741455078125, -0.0252685546875, 0.00423431396484375, -0.035369873046875, 0.035186767578125, 0.01520538330078125, 0.036285400390625, -0.050201416015625, -0.06622314453125, -0.00836944580078125, -0.013885498046875, 0.019683837890625, -0.005893707275390625, 0.0169677734375, 0.0178070068359375, 0.02020263671875, -0.053863525390625, 0.03521728515625, 0.04150390625, -0.0275115966796875, -0.0092010498046875, 0.005157470703125, -0.0191497802734375, 0.05615234375, -0.0196990966796875, -0.00867462158203125, -0.0013914108276367188, 0.052093505859375, 0.009857177734375, 0.03070068359375, -0.01407623291015625, -0.0214080810546875, 0.00579071044921875, 0.0019855499267578125, 0.0038127899169921875, -0.0027561187744140625, -0.01290130615234375, -0.00322723388671875, -0.003604888916015625, 0.0234375, -0.0263824462890625, 0.046600341796875, -0.0140380859375, 0.01947021484375, 0.028656005859375, -0.0005807876586914062, 0.05517578125, -0.0167388916015625, 0.02691650390625, -0.031280517578125, 0.004852294921875, 0.003879547119140625, -0.0175933837890625, 0.0048065185546875, -0.0243377685546875, 0.032470703125, -0.01308441162109375, 0.03204345703125, -0.0019779205322265625, -0.02044677734375, 0.034423828125, -0.06695556640625, 0.095458984375, -0.014068603515625, -0.01183319091796875, -0.0162200927734375, -0.01226806640625, 0.0367431640625, -0.006076812744140625, 0.0169677734375, 0.03265380859375, 0.02325439453125, 0.0028018951416015625, 0.0176849365234375, 0.0241241455078125, -0.057647705078125, 0.0065460205078125, 0.00684356689453125, 0.0318603515625, 0.00885009765625, -0.0106201171875, 0.006252288818359375, -0.005458831787109375, -0.01003265380859375, 0.04296875, 0.0606689453125, -0.005596160888671875, 0.0212554931640625, -0.040496826171875, -0.0004818439483642578, -0.041839599609375, -0.067626953125, 0.069580078125, -0.01172637939453125, -0.04071044921875, 0.01165771484375, -0.040191650390625, 0.007965087890625, 0.0215606689453125, -0.0079345703125, 0.00824737548828125, 0.0012102127075195312, 0.028778076171875, 0.01904296875, 0.007450103759765625, -0.032318115234375, -0.05267333984375, -0.04119873046875, 0.00047206878662109375, 0.005558013916015625, 0.0128021240234375, -0.03997802734375, 0.0095367431640625, -0.0034046173095703125, -0.032623291015625, 0.00888824462890625, -0.0173187255859375, -0.00513458251953125, 0.033294677734375, 0.0272979736328125, -0.0170440673828125, -0.008575439453125, -0.0199127197265625, 0.0227203369140625, -0.007732391357421875, 0.05230712890625, -0.0170745849609375, 0.0143585205078125, 0.051544189453125, -0.024932861328125, -0.0186767578125, -0.05133056640625, -0.0423583984375, 0.03729248046875, 0.005619049072265625, -0.0038967132568359375, -0.06988525390625, -0.0122222900390625, -0.04034423828125, -0.0017595291137695312, 0.00792694091796875, 0.0200653076171875, -0.0251617431640625, 0.058837890625, -0.0006341934204101562, 0.037689208984375, 0.01142120361328125, -0.053009033203125, 0.0180206298828125, -0.0142059326171875, 0.02630615234375, 0.0225677490234375, 0.0218963623046875, 0.0019931793212890625, 0.042236328125, -0.0130462646484375, -0.0160369873046875, -0.0002391338348388672, 0.032440185546875, 0.01580810546875, 0.0035190582275390625, 0.002460479736328125, -0.007732391357421875, -0.0168609619140625, 0.0007891654968261719, 0.00728607177734375, 0.039764404296875, 0.032470703125, -0.01023101806640625, 0.0274200439453125, -0.02130126953125, -0.029388427734375, -0.037261962890625, 0.037384033203125, -0.0677490234375, -0.041259765625, 0.017852783203125, -0.0256195068359375, -0.0272369384765625, -0.04754638671875, -0.054595947265625, -0.0014781951904296875, 0.0278778076171875, -0.036590576171875, -0.039306640625, 0.0135040283203125, 0.0242156982421875, 0.00838470458984375, -0.012725830078125, -0.029693603515625, -0.04583740234375, 0.01163482666015625, -0.002643585205078125, 0.08428955078125, 0.016693115234375, 0.01007843017578125, 0.00010949373245239258, -0.01041412353515625, -0.0174102783203125, 0.01067352294921875, 0.039093017578125, -0.01275634765625, 0.0169677734375, 0.021575927734375, -0.048919677734375, -0.041748046875, -0.036346435546875, -0.0260467529296875, -0.0103302001953125, -0.039276123046875, -0.0269927978515625, -0.036163330078125, 0.0310516357421875, 0.052398681640625, 0.0067901611328125, -0.011474609375, 0.036773681640625, 0.032623291015625, -0.02398681640625, 0.0028591156005859375, 0.007602691650390625, -0.0215301513671875, -0.0074920654296875, -0.008575439453125, -0.0303802490234375, 0.00396728515625, 0.048858642578125, -0.04461669921875, 0.0057220458984375, -0.0108184814453125, -0.04437255859375, -0.0596923828125, 0.01071929931640625, 0.05987548828125, -0.034637451171875, 0.01290130615234375, 0.013092041015625, -0.0167694091796875, 0.047027587890625, 0.058441162109375, 0.00646209716796875, -0.019256591796875, 0.00921630859375, 0.008331298828125, 0.014739990234375, 0.0207061767578125, 0.0157928466796875, -0.040008544921875, -0.0301666259765625, 0.01090240478515625, 0.01113128662109375, -0.0114288330078125, -0.0197906494140625, 0.0252838134765625, 0.005645751953125, 0.08331298828125, 0.017303466796875, -0.03564453125, -0.031341552734375, 0.04315185546875, 0.009063720703125, -0.037628173828125, 0.02239990234375, -0.01288604736328125, 0.02838134765625, 0.02001953125, 0.0160675048828125, 0.0126953125, -0.0091552734375, 0.021026611328125, -0.00896453857421875, -0.006114959716796875 ]
86bb2f6eff771e1e497b8f3399d9dd07fd5675be
Wordpress Stackexchange Q: WP-CLI Bulk delete posts from specific category I would like to know how to bulk delete posts from a specific category using the WP-CLI, any tip? A: This should delete all posts in your category: wp post delete $(wp post list --cat=your_category_ID --format=ids) Or directly: wp db query [<your_sql_query>] For more info: wp post delete --help wp post list --help wp db query --help
Q: WP-CLI Bulk delete posts from specific category I would like to know how to bulk delete posts from a specific category using the WP-CLI, any tip? A: This should delete all posts in your category: wp post delete $(wp post list --cat=your_category_ID --format=ids) Or directly: wp db query [<your_sql_query>] For more info: wp post delete --help wp post list --help wp db query --help A: Actually update wp-cli needs to use the following command to delete all products for a category of Woocommerce installation: wp post delete $(wp wc product list --category=category_id --user=admin_username) --force Since Woo only allows to delete 100 products per time you can use the following bash command to create loops using a step value of 100. for run in {1..2}; do wp post delete $(wp wc product list --category=category_id --user=admin_username) --force; done this one deletes 200 products in 2 steps of 100 product each for run in {1..3}; do wp post delete $(wp wc product list --category=category_id --user=admin_username) --force; done this one deletes 300 products in 3 steps of 100 product each and so on...
wordpress
{ "language": "en", "length": 180, "provenance": "stackexchange_00019.jsonl.gz:468939", "question_score": "4", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/241543" }
[ -0.0002849102020263672, 0.005718231201171875, -0.045867919921875, -0.01470184326171875, 0.01497650146484375, -0.03240966796875, 0.0318603515625, 0.011016845703125, 0.00914764404296875, 0.01702880859375, -0.011077880859375, -0.0021457672119140625, 0.03424072265625, -0.0293426513671875, 0.02374267578125, -0.0132598876953125, 0.038299560546875, -0.0146942138671875, 0.034271240234375, -0.01222991943359375, 0.017730712890625, 0.019378662109375, 0.04534912109375, 0.036102294921875, 0.009674072265625, 0.0269927978515625, 0.0245513916015625, -0.0197906494140625, -0.0233001708984375, -0.041046142578125, 0.0120391845703125, 0.03509521484375, -0.00695037841796875, 0.01274871826171875, 0.04327392578125, 0.0162200927734375, -0.034698486328125, 0.0265350341796875, 0.048004150390625, -0.02392578125, 0.0198211669921875, -0.0183258056640625, 0.0264434814453125, 0.013519287109375, -0.00873565673828125, 0.0007576942443847656, -0.002429962158203125, -0.04351806640625, 0.046234130859375, -0.0145416259765625, -0.00555419921875, 0.0258026123046875, 0.017181396484375, -0.06427001953125, -0.0279083251953125, -0.0258636474609375, -0.005435943603515625, 0.0087738037109375, 0.06304931640625, 0.0024471282958984375, -0.056182861328125, -0.046112060546875, 0.0281219482421875, -0.048065185546875, 0.0005831718444824219, -0.011962890625, 0.00826263427734375, 0.0211334228515625, -0.0308990478515625, -0.0084228515625, 0.04559326171875, -0.025970458984375, 0.006256103515625, 0.00724029541015625, 0.0202178955078125, -0.0224761962890625, 0.006885528564453125, 0.0025691986083984375, 0.0095367431640625, 0.03570556640625, 0.0137786865234375, 0.0231781005859375, -0.0011463165283203125, -0.001983642578125, -0.010498046875, 0.00797271728515625, -0.0228118896484375, -0.0174102783203125, -0.023101806640625, -0.048431396484375, -0.0286865234375, -0.07830810546875, -0.04071044921875, 0.0199737548828125, -0.0176239013671875, -0.0237884521484375, -0.004791259765625, 0.007137298583984375, -0.01123046875, -0.00200653076171875, -0.0006227493286132812, -0.025146484375, -0.0171356201171875, -0.00531005859375, 0.01435089111328125, 0.029327392578125, -0.0100860595703125, -0.0286407470703125, 0.0150299072265625, 0.024200439453125, -0.0176544189453125, -0.00609588623046875, 0.0162353515625, 0.041015625, -0.0262298583984375, -0.0280914306640625, -0.05029296875, 0.044830322265625, -0.026702880859375, 0.034027099609375, 0.007656097412109375, 0.046295166015625, -0.0188140869140625, -0.0218048095703125, -0.02667236328125, -0.01145172119140625, 0.0042266845703125, -0.0494384765625, 0.0096893310546875, -0.01262664794921875, -0.03289794921875, 0.034027099609375, 0.04962158203125, -0.00244140625, -0.01284027099609375, -0.0007634162902832031, 0.000751495361328125, -0.0100555419921875, 0.0137786865234375, -0.015045166015625, 0.03302001953125, -0.003753662109375, 0.01381683349609375, 0.00975799560546875, 0.023284912109375, 0.046661376953125, 0.006542205810546875, -0.034698486328125, 0.01424407958984375, -0.013885498046875, -0.042633056640625, -0.00629425048828125, 0.041534423828125, 0.0167694091796875, 0.021209716796875, -0.015899658203125, 0.10491943359375, -0.058502197265625, -0.03436279296875, -0.0804443359375, 0.038330078125, 0.015106201171875, 0.03936767578125, 0.0179901123046875, -0.0220489501953125, -0.006160736083984375, -0.06903076171875, -0.0305938720703125, 0.0201416015625, -0.01995849609375, -0.0015544891357421875, -0.0263824462890625, 0.01375579833984375, -0.01116943359375, -0.005840301513671875, 0.03253173828125, 0.0160064697265625, -0.0282745361328125, 0.0120391845703125, 0.052398681640625, -0.0162506103515625, -0.035919189453125, -0.005451202392578125, -0.0089263916015625, -0.059967041015625, 0.0020236968994140625, 0.032867431640625, 0.10784912109375, 0.0193328857421875, 0.041717529296875, 0.04949951171875, -0.03326416015625, -0.01123046875, -0.0065765380859375, 0.0007038116455078125, -0.030609130859375, -0.01367950439453125, -0.024932861328125, -0.0010528564453125, 0.0247802734375, 0.01467132568359375, -0.00534820556640625, 0.0038967132568359375, -0.0021228790283203125, -0.06243896484375, 0.0284271240234375, -0.02899169921875, 0.041961669921875, -0.0207977294921875, -0.006839752197265625, 0.0262298583984375, 0.004192352294921875, 0.00554656982421875, -0.0926513671875, -0.05072021484375, 0.00717926025390625, -0.0177154541015625, 0.002254486083984375, -0.019622802734375, 0.01560211181640625, -0.0445556640625, -0.0224456787109375, -0.042022705078125, 0.0214385986328125, 0.038238525390625, 0.004375457763671875, -0.01474761962890625, -0.0186767578125, 0.027984619140625, 0.00594329833984375, -0.0433349609375, 0.011749267578125, 0.0760498046875, 0.06964111328125, -0.0325927734375, -0.0034542083740234375, 0.02264404296875, -0.0156707763671875, -0.00861358642578125, 0.039764404296875, 0.0017690658569335938, 0.01708984375, -0.012908935546875, 0.036895751953125, 0.045166015625, -0.025543212890625, -0.01192474365234375, 0.034393310546875, 0.0176239013671875, 0.044158935546875, 0.01322174072265625, -0.01270294189453125, 0.012176513671875, -0.038665771484375, 0.00789642333984375, 0.0307159423828125, 0.026123046875, -0.0065460205078125, -0.0101470947265625, -0.009246826171875, 0.02630615234375, -0.0267486572265625, -0.08087158203125, 0.017730712890625, 0.062408447265625, -0.031219482421875, 0.0282745361328125, -0.0002727508544921875, -0.02911376953125, 0.00914764404296875, 0.0165863037109375, -0.047119140625, 0.01177215576171875, 0.0250396728515625, -0.01154327392578125, 0.0207672119140625, -0.0341796875, -0.007350921630859375, 0.05224609375, 0.00966644287109375, -0.00855255126953125, 0.0279693603515625, 0.03515625, -0.0133056640625, -0.024658203125, -0.054901123046875, 0.035736083984375, -0.005168914794921875, -0.05743408203125, -0.033416748046875, -0.0294952392578125, 0.08135986328125, -0.006137847900390625, 0.035675048828125, 0.005245208740234375, 0.031951904296875, 0.033782958984375, -0.04205322265625, 0.025543212890625, -0.0144195556640625, 0.032745361328125, 0.06024169921875, 0.019683837890625, -0.01030731201171875, 0.004489898681640625, 0.059814453125, 0.036468505859375, -0.009002685546875, -0.01373291015625, 0.01088714599609375, -0.03338623046875, -0.01015472412109375, 0.0252685546875, 0.054229736328125, 0.00794219970703125, -0.0357666015625, 0.0162506103515625, 0.02899169921875, -0.06536865234375, -0.0706787109375, 0.07177734375, -0.0035343170166015625, 0.012847900390625, -0.018951416015625, -0.0003914833068847656, -0.035552978515625, 0.0014553070068359375, -0.0199432373046875, 0.0304412841796875, -0.007122039794921875, -0.0115814208984375, 0.0037937164306640625, -0.048858642578125, -0.04058837890625, 0.0026874542236328125, -0.0024471282958984375, 0.01483917236328125, 0.088623046875, 0.01271820068359375, -0.0789794921875, -0.01255035400390625, -0.008331298828125, -0.04180908203125, 0.0195770263671875, 0.017059326171875, -0.0079498291015625, -0.005802154541015625, 0.00937652587890625, 0.005268096923828125, 0.0279541015625, -0.033599853515625, -0.02655029296875, 0.0019588470458984375, -0.0257110595703125, 0.0019550323486328125, 0.005603790283203125, -0.007053375244140625, -0.02288818359375, -0.00177001953125, -0.05535888671875, -0.006313323974609375, -0.0289459228515625, -0.0283660888671875, -0.001964569091796875, 0.017181396484375, 0.00475311279296875, -0.0293426513671875, 0.022491455078125, 0.020904541015625, 0.033203125, -0.003917694091796875, 0.0036716461181640625, 0.029693603515625, -0.0031280517578125, 0.010772705078125, -0.0162200927734375, 0.004787445068359375, -0.040313720703125, 0.0050048828125, -0.006351470947265625, -0.017852783203125, -0.0249176025390625, -0.0037059783935546875, -0.02703857421875, -0.03753662109375, 0.027496337890625, -0.0086517333984375, 0.0208587646484375, -0.009521484375, -0.0194244384765625, 0.00698089599609375, 0.08392333984375, -0.040435791015625, -0.04168701171875, -0.03778076171875, 0.023345947265625, 0.0232696533203125, -0.063232421875, 0.0452880859375, -0.04608154296875, -0.0758056640625, 0.025665283203125, 0.00983428955078125, -0.026611328125, -0.03167724609375, 0.0418701171875, -0.0584716796875, -0.0243377685546875, 0.051239013671875, -0.09039306640625, 0.061798095703125, -0.0280609130859375, 0.0455322265625, -0.04534912109375, -0.0291290283203125, -0.05035400390625, -0.05743408203125, 0.002529144287109375, -0.01380157470703125, -0.0007114410400390625, -0.0027332305908203125, 0.0016851425170898438, -0.0013208389282226562, 0.02874755859375, 0.01338958740234375, 0.017822265625, -0.000736236572265625, -0.00702667236328125, -0.0037555694580078125, -0.0244903564453125, -0.003490447998046875, -0.0276031494140625, -0.026275634765625, -0.050689697265625, 0.0137786865234375, 0.0201263427734375, -0.022216796875, 0.042633056640625, -0.04150390625, 0.016937255859375, -0.0638427734375, -0.0478515625, -0.0426025390625, -0.0005645751953125, -0.028106689453125, 0.0182342529296875, -0.059326171875, -0.047698974609375, 0.0753173828125, 0.0266876220703125, 0.0011339187622070312, -0.0030345916748046875, 0.0899658203125, -0.01114654541015625, -0.0377197265625, -0.08392333984375, 0.033172607421875, 0.0177001953125, -0.013214111328125, 0.06793212890625, 0.0186767578125, -0.0014715194702148438, 0.040557861328125, -0.00885772705078125, -0.01690673828125, -0.040435791015625, 0.0799560546875, 0.004764556884765625, 0.02215576171875, -0.0290069580078125, -0.03399658203125, 0.0595703125, 0.044891357421875, 0.01148223876953125, -0.03179931640625, 0.00994110107421875, 0.058441162109375, 0.01027679443359375, -0.040618896484375, -0.061859130859375, -0.04400634765625, 0.01398468017578125, -0.0125579833984375, -0.0039043426513671875, 0.03125, -0.0168914794921875, 0.03271484375, 0.00865936279296875, 0.0084991455078125, -0.035919189453125, -0.00470733642578125, -0.0443115234375, 0.004314422607421875, -0.00536346435546875, -0.0176849365234375, -0.014495849609375, -0.0010004043579101562, -0.0007638931274414062, -0.022491455078125, -0.051361083984375, -0.0157470703125, 0.0006804466247558594, 0.037322998046875, 0.040191650390625, 0.0008740425109863281, 0.054595947265625, 0.0181884765625, -0.0003082752227783203, -0.01995849609375, -0.02349853515625, -0.023162841796875, -0.051116943359375, 0.01155853271484375, 0.008758544921875, -0.01088714599609375, 0.052703857421875, 0.0038051605224609375, -0.0298004150390625, 0.03302001953125, -0.007965087890625, 0.057373046875, 0.041473388671875, 0.01580810546875, 0.0233917236328125, 0.000016689300537109375, -0.017822265625, -0.020538330078125, -0.03814697265625, -0.0338134765625, -0.00032520294189453125, 0.01526641845703125, 0.053192138671875, 0.017333984375, -0.00811767578125, 0.0034961700439453125, -0.0258331298828125, -0.00577545166015625, 0.0174102783203125, 0.01335906982421875, -0.0148468017578125, -0.016571044921875, -0.01103973388671875, 0.01399993896484375, -0.00467681884765625, -0.0209503173828125, -0.0138397216796875, -0.048431396484375, 0.004367828369140625, 0.05181884765625, -0.006534576416015625, -0.002330780029296875, -0.0217437744140625, -0.016815185546875, -0.0184478759765625, 0.01055145263671875, 0.0111541748046875, 0.006256103515625, -0.0289154052734375, -0.046966552734375, 0.031982421875, 0.00965118408203125, 0.0160064697265625, -0.0097198486328125, -0.006343841552734375, 0.02447509765625, -0.0066680908203125, 0.06671142578125, 0.02587890625, 0.0038356781005859375, -0.0193634033203125, -0.01544189453125, -0.0413818359375, -0.004520416259765625, -0.004077911376953125, -0.051727294921875, -0.01007843017578125, 0.005207061767578125, -0.004596710205078125, 0.00316619873046875, 0.00894927978515625, -0.038726806640625, 0.0290679931640625, 0.02947998046875, -0.0126190185546875, -0.045196533203125, 0.037261962890625, 0.01971435546875, 0.02117919921875, -0.0082244873046875, 0.0234832763671875, 0.04327392578125, -0.018524169921875, -0.0009746551513671875, -0.06500244140625, 0.00592041015625, 0.016326904296875, -0.036712646484375, 0.001468658447265625, 0.00917816162109375, 0.0167083740234375, 0.0190887451171875, -0.0224151611328125, -0.012786865234375, -0.009552001953125, 0.01374053955078125, -0.01421356201171875, 0.0255584716796875, 0.0020618438720703125, 0.0116729736328125, 0.0217742919921875, -0.00307464599609375, 0.0215911865234375, -0.038421630859375, -0.02276611328125, -0.021087646484375, 0.01215362548828125, -0.017486572265625, 0.04461669921875, 0.0615234375, -0.00728607177734375, 0.024871826171875, 0.0135040283203125, 0.004123687744140625, 0.00601959228515625, -0.017730712890625, 0.0192718505859375, 0.0164031982421875, 0.039825439453125, -0.0214385986328125, -0.0209808349609375, -0.0003180503845214844, -0.041900634765625, -0.0173187255859375, 0.04205322265625, 0.063720703125, -0.0660400390625, 0.0189666748046875, 0.037384033203125, 0.0006780624389648438, 0.0038776397705078125, 0.004009246826171875, 0.00023221969604492188, 0.01617431640625, -0.0252685546875, 0.02655029296875, -0.0307769775390625, -0.0192108154296875, 0.018798828125, 0.016510009765625, 0.0179290771484375, 0.01470184326171875, 0.00920867919921875, -0.0682373046875, -0.0066680908203125, 0.06011962890625, -0.01558685302734375, -0.0221710205078125, -0.006183624267578125, 0.007205963134765625, -0.02294921875, -0.0767822265625, 0.0279693603515625, -0.003143310546875, 0.00257110595703125, 0.018646240234375, -0.04681396484375, 0.0303955078125, 0.0386962890625, -0.019561767578125, 0.006893157958984375, 0.01096343994140625, -0.0355224609375, -0.042236328125, -0.0110321044921875, 0.0261993408203125, 0.0193634033203125, -0.09295654296875, 0.0272674560546875, -0.06195068359375, 0.007389068603515625, -0.01413726806640625, -0.0457763671875, 0.07769775390625, -0.07525634765625, 0.007724761962890625, 0.014068603515625, 0.0499267578125, 0.00992584228515625, -0.0184173583984375, 0.04632568359375, -0.0220794677734375, 0.022308349609375, 0.006534576416015625, 0.0161895751953125, -0.035369873046875, -0.030364990234375, -0.062347412109375, 0.0740966796875, 0.016021728515625, 0.034088134765625, -0.009552001953125, 0.0245819091796875, 0.0008153915405273438, 0.0222930908203125, -0.049652099609375, 0.060394287109375, 0.034912109375, 0.0214385986328125, -0.046905517578125, -0.0140228271484375, 0.006809234619140625, 0.020050048828125, 0.062042236328125, 0.0017910003662109375, 0.0252838134765625, -0.0115814208984375, 0.060455322265625, 0.04254150390625, -0.00960540771484375, 0.00518798828125, -0.007110595703125, 0.0217132568359375, 0.026458740234375, -0.03521728515625, 0.0298004150390625, -0.002582550048828125, -0.025421142578125, 0.01560211181640625, 0.03839111328125, 0.058990478515625, -0.0009307861328125, 0.04473876953125, -0.00862884521484375, 0.00226593017578125, 0.0194854736328125, -0.0033416748046875, 0.01715087890625, 0.033050537109375, 0.052154541015625, -0.07965087890625, -0.036224365234375, -0.024566650390625, 0.048370361328125, 0.0089874267578125, 0.029937744140625, 0.0550537109375, 0.02215576171875, 0.05975341796875, -0.00457000732421875, 0.0328369140625, 0.0042877197265625, -0.0162811279296875, 0.071044921875, 0.03387451171875, 0.042938232421875, -0.028350830078125, 0.00936126708984375, 0.02520751953125, 0.07550048828125, -0.059539794921875, -0.06365966796875, 0.005794525146484375, 0.022735595703125, 0.027679443359375, 0.0113677978515625, 0.0201416015625, -0.0198822021484375, 0.05413818359375, -0.03948974609375, -0.0008854866027832031, 0.0187530517578125, 0.016510009765625, 0.00598907470703125, 0.02197265625, -0.036376953125, -0.0159149169921875, -0.01568603515625, 0.0000336766242980957, 0.007297515869140625, 0.021636962890625, 0.01288604736328125, 0.0178375244140625, -0.01004791259765625, -0.00527191162109375, 0.0007877349853515625, 0.0261077880859375, 0.02398681640625, -0.01180267333984375, -0.01560211181640625, -0.0369873046875, 0.053802490234375, 0.023345947265625, -0.01317596435546875, 0.0170135498046875, 0.07574462890625, 0.05755615234375, -0.056671142578125, -0.036041259765625, 0.0164794921875, -0.0288238525390625, -0.0275115966796875, -0.02044677734375, -0.0188140869140625, 0.0028324127197265625, -0.0178680419921875, 0.01361083984375, 0.0270843505859375, -0.004978179931640625, -0.0233001708984375, 0.010650634765625, 0.007068634033203125, -0.0273284912109375, 0.0462646484375, -0.0035686492919921875, 0.01062774658203125, -0.0003025531768798828, -0.033660888671875, 0.00106048583984375, -0.03228759765625, -0.0052947998046875, 0.00323486328125, 0.0205841064453125, -0.01221466064453125, 0.0303192138671875, -0.005809783935546875, -0.0286102294921875, 0.021942138671875, 0.018402099609375, 0.00499725341796875, -0.004573822021484375, 0.0052642822265625, -0.006198883056640625, 0.0096282958984375, 0.0038280487060546875, 0.0199127197265625, 0.021087646484375, 0.0250244140625, 0.00934600830078125, 0.00894927978515625, 0.0214080810546875, -0.0312042236328125, 0.06707763671875, -0.058502197265625, -0.00428009033203125, 0.0214385986328125, 0.0254058837890625, 0.0169219970703125, -0.024322509765625, -0.03411865234375, -0.000431060791015625, 0.0305023193359375, -0.03253173828125, -0.006610870361328125, -0.01580810546875, 0.0197296142578125, 0.002498626708984375, 0.034271240234375, -0.019439697265625, 0.01390838623046875, -0.031524658203125, -0.032562255859375, 0.051910400390625, 0.0293121337890625, 0.002811431884765625, -0.0022830963134765625, -0.024749755859375, 0.0010042190551757812, -0.006114959716796875, 0.031097412109375, -0.0265045166015625, 0.030548095703125, -0.03277587890625, -0.0032672882080078125, -0.0072479248046875, -0.00884246826171875, -0.0034465789794921875, 0.025848388671875, -0.03143310546875, 0.0244903564453125, -0.046966552734375, -0.042449951171875, -0.01026153564453125, 0.02459716796875, -0.007038116455078125, 0.01424407958984375, -0.06927490234375, 0.004497528076171875, 0.0262908935546875, 0.007167816162109375, -0.0260009765625, -0.0421142578125, -0.00099945068359375, 0.02276611328125, -0.03924560546875, -0.02044677734375, -0.0889892578125, -0.00931549072265625, -0.0012989044189453125, -0.01190185546875, 0.0054168701171875, 0.045135498046875, -0.0272064208984375, -0.04022216796875, -0.0169219970703125, -0.02301025390625, -0.0299530029296875, -0.0304412841796875, -0.029693603515625, -0.044708251953125, -0.07110595703125, 0.0360107421875, -0.05126953125, 0.0129241943359375, 0.01702880859375, -0.035125732421875, -0.020782470703125, -0.0020771026611328125, 0.0284576416015625, 0.046844482421875, 0.0660400390625, -0.015838623046875, 0.030731201171875, 0.00311279296875, -0.02325439453125, -0.037628173828125, -0.003009796142578125, 0.005550384521484375, -0.0099334716796875, -0.018768310546875, 0.0065460205078125, 0.0217437744140625, -0.0340576171875, -0.1217041015625, 0.05267333984375, -0.034759521484375, -0.047637939453125, -0.0228118896484375, 0.012054443359375, 0.01873779296875, -0.058258056640625, -0.01511383056640625, 0.00817108154296875, -0.035369873046875, 0.01064300537109375, 0.0064697265625, 0.056640625, -0.005756378173828125, -0.007770538330078125, 0.01064300537109375, 0.040740966796875, 0.041259765625, 0.030303955078125, -0.002410888671875, 0.01288604736328125, 0.02520751953125, 0.050933837890625, -0.018157958984375, 0.054473876953125, -0.003093719482421875, -0.03082275390625, 0.0143585205078125, -0.01116943359375, -0.058441162109375, -0.01076507568359375, 0.046356201171875, 0.069091796875, 0.034515380859375, -0.0274658203125, -0.0211029052734375, -0.0121307373046875, 0.039794921875, -0.00104522705078125, -0.006206512451171875, -0.0306854248046875, -0.01050567626953125, 0.00341033935546875, 0.003078460693359375, 0.018585205078125, -0.0174102783203125, -0.0079803466796875, -0.01531219482421875, 0.01273345947265625, 0.00037860870361328125, -0.02825927734375, 0.038818359375, 0.00278472900390625, -0.0181427001953125, 0.004024505615234375, -0.03363037109375, -0.00998687744140625, -0.003414154052734375, -0.0225372314453125, -0.0289154052734375, -0.01210784912109375, -0.0213470458984375, 0.0202484130859375, -0.0290985107421875, 0.02984619140625, -0.034454345703125, 0.016082763671875, -0.0242156982421875, 0.029571533203125, 0.004856109619140625, 0.0126800537109375, -0.017333984375, 0.040771484375, 0.0207977294921875, 0.053009033203125, -0.00249481201171875, 0.0028209686279296875, -0.0209503173828125, 0.0654296875, -0.006969451904296875, -0.0305938720703125, 0.03936767578125, -0.041412353515625, -0.0083465576171875, 0.01641845703125, -0.0213165283203125, -0.06341552734375, 0.0517578125, 0.046630859375, 0.00356292724609375, 0.0242767333984375 ]
6da0dae36bf8603f29f84d731f32487dc6b97eea
Wordpress Stackexchange Q: Shortcode in shortcode: How to append variable? In below example, I wrapped [contact-form-7 id="33"] inside another shortcode [myform]. So, when posting, just use [myform] istead: function wrapthecode() { return do_shortcode('[contact-form-7 id="33"]'); } add_shortcode( 'myform', 'wrapthecode' ); But how to append variable ID on the new shortcode? Means [myform id="33"] is [contact-form-7 id="33"] and [myform id="34"] is [contact-form-7 id="34"] A: You need to get the attributes of the shortcode, which is quite simple and documented in the add_shortcode() examples: function wrapthecode( $attr ) { if( empty( $attr['id'] ) ) return 'No ID given.'; return do_shortcode('[contact-form-7 id="' . $attr['id'] . '"]'); } add_shortcode( 'myform', 'wrapthecode' );
Q: Shortcode in shortcode: How to append variable? In below example, I wrapped [contact-form-7 id="33"] inside another shortcode [myform]. So, when posting, just use [myform] istead: function wrapthecode() { return do_shortcode('[contact-form-7 id="33"]'); } add_shortcode( 'myform', 'wrapthecode' ); But how to append variable ID on the new shortcode? Means [myform id="33"] is [contact-form-7 id="33"] and [myform id="34"] is [contact-form-7 id="34"] A: You need to get the attributes of the shortcode, which is quite simple and documented in the add_shortcode() examples: function wrapthecode( $attr ) { if( empty( $attr['id'] ) ) return 'No ID given.'; return do_shortcode('[contact-form-7 id="' . $attr['id'] . '"]'); } add_shortcode( 'myform', 'wrapthecode' );
wordpress
{ "language": "en", "length": 105, "provenance": "stackexchange_00019.jsonl.gz:468954", "question_score": "5", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/241599" }
[ 0.01332855224609375, -0.011932373046875, -0.03436279296875, -0.03497314453125, -0.0152435302734375, -0.018157958984375, -0.01482391357421875, 0.0003094673156738281, -0.0171356201171875, 0.01580810546875, -0.0282745361328125, 0.0015439987182617188, -0.051239013671875, -0.01338958740234375, -0.0172271728515625, -0.046142578125, 0.03656005859375, -0.016632080078125, 0.0104522705078125, -0.022979736328125, 0.00027179718017578125, -0.002140045166015625, 0.004291534423828125, 0.06488037109375, 0.005950927734375, -0.025970458984375, 0.07470703125, -0.0133514404296875, 0.00199127197265625, -0.024322509765625, 0.01087188720703125, 0.0109710693359375, 0.07537841796875, 0.0177459716796875, -0.0943603515625, 0.0634765625, 0.002597808837890625, -0.01195526123046875, -0.051239013671875, 0.05670166015625, 0.025970458984375, -0.008758544921875, 0.06768798828125, -0.017669677734375, 0.01157379150390625, -0.015899658203125, 0.0227508544921875, -0.04388427734375, -0.0229644775390625, -0.0029125213623046875, 0.01715087890625, 0.03521728515625, 0.04608154296875, -0.004940032958984375, -0.0026149749755859375, 0.01079559326171875, -0.01160430908203125, -0.07659912109375, 0.040191650390625, 0.039947509765625, 0.00443267822265625, -0.060791015625, 0.0146942138671875, -0.051116943359375, 0.00923919677734375, 0.002197265625, -0.0076751708984375, 0.0057525634765625, -0.006008148193359375, 0.033355712890625, 0.0222320556640625, -0.035675048828125, 0.007110595703125, -0.0266876220703125, 0.0254364013671875, -0.01308441162109375, 0.0229644775390625, 0.0295867919921875, -0.01091766357421875, 0.0178070068359375, -0.03228759765625, -0.043243408203125, -0.03631591796875, 0.0127716064453125, -0.013092041015625, 0.044586181640625, -0.0279388427734375, 0.002063751220703125, 0.035888671875, -0.0220489501953125, 0.01432037353515625, -0.00007027387619018555, 0.0166168212890625, 0.0257720947265625, -0.021636962890625, -0.041961669921875, -0.005321502685546875, 0.031707763671875, 0.006961822509765625, 0.042327880859375, -0.026641845703125, -0.03631591796875, 0.05206298828125, -0.058319091796875, -0.0086212158203125, 0.045013427734375, 0.0215606689453125, 0.01629638671875, 0.019805908203125, -0.0016088485717773438, -0.0167236328125, 0.025177001953125, -0.041961669921875, 0.03790283203125, -0.053253173828125, -0.009552001953125, -0.09716796875, 0.01407623291015625, -0.036407470703125, 0.03564453125, 0.0035457611083984375, 0.0204620361328125, 0.0020008087158203125, -0.0103607177734375, -0.00650787353515625, -0.01502227783203125, -0.0031223297119140625, -0.0401611328125, 0.025726318359375, 0.00714111328125, -0.06622314453125, 0.015960693359375, 0.12103271484375, 0.0345458984375, 0.033966064453125, -0.017578125, -0.00708770751953125, -0.013580322265625, 0.0132598876953125, -0.0054473876953125, -0.0083770751953125, -0.02813720703125, 0.0217742919921875, -0.00411224365234375, -0.04925537109375, 0.023101806640625, 0.0289154052734375, 0.0142669677734375, -0.051971435546875, -0.10992431640625, 0.0278472900390625, -0.031951904296875, 0.043731689453125, 0.018798828125, -0.028350830078125, 0.0006909370422363281, 0.022491455078125, -0.030364990234375, -0.0162811279296875, -0.037689208984375, -0.01296234130859375, 0.0008020401000976562, 0.0228729248046875, -0.0576171875, -0.038726806640625, -0.03717041015625, -0.04986572265625, 0.005916595458984375, 0.0245208740234375, 0.07183837890625, 0.0169677734375, -0.02032470703125, -0.047607421875, 0.00595855712890625, -0.01441192626953125, -0.02081298828125, -0.00934600830078125, -0.01342010498046875, 0.05499267578125, -0.054290771484375, -0.035552978515625, -0.01078033447265625, 0.05682373046875, -0.00789642333984375, -0.060821533203125, 0.060546875, 0.0022029876708984375, 0.07232666015625, -0.0108795166015625, 0.00748443603515625, 0.0200347900390625, 0.04400634765625, -0.00960540771484375, -0.00533294677734375, 0.018402099609375, 0.004566192626953125, -0.0086822509765625, 0.00447845458984375, 0.0048370361328125, -0.0252685546875, -0.027435302734375, -0.03521728515625, 0.0325927734375, 0.00278472900390625, 0.00909423828125, -0.01480865478515625, -0.01238250732421875, 0.0164947509765625, -0.031768798828125, -0.037567138671875, 0.03515625, -0.0416259765625, -0.02667236328125, 0.0352783203125, 0.0012311935424804688, 0.05133056640625, -0.0303802490234375, 0.04266357421875, -0.004566192626953125, 0.0494384765625, 0.01025390625, -0.0267486572265625, 0.0127105712890625, -0.009613037109375, 0.013580322265625, -0.0283966064453125, -0.0340576171875, -0.04437255859375, -0.05950927734375, -0.0147705078125, -0.07855224609375, 0.08740234375, 0.0006117820739746094, 0.00960540771484375, -0.03826904296875, -0.0046539306640625, -0.04571533203125, -0.02130126953125, -0.006114959716796875, 0.050537109375, 0.048492431640625, 0.04180908203125, 0.013916015625, 0.0269622802734375, 0.0814208984375, 0.0248870849609375, 0.04498291015625, -0.022186279296875, 0.01363372802734375, 0.072998046875, 0.012603759765625, -0.0024471282958984375, -0.015472412109375, -0.0728759765625, 0.012969970703125, 0.004608154296875, -0.03472900390625, -0.027862548828125, 0.0167388916015625, -0.03668212890625, 0.0112152099609375, -0.07342529296875, -0.0341796875, -0.036041259765625, 0.0379638671875, 0.0128021240234375, 0.049224853515625, 0.033721923828125, -0.029632568359375, -0.0035381317138671875, 0.01207733154296875, 0.0191650390625, -0.007659912109375, 0.003997802734375, -0.004894256591796875, 0.0176239013671875, -0.023529052734375, 0.0158843994140625, 0.00931549072265625, -0.0091400146484375, 0.0166168212890625, 0.0458984375, 0.018310546875, -0.01483917236328125, 0.023834228515625, -0.00553131103515625, -0.018646240234375, -0.033447265625, 0.0433349609375, 0.0010204315185546875, -0.00200653076171875, 0.058685302734375, -0.009368896484375, 0.0562744140625, 0.04669189453125, -0.008636474609375, 0.03955078125, -0.0173797607421875, 0.047271728515625, -0.03521728515625, -0.01264190673828125, 0.036407470703125, -0.026824951171875, 0.0243988037109375, -0.011810302734375, -0.01273345947265625, -0.045562744140625, 0.0283660888671875, 0.00574493408203125, -0.04498291015625, 0.019561767578125, 0.06964111328125, 0.042388916015625, 0.0592041015625, 0.0078887939453125, -0.022369384765625, 0.01141357421875, 0.0511474609375, -0.0335693359375, -0.07025146484375, 0.0199737548828125, -0.035980224609375, -0.01226806640625, 0.006595611572265625, -0.0281982421875, -0.017364501953125, 0.04827880859375, -0.01241302490234375, 0.0124969482421875, -0.042266845703125, -0.0197296142578125, -0.0179901123046875, -0.04931640625, 0.003284454345703125, 0.0034885406494140625, 0.01024627685546875, -0.0028705596923828125, 0.037567138671875, -0.00885009765625, -0.01605224609375, 0.008941650390625, 0.0032176971435546875, 0.00800323486328125, -0.0089569091796875, -0.006565093994140625, -0.026947021484375, -0.0094451904296875, 0.007511138916015625, -0.022369384765625, -0.0036773681640625, 0.01483917236328125, -0.00927734375, -0.034515380859375, -0.0097503662109375, 0.032012939453125, 0.01560211181640625, 0.0167388916015625, 0.035064697265625, 0.08056640625, -0.018524169921875, -0.00714111328125, -0.01036834716796875, -0.031829833984375, -0.05352783203125, 0.011749267578125, 0.0145111083984375, -0.0389404296875, 0.0157470703125, 0.0005822181701660156, -0.00312042236328125, 0.025115966796875, -0.03485107421875, 0.045196533203125, -0.0188751220703125, 0.002483367919921875, -0.034454345703125, 0.010955810546875, -0.02581787109375, -0.0128326416015625, -0.0032863616943359375, 0.0016050338745117188, -0.0129852294921875, 0.02459716796875, 0.0279998779296875, -0.0265045166015625, 0.035400390625, -0.04107666015625, 0.0176239013671875, -0.03680419921875, -0.01427459716796875, -0.0032329559326171875, 0.08154296875, -0.058349609375, -0.01265716552734375, 0.023345947265625, 0.0164794921875, -0.01552581787109375, -0.0183258056640625, -0.06268310546875, -0.025177001953125, -0.0264892578125, -0.004558563232421875, -0.01435089111328125, 0.0021572113037109375, -0.046966552734375, 0.07415771484375, -0.0195465087890625, -0.0162506103515625, 0.0197906494140625, 0.0008740425109863281, -0.0028285980224609375, -0.0023517608642578125, 0.0024738311767578125, -0.01177215576171875, -0.001922607421875, -0.0183258056640625, -0.07464599609375, -0.0034275054931640625, -0.00156402587890625, 0.026092529296875, -0.0072784423828125, -0.0214385986328125, -0.034759521484375, 0.0229949951171875, -0.035675048828125, -0.0138397216796875, 0.0009474754333496094, 0.035491943359375, -0.021453857421875, 0.0280914306640625, -0.01158905029296875, -0.00971221923828125, -0.005016326904296875, 0.005496978759765625, 0.00954437255859375, 0.04656982421875, -0.0213470458984375, -0.018646240234375, -0.00017905235290527344, -0.0175018310546875, -0.0574951171875, -0.00803375244140625, 0.0018100738525390625, 0.02471923828125, 0.0022869110107421875, -0.0081939697265625, -0.00885009765625, -0.048370361328125, 0.0171356201171875, 0.01381683349609375, -0.02362060546875, 0.0035686492919921875, 0.016998291015625, 0.01113128662109375, -0.0272216796875, -0.02288818359375, 0.0263214111328125, 0.0714111328125, -0.019622802734375, -0.004680633544921875, 0.0118560791015625, -0.051239013671875, 0.03656005859375, 0.0166778564453125, 0.008575439453125, -0.0296630859375, 0.06396484375, -0.003734588623046875, -0.01125335693359375, 0.012847900390625, 0.003173828125, -0.025604248046875, -0.00489044189453125, -0.0263671875, -0.00018322467803955078, -0.006587982177734375, 0.01800537109375, -0.004108428955078125, 0.034210205078125, 0.0011129379272460938, -0.0369873046875, 0.016326904296875, 0.0015554428100585938, 0.021148681640625, 0.01306915283203125, 0.00726318359375, -0.0005407333374023438, -0.004657745361328125, 0.0168304443359375, 0.02264404296875, -0.03662109375, -0.0010404586791992188, 0.03167724609375, -0.010528564453125, 0.0068817138671875, 0.03973388671875, -0.005260467529296875, 0.0034503936767578125, 0.04119873046875, -0.01351165771484375, 0.00861358642578125, -0.002521514892578125, -0.0310516357421875, -0.06451416015625, 0.0609130859375, 0.03668212890625, 0.00127410888671875, 0.040924072265625, 0.0025386810302734375, 0.01049041748046875, 0.037017822265625, -0.004207611083984375, 0.0112457275390625, -0.007625579833984375, -0.0303192138671875, -0.034149169921875, -0.0045928955078125, -0.031280517578125, -0.0101776123046875, 0.0128631591796875, 0.006542205810546875, 0.0614013671875, -0.01513671875, 0.03265380859375, 0.017242431640625, -0.0173492431640625, -0.00952911376953125, 0.0201416015625, -0.03533935546875, 0.00879669189453125, 0.01715087890625, 0.0305633544921875, 0.007694244384765625, -0.01114654541015625, -0.005779266357421875, -0.041290283203125, -0.00659942626953125, -0.0289459228515625, 0.025115966796875, 0.046905517578125, -0.002086639404296875, 0.0184783935546875, 0.0262451171875, 0.0537109375, 0.0196075439453125, -0.0338134765625, -0.0323486328125, -0.0160369873046875, -0.020782470703125, 0.005413055419921875, -0.042633056640625, -0.050628662109375, 0.0465087890625, -0.00036025047302246094, -0.04241943359375, -0.029388427734375, -0.01837158203125, 0.00716400146484375, 0.0149688720703125, 0.00948333740234375, -0.024566650390625, 0.0029754638671875, -0.01543426513671875, 0.0117034912109375, 0.00732421875, -0.01184844970703125, 0.053985595703125, 0.01290130615234375, -0.01666259765625, 0.00954437255859375, -0.046478271484375, 0.01485443115234375, -0.009857177734375, -0.042999267578125, -0.007686614990234375, -0.01181793212890625, -0.01267242431640625, 0.03436279296875, -0.03106689453125, -0.0182647705078125, 0.0004069805145263672, -0.002254486083984375, -0.0190277099609375, 0.039947509765625, 0.053985595703125, -0.0159759521484375, -0.02813720703125, 0.032562255859375, 0.024169921875, -0.0067596435546875, -0.01428985595703125, -0.050537109375, -0.0006465911865234375, -0.0231781005859375, -0.02203369140625, -0.01052093505859375, 0.02685546875, 0.017608642578125, 0.039520263671875, 0.0056915283203125, 0.045074462890625, -0.004261016845703125, -0.0016889572143554688, -0.021636962890625, -0.00461578369140625, -0.035491943359375, 0.0288543701171875, 0.00672149658203125, -0.01800537109375, -0.01282501220703125, -0.0191802978515625, 0.0106048583984375, 0.01165008544921875, -0.01371002197265625, 0.019927978515625, -0.0156402587890625, 0.0172576904296875, 0.03887939453125, 0.0650634765625, -0.004337310791015625, 0.0316162109375, 0.007541656494140625, 0.010009765625, 0.00673675537109375, 0.06353759765625, 0.0078582763671875, -0.00937652587890625, 0.06640625, 0.0269317626953125, -0.0305023193359375, 0.022369384765625, -0.037261962890625, 0.031951904296875, 0.01306915283203125, 0.053680419921875, -0.04595947265625, 0.0206756591796875, 0.01276397705078125, -0.03228759765625, 0.0159912109375, -0.007457733154296875, 0.016693115234375, -0.0299072265625, 0.0172576904296875, 0.06622314453125, 0.0033016204833984375, 0.01190185546875, 0.018707275390625, -0.01364898681640625, -0.052459716796875, 0.021728515625, 0.0169830322265625, 0.015380859375, 0.0297393798828125, 0.00525665283203125, 0.032958984375, -0.0246734619140625, 0.0009307861328125, 0.00982666015625, -0.032135009765625, -0.059112548828125, 0.0159149169921875, 0.004970550537109375, -0.007221221923828125, -0.0308685302734375, 0.002605438232421875, 0.051544189453125, 0.0236358642578125, 0.0064239501953125, -0.0305023193359375, 0.0210418701171875, 0.0193939208984375, 0.0523681640625, -0.0232086181640625, -0.0032329559326171875, 0.02166748046875, -0.034912109375, 0.006885528564453125, 0.01371002197265625, -0.00406646728515625, -0.0111541748046875, -0.0005044937133789062, 0.055572509765625, -0.0423583984375, -0.016021728515625, 0.0101776123046875, 0.03167724609375, 0.0099334716796875, -0.0283660888671875, -0.00829315185546875, -0.047515869140625, -0.0221710205078125, -0.031707763671875, -0.045135498046875, 0.0025806427001953125, -0.047607421875, -0.101806640625, 0.10986328125, 0.04962158203125, 0.03759765625, -0.007244110107421875, 0.048309326171875, -0.05511474609375, -0.01094818115234375, -0.0214691162109375, 0.02044677734375, -0.006694793701171875, 0.019561767578125, -0.033416748046875, -0.0169219970703125, -0.0012216567993164062, 0.0516357421875, 0.052337646484375, -0.0014524459838867188, 0.011383056640625, 0.0184173583984375, 0.09136962890625, 0.0232086181640625, -0.0169830322265625, 0.0091400146484375, 0.004154205322265625, 0.0027179718017578125, 0.06951904296875, -0.004108428955078125, 0.004405975341796875, 0.03369140625, -0.0085296630859375, 0.03662109375, -0.0131378173828125, -0.0268402099609375, 0.008819580078125, 0.0200042724609375, -0.0101318359375, -0.0009350776672363281, -0.01366424560546875, -0.0035457611083984375, -0.031280517578125, 0.036468505859375, -0.02679443359375, -0.037872314453125, -0.04833984375, -0.021240234375, 0.02142333984375, -0.02044677734375, 0.044219970703125, 0.05950927734375, 0.03619384765625, 0.058380126953125, 0.0229339599609375, 0.0401611328125, 0.0176849365234375, -0.01253509521484375, 0.030242919921875, 0.023040771484375, 0.0278167724609375, -0.02972412109375, 0.01195526123046875, 0.03271484375, 0.043670654296875, -0.04833984375, -0.01045989990234375, 0.01141357421875, -0.006626129150390625, -0.005096435546875, -0.0265655517578125, 0.004009246826171875, -0.0017833709716796875, -0.01334381103515625, -0.041778564453125, 0.00897979736328125, 0.04949951171875, 0.04931640625, 0.00408172607421875, -0.00855255126953125, -0.0716552734375, -0.0018510818481445312, -0.033905029296875, -0.015716552734375, -0.01152801513671875, 0.0721435546875, 0.04156494140625, 0.035552978515625, -0.06707763671875, -0.038665771484375, 0.006298065185546875, 0.015411376953125, 0.03485107421875, -0.0321044921875, 0.04180908203125, 0.017547607421875, 0.005931854248046875, -0.0157623291015625, -0.007793426513671875, 0.0443115234375, 0.0321044921875, 0.0199737548828125, -0.014312744140625, -0.00769805908203125, 0.023895263671875, -0.0273590087890625, 0.0300750732421875, -0.0216522216796875, 0.03875732421875, 0.01094818115234375, -0.01678466796875, -0.026611328125, 0.006015777587890625, 0.05963134765625, -0.0214996337890625, 0.0030193328857421875, 0.006328582763671875, -0.0435791015625, -0.0054168701171875, 0.005672454833984375, 0.030487060546875, 0.0064544677734375, -0.055572509765625, 0.007091522216796875, -0.0244140625, -0.07025146484375, 0.025787353515625, 0.041107177734375, -0.006999969482421875, -0.01103973388671875, -0.0034618377685546875, -0.023712158203125, -0.006443023681640625, 0.06085205078125, -0.033447265625, -0.016082763671875, 0.0411376953125, -0.035491943359375, -0.035858154296875, -0.014312744140625, -0.00824737548828125, 0.0225372314453125, 0.026519775390625, -0.040435791015625, 0.03125, 0.0208892822265625, -0.0294036865234375, 0.018524169921875, -0.036895751953125, -0.032989501953125, 0.059967041015625, 0.01070404052734375, -0.0215301513671875, -0.0154876708984375, 0.055633544921875, 0.03082275390625, 0.03240966796875, -0.02056884765625, 0.00606536865234375, -0.0308074951171875, 0.019683837890625, 0.00443267822265625, 0.0447998046875, -0.00893402099609375, -0.0007171630859375, -0.00926971435546875, -0.0001990795135498047, 0.0295257568359375, 0.0147247314453125, -0.01995849609375, 0.020599365234375, 0.0411376953125, 0.00732421875, 0.02960205078125, -0.0050811767578125, 0.036956787109375, 0.0300140380859375, 0.00795745849609375, -0.006893157958984375, -0.073486328125, -0.045806884765625, 0.0228729248046875, -0.0357666015625, 0.00385284423828125, -0.02264404296875, -0.072998046875, 0.05657958984375, 0.0506591796875, 0.0645751953125, -0.012725830078125, 0.0257568359375, 0.0229034423828125, -0.009063720703125, 0.0279541015625, -0.022613525390625, -0.0212554931640625, -0.046539306640625, 0.0225372314453125, 0.035797119140625, -0.01290130615234375, 0.035980224609375, -0.0186309814453125, -0.03375244140625, -0.004116058349609375, 0.0001875162124633789, -0.010345458984375, -0.0287322998046875, 0.034393310546875, 0.005779266357421875, -0.00966644287109375, 0.04876708984375, -0.01605224609375, -0.006961822509765625, -0.0565185546875, -0.0634765625, -0.031494140625, 0.0712890625, -0.0216217041015625, -0.005596160888671875, -0.0037078857421875, -0.00571441650390625, 0.0192413330078125, 0.02642822265625, 0.01447296142578125, 0.060089111328125, 0.007282257080078125, -0.038482666015625, 0.03900146484375, -0.01702880859375, 0.005695343017578125, -0.02813720703125, -0.006702423095703125, -0.0247802734375, 0.02679443359375, -0.037261962890625, 0.00447845458984375, 0.0053253173828125, -0.0406494140625, -0.061187744140625, 0.018280029296875, 0.0048675537109375, -0.042572021484375, -0.035247802734375, -0.03350830078125, -0.00734710693359375, 0.0166015625, -0.02130126953125, -0.00493621826171875, -0.040740966796875, 0.036529541015625, 0.0136260986328125, 0.047760009765625, 0.041534423828125, 0.00881195068359375, -0.0254058837890625, -0.03118896484375, -0.055328369140625, 0.0013151168823242188, 0.036834716796875, -0.033721923828125, 0.05645751953125, 0.03631591796875, -0.039459228515625, -0.0277557373046875, 0.006534576416015625, -0.05279541015625, -0.0011129379272460938, -0.0498046875, -0.018280029296875, -0.00882720947265625, 0.08062744140625, 0.01471710205078125, 0.0160064697265625, -0.0287933349609375, 0.004199981689453125, 0.05389404296875, -0.0038909912109375, 0.0177764892578125, 0.0021991729736328125, -0.01390838623046875, -0.01435089111328125, -0.033721923828125, -0.0208740234375, 0.00975799560546875, -0.00952911376953125, -0.040191650390625, 0.01284027099609375, -0.019500732421875, -0.01044464111328125, -0.0772705078125, 0.001827239990234375, 0.058074951171875, -0.035736083984375, 0.006259918212890625, -0.005031585693359375, 0.016632080078125, 0.03765869140625, -0.0005221366882324219, -0.00905609130859375, -0.00018227100372314453, -0.029815673828125, 0.0149688720703125, 0.008148193359375, 0.0237579345703125, -0.0210723876953125, 0.0009694099426269531, -0.06097412109375, 0.01346588134765625, 0.01861572265625, 0.0111083984375, -0.0121917724609375, 0.0306243896484375, 0.049652099609375, 0.05084228515625, -0.050537109375, 0.0201263427734375, -0.0259246826171875, 0.01482391357421875, -0.01259613037109375, 0.036102294921875, 0.06292724609375, -0.01043701171875, 0.0034961700439453125, 0.03302001953125, 0.036285400390625, -0.0238037109375, 0.026153564453125, 0.048095703125, 0.03936767578125, 0.019683837890625 ]
a7ad73e3b92e195bb79892a35e6e3b25e7cc9e17
Wordpress Stackexchange Q: Query all posts where meta value is empty I want to query posts where meta value is empty. for example, I want to get these three posts, with no meta values: Already tried: $args = array( 'post_type' => 'attachment', 'posts_per_page' => 10, 'paged' => $paged, 'meta_query' => array( array( 'key' => '_wp_attachment_image_alt', 'value' => '', 'compare' => 'LIKE' ) ) ); $attachments = new WP_Query($args); and: $args = array( 'post_type' => 'attachment', 'posts_per_page' => 10, 'paged' => $paged, 'meta_query' => array( array( 'key' => '_wp_attachment_image_alt', 'value' => null, 'compare' => 'LIKE' ) ) ); But it doesn't work.. Any idea how to solve this? Thank you A: I think you forgot about the inherit post status. The default one in WP_Query is publish. You should also use = instead of LIKE, to avoid using LIKE '%%' in the SQL query. So try to add this: 'post_status' => 'inherit' and 'compare' => '=' into your query arguments, to match the empty _wp_attachment_image_alt string values.
Q: Query all posts where meta value is empty I want to query posts where meta value is empty. for example, I want to get these three posts, with no meta values: Already tried: $args = array( 'post_type' => 'attachment', 'posts_per_page' => 10, 'paged' => $paged, 'meta_query' => array( array( 'key' => '_wp_attachment_image_alt', 'value' => '', 'compare' => 'LIKE' ) ) ); $attachments = new WP_Query($args); and: $args = array( 'post_type' => 'attachment', 'posts_per_page' => 10, 'paged' => $paged, 'meta_query' => array( array( 'key' => '_wp_attachment_image_alt', 'value' => null, 'compare' => 'LIKE' ) ) ); But it doesn't work.. Any idea how to solve this? Thank you A: I think you forgot about the inherit post status. The default one in WP_Query is publish. You should also use = instead of LIKE, to avoid using LIKE '%%' in the SQL query. So try to add this: 'post_status' => 'inherit' and 'compare' => '=' into your query arguments, to match the empty _wp_attachment_image_alt string values. A: 'meta_query' => array( array( 'key' => '_wp_attachment_image_alt', 'compare' => 'NOT EXISTS' // this should work... ), )
wordpress
{ "language": "en", "length": 182, "provenance": "stackexchange_00019.jsonl.gz:468955", "question_score": "5", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/241601" }
[ 0.0584716796875, 0.0059967041015625, 0.041229248046875, -0.0021381378173828125, 0.0005979537963867188, -0.01111602783203125, 0.03790283203125, -0.071044921875, 0.04754638671875, 0.03289794921875, -0.047027587890625, -0.023223876953125, 0.0012979507446289062, -0.008453369140625, -0.050048828125, -0.0325927734375, 0.0355224609375, 0.005695343017578125, 0.052825927734375, 0.00931549072265625, 0.00858306884765625, 0.042510986328125, 0.018829345703125, -0.06610107421875, 0.01788330078125, -0.0267486572265625, 0.05548095703125, -0.039886474609375, 0.0325927734375, -0.0158538818359375, 0.01041412353515625, 0.0032291412353515625, 0.025970458984375, -0.0170745849609375, 0.0262298583984375, 0.01678466796875, 0.0248260498046875, -0.01526641845703125, 0.017913818359375, -0.005207061767578125, 0.020843505859375, -0.0186004638671875, -0.027618408203125, 0.032562255859375, -0.01241302490234375, -0.0211334228515625, 0.026275634765625, -0.030914306640625, 0.045623779296875, -0.003143310546875, -0.0203704833984375, 0.00970458984375, -0.0218505859375, 0.005443572998046875, -0.025238037109375, -0.02490234375, -0.0161285400390625, 0.018035888671875, 0.0231475830078125, -0.01139068603515625, -0.0222015380859375, -0.003490447998046875, 0.019378662109375, -0.0033245086669921875, 0.03594970703125, -0.009918212890625, 0.0011959075927734375, 0.03497314453125, -0.01444244384765625, 0.0254364013671875, 0.01099395751953125, -0.01727294921875, -0.00809478759765625, -0.020111083984375, -0.0112457275390625, -0.0233612060546875, -0.004009246826171875, -0.047576904296875, 0.0164337158203125, 0.01279449462890625, 0.006366729736328125, -0.004009246826171875, -0.046844482421875, 0.023223876953125, -0.006534576416015625, 0.04412841796875, -0.00897979736328125, -0.0311431884765625, -0.015594482421875, -0.025970458984375, -0.0106353759765625, -0.044891357421875, -0.0208282470703125, -0.0079345703125, -0.007904052734375, -0.0345458984375, 0.023406982421875, 0.042388916015625, -0.006649017333984375, -0.0008482933044433594, -0.01407623291015625, -0.037811279296875, 0.007526397705078125, -0.0209197998046875, 0.0247802734375, 0.027984619140625, 0.01436614990234375, -0.01033782958984375, 0.042144775390625, 0.0225372314453125, 0.0031070709228515625, 0.03570556640625, -0.00348663330078125, 0.03912353515625, -0.04559326171875, 0.020843505859375, -0.0168609619140625, 0.001819610595703125, -0.035003662109375, 0.03948974609375, -0.0003914833068847656, 0.015289306640625, 0.03460693359375, -0.0303497314453125, 0.0225067138671875, 0.01690673828125, -0.00717926025390625, -0.061004638671875, -0.00298309326171875, 0.05303955078125, -0.038848876953125, -0.00986480712890625, 0.04034423828125, 0.021484375, -0.0019168853759765625, -0.0250091552734375, -0.01007843017578125, -0.0390625, 0.0013475418090820312, 0.007595062255859375, 0.0295257568359375, -0.044281005859375, 0.01154327392578125, 0.027740478515625, 0.01377105712890625, 0.0328369140625, 0.0204315185546875, -0.0001995563507080078, 0.00409698486328125, -0.03826904296875, -0.002010345458984375, -0.049560546875, 0.045379638671875, -0.006954193115234375, -0.061126708984375, 0.003948211669921875, 0.01055145263671875, -0.0178375244140625, -0.05340576171875, -0.043609619140625, 0.01006317138671875, 0.01194000244140625, -0.0032806396484375, -0.039154052734375, -0.055633544921875, -0.007965087890625, -0.0214385986328125, -0.013092041015625, 0.01451873779296875, 0.0341796875, -0.000392913818359375, 0.0245513916015625, 0.044158935546875, -0.00782012939453125, -0.017364501953125, -0.0306243896484375, -0.0010547637939453125, -0.01534271240234375, 0.0146026611328125, 0.004901885986328125, -0.05181884765625, -0.04168701171875, 0.01824951171875, -0.021392822265625, -0.054443359375, 0.044891357421875, 0.005126953125, 0.031646728515625, 0.0021533966064453125, 0.002422332763671875, 0.08074951171875, 0.02716064453125, -0.025726318359375, 0.036773681640625, 0.00672149658203125, -0.032562255859375, -0.0011758804321289062, -0.01532745361328125, 0.0017299652099609375, -0.007450103759765625, 0.02825927734375, 0.020965576171875, -0.013671875, -0.0159759521484375, -0.093994140625, -0.004871368408203125, -0.026947021484375, 0.03961181640625, -0.0478515625, 0.048248291015625, 0.031280517578125, -0.00936126708984375, -0.04864501953125, 0.0570068359375, 0.05853271484375, -0.0236663818359375, 0.003559112548828125, 0.01291656494140625, -0.02081298828125, 0.0155181884765625, -0.042510986328125, -0.026397705078125, -0.054168701171875, 0.01346588134765625, 0.053924560546875, -0.0001894235610961914, 0.0007228851318359375, -0.002742767333984375, 0.0782470703125, 0.0252227783203125, 0.00659942626953125, -0.0196990966796875, 0.021636962890625, 0.0011110305786132812, -0.03448486328125, 0.0221405029296875, -0.012237548828125, -0.03729248046875, -0.01055908203125, 0.0457763671875, 0.026824951171875, 0.052337646484375, -0.0201873779296875, -0.0162353515625, 0.07293701171875, -0.033294677734375, -0.003932952880859375, -0.0013017654418945312, 0.0250396728515625, 0.028411865234375, -0.01436614990234375, -0.026275634765625, 0.0340576171875, 0.002445220947265625, 0.00982666015625, 0.01514434814453125, -0.01153564453125, 0.01348114013671875, -0.04248046875, 0.061767578125, -0.031097412109375, 0.0191497802734375, 0.035888671875, -0.00921630859375, 0.046661376953125, 0.030181884765625, 0.054412841796875, 0.0379638671875, -0.047271728515625, 0.037567138671875, 0.007144927978515625, 0.0023899078369140625, 0.0014772415161132812, 0.01444244384765625, -0.0237884521484375, 0.00848388671875, -0.0224761962890625, 0.01456451416015625, 0.035491943359375, 0.0033588409423828125, -0.0027713775634765625, 0.01409912109375, -0.019287109375, -0.0031871795654296875, -0.0064239501953125, 0.004428863525390625, 0.01090240478515625, 0.025177001953125, 0.012054443359375, -0.0084381103515625, 0.0152740478515625, 0.0174560546875, 0.0045013427734375, 0.018951416015625, 0.025726318359375, -0.031951904296875, -0.05078125, -0.0784912109375, 0.0615234375, -0.061553955078125, 0.048004150390625, 0.0762939453125, -0.00383758544921875, 0.01727294921875, -0.0160980224609375, 0.003604888916015625, -0.0494384765625, 0.026123046875, -0.00247955322265625, -0.0469970703125, -0.003173828125, 0.031951904296875, 0.0293121337890625, 0.0506591796875, -0.00832366943359375, -0.034332275390625, -0.003719329833984375, 0.0226593017578125, -0.08013916015625, -0.1070556640625, 0.007335662841796875, -0.04559326171875, -0.0433349609375, -0.01348876953125, -0.0382080078125, 0.0181121826171875, -0.00861358642578125, -0.0166168212890625, -0.004322052001953125, -0.0311737060546875, -0.07904052734375, -0.06097412109375, -0.07330322265625, -0.00795745849609375, -0.0042572021484375, 0.0043487548828125, 0.0097503662109375, 0.0826416015625, 0.017486572265625, -0.03802490234375, 0.0163116455078125, 0.056793212890625, -0.00714111328125, 0.0143280029296875, 0.016082763671875, -0.001895904541015625, -0.018280029296875, 0.0019350051879882812, 0.0528564453125, 0.0307159423828125, -0.04583740234375, 0.003566741943359375, 0.0174560546875, 0.004520416259765625, 0.033416748046875, -0.0235137939453125, -0.03558349609375, 0.041717529296875, 0.0292205810546875, -0.01486968994140625, -0.071044921875, -0.03466796875, -0.07586669921875, 0.06756591796875, 0.0396728515625, 0.041595458984375, 0.023651123046875, 0.0223846435546875, -0.0013818740844726562, -0.00039839744567871094, 0.0341796875, -0.032958984375, 0.033782958984375, -0.01239013671875, -0.00516510009765625, -0.0279693603515625, -0.00962066650390625, -0.0301513671875, 0.00821685791015625, -0.01053619384765625, -0.00392913818359375, 0.006694793701171875, -0.01067352294921875, 0.002178192138671875, -0.0034008026123046875, 0.04254150390625, 0.0229034423828125, 0.053924560546875, -0.056365966796875, -0.040985107421875, -0.06353759765625, 0.05072021484375, 0.01435089111328125, -0.04290771484375, -0.0148162841796875, 0.015167236328125, -0.04522705078125, -0.037872314453125, 0.0390625, 0.01313018798828125, -0.050079345703125, 0.0198822021484375, 0.00455474853515625, -0.02801513671875, -0.018585205078125, -0.048919677734375, -0.04229736328125, -0.03594970703125, 0.0361328125, -0.0231781005859375, 0.0151519775390625, 0.01511383056640625, 0.00341796875, -0.00261688232421875, -0.0270538330078125, -0.0095672607421875, -0.080322265625, -0.026947021484375, 0.00965118408203125, 0.048126220703125, -0.044281005859375, 0.041229248046875, -0.01432037353515625, 0.042938232421875, -0.01306915283203125, 0.0165863037109375, -0.00033092498779296875, 0.02020263671875, -0.030487060546875, -0.014892578125, -0.0020771026611328125, -0.0323486328125, -0.0025730133056640625, -0.040985107421875, -0.038421630859375, -0.07733154296875, -0.041900634765625, -0.034759521484375, -0.0007648468017578125, -0.0203399658203125, -0.029998779296875, 0.0005741119384765625, -0.00093841552734375, 0.0220489501953125, -0.006671905517578125, -0.002349853515625, -0.0238800048828125, -0.0257110595703125, 0.06378173828125, 0.0158233642578125, -0.01482391357421875, -0.00978851318359375, 0.060546875, 0.00960540771484375, -0.04315185546875, -0.05194091796875, -0.0262603759765625, 0.0062103271484375, -0.01190185546875, 0.00746917724609375, -0.0240936279296875, -0.0178680419921875, 0.031280517578125, -0.035858154296875, 0.021636962890625, -0.010345458984375, 0.0246124267578125, -0.02520751953125, -0.0604248046875, 0.040008544921875, -0.0282135009765625, 0.0031070709228515625, 0.041107177734375, 0.01540374755859375, -0.052459716796875, 0.0222320556640625, 0.040283203125, -0.0150146484375, 0.02227783203125, -0.01910400390625, -0.01265716552734375, -0.0074920654296875, -0.0052032470703125, 0.02203369140625, 0.0067596435546875, -0.00960540771484375, -0.00745391845703125, 0.03460693359375, -0.00904083251953125, -0.00904083251953125, 0.044036865234375, -0.043975830078125, 0.0187835693359375, -0.0019683837890625, -0.04302978515625, -0.03326416015625, -0.005252838134765625, 0.01483154296875, -0.00537109375, -0.0577392578125, 0.0202484130859375, 0.0120697021484375, 0.0487060546875, 0.031768798828125, 0.0013980865478515625, 0.034759521484375, 0.0232086181640625, -0.0394287109375, -0.024444580078125, -0.0213623046875, -0.01548004150390625, -0.0667724609375, -0.01340484619140625, 0.0232696533203125, -0.030303955078125, -0.00299072265625, 0.04779052734375, -0.037811279296875, 0.0234222412109375, -0.0003685951232910156, -0.051239013671875, -0.00975799560546875, 0.039703369140625, 0.043121337890625, -0.040557861328125, -0.02679443359375, 0.0513916015625, 0.03973388671875, -0.037445068359375, -0.00702667236328125, 0.0240325927734375, 0.04400634765625, -0.0309295654296875, -0.0312347412109375, 0.021697998046875, -0.0230560302734375, -0.02508544921875, 0.0223236083984375, 0.0153961181640625, -0.013275146484375, -0.047821044921875, -0.0164947509765625, 0.0291748046875, -0.00041985511779785156, -0.0330810546875, 0.00823211669921875, -0.043975830078125, 0.025054931640625, -0.00965118408203125, -0.01551055908203125, 0.021484375, 0.0081634521484375, 0.00556182861328125, -0.033294677734375, -0.0275726318359375, -0.00461578369140625, 0.033843994140625, -0.032257080078125, -0.031829833984375, 0.06683349609375, 0.0029926300048828125, 0.008026123046875, -0.055450439453125, 0.0176544189453125, -0.01392364501953125, -0.014892578125, 0.0477294921875, 0.005962371826171875, 0.020355224609375, -0.021881103515625, -0.012298583984375, -0.029296875, 0.045684814453125, -0.00844573974609375, -0.0180206298828125, -0.01334381103515625, 0.0035877227783203125, 0.059967041015625, -0.0172119140625, -0.031524658203125, -0.00893402099609375, -0.0093231201171875, 0.01432037353515625, 0.067626953125, 0.0044403076171875, 0.0565185546875, -0.0137481689453125, 0.03997802734375, 0.0276031494140625, 0.02587890625, -0.035125732421875, -0.0234375, -0.0117034912109375, -0.0562744140625, 0.0026798248291015625, 0.016876220703125, -0.0098724365234375, -0.023834228515625, -0.0233001708984375, -0.015838623046875, 0.003620147705078125, -0.01275634765625, -0.01110076904296875, -0.0197296142578125, 0.046234130859375, 0.00965118408203125, 0.032470703125, 0.021209716796875, -0.0181732177734375, -0.0182037353515625, -0.0031909942626953125, 0.00505828857421875, -0.015716552734375, 0.0001042485237121582, -0.03692626953125, 0.0279693603515625, -0.019744873046875, 0.0268402099609375, 0.0670166015625, 0.013763427734375, 0.021392822265625, 0.00926971435546875, -0.006198883056640625, -0.0017862319946289062, 0.0311279296875, 0.02520751953125, -0.005252838134765625, 0.11376953125, 0.024505615234375, -0.0089874267578125, 0.08038330078125, -0.04083251953125, -0.0012331008911132812, 0.004241943359375, 0.035247802734375, -0.0126190185546875, 0.00501251220703125, 0.020599365234375, -0.00102996826171875, 0.0007090568542480469, 0.0005135536193847656, -0.0035266876220703125, -0.039459228515625, -0.0053253173828125, -0.0125885009765625, -0.025665283203125, -0.031951904296875, -0.01114654541015625, 0.00853729248046875, -0.0250701904296875, 0.004261016845703125, -0.00881195068359375, -0.051666259765625, 0.0031375885009765625, 0.051116943359375, -0.021820068359375, -0.00835418701171875, -0.0036830902099609375, -0.01140594482421875, -0.0252685546875, -0.0992431640625, -0.049774169921875, -0.02252197265625, -0.039154052734375, -0.007568359375, 0.0614013671875, 0.05596923828125, 0.047119140625, 0.030487060546875, -0.021514892578125, 0.010955810546875, -0.006450653076171875, -0.0615234375, -0.05145263671875, -0.013885498046875, 0.057281494140625, -0.0323486328125, 0.049957275390625, 0.00809478759765625, -0.03143310546875, -0.005870819091796875, -0.02197265625, 0.02105712890625, -0.0386962890625, 0.00534820556640625, 0.048553466796875, 0.038543701171875, -0.02838134765625, 0.0220184326171875, -0.002613067626953125, -0.0034618377685546875, -0.007190704345703125, 0.007061004638671875, -0.038848876953125, -0.02850341796875, 0.00783538818359375, -0.07366943359375, 0.07781982421875, -0.00083160400390625, 0.0494384765625, 0.011199951171875, 0.01215362548828125, -0.0177459716796875, -0.0014486312866210938, -0.052215576171875, 0.060821533203125, -0.0345458984375, 0.0230865478515625, -0.052276611328125, 0.0142974853515625, -0.008758544921875, 0.004886627197265625, 0.046417236328125, 0.005741119384765625, -0.058349609375, 0.01043701171875, 0.0548095703125, 0.0242156982421875, 0.007610321044921875, 0.05865478515625, 0.0205841064453125, 0.07366943359375, 0.09332275390625, -0.045867919921875, 0.06158447265625, -0.0430908203125, 0.00652313232421875, 0.01800537109375, 0.00473785400390625, 0.01018524169921875, 0.014373779296875, 0.021148681640625, -0.00821685791015625, -0.0002818107604980469, 0.029205322265625, -0.04095458984375, 0.034576416015625, -0.008056640625, 0.0188140869140625, -0.059967041015625, -0.06121826171875, 0.01036834716796875, 0.0213165283203125, 0.01474761962890625, 0.0023174285888671875, 0.037384033203125, 0.00879669189453125, 0.059967041015625, -0.0289154052734375, -0.00647735595703125, -0.0254058837890625, 0.01549530029296875, 0.037384033203125, 0.0034961700439453125, 0.0085906982421875, -0.041046142578125, 0.01959228515625, 0.0192108154296875, 0.036224365234375, -0.0433349609375, -0.0274200439453125, 0.0118255615234375, 0.009307861328125, -0.006816864013671875, 0.00313568115234375, -0.003635406494140625, 0.023223876953125, 0.0487060546875, -0.06219482421875, 0.0231475830078125, 0.003753662109375, 0.0244293212890625, -0.0292816162109375, -0.0333251953125, -0.01219940185546875, 0.014892578125, -0.00513458251953125, -0.0210723876953125, 0.0400390625, 0.038238525390625, 0.01174163818359375, -0.00798797607421875, -0.032012939453125, 0.0087738037109375, -0.032562255859375, 0.030609130859375, -0.045806884765625, 0.0457763671875, -0.0428466796875, -0.03179931640625, -0.0251617431640625, 0.0286407470703125, 0.0318603515625, 0.021026611328125, 0.052520751953125, 0.0177154541015625, -0.04595947265625, 0.00689697265625, 0.0209503173828125, -0.045318603515625, -0.0267486572265625, -0.0258941650390625, 0.03997802734375, 0.044921875, 0.0310516357421875, -0.005245208740234375, 0.0667724609375, 0.033599853515625, 0.0283050537109375, 0.013580322265625, 0.01611328125, -0.014251708984375, 0.017822265625, -0.006450653076171875, 0.033416748046875, 0.0423583984375, -0.04827880859375, -0.0260009765625, 0.0018873214721679688, -0.0362548828125, 0.02557373046875, 0.030029296875, -0.032806396484375, 0.029266357421875, -0.02880859375, -0.006732940673828125, -0.0013790130615234375, -0.004947662353515625, 0.0098724365234375, 0.01253509521484375, -0.0007977485656738281, 0.006927490234375, -0.040771484375, -0.0050506591796875, 0.01236724853515625, 0.000553131103515625, -0.0203704833984375, 0.06463623046875, -0.01114654541015625, -0.004749298095703125, 0.0322265625, 0.0208892822265625, -0.0189361572265625, 0.025726318359375, -0.018341064453125, -0.038665771484375, 0.0214385986328125, 0.01508331298828125, 0.034423828125, 0.00827789306640625, 0.03619384765625, -0.0258026123046875, -0.02001953125, -0.024322509765625, 0.01995849609375, 0.0069580078125, -0.006526947021484375, -0.04095458984375, 0.0072021484375, -0.033111572265625, -0.052764892578125, 0.037384033203125, -0.0149078369140625, 0.019683837890625, 0.035003662109375, 0.02001953125, -0.0177459716796875, 0.039886474609375, -0.01715087890625, 0.0821533203125, 0.0509033203125, -0.023773193359375, 0.042938232421875, -0.0030040740966796875, -0.031219482421875, 0.0556640625, -0.0101470947265625, 0.01219940185546875, 0.00848388671875, 0.00789642333984375, -0.030364990234375, -0.00020992755889892578, 0.0270843505859375, 0.00571441650390625, -0.00037670135498046875, -0.01235198974609375, -0.0212554931640625, -0.00719451904296875, -0.024322509765625, -0.0264129638671875, -0.06298828125, 0.0006690025329589844, -0.005825042724609375, -0.016632080078125, -0.03839111328125, 0.0289306640625, -0.001331329345703125, 0.0020503997802734375, 0.01224517822265625, -0.033355712890625, 0.037567138671875, -0.007183074951171875, -0.042724609375, 0.0005507469177246094, 0.002231597900390625, -0.0034694671630859375, 0.0284881591796875, -0.0031147003173828125, -0.00934600830078125, -0.0181427001953125, 0.022857666015625, -0.0019140243530273438, 0.027801513671875, 0.046966552734375, -0.036956787109375, -0.02783203125, 0.0255889892578125, 0.02020263671875, 0.042938232421875, 0.020477294921875, -0.01165771484375, 0.01497650146484375, 0.005859375, -0.0278167724609375, -0.042724609375, 0.01654052734375, -0.05255126953125, -0.0047149658203125, -0.050262451171875, 0.02374267578125, 0.04010009765625, -0.0294647216796875, -0.08489990234375, 0.045166015625, -0.037628173828125, -0.02691650390625, -0.041534423828125, 0.033966064453125, 0.0308685302734375, -0.01503753662109375, -0.0140838623046875, -0.006130218505859375, -0.027008056640625, -0.0231781005859375, 0.0193023681640625, -0.06768798828125, 0.0256500244140625, 0.004863739013671875, -0.0816650390625, 0.0198974609375, 0.0157012939453125, -0.0145111083984375, -0.002826690673828125, 0.00634765625, 0.018707275390625, 0.048614501953125, -0.0238189697265625, 0.0067291259765625, 0.006336212158203125, -0.0182647705078125, 0.0166778564453125, 0.00734710693359375, -0.06121826171875, -0.004352569580078125, 0.0599365234375, 0.049591064453125, 0.0328369140625, -0.0279541015625, -0.01515960693359375, -0.04400634765625, -0.01395416259765625, -0.0155181884765625, 0.024810791015625, -0.07830810546875, -0.0245513916015625, 0.025238037109375, -0.01239776611328125, -0.01457977294921875, -0.0069122314453125, -0.0196533203125, -0.009674072265625, 0.01739501953125, -0.005863189697265625, 0.0072174072265625, -0.0419921875, 0.041534423828125, -0.0215301513671875, 0.005645751953125, -0.002666473388671875, 0.02978515625, 0.0177154541015625, 0.032379150390625, 0.032470703125, -0.022369384765625, 0.00988006591796875, 0.0101318359375, 0.044647216796875, -0.034332275390625, 0.028106689453125, -0.04193115234375, -0.00624847412109375, 0.0089263916015625, 0.01508331298828125, 0.005222320556640625, -0.03179931640625, -0.0022945404052734375, -0.00437164306640625, -0.00457763671875, -0.022186279296875, 0.020721435546875, 0.0028972625732421875, -0.0016927719116210938, -0.0005211830139160156, -0.00510406494140625, 0.0501708984375, -0.02490234375, -0.0013256072998046875, -0.023345947265625, -0.0225677490234375, -0.046875, 0.0244598388671875, 0.01415252685546875, -0.03204345703125, 0.0287322998046875 ]
2d64b1736cde400f11bfb2c70ce7b8d081a570e8
Wordpress Stackexchange Q: How do I use Shortcodes inside of HTML tags? I tried to include shortcodes with a parameter in raw html output, like shown below: <a href="https://example.com/folder/edit.php?action=someaction&id=[foocode parameter='value']&edittoken=[foocode parameter='othervalue']">linktext</a> This crashes the PHP function do_shortcode(). Is stuff like this really not possible with shortcodes? The method description itself contains a warning: Users with unfiltered_html * capability may get unexpected output if angle braces are nested in tags. However, PHP crashing is not the kind of unexpected output that should be able to happen. PS: The function that is being called is function echocode( $atts ){ return "Hello World"; } and added as add_shortcode("foocode", "echocode"); The function never runs. (No starting echocode is being printed) A: shortcodes are not allowed in html attributes, shortcodes are not programing language, they are place holders to proper html content.
Q: How do I use Shortcodes inside of HTML tags? I tried to include shortcodes with a parameter in raw html output, like shown below: <a href="https://example.com/folder/edit.php?action=someaction&id=[foocode parameter='value']&edittoken=[foocode parameter='othervalue']">linktext</a> This crashes the PHP function do_shortcode(). Is stuff like this really not possible with shortcodes? The method description itself contains a warning: Users with unfiltered_html * capability may get unexpected output if angle braces are nested in tags. However, PHP crashing is not the kind of unexpected output that should be able to happen. PS: The function that is being called is function echocode( $atts ){ return "Hello World"; } and added as add_shortcode("foocode", "echocode"); The function never runs. (No starting echocode is being printed) A: shortcodes are not allowed in html attributes, shortcodes are not programing language, they are place holders to proper html content. A: Hope this helps someone: Instead of doing this: <a href="https://example.com/folder/edit.php?action=someaction&id=[foocode parameter='value']&edittoken=[foocode parameter='othervalue']">linktext</a> You can do this: [foocode parameter1=value parameter2=othervalue] and then do this: add_shortcode( 'foocode', 'prefix_foocode' ); function prefix_foocode( $atts ) { // Normalize $atts, set defaults and do whatever you want with $atts. $html = '<a href="https://example.com/folder/edit.php?action=someaction&id=' . $atts['parameter1'] .'&edittoken=' . $atts['parameter2'] . '">linktext</a>'; return $html; } A: For what it's worth, shortcodes that don't accept any parameters appear to work in HTML tags. It's the ones that have parameters that don't. Ex: <a href="https://example.com/folder/edit.php?action=someaction&id=[foocode parameter='value']&edittoken=[foocode parameter='othervalue']">linktext</a> doesn't work Ex: <a href="https://example.com/folder/edit.php?action=someaction&id=[foocode]&edittoken=[foo-other-code]">linktext</a> does work (at least for me) I have used a simple shortcode like this to output the path for images on my site so I don't have to remember the path each time (I don't use the media manager). Hope this helps someone who may stumble on this question later. A: Please have a try with this- <a href="https://example.com/folder/edit.php?action=someaction&id=<?php echo do_shortcode("[foocode parameter='value']"); ?>&edittoken=<?php echo do_shortcode("[foocode parameter='othervalue']"); ?>">linktext</a> A: For executing the shortcode inside the raw HTML element you would have to find the callback function that is being called via shortcode and then echo that function out in the raw html element. For example if your shortcode is [foo_code], then find out which function is being called back when this function is being executed by finding the add_shortcode() for this shortcode (in this case [foo_code])- add_shortcode('foo_code', 'foo_callback_function'); Now, when you know which function is being called you can simply echo this function in the raw html like: [echo foo_callback_function();] For more details, about why it works checkout this answer. Hope it helps!
wordpress
{ "language": "en", "length": 401, "provenance": "stackexchange_00019.jsonl.gz:468971", "question_score": "5", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/241634" }
[ 0.0693359375, -0.0169830322265625, 0.0295867919921875, 0.004428863525390625, -0.027679443359375, -0.00472259521484375, 0.0201416015625, -0.042236328125, -0.027740478515625, 0.033050537109375, -0.0321044921875, 0.0114593505859375, 0.0103302001953125, -0.00554656982421875, 0.00021219253540039062, -0.0294647216796875, 0.01227569580078125, 0.044097900390625, 0.04583740234375, -0.0136871337890625, -0.01123809814453125, 0.0006499290466308594, 0.0067291259765625, 0.013824462890625, 0.02581787109375, -0.032501220703125, 0.0736083984375, -0.01326751708984375, 0.00435638427734375, -0.01520538330078125, 0.02606201171875, -0.01204681396484375, 0.050018310546875, 0.024139404296875, -0.070068359375, 0.0645751953125, -0.0272369384765625, 0.0095062255859375, -0.00548553466796875, 0.0177154541015625, 0.029205322265625, -0.014251708984375, 0.0601806640625, 0.00185394287109375, 0.0191497802734375, -0.02447509765625, 0.03533935546875, -0.060943603515625, -0.0298004150390625, -0.026397705078125, 0.04571533203125, 0.0276947021484375, 0.057647705078125, -0.034271240234375, -0.01079559326171875, -0.003383636474609375, -0.0299835205078125, -0.042327880859375, 0.0205078125, 0.042144775390625, 0.0135955810546875, -0.029998779296875, 0.01776123046875, -0.0222930908203125, 0.03460693359375, 0.00225067138671875, 0.02935791015625, 0.017974853515625, 0.0157928466796875, 0.06365966796875, 0.03411865234375, -0.036529541015625, -0.0160064697265625, -0.047698974609375, 0.0075531005859375, 0.043426513671875, -0.0171356201171875, 0.01294708251953125, -0.01248931884765625, 0.0238189697265625, 0.045196533203125, -0.003475189208984375, 0.0258331298828125, -0.0089569091796875, 0.008697509765625, 0.008331298828125, 0.004276275634765625, -0.0204315185546875, -0.0063018798828125, 0.03216552734375, -0.0137481689453125, 0.0396728515625, 0.008087158203125, -0.01029205322265625, -0.0146331787109375, -0.018463134765625, -0.0160369873046875, 0.0212554931640625, 0.024139404296875, 0.06158447265625, -0.0033931732177734375, -0.0430908203125, 0.0595703125, -0.0579833984375, -0.01038360595703125, 0.05511474609375, -0.00786590576171875, 0.018218994140625, 0.036041259765625, 0.0220489501953125, 0.0213470458984375, 0.00867462158203125, -0.03515625, -0.0280609130859375, -0.025177001953125, 0.03167724609375, -0.06744384765625, 0.0101318359375, 0.00211334228515625, 0.012542724609375, 0.0076141357421875, 0.038055419921875, 0.0298614501953125, -0.02935791015625, -0.02587890625, -0.0194244384765625, 0.0029392242431640625, -0.07000732421875, 0.034942626953125, -0.0108489990234375, -0.0264892578125, 0.035919189453125, 0.0262298583984375, 0.0232391357421875, 0.0035648345947265625, 0.00817108154296875, 0.00640106201171875, 0.00012755393981933594, 0.0019683837890625, -0.0010166168212890625, 0.0160980224609375, 0.00879669189453125, 0.0206756591796875, -0.0095672607421875, -0.0226287841796875, 0.032867431640625, 0.04071044921875, 0.0015726089477539062, -0.04498291015625, -0.0860595703125, 0.0281524658203125, -0.034942626953125, 0.042144775390625, 0.00199127197265625, 0.007320404052734375, -0.021270751953125, 0.0287933349609375, -0.021209716796875, -0.0067291259765625, -0.032806396484375, -0.02056884765625, -0.03326416015625, 0.0285186767578125, -0.036468505859375, -0.056396484375, 0.03594970703125, -0.048492431640625, -0.013031005859375, 0.0210418701171875, 0.0640869140625, -0.0004949569702148438, -0.01215362548828125, -0.040191650390625, 0.0223541259765625, 0.004520416259765625, 0.003231048583984375, -0.010284423828125, 0.01788330078125, 0.02410888671875, 0.01462554931640625, -0.010223388671875, -0.036346435546875, 0.0704345703125, -0.0291595458984375, -0.07763671875, 0.0750732421875, -0.0020771026611328125, 0.08331298828125, 0.0330810546875, -0.0020885467529296875, 0.0240936279296875, 0.01165771484375, 0.0206298828125, 0.028900146484375, 0.020599365234375, -0.0458984375, -0.04119873046875, -0.0303497314453125, -0.0116424560546875, -0.0292205810546875, 0.006305694580078125, -0.004497528076171875, 0.031951904296875, 0.007038116455078125, 0.0126190185546875, 0.01397705078125, -0.0195770263671875, 0.0229034423828125, -0.01116943359375, -0.041473388671875, 0.00025963783264160156, -0.056640625, -0.00046706199645996094, 0.00623321533203125, -0.012054443359375, 0.051513671875, -0.00543975830078125, 0.08319091796875, 0.006168365478515625, 0.039703369140625, 0.0167083740234375, -0.039520263671875, 0.027191162109375, 0.022247314453125, 0.04736328125, 0.004550933837890625, -0.021636962890625, -0.027191162109375, 0.003665924072265625, 0.024658203125, -0.074462890625, 0.0301666259765625, -0.01523590087890625, 0.0126800537109375, -0.035186767578125, -0.027008056640625, -0.0325927734375, -0.0272216796875, 0.01216888427734375, 0.046600341796875, 0.04156494140625, 0.027496337890625, -0.006191253662109375, -0.048126220703125, 0.059661865234375, -0.0003266334533691406, 0.037109375, -0.047393798828125, -0.03594970703125, -0.0185394287109375, 0.042724609375, 0.004703521728515625, 0.0152740478515625, -0.056610107421875, -0.01113128662109375, 0.022613525390625, -0.019500732421875, -0.0251007080078125, 0.0210723876953125, -0.0006432533264160156, 0.000022530555725097656, -0.033416748046875, -0.000759124755859375, -0.0264129638671875, 0.058013916015625, -0.005126953125, 0.035400390625, 0.0152130126953125, -0.040740966796875, 0.0285186767578125, 0.0095062255859375, -0.02630615234375, -0.0230560302734375, 0.04071044921875, 0.0163726806640625, -0.01181793212890625, -0.0291748046875, 0.004177093505859375, -0.0239715576171875, 0.006343841552734375, 0.0025177001953125, 0.018768310546875, -0.004405975341796875, -0.0086822509765625, -0.01126861572265625, -0.005481719970703125, 0.0113677978515625, 0.00783538818359375, 0.01490020751953125, 0.034576416015625, 0.0305633544921875, 0.07684326171875, -0.01165771484375, 0.05657958984375, 0.0277557373046875, 0.031280517578125, 0.0004782676696777344, -0.0185699462890625, 0.0256805419921875, -0.01525115966796875, 0.0224609375, 0.06378173828125, -0.0253448486328125, 0.028076171875, 0.01198577880859375, -0.00005167722702026367, -0.0052642822265625, 0.0163726806640625, 0.019989013671875, -0.0014791488647460938, -0.0009093284606933594, 0.05816650390625, 0.0233154296875, 0.0494384765625, -0.00943756103515625, -0.0450439453125, 0.0035839080810546875, 0.038848876953125, -0.071533203125, -0.08734130859375, 0.07257080078125, -0.040252685546875, 0.0045928955078125, 0.002971649169921875, -0.034576416015625, -0.04473876953125, 0.059051513671875, -0.0245361328125, -0.016815185546875, -0.032135009765625, -0.00339508056640625, -0.0450439453125, -0.048553466796875, 0.0172119140625, 0.0149383544921875, 0.0026226043701171875, 0.002044677734375, -0.0004189014434814453, -0.01141357421875, -0.033111572265625, -0.00586700439453125, -0.01788330078125, -0.0012664794921875, -0.01128387451171875, 0.006755828857421875, -0.0345458984375, -0.0130462646484375, -0.00826263427734375, -0.0247802734375, 0.01194000244140625, -0.00960540771484375, 0.0048065185546875, -0.00634002685546875, 0.01288604736328125, 0.040069580078125, -0.002227783203125, -0.017486572265625, 0.014129638671875, 0.0352783203125, -0.0225677490234375, -0.0244293212890625, -0.004192352294921875, -0.0533447265625, -0.038116455078125, 0.041046142578125, -0.0110321044921875, -0.00698089599609375, -0.0294036865234375, 0.024200439453125, 0.024017333984375, 0.032379150390625, 0.00605010986328125, -0.036102294921875, -0.0151519775390625, 0.0004792213439941406, -0.0400390625, 0.019012451171875, -0.0001678466796875, -0.0014219284057617188, 0.00772857666015625, 0.0290069580078125, -0.0131378173828125, 0.04058837890625, -0.041168212890625, -0.00751495361328125, 0.040802001953125, -0.0103759765625, 0.041351318359375, -0.04046630859375, -0.0264739990234375, -0.0257568359375, 0.06512451171875, -0.03619384765625, -0.0134429931640625, -0.0030002593994140625, 0.004230499267578125, -0.01349639892578125, -0.0014429092407226562, -0.053680419921875, -0.0013141632080078125, -0.0017232894897460938, 0.02899169921875, 0.002544403076171875, 0.0117950439453125, -0.044525146484375, -0.00881195068359375, -0.0242462158203125, -0.016204833984375, 0.032806396484375, -0.0241546630859375, 0.03680419921875, -0.040863037109375, -0.0199737548828125, -0.0101776123046875, -0.024200439453125, -0.0224761962890625, -0.0007257461547851562, -0.0006804466247558594, -0.0300750732421875, 0.015533447265625, 0.03253173828125, -0.036224365234375, -0.0284576416015625, 0.004589080810546875, -0.0025787353515625, 0.0248565673828125, 0.0228271484375, 0.0279388427734375, 0.006923675537109375, 0.0038890838623046875, 0.032470703125, -0.03704833984375, 0.01358795166015625, 0.0306854248046875, -0.004268646240234375, 0.03533935546875, -0.0308837890625, -0.04534912109375, 0.01947021484375, -0.049407958984375, -0.05267333984375, -0.0204925537109375, -0.0193328857421875, 0.02557373046875, -0.03680419921875, 0.003910064697265625, -0.0257415771484375, -0.05010986328125, 0.0241546630859375, 0.03369140625, -0.0189361572265625, -0.00762939453125, 0.0347900390625, 0.0176544189453125, -0.0379638671875, -0.0199432373046875, 0.029571533203125, 0.049285888671875, -0.0213470458984375, 0.0139312744140625, -0.004703521728515625, -0.0264892578125, 0.058624267578125, -0.006076812744140625, 0.050628662109375, -0.0816650390625, 0.060211181640625, 0.01045989990234375, 0.03778076171875, -0.0025196075439453125, 0.0390625, -0.01074981689453125, 0.0103302001953125, -0.014801025390625, -0.007480621337890625, 0.00041794776916503906, 0.022308349609375, -0.00971221923828125, 0.024627685546875, -0.0166473388671875, -0.057861328125, 0.005390167236328125, 0.0297698974609375, 0.0241241455078125, 0.055877685546875, -0.0034236907958984375, 0.042724609375, 0.0204315185546875, 0.0144805908203125, -0.00020825862884521484, -0.026611328125, -0.053375244140625, 0.0491943359375, -0.06768798828125, -0.0312347412109375, 0.0462646484375, -0.013946533203125, 0.031463623046875, 0.00489044189453125, -0.0255279541015625, 0.01399993896484375, -0.01097869873046875, -0.03924560546875, -0.007282257080078125, 0.019683837890625, -0.00861358642578125, 0.006137847900390625, -0.00852203369140625, 0.0212554931640625, 0.017974853515625, 0.0194091796875, -0.013427734375, -0.017730712890625, 0.0138092041015625, -0.04034423828125, 0.0056304931640625, -0.0133819580078125, -0.0241851806640625, -0.00626373291015625, 0.01153564453125, 0.007511138916015625, 0.03741455078125, -0.007274627685546875, 0.022308349609375, 0.01340484619140625, 0.0093231201171875, -0.04278564453125, 0.0026569366455078125, -0.01177215576171875, -0.020477294921875, 0.0340576171875, 0.0535888671875, -0.041900634765625, -0.0157318115234375, -0.005397796630859375, -0.03717041015625, -0.01210784912109375, 0.00363922119140625, -0.00045180320739746094, 0.0102081298828125, -0.04498291015625, -0.0186920166015625, 0.043426513671875, 0.035919189453125, -0.006717681884765625, 0.0003504753112792969, -0.0242919921875, 0.030242919921875, -0.043853759765625, 0.016143798828125, -0.00925445556640625, -0.0154571533203125, 0.031585693359375, -0.00598907470703125, -0.0205230712890625, -0.00839996337890625, 0.01221466064453125, -0.03680419921875, -0.0217742919921875, 0.0657958984375, -0.02215576171875, -0.00945281982421875, -0.0189666748046875, 0.0064697265625, 0.0032806396484375, -0.00860595703125, 0.07440185546875, 0.02874755859375, -0.10040283203125, 0.0162506103515625, -0.03955078125, 0.01004791259765625, 0.025054931640625, -0.05767822265625, -0.049530029296875, -0.032928466796875, -0.02215576171875, 0.03753662109375, -0.03985595703125, -0.0184783935546875, 0.01174163818359375, 0.023101806640625, -0.01222991943359375, 0.093994140625, -0.0165557861328125, 0.00128173828125, -0.01020050048828125, 0.0086517333984375, -0.0103302001953125, 0.01560211181640625, 0.04302978515625, -0.0276641845703125, 0.0396728515625, -0.0252838134765625, -0.06036376953125, -0.0421142578125, -0.01323699951171875, -0.0057830810546875, 0.0203094482421875, -0.01416778564453125, 0.007801055908203125, -0.040374755859375, -0.01546478271484375, -0.018524169921875, 0.06097412109375, -0.025299072265625, -0.007526397705078125, 0.0283203125, -0.0266876220703125, -0.06988525390625, -0.00421905517578125, 0.0146942138671875, 0.033477783203125, -0.0080413818359375, -0.007534027099609375, -0.006855010986328125, 0.00749969482421875, 0.0169830322265625, 0.06817626953125, -0.00732421875, 0.04571533203125, 0.041656494140625, 0.018768310546875, 0.033477783203125, 0.043548583984375, 0.033172607421875, -0.0199127197265625, 0.058349609375, 0.004398345947265625, -0.038299560546875, 0.019195556640625, -0.033172607421875, 0.0310211181640625, 0.06500244140625, 0.08294677734375, -0.1025390625, 0.01198577880859375, 0.010589599609375, -0.03271484375, -0.01062774658203125, -0.0095367431640625, -0.00397491455078125, -0.024200439453125, 0.026702880859375, 0.008392333984375, -0.0211029052734375, 0.021453857421875, 0.0176849365234375, 0.0130615234375, -0.0160980224609375, 0.04315185546875, -0.0028018951416015625, -0.03765869140625, -0.0150604248046875, 0.0235748291015625, 0.0031337738037109375, -0.011077880859375, 0.0208740234375, 0.0009021759033203125, -0.03692626953125, -0.026611328125, 0.0256500244140625, 0.01385498046875, -0.028350830078125, -0.0277862548828125, -0.0281982421875, 0.037933349609375, 0.03387451171875, -0.04327392578125, 0.0243988037109375, 0.022674560546875, 0.012725830078125, 0.01488494873046875, -0.0023288726806640625, 0.002506256103515625, 0.023681640625, -0.03607177734375, -0.0009350776672363281, -0.0223846435546875, 0.0289154052734375, 0.00833892822265625, 0.0506591796875, 0.03936767578125, -0.0265045166015625, -0.032470703125, 0.02947998046875, -0.00202178955078125, -0.0122528076171875, 0.00701904296875, -0.0304412841796875, -0.033294677734375, 0.004222869873046875, -0.024322509765625, -0.06439208984375, 0.0259552001953125, -0.0246734619140625, -0.0926513671875, 0.1011962890625, 0.022186279296875, 0.054718017578125, -0.00799560546875, 0.040191650390625, -0.023712158203125, -0.0010728836059570312, -0.0277252197265625, -0.0085296630859375, -0.00289154052734375, 0.0305633544921875, -0.04364013671875, -0.01537322998046875, -0.004192352294921875, 0.044464111328125, -0.0229949951171875, -0.0045318603515625, -0.004634857177734375, 0.0220184326171875, 0.046417236328125, -0.0288543701171875, -0.0244598388671875, 0.041107177734375, 0.02520751953125, -0.00559234619140625, 0.0272674560546875, -0.00769805908203125, 0.02496337890625, -0.021026611328125, 0.01751708984375, 0.052032470703125, -0.0117034912109375, -0.03662109375, -0.0028438568115234375, 0.006561279296875, -0.01232147216796875, 0.0073394775390625, -0.02984619140625, 0.0293121337890625, -0.038238525390625, 0.0728759765625, 0.0175323486328125, -0.056549072265625, -0.0875244140625, -0.034088134765625, 0.0194854736328125, 0.00882720947265625, 0.046630859375, 0.005306243896484375, 0.0165557861328125, 0.0258331298828125, -0.0028533935546875, 0.01824951171875, 0.031463623046875, -0.0247955322265625, 0.0277099609375, -0.0246124267578125, 0.0068359375, -0.08062744140625, -0.01471710205078125, 0.040863037109375, 0.05816650390625, -0.029388427734375, 0.0036907196044921875, -0.007568359375, -0.004161834716796875, 0.0025920867919921875, -0.0289154052734375, 0.0275726318359375, 0.050048828125, 0.03228759765625, 0.0038433074951171875, -0.00153350830078125, -0.01161956787109375, 0.043243408203125, 0.0071563720703125, 0.0264129638671875, -0.050323486328125, -0.0169677734375, -0.057373046875, 0.00434112548828125, 0.006450653076171875, 0.0653076171875, 0.039031982421875, 0.029144287109375, -0.038177490234375, -0.03997802734375, -0.01189422607421875, 0.025421142578125, -0.0284576416015625, 0.01197052001953125, -0.0245361328125, -0.0254669189453125, -0.002513885498046875, 0.034881591796875, 0.0304107666015625, 0.02001953125, 0.001621246337890625, -0.0182037353515625, -0.0019197463989257812, 0.003170013427734375, 0.03521728515625, -0.01611328125, 0.010223388671875, -0.01605224609375, 0.03192138671875, 0.004108428955078125, 0.0093841552734375, -0.045806884765625, 0.050933837890625, 0.0189208984375, -0.061431884765625, 0.057220458984375, -0.015655517578125, 0.00527191162109375, 0.048919677734375, -0.0157470703125, 0.0200653076171875, -0.024993896484375, -0.00861358642578125, 0.01010894775390625, -0.027679443359375, -0.06939697265625, 0.018707275390625, 0.041473388671875, -0.023681640625, 0.0276641845703125, 0.0139007568359375, -0.0214385986328125, 0.005947113037109375, 0.033294677734375, 0.004764556884765625, 0.0012788772583007812, 0.0296783447265625, 0.00010192394256591797, -0.04150390625, -0.019195556640625, -0.04156494140625, 0.050933837890625, 0.0565185546875, 0.06976318359375, -0.03826904296875, 0.04388427734375, -0.00897216796875, -0.003932952880859375, -0.0262451171875, -0.0153656005859375, 0.06268310546875, -0.033477783203125, -0.0282745361328125, -0.007564544677734375, 0.04608154296875, 0.07733154296875, -0.0037975311279296875, -0.0217132568359375, 0.0032138824462890625, 0.0167236328125, -0.007633209228515625, 0.032196044921875, 0.06146240234375, -0.0025997161865234375, -0.0282745361328125, -0.045501708984375, -0.015594482421875, 0.04217529296875, 0.05340576171875, -0.00504302978515625, 0.0157318115234375, 0.050445556640625, -0.0099334716796875, 0.0258331298828125, -0.00519561767578125, 0.05181884765625, 0.02801513671875, -0.0096588134765625, 0.00823211669921875, -0.015838623046875, -0.036865234375, -0.006252288818359375, 0.005859375, -0.006229400634765625, -0.0103759765625, -0.007129669189453125, 0.0014362335205078125, 0.05682373046875, 0.05975341796875, 0.0005655288696289062, 0.0295867919921875, 0.004528045654296875, -0.0279541015625, 0.0214996337890625, 0.0236663818359375, -0.025970458984375, -0.048126220703125, 0.0208740234375, 0.010498046875, -0.012542724609375, -0.01383209228515625, -0.04638671875, -0.0148468017578125, 0.03680419921875, -0.0020618438720703125, -0.020050048828125, -0.033538818359375, 0.0135345458984375, 0.04107666015625, -0.0015554428100585938, 0.0009207725524902344, -0.01483154296875, -0.01085662841796875, -0.041351318359375, -0.053466796875, -0.045135498046875, 0.041290283203125, -0.03515625, 0.058807373046875, 0.054718017578125, -0.0259246826171875, -0.015655517578125, 0.0640869140625, 0.0266571044921875, 0.114013671875, -0.03924560546875, -0.033203125, -0.013885498046875, -0.0008873939514160156, 0.01259613037109375, -0.0300750732421875, 0.005931854248046875, -0.033843994140625, -0.00881195068359375, -0.0076141357421875, -0.012176513671875, 0.004642486572265625, -0.053497314453125, -0.1031494140625, 0.04302978515625, -0.01165008544921875, -0.04498291015625, -0.007793426513671875, -0.01320648193359375, -0.0180511474609375, 0.01448822021484375, -0.0038890838623046875, -0.0150146484375, -0.033905029296875, 0.015106201171875, 0.0220794677734375, 0.01236724853515625, 0.0234832763671875, 0.0235443115234375, -0.0264129638671875, 0.00626373291015625, -0.0243988037109375, -0.0158233642578125, 0.0251922607421875, -0.02301025390625, 0.042572021484375, 0.0222930908203125, -0.050628662109375, -0.0088348388671875, -0.004787445068359375, -0.007755279541015625, 0.031097412109375, -0.058929443359375, -0.0305023193359375, -0.042633056640625, 0.0221099853515625, -0.01267242431640625, 0.004253387451171875, -0.0013866424560546875, 0.00678253173828125, -0.004268646240234375, 0.014862060546875, -0.00476837158203125, -0.005825042724609375, -0.026153564453125, -0.01438140869140625, -0.0212554931640625, -0.0006399154663085938, 0.01050567626953125, 0.0029506683349609375, -0.006622314453125, 0.00836944580078125, 0.0217742919921875, -0.0204010009765625, -0.0243988037109375, 0.0229644775390625, 0.0689697265625, -0.041229248046875, 0.0132598876953125, 0.003429412841796875, -0.0010766983032226562, 0.04779052734375, 0.004871368408203125, 0.024627685546875, 0.0240936279296875, -0.0033092498779296875, 0.01061248779296875, 0.036163330078125, 0.01904296875, 0.00627899169921875, -0.0182952880859375, -0.0154876708984375, 0.0293731689453125, -0.0010385513305664062, 0.02203369140625, -0.028228759765625, 0.06451416015625, 0.019195556640625, 0.050872802734375, -0.0172882080078125, 0.01087188720703125, -0.0201263427734375, 0.04083251953125, -0.0256500244140625, 0.0092315673828125, 0.0298919677734375, -0.062408447265625, 0.00627899169921875, 0.031494140625, 0.0154266357421875, -0.0271148681640625, 0.0237579345703125, -0.0008230209350585938, 0.0382080078125, 0.015899658203125 ]
cedb4c4c75162a13875e004724621b7652a5fbdc
Wordpress Stackexchange Q: How to consume and display external data in WordPress from another website I am trying to access data from another website to display on a WordPress Website I am developing. So far I have the following: <?php /* Template Name: Testing remote data */ get_header(); <div class="main"> <div class="col-sm-12"> <header> <h2>Testing remote data</h2> </header> </div> <div class="container"> <div id="content" role="main"> <div class="col-sm-12"> <?php $url = 'http://www.bbc.co.uk/news/';// this url is only for example purposes $request = wp_remote_get( $url ); if(is_wp_error($request)) { return false; } else { $body = $request['body']; } echo $body; </div> </div> </div> </div> This works fine. However, I get the whole body content. How would I go about getting specific sections of the body? If any one could help me with this I would really appreciate it. Sorry if it's an obvious one but I am new to WordPress and I am still far from comfortable with it. A: // make request... (optionally save in transient for faster future fetches) $dom = new DOMDocument(); $dom->loadHTML(wp_remote_retrieve_body($request)); $sections=$dom->getElementsByTagName("section"); foreach ($sections as $section) { // Do something... }
Q: How to consume and display external data in WordPress from another website I am trying to access data from another website to display on a WordPress Website I am developing. So far I have the following: <?php /* Template Name: Testing remote data */ get_header(); <div class="main"> <div class="col-sm-12"> <header> <h2>Testing remote data</h2> </header> </div> <div class="container"> <div id="content" role="main"> <div class="col-sm-12"> <?php $url = 'http://www.bbc.co.uk/news/';// this url is only for example purposes $request = wp_remote_get( $url ); if(is_wp_error($request)) { return false; } else { $body = $request['body']; } echo $body; </div> </div> </div> </div> This works fine. However, I get the whole body content. How would I go about getting specific sections of the body? If any one could help me with this I would really appreciate it. Sorry if it's an obvious one but I am new to WordPress and I am still far from comfortable with it. A: // make request... (optionally save in transient for faster future fetches) $dom = new DOMDocument(); $dom->loadHTML(wp_remote_retrieve_body($request)); $sections=$dom->getElementsByTagName("section"); foreach ($sections as $section) { // Do something... } A: you can access data from other website via RSS feed. You can see the RSS feed of bbc news in the following url http://news.bbc.co.uk/2/hi/help/rss/default.stm then you could incorporate it feed in your site using transient so that you can set the appropriate time to fetch the new data. And with the DOMDocument element you can get the values/data Below is just a sample function where i have prepare a function to take your RSS feed url. function vp_get_rss_feed($feed_url) { $expires = 7200; // 2hours delete_transient( 'rss_bbc_feed_world' ); $feed = get_transient( 'rss_bbc_feed_world' ); if ( false === ( $rss = $feed ) ) : $rss = new DOMDocument(); $rss->load($feed_url); $feed = array(); $i=1; foreach ($rss->getElementsByTagName('item') as $node) { $link = $node->getElementsByTagName('link')->item(0)->nodeValue; $title = $node->getElementsByTagName('title')->item(0)->nodeValue; $slug = sanitize_title($title); $desc = $node->getElementsByTagName('description')->item(0)->nodeValue; $item[$slug] = array ( 'title' => $title, 'slug' => $slug, 'desc' => $desc, 'date' => $node->getElementsByTagName('pubDate')->item(0)->nodeValue, ); } array_push( $feed, $item ); set_transient( 'rss_bbc_feed_world', $feed, $expires ); endif; return $feed; } This function takes your RSS feed and store on a array and return that array( $feed ) You can then loop through that $feed in your desire location to where you would like to show the RSS feed data in your desire html styles. FOR REFERENCE: https://codex.wordpress.org/Transients_API http://php.net/manual/en/class.domdocument.php Hope that helps!!
wordpress
{ "language": "en", "length": 390, "provenance": "stackexchange_00019.jsonl.gz:469040", "question_score": "4", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/241879" }
[ 0.05029296875, -0.00768280029296875, 0.0169219970703125, -0.0179443359375, 0.0259552001953125, -0.03204345703125, 0.06573486328125, 0.00165557861328125, 0.004932403564453125, -0.007785797119140625, -0.0709228515625, 0.0307464599609375, -0.0718994140625, -0.0025730133056640625, 0.00382232666015625, -0.06744384765625, 0.050750732421875, -0.01007843017578125, 0.06280517578125, 0.0217132568359375, -0.01458740234375, 0.043487548828125, 0.059417724609375, 0.0074462890625, 0.00543212890625, -0.01313018798828125, 0.00521087646484375, -0.00982666015625, 0.01019287109375, -0.0007429122924804688, 0.007091522216796875, -0.0190887451171875, 0.04559326171875, 0.017730712890625, -0.080810546875, -0.04168701171875, 0.0100555419921875, -0.005817413330078125, -0.04229736328125, 0.05096435546875, 0.016204833984375, -0.006206512451171875, 0.05181884765625, 0.037994384765625, 0.0072174072265625, -0.0139923095703125, 0.01059722900390625, -0.073974609375, -0.036712646484375, 0.0621337890625, 0.02557373046875, -0.0008044242858886719, 0.030029296875, 0.0830078125, -0.0103759765625, -0.0225067138671875, 0.02789306640625, -0.008758544921875, 0.02862548828125, -0.0300750732421875, -0.05426025390625, -0.006435394287109375, 0.028533935546875, 0.0018825531005859375, -0.01458740234375, 0.00121307373046875, 0.07696533203125, 0.024200439453125, -0.0491943359375, -0.039642333984375, 0.0181884765625, 0.0054168701171875, -0.03509521484375, -0.0058135986328125, -0.02593994140625, 0.01337432861328125, 0.015472412109375, -0.031768798828125, -0.0243988037109375, 0.032928466796875, -0.00888824462890625, 0.0099029541015625, -0.064453125, -0.03228759765625, 0.01398468017578125, -0.001232147216796875, -0.0206298828125, -0.007053375244140625, -0.0169525146484375, -0.0031414031982421875, -0.0204315185546875, 0.0122833251953125, -0.0042877197265625, -0.0207672119140625, -0.0305328369140625, -0.0290985107421875, -0.0223236083984375, 0.0181427001953125, -0.044769287109375, 0.00514984130859375, 0.023193359375, -0.0164337158203125, 0.032867431640625, -0.03192138671875, 0.016876220703125, -0.01500701904296875, 0.00946044921875, -0.037933349609375, 0.043487548828125, 0.01360321044921875, -0.02435302734375, 0.09130859375, -0.007465362548828125, -0.03558349609375, -0.029876708984375, -0.0011396408081054688, -0.0302276611328125, -0.01486968994140625, 0.0192108154296875, -0.017913818359375, -0.01824951171875, -0.004154205322265625, -0.0103912353515625, 0.0098724365234375, -0.0008950233459472656, 0.003078460693359375, 0.004688262939453125, -0.0137939453125, -0.03460693359375, 0.006893157958984375, -0.0184173583984375, 0.0391845703125, 0.04693603515625, 0.0145416259765625, -0.0283050537109375, -0.0014295578002929688, 0.0457763671875, 0.01403045654296875, 0.025360107421875, -0.0250091552734375, 0.026123046875, -0.01114654541015625, -0.005428314208984375, 0.005565643310546875, -0.03485107421875, -0.0014810562133789062, 0.0272369384765625, 0.0235443115234375, -0.01123809814453125, -0.0232696533203125, -0.005733489990234375, -0.0171356201171875, 0.025115966796875, -0.0124053955078125, 0.0245208740234375, -0.035003662109375, 0.0484619140625, -0.0440673828125, 0.0025081634521484375, -0.0255279541015625, 0.004337310791015625, -0.0029544830322265625, 0.016204833984375, -0.038970947265625, -0.05511474609375, -0.018157958984375, -0.03045654296875, -0.0166473388671875, 0.033447265625, 0.0115203857421875, 0.007781982421875, -0.0546875, 0.01983642578125, 0.0292816162109375, -0.0024356842041015625, 0.06353759765625, 0.00023496150970458984, 0.0234832763671875, 0.024627685546875, 0.0102386474609375, -0.001621246337890625, -0.0255126953125, 0.06982421875, -0.0273284912109375, -0.05517578125, 0.0633544921875, 0.004970550537109375, 0.07171630859375, 0.01462554931640625, 0.019256591796875, -0.01323699951171875, 0.0278778076171875, -0.0214691162109375, 0.041839599609375, 0.004573822021484375, -0.0196533203125, -0.0186614990234375, 0.0176239013671875, -0.0174560546875, -0.044403076171875, 0.01219940185546875, 0.01428985595703125, -0.007244110107421875, -0.01153564453125, -0.025390625, -0.0205230712890625, -0.005252838134765625, 0.0217437744140625, 0.016937255859375, 0.0218353271484375, -0.00278472900390625, 0.01131439208984375, -0.002979278564453125, -0.03399658203125, -0.029266357421875, 0.02069091796875, -0.015625, 0.046112060546875, -0.005786895751953125, 0.037689208984375, -0.01154327392578125, -0.038848876953125, -0.00501251220703125, -0.011383056640625, 0.0458984375, -0.0292205810546875, 0.000023126602172851562, -0.030792236328125, 0.035491943359375, 0.005584716796875, -0.01776123046875, 0.01079559326171875, 0.0306549072265625, 0.054901123046875, -0.0072479248046875, -0.002071380615234375, 0.01471710205078125, -0.013702392578125, 0.0020465850830078125, 0.0311126708984375, 0.0399169921875, 0.0263214111328125, -0.02972412109375, -0.044189453125, 0.0380859375, -0.0360107421875, 0.0122222900390625, -0.03753662109375, -0.015838623046875, -0.009796142578125, -0.006633758544921875, -0.00826263427734375, 0.041961669921875, -0.03790283203125, -0.00016164779663085938, 0.028350830078125, 0.01024627685546875, 0.00566864013671875, -0.039642333984375, 0.00859832763671875, 0.0178985595703125, 0.034515380859375, -0.033294677734375, 0.014739990234375, 0.03759765625, -0.0123291015625, 0.0325927734375, 0.01386260986328125, -0.01345062255859375, -0.028839111328125, 0.01096343994140625, 0.0029144287109375, -0.00855255126953125, 0.0249786376953125, 0.0399169921875, -0.0008091926574707031, -0.0273590087890625, -0.01413726806640625, 0.00965118408203125, 0.0169219970703125, -0.0022449493408203125, 0.0489501953125, -0.022430419921875, -0.018280029296875, 0.00041675567626953125, 0.00048661231994628906, -0.0283660888671875, -0.00455474853515625, 0.03643798828125, 0.04913330078125, 0.042877197265625, 0.046356201171875, -0.0286407470703125, 0.0733642578125, -0.0267333984375, -0.0006213188171386719, 0.0738525390625, -0.02667236328125, 0.01210784912109375, 0.0005426406860351562, 0.08306884765625, 0.0457763671875, 0.0122833251953125, -0.0013713836669921875, -0.004833221435546875, 0.029693603515625, 0.0074462890625, -0.00955963134765625, -0.0169219970703125, 0.0033721923828125, -0.0733642578125, -0.05029296875, 0.006694793701171875, 0.00450897216796875, -0.00780487060546875, -0.052398681640625, -0.0150146484375, -0.00601959228515625, -0.12139892578125, -0.086669921875, 0.04052734375, -0.07354736328125, -0.02032470703125, -0.0157012939453125, -0.04827880859375, -0.0036869049072265625, 0.0089263916015625, -0.01355743408203125, 0.021270751953125, -0.0025882720947265625, -0.0723876953125, -0.0479736328125, -0.111572265625, -0.0267181396484375, -0.0027408599853515625, 0.02777099609375, -0.006923675537109375, -0.0291290283203125, -0.025543212890625, -0.037567138671875, -0.02545166015625, 0.020965576171875, 0.004913330078125, -0.052703857421875, -0.048614501953125, -0.01263427734375, -0.027374267578125, -0.015350341796875, 0.04522705078125, -0.003696441650390625, -0.0014019012451171875, 0.024383544921875, -0.004238128662109375, -0.0225830078125, -0.0074005126953125, -0.01067352294921875, 0.006755828857421875, 0.0017242431640625, -0.027618408203125, -0.05645751953125, -0.047088623046875, 0.0171051025390625, -0.0418701171875, -0.01541900634765625, 0.031341552734375, -0.00807952880859375, 0.0020236968994140625, 0.0152435302734375, 0.00991058349609375, 0.006008148193359375, 0.026824951171875, 0.0172882080078125, -0.01290130615234375, -0.024627685546875, -0.0157470703125, -0.01556396484375, 0.0294647216796875, -0.0036907196044921875, 0.005718231201171875, 0.0252838134765625, 0.007221221923828125, 0.00894927978515625, -0.0007748603820800781, 0.0001590251922607422, -0.0207061767578125, 0.06390380859375, 0.05322265625, 0.01442718505859375, 0.00542449951171875, -0.04425048828125, 0.0033206939697265625, 0.07830810546875, -0.021453857421875, -0.01971435546875, 0.04058837890625, 0.0207366943359375, -0.041259765625, -0.03302001953125, -0.05206298828125, -0.007080078125, -0.02716064453125, 0.004810333251953125, -0.0172882080078125, -0.0260009765625, -0.01546478271484375, -0.04150390625, -0.0195159912109375, -0.02191162109375, 0.013702392578125, 0.01343536376953125, 0.00676727294921875, 0.0010557174682617188, -0.00814056396484375, 0.00444793701171875, 0.005802154541015625, -0.0173492431640625, -0.011932373046875, -0.011077880859375, 0.01224517822265625, 0.0053558349609375, 0.020416259765625, -0.0152587890625, 0.004077911376953125, 0.033233642578125, 0.004669189453125, 0.034942626953125, 0.011474609375, 0.008056640625, -0.0050201416015625, -0.00466156005859375, 0.026702880859375, -0.037811279296875, -0.00966644287109375, -0.0309906005859375, 0.005901336669921875, 0.0008363723754882812, -0.04962158203125, -0.00951385498046875, -0.0484619140625, 0.01097869873046875, -0.05340576171875, -0.01361846923828125, 0.01012420654296875, 0.01006317138671875, -0.01314544677734375, 0.00908660888671875, 0.01229095458984375, -0.05889892578125, 0.044097900390625, 0.03204345703125, -0.025299072265625, -0.0028934478759765625, 0.03662109375, 0.0159454345703125, -0.03839111328125, -0.040679931640625, -0.0018024444580078125, 0.03692626953125, -0.00769805908203125, 0.0182037353515625, -0.00811767578125, -0.03253173828125, 0.07666015625, -0.00933837890625, 0.041168212890625, 0.043975830078125, 0.0511474609375, 0.0239715576171875, 0.0167236328125, 0.023468017578125, 0.07025146484375, -0.14013671875, -0.01464080810546875, -0.030975341796875, 0.0071258544921875, 0.0215301513671875, -0.009857177734375, -0.0443115234375, 0.053985595703125, 0.01505279541015625, 0.00745391845703125, -0.01322174072265625, -0.037078857421875, 0.030242919921875, 0.04193115234375, -0.0108489990234375, -0.015960693359375, 0.01050567626953125, -0.00485992431640625, 0.02203369140625, -0.01507568359375, -0.01383209228515625, 0.020172119140625, 0.0126953125, -0.0251922607421875, 0.0199432373046875, -0.01090240478515625, 0.0280609130859375, -0.04638671875, -0.0765380859375, -0.020843505859375, 0.006221771240234375, 0.052825927734375, 0.043670654296875, 0.0191497802734375, -0.0107421875, 0.0212860107421875, -0.00386810302734375, 0.0277557373046875, 0.04913330078125, 0.0018177032470703125, -0.0022525787353515625, 0.005474090576171875, 0.005748748779296875, 0.0021724700927734375, 0.0257110595703125, 0.06256103515625, 0.0006375312805175781, 0.04345703125, -0.035125732421875, 0.06256103515625, 0.03155517578125, 0.042266845703125, 0.005725860595703125, -0.01519775390625, 0.01678466796875, 0.0064239501953125, -0.0181732177734375, -0.038543701171875, -0.034515380859375, 0.028045654296875, 0.035919189453125, -0.01837158203125, -0.003223419189453125, 0.018524169921875, -0.0003292560577392578, -0.0169830322265625, 0.05059814453125, 0.01837158203125, -0.01526641845703125, -0.032135009765625, 0.0166473388671875, 0.04180908203125, 0.0251922607421875, 0.0249481201171875, 0.016204833984375, 0.015289306640625, 0.018707275390625, 0.0308990478515625, -0.00839996337890625, -0.0299224853515625, -0.034210205078125, 0.01067352294921875, -0.00930023193359375, 0.000052869319915771484, -0.07177734375, 0.0044403076171875, -0.01512908935546875, 0.005161285400390625, 0.038055419921875, -0.06707763671875, -0.0186309814453125, -0.054931640625, 0.07623291015625, -0.11517333984375, 0.013214111328125, 0.038665771484375, 0.04559326171875, -0.0251007080078125, -0.0157623291015625, -0.00943756103515625, -0.017791748046875, -0.0064697265625, -0.007659912109375, -0.0340576171875, -0.004673004150390625, -0.020538330078125, 0.024505615234375, -0.018524169921875, 0.01476287841796875, -0.001220703125, 0.01407623291015625, -0.01242828369140625, 0.0411376953125, 0.011810302734375, 0.057403564453125, -0.0219573974609375, 0.041473388671875, 0.0106048583984375, -0.0031585693359375, -0.078857421875, 0.0089111328125, 0.0099639892578125, -0.061004638671875, -0.0313720703125, -0.01047515869140625, -0.032928466796875, 0.04632568359375, 0.03936767578125, 0.004222869873046875, -0.0019702911376953125, -0.0333251953125, -0.007598876953125, -0.015472412109375, 0.047943115234375, -0.0379638671875, -0.0374755859375, 0.016876220703125, 0.006198883056640625, -0.03594970703125, -0.05914306640625, -0.05010986328125, 0.0416259765625, 0.03515625, -0.001926422119140625, -0.031280517578125, -0.028564453125, 0.01019287109375, 0.046173095703125, 0.01453399658203125, 0.05584716796875, 0.02862548828125, 0.022125244140625, 0.04559326171875, 0.072021484375, -0.032623291015625, -0.01678466796875, -0.006572723388671875, -0.020263671875, -0.02581787109375, -0.057952880859375, -0.012725830078125, 0.0043487548828125, 0.0014104843139648438, 0.05450439453125, -0.016082763671875, 0.007904052734375, -0.0015935897827148438, -0.049652099609375, 0.00846099853515625, 0.0164794921875, -0.03204345703125, -0.049285888671875, 0.036956787109375, 0.036163330078125, 0.00940704345703125, 0.0240936279296875, 0.0299835205078125, 0.00536346435546875, 0.0026073455810546875, 0.03521728515625, 0.002887725830078125, -0.01288604736328125, -0.0294342041015625, -0.0026302337646484375, 0.0134429931640625, -0.008148193359375, 0.0244293212890625, -0.0081024169921875, -0.0083465576171875, -0.040374755859375, 0.0007572174072265625, -0.02691650390625, -0.01090240478515625, -0.022430419921875, 0.00215911865234375, 0.0000826716423034668, 0.0404052734375, -0.029876708984375, 0.005313873291015625, 0.00615692138671875, 0.007175445556640625, -0.004993438720703125, -0.0355224609375, -0.0025348663330078125, 0.04168701171875, -0.036590576171875, 0.0207061767578125, 0.005687713623046875, -0.017974853515625, -0.014190673828125, -0.030792236328125, 0.006450653076171875, 0.020782470703125, -0.024658203125, 0.034637451171875, 0.0163116455078125, -0.02374267578125, -0.00960540771484375, 0.04132080078125, -0.07220458984375, -0.00951385498046875, 0.0084228515625, 0.0024204254150390625, -0.02392578125, -0.021697998046875, -0.0968017578125, 0.07830810546875, 0.01486968994140625, 0.032806396484375, -0.0180206298828125, 0.023834228515625, -0.037750244140625, -0.0264892578125, -0.046112060546875, 0.039031982421875, 0.03857421875, 0.013153076171875, -0.0660400390625, -0.0187530517578125, -0.004352569580078125, 0.0291290283203125, -0.01378631591796875, 0.00444793701171875, -0.00811767578125, -0.0035381317138671875, -0.006866455078125, 0.0144195556640625, -0.0083770751953125, 0.01605224609375, 0.00014841556549072266, 0.01366424560546875, 0.036041259765625, -0.0535888671875, 0.0006508827209472656, -0.0124664306640625, 0.0110015869140625, 0.042724609375, 0.003021240234375, 0.008270263671875, 0.019500732421875, 0.0147247314453125, -0.0498046875, 0.01438140869140625, 0.04022216796875, -0.04412841796875, 0.0012636184692382812, 0.0304412841796875, 0.035736083984375, -0.058258056640625, -0.017364501953125, -0.048919677734375, 0.0501708984375, 0.0108795166015625, 0.0109405517578125, 0.00942230224609375, 0.01270294189453125, 0.0836181640625, 0.0097503662109375, -0.0009055137634277344, 0.023773193359375, 0.0125579833984375, 0.059051513671875, 0.0128021240234375, 0.0154876708984375, -0.07470703125, 0.0055694580078125, 0.052581787109375, 0.08551025390625, -0.04901123046875, 0.0034389495849609375, -0.0021190643310546875, 0.004180908203125, 0.00975799560546875, -0.0191497802734375, 0.038909912109375, 0.03302001953125, 0.007228851318359375, -0.006076812744140625, -0.0035343170166015625, 0.00257110595703125, 0.01178741455078125, -0.002017974853515625, 0.00522613525390625, -0.00783538818359375, 0.00386810302734375, -0.0469970703125, 0.03704833984375, -0.0006299018859863281, 0.0254974365234375, 0.0189208984375, 0.03472900390625, -0.0014705657958984375, -0.01227569580078125, 0.018402099609375, -0.009613037109375, 0.0210418701171875, -0.0146026611328125, -0.00262451171875, -0.007534027099609375, 0.005779266357421875, 0.031982421875, -0.0019378662109375, -0.061767578125, 0.01486968994140625, 0.003810882568359375, -0.06329345703125, -0.0308685302734375, 0.00682830810546875, -0.0274505615234375, -0.0007114410400390625, -0.04248046875, -0.03125, 0.0022678375244140625, -0.0089111328125, 0.00345611572265625, -0.03399658203125, 0.0308685302734375, -0.04205322265625, 0.068359375, -0.0236968994140625, -0.00434112548828125, 0.007541656494140625, -0.030670166015625, 0.04833984375, -0.020263671875, -0.1080322265625, -0.004810333251953125, -0.033172607421875, -0.028961181640625, 0.020263671875, 0.040985107421875, -0.0246429443359375, 0.0248260498046875, 0.01023101806640625, 0.0233612060546875, -0.005916595458984375, -0.01898193359375, -0.0094451904296875, 0.0298919677734375, 0.033966064453125, 0.0183258056640625, -0.0204620361328125, -0.038787841796875, -0.00592803955078125, 0.061004638671875, 0.0119781494140625, 0.06414794921875, -0.0239105224609375, 0.0158233642578125, -0.031341552734375, 0.0133209228515625, -0.0157012939453125, -0.0289459228515625, 0.037750244140625, 0.0076751708984375, -0.013092041015625, -0.0184478759765625, -0.00843048095703125, 0.053436279296875, -0.016998291015625, -0.0120086669921875, 0.0130462646484375, -0.046630859375, 0.0229644775390625, 0.050048828125, -0.01322174072265625, -0.0294647216796875, -0.0200958251953125, -0.003170013427734375, 0.00942230224609375, 0.0243072509765625, 0.039154052734375, 0.0079345703125, 0.022918701171875, 0.037109375, 0.0006585121154785156, -0.01255035400390625, -0.0004162788391113281, -0.003330230712890625, 0.028900146484375, 0.007518768310546875, -0.04180908203125, 0.00014603137969970703, -0.01042938232421875, 0.006504058837890625, 0.006565093994140625, 0.042449951171875, -0.00798797607421875, 0.0138092041015625, 0.054290771484375, -0.00830078125, 0.06890869140625, -0.003795623779296875, 0.00768280029296875, -0.02508544921875, 0.03265380859375, 0.0185394287109375, -0.0204010009765625, -0.01324462890625, -0.04644775390625, 0.007312774658203125, 0.018707275390625, -0.00652313232421875, -0.01251983642578125, -0.01348876953125, -0.013275146484375, 0.01387786865234375, -0.004425048828125, 0.00024068355560302734, -0.0199432373046875, -0.0160369873046875, 0.021240234375, 0.005710601806640625, 0.064208984375, -0.0201416015625, 0.0037059783935546875, -0.0443115234375, -0.0287628173828125, -0.0178375244140625, 0.05999755859375, -0.00974273681640625, 0.0186920166015625, 0.05560302734375, -0.00992584228515625, 0.01035308837890625, 0.0172576904296875, 0.0093231201171875, 0.06494140625, -0.05010986328125, -0.012542724609375, 0.01153564453125, -0.0087432861328125, -0.02764892578125, -0.0273590087890625, 0.01197052001953125, -0.040069580078125, -0.03094482421875, 0.0020465850830078125, -0.0024394989013671875, 0.011444091796875, -0.035369873046875, -0.062408447265625, 0.0556640625, -0.004817962646484375, -0.019927978515625, -0.043701171875, -0.03814697265625, 0.013458251953125, -0.010162353515625, -0.0318603515625, -0.01263427734375, -0.07586669921875, 0.0330810546875, 0.01641845703125, -0.001861572265625, 0.0261993408203125, 0.01526641845703125, -0.037933349609375, 0.005596160888671875, -0.0119171142578125, -0.0227508544921875, -0.06732177734375, 0.0380859375, -0.019073486328125, -0.01201629638671875, -0.00212860107421875, -0.0136260986328125, 0.037811279296875, 0.03631591796875, -0.01605224609375, -0.0203704833984375, -0.02435302734375, 0.01511383056640625, 0.066650390625, 0.0714111328125, 0.0076446533203125, -0.05755615234375, 0.0189208984375, 0.021392822265625, -0.049163818359375, -0.007843017578125, 0.019805908203125, -0.05865478515625, -0.0281524658203125, -0.0185089111328125, -0.009796142578125, 0.0238037109375, -0.0162353515625, -0.0169830322265625, -0.00803375244140625, 0.004741668701171875, -0.01580810546875, 0.004283905029296875, 0.01212310791015625, 0.1090087890625, -0.0657958984375, -0.005657196044921875, 0.0085296630859375, -0.0022869110107421875, 0.053253173828125, -0.0237884521484375, -0.0033779144287109375, -0.01375579833984375, -0.01512908935546875, 0.0234832763671875, -0.00623321533203125, 0.055938720703125, -0.024200439453125, -0.0296783447265625, -0.03912353515625, -0.022918701171875, -0.0015382766723632812, -0.04278564453125, 0.004467010498046875, -0.049774169921875, -0.00032806396484375, -0.004070281982421875, -0.019195556640625, 0.0118408203125, -0.00951385498046875, -0.00238800048828125, 0.01198577880859375, 0.0010662078857421875, 0.035980224609375, -0.0253143310546875, 0.00704193115234375, -0.0137481689453125, -0.030487060546875, -0.0389404296875, 0.0163726806640625, -0.019195556640625, -0.0297088623046875, 0.024871826171875 ]
014abe7c7cecf5fd0c7f31dc3eaf029dde1ddebd
Wordpress Stackexchange Q: Multiple Wordpress sites with docker I want to host multiple independent wordpress sites (4-10) on a rootserver. I want to host them using docker containers. Now the Q: Is it better to run ONE mysqldb running all wordpress schemes for the multiple sites, or is ist better to run one mysql instance per wordpress. Thank you. N. A: Following Docker's philosophy of "one application per container" you should have a database container for each WordPress instance. This way each database is isolated from the others. Should anything happen to one database it will not affect the others. Also, if you want to migrate or take down one website you only need to act upon its containers. The official WordPress image is prepared to link to another container providing a database. Therefore you will have two containers per website: one for the WordPress files and another for the database. For the databases you might use the official MariaDB image. The traffic for the several WordPress containers might then be distributed by a proxy container such as this one.
Q: Multiple Wordpress sites with docker I want to host multiple independent wordpress sites (4-10) on a rootserver. I want to host them using docker containers. Now the Q: Is it better to run ONE mysqldb running all wordpress schemes for the multiple sites, or is ist better to run one mysql instance per wordpress. Thank you. N. A: Following Docker's philosophy of "one application per container" you should have a database container for each WordPress instance. This way each database is isolated from the others. Should anything happen to one database it will not affect the others. Also, if you want to migrate or take down one website you only need to act upon its containers. The official WordPress image is prepared to link to another container providing a database. Therefore you will have two containers per website: one for the WordPress files and another for the database. For the databases you might use the official MariaDB image. The traffic for the several WordPress containers might then be distributed by a proxy container such as this one. A: I saw something that may help you. Click here to see : http://donalfarrell.com/2015/08/11/Docker-Nginx-Multi-Wordpress.html Basically you need to use reverse proxy to resolve this problem and you can use the 'link' property do sync your web application with specific database container. Nginx container to do reverse proxy, may be a good solution for you. I hope it helps =) A: If you don't have resource problem then create a docker-compose file per WordPress with a MySQL container per WordPress. Apps will be isolated, if not you can have some problems if you use one MySQL db container for all sites
wordpress
{ "language": "en", "length": 278, "provenance": "stackexchange_00019.jsonl.gz:469083", "question_score": "5", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/242061" }
[ 0.035675048828125, -0.00829315185546875, 0.004947662353515625, -0.0085601806640625, 0.004222869873046875, -0.03387451171875, 0.030242919921875, -0.0261383056640625, 0.00799560546875, 0.003574371337890625, -0.006420135498046875, 0.019287109375, -0.0028743743896484375, -0.032623291015625, 0.01165008544921875, -0.01322174072265625, 0.023590087890625, -0.01361846923828125, -0.0038623809814453125, -0.01096343994140625, 0.005611419677734375, 0.016357421875, -0.01459503173828125, 0.06060791015625, 0.038055419921875, -0.10064697265625, 0.055816650390625, -0.013397216796875, 0.0277862548828125, -0.01477813720703125, 0.032440185546875, 0.01297760009765625, 0.0239715576171875, -0.00501251220703125, 0.003620147705078125, -0.021575927734375, -0.025421142578125, 0.01313018798828125, -0.0023040771484375, 0.017364501953125, 0.0133514404296875, 0.0034027099609375, 0.095947265625, 0.047882080078125, 0.044952392578125, -0.06378173828125, 0.042205810546875, -0.09417724609375, 0.00818634033203125, -0.0665283203125, 0.029296875, 0.00725555419921875, 0.049102783203125, -0.031707763671875, -0.0274200439453125, -0.003063201904296875, 0.058349609375, -0.02410888671875, 0.01111602783203125, -0.05938720703125, -0.047607421875, 0.0169830322265625, 0.044525146484375, 0.01593017578125, -0.037322998046875, 0.00952911376953125, -0.01163482666015625, -0.004055023193359375, -0.036041259765625, -0.0308074951171875, 0.0284576416015625, -0.03363037109375, -0.022003173828125, 0.0227203369140625, -0.033782958984375, -0.0078582763671875, 0.036163330078125, -0.00904083251953125, 0.0144500732421875, 0.023193359375, -0.017974853515625, -0.01739501953125, -0.055572509765625, -0.047515869140625, 0.0211181640625, -0.017059326171875, -0.0029773712158203125, 0.007488250732421875, -0.043853759765625, -0.01192474365234375, -0.024627685546875, -0.0677490234375, -0.033843994140625, 0.050689697265625, 0.0072174072265625, 0.00930023193359375, -0.005706787109375, -0.03515625, -0.002544403076171875, 0.0073089599609375, 0.017791748046875, -0.03240966796875, 0.0206451416015625, -0.0009627342224121094, 0.003082275390625, 0.046875, -0.00037741661071777344, -0.0141143798828125, 0.0174713134765625, 0.00495147705078125, -0.002643585205078125, 0.0215606689453125, 0.004039764404296875, -0.04608154296875, 0.0256195068359375, 0.00604248046875, -0.01690673828125, 0.04339599609375, 0.00829315185546875, -0.03240966796875, -0.02056884765625, 0.00681304931640625, -0.0082855224609375, -0.0161285400390625, -0.0168914794921875, -0.0264129638671875, 0.01389312744140625, -0.0218963623046875, -0.07586669921875, 0.03509521484375, -0.0212249755859375, 0.005939483642578125, 0.038787841796875, 0.055908203125, -0.0178680419921875, -0.010406494140625, 0.0173492431640625, 0.028778076171875, 0.0155029296875, -0.00920867919921875, 0.0479736328125, -0.0216827392578125, -0.034515380859375, 0.020233154296875, -0.030120849609375, 0.02655029296875, 0.0313720703125, -0.0036067962646484375, -0.01486968994140625, -0.040069580078125, -0.042388916015625, 0.0182037353515625, 0.007442474365234375, -0.00473785400390625, 0.0170135498046875, -0.0301513671875, -0.014373779296875, -0.00911712646484375, 0.0248870849609375, 0.00653839111328125, -0.0012979507446289062, -0.0015125274658203125, 0.06903076171875, -0.007354736328125, -0.0269927978515625, 0.003345489501953125, -0.061431884765625, -0.01509857177734375, 0.02716064453125, -0.0382080078125, -0.009796142578125, -0.0192413330078125, 0.078125, 0.01453399658203125, -0.0016183853149414062, 0.049530029296875, 0.0300750732421875, 0.02752685546875, 0.018341064453125, -0.0005841255187988281, -0.01641845703125, -0.047576904296875, 0.08746337890625, -0.040435791015625, -0.039581298828125, 0.021087646484375, -0.004802703857421875, 0.06329345703125, 0.0218353271484375, 0.0308380126953125, 0.0057220458984375, -0.0168914794921875, -0.03985595703125, 0.046661376953125, 0.0034313201904296875, -0.0010309219360351562, -0.034271240234375, 0.03314208984375, -0.001857757568359375, -0.079833984375, 0.0198974609375, -0.0033740997314453125, -0.0019178390502929688, 0.00762176513671875, -0.062255859375, 0.0007367134094238281, -0.023895263671875, 0.01351165771484375, -0.0104522705078125, 0.019256591796875, 0.017547607421875, 0.03607177734375, -0.0211029052734375, -0.03955078125, -0.0347900390625, 0.0131683349609375, -0.0137939453125, 0.02679443359375, -0.0201416015625, 0.021209716796875, -0.01507568359375, -0.005161285400390625, -0.025787353515625, 0.006473541259765625, 0.032440185546875, -0.045806884765625, 0.0136260986328125, -0.043792724609375, 0.01416778564453125, 0.0023860931396484375, -0.0290374755859375, 0.0218963623046875, 0.01343536376953125, 0.039337158203125, -0.0121612548828125, -0.0033550262451171875, -0.0257110595703125, -0.0528564453125, -0.0012340545654296875, 0.048583984375, 0.0308380126953125, 0.020904541015625, -0.01320648193359375, 0.0006771087646484375, 0.0029392242431640625, -0.05792236328125, 0.00634765625, 0.00440216064453125, 0.0211181640625, 0.0291595458984375, -0.01146697998046875, -0.0220947265625, 0.036956787109375, -0.007358551025390625, -0.00689697265625, 0.038360595703125, 0.0098876953125, -0.0215911865234375, -0.008636474609375, 0.01371002197265625, 0.0037689208984375, -0.024017333984375, -0.041900634765625, 0.002719879150390625, -0.01175689697265625, 0.009552001953125, -0.0002071857452392578, 0.0016927719116210938, 0.0008678436279296875, 0.00820159912109375, 0.0178985595703125, -0.060394287109375, 0.0150909423828125, -0.0345458984375, -0.034637451171875, 0.0262908935546875, -0.0119476318359375, 0.00444793701171875, 0.0156097412109375, -0.022796630859375, -0.006317138671875, -0.01354217529296875, -0.061920166015625, -0.009735107421875, 0.019287109375, -0.053466796875, -0.006397247314453125, 0.01519012451171875, -0.036224365234375, -0.034698486328125, 0.01479339599609375, 0.00101470947265625, -0.045654296875, 0.018463134765625, -0.0017957687377929688, -0.028289794921875, 0.052886962890625, -0.029876708984375, 0.0270538330078125, -0.0191497802734375, 0.01220703125, 0.04156494140625, 0.0225677490234375, -0.034515380859375, 0.00033974647521972656, 0.0013141632080078125, 0.0158843994140625, -0.031951904296875, -0.04486083984375, 0.033447265625, -0.1337890625, -0.02423095703125, 0.007293701171875, 0.025238037109375, -0.005298614501953125, -0.035614013671875, 0.002101898193359375, 0.01215362548828125, -0.02630615234375, -0.0268096923828125, -0.0230712890625, -0.005840301513671875, 0.0283660888671875, -0.010040283203125, 0.0158538818359375, -0.0215301513671875, -0.0155487060546875, 0.01418304443359375, -0.00907135009765625, -0.024871826171875, -0.040802001953125, -0.05377197265625, -0.0672607421875, 0.003032684326171875, 0.0074005126953125, 0.0213470458984375, 0.005458831787109375, 0.035736083984375, 0.0007367134094238281, -0.0643310546875, -0.031982421875, 0.01263427734375, -0.03387451171875, 0.007045745849609375, 0.01041412353515625, -0.040863037109375, -0.017669677734375, -0.004364013671875, 0.04522705078125, 0.01251220703125, -0.0211944580078125, -0.0022258758544921875, -0.00164794921875, 0.0311431884765625, 0.0196075439453125, -0.054779052734375, -0.0092926025390625, 0.0180206298828125, -0.040283203125, -0.035980224609375, 0.01861572265625, -0.0146636962890625, -0.0212554931640625, -0.0124359130859375, 0.0011739730834960938, -0.018951416015625, 0.001079559326171875, -0.0216522216796875, 0.023712158203125, 0.011932373046875, 0.00930023193359375, -0.0131988525390625, 0.0228118896484375, 0.01097869873046875, 0.0003757476806640625, -0.0289154052734375, 0.017791748046875, -0.0304718017578125, -0.0280914306640625, -0.0201416015625, -0.007518768310546875, -0.0142364501953125, 0.0268096923828125, -0.01068115234375, -0.00783538818359375, 0.034423828125, 0.0111083984375, 0.0250244140625, -0.0032520294189453125, -0.026458740234375, 0.0030727386474609375, 0.06689453125, -0.048553466796875, -0.0008058547973632812, 0.033050537109375, 0.01378631591796875, -0.053497314453125, -0.0074920654296875, -0.08062744140625, -0.01555633544921875, -0.013031005859375, -0.0198822021484375, -0.03131103515625, -0.01033782958984375, 0.01296234130859375, -0.03802490234375, 0.01467132568359375, -0.040985107421875, -0.002193450927734375, -0.02325439453125, -0.004955291748046875, -0.016265869140625, -0.0164947509765625, -0.02813720703125, 0.01739501953125, -0.042205810546875, -0.0906982421875, -0.022064208984375, 0.004970550537109375, 0.07220458984375, -0.0004143714904785156, -0.0174560546875, -0.006198883056640625, 0.045318603515625, -0.0131072998046875, 0.031280517578125, -0.0247955322265625, 0.01294708251953125, 0.005413055419921875, -0.038238525390625, -0.0148162841796875, -0.0272369384765625, -0.00841522216796875, -0.06976318359375, -0.021087646484375, -0.08087158203125, -0.0572509765625, -0.01019287109375, -0.041534423828125, 0.002834320068359375, -0.045867919921875, -0.0006761550903320312, 0.017364501953125, 0.0120697021484375, 0.00960540771484375, -0.00429534912109375, 0.00809478759765625, -0.0401611328125, 0.032867431640625, 0.01155853271484375, -0.01187896728515625, 0.01129150390625, 0.061492919921875, 0.01036834716796875, -0.0203399658203125, -0.08636474609375, 0.028961181640625, 0.037567138671875, 0.0360107421875, 0.04376220703125, 0.050323486328125, 0.0002930164337158203, 0.0058746337890625, 0.0421142578125, -0.03826904296875, 0.04925537109375, -0.03240966796875, 0.03533935546875, -0.0391845703125, -0.0104522705078125, 0.009735107421875, 0.014617919921875, 0.057464599609375, 0.00039386749267578125, -0.0024566650390625, -0.0161590576171875, -0.015899658203125, 0.01212310791015625, -0.0518798828125, -0.0166473388671875, -0.05499267578125, 0.020599365234375, -0.0428466796875, 0.0440673828125, -0.002994537353515625, 0.001880645751953125, 0.058868408203125, 0.045928955078125, -0.0173187255859375, 0.024658203125, 0.018890380859375, 0.0259857177734375, 0.015777587890625, 0.04296875, 0.00400543212890625, -0.0141143798828125, 0.0004622936248779297, 0.1064453125, 0.0032100677490234375, -0.060699462890625, -0.0003962516784667969, -0.0187835693359375, 0.00650787353515625, 0.02850341796875, -0.006946563720703125, 0.037384033203125, -0.006072998046875, -0.040679931640625, -0.0009555816650390625, -0.034027099609375, -0.05029296875, -0.04937744140625, -0.0229949951171875, -0.03472900390625, 0.0004611015319824219, 0.0266876220703125, 0.029022216796875, -0.011871337890625, 0.018096923828125, -0.01361083984375, 0.044525146484375, 0.017578125, 0.022918701171875, -0.00547027587890625, 0.01053619384765625, 0.005634307861328125, 0.02008056640625, 0.00940704345703125, -0.02435302734375, 0.00846099853515625, 0.02593994140625, 0.032135009765625, 0.02642822265625, 0.004840850830078125, -0.01104736328125, -0.01454925537109375, -0.01174163818359375, 0.0018205642700195312, -0.00545501708984375, -0.0255279541015625, 0.006282806396484375, 0.002841949462890625, 0.00432586669921875, -0.033966064453125, -0.00771331787109375, 0.00762176513671875, 0.0228118896484375, 0.0240478515625, -0.008575439453125, -0.05572509765625, 0.0290985107421875, 0.053802490234375, 0.042327880859375, -0.0147857666015625, -0.03125, -0.003368377685546875, 0.0089111328125, -0.01271820068359375, 0.0013895034790039062, 0.00856781005859375, -0.0267333984375, 0.00824737548828125, -0.016326904296875, 0.005458831787109375, -0.037017822265625, 0.0306396484375, 0.01250457763671875, 0.00978851318359375, -0.00853729248046875, -0.0063934326171875, -0.04681396484375, -0.0330810546875, -0.01285552978515625, -0.0252227783203125, -0.054534912109375, -0.009857177734375, 0.00801849365234375, -0.007442474365234375, 0.0045166015625, -0.006683349609375, -0.01502227783203125, 0.0276641845703125, 0.00582122802734375, -0.01552581787109375, -0.033966064453125, 0.0200347900390625, 0.0016889572143554688, 0.017120361328125, -0.0174560546875, 0.0016908645629882812, 0.0302886962890625, -0.00910186767578125, 0.00934600830078125, -0.0294647216796875, -0.0130157470703125, -0.02471923828125, 0.0006351470947265625, 0.00551605224609375, 0.0235137939453125, -0.0087432861328125, 0.00574493408203125, -0.0196533203125, 0.01320648193359375, -0.02496337890625, 0.035369873046875, -0.0251007080078125, 0.0126495361328125, -0.006317138671875, 0.01284027099609375, 0.059661865234375, 0.0001615285873413086, -0.025909423828125, 0.0113983154296875, 0.018768310546875, 0.017364501953125, -0.0109100341796875, 0.003818511962890625, 0.034393310546875, 0.05181884765625, -0.037567138671875, 0.023223876953125, 0.0116729736328125, -0.012115478515625, 0.0278167724609375, -0.01210784912109375, -0.047271728515625, 0.005573272705078125, -0.0128173828125, -0.0174407958984375, 0.0013990402221679688, -0.0223846435546875, -0.005512237548828125, -0.01302337646484375, 0.0029582977294921875, 0.024505615234375, -0.0035572052001953125, 0.00013256072998046875, 0.01568603515625, -0.026275634765625, -0.0499267578125, -0.04168701171875, -0.007411956787109375, -0.03729248046875, 0.06475830078125, 0.03875732421875, -0.02203369140625, 0.0270843505859375, 0.004070281982421875, -0.005596160888671875, -0.00791168212890625, 0.044219970703125, 0.0106658935546875, -0.050079345703125, 0.023956298828125, 0.01580810546875, 0.0146026611328125, -0.0047454833984375, -0.00940704345703125, -0.01502227783203125, -0.032440185546875, -0.03759765625, -0.01299285888671875, -0.037994384765625, 0.004322052001953125, -0.0010957717895507812, -0.01255035400390625, -0.0220184326171875, 0.054595947265625, -0.054779052734375, 0.03668212890625, 0.028167724609375, -0.0230560302734375, -0.09112548828125, -0.020172119140625, 0.041015625, 0.0222015380859375, -0.0701904296875, 0.045196533203125, -0.0692138671875, -0.01259613037109375, -0.002902984619140625, -0.01210784912109375, 0.0214996337890625, -0.00574493408203125, -0.006618499755859375, 0.0308074951171875, 0.02423095703125, -0.002529144287109375, -0.0227203369140625, 0.028594970703125, -0.08880615234375, -0.0697021484375, 0.0029544830322265625, -0.07098388671875, -0.040130615234375, -0.039337158203125, -0.060882568359375, 0.10443115234375, -0.0201568603515625, 0.01177215576171875, 0.0047149658203125, 0.042083740234375, -0.017791748046875, 0.0275726318359375, 0.0160369873046875, 0.0308380126953125, -0.00797271728515625, -0.0171356201171875, 0.00591278076171875, 0.00962066650390625, -0.004276275634765625, 0.004974365234375, 0.038360595703125, 0.0121002197265625, -0.06500244140625, 0.0010528564453125, 0.05877685546875, 0.046417236328125, 0.01800537109375, 0.054473876953125, -0.0104522705078125, 0.00021660327911376953, 0.0298004150390625, 0.002239227294921875, 0.02984619140625, 0.01047515869140625, -0.0214080810546875, 0.025146484375, 0.00998687744140625, 0.0120086669921875, 0.01433563232421875, 0.015869140625, 0.0177154541015625, 0.0019435882568359375, 0.0116729736328125, -0.04412841796875, 0.022796630859375, 0.005313873291015625, 0.010986328125, -0.039794921875, 0.05206298828125, -0.03558349609375, 0.05047607421875, -0.038909912109375, -0.04052734375, 0.044158935546875, 0.0018491744995117188, -0.036834716796875, 0.04241943359375, -0.0181732177734375, 0.0217742919921875, 0.0168609619140625, 0.04791259765625, 0.034332275390625, 0.034698486328125, -0.0003955364227294922, 0.004764556884765625, 0.01108551025390625, 0.0589599609375, -0.038055419921875, -0.0224609375, 0.0165557861328125, 0.00330352783203125, -0.0029430389404296875, -0.004283905029296875, -0.00731658935546875, -0.001171112060546875, 0.040802001953125, 0.00679779052734375, -0.004337310791015625, -0.0154876708984375, -0.029296875, -0.01041412353515625, 0.04327392578125, 0.040679931640625, 0.027557373046875, -0.003475189208984375, -0.0095062255859375, -0.007080078125, 0.01995849609375, 0.0024929046630859375, 0.042999267578125, -0.012298583984375, -0.0027618408203125, -0.0014982223510742188, 0.07659912109375, 0.0164947509765625, -0.0122833251953125, -0.056060791015625, -0.09564208984375, 0.050262451171875, 0.0421142578125, 0.0389404296875, 0.045501708984375, 0.035980224609375, 0.08074951171875, 0.050537109375, 0.01032257080078125, 0.07830810546875, 0.0218048095703125, -0.0077667236328125, -0.0137176513671875, -0.03936767578125, -0.0164642333984375, -0.0321044921875, -0.011627197265625, 0.0268096923828125, -0.00803375244140625, -0.0208587646484375, -0.0037517547607421875, 0.0010824203491210938, -0.04974365234375, -0.0015230178833007812, -0.0095977783203125, 0.0171966552734375, -0.005786895751953125, -0.03558349609375, -0.0377197265625, 0.0457763671875, 0.033233642578125, -0.01038360595703125, 0.02777099609375, 0.00913238525390625, 0.0074462890625, 0.05865478515625, -0.0017137527465820312, -0.0038356781005859375, 0.02008056640625, 0.005462646484375, -0.033233642578125, 0.04034423828125, 0.012969970703125, -0.0216522216796875, -0.020782470703125, 0.0089874267578125, 0.037811279296875, 0.0022296905517578125, 0.031982421875, -0.004619598388671875, 0.01386260986328125, 0.04583740234375, -0.00511932373046875, 0.0132293701171875, 0.0239410400390625, -0.0012645721435546875, -0.026519775390625, 0.00982666015625, -0.007572174072265625, -0.014678955078125, -0.031890869140625, 0.0438232421875, -0.06378173828125, -0.015777587890625, -0.043609619140625, 0.028778076171875, -0.023284912109375, 0.019195556640625, -0.0269927978515625, -0.0718994140625, -0.04864501953125, 0.02777099609375, 0.007076263427734375, 0.031463623046875, -0.031951904296875, 0.00620269775390625, 0.0030040740966796875, -0.03875732421875, 0.0179595947265625, -0.03094482421875, 0.0185699462890625, 0.0249481201171875, 0.017608642578125, -0.054718017578125, -0.0010442733764648438, -0.0182952880859375, -0.0270538330078125, -0.0017080307006835938, 0.036163330078125, -0.001781463623046875, -0.0679931640625, -0.00881195068359375, 0.0372314453125, 0.03192138671875, -0.0047454833984375, 0.01422119140625, 0.01219940185546875, -0.016937255859375, 0.005523681640625, 0.0223541259765625, -0.026519775390625, -0.00638580322265625, -0.0223846435546875, 0.0031719207763671875, -0.0259246826171875, -0.053619384765625, -0.08990478515625, -0.021209716796875, 0.0259857177734375, -0.000006854534149169922, -0.013946533203125, 0.0255126953125, -0.026458740234375, -0.045684814453125, 0.004741668701171875, 0.01212310791015625, -0.0121917724609375, 0.00925445556640625, -0.0003802776336669922, -0.07635498046875, -0.0248260498046875, 0.085693359375, -0.02734375, -0.0017938613891601562, 0.006534576416015625, 0.001689910888671875, 0.0186767578125, 0.00206756591796875, -0.007080078125, 0.06024169921875, 0.0010890960693359375, -0.00690460205078125, 0.005321502685546875, -0.01947021484375, -0.0293426513671875, -0.06890869140625, 0.039886474609375, -0.10186767578125, -0.044219970703125, -0.031646728515625, 0.00289154052734375, 0.012725830078125, -0.035675048828125, -0.0667724609375, 0.07177734375, -0.02520751953125, -0.0166168212890625, -0.08514404296875, 0.0108795166015625, -0.00470733642578125, 0.03240966796875, -0.0250396728515625, -0.0198516845703125, -0.0225372314453125, 0.0528564453125, 0.004947662353515625, 0.01114654541015625, -0.00240325927734375, 0.033233642578125, 0.0288848876953125, 0.07403564453125, 0.05145263671875, -0.01464080810546875, -0.01102447509765625, 0.0008096694946289062, 0.0194854736328125, 0.038330078125, -0.0227813720703125, 0.011444091796875, 0.005886077880859375, -0.0140380859375, -0.035430908203125, -0.00283050537109375, -0.0273284912109375, 0.025970458984375, 0.074951171875, 0.0914306640625, 0.0226287841796875, -0.07012939453125, -0.049774169921875, -0.07073974609375, -0.021881103515625, -0.033599853515625, 0.022552490234375, -0.0849609375, 0.002132415771484375, 0.0048065185546875, -0.002597808837890625, 0.017608642578125, 0.019744873046875, -0.01029205322265625, 0.0054779052734375, 0.0294189453125, -0.013885498046875, -0.05377197265625, -0.0190582275390625, 0.066650390625, -0.033599853515625, -0.002838134765625, 0.0190887451171875, 0.003932952880859375, 0.0230255126953125, 0.033111572265625, -0.00827789306640625, -0.052642822265625, 0.0029582977294921875, 0.051177978515625, -0.01209259033203125, 0.01219940185546875, -0.04046630859375, -0.024993896484375, -0.007198333740234375, 0.017242431640625, 0.00714874267578125, 0.038787841796875, 0.00167083740234375, 0.01361083984375, 0.0176849365234375, -0.01131439208984375, 0.0020751953125, 0.027496337890625, -0.004367828369140625, 0.03460693359375, -0.052032470703125, -0.0017547607421875, -0.032989501953125, -0.0184783935546875, 0.0019063949584960938, 0.0017652511596679688, 0.0200042724609375, -0.0457763671875, 0.034210205078125, 0.026641845703125, 0.01335906982421875, 0.0225067138671875 ]
38e914f607515ad0af06d273ecab0eb2a254f20e
Wordpress Stackexchange Q: What are the Oembed Links For? My copy of WordPress outputs two <link/> tags in the header of (nearly?) every page. They look like this. <link rel="alternate" type="application/json+oembed" href="http://example.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fexample.com%2Fbust%2F" /> <link rel="alternate" type="text/xml+oembed" href="http://example.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fexample.com%2Fbust%2F&#038;format=xml" /> What are these oembed links for? Do they need to be here for WordPress to do things? Or are they here so other sites can better consume my content? What would be the consequences if I removed them? A: Those are links for the wordpress "self" oEmbed. It provides the URLs needed to enable embeding the content of the wordpress site in other sites and they are resuired for oEmbed Discover You are right that they are for other sites to consume your content, and if you don't care about it, just remove it. IMHO it is noting bad by itself, but if you are dedicating time for some cleanup, you should probably clean them as well. https://wordpress.org/plugins/disable-embeds/
Q: What are the Oembed Links For? My copy of WordPress outputs two <link/> tags in the header of (nearly?) every page. They look like this. <link rel="alternate" type="application/json+oembed" href="http://example.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fexample.com%2Fbust%2F" /> <link rel="alternate" type="text/xml+oembed" href="http://example.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fexample.com%2Fbust%2F&#038;format=xml" /> What are these oembed links for? Do they need to be here for WordPress to do things? Or are they here so other sites can better consume my content? What would be the consequences if I removed them? A: Those are links for the wordpress "self" oEmbed. It provides the URLs needed to enable embeding the content of the wordpress site in other sites and they are resuired for oEmbed Discover You are right that they are for other sites to consume your content, and if you don't care about it, just remove it. IMHO it is noting bad by itself, but if you are dedicating time for some cleanup, you should probably clean them as well. https://wordpress.org/plugins/disable-embeds/
wordpress
{ "language": "en", "length": 154, "provenance": "stackexchange_00019.jsonl.gz:469116", "question_score": "9", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/242180" }
[ 0.09576416015625, 0.00856781005859375, 0.037139892578125, -0.01555633544921875, 0.0160369873046875, -0.0469970703125, 0.0826416015625, -0.04443359375, -0.0849609375, 0.015625, 0.01031494140625, 0.00872802734375, 0.00978851318359375, -0.04974365234375, 0.059906005859375, -0.041351318359375, 0.0174102783203125, 0.007396697998046875, 0.0291748046875, 0.0011701583862304688, -0.01096343994140625, 0.01242828369140625, 0.040069580078125, -0.01593017578125, 0.00693511962890625, -0.06768798828125, 0.09735107421875, -0.02349853515625, 0.007965087890625, -0.04205322265625, 0.01258087158203125, 0.0204620361328125, 0.0171966552734375, 0.033935546875, -0.06298828125, -0.060333251953125, -0.005847930908203125, 0.01216888427734375, -0.014892578125, 0.020782470703125, 0.014434814453125, -0.02972412109375, 0.05914306640625, -0.022918701171875, 0.020294189453125, 0.0008182525634765625, 0.0222015380859375, -0.0452880859375, -0.01525115966796875, -0.0304412841796875, 0.0136566162109375, -0.0139923095703125, 0.045013427734375, -0.026702880859375, -0.023162841796875, -0.0250701904296875, 0.024810791015625, 0.0224609375, 0.026947021484375, -0.0106048583984375, -0.03350830078125, 0.0230560302734375, -0.005645751953125, -0.01910400390625, 0.03228759765625, -0.0292816162109375, 0.04083251953125, 0.04345703125, -0.07373046875, 0.014739990234375, 0.052581787109375, -0.028411865234375, -0.0028133392333984375, 0.00951385498046875, -0.060577392578125, 0.031585693359375, 0.03558349609375, 0.01509857177734375, 0.01654052734375, -0.01983642578125, 0.0276641845703125, -0.007099151611328125, -0.01409912109375, 0.01111602783203125, -0.005428314208984375, 0.025848388671875, -0.004451751708984375, -0.02593994140625, -0.006717681884765625, 0.00482940673828125, -0.0242919921875, 0.0209503173828125, 0.00951385498046875, -0.0047149658203125, -0.0582275390625, 0.0218048095703125, 0.060577392578125, 0.038482666015625, -0.0038204193115234375, -0.00812530517578125, 0.019134521484375, -0.05718994140625, 0.031280517578125, -0.039581298828125, 0.021697998046875, 0.010284423828125, -0.004421234130859375, -0.0167236328125, 0.04736328125, -0.001941680908203125, -0.0197906494140625, 0.0738525390625, 0.0028324127197265625, -0.01751708984375, -0.013824462890625, -0.006053924560546875, -0.0300750732421875, -0.00921630859375, -0.0009784698486328125, -0.0257720947265625, -0.00829315185546875, 0.0124664306640625, 0.01258087158203125, 0.0048828125, 0.01490020751953125, 0.0189666748046875, -0.0003094673156738281, -0.02655029296875, -0.045562744140625, 0.0347900390625, -0.0178680419921875, -0.01500701904296875, 0.05126953125, 0.075927734375, 0.027099609375, -0.0277557373046875, 0.03375244140625, -0.0144500732421875, 0.0013751983642578125, 0.036865234375, -0.02093505859375, -0.05987548828125, -0.01279449462890625, -0.0018367767333984375, -0.00891876220703125, -0.0282440185546875, 0.0010137557983398438, 0.039337158203125, 0.0162811279296875, 0.0021724700927734375, -0.0104217529296875, 0.005279541015625, 0.04412841796875, -0.0244140625, 0.0164031982421875, -0.056915283203125, 0.0249176025390625, -0.03472900390625, 0.012969970703125, -0.0274200439453125, -0.054412841796875, -0.010772705078125, 0.055938720703125, -0.00843048095703125, -0.0240020751953125, 0.00786590576171875, -0.00786590576171875, -0.005031585693359375, 0.015716552734375, 0.0214080810546875, -0.0022182464599609375, -0.0662841796875, -0.02606201171875, 0.01043701171875, 0.0131683349609375, 0.06463623046875, 0.025604248046875, -0.02471923828125, 0.03448486328125, 0.03900146484375, -0.0035343170166015625, -0.00879669189453125, 0.08563232421875, -0.0517578125, -0.0762939453125, 0.05059814453125, 0.0111541748046875, 0.1016845703125, 0.02362060546875, 0.02618408203125, 0.08294677734375, -0.01422882080078125, 0.024322509765625, 0.0243682861328125, -0.005382537841796875, -0.04241943359375, -0.0445556640625, 0.00380706787109375, -0.032135009765625, 0.0006642341613769531, 0.00902557373046875, 0.019927978515625, -0.04132080078125, 0.05224609375, -0.043975830078125, -0.007061004638671875, -0.0137481689453125, 0.003997802734375, -0.0021381378173828125, 0.00978851318359375, 0.01267242431640625, -0.01457977294921875, -0.01458740234375, -0.0070343017578125, -0.01094818115234375, 0.0227203369140625, 0.009063720703125, 0.01947021484375, 0.0035610198974609375, 0.01303863525390625, -0.002971649169921875, -0.01161956787109375, -0.01470947265625, 0.016082763671875, 0.018463134765625, -0.0174407958984375, -0.0126953125, -0.0024738311767578125, -0.019805908203125, 0.0277099609375, -0.0523681640625, 0.0279998779296875, 0.060791015625, 0.03076171875, -0.029815673828125, 0.012725830078125, -0.01373291015625, -0.06976318359375, -0.0184783935546875, 0.06402587890625, 0.0440673828125, -0.00982666015625, 0.028656005859375, 0.0513916015625, 0.04266357421875, -0.0198822021484375, 0.01137542724609375, 0.00518798828125, 0.005886077880859375, -0.0182342529296875, -0.0198516845703125, -0.0274505615234375, 0.064697265625, -0.033203125, 0.0081329345703125, 0.053680419921875, -0.033966064453125, -0.0122528076171875, -0.0166473388671875, 0.01904296875, -0.022247314453125, -0.0029239654541015625, 0.035919189453125, -0.01885986328125, 0.0889892578125, -0.03564453125, 0.068115234375, 0.047943115234375, -0.0081329345703125, -0.021636962890625, 0.00899505615234375, 0.0211029052734375, 0.00007939338684082031, 0.0279388427734375, 0.07568359375, -0.046661376953125, -0.033203125, -0.00870513916015625, 0.005054473876953125, 0.01282501220703125, 0.0020771026611328125, -0.0067596435546875, -0.005718231201171875, -0.0142364501953125, 0.0092620849609375, -0.058624267578125, 0.020111083984375, 0.0200958251953125, -0.0322265625, -0.011260986328125, 0.01453399658203125, 0.007648468017578125, -0.0202178955078125, 0.0171051025390625, -0.004665374755859375, -0.011138916015625, -0.0131072998046875, -0.07696533203125, 0.06640625, -0.0789794921875, 0.033233642578125, 0.05242919921875, -0.0312347412109375, 0.0115203857421875, -0.00408935546875, -0.005924224853515625, -0.006580352783203125, -0.0008707046508789062, -0.0267181396484375, 0.0146331787109375, -0.08636474609375, -0.0285491943359375, 0.012359619140625, 0.0009908676147460938, -0.021331787109375, -0.05645751953125, -0.044769287109375, -0.01302337646484375, -0.09735107421875, -0.0249481201171875, 0.038238525390625, -0.00006562471389770508, 0.0259552001953125, 0.0462646484375, 0.005558013916015625, -0.05322265625, 0.081298828125, 0.0050048828125, 0.041717529296875, -0.059173583984375, -0.04730224609375, -0.0523681640625, -0.08648681640625, 0.005168914794921875, 0.0147705078125, 0.00594329833984375, 0.022735595703125, -0.00905609130859375, 0.017364501953125, 0.00817108154296875, 0.056549072265625, 0.0118865966796875, -0.0173492431640625, -0.0017309188842773438, -0.0003104209899902344, 0.0010814666748046875, -0.037261962890625, 0.01433563232421875, 0.0247802734375, 0.006591796875, -0.0251312255859375, -0.0116119384765625, -0.0089874267578125, 0.005466461181640625, 0.0240020751953125, -0.006626129150390625, -0.00888824462890625, 0.0133056640625, 0.004375457763671875, -0.03961181640625, -0.0035762786865234375, -0.02410888671875, -0.03076171875, 0.01557159423828125, 0.040435791015625, -0.0114593505859375, -0.046295166015625, 0.01012420654296875, 0.012115478515625, -0.0182647705078125, 0.033966064453125, -0.024017333984375, 0.007389068603515625, -0.0149688720703125, 0.02532958984375, -0.0301361083984375, 0.039825439453125, -0.009552001953125, 0.00693511962890625, 0.004924774169921875, -0.0059967041015625, -0.0289154052734375, 0.041168212890625, -0.040863037109375, -0.0207672119140625, 0.0264739990234375, -0.037689208984375, 0.01238250732421875, -0.008819580078125, -0.01224517822265625, -0.00627899169921875, 0.068115234375, -0.00395965576171875, -0.0201263427734375, 0.002079010009765625, 0.0016584396362304688, -0.007785797119140625, 0.0245361328125, -0.02374267578125, -0.0130462646484375, -0.0347900390625, 0.031768798828125, -0.006275177001953125, -0.00330352783203125, -0.024871826171875, 0.0292510986328125, -0.0135040283203125, -0.0138092041015625, 0.0103302001953125, -0.01092529296875, -0.029327392578125, 0.0355224609375, -0.056915283203125, 0.015716552734375, -0.018890380859375, -0.0110015869140625, -0.0316162109375, -0.01511383056640625, 0.030731201171875, 0.039520263671875, -0.006412506103515625, -0.022552490234375, -0.01403045654296875, 0.0294036865234375, 0.017120361328125, 0.0296173095703125, -0.004032135009765625, -0.0209197998046875, 0.023101806640625, 0.00627899169921875, 0.0174102783203125, -0.00799560546875, -0.0101318359375, 0.0057525634765625, -0.01445770263671875, 0.016876220703125, 0.0286407470703125, -0.0220794677734375, 0.060333251953125, -0.0289764404296875, -0.058563232421875, -0.037384033203125, 0.017547607421875, 0.040130615234375, 0.01508331298828125, 0.0202484130859375, -0.0479736328125, -0.04241943359375, 0.00991058349609375, 0.0094451904296875, -0.015167236328125, 0.0297088623046875, -0.00811004638671875, 0.021820068359375, -0.022796630859375, 0.00726318359375, 0.0261688232421875, 0.0213470458984375, 0.019134521484375, 0.030731201171875, 0.020660400390625, 0.00870513916015625, 0.01082611083984375, -0.010406494140625, 0.038848876953125, -0.021820068359375, 0.050933837890625, 0.006145477294921875, -0.007137298583984375, 0.022918701171875, 0.0249176025390625, -0.0364990234375, 0.01197052001953125, 0.0005369186401367188, -0.001461029052734375, 0.029815673828125, 0.0005021095275878906, -0.0009741783142089844, -0.00933837890625, -0.0018606185913085938, 0.0175018310546875, -0.0006685256958007812, 0.00753021240234375, 0.0567626953125, 0.04437255859375, -0.0110321044921875, 0.014923095703125, 0.0158233642578125, 0.01474761962890625, -0.00096893310546875, -0.025421142578125, -0.01297760009765625, 0.02197265625, 0.016998291015625, 0.0052490234375, 0.004680633544921875, -0.001842498779296875, 0.043121337890625, -0.01258087158203125, -0.06134033203125, 0.007320404052734375, -0.01194000244140625, -0.0029697418212890625, 0.035400390625, 0.0281219482421875, 0.0263824462890625, 0.0321044921875, 0.0196685791015625, -0.003742218017578125, 0.019744873046875, 0.03570556640625, -0.0219268798828125, -0.024932861328125, -0.0016613006591796875, -0.007110595703125, 0.01430511474609375, 0.0099029541015625, 0.01201629638671875, 0.001430511474609375, -0.0277099609375, 0.037261962890625, 0.0007061958312988281, 0.039276123046875, -0.004085540771484375, -0.00013387203216552734, -0.0021228790283203125, 0.02288818359375, -0.007472991943359375, -0.038818359375, -0.0170745849609375, 0.031768798828125, 0.038177490234375, -0.0221710205078125, -0.0251007080078125, 0.00481414794921875, -0.01293182373046875, -0.010986328125, 0.04486083984375, -0.0009732246398925781, -0.046783447265625, -0.0200042724609375, -0.0020542144775390625, 0.0306396484375, -0.02520751953125, -0.00701904296875, 0.005126953125, 0.0278472900390625, 0.006328582763671875, 0.0242919921875, -0.07818603515625, 0.0292816162109375, 0.0552978515625, 0.0164642333984375, -0.019683837890625, -0.0188751220703125, -0.0953369140625, -0.003993988037109375, -0.0195770263671875, 0.01251220703125, 0.0401611328125, -0.0523681640625, 0.035980224609375, 0.01274871826171875, -0.031494140625, 0.01320648193359375, 0.0265960693359375, 0.0215301513671875, 0.01654052734375, -0.0882568359375, 0.0012254714965820312, -0.03515625, -0.0168304443359375, -0.01947021484375, -0.0177001953125, -0.0628662109375, -0.00804901123046875, -0.0092010498046875, 0.00479888916015625, 0.003772735595703125, 0.0269622802734375, -0.0165863037109375, 0.04071044921875, 0.00682830810546875, 0.03851318359375, -0.028076171875, 0.06964111328125, 0.021575927734375, 0.0599365234375, 0.013671875, 0.058441162109375, -0.0011682510375976562, -0.03900146484375, -0.00209808349609375, -0.0498046875, -0.0147705078125, 0.00800323486328125, -0.01483917236328125, 0.033782958984375, 0.0260467529296875, 0.0025730133056640625, 0.00597381591796875, -0.0029888153076171875, -0.0006823539733886719, -0.01340484619140625, 0.06378173828125, -0.0038776397705078125, 0.0203857421875, 0.032379150390625, -0.00598907470703125, 0.046630859375, -0.004589080810546875, 0.0052032470703125, -0.02191162109375, -0.016357421875, -0.00896453857421875, 0.041259765625, -0.023406982421875, 0.035369873046875, 0.08978271484375, 0.017425537109375, 0.0670166015625, 0.0278472900390625, 0.01477813720703125, 0.016082763671875, 0.027862548828125, -0.0221710205078125, -0.03546142578125, -0.01338958740234375, -0.01238250732421875, 0.01239013671875, 0.0053253173828125, -0.00555419921875, 0.0204925537109375, 0.01446533203125, 0.03350830078125, -0.048248291015625, 0.033355712890625, -0.0302886962890625, -0.007648468017578125, 0.07135009765625, -0.00815582275390625, -0.01250457763671875, -0.039154052734375, 0.014373779296875, 0.02142333984375, -0.01038360595703125, 0.0010986328125, 0.01178741455078125, -0.01396942138671875, 0.0288238525390625, 0.043365478515625, 0.0021228790283203125, -0.032928466796875, -0.0208740234375, -0.02032470703125, -0.016998291015625, -0.0282440185546875, -0.01493072509765625, -0.023468017578125, -0.0211181640625, -0.0132598876953125, 0.0185546875, -0.029022216796875, 0.047882080078125, 0.0032939910888671875, 0.0041656494140625, 0.0391845703125, 0.042938232421875, -0.0032215118408203125, 0.00115203857421875, 0.01459503173828125, 0.00841522216796875, -0.015228271484375, -0.018280029296875, 0.01371002197265625, 0.03314208984375, -0.035430908203125, 0.0204925537109375, -0.02447509765625, -0.01093292236328125, -0.0149383544921875, -0.0009298324584960938, 0.08062744140625, -0.039703369140625, -0.005413055419921875, 0.034820556640625, 0.049163818359375, -0.0162200927734375, -0.06085205078125, 0.030364990234375, -0.07403564453125, -0.0007243156433105469, -0.04327392578125, 0.00506591796875, 0.01561737060546875, -0.062225341796875, -0.09002685546875, 0.1015625, -0.0233154296875, 0.052764892578125, -0.016815185546875, 0.033355712890625, -0.0106964111328125, 0.0099639892578125, -0.02392578125, 0.08795166015625, 0.03369140625, 0.0253448486328125, 0.003841400146484375, 0.0013761520385742188, 0.0258941650390625, 0.0026092529296875, 0.048614501953125, 0.0218505859375, 0.0015611648559570312, -0.0276641845703125, -0.01323699951171875, 0.0262603759765625, -0.0298614501953125, 0.0072021484375, -0.01947021484375, 0.0213775634765625, -0.00728607177734375, -0.022308349609375, 0.01690673828125, -0.042266845703125, -0.047698974609375, 0.00847625732421875, 0.0299072265625, 0.023345947265625, 0.010162353515625, 0.00463104248046875, -0.0394287109375, 0.0181732177734375, 0.02667236328125, 0.00786590576171875, 0.00811767578125, 0.0224609375, 0.033966064453125, -0.0304107666015625, 0.01268768310546875, -0.033447265625, 0.0562744140625, 0.0022487640380859375, 0.0229034423828125, 0.039825439453125, 0.0116424560546875, 0.045196533203125, -0.0190277099609375, 0.0079345703125, 0.00804901123046875, -0.004878997802734375, 0.039825439453125, 0.0347900390625, 0.057708740234375, -0.034210205078125, -0.0791015625, 0.037139892578125, 0.051239013671875, 0.00623321533203125, -0.0543212890625, 0.0064239501953125, -0.005336761474609375, 0.0010576248168945312, -0.0003829002380371094, 0.002910614013671875, -0.07501220703125, -0.016021728515625, 0.0185546875, 0.01375579833984375, 0.0081024169921875, -0.031768798828125, 0.007781982421875, 0.0673828125, -0.001617431640625, 0.043701171875, -0.043365478515625, -0.01009368896484375, 0.01436614990234375, 0.028594970703125, 0.045257568359375, 0.0202789306640625, 0.06134033203125, -0.02044677734375, -0.019989013671875, 0.04400634765625, 0.0171966552734375, -0.0017175674438476562, -0.041107177734375, -0.046783447265625, 0.032318115234375, 0.03070068359375, 0.04638671875, 0.0019741058349609375, 0.00251007080078125, -0.0196685791015625, -0.0269927978515625, 0.0212554931640625, 0.0284881591796875, -0.0230712890625, 0.00787353515625, -0.05340576171875, 0.0303192138671875, 0.0184326171875, 0.01445770263671875, 0.011322021484375, -0.031341552734375, 0.052978515625, -0.024261474609375, 0.041961669921875, -0.00994110107421875, -0.034271240234375, -0.005031585693359375, -0.0399169921875, 0.0160675048828125, -0.02227783203125, -0.047698974609375, -0.004856109619140625, -0.0257568359375, 0.01184844970703125, 0.0149078369140625, 0.0223236083984375, -0.00287628173828125, 0.030242919921875, 0.0113983154296875, 0.01508331298828125, 0.0162506103515625, -0.04119873046875, 0.0216522216796875, 0.0247955322265625, 0.01323699951171875, 0.0262451171875, 0.0074462890625, 0.00437164306640625, 0.022430419921875, 0.0178375244140625, 0.005039215087890625, 0.056854248046875, -0.0293731689453125, 0.0071868896484375, -0.020965576171875, -0.025054931640625, 0.01439666748046875, 0.0171051025390625, -0.061676025390625, 0.0301513671875, 0.0178070068359375, -0.015350341796875, -0.0699462890625, 0.059295654296875, -0.00963592529296875, 0.0204620361328125, 0.055908203125, -0.0244293212890625, 0.007717132568359375, 0.0169830322265625, 0.049591064453125, 0.0012025833129882812, -0.045318603515625, 0.0017213821411132812, 0.0400390625, -0.006977081298828125, 0.0323486328125, -0.00806427001953125, 0.051513671875, 0.0404052734375, -0.007129669189453125, -0.00777435302734375, -0.024078369140625, 0.00719451904296875, 0.0273284912109375, 0.0538330078125, -0.0174560546875, 0.022613525390625, -0.00804901123046875, 0.002902984619140625, 0.024505615234375, 0.0205841064453125, 0.0156097412109375, -0.048248291015625, -0.03363037109375, 0.01480865478515625, -0.003108978271484375, -0.034027099609375, -0.00806427001953125, 0.03570556640625, -0.0199737548828125, 0.0163116455078125, 0.0198822021484375, -0.01947021484375, -0.023590087890625, 0.0002722740173339844, 0.0090179443359375, -0.032867431640625, -0.023406982421875, -0.05853271484375, -0.00922393798828125, 0.038787841796875, 0.0189666748046875, -0.047271728515625, 0.0294647216796875, -0.00787353515625, 0.0021266937255859375, -0.003253936767578125, 0.032379150390625, -0.0511474609375, -0.041168212890625, -0.0220489501953125, -0.07623291015625, -0.0467529296875, 0.1038818359375, -0.0286712646484375, 0.0224151611328125, 0.0294036865234375, -0.0269927978515625, 0.035980224609375, 0.0033969879150390625, 0.035369873046875, 0.05950927734375, -0.0158843994140625, -0.028045654296875, -0.0200653076171875, -0.0028476715087890625, -0.004634857177734375, -0.01494598388671875, 0.00705718994140625, -0.04107666015625, -0.0484619140625, -0.01186370849609375, -0.01555633544921875, -0.0117340087890625, -0.03857421875, -0.059326171875, 0.05059814453125, 0.0010051727294921875, -0.028350830078125, 0.0006427764892578125, -0.03509521484375, -0.022979736328125, 0.01291656494140625, -0.01258087158203125, 0.0107879638671875, -0.0248260498046875, 0.045562744140625, -0.0118560791015625, 0.0052947998046875, -0.014068603515625, -0.01131439208984375, -0.01018524169921875, 0.03533935546875, 0.045013427734375, -0.034820556640625, 0.0034942626953125, -0.003711700439453125, 0.036224365234375, 0.047821044921875, -0.017486572265625, 0.06494140625, -0.0023136138916015625, -0.01413726806640625, 0.0186004638671875, 0.036865234375, 0.004795074462890625, -0.00379180908203125, -0.0020923614501953125, -0.021240234375, -0.00927734375, 0.006214141845703125, -0.0226593017578125, 0.0250701904296875, -0.0159149169921875, -0.018646240234375, 0.01030731201171875, -0.056610107421875, -0.01158905029296875, -0.0250091552734375, 0.00024187564849853516, -0.0032329559326171875, -0.039794921875, -0.041778564453125, -0.01531982421875, -0.031890869140625, 0.00823974609375, -0.015350341796875, 0.040985107421875, 0.0111083984375, -0.0390625, -0.0165863037109375, 0.001766204833984375, -0.025970458984375, -0.0145721435546875, -0.044219970703125, -0.0155792236328125, -0.04541015625, 0.0014734268188476562, 0.039947509765625, -0.01611328125, 0.06982421875, -0.03533935546875, -0.02947998046875, -0.01319122314453125, 0.02142333984375, 0.0010814666748046875, 0.0298919677734375, -0.040771484375, 0.030120849609375, 0.00946807861328125, 0.0201416015625, -0.0360107421875, 0.00698089599609375, -0.04156494140625, 0.039337158203125, -0.043701171875, 0.0160369873046875, 0.0214691162109375, 0.00438690185546875, 0.0206298828125, 0.01119232177734375, -0.0274810791015625, -0.0182952880859375, 0.006305694580078125, -0.035064697265625, -0.02423095703125, 0.004547119140625 ]
c85af4a2ead9afa12b4d7048f740be4f9f5485e7
Wordpress Stackexchange Q: WordPress Custom Post Type is Matching on Partial Slug I'm having a really weird issue. For example, there is a custom post 'people'. The post title is the name of the person and pretty permalinks are enabled. Say we have a person custom post with the name of 'John Smith' with a slug of 'john-smith'. If I visit the URL example.com/jo, it still redirects me to the URL example.com/john-smith. I've never seen this behaviour in WordPress before. Does anyone know what might be causing it? A: Add this code in your active theme's functions.php file and it should stop Wordpress guessing the source of the incomplete slug: function no_redirect_guess_404_permalink( $header ){ global $wp_query; if( is_404() ) unset( $wp_query->query_vars['name'] ); return $header; } add_filter( 'status_header', 'no_redirect_guess_404_permalink' ); Original answer here
Q: WordPress Custom Post Type is Matching on Partial Slug I'm having a really weird issue. For example, there is a custom post 'people'. The post title is the name of the person and pretty permalinks are enabled. Say we have a person custom post with the name of 'John Smith' with a slug of 'john-smith'. If I visit the URL example.com/jo, it still redirects me to the URL example.com/john-smith. I've never seen this behaviour in WordPress before. Does anyone know what might be causing it? A: Add this code in your active theme's functions.php file and it should stop Wordpress guessing the source of the incomplete slug: function no_redirect_guess_404_permalink( $header ){ global $wp_query; if( is_404() ) unset( $wp_query->query_vars['name'] ); return $header; } add_filter( 'status_header', 'no_redirect_guess_404_permalink' ); Original answer here
wordpress
{ "language": "en", "length": 130, "provenance": "stackexchange_00019.jsonl.gz:469161", "question_score": "5", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/242305" }
[ 0.0810546875, -0.007720947265625, 0.005031585693359375, -0.0294189453125, 0.01189422607421875, -0.0288238525390625, 0.05194091796875, -0.034698486328125, -0.043487548828125, 0.016876220703125, 0.03643798828125, 0.0271148681640625, 0.01934814453125, -0.060302734375, 0.0604248046875, 0.0291748046875, 0.03497314453125, -0.004421234130859375, 0.014617919921875, -0.0259552001953125, -0.015899658203125, -0.017547607421875, 0.03375244140625, 0.0290374755859375, 0.036163330078125, 0.004058837890625, 0.057464599609375, -0.02264404296875, 0.036285400390625, 0.0003986358642578125, 0.035491943359375, -0.045867919921875, 0.039764404296875, -0.01474761962890625, -0.0014200210571289062, 0.048828125, 0.006175994873046875, 0.00611114501953125, 0.007633209228515625, 0.01727294921875, 0.005123138427734375, 0.000743865966796875, -0.01165771484375, 0.05303955078125, -0.0265350341796875, -0.06072998046875, 0.0139923095703125, -0.0460205078125, 0.023284912109375, 0.00567626953125, -0.0142059326171875, 0.00856781005859375, 0.002056121826171875, -0.0271453857421875, -0.008880615234375, -0.015289306640625, 0.0048370361328125, -0.00799560546875, 0.0090789794921875, -0.003276824951171875, -0.01116943359375, 0.0244598388671875, 0.0115203857421875, 0.0110015869140625, -0.0302581787109375, 0.01090240478515625, -0.0277252197265625, 0.01108551025390625, -0.01183319091796875, -0.020416259765625, 0.0068359375, -0.0246429443359375, 0.004482269287109375, 0.0023040771484375, -0.0118255615234375, -0.051971435546875, 0.01494598388671875, -0.049041748046875, -0.0023288726806640625, 0.0312042236328125, 0.0148773193359375, -0.044403076171875, 0.00772857666015625, -0.00965118408203125, 0.0177459716796875, 0.034454345703125, -0.0225372314453125, -0.01428985595703125, -0.02984619140625, -0.041595458984375, -0.022979736328125, -0.035980224609375, -0.04571533203125, -0.00759124755859375, 0.00032830238342285156, -0.03173828125, 0.029388427734375, 0.027099609375, 0.0034122467041015625, 0.005706787109375, 0.004718780517578125, -0.048126220703125, 0.03900146484375, -0.039154052734375, 0.00337982177734375, -0.003017425537109375, 0.0140838623046875, 0.046875, 0.06561279296875, 0.0239105224609375, 0.0014896392822265625, 0.05108642578125, -0.01215362548828125, -0.004039764404296875, -0.031768798828125, 0.02032470703125, -0.036834716796875, -0.01222991943359375, -0.0225677490234375, 0.031768798828125, -0.0006732940673828125, 0.02447509765625, 0.035797119140625, -0.006847381591796875, 0.005321502685546875, 0.01378631591796875, 0.0009937286376953125, -0.0634765625, 0.00984954833984375, 0.0226898193359375, -0.029449462890625, -0.003292083740234375, 0.04974365234375, 0.02801513671875, 0.0024852752685546875, -0.0218353271484375, 0.0032634735107421875, -0.01806640625, -0.01084136962890625, 0.00524139404296875, 0.00438690185546875, -0.0229644775390625, -0.007350921630859375, -0.009429931640625, 0.0282440185546875, 0.0341796875, 0.00856781005859375, 0.0182342529296875, 0.00823211669921875, -0.01274871826171875, -0.0017786026000976562, -0.055267333984375, 0.055877685546875, -0.0054473876953125, -0.007625579833984375, -0.0263824462890625, -0.01549530029296875, -0.0158538818359375, -0.015380859375, -0.004520416259765625, 0.022125244140625, -0.0033664703369140625, -0.0089874267578125, -0.042266845703125, -0.0682373046875, -0.0015106201171875, -0.0223388671875, -0.01629638671875, 0.0153350830078125, -0.002422332763671875, 0.035064697265625, 0.034027099609375, -0.0263519287109375, -0.010345458984375, 0.01410675048828125, -0.03143310546875, 0.038970947265625, 0.029876708984375, -0.0242767333984375, 0.058563232421875, 0.01087188720703125, -0.035308837890625, 0.043914794921875, -0.039947509765625, -0.08001708984375, 0.0577392578125, 0.0269317626953125, 0.088134765625, -0.0264739990234375, 0.01012420654296875, 0.06976318359375, 0.034088134765625, -0.06060791015625, 0.0225677490234375, -0.0210418701171875, -0.038360595703125, 0.03289794921875, -0.02276611328125, 0.0014200210571289062, 0.037139892578125, -0.021820068359375, 0.00543975830078125, -0.020111083984375, 0.0242156982421875, -0.05621337890625, 0.0213775634765625, -0.0330810546875, 0.0377197265625, 0.016815185546875, 0.03704833984375, 0.020660400390625, 0.01354217529296875, -0.049407958984375, 0.03326416015625, -0.0196533203125, 0.0196685791015625, 0.0051422119140625, 0.0190887451171875, -0.0303955078125, 0.0023403167724609375, -0.034454345703125, -0.03802490234375, -0.039337158203125, 0.043212890625, 0.0435791015625, 0.04058837890625, -0.034027099609375, 0.003963470458984375, 0.01267242431640625, 0.0251007080078125, -0.051422119140625, 0.0263519287109375, 0.0153961181640625, -0.019775390625, -0.06396484375, 0.015777587890625, -0.031402587890625, 0.022918701171875, -0.036651611328125, 0.044921875, 0.0308685302734375, 0.019805908203125, -0.0198822021484375, -0.017913818359375, 0.045928955078125, -0.0179443359375, 0.021240234375, -0.023284912109375, 0.010284423828125, 0.040008544921875, 0.003509521484375, 0.002124786376953125, 0.0088348388671875, -0.028839111328125, 0.00824737548828125, 0.0257110595703125, 0.00649261474609375, 0.01396942138671875, 0.018646240234375, 0.01555633544921875, -0.01263427734375, -0.0008535385131835938, 0.0009627342224121094, -0.0162811279296875, -0.01050567626953125, -0.0013647079467773438, 0.006748199462890625, 0.0175323486328125, 0.00009864568710327148, -0.014617919921875, 0.00762939453125, 0.01128387451171875, 0.01123046875, 0.0073089599609375, 0.09161376953125, -0.02960205078125, -0.03900146484375, -0.0184783935546875, 0.04241943359375, 0.00514984130859375, -0.00792694091796875, -0.0013036727905273438, 0.003116607666015625, -0.01032257080078125, 0.0213775634765625, -0.05224609375, 0.017333984375, 0.0049591064453125, 0.0126953125, -0.0018033981323242188, 0.00821685791015625, 0.043731689453125, 0.0047454833984375, 0.02020263671875, 0.031646728515625, -0.01849365234375, 0.018951416015625, -0.0478515625, 0.05615234375, -0.035125732421875, 0.03704833984375, 0.0714111328125, -0.0333251953125, 0.031036376953125, 0.0040740966796875, -0.0292205810546875, -0.01264190673828125, 0.034637451171875, 0.005283355712890625, -0.0518798828125, -0.0252227783203125, -0.0003027915954589844, 0.04443359375, 0.0328369140625, 0.04913330078125, 0.0007085800170898438, 0.0298309326171875, 0.06268310546875, -0.017852783203125, -0.05291748046875, 0.005710601806640625, -0.01922607421875, -0.0271453857421875, -0.00212860107421875, -0.0017547607421875, -0.01020050048828125, -0.007488250732421875, 0.0087432861328125, 0.0068817138671875, -0.03497314453125, -0.087158203125, -0.08221435546875, -0.07733154296875, -0.003814697265625, 0.00295257568359375, 0.01116180419921875, 0.01244354248046875, 0.01113128662109375, 0.015106201171875, 0.0006728172302246094, 0.0384521484375, 0.038330078125, -0.0152435302734375, -0.00995635986328125, -0.0213775634765625, 0.00591278076171875, 0.04168701171875, -0.0012807846069335938, 0.0224609375, 0.021270751953125, -0.0095367431640625, -0.04449462890625, -0.018096923828125, -0.0179901123046875, 0.007755279541015625, 0.03948974609375, 0.031585693359375, 0.04608154296875, 0.07037353515625, 0.00746917724609375, -0.037689208984375, -0.020050048828125, -0.047637939453125, 0.0262603759765625, 0.0286407470703125, -0.007381439208984375, -0.0311737060546875, 0.043426513671875, 0.03399658203125, 0.007625579833984375, -0.0003294944763183594, -0.0239105224609375, 0.05078125, 0.0228424072265625, 0.0650634765625, -0.0244903564453125, -0.00540924072265625, -0.01336669921875, 0.01128387451171875, -0.01285552978515625, 0.0283660888671875, 0.00222015380859375, 0.00867462158203125, -0.06243896484375, -0.06756591796875, 0.056549072265625, -0.0208282470703125, 0.004245758056640625, -0.0565185546875, -0.03564453125, -0.0270843505859375, 0.07781982421875, -0.075927734375, -0.0018930435180664062, -0.0041961669921875, 0.0016736984252929688, 0.000047266483306884766, -0.0219268798828125, -0.0408935546875, -0.01451873779296875, -0.041900634765625, -0.0035552978515625, 0.004016876220703125, -0.01849365234375, -0.0177764892578125, 0.03802490234375, -0.0230560302734375, -0.03033447265625, 0.03839111328125, -0.03955078125, 0.0093231201171875, 0.0095672607421875, 0.00873565673828125, -0.0240325927734375, -0.0159759521484375, -0.018707275390625, -0.08929443359375, -0.0219573974609375, 0.0018739700317382812, 0.0645751953125, -0.007320404052734375, -0.01788330078125, -0.0298614501953125, 0.039154052734375, 0.0650634765625, 0.06634521484375, -0.01233673095703125, -0.081787109375, 0.0401611328125, 0.055694580078125, 0.036376953125, 0.038970947265625, 0.006916046142578125, -0.00653076171875, -0.04931640625, -0.0203094482421875, -0.0207672119140625, -0.0213775634765625, 0.052001953125, -0.05328369140625, -0.05023193359375, -0.00628662109375, -0.026123046875, 0.01727294921875, -0.0190582275390625, 0.00344085693359375, -0.024017333984375, -0.0738525390625, 0.044921875, -0.026458740234375, -0.0281524658203125, -0.004425048828125, 0.06121826171875, 0.0216827392578125, -0.01031494140625, 0.017730712890625, 0.02166748046875, 0.0254058837890625, -0.011199951171875, 0.02130126953125, -0.005855560302734375, 0.004974365234375, 0.0221710205078125, -0.024810791015625, -0.04241943359375, 0.01187896728515625, 0.0367431640625, -0.01230621337890625, -0.021881103515625, 0.002338409423828125, -0.058624267578125, 0.0258026123046875, 0.06475830078125, -0.022796630859375, 0.017303466796875, -0.014190673828125, 0.02850341796875, -0.03558349609375, -0.0023937225341796875, -0.0439453125, -0.044830322265625, 0.030670166015625, -0.0345458984375, 0.0423583984375, 0.024871826171875, -0.01309967041015625, 0.038818359375, -0.01163482666015625, -0.002902984619140625, -0.003353118896484375, -0.0162353515625, -0.01128387451171875, 0.027191162109375, 0.0002810955047607422, 0.004665374755859375, -0.002628326416015625, 0.003604888916015625, 0.0540771484375, 0.004150390625, -0.040313720703125, -0.0157623291015625, -0.0217742919921875, -0.0185394287109375, 0.01297760009765625, -0.0250701904296875, 0.045806884765625, 0.0496826171875, 0.001682281494140625, 0.025604248046875, -0.038330078125, 0.01329803466796875, -0.03814697265625, 0.0216827392578125, 0.00836181640625, 0.01041412353515625, -0.033599853515625, 0.082763671875, 0.0809326171875, -0.0157623291015625, -0.049957275390625, -0.00006431341171264648, 0.01055908203125, 0.0513916015625, 0.02899169921875, -0.006999969482421875, -0.036376953125, 0.0543212890625, -0.005817413330078125, -0.07159423828125, -0.0036067962646484375, 0.0163726806640625, 0.062744140625, 0.0070953369140625, -0.036865234375, 0.03131103515625, -0.0176849365234375, -0.01403045654296875, 0.0029277801513671875, 0.00035500526428222656, -0.01523590087890625, -0.002361297607421875, -0.006374359130859375, 0.014892578125, 0.01094818115234375, -0.031707763671875, 0.04150390625, -0.034637451171875, 0.01025390625, 0.04351806640625, -0.05010986328125, 0.0191650390625, 0.0271148681640625, 0.0239105224609375, -0.0232391357421875, -0.00629425048828125, 0.0204010009765625, 0.0146026611328125, -0.03289794921875, -0.02130126953125, 0.033416748046875, -0.037445068359375, 0.0266571044921875, 0.0007681846618652344, -0.00754547119140625, 0.04571533203125, 0.01523590087890625, 0.03399658203125, 0.017333984375, -0.0673828125, 0.02166748046875, -0.027984619140625, 0.02978515625, 0.042144775390625, -0.002796173095703125, -0.01392364501953125, -0.0406494140625, 0.0166015625, 0.0372314453125, -0.009521484375, -0.028045654296875, -0.05023193359375, 0.0160369873046875, 0.034271240234375, 0.06488037109375, -0.0289154052734375, 0.03265380859375, -0.0034961700439453125, 0.01375579833984375, -0.044281005859375, 0.0046539306640625, 0.0203857421875, -0.0169219970703125, 0.004932403564453125, -0.06768798828125, -0.0237579345703125, 0.024688720703125, -0.0279998779296875, 0.05303955078125, 0.031280517578125, 0.004070281982421875, -0.0068359375, -0.010650634765625, 0.02459716796875, -0.01116943359375, 0.0231781005859375, -0.033203125, -0.03289794921875, 0.02984619140625, -0.0006880760192871094, 0.019622802734375, 0.0266876220703125, -0.01424407958984375, 0.007343292236328125, 0.004665374755859375, 0.021881103515625, -0.0213165283203125, -0.0294647216796875, 0.0295867919921875, 0.035919189453125, 0.01488494873046875, 0.040740966796875, 0.009124755859375, 0.019775390625, 0.0257110595703125, -0.0091400146484375, 0.0003287792205810547, -0.0009660720825195312, 0.0186920166015625, -0.0154571533203125, 0.01190185546875, 0.00804901123046875, -0.0002129077911376953, -0.035003662109375, 0.056732177734375, 0.0269775390625, -0.076171875, -0.037322998046875, -0.01039886474609375, -0.007904052734375, -0.0002397298812866211, -0.00904083251953125, -0.00501251220703125, 0.005504608154296875, -0.0008015632629394531, -0.016021728515625, -0.04638671875, -0.0095062255859375, 0.00882720947265625, -0.0236053466796875, -0.015960693359375, 0.0174560546875, -0.0133819580078125, 0.0011615753173828125, -0.033416748046875, -0.002773284912109375, -0.023468017578125, 0.01422119140625, -0.018768310546875, -0.0171051025390625, -0.02215576171875, -0.0301361083984375, -0.0157012939453125, -0.07086181640625, 0.0174407958984375, 0.054046630859375, 0.008453369140625, 0.00560760498046875, 0.0167236328125, -0.00275421142578125, -0.0022068023681640625, -0.0135498046875, -0.047454833984375, 0.045440673828125, -0.006298065185546875, -0.026153564453125, 0.052490234375, 0.0014810562133789062, 0.005329132080078125, 0.0178985595703125, 0.0186004638671875, -0.0216217041015625, 0.00237274169921875, 0.07928466796875, -0.0255584716796875, -0.0156402587890625, 0.042083740234375, 0.038818359375, -0.0236053466796875, 0.030914306640625, -0.01441192626953125, -0.0215911865234375, -0.027740478515625, 0.00514984130859375, -0.06683349609375, -0.006481170654296875, 0.0048675537109375, -0.051513671875, 0.04766845703125, 0.0174407958984375, 0.0404052734375, 0.00473785400390625, 0.00641632080078125, -0.0034694671630859375, 0.01096343994140625, -0.042205810546875, 0.0723876953125, -0.044342041015625, 0.08612060546875, -0.0694580078125, -0.0087738037109375, 0.034027099609375, 0.014190673828125, 0.057098388671875, 0.01038360595703125, -0.03985595703125, -0.0089263916015625, 0.05267333984375, 0.00506591796875, -0.012481689453125, 0.05731201171875, 0.00333404541015625, 0.004791259765625, 0.04119873046875, -0.0166778564453125, 0.037200927734375, -0.0213623046875, -0.00518035888671875, -0.001888275146484375, 0.0299224853515625, 0.04339599609375, -0.010040283203125, 0.0003724098205566406, -0.0273895263671875, -0.013397216796875, 0.0467529296875, -0.039215087890625, 0.0211181640625, 0.0212860107421875, 0.05902099609375, -0.08642578125, -0.0195465087890625, -0.031707763671875, 0.055328369140625, 0.0222015380859375, 0.01174163818359375, 0.02008056640625, 0.00934600830078125, 0.04449462890625, -0.040374755859375, 0.0010309219360351562, -0.004730224609375, -0.0102996826171875, 0.047637939453125, 0.016693115234375, 0.0195465087890625, -0.042205810546875, 0.009613037109375, 0.06817626953125, 0.0880126953125, -0.048065185546875, -0.032257080078125, 0.01181793212890625, 0.00931549072265625, -0.0038204193115234375, -0.016326904296875, 0.0022220611572265625, -0.0224609375, 0.01122283935546875, -0.0305328369140625, -0.0040130615234375, 0.01227569580078125, 0.0193328857421875, -0.0302734375, -0.034881591796875, 0.004375457763671875, 0.003978729248046875, -0.0296783447265625, 0.019744873046875, 0.01006317138671875, 0.052490234375, 0.00555419921875, 0.04376220703125, -0.00714874267578125, -0.0102996826171875, 0.01053619384765625, -0.008392333984375, -0.00909423828125, -0.0032100677490234375, -0.0435791015625, -0.01239776611328125, 0.0186920166015625, 0.05108642578125, 0.039764404296875, 0.00823974609375, 0.01470184326171875, -0.0241851806640625, -0.0223236083984375, 0.0170440673828125, 0.033477783203125, -0.0258941650390625, 0.048797607421875, -0.0246734619140625, 0.0223236083984375, -0.0108184814453125, -0.030792236328125, -0.043182373046875, -0.0153656005859375, 0.041534423828125, 0.0228271484375, 0.00782012939453125, 0.02679443359375, -0.02386474609375, 0.04205322265625, 0.04864501953125, 0.0469970703125, 0.0633544921875, -0.0325927734375, 0.00009936094284057617, -0.00827789306640625, -0.09710693359375, 0.01947021484375, 0.052947998046875, -0.00838470458984375, -0.0202789306640625, 0.0205230712890625, -0.031219482421875, 0.028045654296875, -0.000743865966796875, 0.0276641845703125, 0.016998291015625, -0.00345611572265625, 0.0127105712890625, -0.0019683837890625, 0.01016998291015625, 0.04132080078125, 0.01041412353515625, -0.044158935546875, 0.10003662109375, -0.0472412109375, -0.0128021240234375, -0.056854248046875, 0.036163330078125, -0.0452880859375, -0.04278564453125, 0.07049560546875, 0.0195159912109375, -0.0034198760986328125, -0.003025054931640625, -0.0445556640625, 0.0261688232421875, 0.026275634765625, -0.0341796875, 0.0273590087890625, -0.01512908935546875, -0.0016307830810546875, -0.01513671875, -0.026641845703125, -0.060272216796875, -0.03350830078125, -0.0478515625, -0.0322265625, 0.01227569580078125, -0.04644775390625, -0.026123046875, 0.051116943359375, 0.0075836181640625, -0.043365478515625, 0.034393310546875, -0.08746337890625, 0.060791015625, 0.03289794921875, 0.0268096923828125, -0.0247039794921875, -0.007572174072265625, -0.01181793212890625, -0.01016998291015625, 0.018707275390625, 0.006988525390625, -0.022613525390625, -0.006130218505859375, -0.01097869873046875, -0.040496826171875, -0.00011044740676879883, -0.00748443603515625, -0.0235137939453125, -0.039215087890625, 0.0080718994140625, -0.00963592529296875, -0.012908935546875, -0.020172119140625, 0.011383056640625, 0.011627197265625, 0.031524658203125, 0.049468994140625, 0.004375457763671875, -0.009857177734375, -0.00896453857421875, 0.0033969879150390625, -0.0147705078125, -0.02215576171875, 0.0271759033203125, -0.051910400390625, -0.00949859619140625, -0.04083251953125, -0.0294647216796875, 0.0204010009765625, 0.050018310546875, -0.013427734375, 0.0271148681640625, -0.00598907470703125, -0.032623291015625, -0.0034923553466796875, 0.0133514404296875, 0.066162109375, -0.0196075439453125, -0.049102783203125, -0.0538330078125, -0.00415802001953125, 0.01617431640625, -0.052001953125, -0.0322265625, 0.01209259033203125, 0.004619598388671875, -0.016937255859375, -0.033721923828125, -0.0006399154663085938, -0.006526947021484375, -0.00914764404296875, 0.037261962890625, -0.022003173828125, -0.0003840923309326172, -0.03558349609375, -0.050201416015625, 0.05712890625, 0.0285186767578125, -0.0199432373046875, -0.06829833984375, 0.01290130615234375, 0.006763458251953125, -0.0173187255859375, -0.025115966796875, -0.0140380859375, -0.0241546630859375, 0.031463623046875, -0.01708984375, 0.043975830078125, -0.027435302734375, 0.0218048095703125, 0.01085662841796875, 0.027740478515625, 0.020843505859375, -0.048736572265625, 0.036834716796875, -0.004863739013671875, 0.01300811767578125, 0.042266845703125, -0.037078857421875, -0.0045166015625, -0.023773193359375, -0.0175018310546875, -0.0224761962890625, -0.032257080078125, -0.037689208984375, -0.049102783203125, 0.06622314453125, 0.046630859375, 0.01116180419921875, 0.0030117034912109375, -0.026092529296875, 0.0029048919677734375, -0.039794921875, 0.01507568359375, 0.051544189453125, -0.079345703125, 0.005954742431640625, 0.017913818359375, 0.0094146728515625, -0.0225372314453125, -0.039581298828125, -0.03131103515625, -0.021026611328125, -0.027679443359375, -0.0079193115234375, -0.00035834312438964844, 0.0177001953125, 0.0208892822265625, -0.036346435546875, -0.02783203125, 0.0005602836608886719, 0.0037822723388671875, -0.01537322998046875, -0.04144287109375, -0.0095977783203125, 0.006259918212890625, -0.009796142578125, 0.0184478759765625, -0.0027523040771484375, 0.0294036865234375, -0.01494598388671875, -0.0089874267578125, -0.0122222900390625, 0.01404571533203125, -0.01192474365234375, 0.01200103759765625, 0.0161895751953125, 0.0097198486328125, -0.00246429443359375, 0.03802490234375, -0.004184722900390625, -0.01540374755859375, -0.018218994140625, 0.0390625, -0.005279541015625, -0.0100860595703125, 0.032501220703125, -0.0233306884765625, -0.005336761474609375, 0.0167999267578125, -0.0180206298828125, -0.0390625, 0.01322174072265625, 0.0259857177734375, 0.00994873046875, 0.0197906494140625 ]
f5a0dde78654b4bc550c4a3a31445b25234c4f23
Wordpress Stackexchange Q: A similar hook as wp_head for the admin area I'm adding a node to the toolbar and wish to tweak the css a bit. I don't have any external CSS files and I'm echoing the CSS using the wp_head action hook. Is there a similar action hook that I can use to echo the CSS everywhere? Both front-end and admin area? A: The alternative to wp_head action in admin area is admin_head. But, if your CSS depends on another stylesheet, you should use wp_add_inline_style() function hooked to admin_enqueue_scripts action.
Q: A similar hook as wp_head for the admin area I'm adding a node to the toolbar and wish to tweak the css a bit. I don't have any external CSS files and I'm echoing the CSS using the wp_head action hook. Is there a similar action hook that I can use to echo the CSS everywhere? Both front-end and admin area? A: The alternative to wp_head action in admin area is admin_head. But, if your CSS depends on another stylesheet, you should use wp_add_inline_style() function hooked to admin_enqueue_scripts action. A: In addition to wp_head and admin_head there's a separate hook for the login screen, called login_head if any custom code is needed there. ( This should have been a comment, but my reputation is still to low. ) A: You could always just hook into both of them from the same function:- function wordpress_stackexchange_242372() { // Your code here } add_action( 'wp_head', 'wordpress_stackexchange_242372' ); add_action( 'admin_head', 'wordpress_stackexchange_242372' ); Pretty sure that should work :)
wordpress
{ "language": "en", "length": 165, "provenance": "stackexchange_00019.jsonl.gz:469174", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/242372" }
[ 0.01517486572265625, -0.002410888671875, -0.039886474609375, -0.0290679931640625, 0.004901885986328125, -0.034271240234375, -0.00011414289474487305, -0.00982666015625, -0.00769805908203125, 0.033966064453125, -0.0282440185546875, 0.043365478515625, 0.00792694091796875, 0.0024433135986328125, 0.0153045654296875, 0.00847625732421875, 0.05780029296875, -0.011322021484375, 0.01401519775390625, 0.021148681640625, -0.0172119140625, 0.06121826171875, -0.02703857421875, 0.044281005859375, 0.0264434814453125, -0.08673095703125, 0.0316162109375, -0.003520965576171875, 0.041595458984375, 0.01468658447265625, 0.0165863037109375, -0.02923583984375, 0.0309600830078125, 0.01438140869140625, -0.028106689453125, -0.0035037994384765625, -0.00331878662109375, 0.0107879638671875, -0.00868988037109375, 0.0171356201171875, 0.03631591796875, -0.03814697265625, 0.0283660888671875, 0.0247344970703125, -0.006839752197265625, -0.024017333984375, 0.0518798828125, -0.0158233642578125, 0.0192718505859375, -0.0254058837890625, 0.00455474853515625, -0.031585693359375, 0.01471710205078125, -0.03350830078125, -0.0259246826171875, 0.010009765625, -0.002246856689453125, -0.00902557373046875, 0.03338623046875, 0.00173187255859375, -0.0233154296875, -0.025665283203125, 0.0201568603515625, -0.035400390625, 0.0138092041015625, 0.0284423828125, 0.044158935546875, 0.0017490386962890625, -0.05072021484375, 0.005832672119140625, 0.00873565673828125, -0.038543701171875, -0.0159912109375, -0.006290435791015625, -0.047332763671875, 0.0090179443359375, 0.0013303756713867188, -0.023773193359375, 0.0235443115234375, -0.0032196044921875, -0.03289794921875, 0.0033664703369140625, -0.046234130859375, -0.05718994140625, 0.02471923828125, -0.0162353515625, -0.0199432373046875, 0.0001976490020751953, -0.0299530029296875, -0.032623291015625, -0.0273284912109375, -0.0185394287109375, -0.024505615234375, -0.0116729736328125, 0.007038116455078125, -0.036224365234375, -0.0030059814453125, 0.01236724853515625, 0.00438690185546875, 0.02020263671875, -0.01338958740234375, -0.0223846435546875, 0.017547607421875, -0.0222625732421875, -0.0017185211181640625, 0.043701171875, 0.0177459716796875, 0.004138946533203125, 0.0085601806640625, -0.007282257080078125, -0.01068115234375, -0.016998291015625, -0.0027561187744140625, 0.01148223876953125, 0.0015382766723632812, -0.01020050048828125, -0.0506591796875, 0.041290283203125, -0.029998779296875, 0.04400634765625, 0.01529693603515625, 0.024658203125, 0.049530029296875, -0.0030651092529296875, -0.006320953369140625, 0.014190673828125, -0.0223236083984375, -0.06744384765625, 0.031494140625, -0.0241546630859375, 0.006893157958984375, 0.0079193115234375, 0.022064208984375, 0.0136566162109375, 0.005168914794921875, 0.0085906982421875, 0.0192413330078125, 0.00952911376953125, -0.0100555419921875, -0.0134735107421875, 0.03204345703125, -0.01812744140625, -0.0333251953125, 0.0211944580078125, 0.032318115234375, 0.01727294921875, 0.00295257568359375, -0.001941680908203125, 0.01137542724609375, -0.005687713623046875, 0.03411865234375, -0.0533447265625, -0.01416015625, 0.049530029296875, 0.02337646484375, 0.020172119140625, 0.0640869140625, -0.03271484375, -0.004306793212890625, -0.0233917236328125, -0.043609619140625, -0.00638580322265625, 0.043487548828125, -0.037445068359375, -0.022308349609375, 0.0006856918334960938, -0.0179290771484375, 0.00931549072265625, 0.033843994140625, 0.02447509765625, 0.02679443359375, -0.035736083984375, 0.0592041015625, 0.015869140625, -0.01140594482421875, 0.020355224609375, -0.004245758056640625, 0.021728515625, 0.054901123046875, -0.013275146484375, -0.030731201171875, -0.032958984375, 0.09735107421875, -0.055389404296875, -0.054901123046875, 0.0286712646484375, -0.002872467041015625, 0.06365966796875, 0.040985107421875, 0.01386260986328125, 0.00286102294921875, -0.007061004638671875, -0.01070404052734375, 0.00035262107849121094, -0.026611328125, -0.01348876953125, 0.006275177001953125, 0.0259552001953125, -0.0206298828125, 0.007686614990234375, -0.00321197509765625, 0.031524658203125, 0.007659912109375, 0.0034885406494140625, -0.0262298583984375, 0.01497650146484375, -0.01641845703125, 0.04437255859375, 0.0234375, 0.03515625, -0.021026611328125, -0.0010547637939453125, 0.0105133056640625, -0.06536865234375, -0.035369873046875, -0.0014066696166992188, -0.0472412109375, 0.049560546875, 0.01511383056640625, 0.03656005859375, 0.027313232421875, -0.039306640625, 0.0175323486328125, -0.055419921875, 0.00109100341796875, 0.00536346435546875, -0.0367431640625, 0.002368927001953125, -0.0225677490234375, 0.011871337890625, -0.00722503662109375, 0.025604248046875, 0.01287078857421875, 0.10107421875, 0.0211181640625, -0.047698974609375, -0.0005168914794921875, -0.0845947265625, 0.051910400390625, 0.043121337890625, 0.04327392578125, 0.01409149169921875, 0.00262451171875, 0.0017004013061523438, 0.045257568359375, 0.0237579345703125, 0.050537109375, -0.034820556640625, -0.0173797607421875, -0.0168304443359375, 0.007110595703125, -0.003108978271484375, 0.0399169921875, -0.057830810546875, 0.0089874267578125, 0.041839599609375, -0.00823974609375, -0.0222625732421875, -0.040802001953125, -0.0107574462890625, 0.044189453125, -0.0222015380859375, -0.06939697265625, 0.01030731201171875, -0.005359649658203125, -0.029388427734375, 0.008087158203125, -0.0283660888671875, -0.0196990966796875, -0.0222320556640625, 0.0394287109375, -0.00028824806213378906, 0.0023593902587890625, 0.04791259765625, 0.01556396484375, -0.037261962890625, 0.009490966796875, -0.040069580078125, 0.0177459716796875, 0.01165008544921875, -0.0360107421875, 0.02911376953125, -0.010101318359375, -0.01479339599609375, -0.0242156982421875, -0.03790283203125, 0.0217742919921875, -0.0258636474609375, 0.056549072265625, 0.0180206298828125, 0.02838134765625, 0.02178955078125, -0.0308685302734375, 0.083251953125, 0.0178070068359375, -0.03778076171875, 0.0382080078125, 0.0222015380859375, -0.00890350341796875, 0.01517486572265625, 0.07452392578125, 0.041259765625, 0.00006639957427978516, 0.0023212432861328125, -0.0007500648498535156, -0.019134521484375, -0.00762939453125, 0.005161285400390625, -0.00788116455078125, -0.036163330078125, -0.01511383056640625, 0.036651611328125, 0.0303192138671875, 0.01399993896484375, 0.0228424072265625, -0.0259552001953125, -0.00457763671875, 0.009246826171875, -0.0638427734375, -0.07501220703125, -0.019500732421875, -0.0760498046875, 0.01038360595703125, -0.007717132568359375, -0.0286102294921875, 0.002895355224609375, 0.0207977294921875, 0.0163726806640625, 0.03466796875, -0.052001953125, -0.0025844573974609375, -0.035552978515625, -0.06451416015625, -0.031158447265625, 0.013427734375, -0.0016775131225585938, 0.002414703369140625, 0.0259246826171875, 0.00829315185546875, -0.0279998779296875, 0.0226287841796875, 0.00678253173828125, -0.0018358230590820312, 0.0011911392211914062, -0.0163726806640625, -0.04144287109375, -0.00034928321838378906, -0.01025390625, -0.04364013671875, -0.012054443359375, 0.02301025390625, -0.00458526611328125, -0.0304412841796875, -0.0268096923828125, -0.0033721923828125, 0.055572509765625, 0.04327392578125, -0.0204925537109375, 0.036224365234375, -0.038360595703125, -0.01082611083984375, 0.0045623779296875, -0.033782958984375, 0.0283966064453125, 0.01377105712890625, -0.024322509765625, 0.0203704833984375, 0.0164642333984375, 0.0207366943359375, -0.017974853515625, 0.01503753662109375, -0.01016998291015625, 0.0176544189453125, -0.0006270408630371094, 0.0234527587890625, -0.018585205078125, -0.0241241455078125, -0.01995849609375, 0.083740234375, 0.006916046142578125, 0.0127105712890625, -0.002166748046875, 0.027435302734375, -0.007366180419921875, -0.0196075439453125, 0.051605224609375, 0.005664825439453125, 0.0635986328125, -0.043853759765625, -0.03363037109375, -0.0239105224609375, 0.08538818359375, -0.034698486328125, -0.0307464599609375, 0.033782958984375, 0.03900146484375, -0.054595947265625, -0.03857421875, -0.03564453125, -0.002307891845703125, -0.15478515625, 0.02777099609375, 0.00868988037109375, -0.04547119140625, -0.0160064697265625, 0.0328369140625, -0.076904296875, -0.0684814453125, 0.0238189697265625, 0.003662109375, -0.01483917236328125, 0.03125, -0.0196075439453125, 0.0004978179931640625, -0.006412506103515625, -0.01152801513671875, -0.13427734375, -0.015899658203125, -0.05914306640625, 0.10760498046875, 0.01348114013671875, 0.007568359375, -0.04339599609375, 0.0290069580078125, -0.031036376953125, 0.042938232421875, 0.00281524658203125, 0.05108642578125, -0.02008056640625, -0.054656982421875, -0.0014524459838867188, -0.049713134765625, -0.037994384765625, -0.01515960693359375, -0.039398193359375, 0.020843505859375, 0.00801849365234375, -0.01351165771484375, 0.0396728515625, -0.01015472412109375, -0.051910400390625, -0.02569580078125, -0.01079559326171875, -0.0204315185546875, 0.017822265625, -0.0289154052734375, -0.024261474609375, -0.031982421875, 0.00751495361328125, -0.0125274658203125, -0.0011386871337890625, 0.00452423095703125, 0.0352783203125, 0.032562255859375, -0.005035400390625, 0.017578125, -0.01502227783203125, 0.0279693603515625, -0.0229644775390625, 0.059783935546875, 0.00885009765625, -0.02593994140625, 0.08294677734375, -0.0024700164794921875, 0.016387939453125, -0.0243377685546875, 0.050537109375, 0.0140838623046875, 0.0025959014892578125, 0.0108489990234375, 0.008056640625, -0.01537322998046875, -0.00975799560546875, 0.002593994140625, -0.00579071044921875, -0.0141143798828125, 0.0158538818359375, 0.0290985107421875, 0.006229400634765625, -0.03472900390625, 0.00957489013671875, -0.023345947265625, -0.007389068603515625, 0.06988525390625, 0.05950927734375, -0.00823974609375, 0.00792694091796875, 0.0278167724609375, 0.025177001953125, 0.025421142578125, 0.033782958984375, -0.01410675048828125, 0.038421630859375, 0.00838470458984375, -0.00968170166015625, -0.0005125999450683594, -0.0108489990234375, 0.0253143310546875, -0.0010843276977539062, -0.0513916015625, -0.0248870849609375, 0.006687164306640625, 0.0322265625, 0.02813720703125, -0.0179443359375, -0.01256561279296875, 0.0052642822265625, -0.0128021240234375, -0.0020503997802734375, 0.007282257080078125, -0.0355224609375, -0.019775390625, 0.0206756591796875, 0.00689697265625, -0.00835418701171875, 0.05914306640625, -0.01397705078125, 0.0208740234375, 0.010833740234375, -0.0228729248046875, 0.01776123046875, 0.00787353515625, 0.005023956298828125, -0.0013494491577148438, -0.01451873779296875, 0.047149658203125, -0.0257415771484375, 0.0537109375, -0.0292510986328125, 0.0014190673828125, 0.020965576171875, 0.0445556640625, 0.035491943359375, 0.01161956787109375, -0.00933837890625, -0.0168304443359375, -0.05316162109375, 0.0762939453125, -0.004390716552734375, -0.07379150390625, -0.0374755859375, 0.026458740234375, 0.0313720703125, 0.005023956298828125, -0.00958251953125, 0.0159149169921875, 0.015472412109375, 0.0025310516357421875, -0.0120849609375, -0.05078125, 0.0279083251953125, 0.032928466796875, 0.0229034423828125, 0.01490020751953125, -0.013519287109375, -0.08685302734375, -0.065185546875, 0.0228424072265625, 0.0190582275390625, 0.015167236328125, -0.0190277099609375, 0.040283203125, -0.058074951171875, -0.0126953125, -0.01448822021484375, -0.01125335693359375, 0.08056640625, 0.06890869140625, -0.06805419921875, 0.017791748046875, -0.03082275390625, 0.00868988037109375, -0.04461669921875, -0.057037353515625, -0.021942138671875, -0.0014963150024414062, -0.01233673095703125, -0.00745391845703125, 0.0102081298828125, 0.0236053466796875, -0.04949951171875, 0.0504150390625, 0.032379150390625, 0.03997802734375, -0.0296630859375, 0.05596923828125, -0.0164337158203125, 0.0105133056640625, -0.0060272216796875, 0.013458251953125, -0.0012178421020507812, 0.01067352294921875, 0.004825592041015625, -0.04315185546875, -0.006542205810546875, -0.0290985107421875, 0.048065185546875, 0.0303192138671875, 0.0091400146484375, -0.0025997161865234375, 0.01250457763671875, 0.01251983642578125, 0.003345489501953125, -0.0210113525390625, -0.042510986328125, 0.0106353759765625, -0.0176544189453125, 0.0211181640625, 0.0305938720703125, 0.0280914306640625, -0.04766845703125, -0.040191650390625, 0.02880859375, 0.0094146728515625, 0.0204620361328125, -0.0172882080078125, -0.05108642578125, 0.059783935546875, 0.05426025390625, 0.010345458984375, 0.0238494873046875, -0.0022373199462890625, -0.0010166168212890625, 0.01458740234375, 0.017486572265625, 0.01922607421875, 0.00122833251953125, 0.0635986328125, 0.0037479400634765625, 0.02593994140625, 0.04278564453125, -0.01548004150390625, -0.004825592041015625, 0.050872802734375, 0.053131103515625, -0.0797119140625, -0.0046844482421875, -0.017547607421875, -0.015228271484375, 0.0263519287109375, -0.0091094970703125, -0.020263671875, -0.045989990234375, 0.03375244140625, 0.04852294921875, -0.014251708984375, 0.0190582275390625, 0.0217437744140625, -0.007415771484375, -0.054779052734375, 0.00589752197265625, -0.022491455078125, -0.012298583984375, -0.01482391357421875, 0.02569580078125, -0.0557861328125, -0.03179931640625, 0.015838623046875, -0.01058197021484375, -0.0162506103515625, -0.0174407958984375, 0.03619384765625, -0.00003921985626220703, 0.012603759765625, 0.031402587890625, 0.0217132568359375, 0.024383544921875, 0.0090179443359375, 0.017822265625, -0.002979278564453125, -0.03759765625, 0.0247955322265625, -0.038421630859375, -0.016845703125, -0.0179443359375, -0.0006146430969238281, -0.00411224365234375, 0.02520751953125, -0.020782470703125, -0.030120849609375, 0.004730224609375, 0.0335693359375, 0.05792236328125, -0.02911376953125, -0.0202484130859375, 0.033050537109375, -0.0172576904296875, 0.00537872314453125, 0.007572174072265625, 0.04803466796875, -0.059722900390625, -0.05499267578125, 0.011474609375, -0.0535888671875, -0.01507568359375, -0.0206298828125, 0.0019664764404296875, 0.09814453125, -0.02301025390625, -0.0124969482421875, 0.053070068359375, 0.037994384765625, -0.0384521484375, 0.02911376953125, -0.005992889404296875, 0.0202484130859375, 0.00899505615234375, -0.029998779296875, -0.0019893646240234375, 0.0027294158935546875, -0.0136566162109375, 0.01416778564453125, 0.0013322830200195312, 0.001010894775390625, -0.0364990234375, 0.0156402587890625, 0.07098388671875, -0.004058837890625, 0.0111083984375, 0.05255126953125, -0.01262664794921875, -0.02117919921875, 0.03619384765625, -0.00891876220703125, 0.03216552734375, 0.0022563934326171875, -0.0369873046875, 0.00563812255859375, 0.0001246929168701172, 0.004825592041015625, 0.0019817352294921875, 0.0177764892578125, -0.06256103515625, 0.0047149658203125, 0.052001953125, -0.061553955078125, -0.03436279296875, 0.014801025390625, -0.011627197265625, 0.00919342041015625, -0.0406494140625, -0.007564544677734375, 0.007904052734375, 0.0247955322265625, -0.009246826171875, -0.025238037109375, 0.00234222412109375, 0.0251007080078125, -0.00893402099609375, -0.0313720703125, 0.0457763671875, -0.0192108154296875, 0.0217437744140625, -0.0055694580078125, 0.0204010009765625, -0.034423828125, -0.0013427734375, 0.003536224365234375, 0.0169525146484375, -0.0196075439453125, -0.0304718017578125, -0.004611968994140625, 0.0069122314453125, 0.022735595703125, -0.0009555816650390625, 0.0277557373046875, -0.031280517578125, 0.003620147705078125, -0.01358795166015625, -0.0187530517578125, 0.0299530029296875, 0.0263671875, 0.008087158203125, 0.01441192626953125, -0.026031494140625, -0.01202392578125, -0.0223388671875, -0.005390167236328125, 0.011138916015625, 0.050079345703125, 0.0242462158203125, 0.032379150390625, -0.0362548828125, -0.0244598388671875, -0.050933837890625, 0.0352783203125, 0.0210723876953125, 0.036895751953125, -0.03289794921875, 0.0288848876953125, -0.007404327392578125, 0.028778076171875, 0.0014095306396484375, 0.03631591796875, 0.035125732421875, 0.035888671875, -0.0128326416015625, -0.0195465087890625, 0.00858306884765625, -0.0299072265625, -0.0021152496337890625, -0.036163330078125, 0.037200927734375, 0.021087646484375, 0.0200042724609375, -0.0024280548095703125, 0.007694244384765625, 0.040679931640625, -0.0263824462890625, 0.025177001953125, -0.00829315185546875, -0.006862640380859375, 0.0032176971435546875, -0.0173492431640625, -0.0006880760192871094, 0.007442474365234375, -0.0299835205078125, -0.0165863037109375, 0.0136566162109375, -0.007015228271484375, 0.0061798095703125, 0.032073974609375, -0.03375244140625, 0.04827880859375, -0.0017919540405273438, -0.0224456787109375, 0.00316619873046875, 0.00868988037109375, 0.00836944580078125, -0.03277587890625, -0.00043272972106933594, -0.0108489990234375, -0.03997802734375, -0.024017333984375, -0.045623779296875, 0.048431396484375, 0.0231475830078125, 0.05419921875, -0.0246429443359375, 0.04608154296875, 0.01433563232421875, -0.0033702850341796875, 0.01099395751953125, 0.0226898193359375, -0.00848388671875, -0.0161895751953125, 0.0003600120544433594, -0.0205230712890625, -0.085205078125, -0.0173797607421875, 0.0108489990234375, -0.029754638671875, -0.00406646728515625, -0.00598907470703125, 0.0228118896484375, -0.0017518997192382812, 0.030914306640625, -0.03253173828125, -0.05926513671875, -0.07318115234375, 0.005420684814453125, 0.016143798828125, 0.01080322265625, -0.00457000732421875, 0.0157623291015625, 0.00904083251953125, 0.0172576904296875, 0.033660888671875, -0.0019855499267578125, 0.04779052734375, 0.0283203125, -0.045440673828125, 0.031280517578125, 0.0394287109375, -0.01085662841796875, 0.05401611328125, 0.0194091796875, 0.018035888671875, 0.0025768280029296875, -0.00009059906005859375, 0.007053375244140625, 0.0309600830078125, 0.05352783203125, -0.0012044906616210938, 0.036651611328125, 0.03173828125, -0.00856781005859375, -0.03448486328125, -0.01450347900390625, -0.018798828125, -0.045623779296875, 0.013885498046875, 0.035369873046875, -0.01324462890625, 0.007617950439453125, -0.0472412109375, 0.0189971923828125, 0.02008056640625, -0.007076263427734375, -0.0243377685546875, 0.006214141845703125, -0.0307769775390625, 0.049285888671875, 0.002246856689453125, 0.005870819091796875, -0.0021228790283203125, 0.0511474609375, -0.035736083984375, -0.03131103515625, -0.049102783203125, 0.020782470703125, -0.07275390625, 0.012451171875, 0.035552978515625, -0.01226806640625, 0.029296875, -0.016265869140625, 0.0068511962890625, 0.042938232421875, -0.005565643310546875, -0.01033782958984375, 0.002895355224609375, 0.0443115234375, -0.0059661865234375, -0.056365966796875, -0.0224151611328125, 0.0262298583984375, -0.0011987686157226562, -0.045806884765625, 0.0043182373046875, -0.006389617919921875, -0.04644775390625, -0.083984375, 0.002086639404296875, -0.00868988037109375, -0.0262603759765625, -0.032440185546875, 0.0271148681640625, 0.0183868408203125, -0.035369873046875, -0.0185699462890625, -0.01453399658203125, -0.0126190185546875, -0.01160430908203125, 0.024322509765625, 0.0276641845703125, 0.004825592041015625, 0.0036449432373046875, -0.040252685546875, 0.0202789306640625, 0.016204833984375, 0.034515380859375, -0.00921630859375, -0.01702880859375, 0.03125, 0.030517578125, -0.01371002197265625, -0.04449462890625, 0.016021728515625, -0.02490234375, -0.025787353515625, 0.0018205642700195312, -0.03765869140625, -0.006526947021484375, 0.0474853515625, 0.06280517578125, 0.0229339599609375, -0.015380859375, -0.0230865478515625, -0.0010690689086914062, -0.05279541015625, -0.0265350341796875, 0.044647216796875, -0.0948486328125, -0.0185546875, 0.0034542083740234375, 0.0033588409423828125, -0.03668212890625, 0.04083251953125, 0.006389617919921875, -0.0251617431640625, 0.0711669921875, 0.0110015869140625, -0.025604248046875, -0.0535888671875, 0.0836181640625, -0.0350341796875, 0.01837158203125, 0.02630615234375, 0.0242462158203125, 0.0511474609375, 0.0511474609375, -0.031982421875, -0.0200653076171875, -0.0404052734375, 0.0146331787109375, -0.03692626953125, 0.03497314453125, -0.056304931640625, -0.002155303955078125, -0.0057373046875, 0.011962890625, -0.0165863037109375, 0.003192901611328125, -0.00022125244140625, 0.03125, -0.0153045654296875, 0.037322998046875, -0.017120361328125, 0.005458831787109375, -0.0282440185546875, 0.0241546630859375, 0.018798828125, -0.00920867919921875, 0.061248779296875, -0.014129638671875, -0.00348663330078125, -0.004177093505859375, 0.0220184326171875, -0.06536865234375, 0.045440673828125, 0.032257080078125, 0.0194244384765625, 0.03399658203125 ]
6d9f53275e5a93a8f6ee986b269aa3d7afd04576
Wordpress Stackexchange Q: Receiving Stripe Webhooks on a wordpress website I have a wordpress website hosted on GoDaddy. I am an advanced stripe user and have integrated stripe with many Ruby on Rails apps , along with stripe-webhook integration with the Rails. Also i am well versed in how web-hooks work. But recently i was made owner of a wordpress website hosted on GoDaddy and on that website i am supposed to receive stripe payment failed webhook and then trigger an email based on that webhook event. I am not able to make much connect with wordpress and stripe from online resources and need help on how to receive stripe-webhooks in wordpress website i.e where to put code to make that happen etc. A: For anyone interested. This can also be done fairly easily without a plugin. * *First add an endpoint in stripe. https://example.com/payment-failed *Create a new wordpress page called Payment Failed with the same url. *In your theme folder, create a new php file called page-payment-failed.php and write all of your webhook response code in here. This file will automatically be run when Stripe tries to access https://example.com/payment-failed.
Q: Receiving Stripe Webhooks on a wordpress website I have a wordpress website hosted on GoDaddy. I am an advanced stripe user and have integrated stripe with many Ruby on Rails apps , along with stripe-webhook integration with the Rails. Also i am well versed in how web-hooks work. But recently i was made owner of a wordpress website hosted on GoDaddy and on that website i am supposed to receive stripe payment failed webhook and then trigger an email based on that webhook event. I am not able to make much connect with wordpress and stripe from online resources and need help on how to receive stripe-webhooks in wordpress website i.e where to put code to make that happen etc. A: For anyone interested. This can also be done fairly easily without a plugin. * *First add an endpoint in stripe. https://example.com/payment-failed *Create a new wordpress page called Payment Failed with the same url. *In your theme folder, create a new php file called page-payment-failed.php and write all of your webhook response code in here. This file will automatically be run when Stripe tries to access https://example.com/payment-failed. A: I recently had the same problem and pippins stripe integration plugin seemed to answer it but it had a lot of extra code I did not need so I removed it and made a concise version just for the webhook integration: WPStripeWebhook. README is self explanatory. Basically make changes to includes/stripe_listener.php for your events. Also attaching readme here as per stackoverflow guidelines: Usage: * *Copy the complete folder WPStripeWebhook in wp-content/plugins. Go to website admin page. *Activate the WP Stripe webhook plugin for plugins section. *After this Settings will start showing Stripe webhook settings section. Click on it. In the page fill the stripe keys and check test mode option if you want to test the plugin. *In WPStripeWebhook/includes/stripe_listener.php, make changes for your event type and email or whatever you want to do in response to an event. It currently sends out an email. Important notes and suggestions For live mode, add stripe webhook endpoint (stripe account -> settings -> account settings -> webhook) like this htps://yourdomain.com?webhook-listener=stripe For testing locally on your machine, you can use Ultrahook. Its awesome! Set up your keys and username and start ultrahook on your machine using: ultrahook -k your_ultrahook_key stripe 8888 Add a webhook endpoint url in your stripe account similar to this: htp://stripe.your_ultrahook_username.ultrahook.com/your_wp_website_folder_name/stripe-listener.php?webhook-listener=stripe And it should start working for you. Also, you might see 404 in ultrahook console. Just ignore it. I would suggest setting up debugging too. It really helps. For debugging, add these to your 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 ); After this, you should see a debug.log file in your wp-content folder and it will display errors and warnings and whatever you print using error_log() A: A nice clean way of doing is using adding a custom endpoint to wordpress REST API https://developer.wordpress.org/rest-api/extending-the-rest-api/adding-custom-endpoints/ function stripe_task() { include_once ABSPATH . 'path/to/stripe/autoloader/or/init'; //change $payload = @file_get_contents('php://input'); $event = null; try { $event = \Stripe\Event::constructFrom( json_decode($payload, true) ); } catch(\UnexpectedValueException $e) { // Invalid payload http_response_code(400); exit(); } // Handle the event switch ($event->type) { case 'customer.subscription.created': // do something! break; // other type cases you wish to handle // ... // catch all default: http_response_code(400); exit(); } http_response_code(400); } add_action('rest_api_init', function () { register_rest_route( 'stripewebhooks/v1', '/task', array( 'methods' => 'POST', 'callback' => 'stripe_task', 'permission_callback' => function () { return true; // security can be done in the handler } )); } ); Then add the endpoint to Stripe e.g. https://your-site.com/?rest_route=/stripewebhooks/v1/task You can also increase security with signature verification: https://stripe.com/docs/webhooks/signatures
wordpress
{ "language": "en", "length": 607, "provenance": "stackexchange_00019.jsonl.gz:469229", "question_score": "4", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/242560" }
[ 0.07159423828125, -0.00174713134765625, -0.020782470703125, -0.03863525390625, 0.011260986328125, -0.04345703125, 0.05145263671875, -0.006900787353515625, 0.0099029541015625, 0.01611328125, -0.051544189453125, 0.00789642333984375, -0.0147247314453125, -0.016143798828125, -0.00498199462890625, -0.0227508544921875, 0.01396942138671875, -0.008636474609375, 0.011932373046875, -0.0135650634765625, -0.01763916015625, 0.0022182464599609375, 0.02716064453125, -0.02996826171875, 0.00457000732421875, 0.055267333984375, 0.06573486328125, -0.0445556640625, 0.01052093505859375, -0.0263214111328125, 0.0152130126953125, -0.048736572265625, 0.01549530029296875, 0.06512451171875, -0.055633544921875, -0.0038547515869140625, 0.032684326171875, 0.005680084228515625, -0.0178680419921875, 0.07891845703125, 0.0115509033203125, -0.00290679931640625, 0.0452880859375, -0.028167724609375, 0.0218963623046875, -0.01165771484375, 0.01511383056640625, -0.0606689453125, 0.006359100341796875, 0.0262451171875, 0.01513671875, 0.0457763671875, -0.0079345703125, 0.038970947265625, -0.00021755695343017578, -0.00798797607421875, -0.054229736328125, 0.0306854248046875, 0.04168701171875, 0.060302734375, -0.016815185546875, -0.00942230224609375, -0.01531219482421875, -0.06884765625, -0.0103607177734375, -0.00048065185546875, -0.0227203369140625, 0.0159912109375, -0.04071044921875, -0.0155792236328125, 0.0303955078125, -0.03619384765625, -0.0352783203125, 0.0509033203125, -0.0303955078125, -0.049072265625, 0.0443115234375, -0.015716552734375, -0.0010776519775390625, 0.0623779296875, 0.02105712890625, -0.0211944580078125, 0.0081024169921875, -0.017730712890625, 0.022369384765625, 0.0150604248046875, 0.0051727294921875, -0.01152801513671875, -0.045257568359375, -0.01192474365234375, -0.0303802490234375, 0.007686614990234375, -0.07952880859375, -0.01052093505859375, 0.0200958251953125, -0.0272979736328125, -0.06304931640625, -0.042144775390625, 0.000629425048828125, 0.0226898193359375, 0.01293182373046875, -0.0299072265625, 0.0548095703125, -0.0308685302734375, 0.0018215179443359375, 0.028106689453125, -0.01367950439453125, -0.0037441253662109375, 0.042938232421875, 0.0287628173828125, 0.0031833648681640625, 0.0235137939453125, -0.0084991455078125, -0.029571533203125, -0.0249481201171875, 0.01346588134765625, -0.038421630859375, -0.00243377685546875, 0.005657196044921875, -0.01751708984375, -0.021759033203125, 0.0225982666015625, -0.017791748046875, -0.0267486572265625, 0.01551055908203125, 0.007099151611328125, 0.016937255859375, -0.0154266357421875, 0.0784912109375, -0.021575927734375, -0.0178070068359375, 0.045013427734375, 0.0160064697265625, -0.0270843505859375, -0.0223388671875, 0.0167236328125, 0.08050537109375, 0.02935791015625, 0.0172119140625, 0.0006008148193359375, 0.030181884765625, -0.01953125, -0.03790283203125, 0.0013265609741210938, 0.0213470458984375, -0.0207366943359375, 0.01153564453125, 0.0316162109375, 0.019073486328125, 0.0237274169921875, 0.00849151611328125, 0.01263427734375, 0.00731658935546875, 0.01177215576171875, 0.02288818359375, 0.025604248046875, 0.023834228515625, -0.00589752197265625, -0.0303802490234375, 0.00039005279541015625, -0.00545501708984375, -0.01338958740234375, 0.0380859375, -0.01104736328125, -0.006908416748046875, 0.0207977294921875, -0.061676025390625, -0.00690460205078125, 0.0271453857421875, -0.0026721954345703125, 0.0318603515625, 0.0174560546875, 0.046356201171875, 0.01503753662109375, 0.0080108642578125, -0.01070404052734375, -0.00926971435546875, 0.0457763671875, 0.045684814453125, -0.038482666015625, -0.031494140625, -0.028228759765625, 0.11126708984375, -0.03594970703125, -0.023590087890625, 0.035552978515625, 0.0235748291015625, 0.0921630859375, -0.0229949951171875, 0.0369873046875, 0.00922393798828125, 0.008148193359375, -0.0224151611328125, 0.0303955078125, -0.031280517578125, -0.019012451171875, 0.01177215576171875, 0.0216522216796875, -0.0169677734375, 0.00551605224609375, -0.0178375244140625, 0.003910064697265625, -0.00217437744140625, -0.0006375312805175781, -0.01010894775390625, 0.0014734268188476562, -0.020294189453125, 0.026214599609375, -0.01079559326171875, -0.0016183853149414062, 0.0071868896484375, -0.01053619384765625, -0.025726318359375, 0.0017709732055664062, -0.02020263671875, 0.008758544921875, -0.025726318359375, 0.04901123046875, 0.0035266876220703125, 0.0251617431640625, 0.007274627685546875, -0.0248565673828125, 0.0123748779296875, -0.00014889240264892578, -0.0079803466796875, -0.0094757080078125, -0.00835418701171875, -0.00757598876953125, -0.01244354248046875, 0.0145721435546875, -0.0096588134765625, 0.006778717041015625, -0.005939483642578125, 0.01432037353515625, -0.0025806427001953125, 0.004669189453125, 0.017425537109375, -0.045989990234375, 0.020599365234375, 0.035858154296875, 0.039306640625, -0.021087646484375, 0.0017442703247070312, -0.01284027099609375, -0.005645751953125, -0.06146240234375, 0.00963592529296875, -0.0257110595703125, 0.01922607421875, 0.026153564453125, 0.0028667449951171875, -0.038055419921875, 0.034423828125, -0.0205230712890625, 0.0110321044921875, 0.0256500244140625, 0.0004138946533203125, -0.0146636962890625, -0.0237884521484375, 0.000032961368560791016, 0.01058197021484375, -0.0474853515625, -0.055145263671875, -0.005847930908203125, -0.0240936279296875, -0.01493072509765625, 0.003162384033203125, -0.0014896392822265625, 0.0269775390625, -0.0259552001953125, -0.0012073516845703125, -0.048187255859375, 0.01233673095703125, 0.043609619140625, 0.01385498046875, 0.057952880859375, 0.009918212890625, -0.0399169921875, 0.0206298828125, 0.028717041015625, -0.024017333984375, -0.0108489990234375, -0.00510406494140625, -0.004512786865234375, -0.01532745361328125, -0.032623291015625, 0.0286102294921875, 0.0081939697265625, -0.00637054443359375, -0.0121612548828125, 0.013336181640625, 0.061126708984375, 0.00476837158203125, 0.03533935546875, -0.007450103759765625, 0.002033233642578125, -0.0125579833984375, 0.021514892578125, 0.00171661376953125, 0.01116180419921875, 0.00292205810546875, 0.040130615234375, 0.0150146484375, -0.01544189453125, 0.0033168792724609375, -0.01348114013671875, 0.0166473388671875, 0.004703521728515625, -0.0209503173828125, -0.0084991455078125, -0.052764892578125, -0.00339508056640625, 0.0249176025390625, 0.0635986328125, -0.031768798828125, -0.05743408203125, -0.0199737548828125, 0.0233612060546875, -0.08587646484375, -0.09051513671875, 0.060302734375, -0.0655517578125, 0.01322174072265625, -0.02520751953125, -0.045806884765625, -0.0266876220703125, 0.01169586181640625, -0.006313323974609375, -0.0208282470703125, -0.037078857421875, -0.0677490234375, -0.058563232421875, -0.061798095703125, 0.038970947265625, -0.01049041748046875, 0.0168914794921875, 0.00925445556640625, 0.046112060546875, -0.0006241798400878906, -0.04864501953125, -0.01166534423828125, 0.0305938720703125, -0.00742340087890625, -0.01345062255859375, -0.0265655517578125, 0.0019893646240234375, 0.0185546875, 0.0030574798583984375, -0.03704833984375, -0.00920867919921875, 0.0147552490234375, -0.0272064208984375, -0.01971435546875, -0.04327392578125, -0.04046630859375, 0.0193328857421875, 0.035552978515625, -0.0662841796875, -0.0096282958984375, -0.0689697265625, 0.01355743408203125, 0.0193328857421875, -0.005859375, -0.036956787109375, 0.008697509765625, -0.036407470703125, -0.0018253326416015625, -0.047637939453125, -0.025848388671875, -0.03857421875, -0.006256103515625, -0.062164306640625, 0.0980224609375, -0.003810882568359375, 0.01290130615234375, 0.006282806396484375, 0.0012149810791015625, -0.0067138671875, 0.00485992431640625, -0.017608642578125, 0.0469970703125, -0.033355712890625, 0.07122802734375, -0.07818603515625, -0.055572509765625, 0.0302581787109375, -0.03521728515625, 0.004756927490234375, -0.0198822021484375, -0.00955963134765625, 0.01474761962890625, 0.0865478515625, -0.012542724609375, -0.02008056640625, 0.018341064453125, -0.0048370361328125, -0.00020015239715576172, 0.01383209228515625, -0.04595947265625, -0.031219482421875, -0.034271240234375, -0.00305938720703125, -0.039794921875, 0.00012958049774169922, 0.0017614364624023438, -0.070556640625, -0.005313873291015625, -0.05621337890625, 0.032989501953125, -0.025146484375, 0.03509521484375, -0.0222625732421875, 0.0227508544921875, -0.0531005859375, -0.01309967041015625, -0.0167236328125, -0.01496124267578125, 0.0021648406982421875, -0.004146575927734375, -0.00508880615234375, 0.0063934326171875, -0.0218963623046875, 0.0115509033203125, 0.0242462158203125, 0.005229949951171875, 0.0158538818359375, -0.01129913330078125, -0.00023257732391357422, 0.00948333740234375, -0.01263427734375, -0.01200103759765625, -0.005645751953125, 0.0016794204711914062, 0.023406982421875, -0.0609130859375, 0.02642822265625, -0.006816864013671875, -0.01467132568359375, 0.04498291015625, -0.053802490234375, -0.062255859375, -0.06072998046875, -0.0926513671875, -0.03533935546875, -0.0171966552734375, -0.048858642578125, -0.041900634765625, -0.087890625, 0.028472900390625, -0.0340576171875, 0.0160980224609375, 0.0125885009765625, 0.07696533203125, 0.0240631103515625, 0.0011844635009765625, 0.009613037109375, 0.01111602783203125, 0.027740478515625, -0.0035266876220703125, 0.0172882080078125, -0.037139892578125, -0.0411376953125, 0.08917236328125, -0.01232147216796875, 0.02471923828125, 0.00726318359375, 0.0240478515625, 0.0231781005859375, 0.030792236328125, -0.02557373046875, 0.0445556640625, -0.046966552734375, -0.01861572265625, -0.01290130615234375, 0.037933349609375, 0.01294708251953125, -0.05194091796875, -0.0369873046875, 0.048431396484375, 0.0560302734375, -0.048828125, 0.01557159423828125, -0.0011053085327148438, 0.026702880859375, 0.0013017654418945312, -0.0010251998901367188, 0.0183563232421875, 0.0160064697265625, -0.022613525390625, -0.04443359375, -0.041656494140625, -0.005962371826171875, 0.01380157470703125, -0.041229248046875, 0.0038604736328125, -0.02294921875, 0.0058441162109375, 0.024749755859375, 0.005062103271484375, -0.03656005859375, -0.0273284912109375, 0.014923095703125, -0.028076171875, 0.01561737060546875, -0.022125244140625, 0.0330810546875, 0.0084991455078125, -0.01537322998046875, 0.0026340484619140625, -0.006664276123046875, -0.027374267578125, -0.031280517578125, 0.00762939453125, 0.031890869140625, -0.0225677490234375, -0.0275115966796875, 0.07830810546875, -0.0098114013671875, 0.02679443359375, -0.003326416015625, 0.0318603515625, 0.07952880859375, -0.00832366943359375, 0.02960205078125, 0.004241943359375, -0.0423583984375, 0.0016984939575195312, -0.01500701904296875, -0.0140838623046875, -0.0159454345703125, -0.03668212890625, 0.00742340087890625, -0.060455322265625, -0.0117950439453125, 0.063720703125, 0.013885498046875, -0.0022792816162109375, 0.012603759765625, -0.037811279296875, -0.0029659271240234375, -0.039642333984375, -0.01488494873046875, 0.040130615234375, 0.0012607574462890625, 0.01119232177734375, 0.0289764404296875, 0.005268096923828125, -0.0021533966064453125, 0.04119873046875, -0.0284881591796875, -0.0020656585693359375, -0.00045943260192871094, 0.06365966796875, 0.0197296142578125, -0.01096343994140625, -0.0421142578125, -0.0116424560546875, -0.02764892578125, -0.0021209716796875, 0.07440185546875, -0.028900146484375, 0.017333984375, -0.020660400390625, -0.006778717041015625, -0.054931640625, 0.00287628173828125, 0.069580078125, 0.056365966796875, -0.043121337890625, -0.021240234375, -0.0267181396484375, -0.0171356201171875, 0.046295166015625, -0.0014371871948242188, -0.0181884765625, -0.008148193359375, 0.0305938720703125, 0.0235748291015625, -0.0068817138671875, -0.064208984375, -0.0178680419921875, -0.0143585205078125, 0.0469970703125, -0.0032291412353515625, -0.016510009765625, 0.029571533203125, 0.0091705322265625, 0.0271148681640625, 0.0076446533203125, -0.0014581680297851562, -0.0239410400390625, -0.0202789306640625, 0.0202178955078125, -0.0728759765625, -0.031982421875, -0.033782958984375, -0.009246826171875, 0.05364990234375, 0.031951904296875, -0.0002589225769042969, -0.0386962890625, 0.0105133056640625, 0.01396942138671875, 0.0037326812744140625, 0.00008815526962280273, 0.04071044921875, -0.07244873046875, 0.055633544921875, -0.02154541015625, 0.0210113525390625, -0.021636962890625, 0.015594482421875, -0.01837158203125, -0.01708984375, -0.01557159423828125, 0.04071044921875, -0.03326416015625, 0.036163330078125, 0.0640869140625, -0.021484375, 0.0478515625, 0.0206146240234375, -0.0015153884887695312, 0.036865234375, 0.08251953125, -0.044403076171875, -0.07037353515625, 0.0156402587890625, 0.01140594482421875, -0.053192138671875, -0.0201568603515625, -0.027252197265625, -0.025787353515625, 0.06201171875, 0.051177978515625, -0.067626953125, -0.0242462158203125, 0.0051422119140625, -0.02008056640625, -0.036102294921875, -0.0136260986328125, -0.006679534912109375, -0.06878662109375, 0.0050048828125, 0.02685546875, -0.0190887451171875, -0.0207977294921875, -0.0061187744140625, 0.0021305084228515625, 0.00007683038711547852, 0.06170654296875, 0.015899658203125, -0.052001953125, 0.00542449951171875, 0.0238800048828125, -0.00386810302734375, -0.0203399658203125, -0.002376556396484375, -0.0181427001953125, -0.029937744140625, -0.036407470703125, -0.00681304931640625, -0.01132965087890625, -0.0008139610290527344, -0.04638671875, -0.01019287109375, 0.036102294921875, 0.031158447265625, -0.01092529296875, -0.043914794921875, 0.020477294921875, -0.0408935546875, 0.0099639892578125, -0.0188751220703125, 0.00612640380859375, 0.04595947265625, -0.061004638671875, 0.017974853515625, -0.0005044937133789062, 0.01387786865234375, -0.007015228271484375, -0.01407623291015625, 0.025543212890625, -0.042999267578125, -0.0005769729614257812, 0.0206451416015625, 0.0452880859375, 0.007236480712890625, -0.00453948974609375, 0.007183074951171875, -0.0167694091796875, 0.045196533203125, -0.0146331787109375, 0.0243072509765625, 0.01666259765625, -0.005008697509765625, -0.0205078125, 0.08489990234375, 0.0257720947265625, -0.0208587646484375, 0.01158905029296875, 0.055450439453125, -0.0300445556640625, 0.0333251953125, -0.0287628173828125, 0.0418701171875, -0.021484375, 0.0230712890625, -0.07476806640625, -0.0020599365234375, -0.0137786865234375, 0.016815185546875, 0.018951416015625, 0.0009131431579589844, -0.05255126953125, -0.0277557373046875, 0.01363372802734375, 0.03680419921875, 0.0164642333984375, 0.04205322265625, 0.005764007568359375, -0.02642822265625, -0.005157470703125, 0.008392333984375, 0.033172607421875, -0.061553955078125, -0.0146636962890625, 0.011627197265625, 0.0129241943359375, 0.006389617919921875, -0.0002149343490600586, -0.02838134765625, 0.00363922119140625, -0.00553131103515625, -0.004669189453125, -0.015960693359375, 0.00405120849609375, 0.0158538818359375, -0.0022335052490234375, 0.01169586181640625, -0.014862060546875, -0.008056640625, 0.0265045166015625, -0.0083160400390625, -0.03070068359375, 0.025054931640625, -0.0009646415710449219, 0.013702392578125, 0.01538848876953125, -0.03240966796875, 0.021514892578125, 0.0279388427734375, 0.058807373046875, -0.0203704833984375, -0.002262115478515625, -0.056365966796875, 0.01971435546875, 0.006526947021484375, 0.055419921875, -0.053558349609375, -0.0044708251953125, 0.0103759765625, -0.0045318603515625, 0.0283355712890625, -0.046112060546875, 0.041473388671875, -0.031951904296875, -0.051605224609375, -0.02178955078125, -0.0010700225830078125, 0.0012035369873046875, 0.035003662109375, 0.004352569580078125, 0.040008544921875, -0.04229736328125, -0.0228424072265625, -0.02484130859375, 0.00443267822265625, 0.0124359130859375, 0.016387939453125, 0.005908966064453125, 0.0179595947265625, 0.0260162353515625, 0.00405120849609375, -0.019744873046875, 0.031005859375, 0.028167724609375, 0.0159759521484375, -0.039031982421875, -0.0279693603515625, 0.041900634765625, 0.045745849609375, -0.03582763671875, 0.006195068359375, 0.0290374755859375, 0.065185546875, -0.0210723876953125, -0.0313720703125, 0.0390625, -0.0180511474609375, -0.047454833984375, -0.0095062255859375, -0.1085205078125, -0.0170440673828125, -0.056121826171875, 0.032562255859375, -0.0469970703125, 0.0005168914794921875, -0.0263671875, 0.015899658203125, -0.004199981689453125, -0.007686614990234375, 0.0037021636962890625, -0.04248046875, 0.0034999847412109375, -0.0173797607421875, -0.07000732421875, -0.03955078125, 0.014556884765625, -0.00196075439453125, -0.004131317138671875, 0.037841796875, 0.039642333984375, -0.019866943359375, 0.0166778564453125, -0.01509857177734375, 0.006282806396484375, -0.003269195556640625, 0.01031494140625, -0.0277557373046875, 0.0125732421875, -0.007091522216796875, 0.0175628662109375, 0.01262664794921875, 0.032684326171875, 0.0219268798828125, 0.03460693359375, -0.02606201171875, 0.0203857421875, 0.014434814453125, -0.018218994140625, 0.0230560302734375, -0.043304443359375, -0.0201568603515625, 0.0093231201171875, -0.01175689697265625, -0.0235137939453125, 0.0010976791381835938, -0.008697509765625, 0.0019969940185546875, 0.003505706787109375, -0.015899658203125, -0.01508331298828125, -0.041229248046875, 0.032745361328125, 0.045745849609375, 0.02508544921875, -0.02325439453125, -0.07232666015625, -0.0718994140625, 0.0268707275390625, 0.0202178955078125, 0.055145263671875, -0.018280029296875, 0.00861358642578125, 0.0128631591796875, 0.01219940185546875, 0.0207366943359375, 0.01413726806640625, 0.01303863525390625, 0.01806640625, -0.024749755859375, 0.0004036426544189453, 0.0002551078796386719, -0.00782012939453125, 0.006252288818359375, 0.00392913818359375, 0.01532745361328125, 0.0171051025390625, 0.00220489501953125, 0.00778961181640625, 0.028289794921875, 0.00499725341796875, -0.0369873046875, 0.00540924072265625, 0.0340576171875, -0.0194549560546875, 0.01548004150390625, 0.0343017578125, -0.007511138916015625, 0.0164642333984375, -0.0231781005859375, -0.009613037109375, 0.0526123046875, 0.005229949951171875, 0.056396484375, 0.01556396484375, 0.03045654296875, -0.02264404296875, -0.00617218017578125, -0.01090240478515625, -0.048065185546875, 0.055206298828125, -0.017303466796875, 0.0267486572265625, -0.004558563232421875, -0.002166748046875, -0.08306884765625, -0.023101806640625, -0.0377197265625, -0.002246856689453125, -0.04608154296875, -0.0254058837890625, -0.0009126663208007812, -0.004039764404296875, -0.0149993896484375, -0.0350341796875, -0.0020389556884765625, 0.006427764892578125, -0.00029397010803222656, -0.0084381103515625, -0.0249786376953125, 0.03668212890625, -0.0305938720703125, -0.053497314453125, 0.0273590087890625, -0.048858642578125, -0.0083160400390625, -0.033355712890625, 0.03924560546875, 0.051605224609375, -0.036346435546875, -0.08111572265625, 0.03802490234375, -0.03289794921875, -0.0361328125, -0.047149658203125, -0.0205841064453125, 0.0031566619873046875, -0.0270233154296875, -0.043609619140625, 0.01666259765625, -0.036712646484375, 0.058380126953125, 0.00838470458984375, 0.014984130859375, -0.0002092123031616211, 0.0275115966796875, 0.0005350112915039062, 0.05267333984375, 0.039306640625, -0.00873565673828125, -0.03411865234375, -0.0197601318359375, 0.0191802978515625, 0.00926971435546875, -0.0330810546875, -0.03460693359375, 0.03802490234375, 0.0253753662109375, -0.0089263916015625, -0.04376220703125, -0.02227783203125, -0.04498291015625, 0.027313232421875, 0.02386474609375, 0.0009074211120605469, 0.0139923095703125, -0.06329345703125, -0.0631103515625, 0.0031795501708984375, -0.002414703369140625, 0.0001863241195678711, -0.032806396484375, 0.031341552734375, -0.017181396484375, -0.01299285888671875, -0.004108428955078125, -0.007503509521484375, -0.0243988037109375, -0.00662994384765625, -0.01061248779296875, -0.0292816162109375, 0.00774383544921875, -0.03448486328125, 0.040740966796875, -0.014617919921875, 0.028289794921875, 0.00499725341796875, 0.0179595947265625, 0.0235137939453125, 0.061065673828125, -0.03350830078125, 0.0156707763671875, -0.0248565673828125, 0.0303192138671875, -0.0186614990234375, 0.035614013671875, -0.0259246826171875, 0.0227508544921875, 0.0070953369140625, 0.00710296630859375, -0.0107269287109375, 0.018157958984375, 0.00318145751953125, -0.015960693359375, -0.03863525390625, 0.017730712890625, 0.01031494140625, -0.01296234130859375, -0.028289794921875, 0.0537109375, -0.0213165283203125, -0.0130157470703125, -0.023834228515625, -0.003734588623046875, 0.017974853515625, 0.023895263671875, 0.0714111328125, -0.027252197265625, 0.06329345703125, -0.004055023193359375, 0.0443115234375, 0.0247344970703125 ]
823c8ff289b0603e75527d864c63a2b482af0b6a
Wordpress Stackexchange Q: How do I create a specific login page for a specific user? I wonder, how can I create two separate login pages for two specific users? Say, for example: I have two users on my site. Admin and Viewer. On my site's frontend I want to create two different login pages. One login form for Admin only and one login form for Viewer only. I want them to be on a different url too. I hope you could help me with this issue. Thanks! A: On-topic answer: You can just put <?php wp_login_form(); ?> into any of your theme templates to render a login form on the front end of your site. Or make your own shortcode [loginform] by putting this into your theme's functions.php: function wpse_242473_login_form() { return wp_login_form( 'echo' => false ); } add_shortcode( 'loginform', 'wpse_242473_login_form' );
Q: How do I create a specific login page for a specific user? I wonder, how can I create two separate login pages for two specific users? Say, for example: I have two users on my site. Admin and Viewer. On my site's frontend I want to create two different login pages. One login form for Admin only and one login form for Viewer only. I want them to be on a different url too. I hope you could help me with this issue. Thanks! A: On-topic answer: You can just put <?php wp_login_form(); ?> into any of your theme templates to render a login form on the front end of your site. Or make your own shortcode [loginform] by putting this into your theme's functions.php: function wpse_242473_login_form() { return wp_login_form( 'echo' => false ); } add_shortcode( 'loginform', 'wpse_242473_login_form' ); A: There is the function wp_login_form( [ /* array of arguments */ ] ), which displays a login form that you can put into every template. When you look at the internals, you will see that the forms action points to: esc_url( site_url( 'wp-login.php', 'login_post' ) ) …(at least if you did not use the $args['redirect'] argument). This means that wp-login.php handles the sign on. Now you have multiple options: * *You can use the arguments for the function or globally set the filter login_form_defaults, which allows you to alter the default values, like redirect, which per default points to the current site: ( is_ssl() ? 'https://' : 'http://' ) . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'], Then you can use a filter to redirect based on the role (or perform a log out if the logged in user role did not match the role that you want to allow logging in from this template): apply_filters( 'login_redirect', $redirect_to, $requested_redirect_to, $user ); *You scratch that idea as you can not determine the difference between an admin and a guest as you do not know the role of a user before they logged in. A: For a custom register user form, you can use Advanced Custom Fields to create a front-end form. You can set up the custom fields for the registration using ACF, and set the location rules for the field group when User Form is equal to Register, and Add/Edit. I did something similar, hooking into the acf/pre_save_post filter and doing the following: * *sanitize the inputs *register the user with register_new_user(), which handles the password generation and email notification *use wp_update_user() and update_user_meta() to map the appropriate custom ACF fields to custom WP user profile fields *set the new user's role *use wp_mail() to email admin if required Some more information on registering a user with ACF here. function my_pre_save_user( $post_id ) { // If we have an email address, add the user // This field only exists in the new user field group if ( isset($_POST['acf']['add acf_field_ID here']) && !empty($_POST['acf']['add acf_field_ID here'])) { // sanitize our inputs $sanitized_email = sanitize_email( $_POST['acf']['add acf_field_ID here'] ); $sanitized_firstname = sanitize_text_field( $_POST['acf']['add acf_field_ID here'] ); $sanitized_lastname = sanitize_text_field( $_POST['acf']['add acf_field_ID here'] ); $sanitized_contactnumber = sanitize_text_field( $_POST['acf']['add acf_field_ID here'] ); // Prepare basic user info $username = $sanitized_email; $email = $sanitized_email; $display_name = $sanitized_firstname .' '. $sanitized_lastname; // Register the user and store the ID as $user_id, handles the validation, generates random password and send email notification to user $user_id = register_new_user( $username, $email ); // If we get an error (eg user already exists) if( is_wp_error( $user_id ) ) { // Show the error echo 'Error: '.$user_id->get_error_message(); // Exit exit; // Good to go } else { // get single value from post object $dmc_get_company_field = $_POST['acf']['add acf_field_ID here']; $dmc_selected_exhibitor = get_field( $dmc_get_company_field ); // Update the new user's info wp_update_user( array( 'ID' => $user_id, 'first_name' => $sanitized_firstname, 'last_name' => $sanitized_lastname, 'display_name' => $display_name )); // update the new users's meta update_user_meta( $user_id, 'dmc_exhibitor_company_name', $dmc_get_company_field ); update_user_meta( $user_id, 'dmc_exhibitor_contact_number', $sanitized_contactnumber ); // update user role $user_id_role = new WP_User( $user_id ); $user_id_role->set_role( 'contributor' ); $profile_link = get_edit_user_link( $user_id ); $to = "[add email addresses here]"; $headers[] = 'MIME-Version: 1.0'; $headers[] = 'Content-Type: text/html; charset=UTF-8'; $headers[] = 'Reply-To: '. $username. ' <'. $email .'>'; $subject = "[add email subject here]"; $body = "[add email body here]"; // send the email wp_mail( $to, $subject, $body, $headers ); // redirect to thankyou page $redirect_url = get_bloginfo('url') . '[add URL to redirect to here]'; wp_redirect( $redirect_url ); // exit this script exit; } } else { return $post_id; } } add_filter('acf/pre_save_post' , 'my_pre_save_user' ); A: If you are trying to achieve a separate login form on a different page than the one for admins then you can easily use a plugin. There are multiple ones, free or premium. I will list "Custom Frontend Login Registration Form" as I already worked with it in the past. You can reach it on WordPress Repository. It will generate a shortcode you can use on a custom page for your Viewer only users. The plugin also comes with registration shortcode, so will make your visitor's life easier. Hope this answer your question.
wordpress
{ "language": "en", "length": 839, "provenance": "stackexchange_00019.jsonl.gz:469252", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/242631" }
[ 0.048828125, -0.0175018310546875, -0.004718780517578125, -0.030120849609375, -0.01490020751953125, -0.03656005859375, 0.03607177734375, -0.0007100105285644531, -0.0672607421875, 0.0113677978515625, 0.017822265625, 0.03057861328125, -0.050811767578125, -0.03070068359375, 0.0247650146484375, -0.0394287109375, -0.004261016845703125, 0.030242919921875, 0.0195159912109375, -0.0293426513671875, 0.023406982421875, -0.0196685791015625, -0.0234222412109375, 0.01450347900390625, -0.005474090576171875, -0.037841796875, 0.08099365234375, -0.00989532470703125, 0.01433563232421875, -0.0003979206085205078, 0.0129547119140625, -0.036865234375, 0.02838134765625, 0.007419586181640625, -0.025177001953125, -0.01849365234375, -0.0277557373046875, 0.004657745361328125, -0.0031223297119140625, -0.00069427490234375, 0.0343017578125, -0.018463134765625, -0.0044708251953125, 0.0186920166015625, -0.029815673828125, -0.01934814453125, 0.022064208984375, -0.0125274658203125, 0.0123138427734375, 0.01195526123046875, 0.01214599609375, -0.0005888938903808594, 0.022369384765625, -0.0145111083984375, -0.0184173583984375, -0.015838623046875, 0.0004127025604248047, -0.0295257568359375, 0.044952392578125, -0.002422332763671875, -0.032073974609375, -0.049224853515625, 0.036895751953125, -0.032318115234375, -0.009765625, 0.005420684814453125, -0.0199737548828125, 0.0305328369140625, 0.0276031494140625, -0.032440185546875, -0.031951904296875, -0.005893707275390625, 0.00592803955078125, 0.006855010986328125, -0.04315185546875, 0.02294921875, -0.00843048095703125, 0.03253173828125, 0.042083740234375, -0.0229034423828125, -0.040313720703125, -0.01213836669921875, -0.0775146484375, -0.022064208984375, 0.01511383056640625, 0.0186920166015625, -0.0328369140625, -0.0126800537109375, -0.009552001953125, -0.0102081298828125, -0.008941650390625, -0.03564453125, -0.01197052001953125, 0.0416259765625, -0.0052642822265625, -0.01084136962890625, 0.0173797607421875, 0.0311279296875, 0.01409912109375, 0.003467559814453125, 0.004749298095703125, -0.04541015625, 0.01041412353515625, -0.022857666015625, 0.004581451416015625, 0.07586669921875, 0.021209716796875, 0.018768310546875, 0.001132965087890625, -0.01739501953125, 0.0218505859375, 0.01204681396484375, -0.0287933349609375, -0.037200927734375, 0.006305694580078125, 0.03594970703125, -0.0265655517578125, 0.01332855224609375, -0.0006656646728515625, 0.0013360977172851562, -0.053070068359375, -0.02301025390625, 0.045562744140625, -0.010528564453125, -0.004650115966796875, -0.016754150390625, 0.003864288330078125, -0.0303497314453125, 0.035247802734375, 0.0290679931640625, -0.05224609375, -0.0184173583984375, 0.079833984375, 0.055328369140625, 0.042327880859375, -0.0305328369140625, 0.00061798095703125, -0.00989532470703125, -0.00946044921875, 0.030975341796875, 0.004390716552734375, -0.061981201171875, -0.0028400421142578125, 0.005252838134765625, -0.032379150390625, 0.0254058837890625, 0.018646240234375, 0.01983642578125, -0.01027679443359375, -0.052215576171875, -0.00997161865234375, -0.0226287841796875, -0.03668212890625, 0.023895263671875, 0.036224365234375, 0.041290283203125, 0.00864410400390625, 0.01052093505859375, 0.01029205322265625, 0.039581298828125, 0.0260467529296875, 0.0120849609375, 0.0243072509765625, -0.0267791748046875, -0.0242462158203125, -0.044830322265625, -0.06048583984375, -0.005283355712890625, 0.0183258056640625, -0.0221099853515625, 0.02020263671875, 0.0034770965576171875, -0.00464630126953125, 0.03448486328125, 0.03692626953125, 0.03887939453125, -0.0283203125, 0.046051025390625, 0.01216888427734375, -0.01085662841796875, 0.00370025634765625, -0.0293426513671875, 0.0228424072265625, 0.0211029052734375, -0.025604248046875, 0.043670654296875, 0.0179901123046875, 0.04693603515625, -0.025909423828125, 0.01532745361328125, 0.005847930908203125, 0.05120849609375, -0.002285003662109375, -0.003963470458984375, -0.00069427490234375, -0.04388427734375, -0.004116058349609375, -0.026763916015625, -0.01043701171875, 0.0374755859375, 0.0285491943359375, -0.0202484130859375, 0.01033782958984375, 0.0159759521484375, 0.01482391357421875, -0.00936126708984375, 0.00579833984375, -0.01474761962890625, -0.011932373046875, -0.01239776611328125, 0.01409149169921875, -0.0077972412109375, -0.01010894775390625, -0.0443115234375, -0.032135009765625, 0.0187530517578125, -0.029998779296875, 0.039306640625, 0.0006289482116699219, 0.0302276611328125, 0.004131317138671875, -0.03424072265625, 0.0109100341796875, -0.019622802734375, 0.0347900390625, 0.002918243408203125, -0.0259857177734375, -0.01479339599609375, 0.01434326171875, 0.005550384521484375, -0.023284912109375, 0.04046630859375, 0.018035888671875, 0.040130615234375, -0.028350830078125, 0.014984130859375, -0.0110321044921875, 0.00890350341796875, -0.0130767822265625, 0.00696563720703125, 0.0316162109375, 0.0300445556640625, 0.0159759521484375, 0.037384033203125, 0.061309814453125, -0.0328369140625, 0.013946533203125, 0.00669097900390625, 0.0112152099609375, 0.031890869140625, 0.00897979736328125, 0.000050902366638183594, 0.0167388916015625, -0.05352783203125, 0.0094451904296875, 0.0362548828125, -0.01177215576171875, 0.005870819091796875, 0.030029296875, -0.023193359375, -0.01091766357421875, -0.046661376953125, -0.00588226318359375, -0.02886962890625, -0.01071929931640625, -0.01031494140625, 0.00690460205078125, 0.0010471343994140625, 0.00177001953125, -0.01320648193359375, 0.0032176971435546875, -0.046478271484375, -0.01251983642578125, -0.03887939453125, 0.025054931640625, -0.011810302734375, -0.03369140625, 0.029541015625, 0.01026153564453125, -0.03387451171875, -0.02459716796875, 0.0210113525390625, -0.040863037109375, -0.01210784912109375, -0.0081024169921875, -0.05145263671875, -0.00504302978515625, -0.001438140869140625, 0.053070068359375, -0.00806427001953125, 0.0247344970703125, -0.0243072509765625, -0.043243408203125, 0.06463623046875, 0.0262451171875, -0.06390380859375, 0.002635955810546875, -0.05316162109375, 0.0684814453125, -0.07373046875, 0.0304107666015625, 0.0545654296875, -0.043792724609375, 0.03497314453125, -0.01119232177734375, 0.00103759765625, -0.0215911865234375, 0.017059326171875, 0.0166168212890625, -0.045013427734375, 0.031982421875, 0.047515869140625, 0.0282745361328125, 0.0274505615234375, 0.02545166015625, -0.01788330078125, 0.0110626220703125, 0.039520263671875, 0.0330810546875, 0.023529052734375, -0.068359375, -0.06744384765625, 0.04150390625, 0.00672149658203125, -0.01068878173828125, 0.003444671630859375, 0.044830322265625, 0.03497314453125, -0.0013399124145507812, -0.0335693359375, -0.0305023193359375, -0.0283050537109375, -0.0231475830078125, 0.043701171875, -0.00640106201171875, 0.0020236968994140625, 0.01479339599609375, 0.0396728515625, 0.0055389404296875, -0.0286865234375, 0.0023441314697265625, 0.040863037109375, -0.025054931640625, -0.03314208984375, -0.0165557861328125, -0.01493072509765625, -0.0006866455078125, 0.002971649169921875, -0.0008568763732910156, -0.0295867919921875, 0.033355712890625, -0.017791748046875, 0.008636474609375, -0.024261474609375, 0.010772705078125, 0.0195770263671875, -0.0267486572265625, -0.01189422607421875, 0.024169921875, -0.048797607421875, 0.013092041015625, -0.0215606689453125, -0.050262451171875, -0.038055419921875, 0.0270843505859375, -0.0230712890625, -0.0032806396484375, -0.052734375, 0.0153961181640625, 0.016571044921875, 0.0206451416015625, 0.005725860595703125, -0.027313232421875, -0.004673004150390625, 0.0098114013671875, -0.01335906982421875, -0.0030651092529296875, -0.0404052734375, 0.005443572998046875, -0.0184478759765625, -0.011688232421875, 0.00012022256851196289, 0.004302978515625, 0.03570556640625, -0.08563232421875, 0.0777587890625, 0.0085906982421875, 0.01690673828125, -0.054962158203125, -0.047821044921875, -0.0126190185546875, 0.11566162109375, -0.0283660888671875, 0.02105712890625, 0.00001710653305053711, 0.0002505779266357422, -0.03900146484375, -0.04296875, -0.09674072265625, 0.007427215576171875, -0.054168701171875, -0.0215301513671875, -0.00766754150390625, -0.02764892578125, 0.0006856918334960938, -0.0250396728515625, -0.0166778564453125, -0.048828125, 0.0203094482421875, 0.035125732421875, 0.00798797607421875, -0.00691986083984375, -0.0008378028869628906, -0.020904541015625, 0.0036411285400390625, -0.0006546974182128906, -0.042999267578125, -0.004489898681640625, -0.01271820068359375, 0.03424072265625, 0.031982421875, -0.056304931640625, -0.00978851318359375, 0.01175689697265625, -0.00862884521484375, 0.019195556640625, -0.0018339157104492188, -0.00479888916015625, 0.02777099609375, 0.03802490234375, -0.00399017333984375, 0.01386260986328125, 0.007015228271484375, -0.02056884765625, -0.0168609619140625, 0.003612518310546875, -0.045654296875, 0.033477783203125, -0.00885009765625, -0.0177001953125, -0.038818359375, -0.0214385986328125, 0.0189971923828125, 0.0230255126953125, 0.0109710693359375, -0.005176544189453125, -0.021575927734375, -0.03839111328125, 0.0269775390625, 0.027587890625, -0.023406982421875, 0.0193634033203125, 0.045196533203125, 0.005168914794921875, -0.0293121337890625, -0.06549072265625, 0.01751708984375, 0.03240966796875, -0.0108489990234375, 0.043975830078125, 0.023956298828125, -0.024505615234375, 0.05401611328125, 0.010467529296875, 0.00611114501953125, -0.006671905517578125, 0.01055908203125, -0.0216827392578125, -0.06561279296875, 0.046722412109375, -0.030914306640625, 0.004795074462890625, -0.008941650390625, 0.00600433349609375, 0.0010404586791992188, -0.006931304931640625, -0.0273895263671875, 0.0258026123046875, -0.0125579833984375, 0.032928466796875, -0.0200042724609375, -0.00321197509765625, 0.006221771240234375, 0.014801025390625, 0.037689208984375, -0.00760650634765625, 0.0028934478759765625, 0.0225830078125, -0.042572021484375, 0.0240325927734375, -0.0256500244140625, 0.030853271484375, -0.00348663330078125, -0.02191162109375, -0.03619384765625, 0.0169830322265625, -0.01496124267578125, 0.07562255859375, 0.039794921875, -0.0266876220703125, 0.01404571533203125, -0.0204620361328125, -0.02886962890625, -0.0211334228515625, 0.0002989768981933594, 0.0256500244140625, -0.032379150390625, -0.01058197021484375, -0.005001068115234375, -0.0003457069396972656, -0.063232421875, -0.035247802734375, -0.025970458984375, -0.0249481201171875, -0.0129852294921875, -0.0008273124694824219, 0.054168701171875, -0.04986572265625, 0.05047607421875, -0.006084442138671875, 0.0289459228515625, 0.06280517578125, 0.0032520294189453125, 0.018829345703125, 0.01812744140625, -0.0297088623046875, -0.0149993896484375, -0.006511688232421875, -0.022674560546875, -0.00036907196044921875, 0.036102294921875, 0.0161285400390625, 0.019287109375, 0.006023406982421875, -0.0242462158203125, -0.014801025390625, 0.01195526123046875, 0.00228118896484375, -0.035888671875, -0.047698974609375, -0.01056671142578125, 0.033233642578125, 0.043121337890625, -0.041656494140625, -0.002307891845703125, -0.01291656494140625, -0.032989501953125, -0.00936126708984375, 0.045562744140625, -0.055511474609375, 0.004299163818359375, 0.007312774658203125, -0.01190185546875, -0.021270751953125, -0.01404571533203125, -0.04815673828125, 0.01314544677734375, -0.01332855224609375, -0.017822265625, 0.004497528076171875, -0.01995849609375, 0.0197296142578125, -0.0279998779296875, -0.01010894775390625, 0.00031375885009765625, -0.008148193359375, 0.05780029296875, 0.023895263671875, -0.027862548828125, 0.016815185546875, -0.04852294921875, -0.0088348388671875, -0.0171051025390625, -0.030975341796875, -0.035400390625, -0.032012939453125, 0.0120086669921875, 0.01503753662109375, -0.007778167724609375, -0.004184722900390625, 0.004604339599609375, 0.000782012939453125, -0.0120849609375, 0.016357421875, 0.004993438720703125, 0.078857421875, -0.02276611328125, 0.057952880859375, 0.00914764404296875, 0.05181884765625, -0.0132293701171875, -0.023193359375, 0.01593017578125, -0.02337646484375, -0.043212890625, -0.0280303955078125, 0.002666473388671875, 0.03228759765625, 0.0599365234375, -0.01514434814453125, -0.0008611679077148438, -0.00788116455078125, 0.00811767578125, -0.0231170654296875, 0.034332275390625, -0.0274200439453125, -0.01485443115234375, -0.003467559814453125, -0.0157470703125, 0.0106964111328125, -0.0157318115234375, -0.009552001953125, 0.03533935546875, -0.0186614990234375, 0.045745849609375, 0.0202789306640625, -0.01546478271484375, 0.028961181640625, 0.048370361328125, -0.004413604736328125, 0.03765869140625, 0.0298004150390625, 0.0244293212890625, 0.03265380859375, -0.0196533203125, -0.0287933349609375, 0.0467529296875, 0.06048583984375, 0.00748443603515625, -0.021820068359375, 0.0343017578125, -0.0261383056640625, 0.0218963623046875, 0.0765380859375, 0.060760498046875, -0.126708984375, 0.03411865234375, -0.005985260009765625, 0.0262908935546875, 0.055999755859375, 0.00116729736328125, 0.01134490966796875, -0.0037517547607421875, 0.0343017578125, 0.01549530029296875, 0.0095062255859375, 0.03497314453125, -0.0015039443969726562, -0.0201873779296875, -0.01397705078125, 0.01058197021484375, 0.00591278076171875, 0.006103515625, -0.01552581787109375, -0.0106048583984375, 0.0006122589111328125, -0.024993896484375, -0.016021728515625, 0.011962890625, -0.045074462890625, -0.09130859375, -0.0203399658203125, -0.0159149169921875, -0.01262664794921875, 0.0162506103515625, 0.01113128662109375, 0.0821533203125, 0.04547119140625, 0.01549530029296875, -0.0185089111328125, -0.0018625259399414062, 0.06488037109375, 0.032257080078125, -0.0210723876953125, -0.0161590576171875, 0.003368377685546875, -0.04052734375, 0.0011348724365234375, -0.032806396484375, 0.0019245147705078125, -0.030975341796875, -0.06585693359375, 0.07635498046875, 0.00707244873046875, -0.03167724609375, 0.0050811767578125, 0.0251617431640625, -0.00934600830078125, -0.0196990966796875, 0.01053619384765625, -0.07568359375, -0.0787353515625, -0.005435943603515625, -0.0780029296875, -0.004589080810546875, -0.0391845703125, -0.10845947265625, 0.06634521484375, -0.00606536865234375, 0.07574462890625, -0.0151519775390625, 0.002780914306640625, -0.00946044921875, -0.02691650390625, -0.04913330078125, 0.05596923828125, 0.05133056640625, 0.04193115234375, 0.01091766357421875, 0.01181793212890625, 0.040618896484375, -0.0192718505859375, 0.009613037109375, 0.0191650390625, -0.0137481689453125, -0.0010223388671875, 0.010284423828125, -0.00960540771484375, -0.0251922607421875, 0.055084228515625, 0.00954437255859375, -0.0126800537109375, 0.033203125, 0.0119781494140625, 0.044769287109375, -0.0045318603515625, -0.0165557861328125, 0.0148468017578125, -0.00986480712890625, -0.054046630859375, -0.0087432861328125, 0.052581787109375, -0.10748291015625, 0.0225982666015625, 0.0421142578125, 0.0484619140625, -0.0156097412109375, 0.02410888671875, -0.0041046142578125, 0.032135009765625, 0.034271240234375, -0.026763916015625, 0.03814697265625, 0.01096343994140625, -0.00091552734375, 0.04058837890625, 0.038360595703125, -0.04351806640625, -0.0004892349243164062, 0.01412200927734375, 0.0209197998046875, -0.043304443359375, 0.05023193359375, 0.01033782958984375, 0.003421783447265625, -0.06494140625, 0.006687164306640625, 0.0248260498046875, 0.0625, -0.0611572265625, -0.035125732421875, 0.0075836181640625, -0.0004324913024902344, 0.0298004150390625, 0.0216064453125, 0.0770263671875, 0.01247406005859375, 0.0219879150390625, -0.01226806640625, 0.01456451416015625, 0.00553131103515625, -0.0133819580078125, -0.005523681640625, 0.017547607421875, -0.00164031982421875, 0.046173095703125, -0.01351165771484375, 0.0153045654296875, 0.0065765380859375, 0.00394439697265625, -0.00970458984375, 0.0269317626953125, 0.015899658203125, 0.0110931396484375, -0.007205963134765625, 0.0237884521484375, -0.0141143798828125, -0.004974365234375, -0.032928466796875, -0.052459716796875, -0.01422882080078125, 0.03753662109375, -0.0003788471221923828, -0.003986358642578125, -0.003570556640625, 0.0013551712036132812, -0.0016937255859375, -0.0307159423828125, -0.020355224609375, -0.0259552001953125, 0.014495849609375, -0.029998779296875, -0.019866943359375, -0.0026340484619140625, -0.02490234375, -0.0259552001953125, -0.01873779296875, 0.0377197265625, -0.0285186767578125, 0.00896453857421875, -0.00426483154296875, -0.05889892578125, 0.01274871826171875, -0.044525146484375, 0.0745849609375, -0.01377105712890625, -0.075927734375, 0.005615234375, -0.04083251953125, -0.08123779296875, 0.039337158203125, 0.044769287109375, -0.0308380126953125, 0.007770538330078125, 0.055694580078125, -0.00337982177734375, -0.01557159423828125, -0.0038547515869140625, 0.045867919921875, -0.037750244140625, 0.0040435791015625, 0.015350341796875, -0.10595703125, -0.039459228515625, -0.05902099609375, 0.0240631103515625, 0.037506103515625, 0.06597900390625, 0.0107574462890625, 0.0253143310546875, -0.02081298828125, 0.0244140625, -0.0302276611328125, -0.04010009765625, 0.08111572265625, -0.022552490234375, -0.0260772705078125, 0.006725311279296875, 0.0037250518798828125, 0.06988525390625, -0.0150909423828125, 0.04083251953125, 0.04644775390625, -0.027069091796875, 0.003604888916015625, 0.02960205078125, 0.023651123046875, -0.0238800048828125, -0.0640869140625, -0.01192474365234375, 0.051666259765625, -0.013946533203125, 0.010223388671875, -0.0494384765625, 0.046630859375, -0.039764404296875, -0.0289764404296875, 0.00732421875, -0.061370849609375, -0.0229339599609375, 0.0145263671875, -0.0027904510498046875, 0.00803375244140625, -0.03277587890625, -0.028717041015625, 0.00738525390625, -0.0020618438720703125, -0.00534820556640625, -0.028656005859375, 0.0270843505859375, 0.0654296875, 0.037139892578125, 0.02349853515625, -0.0280303955078125, -0.027191162109375, 0.07098388671875, -0.0253753662109375, 0.01479339599609375, -0.03265380859375, -0.037994384765625, -0.039703369140625, 0.0258941650390625, 0.0266571044921875, 0.0261688232421875, -0.005706787109375, -0.043701171875, 0.033233642578125, 0.014190673828125, -0.00711822509765625, -0.0311431884765625, 0.03033447265625, -0.02398681640625, 0.04022216796875, -0.00966644287109375, -0.0029735565185546875, 0.017120361328125, 0.037506103515625, -0.03912353515625, 0.00002282857894897461, -0.0240936279296875, -0.010284423828125, -0.0283355712890625, -0.025177001953125, 0.0157318115234375, 0.0263519287109375, -0.01314544677734375, 0.0143585205078125, -0.052520751953125, 0.04815673828125, -0.0653076171875, -0.0251007080078125, -0.00531005859375, -0.006649017333984375, 0.0022449493408203125, -0.006946563720703125, 0.009033203125, -0.015228271484375, -0.0161895751953125, 0.0174102783203125, -0.011871337890625, 0.01031494140625, -0.040191650390625, -0.09088134765625, 0.0650634765625, -0.001560211181640625, -0.0361328125, -0.04705810546875, 0.044586181640625, -0.0093536376953125, -0.03472900390625, -0.02606201171875, -0.02203369140625, 0.015625, 0.031097412109375, 0.0146026611328125, -0.0181732177734375, 0.0214080810546875, 0.0618896484375, -0.0282135009765625, 0.045745849609375, 0.0175933837890625, -0.032745361328125, 0.027740478515625, 0.0015611648559570312, 0.032073974609375, 0.04119873046875, -0.02935791015625, 0.0138092041015625, -0.01580810546875, -0.0491943359375, -0.0020961761474609375, -0.040618896484375, 0.00384521484375, -0.01727294921875, 0.0236663818359375, 0.045318603515625, 0.0006275177001953125, -0.0024166107177734375, -0.060394287109375, -0.06829833984375, 0.018463134765625, -0.01409149169921875, 0.004642486572265625, -0.069580078125, -0.0006318092346191406, 0.0152587890625, -0.03082275390625, -0.002971649169921875, 0.022979736328125, -0.042816162109375, 0.015625, 0.0308074951171875, 0.017913818359375, -0.06378173828125, 0.01666259765625, 0.05126953125, -0.040863037109375, -0.0104522705078125, -0.007904052734375, 0.0126495361328125, 0.0215911865234375, -0.0233917236328125, 0.0263519287109375, 0.010650634765625, -0.0389404296875, 0.001918792724609375, 0.0091094970703125, 0.024169921875, -0.030517578125, -0.025970458984375, -0.01558685302734375, 0.020050048828125, 0.0025463104248046875, 0.0232086181640625, -0.00400543212890625, 0.02862548828125, 0.025604248046875, 0.028472900390625, 0.0027942657470703125, -0.0362548828125, -0.04132080078125, 0.04583740234375, -0.0062713623046875, -0.0280914306640625, 0.004730224609375, 0.0018091201782226562, 0.0019512176513671875, 0.0224761962890625, 0.01132965087890625, -0.0209503173828125, 0.034454345703125, 0.0225830078125, 0.022735595703125, 0.013153076171875 ]
7b7300cae0272ee6fcd4c86843ef5dc00d7bf92a
Wordpress Stackexchange Q: $wpdb->base_prefix not get parent site prefix in multisite I am using three site multi-site installation. When I use $wpdb->base_prefix some time it gives network site prefix instead of giving base site prefix. Any one face this problem? Can you please give any suggestion? A: Try $wpdb->get_blog_prefix like below: $base_prefix = $wpdb->get_blog_prefix(0); And use $base_prefix as base prefix. Let me know if this is not work for you.
Q: $wpdb->base_prefix not get parent site prefix in multisite I am using three site multi-site installation. When I use $wpdb->base_prefix some time it gives network site prefix instead of giving base site prefix. Any one face this problem? Can you please give any suggestion? A: Try $wpdb->get_blog_prefix like below: $base_prefix = $wpdb->get_blog_prefix(0); And use $base_prefix as base prefix. Let me know if this is not work for you. A: $wpdb->base_prefix gets the original prefix (ie, the 'root' site in a Multisite installation). It was added in Version 3.0.0, right when Multisite became a part of WordPress core. $wpdb->prefix will get the prefix for the current site in a Multisite installation. Per the documentation for the wpdb class: $prefix The assigned WordPress table prefix for the site. $base_prefix The original prefix as defined in wp-config.php. For multi-site: Use if you want to get the prefix without the blog number appended. (emphasis added)
wordpress
{ "language": "en", "length": 151, "provenance": "stackexchange_00019.jsonl.gz:469259", "question_score": "8", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/242644" }
[ -0.00911712646484375, -0.006198883056640625, -0.01515960693359375, -0.0062103271484375, -0.03515625, -0.0126190185546875, -0.02459716796875, -0.017059326171875, 0.01161956787109375, 0.016937255859375, -0.011627197265625, -0.01462554931640625, -0.047637939453125, -0.0255126953125, -0.0390625, -0.032257080078125, 0.0185699462890625, -0.0237579345703125, -0.012786865234375, -0.009552001953125, -0.011444091796875, -0.0068511962890625, -0.00998687744140625, 0.037445068359375, 0.0237884521484375, -0.059906005859375, 0.056793212890625, -0.00670623779296875, 0.01934814453125, -0.024322509765625, 0.0171661376953125, 0.0205841064453125, 0.03460693359375, -0.01454925537109375, -0.01229095458984375, -0.0023365020751953125, -0.00377655029296875, -0.0070037841796875, -0.0178680419921875, 0.051116943359375, -0.0112457275390625, 0.0145263671875, 0.047821044921875, 0.037872314453125, -0.0128021240234375, -0.044586181640625, 0.010467529296875, -0.02874755859375, 0.030792236328125, -0.040252685546875, 0.0020465850830078125, -0.03729248046875, 0.022003173828125, -0.01125335693359375, -0.042022705078125, -0.0169525146484375, 0.016204833984375, 0.0026874542236328125, 0.01010894775390625, -0.0079498291015625, -0.01580810546875, 0.058013916015625, 0.003368377685546875, -0.0021820068359375, 0.0001138448715209961, 0.01068878173828125, 0.0262451171875, 0.017242431640625, -0.029998779296875, -0.00838470458984375, 0.003337860107421875, -0.0238189697265625, 0.003917694091796875, 0.00995635986328125, -0.03778076171875, -0.046142578125, -0.0087432861328125, -0.07086181640625, 0.04644775390625, -0.00403594970703125, -0.0185546875, -0.01432037353515625, -0.064208984375, -0.0145263671875, -0.01250457763671875, 0.0009965896606445312, -0.01081085205078125, 0.004398345947265625, -0.053070068359375, 0.0203094482421875, -0.0301055908203125, -0.043792724609375, -0.04168701171875, 0.037078857421875, 0.0281982421875, -0.01013946533203125, 0.02642822265625, 0.06414794921875, -0.04888916015625, -0.043426513671875, -0.0217437744140625, -0.0030879974365234375, -0.0523681640625, -0.0177764892578125, 0.036834716796875, 0.0057220458984375, -0.01079559326171875, -0.00321197509765625, 0.07861328125, 0.0308074951171875, 0.01184844970703125, 0.071533203125, -0.0185699462890625, -0.032928466796875, -0.0296783447265625, -0.01519775390625, -0.044036865234375, -0.0111083984375, 0.0174102783203125, -0.05169677734375, -0.0181121826171875, 0.0180816650390625, -0.030120849609375, -0.0159149169921875, -0.003963470458984375, -0.0233154296875, -0.0013895034790039062, -0.00568389892578125, -0.047454833984375, -0.0160369873046875, -0.0177459716796875, 0.04290771484375, 0.0298614501953125, -0.015655517578125, -0.0168914794921875, -0.01371002197265625, 0.0103607177734375, 0.0185699462890625, 0.007778167724609375, 0.0090789794921875, 0.00852203369140625, -0.010467529296875, -0.00670623779296875, -0.0018463134765625, -0.00310516357421875, -0.007709503173828125, 0.04425048828125, 0.0340576171875, -0.0252227783203125, -0.02142333984375, 0.0031604766845703125, 0.033477783203125, 0.02703857421875, -0.00011199712753295898, 0.0008625984191894531, -0.066162109375, 0.007755279541015625, -0.038909912109375, 0.00928497314453125, -0.04931640625, -0.0016613006591796875, -0.0169219970703125, 0.03131103515625, -0.035247802734375, -0.06817626953125, 0.0144195556640625, -0.043670654296875, -0.02606201171875, 0.032806396484375, -0.00867462158203125, 0.0256195068359375, -0.037750244140625, 0.004398345947265625, 0.037628173828125, 0.022064208984375, 0.047088623046875, 0.0028362274169921875, -0.0104217529296875, 0.035369873046875, 0.00510406494140625, -0.01434326171875, -0.014068603515625, 0.0596923828125, -0.005275726318359375, -0.037567138671875, 0.03582763671875, 0.011444091796875, 0.08062744140625, -0.0173797607421875, 0.036407470703125, 0.0142669677734375, 0.0196990966796875, -0.0228118896484375, -0.00890350341796875, -0.00659942626953125, 0.006923675537109375, -0.03857421875, 0.030426025390625, -0.0311279296875, -0.036163330078125, -0.01221466064453125, -0.020904541015625, 0.047698974609375, 0.0026760101318359375, 0.032867431640625, -0.0033969879150390625, -0.015960693359375, 0.01111602783203125, 0.04962158203125, 0.007587432861328125, 0.005283355712890625, 0.040130615234375, -0.0213775634765625, -0.060577392578125, -0.064453125, 0.048492431640625, -0.0214691162109375, 0.016937255859375, 0.019134521484375, 0.0156707763671875, -0.0288848876953125, 0.018310546875, -0.033660888671875, -0.04608154296875, 0.0247955322265625, -0.03521728515625, -0.0003743171691894531, -0.0235595703125, 0.0201568603515625, 0.01148223876953125, -0.0306243896484375, 0.02117919921875, -0.01125335693359375, -0.01201629638671875, -0.0241851806640625, -0.007366180419921875, 0.0185699462890625, -0.036773681640625, 0.01334381103515625, 0.031890869140625, 0.03802490234375, 0.030853271484375, 0.0015430450439453125, -0.01212310791015625, 0.0311431884765625, -0.06671142578125, 0.00872039794921875, -0.01137542724609375, 0.0298919677734375, 0.10357666015625, -0.036834716796875, -0.006534576416015625, -0.005870819091796875, -0.039306640625, -0.03790283203125, 0.039886474609375, -0.00884246826171875, -0.0301361083984375, 0.0096435546875, 0.01026153564453125, 0.0135040283203125, -0.0062713623046875, -0.01849365234375, 0.016754150390625, -0.0179290771484375, 0.034210205078125, 0.0123443603515625, 0.0254974365234375, -0.0177001953125, 0.016143798828125, 0.0171356201171875, -0.0244140625, -0.0029754638671875, 0.0196685791015625, 0.0288238525390625, -0.02374267578125, -0.024261474609375, 0.0006709098815917969, -0.0274200439453125, -0.0016632080078125, -0.00969696044921875, 0.05364990234375, -0.0243988037109375, -0.01535797119140625, -0.03790283203125, -0.0157470703125, -0.0085601806640625, 0.010223388671875, -0.03729248046875, -0.0782470703125, -0.03271484375, 0.049835205078125, -0.006072998046875, 0.021575927734375, 0.024322509765625, -0.0213623046875, 0.0032405853271484375, -0.033233642578125, 0.038848876953125, -0.04913330078125, 0.0022602081298828125, 0.053131103515625, -0.0090484619140625, -0.00689697265625, -0.018218994140625, 0.016998291015625, -0.002166748046875, -0.02618408203125, -0.03961181640625, 0.0016422271728515625, -0.0753173828125, -0.004886627197265625, 0.01227569580078125, 0.05377197265625, -0.0019330978393554688, -0.0301513671875, 0.01383209228515625, 0.01250457763671875, -0.02325439453125, -0.05657958984375, -0.0665283203125, -0.033721923828125, 0.0013399124145507812, -0.03662109375, 0.0017337799072265625, 0.0168609619140625, -0.04296875, 0.00467681884765625, 0.02447509765625, -0.033233642578125, -0.06890869140625, -0.055908203125, -0.085693359375, -0.025421142578125, -0.003692626953125, 0.0172271728515625, -0.0022735595703125, 0.0176544189453125, -0.0055694580078125, -0.0185089111328125, -0.016693115234375, 0.0287628173828125, -0.005970001220703125, -0.0513916015625, -0.03900146484375, 0.014923095703125, -0.00922393798828125, 0.006053924560546875, -0.051513671875, -0.012359619140625, 0.01508331298828125, -0.0133209228515625, 0.038970947265625, 0.0015859603881835938, 0.061065673828125, -0.01407623291015625, -0.05181884765625, 0.013031005859375, 0.032501220703125, -0.049468994140625, 0.0163726806640625, -0.0179901123046875, -0.0131683349609375, 0.046844482421875, -0.008544921875, -0.0233917236328125, 0.014984130859375, 0.0004973411560058594, 0.032012939453125, 0.0276947021484375, 0.007389068603515625, -0.032257080078125, 0.08721923828125, 0.02130126953125, 0.0256195068359375, -0.032379150390625, -0.008544921875, -0.050750732421875, 0.0282745361328125, -0.00982666015625, -0.0184173583984375, -0.003673553466796875, -0.020111083984375, -0.00823974609375, -0.05230712890625, 0.03131103515625, -0.054290771484375, 0.0147552490234375, -0.07427978515625, -0.0175018310546875, -0.0247650146484375, 0.09326171875, -0.0789794921875, -0.01485443115234375, -0.00954437255859375, 0.040924072265625, -0.057373046875, -0.100341796875, -0.0139617919921875, -0.0078582763671875, -0.03155517578125, 0.0173492431640625, -0.0029201507568359375, -0.005580902099609375, 0.0209808349609375, -0.01519775390625, 0.0160064697265625, -0.0447998046875, 0.03533935546875, -0.03173828125, -0.016265869140625, 0.01021575927734375, -0.026763916015625, -0.033416748046875, -0.0229644775390625, -0.01715087890625, -0.049407958984375, -0.02069091796875, 0.015411376953125, 0.056976318359375, -0.0024089813232421875, 0.0246124267578125, 0.00595855712890625, 0.0654296875, 0.0118560791015625, -0.01291656494140625, -0.0186614990234375, -0.0215606689453125, -0.00958251953125, 0.027191162109375, -0.004894256591796875, 0.0012378692626953125, -0.0204620361328125, -0.0298614501953125, -0.04290771484375, -0.0071258544921875, 0.006717681884765625, 0.0188751220703125, 0.0391845703125, 0.00022709369659423828, 0.00567626953125, -0.052978515625, -0.0279388427734375, 0.042266845703125, -0.0305938720703125, 0.028076171875, -0.08099365234375, -0.00955963134765625, 0.01528167724609375, 0.0102081298828125, -0.00543975830078125, 0.0016813278198242188, 0.041473388671875, 0.024749755859375, -0.031524658203125, 0.00849151611328125, 0.0207672119140625, 0.02288818359375, -0.0017881393432617188, 0.02728271484375, 0.0135040283203125, -0.0137939453125, 0.0254974365234375, 0.01015472412109375, 0.0002799034118652344, 0.02880859375, 0.020751953125, 0.039642333984375, -0.03741455078125, 0.033172607421875, 0.04150390625, -0.06903076171875, 0.0340576171875, -0.02935791015625, 0.002105712890625, -0.0289154052734375, 0.044525146484375, 0.004848480224609375, 0.0005984306335449219, -0.07977294921875, -0.0245208740234375, 0.00762939453125, -0.01446533203125, -0.002185821533203125, -0.002658843994140625, 0.0004553794860839844, -0.021209716796875, 0.003330230712890625, 0.01412200927734375, -0.042083740234375, -0.0036334991455078125, -0.01995849609375, 0.039764404296875, -0.0452880859375, -0.01013946533203125, -0.019744873046875, -0.0139617919921875, 0.05712890625, -0.004840850830078125, -0.02490234375, 0.0177459716796875, -0.0247039794921875, 0.04681396484375, 0.01551055908203125, -0.0345458984375, 0.0098114013671875, 0.0233154296875, -0.038299560546875, 0.0132598876953125, -0.0158843994140625, -0.00757598876953125, -0.04632568359375, 0.03887939453125, 0.01091766357421875, 0.002925872802734375, 0.0033092498779296875, 0.0625, -0.02294921875, 0.0330810546875, 0.003612518310546875, -0.01058197021484375, -0.00801849365234375, 0.048492431640625, -0.0157623291015625, -0.0169830322265625, 0.03619384765625, 0.01483917236328125, 0.060089111328125, -0.02850341796875, 0.009002685546875, 0.037628173828125, 0.054779052734375, 0.039398193359375, -0.01093292236328125, -0.0244140625, -0.046722412109375, -0.0240020751953125, 0.0723876953125, -0.007495880126953125, -0.06597900390625, -0.0421142578125, -0.00682830810546875, 0.04656982421875, 0.0009088516235351562, -0.0283660888671875, -0.01457977294921875, -0.03265380859375, 0.005573272705078125, -0.0139923095703125, -0.053070068359375, 0.029022216796875, 0.0295562744140625, -0.0018558502197265625, -0.01403045654296875, -0.00008302927017211914, -0.008758544921875, -0.0016050338745117188, -0.017852783203125, -0.005596160888671875, 0.01320648193359375, -0.01080322265625, 0.0239105224609375, -0.060302734375, 0.0178680419921875, -0.016510009765625, 0.0011816024780273438, 0.0596923828125, 0.030487060546875, 0.0133514404296875, -0.01210784912109375, -0.049957275390625, -0.01873779296875, -0.0128173828125, -0.031646728515625, -0.0218963623046875, 0.0038013458251953125, -0.0023784637451171875, 0.0034999847412109375, -0.00022232532501220703, -0.01165771484375, -0.03643798828125, 0.005771636962890625, 0.00823211669921875, -0.0096282958984375, -0.005260467529296875, 0.036712646484375, -0.0263671875, 0.035980224609375, 0.0281829833984375, 0.0265350341796875, 0.0121307373046875, -0.044158935546875, 0.02337646484375, -0.0787353515625, -0.055206298828125, -0.009857177734375, -0.05413818359375, 0.01776123046875, -0.01067352294921875, -0.01024627685546875, 0.0219879150390625, 0.0026950836181640625, -0.00658416748046875, -0.021636962890625, -0.038116455078125, -0.043975830078125, 0.02435302734375, -0.04925537109375, -0.0086212158203125, 0.0438232421875, -0.035552978515625, -0.045166015625, 0.03143310546875, -0.024017333984375, 0.019622802734375, 0.0601806640625, -0.055633544921875, 0.061004638671875, 0.06512451171875, 0.01328277587890625, 0.053375244140625, -0.00433349609375, 0.0139923095703125, 0.005603790283203125, 0.0165252685546875, -0.057403564453125, -0.054168701171875, 0.01222991943359375, 0.01222991943359375, -0.023040771484375, 0.025604248046875, -0.0201873779296875, 0.02069091796875, 0.009765625, 0.0667724609375, -0.0256500244140625, 0.003673553466796875, 0.0230255126953125, -0.0255126953125, 0.008697509765625, 0.0185089111328125, -0.006214141845703125, -0.0077972412109375, -0.00933074951171875, -0.01085662841796875, -0.0031585693359375, 0.00457000732421875, -0.0171966552734375, -0.0179443359375, -0.0430908203125, 0.04119873046875, 0.018341064453125, 0.0203704833984375, 0.0050506591796875, -0.02313232421875, 0.0282745361328125, -0.0214996337890625, -0.01434326171875, 0.00926971435546875, -0.0289764404296875, -0.070556640625, -0.020751953125, -0.02752685546875, -0.00455474853515625, -0.0129547119140625, 0.0284881591796875, -0.02459716796875, 0.04095458984375, -0.0215606689453125, 0.005519866943359375, 0.0229034423828125, -0.064697265625, 0.00664520263671875, -0.0067596435546875, 0.00970458984375, -0.0206298828125, 0.0038242340087890625, 0.007572174072265625, -0.032196044921875, -0.0279693603515625, -0.001949310302734375, -0.0244598388671875, -0.0034046173095703125, -0.02691650390625, 0.01861572265625, 0.03692626953125, 0.06646728515625, 0.004932403564453125, -0.0021038055419921875, -0.0028820037841796875, -0.0606689453125, -0.0479736328125, 0.0008029937744140625, -0.0229339599609375, 0.0200347900390625, 0.01441192626953125, -0.03436279296875, 0.07421875, 0.00861358642578125, 0.034637451171875, 0.0323486328125, 0.022918701171875, -0.0176544189453125, 0.00914764404296875, -0.035003662109375, 0.0277099609375, 0.00815582275390625, 0.050750732421875, -0.0160064697265625, -0.011627197265625, 0.021759033203125, 0.041046142578125, 0.0007925033569335938, 0.00818634033203125, -0.07452392578125, -0.01416015625, 0.04791259765625, 0.03717041015625, 0.028961181640625, 0.061187744140625, 0.03240966796875, 0.044952392578125, 0.032806396484375, -0.02191162109375, 0.0428466796875, -0.0399169921875, 0.00417327880859375, 0.038482666015625, 0.0098419189453125, 0.01242828369140625, 0.0113677978515625, 0.024688720703125, -0.032623291015625, 0.0146484375, 0.040863037109375, -0.050048828125, -0.0010805130004882812, 0.017822265625, 0.0208892822265625, -0.0278167724609375, 0.007022857666015625, -0.0343017578125, 0.0335693359375, 0.0035400390625, 0.024810791015625, 0.0160369873046875, 0.0170745849609375, 0.01641845703125, -0.0007524490356445312, -0.0028133392333984375, 0.0165863037109375, -0.0084228515625, 0.04351806640625, 0.0206146240234375, 0.04638671875, -0.0311431884765625, -0.00537109375, 0.00905609130859375, 0.041900634765625, -0.021331787109375, -0.028076171875, 0.012664794921875, -0.0088653564453125, -0.00606536865234375, -0.004016876220703125, 0.004009246826171875, 0.036285400390625, 0.031463623046875, 0.00237274169921875, -0.01412200927734375, -0.006687164306640625, 0.06280517578125, -0.0010538101196289062, -0.0291595458984375, -0.039398193359375, -0.037567138671875, 0.0007190704345703125, -0.040802001953125, -0.00861358642578125, 0.039154052734375, 0.038055419921875, 0.028350830078125, -0.05938720703125, -0.01471710205078125, -0.014312744140625, 0.03643798828125, -0.01509857177734375, 0.0167694091796875, -0.0218658447265625, -0.024383544921875, -0.0013341903686523438, 0.0136566162109375, -0.00019276142120361328, 0.058563232421875, 0.0357666015625, 0.006862640380859375, -0.053314208984375, 0.0104522705078125, 0.046966552734375, -0.039947509765625, 0.0151214599609375, -0.06304931640625, 0.020233154296875, -0.0004773139953613281, -0.0015764236450195312, -0.01031494140625, -0.0031871795654296875, 0.040191650390625, -0.0253448486328125, 0.0095672607421875, -0.00995635986328125, -0.02685546875, 0.018585205078125, 0.00804901123046875, 0.0222625732421875, -0.002899169921875, -0.050537109375, -0.0161590576171875, -0.022613525390625, -0.027099609375, 0.0390625, 0.05364990234375, 0.021270751953125, -0.0279083251953125, -0.023223876953125, -0.0137939453125, -0.00989532470703125, 0.0196533203125, -0.0037384033203125, 0.015655517578125, 0.0126953125, -0.01479339599609375, -0.047607421875, -0.01470947265625, -0.00616455078125, 0.004482269287109375, -0.0013713836669921875, 0.096435546875, -0.010406494140625, 0.0051422119140625, 0.0293731689453125, 0.017486572265625, -0.029449462890625, 0.0400390625, -0.057830810546875, -0.031951904296875, 0.007251739501953125, -0.00653839111328125, -0.054107666015625, -0.004474639892578125, 0.04595947265625, -0.035247802734375, 0.01363372802734375, -0.00791168212890625, 0.01678466796875, -0.04217529296875, 0.0416259765625, -0.0254669189453125, -0.053863525390625, -0.09722900390625, -0.0257415771484375, 0.05169677734375, 0.052032470703125, -0.0236053466796875, 0.0309295654296875, 0.033966064453125, -0.0290679931640625, 0.024688720703125, -0.0293121337890625, 0.050506591796875, 0.033294677734375, -0.0159759521484375, -0.074951171875, 0.0197906494140625, 0.00450897216796875, -0.03802490234375, 0.0162200927734375, 0.053070068359375, 0.0092926025390625, -0.063720703125, 0.0322265625, 0.049560546875, 0.041717529296875, -0.0005559921264648438, 0.0206146240234375, 0.045501708984375, -0.0256195068359375, -0.002498626708984375, -0.0765380859375, -0.0019989013671875, -0.04901123046875, -0.01175689697265625, 0.022216796875, -0.047210693359375, -0.0096893310546875, -0.0018491744995117188, -0.0140838623046875, 0.05426025390625, -0.0035266876220703125, -0.03466796875, 0.02459716796875, -0.049224853515625, 0.01387786865234375, 0.0131988525390625, -0.0287933349609375, -0.00012695789337158203, -0.005245208740234375, -0.026702880859375, 0.001605987548828125, -0.02734375, -0.00826263427734375, -0.006458282470703125, 0.02069091796875, 0.0304107666015625, -0.0289764404296875, 0.013214111328125, 0.0172119140625, 0.01448822021484375, 0.08148193359375, -0.01169586181640625, -0.03961181640625, -0.03875732421875, -0.0067138671875, -0.0093231201171875, -0.019012451171875, 0.04766845703125, -0.1109619140625, -0.04345703125, 0.0174407958984375, -0.0069732666015625, 0.0158538818359375, -0.048004150390625, -0.06573486328125, 0.08795166015625, -0.00836181640625, -0.03717041015625, -0.05352783203125, -0.03900146484375, -0.01323699951171875, 0.04962158203125, -0.004581451416015625, -0.013641357421875, -0.07049560546875, 0.037139892578125, 0.0200653076171875, -0.00826263427734375, -0.0158233642578125, -0.0011348724365234375, -0.042327880859375, 0.04534912109375, 0.0653076171875, 0.0048675537109375, 0.003643035888671875, 0.0070953369140625, 0.0197296142578125, 0.052703857421875, -0.0188446044921875, 0.0165863037109375, 0.0117645263671875, -0.0183258056640625, 0.003330230712890625, -0.021484375, -0.01611328125, -0.01200103759765625, 0.055877685546875, 0.01512908935546875, 0.0130767822265625, -0.0284881591796875, -0.006591796875, -0.0218353271484375, -0.07940673828125, -0.0287628173828125, 0.045867919921875, -0.08624267578125, -0.0072784423828125, 0.00682830810546875, -0.026824951171875, -0.017822265625, -0.016387939453125, -0.033843994140625, 0.010467529296875, 0.012908935546875, 0.005550384521484375, 0.007114410400390625, -0.04559326171875, 0.0233612060546875, -0.015838623046875, -0.01415252685546875, 0.0013933181762695312, 0.032073974609375, -0.01479339599609375, 0.0254974365234375, -0.0013990402221679688, 0.0113067626953125, -0.005771636962890625, -0.0302276611328125, 0.035980224609375, -0.023773193359375, 0.04364013671875, -0.0186309814453125, -0.0100555419921875, 0.003360748291015625, -0.01326751708984375, -0.007122039794921875, 0.0013456344604492188, 0.03704833984375, -0.00592803955078125, 0.04412841796875, -0.0003948211669921875, 0.031585693359375, -0.01035308837890625, 0.037506103515625, -0.0283203125, 0.004547119140625, -0.0225982666015625, 0.0218658447265625, -0.0102996826171875, 0.0137939453125, 0.006866455078125, -0.062744140625, 0.0260772705078125, -0.0269622802734375, 0.025848388671875, 0.01186370849609375 ]
f8763bcc94cbe592d04fb02b1fc785657a160dfd
Wordpress Stackexchange Q: How can I rewrite a plugin generated URL? I'm using the wpForo plugin to create custom profile pages on the front end of my website. The profile URLs generated by the wpForo plugin look like this: example.com/community/profile/username/ example.com/community/account/username/ I managed to rewrite these URLs internally by editing some of the core plugin files. (Yes, I know, very dirty.) Now these urls looks like this, but they obviously lead to non-existing pages, showing a 404 error. example.com/user/username/ example.com/user/username/account/ Can I use WordPress's rewrite rules to basically display the wpForo profile page on the edited URLs? I tried the following, but it doesn't work. function custom_wpforo_rewrite_urls() { // Regex returns these matches /* 0 = community/profile/username/ 1 = profile 2 = username */ add_rewrite_rule('/community\/(.*)\/(.*)\//', 'user/$matches[2]/$matches[1]', 'top'); } add_action('init', 'custom_wpforo_rewrite_urls'); Which should result in the following URLs working... But they don't. example.com/user/username/profile/ example.com/user/username/account/
Q: How can I rewrite a plugin generated URL? I'm using the wpForo plugin to create custom profile pages on the front end of my website. The profile URLs generated by the wpForo plugin look like this: example.com/community/profile/username/ example.com/community/account/username/ I managed to rewrite these URLs internally by editing some of the core plugin files. (Yes, I know, very dirty.) Now these urls looks like this, but they obviously lead to non-existing pages, showing a 404 error. example.com/user/username/ example.com/user/username/account/ Can I use WordPress's rewrite rules to basically display the wpForo profile page on the edited URLs? I tried the following, but it doesn't work. function custom_wpforo_rewrite_urls() { // Regex returns these matches /* 0 = community/profile/username/ 1 = profile 2 = username */ add_rewrite_rule('/community\/(.*)\/(.*)\//', 'user/$matches[2]/$matches[1]', 'top'); } add_action('init', 'custom_wpforo_rewrite_urls'); Which should result in the following URLs working... But they don't. example.com/user/username/profile/ example.com/user/username/account/
wordpress
{ "language": "en", "length": 141, "provenance": "stackexchange_00019.jsonl.gz:469365", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/242993" }
[ 0.057647705078125, -0.0255584716796875, -0.0119781494140625, -0.06005859375, -0.0023956298828125, -0.01517486572265625, 0.0010547637939453125, -0.0093994140625, -0.03851318359375, 0.049041748046875, 0.036285400390625, 0.0182647705078125, 0.05096435546875, -0.035064697265625, 0.014678955078125, -0.00043082237243652344, -0.01739501953125, 0.0305023193359375, 0.0213623046875, -0.01837158203125, 0.024658203125, -0.038177490234375, 0.0036411285400390625, -0.00902557373046875, 0.0154876708984375, -0.048126220703125, 0.07452392578125, -0.0177001953125, 0.004608154296875, -0.017730712890625, 0.0179443359375, -0.002471923828125, 0.00865936279296875, 0.033782958984375, -0.0411376953125, -0.041961669921875, 0.0312347412109375, 0.000431060791015625, -0.01441192626953125, 0.03814697265625, 0.034454345703125, -0.0173492431640625, 0.00978851318359375, 0.0195159912109375, 0.0196075439453125, -0.0855712890625, 0.0902099609375, -0.045623779296875, 0.0284423828125, 0.022857666015625, -0.038360595703125, 0.01641845703125, -0.0477294921875, -0.013427734375, 0.008880615234375, -0.019073486328125, -0.018798828125, 0.01052093505859375, 0.00004369020462036133, -0.00582122802734375, -0.004337310791015625, 0.0279388427734375, 0.013214111328125, 0.044189453125, -0.00623321533203125, -0.0281982421875, -0.004810333251953125, 0.0399169921875, 0.006862640380859375, -0.0189666748046875, 0.001220703125, 0.0195159912109375, -0.025177001953125, -0.007617950439453125, -0.053070068359375, -0.0217437744140625, 0.0341796875, -0.04205322265625, -0.0006103515625, 0.01007843017578125, 0.007549285888671875, -0.034088134765625, -0.013641357421875, -0.00888824462890625, 0.03668212890625, 0.037689208984375, 0.0018281936645507812, -0.0263214111328125, -0.017822265625, 0.027008056640625, -0.005565643310546875, -0.007648468017578125, -0.03533935546875, 0.029083251953125, 0.02294921875, -0.00737762451171875, -0.00647735595703125, -0.0200653076171875, 0.0081329345703125, 0.007114410400390625, 0.08160400390625, -0.08013916015625, 0.0802001953125, -0.02508544921875, -0.000004112720489501953, 0.05224609375, 0.01739501953125, 0.04669189453125, 0.022003173828125, 0.0023136138916015625, 0.0127410888671875, 0.00788116455078125, -0.031646728515625, -0.00997161865234375, -0.004734039306640625, -0.0004875659942626953, -0.064208984375, -0.0122528076171875, -0.0012054443359375, -0.0241546630859375, -0.016937255859375, 0.0234222412109375, -0.0025272369384765625, -0.018585205078125, 0.01360321044921875, -0.01117706298828125, 0.0195159912109375, -0.0270233154296875, -0.0024261474609375, 0.006748199462890625, -0.0118560791015625, 0.0228729248046875, 0.023773193359375, 0.031494140625, 0.009185791015625, -0.01666259765625, 0.056854248046875, -0.018890380859375, -0.02508544921875, 0.00627899169921875, -0.01511383056640625, -0.0022735595703125, -0.0170440673828125, -0.03582763671875, 0.0355224609375, 0.032684326171875, 0.02044677734375, 0.0070953369140625, 0.02227783203125, -0.019561767578125, -0.03076171875, 0.0117950439453125, 0.0240936279296875, 0.0141754150390625, 0.039520263671875, -0.00759124755859375, 0.08489990234375, -0.0469970703125, -0.002651214599609375, -0.043121337890625, -0.0008940696716308594, 0.0014934539794921875, 0.006801605224609375, -0.0309295654296875, -0.03009033203125, -0.031890869140625, -0.01219940185546875, 0.00327301025390625, 0.01824951171875, -0.0150604248046875, 0.038330078125, 0.019683837890625, 0.00412750244140625, 0.023712158203125, 0.028045654296875, 0.01099395751953125, -0.045806884765625, -0.00876617431640625, 0.0283660888671875, 0.06011962890625, 0.03369140625, 0.00458526611328125, 0.01849365234375, 0.041595458984375, -0.058013916015625, 0.04962158203125, -0.007129669189453125, 0.05145263671875, 0.03466796875, -0.007709503173828125, 0.03021240234375, 0.01134490966796875, -0.01079559326171875, 0.0015745162963867188, -0.00701141357421875, -0.01314544677734375, -0.002655029296875, 0.0126495361328125, -0.0205230712890625, 0.0007581710815429688, -0.0157623291015625, 0.0240631103515625, 0.00435638427734375, 0.010955810546875, -0.044189453125, 0.035552978515625, -0.04205322265625, 0.0545654296875, 0.00452423095703125, 0.01995849609375, 0.025726318359375, 0.01325225830078125, -0.0416259765625, -0.0478515625, -0.0236663818359375, 0.03192138671875, 0.031280517578125, 0.005817413330078125, 0.0105743408203125, 0.003253936767578125, 0.032379150390625, 0.0017652511596679688, 0.00302886962890625, 0.04150390625, 0.01255035400390625, -0.04510498046875, -0.004993438720703125, -0.03466796875, -0.037750244140625, -0.004619598388671875, -0.056640625, 0.03631591796875, 0.0004324913024902344, 0.0022296905517578125, -0.0579833984375, 0.005382537841796875, -0.00991058349609375, 0.007450103759765625, -0.0016145706176757812, 0.0288848876953125, 0.0296478271484375, 0.0310211181640625, -0.01491546630859375, -0.0112457275390625, 0.053802490234375, 0.005950927734375, 0.0321044921875, -0.0299835205078125, 0.01097869873046875, 0.0273284912109375, 0.0214691162109375, 0.006465911865234375, 0.007396697998046875, -0.027130126953125, 0.0120849609375, 0.041107177734375, -0.0335693359375, -0.009918212890625, -0.0214691162109375, 0.0031757354736328125, 0.00518798828125, -0.0018558502197265625, 0.00018131732940673828, -0.017333984375, 0.01092529296875, 0.00722503662109375, 0.01486968994140625, 0.025177001953125, -0.0208740234375, 0.01430511474609375, 0.013671875, -0.0180206298828125, 0.013153076171875, 0.01047515869140625, 0.034912109375, -0.0206756591796875, -0.0177154541015625, -0.01198577880859375, 0.0499267578125, -0.0007581710815429688, 0.02349853515625, 0.0618896484375, -0.043182373046875, -0.0200958251953125, -0.006103515625, -0.0190582275390625, -0.0283660888671875, 0.0171356201171875, 0.0389404296875, 0.0188140869140625, 0.033050537109375, -0.002429962158203125, -0.0184783935546875, 0.032318115234375, -0.0021076202392578125, -0.0240478515625, 0.031585693359375, -0.08270263671875, 0.07342529296875, -0.06634521484375, 0.0037174224853515625, 0.061065673828125, 0.005794525146484375, -0.01517486572265625, -0.005100250244140625, -0.018096923828125, -0.039031982421875, 0.0401611328125, 0.0079345703125, -0.041168212890625, 0.01154327392578125, 0.03619384765625, 0.03936767578125, 0.036590576171875, 0.0265045166015625, -0.0263519287109375, 0.0159149169921875, 0.0494384765625, -0.03399658203125, -0.04949951171875, -0.02679443359375, -0.0166168212890625, -0.0015993118286132812, 0.029052734375, -0.0023212432861328125, 0.00868988037109375, 0.0155792236328125, 0.015899658203125, -0.006500244140625, -0.0214385986328125, -0.08587646484375, -0.09552001953125, -0.10418701171875, -0.0328369140625, -0.00494384765625, 0.01373291015625, 0.0164794921875, -0.001575469970703125, 0.0003914833068847656, -0.0155792236328125, 0.033477783203125, 0.005084991455078125, -0.00731658935546875, -0.00095367431640625, -0.0301666259765625, 0.035369873046875, 0.03118896484375, -0.003719329833984375, 0.10015869140625, 0.055419921875, -0.07000732421875, 0.01508331298828125, 0.0114898681640625, -0.01483917236328125, 0.014129638671875, -0.042999267578125, -0.0013990402221679688, -0.00958251953125, -0.017974853515625, -0.056488037109375, -0.029266357421875, 0.009368896484375, -0.021636962890625, 0.0765380859375, 0.0113525390625, -0.0372314453125, 0.024322509765625, 0.0125732421875, 0.00914764404296875, -0.0105743408203125, 0.0292510986328125, -0.0187530517578125, 0.00494384765625, -0.01456451416015625, -0.006855010986328125, -0.0278778076171875, 0.064453125, -0.006626129150390625, 0.0028209686279296875, 0.022064208984375, -0.037628173828125, -0.0233306884765625, -0.00897979736328125, -0.0478515625, -0.020416259765625, 0.020294189453125, -0.06787109375, 0.004100799560546875, -0.0291748046875, 0.0288238525390625, -0.025360107421875, 0.042755126953125, -0.031646728515625, -0.01360321044921875, -0.005558013916015625, 0.0131072998046875, -0.046142578125, -0.0176544189453125, -0.035614013671875, -0.0024738311767578125, -0.109619140625, -0.0121917724609375, 0.013092041015625, -0.07122802734375, 0.042083740234375, -0.049896240234375, -0.037200927734375, -0.0538330078125, 0.0247650146484375, 0.0087432861328125, 0.004276275634765625, 0.00516510009765625, 0.01403045654296875, -0.052978515625, -0.01320648193359375, 0.01312255859375, -0.08392333984375, -0.02655029296875, 0.01129913330078125, 0.0687255859375, -0.0104217529296875, -0.033294677734375, -0.024658203125, 0.048797607421875, -0.00513458251953125, -0.00580596923828125, 0.009307861328125, -0.002552032470703125, 0.021453857421875, 0.03521728515625, 0.0287628173828125, -0.0012874603271484375, 0.007595062255859375, 0.0143890380859375, -0.016754150390625, 0.06365966796875, -0.0181427001953125, -0.016387939453125, -0.0135650634765625, -0.039459228515625, -0.05322265625, -0.026153564453125, -0.03582763671875, 0.01004791259765625, 0.0142974853515625, -0.048919677734375, -0.037322998046875, -0.052947998046875, 0.01329803466796875, -0.0631103515625, -0.0006852149963378906, 0.0203094482421875, 0.05889892578125, 0.00875091552734375, 0.008758544921875, 0.01483154296875, 0.00890350341796875, 0.01338958740234375, -0.0172882080078125, 0.049102783203125, 0.030853271484375, 0.01276397705078125, 0.03216552734375, -0.033294677734375, 0.013641357421875, 0.0007882118225097656, 0.022796630859375, -0.01885986328125, -0.051361083984375, 0.0302886962890625, 0.0022411346435546875, -0.051116943359375, 0.0306396484375, -0.0219268798828125, 0.0122528076171875, -0.044647216796875, 0.026031494140625, 0.0069122314453125, -0.0012750625610351562, -0.045318603515625, -0.058319091796875, 0.0251007080078125, -0.04266357421875, 0.0291900634765625, -0.011077880859375, -0.0012807846069335938, 0.03192138671875, 0.0183563232421875, -0.00958251953125, 0.05706787109375, 0.00616455078125, 0.038848876953125, 0.023193359375, 0.01812744140625, -0.00849151611328125, 0.0207366943359375, 0.01361083984375, 0.05865478515625, -0.00594329833984375, -0.0266265869140625, -0.0251617431640625, -0.029388427734375, -0.0023021697998046875, 0.03802490234375, -0.005359649658203125, 0.0487060546875, 0.0237884521484375, 0.0051422119140625, -0.00862884521484375, -0.03900146484375, 0.01165771484375, -0.055938720703125, 0.0244140625, 0.037139892578125, -0.02716064453125, 0.0198516845703125, 0.0361328125, 0.004695892333984375, 0.01079559326171875, -0.0000546574592590332, 0.03704833984375, 0.052398681640625, 0.00417327880859375, 0.003589630126953125, 0.02606201171875, -0.00322723388671875, -0.0131072998046875, 0.0006299018859863281, -0.0069122314453125, -0.0035991668701171875, 0.01018524169921875, 0.03411865234375, -0.0032634735107421875, -0.002254486083984375, -0.01073455810546875, -0.0175018310546875, -0.0037326812744140625, -0.054443359375, -0.0596923828125, -0.007396697998046875, 0.0103759765625, 0.0050506591796875, 0.01432037353515625, 0.002376556396484375, -0.0251312255859375, -0.0228118896484375, -0.050079345703125, -0.00412750244140625, 0.01337432861328125, -0.049835205078125, 0.0233001708984375, 0.028167724609375, 0.00017213821411132812, -0.03717041015625, -0.0178375244140625, 0.0261688232421875, 0.02520751953125, -0.031494140625, -0.0321044921875, 0.033905029296875, -0.024200439453125, 0.01123046875, -0.014312744140625, 0.0140838623046875, 0.03399658203125, 0.00482177734375, 0.0462646484375, 0.01061248779296875, -0.038055419921875, 0.028350830078125, -0.04425048828125, 0.0025501251220703125, 0.0218353271484375, -0.0061187744140625, -0.0257568359375, -0.044189453125, 0.016876220703125, 0.01526641845703125, 0.010650634765625, -0.0167388916015625, -0.0186004638671875, 0.020233154296875, 0.034210205078125, 0.022064208984375, -0.007534027099609375, 0.03143310546875, 0.01248931884765625, 0.032623291015625, 0.002124786376953125, 0.0004220008850097656, -0.0179443359375, -0.0267486572265625, 0.0027103424072265625, -0.008331298828125, -0.0261077880859375, -0.03131103515625, 0.030120849609375, 0.03369140625, 0.0582275390625, -0.0084381103515625, 0.0123748779296875, -0.00949859619140625, -0.0069580078125, -0.030731201171875, 0.0489501953125, -0.0243682861328125, 0.04345703125, -0.017425537109375, 0.0018835067749023438, 0.0460205078125, -0.0218658447265625, 0.005565643310546875, -0.0243682861328125, -0.0065155029296875, -0.0033092498779296875, 0.0288848876953125, -0.036773681640625, 0.004802703857421875, 0.061920166015625, 0.0294036865234375, 0.036895751953125, -0.0013370513916015625, 0.032501220703125, 0.036529541015625, -0.0024261474609375, 0.048126220703125, 0.0237274169921875, 0.059478759765625, -0.00257110595703125, -0.0240325927734375, 0.038055419921875, -0.033050537109375, 0.0584716796875, 0.08135986328125, 0.057586669921875, -0.1455078125, 0.035003662109375, -0.0124053955078125, 0.024444580078125, 0.07720947265625, 0.01007843017578125, -0.003826141357421875, 0.005252838134765625, 0.0100860595703125, -0.0029754638671875, -0.0024318695068359375, 0.030181884765625, 0.0167999267578125, 0.01395416259765625, 0.0239410400390625, 0.0167388916015625, -0.021881103515625, -0.0270233154296875, -0.053070068359375, 0.01154327392578125, -0.023956298828125, -0.00960540771484375, -0.0185699462890625, 0.00975799560546875, -0.0282440185546875, -0.0294342041015625, 0.0234222412109375, -0.0489501953125, 0.0249176025390625, 0.08941650390625, 0.0012331008911132812, 0.020965576171875, 0.028045654296875, 0.00542449951171875, 0.00492095947265625, -0.0183868408203125, -0.0162200927734375, 0.05352783203125, -0.0206298828125, -0.01154327392578125, 0.01165008544921875, -0.015960693359375, -0.0030307769775390625, 0.008026123046875, -0.01204681396484375, -0.004055023193359375, -0.015655517578125, 0.0802001953125, -0.0187225341796875, -0.0221099853515625, 0.0128936767578125, -0.006877899169921875, 0.0003502368927001953, 0.016815185546875, -0.029571533203125, -0.04302978515625, -0.032745361328125, -0.005260467529296875, -0.0648193359375, 0.06341552734375, 0.00984954833984375, -0.0703125, 0.0635986328125, -0.0523681640625, 0.06195068359375, -0.001552581787109375, 0.0096588134765625, 0.04913330078125, 0.01119232177734375, -0.0060882568359375, 0.04302978515625, -0.0072021484375, 0.032958984375, -0.03924560546875, -0.01070404052734375, 0.0191192626953125, 0.06329345703125, 0.03228759765625, 0.0233917236328125, -0.06671142578125, -0.0384521484375, -0.0171661376953125, -0.003803253173828125, -0.0209197998046875, 0.06964111328125, -0.0058441162109375, -0.0235748291015625, 0.0082855224609375, -0.039581298828125, -0.00330352783203125, -0.039520263671875, 0.0158233642578125, 0.01062774658203125, 0.010498046875, 0.011016845703125, -0.0130615234375, 0.01306915283203125, -0.03680419921875, -0.003719329833984375, 0.0234527587890625, 0.04473876953125, 0.037567138671875, -0.0094451904296875, 0.024444580078125, 0.0105438232421875, -0.01042938232421875, 0.0042877197265625, 0.045989990234375, 0.0152587890625, 0.0231475830078125, 0.04547119140625, 0.027618408203125, 0.05303955078125, -0.030609130859375, 0.0016841888427734375, -0.006618499755859375, -0.0188446044921875, 0.07427978515625, 0.047515869140625, 0.032318115234375, -0.0228729248046875, -0.0008635520935058594, 0.0518798828125, 0.07952880859375, -0.035980224609375, -0.05450439453125, 0.006649017333984375, 0.0180206298828125, 0.0089111328125, 0.03411865234375, 0.060577392578125, -0.06689453125, -0.019744873046875, -0.06378173828125, 0.018402099609375, 0.047637939453125, 0.01389312744140625, -0.03118896484375, -0.044586181640625, -0.00994873046875, 0.0312347412109375, -0.0059814453125, -0.024383544921875, 0.01461029052734375, 0.0311126708984375, 0.0093536376953125, 0.013946533203125, -0.010650634765625, -0.00849151611328125, 0.00897216796875, 0.012908935546875, 0.00624847412109375, -0.008209228515625, -0.03399658203125, -0.04205322265625, 0.0248260498046875, 0.059539794921875, 0.0300750732421875, -0.008819580078125, 0.016693115234375, 0.01416015625, -0.00919342041015625, 0.002532958984375, 0.017608642578125, -0.0086669921875, 0.075439453125, -0.0257110595703125, 0.033935546875, -0.016815185546875, -0.00496673583984375, -0.047088623046875, 0.004486083984375, 0.018798828125, -0.0111083984375, 0.06634521484375, -0.0045928955078125, 0.0002753734588623047, 0.0255279541015625, -0.0225067138671875, 0.062744140625, 0.00970458984375, -0.0740966796875, -0.0076446533203125, -0.01239776611328125, -0.072509765625, 0.03985595703125, 0.057342529296875, -0.0090484619140625, -0.0018033981323242188, -0.01416778564453125, 0.012664794921875, 0.002838134765625, -0.0211944580078125, 0.0051116943359375, -0.01285552978515625, 0.0163421630859375, -0.01111602783203125, -0.010406494140625, -0.00983428955078125, -0.01119232177734375, 0.035919189453125, 0.01448822021484375, 0.10791015625, -0.06768798828125, 0.028411865234375, -0.05267333984375, -0.0304412841796875, -0.0217132568359375, -0.048309326171875, 0.0005717277526855469, -0.026092529296875, -0.041412353515625, 0.0291748046875, -0.0217132568359375, 0.023590087890625, 0.017181396484375, -0.020721435546875, 0.01561737060546875, -0.00003337860107421875, 0.006053924560546875, -0.0096282958984375, 0.0026645660400390625, -0.040679931640625, -0.06280517578125, -0.05230712890625, -0.007110595703125, 0.0033931732177734375, -0.008331298828125, -0.0240936279296875, 0.0970458984375, 0.01641845703125, 0.01898193359375, -0.00037932395935058594, -0.0740966796875, 0.0015354156494140625, 0.026611328125, 0.0198516845703125, 0.0090179443359375, 0.01837158203125, -0.0249176025390625, 0.00787353515625, 0.00390625, 0.0223846435546875, 0.0010385513305664062, -0.0226593017578125, -0.007266998291015625, -0.0235443115234375, 0.0225067138671875, -0.0244140625, 0.0014162063598632812, -0.0301361083984375, 0.01458740234375, -0.006465911865234375, -0.0020923614501953125, -0.0168609619140625, 0.00933074951171875, -0.0221710205078125, 0.01239776611328125, -0.004848480224609375, -0.034942626953125, -0.036163330078125, -0.0188140869140625, 0.01258087158203125, 0.0113525390625, -0.05413818359375, 0.029388427734375, -0.006389617919921875, 0.00894927978515625, -0.030059814453125, 0.01158905029296875, 0.002780914306640625, 0.0260772705078125, -0.038848876953125, -0.01174163818359375, -0.0237274169921875, -0.005924224853515625, -0.03582763671875, -0.005126953125, 0.037567138671875, 0.006206512451171875, -0.0662841796875, -0.0555419921875, -0.048797607421875, 0.01715087890625, -0.04473876953125, -0.0170135498046875, -0.0271759033203125, 0.0148162841796875, -0.0103302001953125, -0.0160675048828125, -0.006999969482421875, 0.01331329345703125, -0.0282440185546875, 0.01050567626953125, -0.022491455078125, -0.0086822509765625, -0.03948974609375, -0.0289306640625, 0.0251312255859375, 0.0188140869140625, -0.018524169921875, -0.0277557373046875, -0.0307159423828125, -0.0100555419921875, 0.0004742145538330078, -0.0101318359375, -0.00901031494140625, -0.046539306640625, 0.02752685546875, 0.00940704345703125, 0.0341796875, -0.00882720947265625, 0.0377197265625, 0.01451873779296875, 0.0303192138671875, 0.01052093505859375, -0.024139404296875, 0.0406494140625, -0.0220489501953125, 0.042236328125, 0.05810546875, -0.006160736083984375, 0.00940704345703125, -0.0133209228515625, -0.083984375, -0.01256561279296875, -0.007625579833984375, -0.00353240966796875, -0.0282745361328125, 0.0369873046875, -0.006397247314453125, -0.01035308837890625, -0.000743865966796875, -0.0099029541015625, -0.0131683349609375, -0.029541015625, -0.0027866363525390625, 0.02691650390625, -0.06622314453125, -0.006317138671875, 0.023345947265625, 0.007274627685546875, -0.005092620849609375, -0.004199981689453125, -0.018310546875, -0.0057830810546875, -0.0121917724609375, -0.03228759765625, 0.02484130859375, -0.0008969306945800781, 0.059539794921875, -0.042755126953125, -0.0149078369140625, -0.0028057098388671875, 0.0213623046875, 0.01195526123046875, -0.050750732421875, 0.020843505859375, 0.032562255859375, -0.0163421630859375, 0.003910064697265625, 0.0253143310546875, 0.0254974365234375, -0.0245361328125, -0.0313720703125, -0.0009713172912597656, 0.02508544921875, -0.01126861572265625, 0.0197296142578125, -0.0192413330078125, 0.048248291015625, -0.00003135204315185547, 0.049102783203125, -0.0199737548828125, 0.005695343017578125, -0.032928466796875, 0.036407470703125, -0.043426513671875, 0.0189971923828125, 0.00011467933654785156, 0.0006585121154785156, -0.015380859375, 0.033935546875, -0.036773681640625, -0.052520751953125, -0.017852783203125, -0.006378173828125, 0.034088134765625, -0.0012054443359375 ]
99b1319b5d52b7884ae24750c8336e0d77ca6a1c
Wordpress Stackexchange Q: If its not frontpage Could somebody please tell me how to write <?php if (in_category( array(10,11,12,13,14,15,18,19,20) )) { ?> and if its not frontpage ? A: You have the WordPress function is_front_page() that you need to invert with "!" . if(!is_front_page() && in_category( array(10,11,12,13,14,15,18,19,20) ))
Q: If its not frontpage Could somebody please tell me how to write <?php if (in_category( array(10,11,12,13,14,15,18,19,20) )) { ?> and if its not frontpage ? A: You have the WordPress function is_front_page() that you need to invert with "!" . if(!is_front_page() && in_category( array(10,11,12,13,14,15,18,19,20) ))
wordpress
{ "language": "en", "length": 46, "provenance": "stackexchange_00019.jsonl.gz:469413", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/243152" }
[ 0.044189453125, 0.0298309326171875, -0.00994110107421875, -0.03338623046875, 0.0386962890625, -0.02593994140625, 0.0171966552734375, -0.034027099609375, 0.0303802490234375, -0.044952392578125, -0.07208251953125, -0.0406494140625, -0.05816650390625, -0.035919189453125, 0.0022125244140625, -0.08099365234375, 0.0156097412109375, 0.01418304443359375, 0.0197296142578125, 0.007663726806640625, 0.012725830078125, 0.01165008544921875, -0.007526397705078125, 0.01666259765625, 0.031585693359375, -0.07537841796875, 0.07025146484375, -0.0236358642578125, 0.01529693603515625, -0.0384521484375, 0.0225372314453125, 0.028289794921875, 0.0022945404052734375, 0.01617431640625, 0.005767822265625, 0.0171051025390625, -0.01519012451171875, 0.022247314453125, 0.034515380859375, 0.0006928443908691406, 0.03619384765625, -0.01397705078125, -0.0023403167724609375, -0.0091705322265625, -0.00688934326171875, -0.04437255859375, 0.030731201171875, -0.0311431884765625, -0.0138397216796875, -0.0150299072265625, 0.00218963623046875, -0.019073486328125, 0.0102386474609375, -0.006435394287109375, -0.0033969879150390625, 0.017578125, 0.00362396240234375, 0.01531219482421875, 0.03466796875, -0.01137542724609375, -0.04461669921875, -0.00013399124145507812, 0.028228759765625, -0.035736083984375, -0.0008802413940429688, -0.00798797607421875, -0.0124053955078125, 0.0236053466796875, -0.0212554931640625, -0.030853271484375, 0.0204925537109375, -0.01812744140625, -0.0287933349609375, 0.009765625, -0.0548095703125, 0.0157928466796875, -0.01062774658203125, -0.032318115234375, 0.018768310546875, 0.007495880126953125, -0.058380126953125, 0.004791259765625, -0.054656982421875, -0.050384521484375, 0.025360107421875, -0.0021152496337890625, -0.03094482421875, 0.01092529296875, -0.038726806640625, 0.0106658935546875, -0.028106689453125, 0.0141448974609375, -0.026153564453125, -0.032745361328125, 0.005340576171875, -0.0155181884765625, 0.039337158203125, 0.056396484375, 0.00757598876953125, 0.004093170166015625, -0.026519775390625, -0.01335906982421875, -0.0293731689453125, -0.013336181640625, 0.0197906494140625, 0.06640625, -0.0010251998901367188, -0.0171966552734375, 0.01520538330078125, -0.0031833648681640625, 0.005496978759765625, 0.0038356781005859375, 0.003849029541015625, -0.01108551025390625, 0.0235137939453125, 0.01461029052734375, -0.0289764404296875, 0.03472900390625, -0.020233154296875, 0.002285003662109375, 0.012939453125, 0.0308380126953125, 0.04876708984375, -0.08197021484375, 0.045318603515625, 0.033538818359375, -0.046478271484375, -0.045379638671875, 0.03936767578125, 0.055877685546875, -0.03839111328125, 0.0202178955078125, -0.006191253662109375, -0.0770263671875, -0.050079345703125, -0.04296875, 0.054229736328125, 0.0163421630859375, -0.0224151611328125, 0.049468994140625, -0.037109375, -0.06341552734375, -0.01189422607421875, -0.01380157470703125, 0.03973388671875, -0.001026153564453125, 0.0204620361328125, 0.0416259765625, 0.0036373138427734375, -0.06591796875, 0.095703125, -0.050445556640625, 0.006378173828125, -0.00801849365234375, -0.00876617431640625, 0.0294036865234375, -0.01678466796875, 0.02532958984375, -0.047027587890625, 0.006591796875, 0.016021728515625, -0.005035400390625, 0.0290679931640625, -0.048187255859375, -0.042510986328125, -0.0172882080078125, -0.0687255859375, -0.0036830902099609375, 0.01983642578125, 0.04864501953125, -0.01457977294921875, 0.0318603515625, 0.026458740234375, 0.040252685546875, 0.003997802734375, 0.010467529296875, -0.00292205810546875, -0.0185699462890625, 0.0251007080078125, 0.07257080078125, 0.0015583038330078125, -0.03289794921875, -0.00994873046875, 0.0110015869140625, -0.0259857177734375, 0.02008056640625, 0.0178680419921875, 0.04754638671875, 0.00228118896484375, 0.017242431640625, 0.00274658203125, 0.009613037109375, -0.004344940185546875, -0.00246429443359375, -0.01456451416015625, -0.022247314453125, 0.036041259765625, 0.00821685791015625, -0.0013141632080078125, -0.00852203369140625, 0.031494140625, 0.034576416015625, -0.031219482421875, -0.004795074462890625, -0.058502197265625, 0.01548004150390625, -0.01076507568359375, 0.0318603515625, 0.007358551025390625, 0.0204315185546875, 0.0066375732421875, 0.0125732421875, -0.0145263671875, -0.036163330078125, -0.0254974365234375, 0.03076171875, 0.00440216064453125, 0.01422119140625, -0.020111083984375, 0.020965576171875, -0.047515869140625, 0.0124053955078125, -0.04132080078125, 0.0340576171875, 0.054046630859375, -0.00954437255859375, -0.0165863037109375, -0.036041259765625, 0.016754150390625, 0.019775390625, -0.06280517578125, 0.0147705078125, 0.0296783447265625, 0.0251312255859375, -0.02142333984375, 0.0142974853515625, 0.0256195068359375, -0.066162109375, -0.0124969482421875, 0.05108642578125, 0.03717041015625, 0.00626373291015625, 0.005939483642578125, 0.016937255859375, 0.094970703125, -0.01690673828125, -0.002468109130859375, 0.00047707557678222656, 0.00853729248046875, 0.01202392578125, -0.037078857421875, -0.00447845458984375, 0.049346923828125, -0.0201263427734375, -0.01128387451171875, 0.051910400390625, 0.01104736328125, 0.0021877288818359375, 0.01198577880859375, 0.00395965576171875, -0.003314971923828125, 0.0506591796875, -0.0159912109375, 0.029937744140625, 0.03814697265625, -0.03778076171875, 0.02191162109375, -0.00823211669921875, -0.0079345703125, -0.01605224609375, 0.01496124267578125, -0.0229949951171875, 0.01433563232421875, 0.0276947021484375, -0.0019779205322265625, 0.0065460205078125, -0.01107025146484375, -0.01373291015625, 0.029388427734375, 0.0071258544921875, -0.0156097412109375, 0.039825439453125, 0.01163482666015625, -0.0220184326171875, -0.0277557373046875, -0.0234222412109375, 0.0088348388671875, -0.0219879150390625, -0.00916290283203125, 0.0218048095703125, 0.031158447265625, 0.03497314453125, -0.02520751953125, 0.0267791748046875, -0.035797119140625, -0.0006799697875976562, -0.040924072265625, -0.0076446533203125, 0.005947113037109375, -0.036895751953125, -0.0175628662109375, 0.043487548828125, -0.00457000732421875, -0.02587890625, -0.01788330078125, -0.002048492431640625, -0.015899658203125, 0.0061798095703125, -0.0335693359375, -0.0011167526245117188, -0.06451416015625, -0.0101776123046875, 0.0181427001953125, 0.05084228515625, -0.0175933837890625, -0.039215087890625, 0.004146575927734375, 0.01372528076171875, -0.07513427734375, -0.08123779296875, -0.0106353759765625, -0.0284881591796875, -0.0072784423828125, -0.00788116455078125, -0.007152557373046875, -0.002269744873046875, -0.007843017578125, -0.0005240440368652344, 0.0259857177734375, -0.051361083984375, -0.05206298828125, -0.0653076171875, -0.061431884765625, -0.01468658447265625, -0.004222869873046875, -0.0056915283203125, 0.0026149749755859375, 0.06707763671875, 0.004482269287109375, -0.06842041015625, -0.01433563232421875, 0.03216552734375, -0.01081085205078125, 0.00240325927734375, -0.00820159912109375, 0.00321197509765625, -0.021026611328125, 0.040374755859375, -0.0012674331665039062, -0.0291748046875, 0.0183258056640625, -0.0474853515625, -0.029052734375, -0.043060302734375, -0.0202789306640625, 0.038848876953125, 0.034698486328125, -0.03125, 0.002994537353515625, -0.04766845703125, -0.0283966064453125, 0.0163116455078125, -0.037689208984375, 0.0048980712890625, 0.0222625732421875, -0.0153350830078125, 0.0181884765625, -0.0023593902587890625, -0.004528045654296875, -0.004558563232421875, -0.053070068359375, -0.01514434814453125, 0.0150909423828125, 0.011016845703125, 0.041351318359375, 0.0282440185546875, -0.025787353515625, -0.022735595703125, 0.0082550048828125, -0.029510498046875, 0.004680633544921875, -0.0088348388671875, 0.01139068603515625, -0.004528045654296875, -0.0135040283203125, 0.0037384033203125, -0.046905517578125, -0.0085296630859375, 0.031280517578125, 0.001399993896484375, 0.058074951171875, 0.052032470703125, -0.055694580078125, -0.0178070068359375, -0.007419586181640625, 0.0111083984375, -0.0304718017578125, -0.046295166015625, -0.039337158203125, -0.007167816162109375, -0.054931640625, 0.006023406982421875, -0.0087432861328125, -0.0099639892578125, -0.0224609375, 0.0089874267578125, -0.057373046875, -0.034637451171875, 0.0367431640625, -0.00952911376953125, 0.015838623046875, 0.0147247314453125, 0.00980377197265625, 0.007389068603515625, -0.0203704833984375, -0.0157623291015625, -0.09161376953125, 0.0002727508544921875, -0.047027587890625, 0.04632568359375, 0.0149078369140625, -0.011566162109375, -0.017669677734375, 0.044647216796875, -0.01316070556640625, -0.057586669921875, 0.0261993408203125, 0.0275421142578125, -0.038177490234375, 0.016265869140625, -0.0165252685546875, -0.0238800048828125, -0.034759521484375, -0.015838623046875, -0.008087158203125, 0.01727294921875, -0.01800537109375, -0.023193359375, 0.00624847412109375, -0.006988525390625, -0.004230499267578125, -0.021728515625, -0.0147857666015625, 0.01605224609375, -0.0236968994140625, 0.011199951171875, -0.0179595947265625, -0.004467010498046875, 0.0273895263671875, -0.01538848876953125, -0.08758544921875, 0.0236968994140625, 0.0233612060546875, 0.0246429443359375, -0.02056884765625, -0.0780029296875, -0.040008544921875, 0.0540771484375, -0.005420684814453125, 0.0300750732421875, 0.0245361328125, -0.0555419921875, 0.06353759765625, 0.0233612060546875, -0.01800537109375, 0.0000775456428527832, 0.05450439453125, 0.002685546875, 0.00384521484375, -0.0159759521484375, -0.01548004150390625, 0.041656494140625, 0.00876617431640625, -0.006134033203125, -0.004207611083984375, 0.0025386810302734375, 0.020233154296875, 0.0050506591796875, -0.01131439208984375, -0.027679443359375, 0.0108795166015625, -0.00499725341796875, 0.032684326171875, 0.08197021484375, 0.0540771484375, -0.005405426025390625, 0.0011129379272460938, -0.005176544189453125, -0.03253173828125, 0.01485443115234375, 0.0594482421875, -0.020538330078125, 0.0015697479248046875, 0.0262908935546875, -0.044891357421875, -0.028594970703125, 0.0118865966796875, 0.0226287841796875, -0.036102294921875, -0.0445556640625, -0.0843505859375, -0.00811004638671875, 0.0063934326171875, 0.018646240234375, -0.00955963134765625, 0.019927978515625, 0.00917816162109375, -0.03338623046875, -0.01262664794921875, -0.0140228271484375, -0.01165771484375, -0.046234130859375, -0.005237579345703125, 0.0076904296875, -0.0271759033203125, -0.00665283203125, 0.0626220703125, 0.034820556640625, 0.0209503173828125, -0.02862548828125, -0.0034809112548828125, -0.006282806396484375, 0.00484466552734375, -0.0015277862548828125, 0.0201873779296875, 0.039703369140625, -0.0382080078125, 0.05987548828125, -0.0038604736328125, -0.0164031982421875, 0.0024738311767578125, -0.01105499267578125, 0.00551605224609375, 0.0272064208984375, 0.0046844482421875, 0.0205230712890625, -0.031494140625, 0.0258331298828125, 0.007503509521484375, -0.048980712890625, -0.0173187255859375, 0.0025844573974609375, -0.01271820068359375, -0.007122039794921875, 0.008453369140625, -0.0248260498046875, 0.002323150634765625, 0.0257415771484375, -0.06622314453125, -0.0239410400390625, 0.01465606689453125, 0.0274658203125, -0.0230255126953125, -0.01091766357421875, 0.0165557861328125, -0.0310821533203125, -0.021575927734375, -0.0126190185546875, -0.01522064208984375, 0.03662109375, -0.0183563232421875, 0.0240020751953125, -0.0268707275390625, -0.0189971923828125, -0.0161590576171875, 0.01495361328125, 0.0592041015625, 0.0328369140625, -0.033233642578125, -0.01282501220703125, -0.0576171875, -0.03485107421875, -0.039703369140625, -0.0251007080078125, -0.0526123046875, 0.0030269622802734375, 0.033935546875, 0.041259765625, -0.00853729248046875, -0.037689208984375, -0.0225677490234375, 0.00765228271484375, 0.04266357421875, 0.09600830078125, -0.0010318756103515625, 0.0254974365234375, 0.0148162841796875, 0.0011682510375976562, 0.01934814453125, 0.0287017822265625, -0.01203155517578125, -0.0248870849609375, -0.015716552734375, -0.017425537109375, 0.007450103759765625, 0.047210693359375, -0.010955810546875, -0.02587890625, 0.0134124755859375, 0.00608062744140625, 0.006084442138671875, 0.01190948486328125, 0.01299285888671875, -0.0211334228515625, -0.0142364501953125, 0.0170745849609375, 0.00179290771484375, 0.00818634033203125, -0.006496429443359375, -0.0188751220703125, -0.007404327392578125, -0.01128387451171875, 0.01096343994140625, 0.0178985595703125, 0.0011653900146484375, -0.01715087890625, -0.09075927734375, 0.06683349609375, 0.0677490234375, 0.0229644775390625, 0.056121826171875, -0.0082550048828125, 0.0236053466796875, 0.0247039794921875, 0.042999267578125, -0.015869140625, 0.0296173095703125, 0.1015625, 0.02166748046875, -0.031982421875, 0.0399169921875, -0.03790283203125, -0.0193023681640625, 0.07666015625, 0.06787109375, -0.09320068359375, -0.0009360313415527344, 0.03106689453125, 0.002468109130859375, -0.0142669677734375, 0.01386260986328125, 0.0069732666015625, 0.0048065185546875, 0.0650634765625, -0.0131072998046875, 0.0037593841552734375, 0.05316162109375, -0.0100250244140625, -0.00923919677734375, -0.037628173828125, 0.061767578125, 0.036651611328125, -0.064453125, 0.00954437255859375, 0.045654296875, -0.0248565673828125, -0.0283050537109375, 0.034912109375, -0.01525115966796875, -0.0030193328857421875, -0.0301971435546875, 0.035980224609375, 0.040435791015625, -0.006107330322265625, 0.0078277587890625, -0.05279541015625, 0.01861572265625, 0.00783538818359375, -0.034088134765625, 0.051788330078125, -0.051666259765625, 0.03076171875, -0.047698974609375, 0.0113983154296875, 0.0628662109375, 0.00048041343688964844, -0.048614501953125, 0.0213165283203125, -0.05560302734375, -0.0243988037109375, -0.015777587890625, -0.045867919921875, 0.044952392578125, -0.01412200927734375, -0.01099395751953125, 0.0206451416015625, 0.029296875, -0.0073089599609375, -0.015716552734375, 0.057891845703125, -0.0049896240234375, 0.02618408203125, 0.00885009765625, 0.044189453125, -0.00327301025390625, -0.016754150390625, -0.07684326171875, 0.048309326171875, -0.024139404296875, 0.0445556640625, -0.023468017578125, 0.0238189697265625, 0.0222625732421875, -0.0023937225341796875, -0.044769287109375, 0.0469970703125, 0.0167999267578125, 0.0288543701171875, -0.051300048828125, -0.005756378173828125, 0.007640838623046875, 0.0205230712890625, 0.005283355712890625, 0.0046234130859375, 0.0032634735107421875, 0.0297393798828125, 0.051544189453125, 0.046295166015625, 0.0101318359375, -0.008087158203125, -0.05023193359375, -0.0098114013671875, 0.0119171142578125, -0.05950927734375, 0.01898193359375, -0.038299560546875, -0.0123291015625, -0.036895751953125, 0.024566650390625, 0.0341796875, -0.002483367919921875, -0.005878448486328125, 0.01291656494140625, -0.0170745849609375, -0.00629425048828125, -0.0271759033203125, -0.0129852294921875, 0.047882080078125, -0.02642822265625, -0.0112762451171875, -0.015716552734375, -0.0242767333984375, 0.01361083984375, -0.03375244140625, 0.0168304443359375, 0.039794921875, 0.033233642578125, 0.03759765625, -0.023834228515625, 0.01258087158203125, 0.005428314208984375, -0.0211639404296875, 0.0657958984375, 0.076904296875, 0.01751708984375, -0.007099151611328125, -0.0279541015625, 0.05828857421875, 0.09197998046875, -0.0467529296875, -0.029510498046875, 0.0020809173583984375, -0.01171875, -0.0018491744995117188, -0.007030487060546875, -0.0101165771484375, 0.01812744140625, 0.048553466796875, -0.054168701171875, -0.020172119140625, 0.040985107421875, 0.03387451171875, 0.009918212890625, 0.00315093994140625, -0.03369140625, -0.0645751953125, -0.060028076171875, 0.019439697265625, -0.0025043487548828125, 0.06719970703125, 0.029083251953125, 0.05865478515625, 0.01009368896484375, -0.0322265625, 0.0004608631134033203, 0.0013628005981445312, -0.006927490234375, 0.0032176971435546875, -0.0271453857421875, -0.000038623809814453125, -0.0146636962890625, 0.023468017578125, -0.01300048828125, -0.0027751922607421875, -0.0205078125, 0.021820068359375, 0.03192138671875, -0.014404296875, 0.072509765625, 0.005710601806640625, -0.013427734375, -0.0019321441650390625, 0.0133209228515625, 0.0330810546875, 0.0175628662109375, -0.00476837158203125, 0.047393798828125, 0.04083251953125, -0.00989532470703125, -0.007244110107421875, 0.0114898681640625, -0.0269012451171875, 0.0408935546875, 0.031707763671875, 0.026519775390625, 0.0235595703125, -0.04541015625, -0.006320953369140625, -0.06536865234375, -0.0262908935546875, 0.0277862548828125, 0.02532958984375, -0.0188751220703125, 0.026702880859375, 0.005870819091796875, -0.02923583984375, -0.0101470947265625, -0.0037174224853515625, 0.023468017578125, -0.0006113052368164062, -0.0086517333984375, -0.0029964447021484375, -0.032135009765625, -0.01727294921875, -0.028778076171875, 0.022247314453125, 0.02728271484375, 0.06640625, -0.0083160400390625, 0.0306396484375, 0.0307159423828125, 0.024322509765625, -0.022705078125, -0.031524658203125, 0.03973388671875, -0.037078857421875, 0.0304718017578125, -0.0092620849609375, -0.003932952880859375, 0.00493621826171875, 0.032867431640625, -0.006435394287109375, 0.0290374755859375, -0.05242919921875, 0.00853729248046875, -0.017181396484375, 0.04840087890625, -0.0017366409301757812, -0.00400543212890625, -0.020965576171875, -0.007183074951171875, 0.048919677734375, 0.038330078125, -0.018035888671875, 0.0205535888671875, 0.01125335693359375, -0.049224853515625, 0.01593017578125, -0.03680419921875, 0.00278472900390625, 0.02447509765625, 0.03912353515625, 0.00516510009765625, 0.0093231201171875, -0.00008320808410644531, 0.01080322265625, 0.02886962890625, -0.01216888427734375, 0.0171051025390625, 0.01468658447265625, -0.01457977294921875, 0.0279388427734375, 0.006603240966796875, -0.06451416015625, 0.004375457763671875, 0.049713134765625, -0.0189208984375, 0.022430419921875, 0.048614501953125, -0.01125335693359375, -0.035003662109375, -0.03302001953125, -0.01824951171875, -0.034942626953125, -0.043212890625, 0.02069091796875, -0.0102386474609375, 0.0194549560546875, -0.0196380615234375, 0.032958984375, -0.047943115234375, -0.023193359375, 0.033843994140625, -0.00788116455078125, 0.033782958984375, -0.0005927085876464844, 0.0167999267578125, -0.07684326171875, 0.0204620361328125, -0.0173187255859375, -0.02862548828125, 0.0059051513671875, 0.029571533203125, 0.05560302734375, -0.033447265625, -0.01515960693359375, 0.0063323974609375, 0.0114288330078125, 0.044525146484375, -0.0011806488037109375, -0.003299713134765625, 0.022674560546875, 0.035308837890625, -0.052886962890625, -0.05889892578125, 0.0155792236328125, -0.00341033935546875, -0.001674652099609375, -0.01434326171875, -0.006458282470703125, 0.0137481689453125, -0.042144775390625, -0.09613037109375, 0.07232666015625, -0.03680419921875, -0.0195159912109375, -0.018310546875, -0.0047454833984375, -0.006740570068359375, 0.02117919921875, -0.0016727447509765625, -0.0014600753784179688, -0.01021575927734375, 0.0290679931640625, 0.0175018310546875, 0.0200653076171875, 0.00281524658203125, 0.00978851318359375, -0.07757568359375, 0.0242462158203125, -0.01535797119140625, 0.014556884765625, -0.007381439208984375, 0.04095458984375, -0.01526641845703125, 0.02740478515625, -0.03924560546875, 0.0247344970703125, -0.043853759765625, -0.00740814208984375, 0.0235595703125, 0.0068817138671875, -0.039520263671875, -0.0440673828125, 0.0190277099609375, 0.010101318359375, 0.004299163818359375, 0.01557159423828125, -0.044342041015625, -0.037506103515625, -0.0216064453125, -0.003131866455078125, 0.02362060546875, -0.06842041015625, 0.0209197998046875, 0.0067138671875, -0.010528564453125, -0.0155181884765625, 0.0136871337890625, -0.0413818359375, -0.0104522705078125, -0.014556884765625, -0.00196075439453125, -0.03955078125, 0.006622314453125, 0.035003662109375, -0.044891357421875, -0.047454833984375, -0.0076446533203125, 0.013275146484375, -0.0178375244140625, -0.019866943359375, -0.022369384765625, 0.028717041015625, -0.021331787109375, -0.006175994873046875, 0.0110015869140625, 0.0296630859375, 0.003902435302734375, 0.01194000244140625, 0.035400390625, 0.02764892578125, -0.0208740234375, 0.0146942138671875, 0.00826263427734375, 0.046295166015625, -0.03155517578125, 0.06903076171875, -0.0182952880859375, 0.0921630859375, 0.0223388671875, 0.0183258056640625, -0.0118408203125, -0.005397796630859375, 0.0350341796875, -0.06195068359375, 0.0013561248779296875, 0.028167724609375, -0.0269317626953125, 0.00685882568359375, -0.01210784912109375, -0.032470703125, 0.004787445068359375, -0.007602691650390625 ]
77c7d889a5888c5bcd5d6ba87375f7edd24d52a6
Wordpress Stackexchange Q: exclude multiple terms using get_terms() function I am using this function to filter category terms from a calendar: $terms = get_terms( TribeEvents::TAXONOMY, array( 'orderby' => 'name', 'order' => 'ASC','exclude' => array(77)) ); echo '<li>Category:</li>'; foreach ( $terms as $term ) { echo '<li><a href="'.$url.'?tribe_eventcategory='.$term->term_taxonomy_id.'">'.$term->name.'</a></li>'; } I need to exclude event category ID 71 too. How can I do that? A: With get_terms(), the exclude parameter takes an array of term IDs, so just add the second term to the array: $terms = get_terms( TribeEvents::TAXONOMY, array( 'orderby' => 'name', 'order' => 'ASC', 'exclude' => array( 77, 71 ), ) ); echo '<li>Category:</li>'; foreach ( $terms as $term ) { echo '<li><a href="'.$url.'?tribe_eventcategory='.$term->term_taxonomy_id.'">'.$term->name.'</a></li>'; }
Q: exclude multiple terms using get_terms() function I am using this function to filter category terms from a calendar: $terms = get_terms( TribeEvents::TAXONOMY, array( 'orderby' => 'name', 'order' => 'ASC','exclude' => array(77)) ); echo '<li>Category:</li>'; foreach ( $terms as $term ) { echo '<li><a href="'.$url.'?tribe_eventcategory='.$term->term_taxonomy_id.'">'.$term->name.'</a></li>'; } I need to exclude event category ID 71 too. How can I do that? A: With get_terms(), the exclude parameter takes an array of term IDs, so just add the second term to the array: $terms = get_terms( TribeEvents::TAXONOMY, array( 'orderby' => 'name', 'order' => 'ASC', 'exclude' => array( 77, 71 ), ) ); echo '<li>Category:</li>'; foreach ( $terms as $term ) { echo '<li><a href="'.$url.'?tribe_eventcategory='.$term->term_taxonomy_id.'">'.$term->name.'</a></li>'; }
wordpress
{ "language": "en", "length": 113, "provenance": "stackexchange_00019.jsonl.gz:469420", "question_score": "5", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/243166" }
[ 0.04180908203125, 0.0003457069396972656, -0.01241302490234375, -0.09136962890625, 0.031951904296875, -0.0253753662109375, 0.01181793212890625, 0.0177154541015625, 0.041168212890625, 0.018798828125, -0.01053619384765625, -0.0205078125, -0.0250091552734375, -0.01454925537109375, -0.049407958984375, -0.022857666015625, 0.0126800537109375, -0.0289306640625, -0.004634857177734375, -0.020263671875, 0.001728057861328125, -0.0100860595703125, 0.0259246826171875, 0.00890350341796875, 0.0290679931640625, -0.0262451171875, 0.054443359375, -0.049041748046875, 0.043670654296875, -0.0265350341796875, 0.0208892822265625, -0.007411956787109375, -0.00473785400390625, 0.021026611328125, 0.01023101806640625, 0.02386474609375, 0.0032863616943359375, 0.0127105712890625, 0.033905029296875, 0.025054931640625, 0.032318115234375, -0.01222991943359375, -0.055633544921875, 0.040069580078125, -0.051788330078125, -0.04510498046875, 0.0254364013671875, -0.014007568359375, -0.013671875, -0.03265380859375, 0.06231689453125, -0.01983642578125, 0.07763671875, -0.0165863037109375, -0.0179901123046875, 0.0247650146484375, -0.00437164306640625, 0.00296783447265625, 0.01554107666015625, 0.01110076904296875, -0.00970458984375, 0.0272369384765625, 0.00312042236328125, -0.0192413330078125, -0.019989013671875, 0.041412353515625, 0.0237274169921875, 0.0083465576171875, -0.0283050537109375, -0.0401611328125, -0.00478363037109375, -0.037445068359375, -0.0026493072509765625, -0.003559112548828125, -0.0078887939453125, -0.02691650390625, 0.0023956298828125, -0.0157012939453125, 0.004085540771484375, 0.018585205078125, 0.00814056396484375, -0.0162506103515625, -0.068115234375, 0.0232696533203125, 0.0165557861328125, 0.05535888671875, -0.0173492431640625, -0.026580810546875, -0.026885986328125, 0.0176849365234375, -0.00237274169921875, -0.008636474609375, -0.042083740234375, 0.0283660888671875, 0.02081298828125, -0.0176849365234375, 0.02056884765625, 0.0692138671875, -0.041046142578125, -0.02166748046875, -0.01221466064453125, -0.010986328125, -0.02581787109375, -0.02911376953125, 0.004856109619140625, 0.0419921875, 0.002353668212890625, 0.07000732421875, 0.06573486328125, 0.0299530029296875, 0.02801513671875, 0.045867919921875, 0.004940032958984375, 0.005168914794921875, -0.037933349609375, -0.012969970703125, -0.0277557373046875, 0.021728515625, 0.0084228515625, 0.020172119140625, 0.0198211669921875, 0.040924072265625, -0.016754150390625, 0.0120391845703125, 0.01001739501953125, 0.0333251953125, -0.0111236572265625, -0.02703857421875, 0.0001990795135498047, -0.01227569580078125, -0.0258636474609375, 0.0221710205078125, 0.025177001953125, 0.01499176025390625, -0.003826141357421875, -0.00007593631744384766, 0.035797119140625, -0.02618408203125, 0.001888275146484375, -0.0215606689453125, 0.06524658203125, 0.0231475830078125, 0.0170745849609375, 0.0160980224609375, -0.005828857421875, -0.027740478515625, 0.0117645263671875, 0.048187255859375, 0.01047515869140625, -0.006244659423828125, 0.018951416015625, -0.0083160400390625, 0.04315185546875, -0.000039696693420410156, -0.0183258056640625, -0.0152587890625, 0.031036376953125, -0.0400390625, -0.0179901123046875, -0.05364990234375, 0.016693115234375, -0.0069122314453125, 0.005001068115234375, -0.0172882080078125, -0.034149169921875, -0.020751953125, -0.0440673828125, -0.011688232421875, 0.0164947509765625, 0.0257110595703125, 0.0267181396484375, -0.008819580078125, 0.0092010498046875, 0.0216217041015625, 0.0013141632080078125, 0.0085906982421875, -0.0180206298828125, -0.01541900634765625, 0.017913818359375, -0.01439666748046875, -0.0479736328125, -0.058868408203125, -0.04376220703125, 0.00978851318359375, -0.08245849609375, 0.07012939453125, -0.0052490234375, 0.05010986328125, 0.002635955810546875, -0.024749755859375, 0.08038330078125, 0.04022216796875, -0.03656005859375, -0.0241851806640625, -0.0014104843139648438, -0.0067138671875, 0.0004475116729736328, 0.0018634796142578125, 0.00333404541015625, 0.00811767578125, 0.042236328125, -0.0211944580078125, 0.007381439208984375, -0.034759521484375, -0.0802001953125, -0.0166473388671875, -0.01959228515625, 0.030120849609375, -0.035736083984375, 0.044281005859375, 0.0247344970703125, 0.01087188720703125, -0.045806884765625, 0.0146331787109375, 0.005764007568359375, -0.025909423828125, 0.0113677978515625, 0.033966064453125, 0.0014791488647460938, 0.033843994140625, 0.007411956787109375, -0.040985107421875, 0.00279998779296875, 0.04119873046875, 0.06414794921875, -0.02508544921875, -0.0198822021484375, -0.042572021484375, 0.023223876953125, -0.0017490386962890625, -0.06146240234375, 0.055999755859375, 0.038421630859375, 0.069091796875, -0.00176239013671875, 0.0142974853515625, 0.0460205078125, -0.0272064208984375, -0.0020160675048828125, 0.01071929931640625, 0.03558349609375, 0.01220703125, -0.02984619140625, -0.03521728515625, 0.06768798828125, -0.04034423828125, -0.018585205078125, -0.0169677734375, -0.0180816650390625, 0.0271453857421875, 0.0343017578125, 0.0181121826171875, -0.00034499168395996094, 0.047149658203125, 0.0126953125, 0.016815185546875, -0.017547607421875, -0.0272674560546875, 0.0284576416015625, 0.006008148193359375, 0.00511932373046875, -0.052703857421875, -0.02423095703125, -0.0126190185546875, 0.000499725341796875, -0.009490966796875, -0.0126495361328125, -0.01032257080078125, -0.01910400390625, -0.01103973388671875, 0.0304412841796875, -0.0287017822265625, -0.01506805419921875, 0.0230712890625, 0.033416748046875, 0.013763427734375, -0.03021240234375, 0.00482177734375, -0.0258636474609375, 0.021697998046875, 0.0033130645751953125, 0.0975341796875, 0.019378662109375, -0.0219573974609375, -0.046234130859375, -0.04840087890625, -0.00759124755859375, -0.01464080810546875, -0.076904296875, -0.045806884765625, -0.01392364501953125, 0.058135986328125, -0.019989013671875, 0.0085296630859375, -0.0078887939453125, 0.01311492919921875, -0.037628173828125, 0.0261688232421875, 0.00994873046875, -0.01506805419921875, -0.0428466796875, 0.01111602783203125, 0.0020465850830078125, -0.01056671142578125, 0.012664794921875, -0.0540771484375, 0.02020263671875, -0.008331298828125, -0.00504302978515625, 0.02691650390625, -0.07293701171875, 0.035919189453125, 0.01336669921875, 0.035552978515625, 0.002819061279296875, -0.0271453857421875, 0.0134429931640625, 0.007305145263671875, -0.002376556396484375, 0.00919342041015625, -0.01898193359375, 0.00957489013671875, 0.0026531219482421875, -0.01146697998046875, 0.00704193115234375, -0.0019683837890625, -0.0309600830078125, 0.00180816650390625, 0.0192413330078125, -0.0120086669921875, -0.045166015625, -0.0214080810546875, -0.038909912109375, 0.0279693603515625, -0.01131439208984375, 0.00179290771484375, 0.00534820556640625, 0.10247802734375, 0.0094451904296875, -0.08453369140625, -0.00997161865234375, 0.0272674560546875, -0.01007080078125, 0.043792724609375, -0.016448974609375, -0.0107574462890625, -0.02197265625, -0.01551055908203125, 0.0633544921875, 0.00759124755859375, -0.0221099853515625, 0.009368896484375, -0.02001953125, 0.016632080078125, 0.044891357421875, -0.0338134765625, -0.00939178466796875, 0.043853759765625, 0.044097900390625, -0.01480865478515625, 0.0190582275390625, -0.025726318359375, -0.0101776123046875, 0.01043701171875, -0.0004107952117919922, -0.0038909912109375, 0.0055999755859375, -0.005382537841796875, -0.00870513916015625, 0.0035877227783203125, -0.01885986328125, -0.0282440185546875, 0.045135498046875, 0.016387939453125, 0.0194854736328125, 0.01495361328125, 0.015838623046875, -0.033416748046875, -0.008056640625, -0.0080108642578125, 0.0012531280517578125, -0.0017747879028320312, -0.0081329345703125, -0.01032257080078125, -0.0189056396484375, 0.021514892578125, -0.063720703125, -0.0006632804870605469, -0.0189361572265625, -0.00011515617370605469, -0.002079010009765625, 0.038543701171875, -0.01323699951171875, -0.049835205078125, -0.0263519287109375, 0.01047515869140625, -0.0012569427490234375, -0.04461669921875, 0.049896240234375, -0.01302337646484375, -0.08526611328125, 0.0011005401611328125, 0.008392333984375, -0.0294952392578125, -0.0217742919921875, 0.00664520263671875, -0.05938720703125, -0.037811279296875, 0.0260162353515625, 0.01114654541015625, -0.00003123283386230469, 0.024200439453125, 0.00702667236328125, 0.01258087158203125, -0.020751953125, 0.01177978515625, 0.01000213623046875, 0.0011434555053710938, 0.007701873779296875, -0.02313232421875, -0.00763702392578125, 0.0238800048828125, -0.00170135498046875, 0.03179931640625, 0.00830078125, -0.061553955078125, 0.020477294921875, -0.02093505859375, -0.0016469955444335938, 0.0723876953125, -0.00521087646484375, 0.0008869171142578125, -0.0264434814453125, -0.0147247314453125, -0.02581787109375, 0.030853271484375, 0.006427764892578125, 0.02947998046875, 0.02508544921875, -0.01751708984375, -0.0638427734375, -0.04107666015625, 0.0007495880126953125, -0.01459503173828125, -0.0001080632209777832, -0.021026611328125, -0.0262603759765625, -0.058837890625, 0.041259765625, 0.03643798828125, -0.04083251953125, 0.0000010728836059570312, 0.042572021484375, 0.0261688232421875, -0.04327392578125, -0.05712890625, 0.00664520263671875, 0.018646240234375, -0.01050567626953125, 0.036956787109375, -0.0280914306640625, -0.0323486328125, 0.1116943359375, -0.03314208984375, 0.045074462890625, -0.0194854736328125, 0.007068634033203125, -0.00101470947265625, -0.00897979736328125, 0.015838623046875, 0.01251220703125, -0.01015472412109375, -0.0211639404296875, -0.0117340087890625, -0.0139007568359375, -0.01329803466796875, 0.047607421875, 0.01398468017578125, 0.010711669921875, -0.047760009765625, -0.002918243408203125, 0.0021343231201171875, -0.009368896484375, 0.034637451171875, 0.021270751953125, 0.0017442703247070312, -0.0072174072265625, 0.003025054931640625, 0.0200347900390625, -0.0020160675048828125, 0.01271820068359375, -0.052642822265625, 0.0226898193359375, 0.01541900634765625, -0.00433349609375, -0.00707244873046875, 0.00759124755859375, -0.0255584716796875, -0.01235198974609375, -0.0301361083984375, 0.007625579833984375, 0.0035228729248046875, -0.021453857421875, 0.030731201171875, -0.03643798828125, 0.0006198883056640625, 0.003993988037109375, 0.016448974609375, 0.026702880859375, -0.03887939453125, 0.00647735595703125, -0.0004134178161621094, -0.0299835205078125, 0.0024127960205078125, -0.022125244140625, 0.0242919921875, -0.0002846717834472656, -0.013824462890625, 0.0160369873046875, -0.014862060546875, 0.041717529296875, 0.0201568603515625, 0.0355224609375, 0.018402099609375, -0.01068878173828125, -0.019866943359375, 0.035736083984375, -0.0155181884765625, -0.061798095703125, -0.056060791015625, 0.0006861686706542969, 0.01543426513671875, -0.027130126953125, -0.00034546852111816406, 0.05828857421875, 0.0614013671875, -0.0252685546875, 0.013031005859375, 0.020721435546875, 0.0166168212890625, -0.0208892822265625, -0.021270751953125, 0.0085601806640625, 0.035919189453125, -0.02923583984375, 0.04034423828125, -0.06121826171875, 0.0074462890625, 0.041412353515625, -0.018157958984375, -0.0232696533203125, -0.00762939453125, -0.0177001953125, -0.01995849609375, -0.00824737548828125, -0.047821044921875, -0.040740966796875, 0.00199127197265625, 0.000545501708984375, 0.032073974609375, -0.0230255126953125, 0.039581298828125, -0.025421142578125, -0.0096588134765625, -0.025634765625, -0.00449371337890625, 0.0537109375, 0.044830322265625, -0.03277587890625, 0.006458282470703125, -0.061248779296875, -0.002010345458984375, -0.03594970703125, -0.0287628173828125, -0.0237274169921875, 0.0030803680419921875, -0.0212860107421875, 0.001186370849609375, 0.0117034912109375, 0.0307159423828125, 0.0256805419921875, 0.0160980224609375, -0.0443115234375, -0.0291748046875, -0.0021724700927734375, -0.017120361328125, 0.01271820068359375, 0.01448822021484375, -0.007419586181640625, -0.04364013671875, -0.0125885009765625, -0.02215576171875, -0.0308380126953125, -0.09027099609375, 0.0012989044189453125, 0.033599853515625, -0.06439208984375, 0.038055419921875, 0.0278778076171875, 0.02215576171875, -0.0211029052734375, -0.017059326171875, -0.0005731582641601562, -0.016204833984375, 0.035400390625, -0.008514404296875, -0.03326416015625, 0.0019969940185546875, -0.02667236328125, 0.04937744140625, -0.01171112060546875, 0.0180206298828125, 0.01751708984375, -0.04876708984375, 0.031646728515625, 0.0270843505859375, 0.0185089111328125, 0.0097503662109375, 0.02886962890625, -0.006626129150390625, 0.049072265625, 0.018341064453125, 0.037445068359375, 0.048828125, 0.051666259765625, -0.0017414093017578125, -0.04351806640625, 0.03289794921875, 0.0011777877807617188, -0.01436614990234375, 0.0031070709228515625, -0.0218048095703125, -0.0252227783203125, -0.03924560546875, -0.00234222412109375, 0.020538330078125, 0.014068603515625, 0.01462554931640625, 0.00360870361328125, -0.010955810546875, 0.02685546875, -0.0253753662109375, -0.0201263427734375, -0.07373046875, -0.0147705078125, -0.0546875, -0.04736328125, 0.0224609375, 0.0014324188232421875, 0.0006537437438964844, 0.046966552734375, 0.006046295166015625, -0.04803466796875, -0.00344085693359375, 0.025360107421875, 0.00719451904296875, -0.034698486328125, 0.0079803466796875, 0.01346588134765625, -0.037353515625, -0.08892822265625, 0.0063018798828125, 0.027923583984375, -0.024658203125, 0.01375579833984375, -0.0604248046875, -0.0091552734375, 0.01345062255859375, -0.040863037109375, 0.02032470703125, -0.01186370849609375, -0.0716552734375, 0.01456451416015625, 0.0161285400390625, 0.002101898193359375, 0.0178070068359375, -0.019012451171875, 0.00847625732421875, -0.031951904296875, 0.01947021484375, -0.024444580078125, -0.0235443115234375, 0.10003662109375, -0.016998291015625, -0.0382080078125, 0.0122222900390625, 0.0157470703125, -0.0123138427734375, 0.0258941650390625, 0.03448486328125, -0.03662109375, -0.0367431640625, 0.0316162109375, -0.027069091796875, -0.021331787109375, 0.01551055908203125, -0.08001708984375, 0.06048583984375, -0.031524658203125, 0.060150146484375, 0.0013332366943359375, 0.0130767822265625, -0.01727294921875, -0.0121612548828125, -0.036224365234375, 0.0244598388671875, 0.047027587890625, 0.01192474365234375, -0.02532958984375, -0.026641845703125, -0.006927490234375, 0.037872314453125, 0.06976318359375, 0.002712249755859375, -0.005741119384765625, 0.007328033447265625, 0.06939697265625, 0.04559326171875, -0.007232666015625, 0.0177154541015625, 0.00913238525390625, -0.044342041015625, 0.0263671875, 0.055328369140625, 0.05706787109375, -0.039276123046875, -0.01904296875, 0.0278472900390625, -0.01556396484375, -0.01497650146484375, 0.01399993896484375, -0.0189361572265625, 0.003875732421875, -0.01486968994140625, -0.01800537109375, -0.0197601318359375, 0.00928497314453125, 0.0009694099426269531, 0.01605224609375, -0.03759765625, 0.007579803466796875, -0.0187225341796875, 0.040557861328125, 0.0189056396484375, 0.045318603515625, 0.0802001953125, 0.0241241455078125, 0.03363037109375, 0.00933837890625, 0.049652099609375, -0.02069091796875, -0.0059051513671875, 0.0205535888671875, 0.001129150390625, 0.0159912109375, -0.06707763671875, -0.0083465576171875, 0.057464599609375, 0.049041748046875, -0.0243682861328125, -0.03680419921875, 0.01390838623046875, 0.0096435546875, 0.0136260986328125, 0.00905609130859375, 0.024658203125, 0.00820159912109375, 0.04962158203125, -0.0718994140625, 0.0280609130859375, 0.053497314453125, 0.0089263916015625, -0.0247344970703125, -0.0142669677734375, -0.04705810546875, 0.0142669677734375, -0.046661376953125, 0.0250091552734375, 0.00925445556640625, 0.0225372314453125, 0.006378173828125, 0.03900146484375, 0.00835418701171875, -0.0131378173828125, 0.0176849365234375, 0.01593017578125, 0.004970550537109375, -0.0318603515625, 0.024749755859375, -0.0007581710815429688, -0.038177490234375, 0.009979248046875, 0.00920867919921875, 0.0260467529296875, 0.039337158203125, 0.07330322265625, -0.00007635354995727539, 0.0001304149627685547, 0.07598876953125, -0.004673004150390625, -0.0199737548828125, -0.041595458984375, 0.032379150390625, 0.0322265625, 0.006072998046875, 0.0274810791015625, 0.0142822265625, 0.04864501953125, -0.027130126953125, 0.028564453125, -0.00926971435546875, -0.017059326171875, -0.001888275146484375, -0.01605224609375, 0.0142364501953125, -0.0035762786865234375, -0.060943603515625, -0.00022590160369873047, -0.0270538330078125, -0.010498046875, 0.015289306640625, 0.027252197265625, -0.030853271484375, 0.040008544921875, 0.01416778564453125, -0.00018203258514404297, 0.00972747802734375, -0.002349853515625, -0.0115814208984375, -0.042572021484375, 0.0240325927734375, -0.0247344970703125, -0.007343292236328125, 0.00948333740234375, 0.037811279296875, 0.007709503173828125, 0.0095062255859375, 0.05072021484375, -0.01995849609375, -0.0017023086547851562, 0.017913818359375, 0.028472900390625, -0.02154541015625, -0.01090240478515625, 0.018310546875, -0.0292816162109375, 0.006809234619140625, -0.004047393798828125, -0.0240936279296875, 0.01029205322265625, 0.034942626953125, -0.02288818359375, 0.033203125, -0.039337158203125, 0.01320648193359375, -0.0306854248046875, 0.055267333984375, 0.0007505416870117188, -0.003971099853515625, -0.0330810546875, -0.04010009765625, 0.05615234375, 0.07379150390625, 0.0188446044921875, -0.01148223876953125, -0.0052032470703125, -0.0281829833984375, 0.042236328125, 0.0033245086669921875, 0.031890869140625, 0.027862548828125, -0.01529693603515625, 0.032440185546875, 0.0174713134765625, -0.00548553466796875, 0.0213165283203125, 0.02606201171875, -0.030853271484375, 0.0130157470703125, -0.025909423828125, -0.0067596435546875, 0.0058135986328125, 0.0095977783203125, -0.0214691162109375, -0.01271820068359375, 0.0293731689453125, -0.02288818359375, -0.04052734375, -0.016998291015625, -0.0204620361328125, -0.0227508544921875, -0.0168914794921875, -0.00039768218994140625, -0.004322052001953125, -0.04058837890625, -0.00846099853515625, -0.0181427001953125, 0.03192138671875, 0.0061798095703125, 0.002536773681640625, -0.01529693603515625, -0.012725830078125, -0.01229095458984375, 0.0177154541015625, -0.024871826171875, 0.002933502197265625, 0.012847900390625, -0.02398681640625, -0.0099334716796875, -0.032470703125, -0.0020771026611328125, -0.01629638671875, -0.03863525390625, 0.01203155517578125, 0.0211334228515625, -0.039886474609375, -0.016632080078125, -0.0283355712890625, 0.018646240234375, -0.016754150390625, -0.0200042724609375, 0.0171051025390625, 0.017333984375, -0.051239013671875, -0.0229644775390625, 0.0250244140625, 0.030303955078125, -0.036834716796875, 0.0338134765625, -0.0440673828125, -0.0163421630859375, -0.054443359375, -0.09710693359375, 0.06451416015625, 0.0023937225341796875, -0.044281005859375, -0.0293121337890625, -0.003917694091796875, -0.0125885009765625, -0.01088714599609375, 0.0027256011962890625, -0.038787841796875, -0.00543212890625, 0.0240631103515625, 0.030426025390625, -0.003082275390625, 0.04132080078125, -0.0132904052734375, -0.11895751953125, -0.0269927978515625, -0.059783935546875, 0.03826904296875, -0.0205841064453125, -0.0019207000732421875, 0.02545166015625, 0.0281829833984375, -0.00904083251953125, -0.00490570068359375, 0.0190887451171875, -0.0260009765625, -0.012420654296875, -0.05572509765625, -0.05645751953125, -0.021820068359375, 0.08990478515625, 0.0689697265625, 0.0255126953125, -0.0304718017578125, -0.022247314453125, -0.04620361328125, 0.001079559326171875, -0.0096893310546875, 0.01666259765625, -0.0626220703125, -0.006404876708984375, 0.0282135009765625, -0.0280609130859375, 0.0426025390625, 0.040252685546875, -0.046600341796875, 0.01439666748046875, 0.00147247314453125, -0.0173492431640625, -0.1500244140625, 0.0728759765625, -0.05242919921875, -0.0225982666015625, -0.04949951171875, -0.047760009765625, -0.018768310546875, -0.06951904296875, -0.079345703125, -0.067138671875, -0.06414794921875, 0.036865234375, 0.03851318359375, -0.021820068359375, 0.006404876708984375, 0.0300140380859375, 0.020599365234375, -0.032867431640625, 0.00885009765625, 0.0167236328125, -0.007389068603515625, -0.0360107421875, 0.025421142578125, 0.0216217041015625, 0.0736083984375, -0.0298309326171875, 0.043731689453125, -0.01319122314453125, 0.02191162109375, -0.01293182373046875, 0.02276611328125, 0.033782958984375, -0.01074981689453125, 0.00438690185546875, -0.00588226318359375, -0.0232696533203125, -0.037872314453125, 0.012939453125, -0.0264892578125, 0.0013103485107421875, 0.023681640625 ]
1319d671fa65ebabdcbb1bcce48b53884886faac
Wordpress Stackexchange Q: Setting Cookie Using a Variable from the URL I need to hand code an affiliate link (we do not want to use an existing plugin). I do not do a lot of coding, so bear with me. It seems so simple I have a link: http://www.domain.com/?code=8765 Then I want to grab that code number and put it in a cookie. That way if a lead form goes in it can be passed through the API to SalesForce. Can anyone tell me why this isn't working? If the id variable is set to a string it works fine. Does this even make sense to accomplish this using this method? add_action( 'init', 'set_agent_cookie' ); function set_agent_cookie() { $name = 'agent'; $id = $_GET['code']; setcookie( $name, $id, time() + 3600, "/", COOKIE_DOMAIN ); }
Q: Setting Cookie Using a Variable from the URL I need to hand code an affiliate link (we do not want to use an existing plugin). I do not do a lot of coding, so bear with me. It seems so simple I have a link: http://www.domain.com/?code=8765 Then I want to grab that code number and put it in a cookie. That way if a lead form goes in it can be passed through the API to SalesForce. Can anyone tell me why this isn't working? If the id variable is set to a string it works fine. Does this even make sense to accomplish this using this method? add_action( 'init', 'set_agent_cookie' ); function set_agent_cookie() { $name = 'agent'; $id = $_GET['code']; setcookie( $name, $id, time() + 3600, "/", COOKIE_DOMAIN ); }
wordpress
{ "language": "en", "length": 132, "provenance": "stackexchange_00019.jsonl.gz:469422", "question_score": "4", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/243170" }
[ 0.061553955078125, -0.01427459716796875, 0.00792694091796875, 0.01934814453125, -0.0013036727905273438, -0.03485107421875, 0.0743408203125, -0.0224151611328125, -0.0281524658203125, -0.01525115966796875, -0.0194091796875, 0.0088958740234375, -0.05615234375, -0.04132080078125, 0.0400390625, -0.037506103515625, 0.0242767333984375, -0.0164642333984375, -0.0067291259765625, -0.024017333984375, 0.00444793701171875, -0.01033782958984375, 0.010345458984375, -0.0025501251220703125, 0.05865478515625, -0.068603515625, 0.0235137939453125, 0.02264404296875, 0.033477783203125, 0.019195556640625, 0.0272064208984375, -0.037322998046875, 0.01204681396484375, 0.005718231201171875, -0.0214080810546875, -0.0012912750244140625, -0.004184722900390625, -0.007904052734375, 0.005420684814453125, 0.0228424072265625, 0.06707763671875, -0.032958984375, -0.0043182373046875, -0.006175994873046875, -0.000014662742614746094, -0.04705810546875, 0.066650390625, -0.032073974609375, 0.0024433135986328125, 0.02813720703125, -0.007472991943359375, 0.056427001953125, -0.00640869140625, 0.06854248046875, 0.00736236572265625, 0.0247955322265625, 0.0304107666015625, -0.03448486328125, 0.019317626953125, -0.038543701171875, -0.0308685302734375, 0.000026941299438476562, 0.0265655517578125, 0.006988525390625, 0.0095367431640625, -0.01258087158203125, -0.0194854736328125, 0.008544921875, -0.0380859375, 0.01485443115234375, 0.056060791015625, -0.0360107421875, -0.0035381317138671875, -0.0009145736694335938, -0.03094482421875, -0.0196990966796875, 0.035980224609375, -0.0004303455352783203, -0.00991058349609375, 0.006580352783203125, -0.00011295080184936523, -0.0281524658203125, -0.046051025390625, 0.00997161865234375, 0.00846099853515625, 0.03955078125, -0.00789642333984375, -0.02117919921875, -0.0027751922607421875, -0.03363037109375, -0.0159912109375, 0.041839599609375, 0.0240631103515625, -0.036224365234375, -0.0634765625, -0.0232696533203125, 0.03839111328125, 0.035064697265625, 0.0145111083984375, -0.019927978515625, -0.0032024383544921875, -0.0316162109375, 0.002605438232421875, -0.01580810546875, -0.02349853515625, 0.03839111328125, 0.042449951171875, 0.044647216796875, -0.016754150390625, -0.016845703125, -0.00255584716796875, -0.051300048828125, -0.0199432373046875, 0.01444244384765625, -0.041412353515625, -0.045440673828125, -0.08544921875, 0.01381683349609375, -0.00649261474609375, -0.01403045654296875, -0.03326416015625, 0.002353668212890625, -0.00701904296875, 0.032257080078125, 0.0197906494140625, 0.031402587890625, 0.0241241455078125, -0.037933349609375, -0.004856109619140625, 0.018035888671875, -0.056427001953125, -0.00699615478515625, 0.07568359375, 0.058135986328125, 0.048919677734375, -0.0253753662109375, 0.00385284423828125, -0.0165557861328125, -0.00699615478515625, -0.022186279296875, 0.0286865234375, -0.01025390625, 0.0046844482421875, 0.0081634521484375, 0.005970001220703125, 0.0178375244140625, 0.0135955810546875, 0.02740478515625, -0.0045166015625, -0.032958984375, 0.0304718017578125, -0.027496337890625, 0.007625579833984375, 0.01233673095703125, 0.0100860595703125, -0.00809478759765625, 0.0219573974609375, -0.0210418701171875, 0.01525115966796875, -0.0105438232421875, -0.0252685546875, -0.01910400390625, 0.01175689697265625, -0.0333251953125, -0.026458740234375, 0.015960693359375, -0.026885986328125, 0.0061187744140625, 0.0219268798828125, 0.025238037109375, 0.006809234619140625, -0.03619384765625, 0.00012165307998657227, 0.01373291015625, -0.01328277587890625, 0.0175323486328125, -0.0174713134765625, 0.0279083251953125, 0.054473876953125, -0.043792724609375, -0.01024627685546875, -0.040802001953125, 0.063720703125, -0.016815185546875, -0.0173797607421875, 0.051910400390625, -0.0166168212890625, 0.003925323486328125, -0.012298583984375, -0.00792694091796875, -0.00899505615234375, 0.06939697265625, -0.06378173828125, 0.0226898193359375, 0.0254974365234375, -0.00385284423828125, -0.018890380859375, -0.01175689697265625, 0.00917816162109375, -0.0204620361328125, -0.017120361328125, 0.0095672607421875, 0.01491546630859375, 0.023590087890625, 0.08734130859375, -0.0016384124755859375, 0.0218963623046875, -0.003353118896484375, -0.0220794677734375, 0.01128387451171875, 0.019195556640625, -0.0022983551025390625, -0.015716552734375, -0.0379638671875, -0.01502227783203125, 0.0144195556640625, 0.0005388259887695312, 0.046844482421875, 0.00021326541900634766, 0.0197906494140625, 0.0025386810302734375, -0.0237274169921875, 0.00556182861328125, -0.0036563873291015625, 0.00434112548828125, -0.0293731689453125, -0.020355224609375, -0.02716064453125, -0.031585693359375, -0.0223846435546875, -0.020477294921875, 0.07086181640625, 0.0303802490234375, 0.01519012451171875, -0.0305938720703125, -0.0087432861328125, -0.0101470947265625, -0.04779052734375, 0.001567840576171875, 0.0582275390625, 0.0570068359375, 0.01004791259765625, -0.006378173828125, -0.04302978515625, 0.044281005859375, -0.03485107421875, 0.0233154296875, -0.050201416015625, 0.0218505859375, 0.046051025390625, 0.0172576904296875, -0.0152587890625, 0.0089569091796875, -0.056121826171875, -0.0214996337890625, 0.018280029296875, -0.0007443428039550781, -0.028350830078125, 0.0171356201171875, 0.013214111328125, -0.003093719482421875, -0.002681732177734375, -0.011199951171875, -0.016998291015625, -0.01214599609375, 0.0220794677734375, 0.0079345703125, 0.0089263916015625, -0.048309326171875, 0.0177154541015625, 0.033172607421875, 0.027618408203125, -0.016876220703125, 0.0132598876953125, 0.034332275390625, -0.0289764404296875, -0.04412841796875, 0.00662994384765625, 0.00959014892578125, -0.0028591156005859375, -0.0049591064453125, 0.044586181640625, -0.0122222900390625, -0.022186279296875, -0.02142333984375, 0.0153045654296875, -0.0145111083984375, -0.0166778564453125, 0.0152130126953125, 0.01108551025390625, 0.06805419921875, -0.028778076171875, -0.0379638671875, 0.0207672119140625, -0.04046630859375, -0.03350830078125, 0.0484619140625, -0.01180267333984375, 0.0278778076171875, -0.0257110595703125, 0.044219970703125, 0.04327392578125, -0.017852783203125, -0.003570556640625, -0.0007834434509277344, -0.051513671875, -0.032501220703125, 0.055511474609375, 0.0304107666015625, -0.07305908203125, 0.03851318359375, 0.06329345703125, 0.0209503173828125, 0.036224365234375, -0.0159912109375, -0.05511474609375, -0.0264129638671875, 0.00455474853515625, -0.137451171875, -0.123046875, 0.0694580078125, -0.04193115234375, -0.01422882080078125, 0.01123809814453125, -0.0304107666015625, -0.036376953125, 0.053741455078125, -0.01336669921875, 0.031768798828125, -0.01451873779296875, -0.01276397705078125, 0.0176239013671875, -0.035003662109375, 0.0253448486328125, -0.0022106170654296875, -0.01342010498046875, 0.004283905029296875, 0.005062103271484375, -0.003528594970703125, -0.0308074951171875, -0.002681732177734375, -0.00301361083984375, -0.01505279541015625, -0.0170440673828125, -0.04949951171875, -0.038055419921875, 0.03680419921875, -0.03515625, -0.0304412841796875, 0.006092071533203125, 0.046966552734375, 0.00159454345703125, -0.022003173828125, -0.01239013671875, 0.01531982421875, -0.0161285400390625, 0.0180511474609375, 0.0004830360412597656, 0.018798828125, -0.03765869140625, 0.0284881591796875, -0.02099609375, -0.01971435546875, -0.00787353515625, 0.0257568359375, 0.00046372413635253906, -0.011871337890625, -0.0212249755859375, 0.01751708984375, -0.00955963134765625, 0.0162200927734375, -0.021881103515625, 0.016143798828125, 0.00960540771484375, 0.0140380859375, -0.0205078125, 0.1015625, 0.02667236328125, -0.04327392578125, 0.0251617431640625, 0.025634765625, -0.0105743408203125, -0.00743865966796875, -0.07135009765625, -0.07080078125, 0.05499267578125, -0.06317138671875, -0.00572967529296875, -0.069091796875, -0.0194091796875, -0.03179931640625, 0.07452392578125, -0.007415771484375, -0.0258331298828125, 0.0186004638671875, 0.0204315185546875, -0.027496337890625, -0.03448486328125, -0.01024627685546875, -0.0169677734375, -0.050567626953125, 0.0518798828125, 0.00786590576171875, 0.015625, -0.040130615234375, 0.0382080078125, -0.030792236328125, -0.0252532958984375, 0.0193023681640625, 0.033905029296875, -0.042510986328125, 0.0220794677734375, -0.036346435546875, 0.00489044189453125, -0.029693603515625, 0.0144195556640625, -0.01251983642578125, -0.01416015625, 0.0254669189453125, 0.01300048828125, 0.021484375, -0.0692138671875, 0.00406646728515625, 0.03570556640625, -0.023468017578125, -0.032318115234375, 0.0240325927734375, 0.032073974609375, -0.006359100341796875, 0.0208892822265625, -0.021514892578125, -0.0208740234375, -0.005340576171875, -0.01158905029296875, -0.0161895751953125, 0.07574462890625, -0.01103973388671875, 0.03912353515625, -0.006988525390625, -0.012725830078125, -0.0946044921875, -0.043487548828125, 0.00939178466796875, 0.01447296142578125, 0.008819580078125, -0.01500701904296875, -0.0421142578125, -0.07843017578125, 0.0389404296875, -0.005950927734375, -0.018951416015625, -0.0186614990234375, 0.06231689453125, 0.0252227783203125, -0.022735595703125, 0.071044921875, -0.0004353523254394531, 0.014495849609375, -0.039764404296875, 0.03680419921875, -0.00539398193359375, -0.024932861328125, 0.0806884765625, -0.03955078125, 0.035888671875, 0.0009698867797851562, -0.0006589889526367188, 0.0019083023071289062, -0.005405426025390625, -0.0032501220703125, 0.0190582275390625, -0.0211639404296875, -0.0013189315795898438, -0.0179595947265625, -0.00046753883361816406, -0.0016717910766601562, 0.027862548828125, -0.0196380615234375, 0.03070068359375, -0.0121917724609375, -0.021697998046875, 0.0029582977294921875, 0.01418304443359375, 0.030731201171875, 0.00937652587890625, 0.01019287109375, -0.002685546875, 0.0090484619140625, 0.034912109375, -0.00795745849609375, 0.0200042724609375, 0.00138092041015625, 0.052825927734375, -0.01715087890625, 0.0275726318359375, -0.0280303955078125, -0.00640869140625, 0.055023193359375, 0.0303497314453125, -0.021148681640625, 0.0109710693359375, 0.00249481201171875, -0.01419830322265625, -0.007770538330078125, -0.0044097900390625, 0.0552978515625, 0.006710052490234375, -0.01447296142578125, -0.0055694580078125, -0.05072021484375, 0.00724029541015625, -0.050048828125, 0.04827880859375, 0.01064300537109375, 0.013580322265625, -0.003383636474609375, 0.10528564453125, 0.0259552001953125, 0.05328369140625, -0.032806396484375, 0.041229248046875, 0.031585693359375, 0.0474853515625, 0.02545166015625, -0.027923583984375, -0.01568603515625, 0.0198822021484375, -0.035491943359375, 0.00913238525390625, -0.0013513565063476562, 0.018585205078125, 0.007579803466796875, 0.01505279541015625, 0.0223541259765625, -0.0032253265380859375, -0.002246856689453125, 0.0115203857421875, 0.020965576171875, -0.006061553955078125, -0.007671356201171875, -0.0214691162109375, -0.0014295578002929688, 0.03411865234375, 0.004650115966796875, 0.0160369873046875, 0.031585693359375, -0.003971099853515625, 0.04034423828125, 0.032806396484375, 0.048797607421875, -0.0278167724609375, -0.04931640625, 0.00867462158203125, -0.01800537109375, -0.044464111328125, -0.00406646728515625, -0.0119171142578125, -0.022979736328125, -0.001735687255859375, 0.069580078125, -0.045806884765625, 0.0184783935546875, -0.0086669921875, -0.0013904571533203125, 0.00952911376953125, 0.00873565673828125, 0.0423583984375, 0.0299530029296875, -0.032684326171875, 0.01409912109375, -0.06280517578125, 0.00951385498046875, 0.032989501953125, -0.0154266357421875, -0.0140533447265625, -0.0185546875, -0.00637054443359375, 0.04241943359375, 0.00110626220703125, -0.005466461181640625, 0.01453399658203125, -0.01561737060546875, -0.025543212890625, 0.0236968994140625, 0.004795074462890625, 0.03411865234375, 0.00785064697265625, 0.00951385498046875, 0.019195556640625, -0.00566864013671875, -0.019500732421875, 0.0002713203430175781, 0.0004420280456542969, 0.01142120361328125, -0.02874755859375, -0.018829345703125, 0.00025272369384765625, 0.00569915771484375, 0.07623291015625, -0.0106658935546875, 0.0201568603515625, -0.007343292236328125, 0.00008374452590942383, -0.02593994140625, 0.007778167724609375, 0.0038089752197265625, 0.02838134765625, 0.0163726806640625, -0.00868988037109375, -0.024932861328125, 0.00051116943359375, 0.01800537109375, -0.01421356201171875, -0.01146697998046875, -0.0086822509765625, -0.01340484619140625, -0.03045654296875, 0.004955291748046875, 0.08416748046875, 0.033599853515625, 0.07513427734375, 0.016937255859375, 0.0305023193359375, 0.04144287109375, -0.0005669593811035156, -0.01519775390625, -0.03338623046875, 0.00882720947265625, -0.0151519775390625, -0.0037746429443359375, 0.01068115234375, -0.01474761962890625, 0.022247314453125, 0.09393310546875, 0.09783935546875, -0.1270751953125, 0.00452423095703125, 0.0355224609375, -0.019073486328125, -0.004962921142578125, 0.0284423828125, -0.0140380859375, -0.0279541015625, 0.0068817138671875, -0.0247650146484375, -0.0160064697265625, 0.01293182373046875, 0.0252227783203125, 0.00019037723541259766, 0.01070404052734375, 0.0128173828125, 0.010284423828125, -0.03131103515625, 0.031494140625, 0.0268096923828125, 0.0301666259765625, -0.048675537109375, -0.001190185546875, 0.080078125, -0.048797607421875, -0.08111572265625, 0.046966552734375, 0.004848480224609375, -0.0262298583984375, -0.012786865234375, -0.002872467041015625, 0.04071044921875, 0.0243377685546875, 0.002178192138671875, -0.0426025390625, 0.0150909423828125, 0.00719451904296875, 0.03509521484375, -0.0240478515625, 0.0267791748046875, 0.003818511962890625, -0.01358795166015625, 0.002674102783203125, 0.0162811279296875, -0.040802001953125, -0.007293701171875, 0.0374755859375, 0.038116455078125, -0.0013332366943359375, -0.038848876953125, 0.042938232421875, -0.0001004338264465332, -0.021392822265625, -0.0304107666015625, 0.0056915283203125, -0.032470703125, -0.0264129638671875, -0.0030727386474609375, -0.0292510986328125, -0.0021953582763671875, -0.0295257568359375, -0.07867431640625, 0.08160400390625, 0.007045745849609375, 0.0265045166015625, -0.02325439453125, 0.038818359375, 0.0069732666015625, 0.01067352294921875, -0.03656005859375, 0.0548095703125, 0.0027065277099609375, 0.0206756591796875, -0.055908203125, -0.0030994415283203125, -0.0016117095947265625, 0.021453857421875, 0.049468994140625, 0.01479339599609375, -0.05364990234375, -0.0219573974609375, -0.01180267333984375, -0.0247344970703125, -0.033905029296875, 0.06842041015625, -0.01611328125, 0.01654052734375, 0.037841796875, -0.04608154296875, 0.0183563232421875, -0.0073394775390625, -0.0418701171875, -0.005001068115234375, -0.0039215087890625, -0.0239410400390625, 0.020263671875, 0.0380859375, -0.06121826171875, 0.02020263671875, 0.032928466796875, -0.0264434814453125, -0.00215911865234375, 0.0231170654296875, -0.013580322265625, 0.06268310546875, -0.022369384765625, -0.0019779205322265625, 0.0193939208984375, 0.0108795166015625, 0.005229949951171875, 0.0079498291015625, 0.00569915771484375, 0.0184326171875, 0.0005841255187988281, -0.007633209228515625, 0.00395965576171875, 0.01052093505859375, 0.0245208740234375, 0.0284271240234375, 0.0290679931640625, -0.0140838623046875, 0.006755828857421875, 0.035125732421875, 0.042877197265625, -0.04034423828125, -0.0106353759765625, -0.0106353759765625, 0.016082763671875, 0.047088623046875, -0.020233154296875, 0.08221435546875, 0.0205841064453125, -0.0029888153076171875, -0.0248870849609375, 0.0205535888671875, 0.05548095703125, 0.039642333984375, 0.0299072265625, 0.06854248046875, -0.1351318359375, -0.01474761962890625, -0.039947509765625, -0.00489044189453125, -0.016632080078125, 0.048858642578125, 0.03466796875, 0.0135040283203125, -0.036773681640625, -0.028961181640625, 0.01053619384765625, 0.023834228515625, 0.0266265869140625, -0.0156097412109375, -0.002658843994140625, -0.0114898681640625, 0.0246124267578125, 0.0186614990234375, 0.04473876953125, 0.0299072265625, 0.0421142578125, -0.011444091796875, -0.007526397705078125, 0.0196380615234375, 0.0161590576171875, -0.037872314453125, 0.062347412109375, -0.01500701904296875, 0.0189056396484375, 0.00925445556640625, -0.0307464599609375, -0.033172607421875, -0.033050537109375, 0.0672607421875, 0.000008881092071533203, 0.005977630615234375, 0.00334930419921875, -0.0194244384765625, -0.001941680908203125, 0.0012617111206054688, 0.03253173828125, 0.03460693359375, 0.01216888427734375, 0.030914306640625, -0.0245361328125, -0.04681396484375, 0.0023326873779296875, 0.0308990478515625, -0.011444091796875, 0.027435302734375, -0.01033782958984375, 0.00720977783203125, 0.0340576171875, -0.00531005859375, -0.029998779296875, 0.00391387939453125, 0.044464111328125, -0.0217742919921875, 0.029571533203125, 0.00537109375, 0.03924560546875, 0.023956298828125, 0.0209197998046875, 0.01216888427734375, -0.0017156600952148438, 0.0085296630859375, -0.0057830810546875, -0.0291748046875, 0.029632568359375, -0.0181121826171875, -0.03662109375, 0.0177764892578125, 0.0160675048828125, -0.0168609619140625, 0.0100250244140625, 0.066162109375, -0.0231170654296875, -0.0214691162109375, 0.0504150390625, -0.041473388671875, -0.001796722412109375, 0.015899658203125, 0.01543426513671875, -0.0174713134765625, -0.0677490234375, -0.061065673828125, 0.01611328125, 0.01131439208984375, 0.03680419921875, -0.046234130859375, 0.0267333984375, -0.021087646484375, -0.001758575439453125, 0.0033016204833984375, -0.01331329345703125, -0.00901031494140625, 0.0191802978515625, -0.004150390625, 0.01309967041015625, -0.0245513916015625, -0.0279693603515625, -0.00876617431640625, -0.01348876953125, -0.022369384765625, -0.02520751953125, -0.025421142578125, 0.0445556640625, 0.05059814453125, 0.04046630859375, -0.031097412109375, 0.00838470458984375, 0.0704345703125, -0.0222930908203125, -0.002185821533203125, -0.0012645721435546875, -0.01131439208984375, -0.0220947265625, 0.01617431640625, 0.0036468505859375, 0.0181884765625, -0.0192718505859375, -0.004749298095703125, 0.03143310546875, 0.02935791015625, -0.009735107421875, -0.033355712890625, -0.0216064453125, -0.035919189453125, 0.107666015625, -0.0249176025390625, 0.0002923011779785156, 0.000013709068298339844, 0.0096893310546875, -0.05511474609375, 0.0012426376342773438, -0.048309326171875, -0.01511383056640625, -0.0293731689453125, -0.006256103515625, 0.0310516357421875, 0.005756378173828125, -0.04779052734375, -0.007904052734375, -0.011932373046875, 0.0228118896484375, -0.0616455078125, -0.007472991943359375, 0.0169219970703125, 0.018646240234375, -0.043060302734375, -0.06414794921875, 0.0171966552734375, -0.0245208740234375, 0.020355224609375, -0.0088348388671875, -0.0262298583984375, -0.01384735107421875, -0.04730224609375, -0.064208984375, 0.047576904296875, 0.00795745849609375, -0.03631591796875, -0.0242462158203125, -0.0159454345703125, 0.0229034423828125, -0.01361083984375, -0.0134735107421875, -0.0122222900390625, -0.05047607421875, -0.005161285400390625, -0.0057830810546875, 0.0438232421875, -0.0013895034790039062, 0.01529693603515625, -0.034759521484375, 0.0087738037109375, 0.006496429443359375, -0.020782470703125, 0.0150909423828125, 0.000579833984375, 0.01355743408203125, 0.0209197998046875, -0.035980224609375, -0.0150604248046875, 0.00258636474609375, -0.0247955322265625, -0.006076812744140625, -0.0161590576171875, 0.01369476318359375, -0.0059661865234375, 0.00152587890625, -0.01502227783203125, -0.01387786865234375, 0.0011930465698242188, -0.022674560546875, -0.0154571533203125, 0.01087188720703125, -0.0207366943359375, 0.00019633769989013672, -0.055450439453125, -0.00888824462890625, -0.0178680419921875, -0.0087127685546875, 0.0196533203125, 0.002155303955078125, -0.0274810791015625, -0.01197052001953125, -0.0028667449951171875, -0.0181732177734375, -0.056427001953125, 0.01169586181640625, 0.0247802734375, -0.01300048828125, 0.0104522705078125, -0.0160064697265625, 0.01079559326171875, 0.01580810546875, 0.01535797119140625, 0.04949951171875, 0.04473876953125, -0.05914306640625, 0.00811004638671875, 0.0169525146484375, 0.0303497314453125, -0.046875, -0.03912353515625, -0.0282440185546875, 0.02130126953125, 0.007781982421875, 0.0112762451171875, 0.004482269287109375, -0.007061004638671875, 0.0161590576171875, 0.01165771484375, -0.032867431640625, -0.06549072265625, -0.0240936279296875, 0.033111572265625, -0.01000213623046875, 0.00997161865234375, 0.04229736328125, -0.0258941650390625, 0.00946044921875, -0.01544952392578125, 0.043243408203125, -0.040130615234375, 0.0227203369140625, -0.06646728515625, 0.0252838134765625, 0.028106689453125 ]
9296790bf28aba818c70e14da2fdfbec722c4905
Wordpress Stackexchange Q: How to add multiple mime with same suffix in wordpress? I'm having problem adding archive files to wordpress. The original $allowed_mime_type is using application/zip, while there are other mime type of .zip like application/x-zip-compressed, application/zip-compressed and application/octet-stream. While an array can only allow one suffix, array('zip' => 'application/octet-stream'), I'm wondering how to add mime type without adding strange suffixes.
Q: How to add multiple mime with same suffix in wordpress? I'm having problem adding archive files to wordpress. The original $allowed_mime_type is using application/zip, while there are other mime type of .zip like application/x-zip-compressed, application/zip-compressed and application/octet-stream. While an array can only allow one suffix, array('zip' => 'application/octet-stream'), I'm wondering how to add mime type without adding strange suffixes.
wordpress
{ "language": "en", "length": 60, "provenance": "stackexchange_00019.jsonl.gz:469449", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/243280" }
[ 0.045654296875, -0.03167724609375, -0.0006685256958007812, -0.041656494140625, -0.013397216796875, -0.023956298828125, 0.0517578125, 0.022674560546875, -0.036102294921875, 0.025543212890625, 0.04266357421875, -0.008056640625, 0.01641845703125, -0.04498291015625, 0.01776123046875, -0.0175628662109375, 0.005489349365234375, 0.013427734375, -0.01251220703125, -0.0382080078125, 0.0230865478515625, -0.029327392578125, -0.06109619140625, 0.04327392578125, -0.044677734375, 0.0919189453125, 0.09033203125, -0.034759521484375, -0.0260467529296875, -0.0099945068359375, -0.00904083251953125, -0.0237884521484375, 0.03497314453125, 0.050689697265625, -0.061492919921875, 0.07440185546875, 0.00675201416015625, 0.01274871826171875, 0.002353668212890625, 0.03717041015625, -0.0017290115356445312, 0.0020542144775390625, 0.044952392578125, -0.0008859634399414062, 0.0006051063537597656, -0.0236968994140625, 0.0275115966796875, -0.019561767578125, 0.00548553466796875, -0.0192718505859375, 0.009246826171875, -0.0207061767578125, 0.0202178955078125, -0.0024547576904296875, -0.01316070556640625, 0.00418853759765625, 0.0008072853088378906, 0.01471710205078125, 0.00922393798828125, -0.037139892578125, -0.02593994140625, 0.0221710205078125, 0.0296630859375, 0.034454345703125, -0.003772735595703125, 0.00821685791015625, 0.01224517822265625, -0.003265380859375, -0.06658935546875, -0.005481719970703125, 0.0311126708984375, -0.0467529296875, 0.01168060302734375, -0.03387451171875, 0.01409912109375, 0.0292510986328125, -0.0280914306640625, -0.0032196044921875, 0.022247314453125, 0.0010728836059570312, 0.0693359375, 0.0007386207580566406, 0.0214080810546875, -0.0127716064453125, 0.0009660720825195312, -0.00978851318359375, 0.0040740966796875, -0.036956787109375, -0.007556915283203125, 0.01537322998046875, -0.017333984375, -0.058441162109375, 0.047515869140625, 0.029632568359375, -0.006053924560546875, -0.001873016357421875, -0.00704193115234375, -0.01050567626953125, 0.01666259765625, 0.0298614501953125, -0.00925445556640625, -0.0423583984375, 0.03106689453125, -0.0237884521484375, 0.0068206787109375, 0.00467681884765625, 0.01995849609375, 0.0418701171875, 0.0518798828125, 0.025390625, -0.005157470703125, 0.0762939453125, -0.0023956298828125, -0.040130615234375, 0.0290985107421875, 0.01776123046875, -0.0231170654296875, 0.065673828125, 0.01788330078125, 0.021209716796875, 0.005645751953125, 0.0226287841796875, 0.0615234375, -0.0411376953125, -0.0298309326171875, -0.0220489501953125, -0.020355224609375, -0.07427978515625, 0.016845703125, 0.06622314453125, 0.0163726806640625, -0.015869140625, -0.08856201171875, -0.042022705078125, -0.068359375, -0.01026153564453125, 0.01000213623046875, -0.032318115234375, -0.0182647705078125, 0.034423828125, 0.004734039306640625, -0.0528564453125, -0.039459228515625, 0.025970458984375, 0.0009975433349609375, -0.0102386474609375, 0.0033664703369140625, 0.045013427734375, 0.0271148681640625, -0.022735595703125, 0.031646728515625, -0.022247314453125, 0.055999755859375, -0.00434112548828125, -0.0706787109375, -0.0209503173828125, -0.0158538818359375, -0.0281219482421875, -0.0123291015625, -0.053466796875, -0.036712646484375, -0.0174407958984375, 0.041259765625, -0.01300811767578125, -0.033172607421875, 0.038665771484375, 0.004070281982421875, -0.0136260986328125, 0.0085906982421875, 0.0056610107421875, -0.01617431640625, -0.01287078857421875, 0.0345458984375, -0.00390625, -0.017913818359375, 0.026580810546875, 0.039825439453125, -0.01178741455078125, -0.00038433074951171875, 0.08990478515625, -0.0032100677490234375, -0.0199737548828125, 0.04803466796875, -0.04522705078125, -0.032562255859375, 0.0145416259765625, 0.01241302490234375, 0.023651123046875, 0.004241943359375, -0.002445220947265625, 0.03021240234375, 0.047821044921875, 0.01459503173828125, -0.031524658203125, -0.0206146240234375, -0.0192108154296875, -0.00209808349609375, 0.006282806396484375, -0.024871826171875, 0.0228118896484375, -0.0268096923828125, -0.00868988037109375, 0.006351470947265625, 0.0252838134765625, 0.000705718994140625, -0.0022373199462890625, -0.0145416259765625, 0.0250091552734375, -0.030426025390625, -0.002361297607421875, 0.0225372314453125, -0.0007114410400390625, -0.015960693359375, -0.01042938232421875, 0.005084991455078125, 0.039764404296875, 0.030029296875, 0.04156494140625, -0.01287078857421875, 0.03955078125, -0.036712646484375, -0.0291900634765625, -0.036468505859375, 0.00414276123046875, 0.01873779296875, 0.01026153564453125, -0.0276947021484375, 0.00591278076171875, 0.007297515869140625, 0.019134521484375, -0.0122833251953125, 0.027984619140625, -0.02899169921875, -0.003143310546875, -0.0280914306640625, -0.046875, -0.039703369140625, -0.10107421875, 0.043670654296875, 0.07037353515625, 0.0439453125, 0.03265380859375, 0.0262451171875, 0.04656982421875, 0.06903076171875, 0.0287017822265625, 0.042205810546875, -0.0194091796875, 0.0031337738037109375, 0.04541015625, -0.025146484375, 0.032012939453125, 0.02239990234375, -0.027496337890625, -0.0079345703125, 0.056365966796875, -0.01117706298828125, -0.01235198974609375, -0.00867462158203125, 0.0262908935546875, -0.0185699462890625, -0.01194000244140625, 0.0084686279296875, -0.00341796875, 0.0033130645751953125, 0.047454833984375, 0.01560211181640625, 0.0265960693359375, -0.01428985595703125, 0.0299530029296875, 0.0016679763793945312, -0.0277252197265625, 0.004863739013671875, 0.05718994140625, 0.0438232421875, 0.01544189453125, -0.0182342529296875, -0.032257080078125, 0.0190582275390625, 0.0296478271484375, -0.0253448486328125, -0.018707275390625, -0.0214080810546875, -0.0033855438232421875, -0.00035834312438964844, -0.057098388671875, 0.01490020751953125, 0.01099395751953125, -0.061553955078125, -0.02545166015625, -0.0005183219909667969, 0.047576904296875, 0.0013494491577148438, -0.0033435821533203125, -0.00821685791015625, 0.0037059783935546875, -0.018463134765625, -0.0141754150390625, 0.0195770263671875, -0.038299560546875, -0.0013599395751953125, 0.045806884765625, -0.02398681640625, 0.0056304931640625, -0.00868988037109375, -0.0008044242858886719, -0.0280914306640625, -0.0008206367492675781, -0.0210723876953125, -0.03680419921875, -0.0247650146484375, 0.017242431640625, 0.0124359130859375, -0.0606689453125, 0.039947509765625, -0.0013637542724609375, -0.007221221923828125, -0.006923675537109375, -0.06878662109375, -0.041290283203125, 0.055328369140625, -0.045928955078125, 0.03131103515625, -0.006591796875, -0.022705078125, -0.052032470703125, 0.051300048828125, 0.007053375244140625, 0.01175689697265625, 0.01137542724609375, -0.031829833984375, -0.0253448486328125, -0.039581298828125, -0.02264404296875, -0.00611114501953125, 0.011505126953125, 0.002948760986328125, 0.049652099609375, -0.006740570068359375, -0.03076171875, -0.005771636962890625, 0.0141448974609375, -0.0049896240234375, -0.00870513916015625, -0.00447845458984375, -0.0168609619140625, 0.021026611328125, -0.021087646484375, 0.045623779296875, 0.035003662109375, -0.0177459716796875, 0.00299835205078125, -0.021209716796875, -0.0180206298828125, -0.0031070709228515625, 0.03179931640625, 0.0269775390625, 0.0029773712158203125, 0.032989501953125, -0.050079345703125, 0.017181396484375, 0.04193115234375, 0.0208892822265625, -0.01230621337890625, -0.034149169921875, -0.058990478515625, 0.0176544189453125, 0.0121307373046875, -0.015106201171875, -0.003772735595703125, -0.012176513671875, -0.025787353515625, 0.065673828125, -0.007080078125, -0.00919342041015625, 0.0123138427734375, 0.045684814453125, -0.030181884765625, 0.0133056640625, 0.0280303955078125, -0.01465606689453125, 0.020721435546875, -0.039520263671875, 0.0143890380859375, -0.0369873046875, 0.023284912109375, -0.0643310546875, 0.01351165771484375, -0.048431396484375, -0.0025577545166015625, -0.032501220703125, 0.055572509765625, -0.068115234375, -0.041412353515625, -0.0182647705078125, 0.0377197265625, -0.007328033447265625, -0.056549072265625, 0.02093505859375, -0.039154052734375, 0.038177490234375, -0.0350341796875, -0.04156494140625, 0.0013227462768554688, 0.037353515625, -0.040740966796875, 0.07586669921875, -0.039337158203125, 0.018798828125, -0.0247802734375, 0.021240234375, -0.002017974853515625, 0.01165008544921875, -0.0179901123046875, 0.00170135498046875, -0.029083251953125, -0.11968994140625, -0.01503753662109375, -0.026153564453125, 0.0860595703125, 0.0098876953125, -0.019256591796875, -0.0014276504516601562, 0.06494140625, -0.00624847412109375, 0.01325225830078125, -0.025238037109375, -0.00695037841796875, -0.0211639404296875, 0.0042572021484375, -0.0126495361328125, -0.01123046875, -0.005626678466796875, -0.0143280029296875, -0.04010009765625, -0.0223846435546875, -0.0078887939453125, -0.00547027587890625, 0.03509521484375, -0.03643798828125, -0.033477783203125, -0.033172607421875, -0.0050811767578125, 0.0240478515625, 0.021240234375, -0.004329681396484375, -0.054595947265625, -0.03338623046875, 0.038116455078125, 0.01184844970703125, -0.006397247314453125, -0.000057220458984375, 0.078369140625, 0.0007915496826171875, -0.03564453125, -0.08404541015625, -0.0003867149353027344, 0.0192413330078125, 0.0172119140625, -0.006439208984375, -0.00027060508728027344, 0.003284454345703125, -0.031768798828125, -0.01030731201171875, 0.01129913330078125, 0.0015735626220703125, 0.02001953125, 0.00276947021484375, -0.021270751953125, 0.022125244140625, -0.00894927978515625, 0.00438690185546875, 0.006641387939453125, -0.0171661376953125, 0.0020999908447265625, -0.0106353759765625, 0.0276031494140625, 0.000004112720489501953, -0.004154205322265625, -0.038360595703125, -0.044677734375, 0.01531982421875, -0.024017333984375, 0.0391845703125, 0.01116943359375, -0.007320404052734375, 0.0357666015625, 0.00873565673828125, -0.003505706787109375, 0.006076812744140625, 0.032073974609375, 0.01244354248046875, 0.0233612060546875, 0.0271148681640625, 0.003322601318359375, -0.0460205078125, -0.007720947265625, 0.029449462890625, 0.040924072265625, -0.02777099609375, -0.0028553009033203125, 0.019775390625, 0.03515625, -0.0208740234375, -0.053741455078125, 0.015625, 0.0218048095703125, -0.0360107421875, 0.04119873046875, -0.022064208984375, -0.034698486328125, -0.023193359375, 0.01554107666015625, -0.01035308837890625, -0.005023956298828125, 0.01056671142578125, 0.0240478515625, -0.041107177734375, 0.0176849365234375, -0.0005283355712890625, -0.001941680908203125, 0.020782470703125, 0.027008056640625, 0.0102386474609375, -0.0028018951416015625, -0.0296173095703125, 0.034454345703125, 0.023193359375, -0.03363037109375, 0.00251007080078125, 0.00725555419921875, 0.041259765625, 0.0015535354614257812, -0.0281219482421875, 0.018798828125, -0.042877197265625, -0.0007433891296386719, 0.005214691162109375, -0.0250396728515625, -0.0179595947265625, -0.0155029296875, 0.01259613037109375, 0.050018310546875, -0.029998779296875, -0.025634765625, 0.019500732421875, 0.0038585662841796875, 0.03326416015625, 0.0445556640625, -0.031829833984375, 0.0089569091796875, 0.0247650146484375, 0.040130615234375, -0.0171966552734375, -0.0215911865234375, -0.045257568359375, -0.00653839111328125, -0.0199127197265625, 0.01358795166015625, 0.0259246826171875, -0.035369873046875, 0.01611328125, -0.0147705078125, 0.0179443359375, 0.0222930908203125, 0.01300048828125, 0.034423828125, 0.01406097412109375, -0.005706787109375, -0.02606201171875, -0.03668212890625, -0.032928466796875, -0.0208587646484375, -0.0163116455078125, -0.01148223876953125, 0.0244140625, -0.0038318634033203125, 0.0090484619140625, 0.00798797607421875, 0.01261138916015625, -0.01424407958984375, 0.01763916015625, 0.002033233642578125, 0.0275421142578125, 0.0013523101806640625, -0.0009245872497558594, -0.0140838623046875, 0.022796630859375, -0.0210113525390625, -0.01219940185546875, 0.00014913082122802734, -0.01537322998046875, 0.0026721954345703125, -0.06573486328125, -0.0209808349609375, 0.02569580078125, -0.04217529296875, 0.0175018310546875, 0.02606201171875, -0.00434112548828125, -0.03631591796875, -0.03582763671875, -0.00754547119140625, -0.01081085205078125, 0.08056640625, -0.0009140968322753906, -0.0175323486328125, 0.01264190673828125, -0.02630615234375, 0.0743408203125, -0.0225677490234375, -0.01593017578125, 0.0310516357421875, -0.0458984375, 0.030517578125, 0.05230712890625, -0.0259552001953125, 0.0404052734375, 0.033050537109375, -0.01605224609375, 0.021820068359375, 0.00823211669921875, 0.01007843017578125, 0.02825927734375, -0.005222320556640625, 0.0137481689453125, 0.0231170654296875, 0.039520263671875, -0.020477294921875, -0.004299163818359375, 0.00818634033203125, -0.01947021484375, 0.0034351348876953125, 0.058197021484375, 0.036651611328125, -0.07586669921875, -0.005130767822265625, -0.0247650146484375, -0.01467132568359375, 0.0146026611328125, 0.01800537109375, -0.02197265625, -0.022705078125, 0.048858642578125, -0.005126953125, -0.0014219284057617188, 0.022491455078125, 0.0224151611328125, -0.004390716552734375, -0.0020160675048828125, 0.005138397216796875, 0.0020732879638671875, -0.01247406005859375, -0.011444091796875, 0.0217742919921875, -0.0088653564453125, 0.028961181640625, 0.01166534423828125, -0.041290283203125, -0.020660400390625, -0.0179443359375, -0.0251007080078125, -0.050048828125, -0.01496124267578125, -0.018798828125, 0.011505126953125, 0.077880859375, 0.029937744140625, 0.01355743408203125, -0.031341552734375, 0.01137542724609375, 0.0180816650390625, -0.01093292236328125, -0.032470703125, 0.0083770751953125, 0.0260467529296875, -0.0036983489990234375, 0.0172882080078125, -0.0099334716796875, -0.01284027099609375, 0.002338409423828125, -0.005481719970703125, 0.00775909423828125, -0.042449951171875, 0.004665374755859375, 0.058258056640625, 0.019500732421875, -0.0265655517578125, 0.033935546875, -0.01279449462890625, -0.0797119140625, -0.06756591796875, 0.025238037109375, -0.08331298828125, 0.0399169921875, 0.06048583984375, -0.059295654296875, 0.0654296875, -0.0079803466796875, 0.0309295654296875, -0.0032978057861328125, 0.0226593017578125, -0.00635528564453125, 0.00650787353515625, -0.0291900634765625, 0.036834716796875, 0.0176849365234375, -0.017913818359375, -0.0238800048828125, -0.0014257431030273438, -0.019927978515625, 0.015777587890625, 0.03619384765625, 0.0030975341796875, -0.0302734375, -0.0010938644409179688, 0.079345703125, 0.039825439453125, 0.015960693359375, 0.0355224609375, 0.0110015869140625, -0.0306396484375, 0.01102447509765625, 0.0447998046875, 0.02996826171875, -0.0012083053588867188, -0.01343536376953125, 0.047210693359375, -0.00466156005859375, -0.00574493408203125, 0.0007343292236328125, 0.0175933837890625, 0.0210418701171875, -0.02490234375, -0.0340576171875, 0.004405975341796875, -0.0045318603515625, 0.0033817291259765625, 0.006378173828125, -0.00424957275390625, 0.025970458984375, -0.0223236083984375, 0.042327880859375, 0.0059356689453125, 0.0038051605224609375, 0.03289794921875, 0.005130767822265625, 0.01357269287109375, 0.003612518310546875, -0.00891876220703125, 0.01277923583984375, 0.02081298828125, 0.00531005859375, -0.0274658203125, -0.0122528076171875, -0.06561279296875, 0.02093505859375, 0.048583984375, 0.01080322265625, -0.028717041015625, -0.057037353515625, 0.00782012939453125, -0.00939178466796875, -0.00409698486328125, 0.01499176025390625, 0.017303466796875, -0.0232391357421875, 0.01224517822265625, -0.034881591796875, 0.01934814453125, 0.01708984375, 0.052398681640625, 0.0019855499267578125, 0.0092010498046875, -0.06658935546875, -0.00565338134765625, -0.039337158203125, 0.03570556640625, 0.004444122314453125, 0.046905517578125, 0.0014781951904296875, 0.03173828125, -0.003894805908203125, -0.01434326171875, -0.020477294921875, 0.03717041015625, -0.0184783935546875, 0.03826904296875, -0.04534912109375, -0.047515869140625, 0.0268402099609375, 0.028839111328125, -0.0064849853515625, 0.037261962890625, 0.007129669189453125, 0.004436492919921875, -0.01361083984375, 0.001232147216796875, 0.020416259765625, -0.039825439453125, 0.0257720947265625, -0.06500244140625, 0.017608642578125, -0.0167083740234375, -0.0166778564453125, -0.000156402587890625, -0.0289764404296875, 0.044281005859375, -0.00913238525390625, 0.00556182861328125, 0.004375457763671875, -0.030487060546875, 0.051666259765625, 0.004138946533203125, 0.0439453125, 0.0170135498046875, -0.08441162109375, -0.03765869140625, -0.029388427734375, -0.0260772705078125, 0.058746337890625, 0.05657958984375, 0.007640838623046875, -0.019775390625, 0.06329345703125, -0.048187255859375, -0.00391387939453125, 0.05328369140625, -0.00801849365234375, 0.0372314453125, 0.0247039794921875, 0.004154205322265625, -0.0736083984375, -0.029754638671875, -0.02374267578125, 0.035125732421875, 0.00589752197265625, 0.046905517578125, -0.0020294189453125, 0.021087646484375, 0.0286865234375, 0.00800323486328125, 0.00597381591796875, 0.0282440185546875, -0.0117034912109375, -0.0050506591796875, 0.01052093505859375, -0.02081298828125, 0.031280517578125, -0.0185394287109375, 0.034881591796875, -0.061065673828125, -0.0265960693359375, -0.03521728515625, 0.035369873046875, -0.0104522705078125, 0.063720703125, -0.025054931640625, -0.03839111328125, -0.057098388671875, -0.0120697021484375, 0.031036376953125, 0.025299072265625, -0.0175323486328125, -0.00672149658203125, 0.06268310546875, -0.017303466796875, 0.023651123046875, 0.004978179931640625, 0.07659912109375, 0.0391845703125, 0.007411956787109375, -0.044158935546875, 0.01207733154296875, -0.015594482421875, 0.0259246826171875, -0.011932373046875, 0.0858154296875, 0.00562286376953125, 0.00400543212890625, 0.01082611083984375, -0.005413055419921875, 0.01849365234375, -0.04400634765625, -0.01226806640625, 0.0198974609375, 0.0027828216552734375, -0.01904296875, 0.005306243896484375, -0.02825927734375, -0.04107666015625, 0.00928497314453125, 0.022491455078125, -0.019439697265625, -0.021942138671875, -0.06170654296875, -0.0171966552734375, 0.0345458984375, 0.008087158203125, -0.034027099609375, 0.01557159423828125, -0.01398468017578125, -0.006072998046875, 0.01160430908203125, -0.0144195556640625, -0.0204925537109375, 0.0035610198974609375, -0.0214080810546875, -0.0849609375, -0.0484619140625, 0.0966796875, -0.06390380859375, -0.023284912109375, -0.0087738037109375, 0.0008997917175292969, -0.0076904296875, 0.003627777099609375, -0.0019273757934570312, 0.053558349609375, -0.03497314453125, -0.024688720703125, -0.0186920166015625, -0.01554107666015625, -0.02545166015625, -0.0287322998046875, 0.04150390625, -0.08831787109375, -0.07122802734375, -0.009185791015625, 0.01087188720703125, 0.008148193359375, -0.035247802734375, -0.10272216796875, 0.082763671875, -0.0227508544921875, -0.040008544921875, -0.071533203125, 0.0213165283203125, 0.007556915283203125, 0.0145721435546875, -0.041778564453125, 0.0252227783203125, -0.020233154296875, 0.0303497314453125, 0.00835418701171875, 0.0203704833984375, 0.0210723876953125, 0.004978179931640625, 0.0256805419921875, 0.03759765625, 0.0213470458984375, -0.012054443359375, -0.0211181640625, -0.0007576942443847656, 0.045318603515625, 0.06256103515625, 0.018341064453125, 0.047515869140625, 0.031890869140625, -0.06732177734375, 0.0225067138671875, -0.019866943359375, -0.0538330078125, -0.0202789306640625, 0.04327392578125, 0.0587158203125, 0.0236663818359375, -0.0306549072265625, 0.00669097900390625, -0.041900634765625, -0.02313232421875, -0.019073486328125, 0.0246429443359375, -0.06781005859375, -0.0134735107421875, 0.01302337646484375, 0.00897216796875, -0.00647735595703125, 0.0181884765625, 0.0037517547607421875, -0.0293426513671875, 0.03680419921875, -0.01558685302734375, -0.0274810791015625, 0.0243072509765625, 0.08343505859375, -0.04058837890625, 0.0197906494140625, -0.0036334991455078125, 0.005435943603515625, 0.04718017578125, -0.0104827880859375, -0.0096893310546875, -0.01416015625, 0.0235137939453125, 0.01105499267578125, 0.0266571044921875, -0.026702880859375, 0.029998779296875, -0.003154754638671875, -0.007556915283203125, 0.027496337890625, 0.0170135498046875, 0.030364990234375, -0.043426513671875, 0.07684326171875, 0.018890380859375, 0.03521728515625, -0.002048492431640625, -0.059906005859375, -0.0263671875, 0.0178985595703125, -0.01383209228515625, -0.0172576904296875, 0.01263427734375, -0.009857177734375, 0.00146484375, 0.0149078369140625, -0.037384033203125, -0.042938232421875, 0.010894775390625, -0.02789306640625, -0.0022983551025390625, 0.01551055908203125 ]
e308c1cf10a1f0853b1f0567d89f7fd43f296605
Wordpress Stackexchange Q: How to enable the theme editor cap for an editor role? I am trying to add/enable the theme editor for the editor role. The editor role by default doesn't have the option to manage theme options, so I addded this to functions.php: // get the the role object $role_object = get_role( 'editor' ); // add $cap capability to this role object //$role_object->add_cap( 'edit_theme_options' ); $role_object->add_cap( 'manage_options' ); But still, I don't see the theme editor option. In the end, I want the theme editor to be the only submenu option. Any suggestions? A: The edit_themes capability is what allows access to Appearance > Theme Editor: function wpse243341_modify_editor_role() { $role = get_role( 'editor' ); $role->add_cap( 'edit_themes' ); } add_action( 'admin_init', 'wpse243341_modify_editor_role');
Q: How to enable the theme editor cap for an editor role? I am trying to add/enable the theme editor for the editor role. The editor role by default doesn't have the option to manage theme options, so I addded this to functions.php: // get the the role object $role_object = get_role( 'editor' ); // add $cap capability to this role object //$role_object->add_cap( 'edit_theme_options' ); $role_object->add_cap( 'manage_options' ); But still, I don't see the theme editor option. In the end, I want the theme editor to be the only submenu option. Any suggestions? A: The edit_themes capability is what allows access to Appearance > Theme Editor: function wpse243341_modify_editor_role() { $role = get_role( 'editor' ); $role->add_cap( 'edit_themes' ); } add_action( 'admin_init', 'wpse243341_modify_editor_role');
wordpress
{ "language": "en", "length": 121, "provenance": "stackexchange_00019.jsonl.gz:469466", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/243341" }
[ 0.005527496337890625, -0.058349609375, 0.00493621826171875, -0.0016736984252929688, -0.0250396728515625, -0.031982421875, 0.04437255859375, 0.018402099609375, 0.023529052734375, 0.0394287109375, 0.0178375244140625, -0.056732177734375, 0.038604736328125, -0.04449462890625, -0.036773681640625, -0.018035888671875, 0.00630950927734375, -0.0092926025390625, -0.0118255615234375, -0.025665283203125, 0.0221099853515625, -0.014556884765625, -0.035491943359375, 0.002498626708984375, 0.0131683349609375, 0.0167083740234375, 0.035858154296875, -0.00988006591796875, -0.00740814208984375, -0.021392822265625, 0.0161895751953125, 0.002285003662109375, 0.02008056640625, 0.01483154296875, -0.002376556396484375, 0.03546142578125, 0.014373779296875, -0.013671875, 0.0117950439453125, 0.016387939453125, 0.00014913082122802734, 0.01418304443359375, -0.01439666748046875, 0.034759521484375, -0.0262603759765625, -0.07025146484375, 0.0159149169921875, -0.0301971435546875, 0.0017957687377929688, -0.044830322265625, -0.003448486328125, 0.035186767578125, 0.032562255859375, -0.055145263671875, -0.00829315185546875, -0.0069732666015625, 0.001865386962890625, -0.00637054443359375, 0.006328582763671875, 0.04949951171875, 0.00345611572265625, 0.028961181640625, -0.0106658935546875, -0.034942626953125, 0.0030231475830078125, 0.0215301513671875, 0.041168212890625, 0.00839996337890625, -0.06597900390625, 0.0018968582153320312, 0.018310546875, -0.06195068359375, 0.0271453857421875, -0.0160675048828125, 0.007678985595703125, -0.0246429443359375, 0.0072021484375, -0.004528045654296875, 0.029205322265625, -0.0181427001953125, 0.007610321044921875, -0.01458740234375, 0.005634307861328125, -0.007022857666015625, 0.01364898681640625, 0.00787353515625, -0.00888824462890625, -0.00884246826171875, -0.0189208984375, 0.006259918212890625, -0.01541900634765625, -0.0160064697265625, -0.007110595703125, 0.0207061767578125, -0.0063629150390625, -0.0091705322265625, 0.0169219970703125, 0.01122283935546875, 0.0177154541015625, 0.01081085205078125, 0.032562255859375, -0.07568359375, 0.07196044921875, -0.048828125, 0.006542205810546875, 0.043182373046875, -0.007503509521484375, -0.034698486328125, -0.000009119510650634766, 0.01513671875, -0.01470947265625, -0.0263671875, 0.025360107421875, -0.016387939453125, -0.00951385498046875, -0.013671875, -0.0234832763671875, 0.037017822265625, 0.00384521484375, 0.010894775390625, -0.00792694091796875, 0.0122222900390625, 0.0131378173828125, -0.0479736328125, -0.0005679130554199219, -0.0279998779296875, -0.051727294921875, -0.007122039794921875, 0.0111083984375, -0.01202392578125, -0.044281005859375, 0.01427459716796875, 0.08837890625, 0.03839111328125, 0.0343017578125, -0.0180511474609375, 0.00025081634521484375, -0.0246429443359375, -0.01123046875, 0.0015764236450195312, 0.004337310791015625, 0.00647735595703125, 0.0215606689453125, -0.012115478515625, -0.0222320556640625, 0.0225372314453125, 0.00359344482421875, 0.007904052734375, 0.01119232177734375, -0.02972412109375, -0.03375244140625, -0.0382080078125, 0.006076812744140625, -0.004665374755859375, 0.034393310546875, -0.04583740234375, 0.028656005859375, -0.032073974609375, 0.02276611328125, -0.0178070068359375, -0.04547119140625, -0.0182952880859375, 0.0245819091796875, -0.033203125, -0.04461669921875, 0.02972412109375, 0.026153564453125, -0.006664276123046875, 0.0210113525390625, -0.049713134765625, 0.065185546875, -0.0197296142578125, 0.024139404296875, -0.00290679931640625, 0.00818634033203125, 0.021087646484375, -0.0048980712890625, 0.006397247314453125, 0.01100921630859375, -0.024871826171875, -0.008880615234375, -0.03265380859375, 0.01739501953125, -0.0014333724975585938, -0.026580810546875, -0.0151214599609375, -0.001491546630859375, 0.026031494140625, 0.026214599609375, 0.0283660888671875, -0.0243377685546875, 0.004425048828125, -0.0228424072265625, -0.04718017578125, 0.0039825439453125, -0.0121307373046875, 0.021820068359375, -0.0197296142578125, 0.010711669921875, 0.042327880859375, 0.039764404296875, -0.0328369140625, 0.025177001953125, -0.041534423828125, -0.053466796875, -0.01300811767578125, -0.0205230712890625, 0.0126495361328125, 0.0640869140625, -0.006744384765625, -0.022064208984375, -0.0272369384765625, 0.018768310546875, -0.0555419921875, -0.06719970703125, 0.038909912109375, -0.006351470947265625, 0.0323486328125, 0.0051422119140625, 0.023406982421875, 0.037109375, -0.0238800048828125, 0.0242462158203125, 0.01335906982421875, 0.032073974609375, -0.007568359375, 0.006061553955078125, -0.007476806640625, 0.0870361328125, 0.0174560546875, 0.02587890625, -0.0325927734375, 0.032928466796875, -0.006420135498046875, -0.04376220703125, -0.004352569580078125, -0.0297393798828125, -0.0845947265625, -0.01495361328125, 0.08465576171875, 0.041778564453125, 0.01299285888671875, -0.016815185546875, -0.0253753662109375, 0.04705810546875, -0.0031147003173828125, 0.026153564453125, -0.037811279296875, 0.0036487579345703125, 0.03363037109375, -0.005832672119140625, -0.00872802734375, -0.0002765655517578125, -0.0265350341796875, -0.00788116455078125, 0.020263671875, -0.00704193115234375, 0.0179443359375, 0.00815582275390625, -0.02203369140625, -0.01036834716796875, -0.055267333984375, -0.0120849609375, -0.039306640625, 0.005340576171875, 0.0222930908203125, 0.023162841796875, 0.0216522216796875, -0.04833984375, 0.0170135498046875, 0.0211029052734375, 0.031219482421875, -0.0019283294677734375, 0.03656005859375, -0.01053619384765625, -0.0157928466796875, -0.028717041015625, 0.00014495849609375, -0.0007457733154296875, 0.0204315185546875, -0.02197265625, 0.0173187255859375, 0.00872802734375, -0.0222930908203125, 0.007904052734375, -0.0228424072265625, 0.00948333740234375, -0.04815673828125, 0.0172882080078125, 0.0030651092529296875, 0.01519775390625, -0.018829345703125, -0.044281005859375, 0.029510498046875, 0.0230255126953125, -0.032989501953125, 0.00041365623474121094, -0.047760009765625, 0.028778076171875, -0.039764404296875, 0.028594970703125, 0.05377197265625, -0.012786865234375, -0.0116119384765625, 0.030853271484375, -0.07647705078125, 0.0288543701171875, 0.047882080078125, 0.0238037109375, 0.0024013519287109375, -0.051544189453125, 0.04400634765625, 0.01041412353515625, -0.024505615234375, 0.040252685546875, -0.00505828857421875, 0.0008287429809570312, 0.0073089599609375, -0.019561767578125, 0.01326751708984375, 0.0275726318359375, -0.08056640625, -0.0308837890625, 0.018463134765625, -0.06500244140625, 0.003261566162109375, 0.052764892578125, -0.0131683349609375, -0.00102996826171875, 0.0025234222412109375, 0.00931549072265625, 0.0135650634765625, -0.035125732421875, -0.0714111328125, -0.003887176513671875, -0.0031452178955078125, 0.006519317626953125, 0.09515380859375, 0.00750732421875, -0.0628662109375, 0.0133819580078125, -0.067138671875, -0.02630615234375, 0.027618408203125, 0.04632568359375, -0.01080322265625, 0.0009107589721679688, 0.0021381378173828125, -0.042266845703125, 0.0369873046875, -0.037811279296875, -0.0189666748046875, -0.020660400390625, -0.0323486328125, -0.004253387451171875, 0.032318115234375, 0.025787353515625, 0.0018911361694335938, 0.05401611328125, -0.024169921875, 0.016448974609375, -0.033721923828125, -0.03759765625, 0.0188140869140625, 0.003162384033203125, 0.0055999755859375, 0.0015802383422851562, 0.006061553955078125, -0.0003876686096191406, 0.00318145751953125, 0.0082550048828125, -0.0200347900390625, -0.00919342041015625, 0.0115203857421875, 0.02099609375, 0.0247802734375, -0.0108489990234375, -0.041473388671875, 0.050323486328125, -0.0120391845703125, -0.00823211669921875, -0.04510498046875, 0.048736572265625, -0.035980224609375, -0.043487548828125, 0.05792236328125, -0.019683837890625, 0.021392822265625, -0.04571533203125, -0.0249481201171875, -0.025665283203125, 0.07568359375, -0.0109100341796875, -0.004016876220703125, -0.01296234130859375, 0.005451202392578125, 0.00438690185546875, -0.01143646240234375, -0.01983642578125, -0.006671905517578125, -0.09014892578125, 0.01204681396484375, -0.0269317626953125, -0.0055084228515625, -0.0155792236328125, 0.0024547576904296875, -0.03692626953125, -0.053070068359375, 0.051605224609375, -0.08343505859375, -0.0301055908203125, 0.08148193359375, -0.050994873046875, 0.01560211181640625, -0.06573486328125, -0.015960693359375, -0.09320068359375, -0.0164642333984375, -0.014984130859375, 0.044097900390625, -0.00948333740234375, 0.022430419921875, -0.0360107421875, 0.0274810791015625, 0.0272369384765625, 0.002002716064453125, 0.0205535888671875, 0.0173492431640625, -0.002216339111328125, -0.034912109375, 0.00888824462890625, -0.0443115234375, 0.0223236083984375, 0.0269927978515625, -0.0266265869140625, 0.029541015625, -0.057281494140625, -0.016571044921875, 0.00722503662109375, -0.06378173828125, -0.040008544921875, -0.017974853515625, -0.017791748046875, 0.00012636184692382812, -0.014404296875, -0.01358795166015625, -0.01076507568359375, -0.046661376953125, 0.024871826171875, -0.04266357421875, 0.00698089599609375, 0.0082855224609375, 0.1015625, 0.0191802978515625, 0.0023860931396484375, 0.0105133056640625, 0.0016355514526367188, 0.024444580078125, 0.0296478271484375, 0.01568603515625, 0.03076171875, -0.0022754669189453125, -0.0313720703125, 0.0223541259765625, 0.007068634033203125, -0.0445556640625, 0.0053558349609375, 0.0205230712890625, 0.0024547576904296875, -0.01468658447265625, 0.0127105712890625, 0.0665283203125, -0.0226593017578125, -0.00565338134765625, -0.0227813720703125, 0.01727294921875, 0.0239105224609375, -0.0138702392578125, 0.0614013671875, 0.015167236328125, 0.0005860328674316406, -0.011566162109375, 0.00962066650390625, 0.041778564453125, 0.0533447265625, -0.007526397705078125, 0.00724029541015625, 0.05108642578125, 0.0008921623229980469, 0.037445068359375, 0.038116455078125, -0.01439666748046875, 0.0565185546875, -0.016357421875, -0.006351470947265625, 0.00872802734375, -0.007080078125, 0.044219970703125, -0.007781982421875, -0.0465087890625, -0.00868988037109375, -0.0123443603515625, 0.041015625, 0.030242919921875, -0.03875732421875, 0.005344390869140625, 0.042999267578125, -0.00746917724609375, 0.018157958984375, 0.018463134765625, 0.005214691162109375, -0.01520538330078125, 0.007274627685546875, -0.0035915374755859375, -0.0217132568359375, 0.0293121337890625, 0.006805419921875, -0.0032711029052734375, 0.013946533203125, -0.0035305023193359375, 0.0257110595703125, 0.051025390625, 0.013092041015625, 0.014801025390625, -0.01068115234375, -0.01079559326171875, -0.02447509765625, 0.01218414306640625, -0.0340576171875, -0.01381683349609375, 0.01398468017578125, 0.04815673828125, -0.01165008544921875, -0.02447509765625, 0.01419830322265625, -0.01849365234375, -0.00360107421875, 0.03326416015625, 0.0010957717895507812, -0.06640625, 0.0102081298828125, 0.03094482421875, 0.00327301025390625, -0.0450439453125, -0.0030117034912109375, 0.03033447265625, 0.00922393798828125, 0.019744873046875, -0.0204010009765625, -0.040069580078125, 0.0074462890625, 0.0279693603515625, -0.053924560546875, 0.00107574462890625, 0.035308837890625, -0.07110595703125, -0.05438232421875, -0.007457733154296875, -0.018096923828125, 0.0439453125, 0.00428009033203125, 0.003936767578125, -0.01617431640625, -0.001857757568359375, -0.042877197265625, 0.006900787353515625, 0.01275634765625, -0.01230621337890625, -0.06805419921875, -0.0013380050659179688, -0.06280517578125, 0.000988006591796875, -0.043975830078125, -0.052825927734375, -0.037750244140625, 0.00666046142578125, 0.006908416748046875, 0.0187530517578125, -0.01110076904296875, -0.037017822265625, -0.0292510986328125, 0.03125, 0.044158935546875, 0.09088134765625, -0.032257080078125, 0.07598876953125, -0.0006976127624511719, 0.03594970703125, -0.0110015869140625, 0.0091400146484375, 0.0008645057678222656, -0.00372314453125, -0.0028705596923828125, -0.016326904296875, -0.002033233642578125, -0.0216064453125, 0.0151519775390625, 0.01727294921875, 0.078369140625, 0.0024051666259765625, 0.03759765625, -0.0293426513671875, 0.006343841552734375, -0.025787353515625, -0.048187255859375, -0.07794189453125, -0.004772186279296875, -0.01690673828125, -0.021331787109375, 0.054656982421875, -0.022918701171875, -0.014495849609375, 0.0304107666015625, -0.038909912109375, 0.0416259765625, 0.0487060546875, -0.040191650390625, 0.0655517578125, 0.08428955078125, -0.005157470703125, 0.022308349609375, 0.00531005859375, -0.0192718505859375, -0.03717041015625, 0.01404571533203125, -0.019775390625, 0.027313232421875, -0.000553131103515625, -0.00572967529296875, 0.00870513916015625, -0.03240966796875, -0.00746917724609375, 0.03729248046875, 0.054290771484375, 0.08319091796875, -0.07415771484375, 0.0128936767578125, 0.01288604736328125, -0.007381439208984375, 0.07427978515625, -0.034912109375, -0.003200531005859375, -0.042388916015625, 0.09332275390625, -0.040435791015625, -0.018463134765625, 0.01739501953125, -0.0526123046875, -0.027862548828125, -0.019134521484375, 0.0159759521484375, 0.02459716796875, 0.0297393798828125, 0.0184173583984375, -0.0261688232421875, 0.01366424560546875, 0.0233306884765625, 0.0211181640625, -0.0259246826171875, -0.01898193359375, -0.04803466796875, -0.042449951171875, -0.027862548828125, -0.037445068359375, 0.00815582275390625, -0.00833892822265625, -0.010345458984375, 0.049530029296875, -0.03533935546875, 0.0020160675048828125, 0.037841796875, -0.0234527587890625, 0.0113372802734375, -0.0087738037109375, 0.0192413330078125, -0.00557708740234375, 0.0011119842529296875, 0.0231475830078125, 0.00589752197265625, -0.037078857421875, 0.0014352798461914062, 0.01385498046875, 0.06097412109375, 0.0133209228515625, -0.04827880859375, 0.048858642578125, -0.00505828857421875, -0.029998779296875, -0.010589599609375, -0.0002846717834472656, -0.0249176025390625, 0.00531768798828125, -0.014801025390625, -0.0059814453125, 0.0251922607421875, -0.0029468536376953125, -0.01181793212890625, 0.10272216796875, -0.04095458984375, -0.029266357421875, 0.043670654296875, 0.049957275390625, -0.052734375, 0.018402099609375, -0.0244293212890625, 0.0250396728515625, -0.00809478759765625, 0.0230865478515625, -0.0252685546875, 0.0091400146484375, -0.0066375732421875, 0.0306243896484375, 0.04571533203125, 0.020263671875, -0.02655029296875, -0.021453857421875, 0.034942626953125, 0.0406494140625, -0.0024929046630859375, 0.035400390625, -0.00370025634765625, -0.0167236328125, 0.001483917236328125, -0.0178985595703125, 0.028350830078125, -0.049530029296875, -0.01299285888671875, 0.01490020751953125, 0.002475738525390625, 0.004306793212890625, 0.01678466796875, 0.0032901763916015625, -0.032196044921875, 0.0028533935546875, 0.0280914306640625, -0.05303955078125, -0.0241241455078125, 0.006366729736328125, -0.0008597373962402344, -0.0275115966796875, -0.0083770751953125, -0.0175323486328125, 0.0306396484375, 0.01068115234375, -0.02880859375, -0.0325927734375, 0.004791259765625, -0.057281494140625, -0.00901031494140625, -0.0283660888671875, 0.059112548828125, -0.041412353515625, 0.0171661376953125, 0.013092041015625, 0.0092315673828125, -0.0279693603515625, 0.03466796875, 0.0285797119140625, 0.00824737548828125, -0.0308685302734375, -0.03973388671875, 0.006999969482421875, 0.0037364959716796875, -0.002109527587890625, -0.007171630859375, -0.0210723876953125, 0.003658294677734375, 0.03936767578125, -0.047454833984375, 0.01148223876953125, 0.027374267578125, 0.011444091796875, -0.013031005859375, -0.01593017578125, -0.0078582763671875, 0.0255279541015625, -0.0211944580078125, -0.00540924072265625, 0.0158538818359375, 0.0235748291015625, 0.0179443359375, 0.01561737060546875, 0.027099609375, 0.0005145072937011719, -0.0345458984375, 0.06378173828125, 0.016510009765625, 0.0174102783203125, -0.054443359375, -0.059173583984375, 0.0181732177734375, 0.034637451171875, -0.006458282470703125, -0.0026416778564453125, -0.00395965576171875, 0.006542205810546875, -0.006595611572265625, -0.00508880615234375, 0.0115509033203125, -0.025238037109375, -0.02197265625, -0.02630615234375, 0.0273284912109375, 0.0258941650390625, 0.0170135498046875, -0.0009465217590332031, 0.05224609375, 0.0345458984375, 0.00350189208984375, -0.02264404296875, 0.008697509765625, -0.02264404296875, -0.00824737548828125, 0.0167236328125, -0.0323486328125, 0.028564453125, -0.07470703125, -0.0006203651428222656, -0.044036865234375, -0.047149658203125, 0.0352783203125, 0.0433349609375, -0.0241546630859375, 0.016571044921875, -0.020263671875, 0.0031948089599609375, 0.0025424957275390625, 0.00884246826171875, -0.0187530517578125, -0.0009355545043945312, 0.042938232421875, -0.014373779296875, -0.003887176513671875, 0.00658416748046875, -0.0138092041015625, 0.027679443359375, 0.0447998046875, 0.031280517578125, -0.006359100341796875, 0.0377197265625, -0.0116119384765625, 0.0360107421875, -0.04302978515625, -0.0230865478515625, 0.042205810546875, 0.0030651092529296875, 0.01036834716796875, -0.0089111328125, -0.0399169921875, 0.03753662109375, 0.026580810546875, 0.0033245086669921875, 0.026123046875, 0.019927978515625, 0.0158538818359375, -0.01201629638671875, 0.034912109375, -0.0179901123046875, -0.03179931640625, -0.04107666015625, -0.0117950439453125, 0.017974853515625, 0.025665283203125, 0.0031604766845703125, 0.0115814208984375, -0.032806396484375, -0.005519866943359375, -0.0024471282958984375, 0.0153045654296875, -0.03955078125, 0.0027294158935546875, -0.037811279296875, -0.0457763671875, 0.02825927734375, 0.010009765625, -0.00762939453125, 0.0172576904296875, 0.038787841796875, 0.031982421875, -0.04168701171875, 0.05108642578125, 0.041839599609375, 0.062103271484375, -0.0084075927734375, 0.01242828369140625, 0.054107666015625, -0.0026950836181640625, -0.01198577880859375, -0.040985107421875, -0.03131103515625, -0.0416259765625, -0.007198333740234375, 0.0307464599609375, -0.0282135009765625, -0.08013916015625, -0.0970458984375, 0.0212554931640625, 0.033355712890625, 0.017120361328125, -0.075927734375, 0.0391845703125, -0.022918701171875, 0.06427001953125, 0.00044608116149902344, 0.005413055419921875, 0.0321044921875, 0.035125732421875, -0.059600830078125, 0.01556396484375, -0.010284423828125, -0.047515869140625, -0.006805419921875, 0.007110595703125, 0.03399658203125, 0.002094268798828125, 0.004856109619140625, 0.039764404296875, -0.0248260498046875, 0.0838623046875, -0.0635986328125, -0.0149993896484375, 0.0009579658508300781, 0.0019931793212890625, -0.01320648193359375, -0.044830322265625, 0.0020771026611328125, -0.02996826171875, -0.010711669921875, -0.043670654296875, 0.0234527587890625, 0.032745361328125, -0.041473388671875, -0.08172607421875, 0.0207366943359375, -0.02044677734375, -0.035736083984375, -0.0294952392578125, -0.0301971435546875, -0.0195465087890625, 0.03948974609375, -0.0144500732421875, -0.0050201416015625, -0.006954193115234375, 0.05157470703125, 0.0026378631591796875, -0.0006704330444335938, 0.01079559326171875, -0.0006117820739746094, -0.0445556640625, 0.0177459716796875, 0.009521484375, -0.024322509765625, 0.00772857666015625, 0.0025997161865234375, 0.01186370849609375, 0.044464111328125, -0.041473388671875, -0.06781005859375, -0.041259765625, -0.0003826618194580078, -0.0285797119140625, -0.033660888671875, -0.0022296905517578125, -0.01172637939453125, 0.08892822265625, 0.04705810546875, 0.006221771240234375, -0.0291748046875, -0.0211639404296875, -0.035797119140625, -0.0570068359375, 0.00469207763671875, 0.028167724609375, -0.053466796875, 0.0222015380859375, 0.0114593505859375, -0.0019521713256835938, 0.01143646240234375, -0.00608062744140625, -0.01161956787109375, -0.0011882781982421875, -0.01003265380859375, -0.0015592575073242188, -0.057861328125, 0.006511688232421875, 0.041748046875, -0.044647216796875, -0.00506591796875, -0.0159759521484375, 0.0221099853515625, 0.0134429931640625, -0.00939178466796875, -0.055023193359375, -0.0031642913818359375, -0.04901123046875, 0.02142333984375, -0.0477294921875, 0.04754638671875, -0.0635986328125, 0.02374267578125, 0.02764892578125, 0.032440185546875, -0.0180206298828125, 0.02850341796875, -0.009490966796875, 0.040191650390625, -0.034271240234375, 0.08489990234375, -0.037261962890625, 0.0426025390625, -0.0176239013671875, 0.026458740234375, -0.028656005859375, 0.0222015380859375, 0.0277862548828125, -0.01849365234375, 0.031341552734375, 0.031951904296875, 0.040679931640625, 0.00982666015625, 0.0010747909545898438, 0.02679443359375, 0.0098876953125, -0.004322052001953125 ]
19d4081820b3c09a1af1116f0b7aff73b9bd24f4
Wordpress Stackexchange Q: Use WordPress page instead of post type archive Sorry if this is a duplicate – I can't find an answer. How do I rewrite a custom post type archive page to a 'man-made' WordPress page? For example: * *Single page: http://www.mywebsite.com/cool-post-type/awesome-single-post/ *Archive page: http://www.mywebsite.com/cool-post-type/ I want http://www.mywebsite.com/cool-post-type/ to rewrite to http://www.mywebsite.com/about-cool-post-types/. Can I just do this with htaccess and what would the syntax be? (I'm not good at htaccess!) This does not work: RewriteRule ^cool-post-type\/\?$ /about-cool-post-types [L] Or do I have to do this in the WordPress source code? I don't want to! A: There's also a simple, 1-file plugin for this now, by the HumanMade folk; https://github.com/humanmade/page-for-post-type (Meta: I know answers with links aren't generally great, but I don't just want to copy and paste the source-code for that thing into an answer. What's the best strategy for this type of thing?)
Q: Use WordPress page instead of post type archive Sorry if this is a duplicate – I can't find an answer. How do I rewrite a custom post type archive page to a 'man-made' WordPress page? For example: * *Single page: http://www.mywebsite.com/cool-post-type/awesome-single-post/ *Archive page: http://www.mywebsite.com/cool-post-type/ I want http://www.mywebsite.com/cool-post-type/ to rewrite to http://www.mywebsite.com/about-cool-post-types/. Can I just do this with htaccess and what would the syntax be? (I'm not good at htaccess!) This does not work: RewriteRule ^cool-post-type\/\?$ /about-cool-post-types [L] Or do I have to do this in the WordPress source code? I don't want to! A: There's also a simple, 1-file plugin for this now, by the HumanMade folk; https://github.com/humanmade/page-for-post-type (Meta: I know answers with links aren't generally great, but I don't just want to copy and paste the source-code for that thing into an answer. What's the best strategy for this type of thing?) A: This one's actually pretty easy. When you declare your post type using register_post_type, you need to add a new argument for 'has_archive'. So you'll add in something to the effect of: 'has_archive' => 'about-cool-post-types' Then, go to your Settings > Permalinks to flush them and it should work. I tested it locally, and this seems to be the way to automatically generate your archive page at a different URL. Then, you should be able to create a page at the CPT's slug.
wordpress
{ "language": "en", "length": 227, "provenance": "stackexchange_00019.jsonl.gz:469476", "question_score": "15", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/243373" }
[ 0.04278564453125, 0.0013217926025390625, 0.00415802001953125, 0.009796142578125, -0.00989532470703125, -0.0355224609375, 0.044158935546875, -0.04766845703125, -0.01145172119140625, -0.00373077392578125, 0.01409912109375, 0.000022530555725097656, -0.001560211181640625, -0.050048828125, 0.038116455078125, -0.007244110107421875, 0.033447265625, -0.0289306640625, 0.02374267578125, -0.0196990966796875, 0.0218505859375, -0.01509857177734375, 0.039337158203125, 0.04791259765625, 0.0284576416015625, -0.0004901885986328125, 0.06781005859375, -0.005168914794921875, 0.029052734375, 0.0038394927978515625, 0.0251007080078125, -0.053741455078125, 0.056854248046875, -0.0083465576171875, -0.0228424072265625, 0.041778564453125, -0.007587432861328125, -0.00507354736328125, -0.00653839111328125, 0.0180206298828125, 0.03643798828125, -0.0122833251953125, 0.01904296875, 0.01088714599609375, -0.00003516674041748047, -0.04638671875, 0.04052734375, -0.02947998046875, 0.0183868408203125, -0.02569580078125, -0.0157318115234375, 0.039276123046875, 0.003841400146484375, 0.0056304931640625, -0.0096282958984375, 0.00748443603515625, 0.021209716796875, -0.0279083251953125, 0.034454345703125, -0.057586669921875, -0.0223388671875, -0.00969696044921875, 0.047882080078125, 0.039154052734375, -0.01203155517578125, -0.0123443603515625, -0.0010013580322265625, 0.03173828125, -0.0660400390625, -0.026641845703125, 0.0350341796875, -0.017852783203125, 0.035186767578125, -0.01435089111328125, -0.00586700439453125, -0.0293121337890625, -0.002147674560546875, -0.00533294677734375, 0.018035888671875, 0.0009937286376953125, 0.015838623046875, 0.01047515869140625, 0.0225067138671875, -0.08929443359375, 0.025665283203125, -0.06634521484375, -0.0156707763671875, 0.006565093994140625, -0.06005859375, -0.0215606689453125, -0.0335693359375, -0.03607177734375, -0.038848876953125, -0.01485443115234375, -0.0053863525390625, -0.00937652587890625, 0.0211639404296875, 0.0193328857421875, 0.027130126953125, 0.045928955078125, 0.0341796875, -0.0728759765625, 0.101318359375, -0.059600830078125, 0.00592041015625, 0.053192138671875, 0.01739501953125, 0.050018310546875, 0.040771484375, -0.0009908676147460938, 0.006855010986328125, 0.050323486328125, -0.03204345703125, -0.016265869140625, -0.01279449462890625, 0.046142578125, -0.035980224609375, 0.01560211181640625, -0.006778717041015625, 0.035400390625, -0.006740570068359375, 0.0234375, 0.05108642578125, -0.0225982666015625, -0.012542724609375, 0.0231170654296875, 0.005462646484375, -0.08782958984375, 0.049163818359375, -0.0169525146484375, -0.0157318115234375, 0.0173187255859375, 0.031890869140625, 0.02532958984375, 0.00450897216796875, -0.0012798309326171875, 0.0279388427734375, -0.0208740234375, -0.0062255859375, 0.03839111328125, -0.01470184326171875, -0.0450439453125, -0.00382232666015625, -0.004352569580078125, 0.0222625732421875, 0.0237274169921875, 0.0131988525390625, 0.02569580078125, -0.0082244873046875, -0.0218505859375, 0.00611114501953125, -0.0029239654541015625, 0.04998779296875, -0.017425537109375, 0.0009474754333496094, -0.097900390625, 0.026153564453125, -0.0648193359375, 0.031890869140625, -0.06585693359375, 0.01279449462890625, -0.00441741943359375, -0.0005145072937011719, -0.00005155801773071289, -0.027618408203125, 0.0211029052734375, -0.028961181640625, -0.01006317138671875, 0.0263671875, -0.01078033447265625, 0.0494384765625, -0.03094482421875, 0.0181121826171875, 0.008056640625, -0.0029811859130859375, 0.0191192626953125, -0.0014219284057617188, -0.0203094482421875, 0.00463104248046875, 0.09539794921875, 0.019073486328125, -0.021087646484375, -0.006397247314453125, 0.021697998046875, -0.062103271484375, 0.040130615234375, 0.013641357421875, 0.06475830078125, -0.0006685256958007812, 0.0227813720703125, 0.0213623046875, 0.0218963623046875, -0.03466796875, 0.0159912109375, -0.009429931640625, -0.0225830078125, -0.00928497314453125, -0.00922393798828125, -0.0252532958984375, 0.02581787109375, -0.045257568359375, 0.021942138671875, -0.0188140869140625, 0.044921875, -0.01953125, 0.018890380859375, -0.0089874267578125, 0.0347900390625, 0.0023345947265625, 0.040283203125, 0.01204681396484375, 0.0186004638671875, -0.0226898193359375, -0.0226287841796875, -0.01224517822265625, 0.034271240234375, 0.0186920166015625, 0.0038890838623046875, -0.017120361328125, 0.01113128662109375, 0.000946044921875, -0.0158843994140625, -0.0197601318359375, 0.05133056640625, 0.0438232421875, 0.0024127960205078125, -0.0091094970703125, -0.0264892578125, -0.03021240234375, 0.035797119140625, -0.09808349609375, 0.0157012939453125, 0.0254974365234375, 0.01418304443359375, -0.022979736328125, 0.005321502685546875, -0.04119873046875, -0.047882080078125, -0.013397216796875, 0.061798095703125, 0.038238525390625, 0.029632568359375, 0.00629425048828125, -0.0078582763671875, 0.0369873046875, -0.031829833984375, 0.0204010009765625, -0.025848388671875, 0.01442718505859375, 0.024505615234375, 0.02392578125, -0.0253143310546875, 0.026214599609375, -0.04522705078125, 0.0038509368896484375, 0.035491943359375, 0.0023193359375, 0.0244293212890625, -0.0009851455688476562, -0.00495147705078125, -0.0008020401000976562, 0.0380859375, 0.003002166748046875, 0.0010042190551757812, 0.045440673828125, 0.0013341903686523438, 0.06231689453125, 0.042694091796875, -0.00930023193359375, -0.01195526123046875, 0.0025501251220703125, 0.028106689453125, 0.00469970703125, 0.0027217864990234375, 0.05377197265625, 0.0250701904296875, -0.0171356201171875, -0.0186309814453125, 0.026214599609375, 0.00997161865234375, 0.0032711029052734375, 0.040191650390625, -0.0290679931640625, -0.01265716552734375, -0.002353668212890625, -0.03515625, -0.0054931640625, 0.0255584716796875, -0.007579803466796875, 0.01483917236328125, 0.0233154296875, 0.00258636474609375, -0.0220489501953125, 0.006725311279296875, 0.027313232421875, -0.01285552978515625, 0.05938720703125, -0.0855712890625, 0.07415771484375, -0.02740478515625, 0.06475830078125, 0.072509765625, -0.008453369140625, 0.01239013671875, 0.005092620849609375, -0.01113128662109375, -0.0027141571044921875, 0.016815185546875, -0.005756378173828125, -0.042205810546875, -0.037109375, -0.013275146484375, 0.0162811279296875, 0.04425048828125, 0.021026611328125, -0.0222015380859375, 0.018951416015625, 0.048614501953125, -0.036041259765625, -0.0556640625, 0.0364990234375, -0.06463623046875, -0.00489044189453125, -0.01047515869140625, -0.031158447265625, -0.021026611328125, 0.00859832763671875, -0.01380157470703125, 0.01016998291015625, -0.0270538330078125, -0.046539306640625, -0.057647705078125, -0.08966064453125, -0.091064453125, -0.01042938232421875, 0.00811767578125, 0.0156402587890625, 0.0435791015625, 0.0186920166015625, -0.06524658203125, 0.01617431640625, 0.050262451171875, -0.034210205078125, 0.01348114013671875, 0.0034236907958984375, -0.031768798828125, 0.0312347412109375, -0.0020847320556640625, 0.07611083984375, 0.03857421875, -0.0169525146484375, -0.0023708343505859375, -0.00194549560546875, -0.005489349365234375, 0.0017614364624023438, 0.045989990234375, 0.01067352294921875, 0.007427215576171875, 0.026092529296875, -0.0408935546875, -0.07275390625, 0.004425048828125, -0.052581787109375, 0.00244140625, 0.0284271240234375, -0.0095367431640625, -0.046173095703125, 0.052154541015625, 0.0214996337890625, 0.0237579345703125, 0.028228759765625, -0.011077880859375, 0.04180908203125, -0.01374053955078125, -0.0017719268798828125, -0.055755615234375, 0.033111572265625, -0.030792236328125, 0.0309295654296875, 0.02618408203125, -0.0195159912109375, 0.0116424560546875, -0.027099609375, 0.01052093505859375, -0.0960693359375, 0.0242462158203125, -0.06854248046875, -0.00806427001953125, -0.032958984375, 0.014434814453125, 0.00959014892578125, 0.07952880859375, -0.0276031494140625, 0.002777099609375, 0.0016336441040039062, -0.0122528076171875, 0.0030307769775390625, -0.020111083984375, -0.062408447265625, -0.015380859375, -0.080810546875, 0.018096923828125, 0.0089111328125, -0.0469970703125, 0.00510406494140625, -0.0253448486328125, -0.03961181640625, -0.043243408203125, 0.045013427734375, -0.054473876953125, -0.005023956298828125, -0.006237030029296875, -0.00737762451171875, -0.04461669921875, -0.0237884521484375, -0.01190185546875, -0.10430908203125, -0.010162353515625, -0.01088714599609375, 0.062164306640625, -0.006420135498046875, 0.001621246337890625, -0.011016845703125, 0.041839599609375, -0.017791748046875, 0.01024627685546875, -0.006771087646484375, 0.00795745849609375, -0.02618408203125, 0.0270538330078125, 0.0057220458984375, -0.007160186767578125, -0.010498046875, -0.002742767333984375, -0.0364990234375, 0.00991058349609375, -0.01181793212890625, 0.007049560546875, 0.01023101806640625, -0.0279693603515625, -0.048065185546875, -0.042083740234375, -0.032440185546875, -0.0115814208984375, 0.01165771484375, -0.038543701171875, -0.04876708984375, -0.05621337890625, 0.02960205078125, 0.038360595703125, -0.027435302734375, 0.00948333740234375, 0.006763458251953125, 0.00440216064453125, -0.047027587890625, -0.05230712890625, 0.0289459228515625, 0.0123748779296875, -0.0216827392578125, 0.05096435546875, 0.00809478759765625, 0.00954437255859375, 0.018585205078125, -0.0298309326171875, 0.01336669921875, -0.031890869140625, 0.01512908935546875, -0.010345458984375, -0.018707275390625, 0.023223876953125, -0.0244140625, 0.04071044921875, 0.0465087890625, -0.003421783447265625, 0.0034942626953125, -0.00554656982421875, 0.0199432373046875, -0.003986358642578125, -0.015777587890625, -0.043060302734375, -0.035552978515625, 0.01248931884765625, -0.0014209747314453125, 0.031982421875, 0.016815185546875, -0.005603790283203125, 0.03765869140625, 0.0010042190551757812, -0.004535675048828125, 0.01033782958984375, 0.03546142578125, 0.012786865234375, 0.0178375244140625, 0.01074981689453125, -0.00644683837890625, -0.038238525390625, 0.001750946044921875, -0.0194091796875, -0.0007991790771484375, -0.033294677734375, -0.039520263671875, -0.0164947509765625, -0.0267486572265625, 0.002777099609375, -0.015899658203125, 0.0278472900390625, 0.00408935546875, -0.03497314453125, 0.010101318359375, -0.01824951171875, -0.049224853515625, -0.0517578125, 0.00876617431640625, 0.00641632080078125, -0.0213470458984375, 0.01139068603515625, 0.02880859375, 0.032562255859375, 0.00811767578125, -0.0340576171875, 0.039764404296875, 0.01482391357421875, 0.032562255859375, 0.0067901611328125, -0.0005979537963867188, 0.01111602783203125, -0.0117340087890625, -0.0089874267578125, -0.021209716796875, -0.015838623046875, 0.023223876953125, 0.047393798828125, 0.0062408447265625, 0.0126190185546875, -0.0192108154296875, -0.0239715576171875, -0.01174163818359375, -0.0131683349609375, 0.004932403564453125, -0.0115814208984375, -0.007778167724609375, 0.01297760009765625, 0.00406646728515625, 0.008514404296875, -0.0313720703125, 0.0190277099609375, -0.033599853515625, 0.0207977294921875, 0.0164794921875, -0.028717041015625, 0.01241302490234375, 0.0189666748046875, 0.02838134765625, -0.00991058349609375, -0.01105499267578125, 0.0004863739013671875, 0.0014371871948242188, -0.03314208984375, -0.027099609375, 0.04376220703125, -0.0160064697265625, 0.023712158203125, 0.00890350341796875, -0.04559326171875, 0.014495849609375, 0.012420654296875, 0.048980712890625, 0.0289154052734375, 0.0001932382583618164, -0.007320404052734375, -0.048126220703125, -0.019683837890625, -0.00202178955078125, -0.0252227783203125, -0.035614013671875, -0.015716552734375, -0.00954437255859375, 0.028564453125, -0.034423828125, -0.015594482421875, -0.01160430908203125, 0.0184326171875, 0.00728607177734375, 0.0228424072265625, -0.031951904296875, 0.074462890625, -0.0227508544921875, 0.06695556640625, -0.00835418701171875, 0.0228271484375, 0.00537109375, -0.01416778564453125, -0.0212249755859375, -0.034332275390625, 0.005542755126953125, -0.004398345947265625, 0.017486572265625, 0.049072265625, 0.053375244140625, 0.0162506103515625, 0.004718780517578125, -0.01407623291015625, -0.005390167236328125, -0.04827880859375, 0.0234375, -0.019195556640625, 0.039947509765625, -0.043121337890625, 0.005107879638671875, 0.0396728515625, 0.005367279052734375, -0.0219879150390625, -0.002216339111328125, 0.01291656494140625, 0.01514434814453125, -0.006072998046875, -0.048614501953125, 0.0330810546875, 0.08154296875, 0.016265869140625, 0.05108642578125, 0.00004172325134277344, 0.0092010498046875, 0.07684326171875, 0.016143798828125, 0.01009368896484375, 0.00811767578125, 0.038848876953125, -0.00005930662155151367, -0.0311431884765625, -0.0008769035339355469, -0.03179931640625, 0.03424072265625, 0.03875732421875, 0.0726318359375, -0.07684326171875, 0.007572174072265625, 0.040069580078125, -0.00591278076171875, 0.0257415771484375, 0.016571044921875, -0.0479736328125, -0.035186767578125, 0.00495147705078125, 0.016082763671875, -0.022430419921875, -0.006870269775390625, 0.0689697265625, 0.0025177001953125, 0.0081634521484375, 0.06890869140625, 0.027618408203125, -0.037506103515625, 0.01364898681640625, 0.022613525390625, 0.032867431640625, -0.03289794921875, 0.0184478759765625, -0.0168914794921875, -0.0011615753173828125, -0.0213470458984375, 0.033538818359375, -0.013946533203125, 0.0141448974609375, -0.020843505859375, 0.04290771484375, 0.0308380126953125, 0.05682373046875, -0.00766754150390625, -0.0181884765625, 0.026824951171875, 0.0174713134765625, -0.01531219482421875, -0.030914306640625, 0.0203399658203125, 0.00991058349609375, -0.0123291015625, 0.0185394287109375, -0.01345062255859375, -0.0450439453125, -0.0138092041015625, -0.0014352798461914062, 0.08673095703125, -0.0258636474609375, -0.0188751220703125, 0.019622802734375, 0.0167694091796875, -0.007434844970703125, -0.01483917236328125, 0.0005125999450683594, -0.038116455078125, -0.01556396484375, 0.000047266483306884766, -0.0137939453125, 0.013671875, -0.004055023193359375, -0.0418701171875, 0.069580078125, 0.0162200927734375, -0.01526641845703125, 0.036895751953125, 0.034088134765625, -0.0382080078125, 0.006866455078125, -0.01145172119140625, 0.04656982421875, -0.0141143798828125, 0.03570556640625, -0.00785064697265625, 0.0010976791381835938, 0.02978515625, 0.038330078125, 0.035919189453125, 0.0220489501953125, -0.044525146484375, 0.012939453125, 0.034149169921875, 0.016143798828125, -0.01221466064453125, 0.05047607421875, -0.0239715576171875, 0.0264434814453125, 0.0192718505859375, -0.02996826171875, 0.0195770263671875, -0.003200531005859375, -0.038818359375, 0.0028018951416015625, 0.004970550537109375, -0.005527496337890625, 0.01116943359375, -0.033905029296875, -0.043426513671875, 0.0154876708984375, 0.0142974853515625, 0.01155853271484375, -0.005863189697265625, 0.0188751220703125, 0.0027942657470703125, -0.0277557373046875, 0.003124237060546875, -0.0240936279296875, 0.035003662109375, -0.020294189453125, 0.044769287109375, 0.01143646240234375, 0.003017425537109375, 0.06732177734375, -0.0115966796875, 0.01511383056640625, -0.0033473968505859375, -0.0175018310546875, 0.06121826171875, 0.04290771484375, 0.0298004150390625, -0.0185546875, 0.0008568763732910156, 0.02264404296875, 0.0699462890625, -0.039703369140625, -0.043212890625, 0.01171875, 0.01273345947265625, 0.0352783203125, 0.0030918121337890625, 0.045928955078125, -0.027862548828125, 0.0016813278198242188, -0.00640869140625, 0.0022869110107421875, -0.00258636474609375, 0.01003265380859375, -0.0139007568359375, -0.017578125, -0.0225982666015625, 0.0157470703125, -0.03302001953125, -0.03533935546875, 0.004428863525390625, 0.06646728515625, 0.06329345703125, 0.022186279296875, 0.0230865478515625, -0.0275726318359375, -0.01242828369140625, 0.0338134765625, -0.0241241455078125, 0.03875732421875, -0.0165863037109375, -0.04742431640625, 0.0408935546875, 0.016021728515625, -0.0024204254150390625, 0.00025582313537597656, 0.03765869140625, 0.0305328369140625, -0.025848388671875, -0.004268646240234375, 0.06976318359375, -0.004253387451171875, 0.02899169921875, -0.0227203369140625, 0.01328277587890625, -0.00476837158203125, -0.0126953125, -0.02850341796875, 0.01036834716796875, 0.032501220703125, 0.007110595703125, 0.042633056640625, 0.004680633544921875, -0.0161895751953125, 0.033294677734375, -0.03143310546875, 0.06719970703125, 0.0196685791015625, -0.03271484375, -0.026214599609375, 0.01953125, -0.044891357421875, 0.006195068359375, 0.034149169921875, -0.00696563720703125, -0.0034027099609375, 0.020965576171875, 0.0241241455078125, -0.004795074462890625, -0.025909423828125, 0.010498046875, 0.0114593505859375, 0.02813720703125, 0.0330810546875, -0.060272216796875, -0.055328369140625, -0.06463623046875, 0.07012939453125, 0.019256591796875, 0.1231689453125, -0.062744140625, 0.035552978515625, -0.006526947021484375, 0.04266357421875, -0.03948974609375, -0.0130462646484375, -0.01474761962890625, -0.0140228271484375, 0.032958984375, 0.0039520263671875, -0.037933349609375, 0.0111236572265625, 0.037353515625, -0.03277587890625, -0.0216064453125, 0.0218048095703125, 0.01953125, 0.0005388259887695312, -0.0347900390625, -0.047576904296875, -0.0233917236328125, 0.00612640380859375, 0.0007658004760742188, -0.00562286376953125, -0.06793212890625, -0.027923583984375, 0.0487060546875, 0.03662109375, 0.005229949951171875, 0.01262664794921875, -0.040985107421875, 0.038299560546875, 0.03564453125, 0.0181427001953125, -0.01277923583984375, 0.046478271484375, -0.0156402587890625, 0.0241851806640625, 0.01465606689453125, 0.05157470703125, 0.0201568603515625, -0.054718017578125, -0.01971435546875, -0.0242767333984375, 0.01291656494140625, 0.007183074951171875, 0.00001913309097290039, -0.037384033203125, -0.007053375244140625, -0.0150299072265625, 0.018218994140625, -0.0210113525390625, -0.0261077880859375, 0.00368499755859375, 0.0159149169921875, 0.0091094970703125, 0.01428985595703125, -0.009185791015625, -0.052978515625, 0.0293426513671875, 0.00872802734375, -0.051666259765625, -0.005401611328125, 0.01454925537109375, 0.00859832763671875, -0.026611328125, -0.007236480712890625, -0.005523681640625, 0.0215606689453125, -0.0133514404296875, -0.054656982421875, -0.0195770263671875, 0.060150146484375, -0.02593994140625, 0.03863525390625, 0.06549072265625, -0.0333251953125, -0.03759765625, 0.03125, 0.002254486083984375, 0.08526611328125, -0.027099609375, -0.01166534423828125, 0.031982421875, -0.00811004638671875, -0.044219970703125, -0.033416748046875, 0.0244903564453125, -0.05096435546875, -0.01361083984375, 0.00037789344787597656, -0.04071044921875, -0.03753662109375, -0.055145263671875, -0.0584716796875, 0.0528564453125, 0.004871368408203125, -0.028961181640625, -0.04949951171875, 0.007537841796875, 0.00007027387619018555, 0.021728515625, -0.0000673532485961914, -0.00804901123046875, -0.01461029052734375, 0.03564453125, 0.012786865234375, 0.09564208984375, -0.036041259765625, 0.00632476806640625, -0.00522613525390625, 0.0160369873046875, 0.00637054443359375, 0.0396728515625, 0.01265716552734375, -0.011932373046875, 0.0361328125, 0.0273895263671875, -0.031005859375, 0.0284423828125, -0.00017464160919189453, 0.0178070068359375, 0.013580322265625, 0.033294677734375, -0.049713134765625, -0.01160430908203125, 0.0479736328125, 0.042724609375, 0.0277862548828125, -0.01087188720703125, 0.01142120361328125, -0.023162841796875, -0.071533203125, 0.00467681884765625, 0.039764404296875, -0.041534423828125, 0.0080718994140625, 0.010894775390625, -0.01450347900390625, 0.0256805419921875, -0.00225067138671875, -0.00734710693359375, 0.01213836669921875, 0.00934600830078125, -0.033538818359375, -0.00847625732421875, 0.02197265625, 0.046844482421875, -0.0272674560546875, 0.0249481201171875, 0.007320404052734375, -0.0018835067749023438, 0.051300048828125, 0.014312744140625, 0.0047149658203125, 0.01666259765625, -0.03717041015625, 0.0306854248046875, 0.0006279945373535156, 0.0219879150390625, -0.053985595703125, -0.005611419677734375, 0.02838134765625, 0.00696563720703125, -0.0103912353515625, 0.0012102127075195312, -0.025665283203125, 0.04736328125, -0.0160064697265625, 0.040740966796875, -0.007205963134765625, -0.062255859375, -0.0034809112548828125, -0.005695343017578125, -0.01312255859375, 0.01318359375, 0.0175933837890625, -0.0267181396484375, 0.0123748779296875, -0.018280029296875, 0.01519775390625, -0.00702667236328125, 0.0207672119140625, -0.0304718017578125, -0.0164947509765625, 0.01690673828125 ]
190d3d2a0686a729ac1d9094327ec2378c5830a5
Wordpress Stackexchange Q: How to escape html code with html allowed i am a little confused how to use escape function on a variable having html code in it. i have tried this https://codex.wordpress.org/Validating_Sanitizing_and_Escaping_User_Data but i could not figure it out. here is my code: $output = '<p>'; $output .= '<label for="' . esc_attr( $this->get_field_id( 'title' ) ) . '">Title:</label>'; $output .= '<input type="text" class="widefat" id="' . esc_attr( $this->get_field_id( 'title' ) ) . '" name="' . esc_attr( $this->get_field_name( 'title' ) ) . '" value="' . esc_attr( $title ) . '"'; $output .= '</p>'; echo $output; My question is how i can escape $output without losing html in it? i am asking because i am submitting this code on themeforest. from where i have been rejected few times because of not escaping code. So now i think it is better to escape there variables. write? thank you! A: You are looking for wp_kses(). https://developer.wordpress.org/reference/functions/wp_kses/ There are more helper functions like wp_kses_post() and wp_kses_data()
Q: How to escape html code with html allowed i am a little confused how to use escape function on a variable having html code in it. i have tried this https://codex.wordpress.org/Validating_Sanitizing_and_Escaping_User_Data but i could not figure it out. here is my code: $output = '<p>'; $output .= '<label for="' . esc_attr( $this->get_field_id( 'title' ) ) . '">Title:</label>'; $output .= '<input type="text" class="widefat" id="' . esc_attr( $this->get_field_id( 'title' ) ) . '" name="' . esc_attr( $this->get_field_name( 'title' ) ) . '" value="' . esc_attr( $title ) . '"'; $output .= '</p>'; echo $output; My question is how i can escape $output without losing html in it? i am asking because i am submitting this code on themeforest. from where i have been rejected few times because of not escaping code. So now i think it is better to escape there variables. write? thank you! A: You are looking for wp_kses(). https://developer.wordpress.org/reference/functions/wp_kses/ There are more helper functions like wp_kses_post() and wp_kses_data() A: 1. Escaping * *Escaping Attribute <label for="<?php esc_attr( $tid ); ?>"> *Escaping HTML <label ..><?php esc_html( 'Text' ); ?></label> 2. Translation and Escape Note: * *textdomain should be your own unique theme/plugin slug. *The translated string should contain a static value. If you have a dynamic value then no need to make it translation ready. 1. Escape and translate Attribute: <label for="<?php esc_attr( $tid ); ?>"> No need to make it translation ready. If you have a static string with $tid then you need to make it transition ready eg. Invalid: <label for="<?php esc_attr__( $tid, 'textdomain' ) ); ?>"> <label for="<?php printf( esc_attr__( '%s', 'textdomain' ), $tid ); ?>"> Valid: <label for="<?php printf( esc_attr__( '%s static text', 'textdomain' ), $tid ); ?>"> *Escape and translate HTML: <label ..><?php esc_html__( 'Text', 'textdomain' ); ?></label> A: try with this method. this is work for me. echo escape with html. $output = '<p>'; $output .= '<label for="' . esc_attr( $this->get_field_id( 'title' ) ) . '">Title:</label>'; $output .= '<input type="text" class="widefat" id="' . esc_attr( $this->get_field_id( 'title' ) ) . '" name="' . esc_attr( $this->get_field_name( 'title' ) ) . '" value="' . esc_attr( $title ) . '"'; $output .= '</p>'; $allowed_html = array( 'input' => array( 'type' => array(), 'id' => array(), 'name' => array(), 'value' => array(), ), ); echo wp_kses($output ,$allowed_html ); A: Your code looks and works fine for me. The HTML in value is preserved. My only recommendation would be to wrap all your text strings in __() or _e() so they can easily be translated. This is a nice selling point on marketplace sites like ThemeForest since not everyone wants to use English. $output .= '<label for="' . esc_attr( $tid ) . '">' . __( 'Title:', 'your-text-domain' ) . '</label>'; Read more about I18n on the WordPress Codex. A: If you want to do it the "WordPress way", you would not store your HTML in a temporary variable, you would output directly. ?> <p> <label for="<?php esc_attr_e( $this->get_field_id( 'title' ) ); ?>"> <?php _e('Title:', 'tex-domain'); ?></label> <input type="text" class="widefat" id="<?php esc_attr_e( $this->get_field_id( 'title' ) ); ?>" value="<?php esc_attr_e( $title ); ?>" /> </p> <?php P.S: You would also internationalize your text strings.
wordpress
{ "language": "en", "length": 523, "provenance": "stackexchange_00019.jsonl.gz:469532", "question_score": "4", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/243545" }
[ 0.0258026123046875, -0.04302978515625, -0.02777099609375, 0.00772857666015625, -0.006938934326171875, -0.037139892578125, 0.052490234375, 0.004638671875, 0.00704193115234375, 0.0252532958984375, 0.01471710205078125, -0.0002524852752685547, -0.0003421306610107422, -0.0296783447265625, -0.0029163360595703125, -0.0038547515869140625, 0.00688934326171875, -0.000014781951904296875, 0.0137939453125, -0.00937652587890625, -0.00566864013671875, -0.004428863525390625, 0.020477294921875, -0.0171661376953125, 0.022064208984375, -0.050384521484375, 0.06842041015625, 0.006011962890625, 0.0038013458251953125, -0.00403594970703125, 0.005603790283203125, -0.0205078125, 0.0272064208984375, 0.055572509765625, -0.09478759765625, 0.013702392578125, -0.01157379150390625, 0.0226898193359375, -0.021759033203125, 0.051025390625, 0.01378631591796875, -0.007442474365234375, 0.02197265625, -0.015777587890625, 0.005168914794921875, -0.02923583984375, 0.0304718017578125, -0.026580810546875, -0.017059326171875, 0.036529541015625, 0.004810333251953125, -0.007171630859375, 0.001781463623046875, -0.01392364501953125, 0.0063323974609375, 0.0167388916015625, -0.035369873046875, -0.046661376953125, 0.0150604248046875, 0.05902099609375, 0.0308685302734375, -0.017486572265625, -0.00981903076171875, -0.0205230712890625, -0.00803375244140625, -0.010772705078125, -0.0017824172973632812, 0.01509857177734375, 0.00603485107421875, 0.01441192626953125, 0.0298614501953125, 0.00528717041015625, 0.0114288330078125, -0.03546142578125, 0.0010099411010742188, 0.0220184326171875, -0.03326416015625, -0.029022216796875, 0.0294036865234375, -0.005237579345703125, 0.052154541015625, -0.00392913818359375, -0.03656005859375, -0.0308990478515625, 0.03912353515625, -0.027801513671875, 0.0128631591796875, -0.0040283203125, -0.004459381103515625, 0.022308349609375, -0.022003173828125, 0.03271484375, 0.01456451416015625, -0.0191192626953125, -0.009033203125, -0.022735595703125, -0.021942138671875, -0.0006251335144042969, -0.019287109375, 0.0240936279296875, 0.0007119178771972656, -0.0265960693359375, 0.0362548828125, -0.0287933349609375, 0.01464080810546875, 0.10992431640625, 0.032257080078125, 0.00839996337890625, 0.01165771484375, -0.040863037109375, 0.023651123046875, -0.0197601318359375, -0.0360107421875, -0.067626953125, -0.0081024169921875, 0.06634521484375, -0.013275146484375, 0.004657745361328125, 0.038848876953125, 0.0192108154296875, 0.001102447509765625, 0.0004315376281738281, 0.0305328369140625, -0.04522705078125, -0.0225982666015625, -0.0299835205078125, -0.040008544921875, -0.01409149169921875, 0.04486083984375, -0.0218658447265625, -0.024871826171875, -0.01207733154296875, 0.034271240234375, 0.06365966796875, 0.039581298828125, -0.01494598388671875, -0.01107025146484375, -0.0033321380615234375, -0.00814056396484375, 0.0239715576171875, -0.062042236328125, -0.041229248046875, 0.0161895751953125, -0.0416259765625, 0.005764007568359375, 0.03448486328125, 0.0297393798828125, 0.00039196014404296875, -0.037567138671875, -0.10223388671875, 0.06298828125, -0.037078857421875, 0.03973388671875, 0.009307861328125, -0.0151214599609375, -0.0631103515625, 0.0192413330078125, -0.053466796875, 0.0309906005859375, -0.0655517578125, -0.00925445556640625, -0.0184173583984375, 0.055084228515625, -0.00823974609375, 0.0033893585205078125, 0.01349639892578125, -0.073486328125, -0.001605987548828125, 0.015472412109375, 0.0290985107421875, -0.031982421875, -0.00794219970703125, -0.0215911865234375, 0.0003552436828613281, -0.0103912353515625, 0.017669677734375, -0.01195526123046875, 0.009246826171875, 0.0428466796875, 0.039825439453125, 0.01184844970703125, -0.007404327392578125, 0.085693359375, -0.024383544921875, -0.02093505859375, -0.0107879638671875, 0.0038166046142578125, 0.01348114013671875, 0.04705810546875, 0.0166473388671875, -0.0148773193359375, -0.01273345947265625, 0.03253173828125, 0.00815582275390625, 0.034637451171875, -0.077392578125, 0.00046443939208984375, -0.047515869140625, -0.006832122802734375, 0.00885772705078125, 0.0653076171875, -0.0209197998046875, 0.051483154296875, -0.01064300537109375, -0.0037384033203125, 0.0012264251708984375, -0.00453948974609375, 0.0143585205078125, -0.028350830078125, 0.039947509765625, 0.0295562744140625, 0.00511932373046875, -0.039306640625, 0.0258331298828125, 0.01385498046875, -0.01080322265625, -0.004962921142578125, 0.0809326171875, 0.00963592529296875, 0.0902099609375, 0.044708251953125, -0.059539794921875, 0.0428466796875, -0.0021686553955078125, 0.030426025390625, -0.036651611328125, -0.00048089027404785156, -0.0401611328125, 0.0267333984375, -0.0154876708984375, 0.0245208740234375, 0.0340576171875, 0.0496826171875, 0.02423095703125, -0.0300750732421875, -0.01253509521484375, -0.0184783935546875, -0.04351806640625, 0.005687713623046875, 0.062408447265625, 0.042205810546875, 0.08258056640625, -0.0245361328125, -0.07470703125, 0.08477783203125, -0.068115234375, 0.0011014938354492188, -0.063232421875, 0.00539398193359375, -0.010528564453125, -0.0258331298828125, -0.0232086181640625, 0.028564453125, -0.09967041015625, 0.014739990234375, 0.018524169921875, -0.0215911865234375, 0.01496124267578125, -0.0272674560546875, 0.01513671875, -0.0026073455810546875, -0.0404052734375, 0.0023441314697265625, -0.036163330078125, 0.03424072265625, 0.007305145263671875, -0.00502777099609375, -0.0132293701171875, -0.03656005859375, 0.015594482421875, 0.0230560302734375, -0.0143280029296875, 0.01001739501953125, 0.043487548828125, -0.0232391357421875, 0.0187225341796875, -0.01200103759765625, -0.0240020751953125, 0.006244659423828125, 0.024505615234375, -0.0085906982421875, 0.04608154296875, 0.011962890625, -0.022674560546875, -0.021636962890625, 0.019744873046875, 0.01508331298828125, 0.0013933181762695312, 0.005641937255859375, -0.0016832351684570312, 0.03173828125, 0.0270538330078125, -0.01025390625, 0.0201568603515625, -0.023681640625, 0.005832672119140625, 0.02740478515625, -0.047271728515625, 0.0384521484375, -0.0178985595703125, 0.05963134765625, 0.04888916015625, 0.016754150390625, -0.0185089111328125, -0.004741668701171875, -0.008636474609375, -0.0281219482421875, 0.0236358642578125, -0.01519775390625, -0.025146484375, -0.080078125, -0.0404052734375, 0.02447509765625, 0.0699462890625, -0.0144500732421875, -0.0302276611328125, -0.0278472900390625, 0.0215911865234375, -0.053924560546875, -0.0684814453125, 0.0225372314453125, -0.045013427734375, -0.0167999267578125, -0.0185394287109375, -0.0237579345703125, 0.01593017578125, -0.0098724365234375, -0.020751953125, 0.031829833984375, -0.0154571533203125, -0.046783447265625, -0.022064208984375, -0.078369140625, 0.0050811767578125, 0.0016870498657226562, -0.004840850830078125, 0.0024242401123046875, 0.0204620361328125, 0.0006289482116699219, -0.041229248046875, -0.003631591796875, 0.0290374755859375, -0.00988006591796875, -0.0020732879638671875, -0.039093017578125, -0.036712646484375, -0.03399658203125, -0.01175689697265625, 0.01019287109375, -0.035980224609375, 0.05157470703125, 0.01200103759765625, -0.006103515625, 0.005992889404296875, 0.0294342041015625, 0.0028133392333984375, 0.0006389617919921875, -0.0003731250762939453, 0.02264404296875, -0.03076171875, -0.00428009033203125, -0.006374359130859375, -0.0190582275390625, 0.0208892822265625, 0.0013523101806640625, -0.0123138427734375, -0.002605438232421875, 0.020843505859375, 0.004734039306640625, 0.007488250732421875, 0.04931640625, -0.0265350341796875, -0.0211181640625, -0.00516510009765625, 0.01123046875, -0.0209503173828125, -0.0123443603515625, -0.01861572265625, 0.01467132568359375, -0.007450103759765625, -0.0185089111328125, -0.04962158203125, 0.03240966796875, -0.033203125, -0.0299072265625, 0.052001953125, -0.00011986494064331055, 0.005886077880859375, -0.04010009765625, -0.0276336669921875, -0.0305328369140625, 0.0489501953125, -0.0186767578125, -0.0171966552734375, -0.016876220703125, -0.01126861572265625, -0.0263824462890625, -0.01226043701171875, -0.02117919921875, 0.006195068359375, -0.06500244140625, 0.0267333984375, -0.0209503173828125, -0.005794525146484375, -0.0109405517578125, -0.036956787109375, -0.0254058837890625, -0.035247802734375, 0.0195770263671875, 0.0026149749755859375, -0.0009527206420898438, -0.0186614990234375, -0.01198577880859375, -0.0242767333984375, -0.0172271728515625, 0.00812530517578125, -0.02197265625, -0.0119476318359375, -0.044464111328125, 0.043670654296875, 0.04302978515625, -0.0269317626953125, -0.033599853515625, 0.0090789794921875, -0.033660888671875, 0.019134521484375, 0.021209716796875, 0.057037353515625, -0.0180206298828125, -0.00720977783203125, 0.0195770263671875, -0.04071044921875, -0.01971435546875, -0.007450103759765625, -0.0241546630859375, 0.01555633544921875, 0.01190948486328125, -0.034332275390625, 0.037078857421875, -0.0209503173828125, -0.056854248046875, -0.005008697509765625, -0.038543701171875, -0.0389404296875, -0.0221710205078125, -0.035186767578125, 0.0258331298828125, -0.036651611328125, 0.07891845703125, 0.0240936279296875, 0.019622802734375, -0.0362548828125, 0.0670166015625, -0.0031414031982421875, -0.0589599609375, 0.0207977294921875, -0.050994873046875, 0.0208282470703125, -0.048736572265625, 0.045318603515625, 0.035186767578125, -0.00801849365234375, 0.05419921875, -0.0215606689453125, 0.0272064208984375, -0.048065185546875, 0.062469482421875, -0.0172882080078125, 0.0034236907958984375, 0.00774383544921875, -0.010467529296875, 0.0230560302734375, -0.01462554931640625, 0.0028820037841796875, -0.0038127899169921875, 0.006687164306640625, 0.01004791259765625, 0.006282806396484375, 0.0164794921875, -0.004638671875, -0.017242431640625, -0.0062255859375, 0.01885986328125, 0.03814697265625, 0.024383544921875, 0.019561767578125, 0.002071380615234375, 0.0214385986328125, 0.0243988037109375, -0.038543701171875, -0.0032176971435546875, -0.034454345703125, 0.0362548828125, -0.0222930908203125, 0.005908966064453125, -0.0039520263671875, -0.01324462890625, 0.0161590576171875, 0.007843017578125, -0.0230255126953125, -0.00475311279296875, 0.01140594482421875, 0.02288818359375, -0.004306793212890625, 0.00064849853515625, 0.0024967193603515625, 0.034423828125, -0.0114898681640625, 0.0239105224609375, 0.0183258056640625, 0.003978729248046875, -0.010772705078125, 0.00003790855407714844, -0.022491455078125, 0.0087127685546875, 0.02783203125, 0.04644775390625, -0.037200927734375, 0.057525634765625, -0.019866943359375, 0.01232147216796875, 0.04010009765625, 0.027557373046875, 0.041473388671875, -0.049652099609375, -0.0213623046875, 0.0004870891571044922, -0.0172882080078125, -0.0377197265625, -0.022979736328125, 0.036773681640625, 0.03961181640625, -0.0226287841796875, -0.0197296142578125, 0.0255584716796875, 0.016265869140625, -0.0185699462890625, 0.040740966796875, -0.0219879150390625, -0.044708251953125, -0.031768798828125, -0.0023670196533203125, 0.018402099609375, 0.005825042724609375, 0.00534820556640625, 0.0089111328125, -0.00017714500427246094, 0.019439697265625, 0.01342010498046875, -0.0034770965576171875, -0.039764404296875, -0.0345458984375, -0.007061004638671875, -0.01425933837890625, -0.0025691986083984375, -0.018463134765625, -0.004016876220703125, -0.033599853515625, -0.0309295654296875, 0.06304931640625, -0.0435791015625, 0.05615234375, -0.04095458984375, -0.0085906982421875, -0.00003707408905029297, -0.007068634033203125, 0.0703125, 0.0633544921875, -0.05572509765625, 0.016448974609375, -0.04052734375, 0.01342010498046875, 0.025970458984375, 0.0002701282501220703, -0.017852783203125, -0.021697998046875, 0.0087432861328125, 0.0216522216796875, -0.005374908447265625, -0.034576416015625, -0.01715087890625, 0.03076171875, 0.03314208984375, 0.06915283203125, -0.027587890625, 0.05181884765625, -0.006107330322265625, 0.046478271484375, -0.02093505859375, 0.0133514404296875, 0.0227508544921875, -0.0207061767578125, 0.00675201416015625, -0.039398193359375, -0.0211639404296875, -0.0254058837890625, 0.0291595458984375, 0.0235137939453125, 0.0198974609375, 0.0028018951416015625, 0.013427734375, -0.0009946823120117188, -0.0014371871948242188, -0.0204620361328125, 0.0197601318359375, -0.007602691650390625, -0.0122833251953125, 0.025787353515625, -0.01751708984375, -0.0015382766723632812, 0.0129547119140625, 0.036041259765625, 0.007740020751953125, -0.0113677978515625, 0.004669189453125, -0.004405975341796875, -0.03155517578125, 0.02471923828125, 0.038421630859375, -0.005680084228515625, 0.0258636474609375, -0.002346038818359375, 0.0029125213623046875, 0.01702880859375, 0.0016603469848632812, 0.02197265625, 0.01373291015625, 0.040252685546875, -0.0203704833984375, -0.02984619140625, -0.01318359375, -0.0440673828125, 0.0328369140625, 0.08416748046875, 0.08538818359375, -0.09930419921875, 0.01297760009765625, 0.031494140625, -0.0404052734375, 0.01345062255859375, 0.00937652587890625, -0.0255584716796875, -0.0596923828125, 0.02447509765625, -0.01287078857421875, -0.00799560546875, 0.0189971923828125, 0.0024700164794921875, 0.0080413818359375, 0.01522064208984375, 0.062042236328125, 0.0191650390625, -0.0755615234375, -0.00634765625, 0.04620361328125, 0.0061492919921875, -0.023040771484375, 0.00821685791015625, 0.017608642578125, -0.01447296142578125, -0.0635986328125, 0.005069732666015625, -0.0224761962890625, -0.0175323486328125, 0.029754638671875, 0.00707244873046875, 0.0499267578125, 0.06280517578125, 0.01132965087890625, -0.01149749755859375, 0.03265380859375, 0.01421356201171875, 0.054443359375, -0.016876220703125, -0.009857177734375, 0.06396484375, -0.0484619140625, 0.01010894775390625, 0.015594482421875, 0.022674560546875, -0.033416748046875, -0.013427734375, 0.059326171875, 0.032989501953125, -0.0382080078125, 0.01194000244140625, 0.07568359375, -0.0059356689453125, -0.019683837890625, -0.006099700927734375, -0.0570068359375, -0.0169525146484375, -0.0121307373046875, -0.0219573974609375, 0.01824951171875, -0.00727081298828125, -0.0914306640625, 0.0675048828125, 0.09002685546875, 0.04034423828125, -0.0014095306396484375, 0.01483154296875, -0.05865478515625, -0.040771484375, -0.003971099853515625, 0.025299072265625, -0.00913238525390625, 0.003597259521484375, -0.03619384765625, -0.0222015380859375, 0.006694793701171875, 0.064453125, -0.006000518798828125, -0.0024700164794921875, 0.01513671875, -0.01416015625, -0.0028438568115234375, 0.010406494140625, -0.0242462158203125, 0.01488494873046875, 0.030059814453125, 0.046295166015625, 0.060272216796875, -0.04925537109375, 0.02801513671875, -0.038604736328125, 0.027740478515625, 0.038116455078125, -0.01265716552734375, -0.0474853515625, -0.0158233642578125, -0.017547607421875, -0.0238189697265625, -0.002231597900390625, -0.028411865234375, 0.01355743408203125, -0.03564453125, 0.03643798828125, 0.0286865234375, -0.0911865234375, -0.031585693359375, -0.04248046875, 0.0246124267578125, 0.0226898193359375, 0.035614013671875, 0.0289154052734375, 0.017364501953125, 0.02587890625, 0.0282745361328125, 0.0305328369140625, 0.01580810546875, 0.02227783203125, 0.004970550537109375, 0.004673004150390625, 0.00968170166015625, -0.046478271484375, 0.0145416259765625, 0.07342529296875, 0.027191162109375, -0.02349853515625, 0.0260009765625, 0.015594482421875, 0.050048828125, -0.005947113037109375, -0.019927978515625, 0.031524658203125, 0.039031982421875, 0.051910400390625, -0.0355224609375, 0.0025997161865234375, 0.03515625, 0.026123046875, -0.002025604248046875, -0.0030803680419921875, -0.049713134765625, -0.006465911865234375, -0.040252685546875, -0.0091400146484375, 0.0024585723876953125, 0.048004150390625, 0.0301971435546875, 0.027099609375, -0.0130157470703125, -0.02099609375, -0.01221466064453125, 0.00597381591796875, 0.0011749267578125, -0.0007643699645996094, 0.00785064697265625, 0.02813720703125, 0.040985107421875, 0.0108184814453125, 0.020751953125, 0.0042724609375, 0.019317626953125, 0.018707275390625, -0.003734588623046875, -0.01256561279296875, 0.009979248046875, -0.0094451904296875, -0.00502777099609375, 0.004360198974609375, -0.014434814453125, 0.007419586181640625, -0.030517578125, -0.01357269287109375, 0.0171661376953125, 0.038970947265625, -0.0224456787109375, 0.030609130859375, 0.0011739730834960938, -0.0205841064453125, -0.00968170166015625, 0.001041412353515625, 0.036651611328125, 0.011199951171875, -0.0657958984375, -0.009185791015625, -0.0032405853271484375, -0.03082275390625, 0.0305328369140625, 0.041290283203125, -0.0007967948913574219, 0.0006361007690429688, 0.05633544921875, -0.036865234375, 0.044219970703125, 0.07080078125, -0.035308837890625, -0.019866943359375, 0.053924560546875, -0.021514892578125, -0.01470184326171875, -0.013397216796875, 0.0156097412109375, 0.054656982421875, -0.01245880126953125, 0.038787841796875, -0.036376953125, 0.024810791015625, 0.004421234130859375, 0.0224761962890625, -0.0214080810546875, 0.0139617919921875, 0.045745849609375, 0.01629638671875, 0.01299285888671875, -0.026580810546875, -0.03363037109375, 0.039581298828125, 0.018096923828125, -0.0008306503295898438, 0.037384033203125, -0.0274505615234375, 0.00740814208984375, 0.00024127960205078125, 0.038177490234375, -0.008575439453125, -0.025115966796875, -0.035247802734375, -0.004375457763671875, 0.0361328125, 0.057098388671875, 0.01812744140625, 0.046875, 0.038909912109375, -0.00247955322265625, 0.0243072509765625, -0.04107666015625, 0.04095458984375, 0.036346435546875, -0.00762176513671875, -0.00768280029296875, -0.010650634765625, -0.0192718505859375, 0.01209259033203125, -0.0030364990234375, -0.004108428955078125, -0.006336212158203125, -0.038787841796875, -0.03973388671875, 0.016876220703125, 0.02117919921875, 0.004215240478515625, 0.008636474609375, 0.02789306640625, -0.0438232421875, -0.0262451171875, -0.01078033447265625, -0.0190277099609375, -0.0104217529296875, 0.00952911376953125, 0.019927978515625, 0.0156707763671875, -0.042236328125, -0.06463623046875, -0.037322998046875, 0.0141143798828125, -0.0153656005859375, 0.03265380859375, -0.0802001953125, 0.013275146484375, 0.012847900390625, -0.0007877349853515625, 0.043548583984375, -0.040313720703125, -0.0093994140625, -0.043609619140625, -0.033233642578125, -0.035125732421875, 0.054931640625, -0.032562255859375, 0.0034542083740234375, -0.0016336441040039062, 0.004558563232421875, 0.0200042724609375, 0.0034351348876953125, 0.003173828125, 0.050506591796875, 0.0294342041015625, -0.01091766357421875, -0.01340484619140625, 0.0262908935546875, -0.04730224609375, -0.06646728515625, 0.020538330078125, -0.036590576171875, 0.00032210350036621094, 0.044647216796875, -0.014007568359375, 0.0151519775390625, -0.044219970703125, -0.10955810546875, 0.056182861328125, -0.01580810546875, -0.044952392578125, 0.0102996826171875, -0.01239776611328125, -0.006320953369140625, -0.032470703125, 0.006038665771484375, -0.0255889892578125, -0.0234527587890625, 0.007106781005859375, 0.0218963623046875, -0.0026531219482421875, 0.03350830078125, 0.0017881393432617188, -0.04742431640625, -0.004085540771484375, -0.01708984375, -0.005161285400390625, -0.052825927734375, 0.029205322265625, 0.01238250732421875, 0.021240234375, -0.002231597900390625, 0.01898193359375, 0.037200927734375, 0.008392333984375, 0.005298614501953125, -0.04833984375, -0.038330078125, -0.0027141571044921875, 0.07763671875, 0.01247406005859375, 0.0212554931640625, -0.03399658203125, -0.0323486328125, -0.0477294921875, -0.019744873046875, -0.0087127685546875, 0.00818634033203125, -0.07598876953125, -0.018096923828125, 0.02117919921875, 0.0093841552734375, 0.02484130859375, -0.00646209716796875, 0.01059722900390625, -0.01256561279296875, 0.0178375244140625, -0.0014791488647460938, -0.01062774658203125, -0.022613525390625, 0.054595947265625, -0.050994873046875, -0.0181427001953125, 0.01065826416015625, 0.01284027099609375, 0.02081298828125, 0.008453369140625, 0.0081634521484375, -0.007183074951171875, -0.0248870849609375, -0.0193939208984375, 0.01052093505859375, 0.06689453125, -0.0288543701171875, -0.03668212890625, -0.01204681396484375, 0.0478515625, -0.003528594970703125, 0.06298828125, -0.022369384765625, 0.03594970703125, 0.0289306640625, 0.0267791748046875, -0.058013916015625, 0.004360198974609375, -0.01129913330078125, -0.0198211669921875, -0.019317626953125, 0.0258941650390625, 0.060943603515625, -0.036163330078125, 0.0240478515625, -0.0133056640625, 0.0433349609375, -0.01424407958984375, 0.010894775390625, -0.0009670257568359375, 0.014862060546875, 0.0161590576171875 ]
cbea7c2451911d5586e7f6147aea3014959cb479
Wordpress Stackexchange Q: how to customize hello dolly plugin? I am trying to play with the Hello Dolly plugin. I want that plugin to work on the front end. Is it possible to bring Hello Dolly to the front end? Or will that affect my existing website? A: In your theme, add a custom action in a template where you want to show the output: do_action( 'show_lyrics' ); This does nothing for itself. Now you can add the function hello_dolly as a callback for that action in your functions.php: if ( function_exists( 'hello_dolly' ) ) { add_action( 'show_lyrics', 'hello_dolly' ); }
Q: how to customize hello dolly plugin? I am trying to play with the Hello Dolly plugin. I want that plugin to work on the front end. Is it possible to bring Hello Dolly to the front end? Or will that affect my existing website? A: In your theme, add a custom action in a template where you want to show the output: do_action( 'show_lyrics' ); This does nothing for itself. Now you can add the function hello_dolly as a callback for that action in your functions.php: if ( function_exists( 'hello_dolly' ) ) { add_action( 'show_lyrics', 'hello_dolly' ); }
wordpress
{ "language": "en", "length": 99, "provenance": "stackexchange_00019.jsonl.gz:469576", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/243713" }
[ 0.0693359375, -0.01416778564453125, -0.0298004150390625, -0.048919677734375, 0.01276397705078125, -0.035247802734375, 0.0301055908203125, 0.0022869110107421875, -0.01506805419921875, 0.0263824462890625, 0.0029354095458984375, 0.023162841796875, -0.024810791015625, -0.01904296875, 0.01464080810546875, -0.041412353515625, 0.049224853515625, 0.0162811279296875, 0.06121826171875, -0.0009632110595703125, 0.00519561767578125, 0.04107666015625, 0.016021728515625, 0.10552978515625, 0.0655517578125, -0.03973388671875, 0.060028076171875, 0.0301666259765625, 0.03839111328125, 0.0008654594421386719, 0.058319091796875, -0.06292724609375, 0.01259613037109375, -0.00478363037109375, 0.02838134765625, -0.0031185150146484375, 0.0213470458984375, 0.0028209686279296875, -0.0048065185546875, 0.0462646484375, 0.045318603515625, -0.01314544677734375, -0.0274200439453125, 0.0369873046875, -0.018096923828125, -0.075927734375, 0.06475830078125, -0.04193115234375, -0.020172119140625, -0.023773193359375, -0.0207061767578125, -0.0171356201171875, -0.0012674331665039062, -0.0156402587890625, -0.004909515380859375, -0.019866943359375, -0.061126708984375, 0.0390625, 0.0177001953125, 0.04705810546875, 0.0272216796875, 0.01549530029296875, -0.01006317138671875, -0.003894805908203125, 0.040679931640625, 0.0015544891357421875, -0.07110595703125, 0.030670166015625, 0.0109405517578125, 0.044403076171875, 0.0035552978515625, -0.0345458984375, 0.01097869873046875, -0.022613525390625, -0.06427001953125, 0.031829833984375, 0.01361083984375, -0.007221221923828125, 0.014434814453125, -0.046295166015625, -0.011138916015625, -0.0007562637329101562, 0.02227783203125, -0.026885986328125, 0.0197601318359375, 0.0021610260009765625, -0.01290130615234375, -0.0028476715087890625, -0.039093017578125, 0.01041412353515625, -0.024749755859375, 0.01393890380859375, -0.036163330078125, 0.0190277099609375, 0.0015497207641601562, 0.01222991943359375, 0.01305389404296875, 0.0161895751953125, 0.02117919921875, 0.043243408203125, 0.01291656494140625, -0.056640625, 0.04095458984375, -0.040069580078125, 0.0099945068359375, 0.035308837890625, 0.0230255126953125, -0.019866943359375, 0.0374755859375, 0.0013475418090820312, 0.0014371871948242188, 0.08978271484375, 0.005657196044921875, -0.00975799560546875, -0.0096588134765625, -0.0263824462890625, -0.03839111328125, 0.033111572265625, 0.0129241943359375, -0.00664520263671875, 0.017578125, 0.0264739990234375, 0.016326904296875, 0.0037364959716796875, -0.0283966064453125, -0.0134429931640625, -0.01432037353515625, -0.046966552734375, 0.07501220703125, 0.0263214111328125, -0.0482177734375, 0.00780487060546875, 0.07769775390625, 0.01064300537109375, 0.02435302734375, -0.036895751953125, 0.04449462890625, 0.0008559226989746094, -0.01076507568359375, 0.0267181396484375, -0.004055023193359375, -0.057037353515625, -0.05426025390625, -0.00893402099609375, 0.01123046875, -0.02532958984375, 0.0214691162109375, 0.03192138671875, 0.00006407499313354492, -0.014617919921875, 0.004467010498046875, 0.0108642578125, -0.0244903564453125, 0.03369140625, 0.0953369140625, 0.03643798828125, 0.04083251953125, 0.00913238525390625, 0.0003094673156738281, 0.044921875, -0.01233673095703125, 0.00885772705078125, 0.036376953125, -0.045135498046875, -0.029266357421875, -0.01422119140625, -0.02545166015625, 0.005725860595703125, 0.00980377197265625, 0.020477294921875, 0.0172119140625, 0.0323486328125, 0.035400390625, 0.00420379638671875, -0.006420135498046875, -0.0156402587890625, -0.05767822265625, 0.081787109375, 0.02410888671875, 0.045867919921875, 0.052886962890625, -0.0369873046875, 0.1153564453125, 0.0237884521484375, -0.07379150390625, 0.011993408203125, 0.01029205322265625, 0.0755615234375, 0.047698974609375, 0.0128021240234375, 0.03155517578125, -0.037841796875, -0.042449951171875, 0.01355743408203125, -0.031890869140625, -0.047119140625, 0.010498046875, -0.01068878173828125, -0.0246429443359375, 0.0465087890625, -0.0433349609375, -0.0015554428100585938, -0.003787994384765625, 0.03485107421875, -0.042022705078125, -0.005336761474609375, -0.02410888671875, 0.0322265625, 0.030975341796875, 0.01389312744140625, -0.016326904296875, 0.00901031494140625, 0.0005769729614257812, -0.055419921875, -0.037933349609375, 0.0006413459777832031, -0.00839996337890625, 0.013153076171875, 0.0223236083984375, 0.0086212158203125, 0.054290771484375, -0.00342559814453125, 0.01806640625, 0.011199951171875, 0.00240325927734375, -0.0006022453308105469, -0.0335693359375, -0.012115478515625, -0.037261962890625, 0.0049285888671875, -0.028228759765625, 0.0391845703125, 0.0137939453125, 0.03253173828125, -0.0028591156005859375, -0.03192138671875, -0.00630950927734375, -0.08953857421875, 0.023468017578125, 0.050689697265625, 0.0231475830078125, 0.0109100341796875, -0.00920867919921875, -0.006977081298828125, 0.03106689453125, -0.017059326171875, 0.020751953125, 0.0022449493408203125, -0.01904296875, -0.01849365234375, -0.032012939453125, -0.0238494873046875, 0.030426025390625, -0.0682373046875, 0.011016845703125, 0.040679931640625, -0.0147705078125, -0.0302276611328125, -0.025970458984375, 0.0061187744140625, 0.00423431396484375, -0.056396484375, -0.03424072265625, -0.0163421630859375, 0.01019287109375, -0.040435791015625, 0.01389312744140625, -0.004322052001953125, -0.0011148452758789062, -0.0186004638671875, 0.0212860107421875, -0.01007843017578125, -0.00019812583923339844, 0.02923583984375, 0.007762908935546875, 0.0144805908203125, -0.018646240234375, 0.0018644332885742188, -0.0167083740234375, 0.013336181640625, -0.010498046875, 0.0159759521484375, -0.0413818359375, -0.0190582275390625, 0.00820159912109375, -0.07928466796875, -0.015625, 0.004604339599609375, 0.01861572265625, 0.039398193359375, 0.033935546875, 0.05377197265625, -0.0219268798828125, 0.048919677734375, -0.00946044921875, 0.011871337890625, -0.0017175674438476562, -0.0377197265625, 0.037628173828125, -0.0236053466796875, 0.0487060546875, 0.0736083984375, -0.0233306884765625, 0.041351318359375, -0.00579833984375, -0.007049560546875, -0.005748748779296875, -0.00439453125, -0.0234222412109375, -0.0091552734375, -0.0645751953125, -0.01812744140625, 0.0175933837890625, 0.0653076171875, -0.0024318695068359375, -0.051727294921875, 0.004795074462890625, 0.035125732421875, -0.0175018310546875, -0.01812744140625, 0.0283203125, -0.043365478515625, 0.04766845703125, -0.0278167724609375, -0.0011301040649414062, -0.044403076171875, 0.00661468505859375, 0.005771636962890625, -0.048675537109375, -0.0004086494445800781, 0.01422882080078125, -0.03826904296875, -0.0322265625, -0.036773681640625, 0.007251739501953125, 0.00040650367736816406, -0.00611114501953125, 0.0241241455078125, 0.01343536376953125, -0.011260986328125, 0.045806884765625, 0.0106964111328125, -0.0167083740234375, 0.0231170654296875, 0.0517578125, -0.07452392578125, -0.004764556884765625, 0.0024852752685546875, 0.037872314453125, 0.0265655517578125, -0.010528564453125, -0.006809234619140625, -0.04034423828125, -0.03021240234375, -0.02752685546875, 0.0091094970703125, 0.046234130859375, -0.033050537109375, -0.0007448196411132812, -0.043670654296875, -0.03765869140625, -0.00411224365234375, -0.036407470703125, -0.004993438720703125, 0.00708770751953125, 0.001735687255859375, -0.0280303955078125, 0.03326416015625, -0.0034809112548828125, 0.01276397705078125, -0.023284912109375, 0.007762908935546875, 0.001636505126953125, -0.017791748046875, -0.017730712890625, 0.0120697021484375, -0.00016999244689941406, -0.0005993843078613281, 0.029693603515625, 0.003780364990234375, 0.0531005859375, 0.01580810546875, 0.024658203125, -0.0343017578125, 0.003665924072265625, 0.030853271484375, -0.00868988037109375, 0.006160736083984375, 0.0005326271057128906, -0.0006299018859863281, -0.006076812744140625, 0.031982421875, -0.042388916015625, -0.0101318359375, 0.02191162109375, 0.0243682861328125, -0.0026683807373046875, -0.01560211181640625, -0.043182373046875, -0.02423095703125, -0.045989990234375, -0.01523590087890625, 0.001262664794921875, -0.024383544921875, -0.017059326171875, 0.08013916015625, -0.04443359375, -0.01422882080078125, 0.01210784912109375, -0.0007162094116210938, -0.0162811279296875, 0.0277252197265625, -0.05633544921875, 0.018585205078125, -0.0223236083984375, 0.0050048828125, -0.0406494140625, -0.01322174072265625, 0.004825592041015625, 0.04150390625, 0.0301055908203125, -0.05035400390625, -0.013580322265625, 0.032562255859375, 0.006999969482421875, 0.057281494140625, -0.0142822265625, 0.0098724365234375, 0.0021800994873046875, -0.036956787109375, 0.0022792816162109375, -0.03155517578125, -0.0141448974609375, 0.021392822265625, -0.00927734375, 0.08636474609375, 0.0196380615234375, 0.01560211181640625, 0.027130126953125, -0.0311126708984375, -0.054962158203125, -0.057525634765625, -0.06915283203125, -0.0162506103515625, -0.030914306640625, -0.0033054351806640625, -0.0400390625, -0.053375244140625, -0.02667236328125, -0.01904296875, -0.0136566162109375, 0.01666259765625, 0.0297698974609375, 0.028961181640625, 0.0126495361328125, 0.0183258056640625, 0.01070404052734375, 0.038177490234375, 0.032562255859375, -0.0311126708984375, -0.0258636474609375, -0.043304443359375, 0.0196075439453125, 0.0133819580078125, 0.0062103271484375, 0.00704193115234375, 0.0244903564453125, 0.0020809173583984375, -0.0208740234375, 0.004062652587890625, 0.00501251220703125, 0.00153350830078125, 0.033538818359375, -0.006923675537109375, -0.045867919921875, -0.0277862548828125, 0.0311279296875, -0.032958984375, 0.07232666015625, 0.0066986083984375, -0.0860595703125, 0.045562744140625, -0.05645751953125, 0.040679931640625, 0.007793426513671875, -0.0002853870391845703, 0.053680419921875, -0.0106658935546875, 0.01024627685546875, 0.018646240234375, -0.007537841796875, -0.0218658447265625, 0.0161895751953125, 0.024261474609375, 0.004547119140625, 0.02587890625, 0.0038471221923828125, 0.08331298828125, -0.038848876953125, -0.060089111328125, -0.0528564453125, -0.0183868408203125, 0.01319122314453125, 0.047271728515625, 0.034912109375, 0.047637939453125, 0.0135345458984375, -0.006664276123046875, -0.024383544921875, 0.0023097991943359375, 0.01361846923828125, -0.0452880859375, -0.00860595703125, -0.0189666748046875, -0.00640106201171875, -0.00820159912109375, 0.06787109375, 0.01049041748046875, 0.0321044921875, -0.0189971923828125, 0.02044677734375, 0.00040030479431152344, -0.019073486328125, -0.0036830902099609375, 0.06671142578125, -0.002696990966796875, -0.047576904296875, 0.03131103515625, -0.0173187255859375, 0.030609130859375, 0.0082244873046875, 0.00461578369140625, 0.005107879638671875, -0.042755126953125, 0.035736083984375, -0.00916290283203125, -0.01335906982421875, 0.04351806640625, 0.01120758056640625, -0.01497650146484375, -0.03131103515625, 0.0029144287109375, 0.057342529296875, 0.0147857666015625, -0.0014257431030273438, 0.01509857177734375, 0.0183258056640625, 0.04180908203125, 0.0210723876953125, -0.01149749755859375, 0.00450897216796875, 0.009765625, -0.001125335693359375, -0.022674560546875, 0.0036773681640625, -0.049041748046875, -0.01331329345703125, -0.04241943359375, 0.0033702850341796875, 0.07208251953125, -0.0299224853515625, 0.0051727294921875, -0.0357666015625, 0.016571044921875, -0.016876220703125, 0.006969451904296875, 0.06610107421875, 0.0225982666015625, -0.0325927734375, -0.0062713623046875, -0.01465606689453125, -0.0159759521484375, 0.0017309188842773438, -0.01788330078125, -0.031005859375, -0.01180267333984375, -0.0101165771484375, 0.039031982421875, -0.044036865234375, -0.03326416015625, 0.007518768310546875, 0.00897979736328125, 0.0033931732177734375, 0.055267333984375, -0.0272369384765625, 0.0159149169921875, 0.0390625, -0.0029277801513671875, 0.026092529296875, 0.01528167724609375, 0.04766845703125, -0.037750244140625, 0.0008945465087890625, 0.00769805908203125, -0.0192718505859375, -0.0251922607421875, 0.03485107421875, 0.01233673095703125, 0.053375244140625, -0.01543426513671875, -0.040435791015625, 0.005374908447265625, -0.002689361572265625, -0.0261077880859375, 0.06939697265625, 0.0328369140625, -0.015411376953125, -0.0097503662109375, -0.035614013671875, -0.01029205322265625, 0.005489349365234375, -0.013916015625, 0.0226593017578125, -0.01546478271484375, 0.014801025390625, 0.00562286376953125, 0.0089874267578125, 0.0228729248046875, 0.03607177734375, -0.0147857666015625, 0.0283203125, 0.0289764404296875, 0.00887298583984375, 0.023223876953125, 0.01529693603515625, -0.0389404296875, -0.0119171142578125, 0.050872802734375, 0.011474609375, -0.0285491943359375, 0.032257080078125, -0.006694793701171875, 0.0171661376953125, -0.003871917724609375, 0.018310546875, -0.035186767578125, 0.01354217529296875, 0.002582550048828125, -0.01087188720703125, 0.01409149169921875, 0.0007615089416503906, 0.004962921142578125, -0.0080413818359375, 0.005603790283203125, 0.02301025390625, -0.00771331787109375, 0.01519012451171875, 0.0128936767578125, 0.01088714599609375, 0.01004791259765625, 0.0465087890625, 0.0140838623046875, -0.032440185546875, -0.01227569580078125, -0.01335906982421875, 0.0213775634765625, -0.04302978515625, 0.03070068359375, -0.024627685546875, 0.01045989990234375, 0.00039315223693847656, 0.0546875, 0.003047943115234375, 0.03253173828125, 0.033966064453125, 0.004222869873046875, -0.02740478515625, 0.045501708984375, -0.030487060546875, 0.04656982421875, 0.01055145263671875, -0.045074462890625, 0.022308349609375, -0.0123443603515625, -0.00923919677734375, 0.05340576171875, -0.036529541015625, 0.013702392578125, 0.0131683349609375, 0.0093994140625, -0.023590087890625, -0.033721923828125, 0.09063720703125, -0.0251922607421875, -0.01800537109375, 0.010986328125, 0.02313232421875, -0.0193328857421875, -0.023834228515625, 0.068603515625, -0.07977294921875, -0.045257568359375, 0.0241851806640625, -0.0265960693359375, -0.044525146484375, -0.0014123916625976562, -0.049835205078125, 0.12078857421875, -0.00714111328125, 0.0074920654296875, 0.00019562244415283203, 0.059326171875, -0.01364898681640625, 0.043548583984375, -0.00774383544921875, 0.0129547119140625, -0.038818359375, -0.00467681884765625, 0.005283355712890625, 0.0297698974609375, -0.00223541259765625, -0.0033702850341796875, 0.0183868408203125, 0.002651214599609375, -0.0014286041259765625, 0.0021152496337890625, 0.027069091796875, 0.01334381103515625, -0.025604248046875, 0.0196685791015625, -0.004169464111328125, -0.044281005859375, -0.01070404052734375, -0.00457763671875, 0.0108642578125, -0.035125732421875, -0.011383056640625, 0.0167388916015625, 0.01172637939453125, 0.0031604766845703125, -0.00728607177734375, 0.0309600830078125, -0.02325439453125, -0.0023937225341796875, 0.013671875, 0.01297760009765625, -0.050048828125, 0.068115234375, 0.03472900390625, -0.00714874267578125, -0.038360595703125, -0.02294921875, 0.040740966796875, 0.021240234375, 0.035552978515625, -0.023712158203125, 0.0028171539306640625, 0.0173492431640625, 0.001003265380859375, 0.01253509521484375, 0.04840087890625, -0.03619384765625, 0.0418701171875, -0.005992889404296875, 0.015167236328125, -0.01375579833984375, 0.019500732421875, 0.0013217926025390625, 0.044097900390625, -0.042816162109375, -0.023223876953125, -0.005016326904296875, 0.0117340087890625, 0.02947998046875, -0.0129241943359375, 0.03302001953125, 0.0017299652099609375, -0.01885986328125, -0.06268310546875, -0.001194000244140625, 0.0328369140625, 0.01739501953125, -0.0208587646484375, -0.0118408203125, -0.0308380126953125, -0.0092926025390625, -0.03302001953125, 0.0205078125, 0.01329803466796875, 0.039825439453125, 0.0031795501708984375, 0.072998046875, -0.00482177734375, -0.0080108642578125, 0.0093841552734375, 0.0171661376953125, -0.03326416015625, 0.0032672882080078125, -0.033050537109375, -0.031219482421875, -0.01404571533203125, 0.031280517578125, 0.0005736351013183594, 0.01325225830078125, 0.0109405517578125, -0.00568389892578125, 0.00838470458984375, 0.004413604736328125, 0.039794921875, -0.013336181640625, -0.01345062255859375, -0.0289764404296875, 0.016693115234375, 0.0201263427734375, -0.008331298828125, 0.005336761474609375, 0.0001856088638305664, 0.032989501953125, -0.04327392578125, 0.0535888671875, -0.019866943359375, -0.066162109375, 0.033111572265625, -0.0294036865234375, 0.12939453125, -0.032867431640625, -0.076416015625, -0.01439666748046875, -0.0277557373046875, -0.0650634765625, 0.0158233642578125, 0.041168212890625, -0.041046142578125, 0.04071044921875, -0.003795623779296875, 0.005519866943359375, 0.01157379150390625, -0.003658294677734375, -0.0122222900390625, 0.0270233154296875, 0.039794921875, 0.01050567626953125, -0.039825439453125, -0.041473388671875, -0.022979736328125, 0.053741455078125, 0.01641845703125, 0.038818359375, -0.0146942138671875, 0.031768798828125, 0.005828857421875, -0.022064208984375, 0.0197601318359375, -0.0008869171142578125, 0.048858642578125, 0.01139068603515625, -0.0308990478515625, -0.0272979736328125, -0.06396484375, 0.00909423828125, 0.02069091796875, -0.0189971923828125, 0.035736083984375, -0.00882720947265625, 0.0161895751953125, -0.017913818359375, 0.0477294921875, -0.007556915283203125, -0.047454833984375, -0.0654296875, -0.000804901123046875, 0.038421630859375, 0.0212554931640625, -0.062347412109375, -0.0012369155883789062, 0.044189453125, -0.022796630859375, 0.0212860107421875, -0.0036830902099609375, 0.041259765625, 0.033416748046875, 0.0222930908203125, -0.03314208984375, -0.0233154296875, -0.00789642333984375, 0.00472259521484375, 0.00775909423828125, 0.00861358642578125, 0.03582763671875, -0.028106689453125, 0.01605224609375, -0.0291595458984375, 0.00848388671875, -0.0241241455078125, 0.0019779205322265625, -0.01043701171875, 0.0247802734375, -0.005130767822265625, -0.0643310546875, -0.02947998046875, -0.0721435546875, -0.0037841796875, 0.0224456787109375, -0.0517578125, -0.047119140625, -0.053466796875, -0.0038127899169921875, 0.0206756591796875, 0.017333984375, -0.057342529296875, 0.0118865966796875, -0.00016570091247558594, 0.051971435546875, -0.005367279052734375, -0.0509033203125, 0.009521484375, 0.0328369140625, 0.02215576171875, -0.0133514404296875, -0.0214080810546875, 0.0201873779296875, -0.00040602684020996094, 0.00567626953125, 0.0419921875, -0.01233673095703125, 0.0027713775634765625, 0.0024814605712890625, 0.0146484375, 0.043701171875, -0.04302978515625, -0.01177978515625, 0.0283355712890625, 0.0124053955078125, -0.037078857421875, -0.0572509765625, 0.006099700927734375, -0.05413818359375, 0.019195556640625, 0.0052490234375, -0.01505279541015625, -0.0012788772583007812, -0.052337646484375, -0.07171630859375, -0.0266876220703125, 0.01617431640625, -0.05523681640625, -0.033111572265625, 0.021697998046875, 0.0205230712890625, -0.0287322998046875, -0.0159454345703125, 0.0018796920776367188, -0.04913330078125, -0.0157928466796875, -0.006481170654296875, 0.055755615234375, -0.0284271240234375, 0.049896240234375, -0.005462646484375, 0.0377197265625, 0.0083770751953125, -0.035064697265625, 0.005588531494140625, -0.01114654541015625, 0.007568359375, 0.0296173095703125, -0.038238525390625, -0.07568359375, -0.00995635986328125, -0.006229400634765625, 0.0089569091796875, 0.0111846923828125, 0.009735107421875, -0.0029811859130859375, -0.01203155517578125, 0.0290679931640625, -0.00469207763671875, -0.0169525146484375, -0.03948974609375, -0.038330078125, -0.03759765625, -0.0078125, 0.037200927734375, -0.07867431640625, 0.01898193359375, -0.00461578369140625, -0.01090240478515625, -0.029815673828125, 0.006809234619140625, -0.01285552978515625, -0.01279449462890625, 0.05279541015625, 0.022430419921875, -0.00968170166015625, -0.0265655517578125, 0.0699462890625, -0.0396728515625, -0.002964019775390625, 0.00363922119140625, 0.0191497802734375, 0.0274658203125, -0.00801849365234375, 0.0142669677734375, -0.00010597705841064453, 0.00231170654296875, 0.0136566162109375, 0.026123046875, 0.007228851318359375, 0.005992889404296875, -0.0199737548828125, 0.00789642333984375, 0.034088134765625, -0.0194091796875, 0.04736328125, -0.0044403076171875, 0.036346435546875, -0.01605224609375, 0.02685546875, -0.0193023681640625, -0.0010576248168945312, -0.0215606689453125, 0.02587890625, -0.0163726806640625, 0.007709503173828125, 0.01873779296875, -0.0272674560546875, 0.0257415771484375, -0.0087432861328125, -0.0219268798828125, 0.0210113525390625, -0.013885498046875, -0.064697265625, -0.04595947265625, -0.0110015869140625 ]
cbe5b84771d09a2d571190652208ef2d9fc2e336
Wordpress Stackexchange Q: Child theme showing a blank page I just created a child theme and activated it.But when I visit the page,it's completely blank. In the display is the themes folder where I have my parent theme and the child,then below is the site details from the parent style.css which I simply copied and pasted to the child stylesheet. functions.php looks like this: <?php function my_theme_enqueue_styles() { $parent_style = 'parent-style'; wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' ); wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array( $parent_style ), wp_get_theme()->get('Version') ); } add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' ); ?> As the photo shows,the theme is active. How can I create a child theme and make it visible as the parent theme? This is what I see when I load the page and try to inspect: A: I think you've nothing in the index.php file. So what is happening that the child theme is calling the child theme's index.php over parent theme's index.php. And you have nothing on index.php. So the site is showing nothing. Delete the child theme's index.php. You'll see the site live.
Q: Child theme showing a blank page I just created a child theme and activated it.But when I visit the page,it's completely blank. In the display is the themes folder where I have my parent theme and the child,then below is the site details from the parent style.css which I simply copied and pasted to the child stylesheet. functions.php looks like this: <?php function my_theme_enqueue_styles() { $parent_style = 'parent-style'; wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' ); wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array( $parent_style ), wp_get_theme()->get('Version') ); } add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' ); ?> As the photo shows,the theme is active. How can I create a child theme and make it visible as the parent theme? This is what I see when I load the page and try to inspect: A: I think you've nothing in the index.php file. So what is happening that the child theme is calling the child theme's index.php over parent theme's index.php. And you have nothing on index.php. So the site is showing nothing. Delete the child theme's index.php. You'll see the site live. A: * Theme Name: Twenty Fifteen Child Theme URI: http://example.com/twenty-fifteen-child/ Description: Twenty Fifteen Child Theme Author: John Doe Author URI: http://example.com Template: twentyfifteen Version: 1.0.0 License: GNU General Public License v2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html Tags: light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready Text Domain: twenty-fifteen-child */ See carefully wordpress coding standard. You have forgot define Template of your parents theme. Please define Template of your parent theme and then see. Hope this will help!
wordpress
{ "language": "en", "length": 251, "provenance": "stackexchange_00019.jsonl.gz:469614", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/243851" }
[ -0.002857208251953125, -0.01001739501953125, -0.02288818359375, -0.0220794677734375, 0.0003018379211425781, -0.0257720947265625, 0.0136871337890625, -0.003940582275390625, -0.021636962890625, -0.004146575927734375, -0.045562744140625, -0.00032830238342285156, -0.036285400390625, -0.024078369140625, 0.00212860107421875, -0.058074951171875, 0.0367431640625, -0.0281524658203125, 0.02587890625, 0.003780364990234375, -0.0190582275390625, 0.030792236328125, 0.043487548828125, 0.04083251953125, 0.026123046875, -0.06658935546875, 0.061492919921875, -0.01448822021484375, 0.00945281982421875, -0.03778076171875, 0.0236663818359375, 0.0139312744140625, 0.0016651153564453125, 0.037841796875, 0.012939453125, -0.020751953125, 0.017974853515625, -0.005748748779296875, 0.01276397705078125, 0.036834716796875, 0.01464080810546875, -0.01107025146484375, 0.034881591796875, 0.0095672607421875, -0.0016412734985351562, -0.031524658203125, 0.0146026611328125, -0.03961181640625, -0.0167999267578125, -0.0438232421875, 0.062103271484375, 0.0262451171875, 0.06707763671875, -0.01885986328125, -0.020599365234375, 0.0306396484375, -0.00600433349609375, 0.00838470458984375, 0.0221710205078125, -0.0121612548828125, -0.0262908935546875, 0.00655364990234375, 0.0181732177734375, -0.006153106689453125, 0.0193939208984375, -0.0015821456909179688, -0.037445068359375, 0.01788330078125, -0.05010986328125, 0.0325927734375, 0.0364990234375, -0.0543212890625, 0.01047515869140625, -0.041656494140625, -0.019927978515625, -0.0144500732421875, 0.0007758140563964844, -0.047393798828125, 0.01348114013671875, -0.0143280029296875, -0.00896453857421875, -0.00656890869140625, -0.07513427734375, -0.026275634765625, 0.024810791015625, -0.01430511474609375, -0.0088958740234375, -0.004650115966796875, -0.03228759765625, -0.0308380126953125, -0.0302734375, -0.03961181640625, -0.0198211669921875, -0.0178375244140625, -0.000014841556549072266, -0.033203125, 0.06048583984375, 0.063232421875, -0.0243072509765625, 0.0131072998046875, -0.0080718994140625, -0.0364990234375, 0.039520263671875, -0.050567626953125, -0.009124755859375, 0.041534423828125, 0.0186309814453125, 0.0025997161865234375, 0.021484375, 0.0113525390625, 0.02337646484375, 0.045562744140625, -0.01358795166015625, -0.01904296875, -0.02520751953125, 0.0081634521484375, -0.045166015625, 0.0009565353393554688, 0.005947113037109375, 0.00786590576171875, 0.003444671630859375, 0.0201263427734375, -0.00534820556640625, -0.007053375244140625, 0.0144500732421875, -0.0009441375732421875, -0.0225982666015625, -0.014495849609375, 0.0904541015625, 0.01000213623046875, -0.049041748046875, -0.005756378173828125, 0.05743408203125, 0.01160430908203125, 0.02288818359375, -0.0250091552734375, 0.0166778564453125, -0.01529693603515625, -0.008941650390625, -0.02081298828125, 0.04241943359375, -0.034088134765625, -0.0189971923828125, 0.00995635986328125, -0.046417236328125, 0.0098419189453125, 0.004154205322265625, 0.0163421630859375, -0.003742218017578125, -0.0305633544921875, 0.0005679130554199219, -0.041961669921875, 0.0341796875, 0.01117706298828125, 0.0131378173828125, -0.01055908203125, 0.0462646484375, -0.012603759765625, -0.0168914794921875, -0.0296478271484375, 0.0119781494140625, 0.0212249755859375, 0.03131103515625, -0.006542205810546875, -0.0240325927734375, -0.0487060546875, -0.035552978515625, -0.0008358955383300781, 0.0186920166015625, -0.055877685546875, 0.04718017578125, -0.03692626953125, 0.00612640380859375, 0.00492095947265625, 0.01439666748046875, 0.034637451171875, -0.03021240234375, -0.0162353515625, 0.05255126953125, 0.005733489990234375, -0.01212310791015625, -0.0235137939453125, 0.038543701171875, -0.0008535385131835938, -0.0301971435546875, 0.01788330078125, 0.005889892578125, 0.0109710693359375, 0.002887725830078125, 0.01355743408203125, 0.005664825439453125, 0.0474853515625, -0.04058837890625, 0.009552001953125, 0.037322998046875, 0.01110076904296875, -0.054473876953125, -0.004230499267578125, -0.007595062255859375, -0.0263824462890625, -0.028350830078125, -0.00421142578125, 0.01386260986328125, -0.027313232421875, -0.026123046875, -0.021636962890625, -0.01318359375, 0.038116455078125, -0.00821685791015625, 0.02069091796875, 0.01322174072265625, 0.00878143310546875, -0.0258636474609375, -0.0478515625, -0.01242828369140625, 0.0310516357421875, -0.026519775390625, 0.0299072265625, 0.0203704833984375, 0.016021728515625, 0.0298309326171875, 0.0036869049072265625, 0.0203857421875, -0.01479339599609375, 0.056365966796875, -0.01277923583984375, -0.0208587646484375, -0.040252685546875, 0.026336669921875, 0.0162353515625, -0.054290771484375, 0.03759765625, 0.0379638671875, 0.045989990234375, -0.060150146484375, -0.01441192626953125, -0.035919189453125, 0.0036563873291015625, -0.00962066650390625, 0.037384033203125, 0.023895263671875, 0.0491943359375, -0.01220703125, 0.0165863037109375, 0.08734130859375, -0.02850341796875, -0.00940704345703125, 0.01172637939453125, 0.0133514404296875, 0.014617919921875, 0.012420654296875, -0.03314208984375, 0.0179443359375, -0.0548095703125, 0.00921630859375, 0.0214996337890625, 0.006610870361328125, -0.005756378173828125, -0.0141754150390625, 0.0206298828125, 0.0101776123046875, -0.00389862060546875, -0.042694091796875, 0.00872802734375, -0.01519012451171875, 0.0294952392578125, -0.00431060791015625, -0.015533447265625, -0.038970947265625, 0.026947021484375, 0.0293121337890625, -0.033721923828125, 0.00852203369140625, 0.040496826171875, 0.0014801025390625, -0.01861572265625, 0.0008606910705566406, -0.0171966552734375, 0.0008435249328613281, 0.0026454925537109375, -0.0046234130859375, 0.01849365234375, -0.026885986328125, -0.01361083984375, -0.0123138427734375, -0.0198974609375, 0.0018472671508789062, 0.0262451171875, 0.019927978515625, 0.0272369384765625, 0.020172119140625, 0.06353759765625, 0.0004303455352783203, 0.034454345703125, 0.0281524658203125, 0.00923919677734375, -0.00033402442932128906, -0.007259368896484375, 0.0277862548828125, -0.02227783203125, -0.00012826919555664062, 0.041778564453125, -0.0022830963134765625, -0.00794219970703125, 0.02105712890625, -0.0187835693359375, 0.013458251953125, 0.027069091796875, 0.019134521484375, -0.00673675537109375, -0.039093017578125, 0.013336181640625, 0.0394287109375, 0.0125274658203125, 0.01514434814453125, -0.0212554931640625, -0.012939453125, 0.0298309326171875, -0.0517578125, -0.052154541015625, -0.060943603515625, -0.06072998046875, -0.00905609130859375, -0.042388916015625, -0.037689208984375, 0.02716064453125, -0.052978515625, 0.0228118896484375, 0.008941650390625, -0.065673828125, -0.06854248046875, -0.093505859375, -0.09210205078125, -0.008026123046875, 0.00653839111328125, 0.005031585693359375, 0.00021350383758544922, 0.02569580078125, 0.00862884521484375, -0.0028839111328125, 0.012115478515625, 0.025360107421875, -0.0028972625732421875, -0.024505615234375, 0.0209808349609375, 0.0007252693176269531, -0.004856109619140625, 0.025848388671875, -0.03009033203125, 0.01221466064453125, -0.038482666015625, -0.042938232421875, -0.01195526123046875, -0.036895751953125, -0.041259765625, 0.0565185546875, 0.047454833984375, -0.04986572265625, 0.005771636962890625, -0.07061767578125, -0.07440185546875, -0.01153564453125, -0.07403564453125, 0.0287322998046875, 0.06866455078125, 0.00228118896484375, -0.01535797119140625, -0.0021991729736328125, 0.01416015625, -0.02459716796875, 0.00615692138671875, -0.022552490234375, 0.069580078125, 0.001163482666015625, 0.0194244384765625, -0.0288238525390625, 0.0275421142578125, 0.005771636962890625, 0.036651611328125, 0.021942138671875, 0.025787353515625, -0.005435943603515625, 0.00530242919921875, -0.03411865234375, -0.01184844970703125, 0.0232391357421875, -0.00516510009765625, 0.037994384765625, -0.032379150390625, -0.0133514404296875, -0.0298004150390625, 0.049774169921875, -0.047637939453125, -0.0210723876953125, 0.03070068359375, 0.028717041015625, -0.06256103515625, -0.0276336669921875, -0.05548095703125, 0.002140045166015625, -0.0831298828125, 0.032867431640625, -0.00609588623046875, -0.012176513671875, 0.004665374755859375, -0.01458740234375, -0.04132080078125, -0.0400390625, 0.037139892578125, 0.022216796875, -0.0179443359375, 0.012481689453125, -0.01873779296875, -0.0216064453125, -0.0211334228515625, 0.0081634521484375, -0.051025390625, -0.017791748046875, -0.00675201416015625, 0.03814697265625, -0.0012807846069335938, 0.0136871337890625, 0.0013523101806640625, 0.053466796875, 0.02301025390625, 0.0538330078125, 0.0015592575073242188, -0.0222625732421875, 0.01401519775390625, -0.009124755859375, 0.023895263671875, -0.025543212890625, -0.0193634033203125, -0.0207672119140625, -0.0109100341796875, 0.0063629150390625, -0.03289794921875, -0.0150604248046875, 0.00424957275390625, -0.01122283935546875, 0.00958251953125, 0.0029449462890625, -0.06414794921875, -0.020416259765625, -0.00445556640625, -0.040252685546875, 0.005062103271484375, -0.0272369384765625, 0.0380859375, -0.04498291015625, -0.01546478271484375, 0.006622314453125, 0.055999755859375, 0.0233917236328125, -0.0205230712890625, -0.006679534912109375, 0.0037841796875, 0.024261474609375, 0.0445556640625, 0.013092041015625, -0.020843505859375, -0.01383209228515625, 0.00476837158203125, 0.0189361572265625, 0.0121002197265625, 0.0258331298828125, 0.074951171875, -0.008575439453125, -0.03948974609375, 0.0347900390625, 0.004497528076171875, -0.07171630859375, 0.004627227783203125, -0.0267486572265625, -0.0059356689453125, 0.0022296905517578125, 0.034576416015625, -0.0245513916015625, 0.022369384765625, -0.0367431640625, -0.016326904296875, -0.00545501708984375, 0.007015228271484375, 0.0311279296875, 0.02197265625, 0.0027313232421875, 0.01078033447265625, 0.02044677734375, 0.00884246826171875, -0.0014734268188476562, 0.0626220703125, -0.0279388427734375, 0.0255584716796875, 0.00989532470703125, -0.01428985595703125, -0.022308349609375, -0.0089263916015625, 0.04791259765625, 0.021514892578125, -0.0241241455078125, 0.00716400146484375, 0.0080413818359375, 0.040069580078125, -0.0150909423828125, 0.01021575927734375, -0.01015472412109375, 0.01708984375, 0.013519287109375, -0.005008697509765625, 0.044189453125, 0.0191497802734375, -0.00798797607421875, 0.01343536376953125, -0.0011854171752929688, -0.0242462158203125, -0.01058197021484375, 0.036468505859375, -0.0231170654296875, 0.00760650634765625, 0.01806640625, -0.056610107421875, -0.0362548828125, 0.054412841796875, 0.032684326171875, -0.060394287109375, 0.04132080078125, 0.0167236328125, 0.07891845703125, -0.03564453125, -0.03204345703125, 0.03277587890625, 0.06488037109375, 0.0013599395751953125, -0.00991058349609375, 0.007701873779296875, 0.004428863525390625, -0.025360107421875, 0.003765106201171875, -0.00641632080078125, 0.0009026527404785156, -0.0235443115234375, -0.01678466796875, 0.033477783203125, 0.035736083984375, -0.030517578125, 0.0158843994140625, -0.027740478515625, 0.018524169921875, 0.0295867919921875, -0.028594970703125, 0.025360107421875, 0.0025959014892578125, -0.019378662109375, -0.0021114349365234375, 0.022247314453125, -0.08038330078125, -0.032257080078125, -0.021942138671875, -0.01029205322265625, 0.0477294921875, -0.01380157470703125, 0.0226287841796875, -0.025115966796875, -0.016632080078125, -0.02142333984375, -0.0036487579345703125, 0.0650634765625, 0.0268096923828125, -0.056854248046875, 0.0123138427734375, -0.03778076171875, -0.01053619384765625, -0.042877197265625, -0.038818359375, -0.059539794921875, 0.006412506103515625, -0.030364990234375, -0.006069183349609375, -0.0132293701171875, -0.0198211669921875, -0.0733642578125, 0.03271484375, 0.042999267578125, 0.00860595703125, -0.0204925537109375, 0.06866455078125, 0.00012421607971191406, 0.0245361328125, 0.0259246826171875, 0.036773681640625, -0.0029392242431640625, -0.0159149169921875, 0.0185546875, 0.032684326171875, -0.0069580078125, -0.033172607421875, 0.0100250244140625, -0.035400390625, 0.06585693359375, -0.007659912109375, 0.015899658203125, -0.018524169921875, 0.0020008087158203125, -0.0252685546875, 0.041290283203125, -0.00534820556640625, 0.01390838623046875, 0.01021575927734375, -0.026824951171875, -0.00904083251953125, 0.00707244873046875, 0.028045654296875, -0.0029697418212890625, -0.0135498046875, -0.00818634033203125, 0.00305938720703125, -0.07000732421875, 0.1131591796875, 0.07763671875, -0.03778076171875, 0.03326416015625, 0.0052947998046875, -0.0140380859375, 0.0113677978515625, 0.03546142578125, -0.040008544921875, -0.042266845703125, 0.063232421875, 0.0288543701171875, -0.0186920166015625, 0.0528564453125, -0.0259246826171875, -0.02386474609375, 0.050262451171875, 0.0205078125, -0.060394287109375, -0.014739990234375, -0.01617431640625, -0.002849578857421875, -0.0015850067138671875, -0.0179595947265625, 0.00965118408203125, -0.0209197998046875, 0.00323486328125, 0.0207366943359375, -0.0279998779296875, -0.00724029541015625, -0.016082763671875, 0.009765625, -0.0325927734375, 0.0355224609375, 0.00936126708984375, -0.062164306640625, 0.02703857421875, 0.050872802734375, -0.001007080078125, -0.00612640380859375, -0.0044097900390625, -0.015625, -0.0308380126953125, -0.023101806640625, 0.003253936767578125, -0.03668212890625, 0.012115478515625, -0.01003265380859375, 0.003887176513671875, -0.029083251953125, 0.0406494140625, -0.048065185546875, 0.041961669921875, 0.0046234130859375, -0.0145721435546875, -0.0165863037109375, -0.02154541015625, 0.0341796875, -0.0238494873046875, -0.037322998046875, 0.0158843994140625, -0.039398193359375, -0.0296783447265625, -0.005970001220703125, 0.004261016845703125, 0.05133056640625, -0.032440185546875, -0.01538848876953125, 0.044219970703125, 0.0014743804931640625, -0.022979736328125, 0.0017652511596679688, 0.00389862060546875, -0.031707763671875, 0.00981903076171875, 0.00907135009765625, 0.0272064208984375, 0.0154266357421875, 0.00838470458984375, -0.05340576171875, 0.0966796875, -0.0565185546875, 0.0286407470703125, 0.0517578125, 0.0419921875, -0.04571533203125, -0.0156402587890625, -0.0146942138671875, 0.07012939453125, 0.053070068359375, 0.019287109375, -0.04791259765625, -0.025482177734375, 0.00931549072265625, 0.049591064453125, 0.051788330078125, -0.0028095245361328125, 0.002155303955078125, -0.005977630615234375, 0.06304931640625, 0.0003750324249267578, -0.0281219482421875, 0.038665771484375, -0.0179290771484375, -0.005126953125, 0.00542449951171875, -0.02606201171875, 0.0212249755859375, -0.032470703125, -0.040985107421875, 0.0034999847412109375, -0.0014886856079101562, -0.0207366943359375, 0.0110626220703125, 0.021820068359375, -0.058013916015625, 0.0242156982421875, 0.0379638671875, -0.005767822265625, -0.0038356781005859375, 0.0167694091796875, 0.035919189453125, -0.07757568359375, -0.019439697265625, -0.0285186767578125, 0.040496826171875, 0.01401519775390625, -0.0115966796875, -0.04638671875, 0.0108489990234375, -0.0286102294921875, -0.0341796875, -0.0269927978515625, 0.06793212890625, -0.07391357421875, 0.03533935546875, 0.041290283203125, 0.043975830078125, 0.0146331787109375, 0.0145111083984375, -0.023895263671875, 0.022857666015625, -0.040496826171875, -0.06097412109375, 0.0146026611328125, 0.004383087158203125, -0.019134521484375, 0.018218994140625, -0.002895355224609375, -0.0182952880859375, 0.03302001953125, -0.0246124267578125, -0.01482391357421875, 0.007724761962890625, 0.0254058837890625, -0.0016155242919921875, 0.0277862548828125, -0.01151275634765625, -0.00716400146484375, 0.00460052490234375, -0.0200347900390625, 0.0086669921875, 0.006732940673828125, 0.0017757415771484375, 0.0234832763671875, -0.0294952392578125, 0.00794219970703125, -0.024078369140625, 0.035064697265625, 0.0041961669921875, 0.03582763671875, -0.02923583984375, 0.01114654541015625, -0.00042438507080078125, 0.0283050537109375, 0.02252197265625, -0.0033721923828125, 0.040435791015625, 0.0094451904296875, -0.05743408203125, -0.00751495361328125, -0.008758544921875, -0.0333251953125, -0.0155487060546875, -0.00274658203125, 0.01354217529296875, 0.033935546875, 0.0005440711975097656, 0.005710601806640625, 0.0257720947265625, 0.048553466796875, -0.027679443359375, 0.01404571533203125, -0.01287078857421875, -0.0155181884765625, 0.01265716552734375, -0.01253509521484375, 0.01204681396484375, -0.0044708251953125, -0.042327880859375, -0.0293426513671875, 0.0225982666015625, 0.021270751953125, -0.00629425048828125, 0.02484130859375, -0.004367828369140625, 0.025115966796875, 0.03314208984375, -0.01369476318359375, -0.0307464599609375, 0.01983642578125, 0.01242828369140625, 0.036773681640625, 0.0297088623046875, 0.047119140625, -0.037750244140625, -0.0439453125, -0.0189666748046875, 0.033416748046875, 0.005641937255859375, 0.10308837890625, -0.039794921875, 0.01068115234375, 0.0186614990234375, 0.049835205078125, -0.0333251953125, -0.0216217041015625, 0.07696533203125, -0.045074462890625, -0.004276275634765625, -0.00861358642578125, -0.1102294921875, 0.017791748046875, 0.022369384765625, 0.0260772705078125, 0.01519012451171875, 0.01214599609375, 0.019287109375, 0.0164642333984375, 0.00228118896484375, -0.0269927978515625, -0.026763916015625, -0.0286712646484375, 0.00908660888671875, 0.00980377197265625, 0.00022983551025390625, -0.036895751953125, -0.009124755859375, 0.027618408203125, -0.046783447265625, 0.034820556640625, -0.0103302001953125, 0.032501220703125, 0.0139617919921875, 0.0413818359375, -0.038421630859375, 0.0017957687377929688, -0.016326904296875, 0.031402587890625, -0.0116424560546875, 0.0655517578125, 0.02099609375, -0.032928466796875, 0.057525634765625, 0.034332275390625, 0.0306396484375, -0.042755126953125, -0.00971221923828125, 0.07421875, -0.01812744140625, 0.037384033203125, -0.047454833984375, -0.0284423828125, -0.06298828125, 0.0216064453125, 0.020599365234375, -0.017425537109375, -0.0149078369140625, -0.0185394287109375, 0.038665771484375, 0.048583984375, 0.0158843994140625, -0.0618896484375, 0.0467529296875, -0.057586669921875, 0.046600341796875, 0.005779266357421875, 0.0380859375, 0.008544921875, -0.01062774658203125, -0.052520751953125, 0.0191650390625, -0.01690673828125, -0.0149993896484375, 0.00135040283203125, 0.00878143310546875, 0.0293731689453125, 0.0009975433349609375, 0.04931640625, 0.01251983642578125, 0.00913238525390625, 0.06976318359375, -0.04058837890625, -0.02899169921875, -0.004608154296875, -0.002109527587890625, -0.006755828857421875, -0.002532958984375, 0.0189361572265625, -0.017578125, -0.029937744140625, -0.033721923828125, -0.00710296630859375, 0.00982666015625, -0.054840087890625, -0.0819091796875, 0.038909912109375, -0.00814056396484375, -0.04638671875, -0.051513671875, -0.009033203125, -0.0130615234375, 0.007617950439453125, -0.01294708251953125, -0.01367950439453125, -0.006107330322265625, 0.06414794921875, -0.006580352783203125, 0.040802001953125, -0.01000213623046875, -0.01042938232421875, -0.035308837890625, -0.0032138824462890625, -0.01377105712890625, -0.00022876262664794922, -0.02197265625, -0.005397796630859375, 0.02532958984375, 0.051849365234375, -0.0096282958984375, -0.01343536376953125, 0.0246124267578125, -0.0195770263671875, -0.0014429092407226562, -0.0197296142578125, -0.0155792236328125, -0.0157318115234375, 0.03912353515625, -0.0167694091796875, -0.0023174285888671875, 0.00907135009765625, -0.040313720703125, -0.055084228515625, -0.058135986328125, -0.031280517578125, 0.03839111328125, -0.1009521484375, -0.0006380081176757812, 0.03350830078125, -0.0168304443359375, 0.007785797119140625, -0.0307769775390625, -0.046295166015625, -0.0135650634765625, -0.053924560546875, 0.0033206939697265625, -0.03521728515625, -0.07342529296875, 0.07220458984375, -0.0302276611328125, 0.0150604248046875, -0.0013141632080078125, 0.055145263671875, 0.039764404296875, 0.0253753662109375, 0.016632080078125, 0.03131103515625, -0.035369873046875, 0.0003628730773925781, 0.01104736328125, -0.0244598388671875, -0.0201416015625, -0.0154266357421875, 0.01348114013671875, 0.00556182861328125, -0.0292510986328125, -0.0089263916015625, 0.0211181640625, 0.047698974609375, -0.031890869140625, 0.08624267578125, -0.0018825531005859375, 0.039642333984375, -0.01099395751953125, 0.04296875, -0.03118896484375, 0.00156402587890625, -0.019927978515625, -0.003963470458984375, 0.006771087646484375, -0.034271240234375, 0.004764556884765625, -0.048919677734375, 0.00580596923828125, -0.049560546875, -0.019805908203125, 0.0246429443359375 ]
e23e2a61b98cc4c5757385aad1178112efb72a84
Wordpress Stackexchange Q: Menu not show woocommerce product category I have problem with configure wordpress woocommerce. On this time I write theme for woocommerce but I can't add product category for menu. On this address We can see "Product Category" Link. But my menu section view that: How I can get product category ? And I know, I can add it via own link. I need some plugin ? A: This is simple: Go to appearance - menu select your screen options Select product categories: Enjoy the product categories select
Q: Menu not show woocommerce product category I have problem with configure wordpress woocommerce. On this time I write theme for woocommerce but I can't add product category for menu. On this address We can see "Product Category" Link. But my menu section view that: How I can get product category ? And I know, I can add it via own link. I need some plugin ? A: This is simple: Go to appearance - menu select your screen options Select product categories: Enjoy the product categories select
wordpress
{ "language": "en", "length": 88, "provenance": "stackexchange_00019.jsonl.gz:469671", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/244072" }
[ 0.01007843017578125, -0.01554107666015625, -0.0151519775390625, 0.00420379638671875, 0.000047326087951660156, -0.03216552734375, 0.040924072265625, -0.01371002197265625, -0.038818359375, 0.009765625, -0.036895751953125, -0.00787353515625, -0.038787841796875, -0.01396942138671875, -0.01294708251953125, -0.07159423828125, 0.0189971923828125, 0.0092315673828125, 0.0300750732421875, -0.001491546630859375, -0.0164337158203125, 0.0252685546875, 0.003997802734375, 0.01256561279296875, 0.038604736328125, -0.0201263427734375, 0.046600341796875, -0.0247039794921875, 0.048614501953125, -0.006130218505859375, 0.02947998046875, -0.028350830078125, 0.01232147216796875, -0.0126953125, 0.053955078125, 0.04119873046875, 0.0206451416015625, 0.001068115234375, 0.0352783203125, -0.0017900466918945312, 0.0308685302734375, -0.0217437744140625, 0.0423583984375, -0.003147125244140625, 0.031890869140625, -0.0460205078125, 0.020538330078125, -0.073974609375, 0.0019235610961914062, -0.06512451171875, 0.009552001953125, 0.042572021484375, 0.033966064453125, -0.052947998046875, -0.0222625732421875, -0.0015287399291992188, -0.04010009765625, 0.0312347412109375, 0.016998291015625, 0.021759033203125, 0.005382537841796875, 0.005222320556640625, 0.0006103515625, -0.00487518310546875, 0.01250457763671875, 0.01238250732421875, 0.0153045654296875, 0.017425537109375, -0.06329345703125, 0.0046539306640625, 0.03253173828125, -0.042388916015625, 0.0129241943359375, 0.03448486328125, -0.0274505615234375, -0.067138671875, 0.025177001953125, -0.042755126953125, 0.0309906005859375, 0.0197601318359375, 0.0064849853515625, -0.002773284912109375, 0.0021190643310546875, -0.037628173828125, 0.0142669677734375, -0.01125335693359375, -0.01006317138671875, -0.0130615234375, -0.0169830322265625, -0.0296173095703125, -0.011199951171875, -0.00713348388671875, -0.062225341796875, 0.038177490234375, -0.0019426345825195312, 0.0017223358154296875, 0.0159454345703125, 0.021453857421875, 0.0037097930908203125, 0.0321044921875, 0.01947021484375, -0.04931640625, 0.046875, -0.0499267578125, -0.0017652511596679688, 0.0037097930908203125, -0.01006317138671875, 0.02880859375, 0.040496826171875, 0.050750732421875, 0.004146575927734375, 0.0148162841796875, -0.0038967132568359375, -0.050994873046875, 0.007389068603515625, 0.0200958251953125, -0.0194854736328125, 0.033172607421875, 0.0180206298828125, -0.005039215087890625, -0.0080108642578125, 0.0296630859375, 0.020416259765625, 0.01432037353515625, -0.00257110595703125, 0.01800537109375, 0.0206298828125, -0.059173583984375, -0.0147705078125, -0.0361328125, -0.0256195068359375, 0.037628173828125, 0.031890869140625, 0.0535888671875, 0.0157012939453125, 0.00795745849609375, 0.0164947509765625, 0.0106201171875, 0.005306243896484375, 0.0015811920166015625, 0.002239227294921875, 0.03253173828125, 0.0195465087890625, -0.022369384765625, 0.033203125, -0.0021228790283203125, 0.0034351348876953125, 0.013916015625, 0.02581787109375, 0.00537109375, 0.004974365234375, -0.00780487060546875, 0.00772857666015625, 0.038330078125, 0.02490234375, 0.030303955078125, 0.055419921875, -0.0277252197265625, -0.02410888671875, -0.03155517578125, -0.006717681884765625, -0.007465362548828125, 0.050445556640625, -0.0204620361328125, -0.031341552734375, 0.01540374755859375, -0.062255859375, -0.01319122314453125, 0.01248931884765625, -0.000024378299713134766, 0.01554107666015625, 0.00103759765625, 0.0124664306640625, 0.0010862350463867188, 0.0009150505065917969, -0.0015935897827148438, 0.0019931793212890625, -0.0014858245849609375, 0.03131103515625, 0.044525146484375, -0.007534027099609375, -0.02734375, 0.04632568359375, -0.01617431640625, -0.041961669921875, 0.031341552734375, 0.023590087890625, 0.061492919921875, -0.025848388671875, 0.02215576171875, 0.044097900390625, 0.03631591796875, -0.04888916015625, -0.008331298828125, 0.0137786865234375, -0.039337158203125, 0.0161895751953125, -0.02264404296875, 0.0097503662109375, 0.01419830322265625, -0.0009102821350097656, 0.01012420654296875, 0.00807952880859375, -0.0014371871948242188, -0.021087646484375, 0.0134429931640625, -0.0006737709045410156, 0.03680419921875, 0.045196533203125, 0.0084381103515625, -0.01103973388671875, -0.0077056884765625, 0.0154876708984375, -0.08905029296875, -0.04022216796875, 0.039794921875, -0.047637939453125, 0.04425048828125, -0.006107330322265625, 0.031951904296875, -0.0252227783203125, -0.01335906982421875, 0.0136260986328125, 0.01236724853515625, 0.03192138671875, 0.027191162109375, -0.033447265625, -0.01071929931640625, 0.032745361328125, 0.030426025390625, -0.049407958984375, 0.0028362274169921875, 0.034332275390625, -0.006977081298828125, -0.05865478515625, 0.016693115234375, 0.0057373046875, -0.0202178955078125, -0.0242462158203125, 0.038482666015625, 0.0257110595703125, 0.019073486328125, -0.0413818359375, -0.037750244140625, 0.06219482421875, -0.039794921875, -0.02886962890625, -0.0020771026611328125, -0.0238189697265625, 0.0123138427734375, 0.06854248046875, 0.0274200439453125, 0.00534820556640625, 0.0008945465087890625, 0.01806640625, 0.027801513671875, -0.0185089111328125, 0.0062255859375, -0.003185272216796875, 0.001678466796875, -0.0012502670288085938, -0.00958251953125, -0.005207061767578125, -0.0193939208984375, 0.0163116455078125, 0.0189361572265625, 0.01361846923828125, 0.014923095703125, -0.0264129638671875, -0.0009055137634277344, 0.01363372802734375, -0.01263427734375, -0.01300048828125, 0.0248260498046875, 0.0182647705078125, -0.032623291015625, -0.04144287109375, 0.00737762451171875, 0.0096282958984375, -0.00998687744140625, 0.00919342041015625, 0.056793212890625, 0.060028076171875, -0.01126861572265625, -0.0347900390625, -0.0697021484375, 0.0227813720703125, 0.0269317626953125, -0.032073974609375, -0.0174713134765625, 0.0154571533203125, 0.006351470947265625, -0.038360595703125, 0.0147857666015625, -0.038177490234375, -0.0146026611328125, 0.0140380859375, 0.0031528472900390625, 0.02001953125, -0.00909423828125, 0.0272369384765625, 0.0484619140625, -0.02484130859375, 0.033233642578125, 0.0176849365234375, -0.00440216064453125, 0.025634765625, 0.01253509521484375, -0.005153656005859375, 0.0239715576171875, -0.09283447265625, -0.0100250244140625, 0.0180206298828125, -0.021636962890625, 0.0158538818359375, -0.01422882080078125, -0.0090484619140625, 0.00046181678771972656, -0.06298828125, -0.0438232421875, -0.009185791015625, -0.038543701171875, 0.039093017578125, 0.0140838623046875, -0.0026187896728515625, -0.0347900390625, 0.04644775390625, 0.01409149169921875, -0.0211639404296875, -0.0318603515625, -0.040191650390625, -0.0634765625, -0.05810546875, -0.0128326416015625, -0.0137786865234375, 0.00777435302734375, -0.00501251220703125, 0.0280914306640625, -0.0164642333984375, -0.051849365234375, 0.00030517578125, -0.004444122314453125, 0.00403594970703125, 0.034088134765625, 0.035186767578125, -0.0213470458984375, -0.011383056640625, 0.0211334228515625, 0.034820556640625, 0.024993896484375, -0.04296875, -0.0207672119140625, -0.0086669921875, 0.01433563232421875, 0.00826263427734375, 0.008270263671875, 0.0189666748046875, 0.01499176025390625, 0.0177154541015625, -0.037017822265625, -0.00875091552734375, -0.011322021484375, -0.0191802978515625, 0.03399658203125, -0.007843017578125, -0.004650115966796875, -0.0195159912109375, 0.029266357421875, -0.0127105712890625, -0.0006875991821289062, 0.0234222412109375, -0.0445556640625, 0.00927734375, -0.006450653076171875, -0.0222625732421875, -0.01024627685546875, 0.0199737548828125, -0.0281524658203125, 0.0323486328125, 0.01291656494140625, 0.0034160614013671875, -0.00447845458984375, 0.02069091796875, -0.0216217041015625, -0.07659912109375, 0.049346923828125, -0.0229339599609375, 0.004833221435546875, -0.0244140625, -0.03472900390625, 0.019805908203125, 0.11883544921875, 0.016143798828125, -0.05072021484375, 0.001323699951171875, 0.0254669189453125, -0.01335906982421875, -0.0258941650390625, 0.00782012939453125, -0.037750244140625, -0.063720703125, 0.010894775390625, 0.00408935546875, -0.03045654296875, 0.006053924560546875, -0.01007080078125, -0.037628173828125, -0.02862548828125, 0.04229736328125, -0.05517578125, 0.0235443115234375, 0.017303466796875, -0.0203704833984375, -0.003833770751953125, -0.050445556640625, -0.017364501953125, -0.032318115234375, -0.01425933837890625, 0.028533935546875, 0.023681640625, -0.010498046875, 0.018585205078125, -0.026458740234375, 0.04150390625, 0.031158447265625, 0.022857666015625, 0.023712158203125, 0.00876617431640625, 0.0016183853149414062, -0.0499267578125, 0.006549835205078125, -0.052398681640625, -0.00695037841796875, -0.026123046875, 0.004634857177734375, 0.05450439453125, -0.01334381103515625, 0.0333251953125, 0.000873565673828125, -0.004413604736328125, -0.094482421875, -0.0311279296875, 0.01500701904296875, -0.01128387451171875, -0.006076812744140625, 0.01496124267578125, -0.009521484375, -0.04058837890625, 0.031951904296875, -0.03662109375, -0.0005345344543457031, 0.0037479400634765625, 0.05096435546875, 0.003955841064453125, -0.0118865966796875, 0.013580322265625, 0.010345458984375, 0.03302001953125, 0.01010894775390625, 0.0307769775390625, -0.00634765625, -0.01427459716796875, 0.035247802734375, 0.0039520263671875, 0.0149078369140625, 0.00807952880859375, 0.049346923828125, -0.0029888153076171875, -0.017669677734375, 0.0250091552734375, -0.00923919677734375, -0.0105743408203125, 0.005260467529296875, -0.0104522705078125, -0.021392822265625, -0.035491943359375, 0.04302978515625, 0.020843505859375, 0.006153106689453125, -0.05010986328125, 0.004978179931640625, -0.0135955810546875, -0.0044708251953125, 0.0709228515625, 0.036529541015625, -0.0087890625, 0.003459930419921875, 0.0298919677734375, -0.006397247314453125, -0.0213470458984375, -0.048919677734375, -0.007076263427734375, -0.00838470458984375, -0.0014858245849609375, -0.00959014892578125, 0.0157928466796875, -0.00757598876953125, 0.01308441162109375, 0.0036563873291015625, -0.020355224609375, -0.036346435546875, -0.01120758056640625, 0.0180511474609375, 0.01461029052734375, -0.0169677734375, 0.046173095703125, 0.019622802734375, -0.00847625732421875, -0.01287078857421875, -0.07696533203125, 0.0008730888366699219, -0.05792236328125, 0.02862548828125, -0.011932373046875, 0.0131988525390625, 0.051116943359375, 0.052947998046875, -0.0193939208984375, 0.049468994140625, -0.003093719482421875, 0.002544403076171875, 0.0015630722045898438, 0.04193115234375, 0.0287628173828125, -0.03887939453125, -0.01352691650390625, 0.00388336181640625, 0.00138092041015625, -0.0369873046875, -0.030609130859375, -0.0036945343017578125, 0.0155181884765625, -0.037445068359375, -0.022125244140625, 0.0479736328125, 0.0086517333984375, -0.0131988525390625, 0.00650787353515625, -0.05523681640625, -0.047210693359375, -0.03472900390625, 0.00948333740234375, 0.039215087890625, -0.00920867919921875, -0.0280303955078125, 0.011871337890625, -0.0238189697265625, 0.0080413818359375, 0.047393798828125, -0.0333251953125, 0.029815673828125, 0.0203399658203125, -0.039276123046875, -0.0220947265625, 0.00951385498046875, -0.033966064453125, -0.01861572265625, -0.01528167724609375, -0.021942138671875, 0.031280517578125, 0.004608154296875, 0.055999755859375, -0.0162200927734375, -0.054901123046875, -0.0186614990234375, 0.00209808349609375, 0.033111572265625, 0.028839111328125, -0.05712890625, -0.00865936279296875, -0.0191497802734375, -0.0167083740234375, 0.012420654296875, -0.00516510009765625, -0.035125732421875, -0.01763916015625, 0.0070648193359375, 0.0251617431640625, -0.00913238525390625, -0.051788330078125, -0.053619384765625, 0.005474090576171875, 0.051544189453125, 0.0073089599609375, -0.00804901123046875, 0.0272369384765625, 0.0038738250732421875, 0.046112060546875, 0.004436492919921875, -0.0014963150024414062, -0.0165252685546875, -0.0280303955078125, -0.0008955001831054688, -0.033966064453125, -0.0207672119140625, -0.0014410018920898438, -0.047943115234375, 0.0269012451171875, 0.0677490234375, 0.0018110275268554688, 0.00910186767578125, -0.03057861328125, 0.000701904296875, -0.01464080810546875, 0.04217529296875, -0.0254058837890625, -0.032928466796875, 0.05902099609375, -0.04681396484375, 0.03936767578125, 0.02239990234375, -0.0020542144775390625, 0.032073974609375, -0.034576416015625, 0.044403076171875, 0.038299560546875, -0.0408935546875, 0.0716552734375, 0.05377197265625, 0.004840850830078125, 0.0279998779296875, -0.0018758773803710938, 0.01113128662109375, -0.022064208984375, 0.0311279296875, -0.0261688232421875, -0.0125579833984375, 0.00881195068359375, -0.01221466064453125, -0.005828857421875, 0.0142822265625, -0.012542724609375, -0.0021572113037109375, 0.07501220703125, 0.0687255859375, -0.108154296875, -0.004329681396484375, 0.0211181640625, -0.0001633167266845703, 0.01302337646484375, 0.027587890625, -0.012725830078125, -0.03619384765625, 0.0175933837890625, -0.041656494140625, -0.00524139404296875, 0.006221771240234375, -0.0134429931640625, 0.002765655517578125, 0.046875, 0.0271148681640625, 0.01326751708984375, -0.04779052734375, -0.047515869140625, 0.0163726806640625, -0.003173828125, -0.01331329345703125, -0.0166015625, 0.025390625, -0.0007195472717285156, -0.0269927978515625, 0.06591796875, -0.043365478515625, 0.06640625, 0.039276123046875, -0.0093536376953125, -0.005664825439453125, 0.0286407470703125, -0.0159912109375, 0.032745361328125, -0.0087127685546875, -0.060333251953125, 0.05828857421875, 0.0035495758056640625, 0.0245513916015625, 0.01140594482421875, -0.053375244140625, -0.01265716552734375, -0.021636962890625, 0.0200653076171875, -0.01513671875, 0.01433563232421875, 0.046478271484375, -0.0423583984375, -0.0159454345703125, 0.037200927734375, 0.043853759765625, -0.0031909942626953125, 0.006740570068359375, 0.0141448974609375, 0.04498291015625, 0.0897216796875, 0.005596160888671875, 0.066162109375, 0.01068115234375, 0.01666259765625, -0.048614501953125, 0.0125274658203125, -0.06732177734375, 0.019073486328125, 0.0264434814453125, -0.00047659873962402344, 0.013580322265625, -0.01476287841796875, -0.04302978515625, 0.047698974609375, 0.022064208984375, 0.06298828125, -0.0299530029296875, -0.0198822021484375, 0.0296630859375, 0.04638671875, 0.055908203125, 0.0007309913635253906, -0.0093536376953125, 0.00839996337890625, 0.0662841796875, 0.037139892578125, -0.0121612548828125, 0.027191162109375, -0.024749755859375, -0.080322265625, 0.0150604248046875, 0.0035858154296875, 0.025115966796875, -0.01151275634765625, -0.0033893585205078125, -0.0250701904296875, 0.0005049705505371094, 0.00007957220077514648, -0.0014238357543945312, 0.036163330078125, 0.041015625, -0.01477813720703125, -0.0273895263671875, -0.036712646484375, -0.0219268798828125, 0.0269012451171875, -0.007236480712890625, -0.0125732421875, 0.01140594482421875, -0.0271148681640625, 0.034454345703125, 0.0030460357666015625, 0.0296478271484375, 0.017303466796875, 0.00926971435546875, 0.06170654296875, -0.0176544189453125, 0.017059326171875, 0.02850341796875, -0.035308837890625, 0.0271759033203125, 0.0214385986328125, 0.01910400390625, -0.0200042724609375, 0.002208709716796875, 0.04058837890625, 0.02972412109375, -0.026214599609375, -0.052337646484375, 0.00786590576171875, 0.0105133056640625, 0.0161590576171875, 0.00901031494140625, 0.014373779296875, 0.01514434814453125, 0.055206298828125, -0.038665771484375, 0.018341064453125, 0.031341552734375, 0.03924560546875, 0.004055023193359375, 0.00727081298828125, -0.057525634765625, 0.0028171539306640625, -0.0672607421875, 0.0643310546875, 0.0098419189453125, 0.0797119140625, -0.0037517547607421875, 0.1092529296875, -0.05194091796875, -0.04736328125, 0.01245880126953125, 0.03375244140625, -0.007450103759765625, -0.0166778564453125, -0.036285400390625, -0.06787109375, 0.01123809814453125, 0.036651611328125, -0.0230255126953125, 0.0154571533203125, 7.748603820800781e-7, 0.047119140625, 0.0236663818359375, -0.0282440185546875, 0.0653076171875, -0.00482177734375, -0.040740966796875, -0.035980224609375, 0.07379150390625, 0.04595947265625, 0.04095458984375, 0.002124786376953125, 0.053466796875, 0.05322265625, -0.0372314453125, 0.0345458984375, -0.0059814453125, -0.036041259765625, 0.00992584228515625, -0.018768310546875, 0.054656982421875, -0.007434844970703125, -0.0985107421875, -0.0299224853515625, -0.0538330078125, 0.014251708984375, 0.0301666259765625, 0.0291595458984375, -0.0254974365234375, 0.05914306640625, 0.015869140625, -0.026824951171875, 0.0187225341796875, 0.01953125, -0.003856658935546875, -0.0098724365234375, 0.031158447265625, -0.0063629150390625, -0.033050537109375, -0.0185089111328125, -0.01287841796875, 0.0185089111328125, 0.0247955322265625, 0.055206298828125, 0.003345489501953125, 0.0254974365234375, -0.0496826171875, 0.0182342529296875, -0.03900146484375, -0.03729248046875, 0.033660888671875, 0.02935791015625, -0.0099639892578125, -0.01287841796875, -0.0297393798828125, -0.01349639892578125, 0.07171630859375, -0.0301666259765625, -0.00695037841796875, -0.00850677490234375, 0.0302581787109375, -0.05841064453125, 0.043792724609375, -0.003826141357421875, -0.03253173828125, -0.027008056640625, 0.0002770423889160156, 0.0188140869140625, 0.0280303955078125, -0.0017299652099609375, -0.0161285400390625, -0.01322174072265625, -0.0246124267578125, -0.0026454925537109375, 0.031829833984375, -0.00359344482421875, 0.035980224609375, -0.0171966552734375, 0.0184326171875, 0.02001953125, -0.0025844573974609375, 0.0267333984375, 0.00921630859375, 0.0059051513671875, 0.0254058837890625, -0.0518798828125, 0.032867431640625, 0.050506591796875, 0.049285888671875, -0.013702392578125, 0.0095672607421875, 0.0411376953125, -0.0273284912109375, -0.00452423095703125, -0.003570556640625, -0.050811767578125, -0.047454833984375, 0.018402099609375, 0.01078033447265625, -0.005519866943359375, -0.02288818359375, -0.07940673828125, -0.0050811767578125, 0.052947998046875, 0.0085296630859375, -0.05035400390625, 0.0247802734375, -0.0178070068359375, 0.050628662109375, -0.0132904052734375, -0.06524658203125, 0.0243377685546875, 0.01788330078125, -0.0252227783203125, 0.0208740234375, -0.04168701171875, -0.061370849609375, -0.026031494140625, 0.021087646484375, 0.0181732177734375, -0.0225067138671875, -0.00826263427734375, 0.00957489013671875, 0.006504058837890625, 0.07562255859375, 0.0513916015625, -0.032073974609375, -0.048187255859375, 0.0281219482421875, -0.019622802734375, -0.0016222000122070312, 0.035736083984375, -0.032958984375, -0.046173095703125, -0.011077880859375, -0.0032444000244140625, 0.005523681640625, -0.045440673828125, -0.06781005859375, 0.07550048828125, -0.0106201171875, -0.0269775390625, -0.03460693359375, -0.0221710205078125, -0.034942626953125, 0.049407958984375, -0.01352691650390625, -0.01413726806640625, -0.017364501953125, 0.061767578125, 0.00250244140625, 0.01314544677734375, 0.01300811767578125, -0.01479339599609375, -0.034027099609375, -0.0012674331665039062, -0.004405975341796875, -0.01010894775390625, 0.0164642333984375, -0.0262451171875, 0.0178985595703125, 0.037841796875, -0.043853759765625, -0.06439208984375, -0.0211944580078125, -0.005489349365234375, 0.047332763671875, -0.0091400146484375, -0.049285888671875, -0.0853271484375, -0.0294342041015625, -0.0260162353515625, 0.006053924560546875, 0.06884765625, -0.00403594970703125, -0.00414276123046875, 0.00469970703125, 0.009490966796875, 0.0117645263671875, -0.04901123046875, 0.00284576416015625, 0.0072479248046875, -0.004974365234375, -0.00432586669921875, 0.040283203125, -0.0386962890625, -0.01021575927734375, 0.00006216764450073242, -0.006694793701171875, -0.08935546875, -0.0270538330078125, 0.010833740234375, -0.0228424072265625, -0.05682373046875, 0.0024471282958984375, 0.0198516845703125, -0.038482666015625, -0.018157958984375, -0.0107269287109375, 0.0046234130859375, -0.0189208984375, 0.01461029052734375, -0.010986328125, 0.0196685791015625, -0.0312347412109375, 0.0163421630859375, -0.01605224609375, 0.035919189453125, 0.005077362060546875, 0.043701171875, -0.0036640167236328125, 0.0535888671875, 0.033111572265625, 0.050933837890625, -0.0011720657348632812, -0.0141448974609375, -0.019317626953125, 0.06854248046875, -0.0222930908203125, -0.0164031982421875, 0.006473541259765625, -0.06622314453125, 0.006053924560546875, -0.008331298828125, -0.0222015380859375, -0.022735595703125, -0.0025043487548828125, -0.014801025390625, -0.0301361083984375, 0.01032257080078125 ]
18b13597a4cec4950b5fb5d5fd83575a6d7073c7
Wordpress Stackexchange Q: How bad is it if I write AJAX functions using wp-load.php? My question is: When I write an AJAX function I can write it using a separate file. I can include wp-load.php to that file and use WP core functions. I know this is wrong. Can you tell me how bad is it? Is it a big security risk? What security risks and disadvantages do I have ? A: The main downside of writing a custom file endpoint is that your file would not know where wp-load.php is in general case. Whenever you are in WP environment you have the context provided. If you are trying to find where WP core from arbitrary PHP file it's not going to work for all possible configurations out there. So the biggest downside of this technique is that it cannot be distributed in public extensions.
Q: How bad is it if I write AJAX functions using wp-load.php? My question is: When I write an AJAX function I can write it using a separate file. I can include wp-load.php to that file and use WP core functions. I know this is wrong. Can you tell me how bad is it? Is it a big security risk? What security risks and disadvantages do I have ? A: The main downside of writing a custom file endpoint is that your file would not know where wp-load.php is in general case. Whenever you are in WP environment you have the context provided. If you are trying to find where WP core from arbitrary PHP file it's not going to work for all possible configurations out there. So the biggest downside of this technique is that it cannot be distributed in public extensions. A: It's incredibly bad, a major security hole, and easily avoided. For a safer route, use a REST API endpoints or the old admin-ajax.php API. Both of these are officially supported, documented, and bring other benefits such as pretty URLs to make requests too, support in debugging plugins such as query monitor, etc. Why Is It Bad If you use a standalone file for AJAX or form submission with wp-load.php you're going to have to face some of these issues and more: * *You will need to implement all of the authentication and validation yourself *Caching plugins will be unable to interact with your endpoint, slowing things down for common requests *There's no way for security code to intercept the requests *The non-standard entry point means HTAccess files get bypassed *Other WP code will be unaware it's an AJAX request *Your endpoint will always work, even if your plugin is deactivated, or you switch themes *Your endpoint will be active on all sites on a multisite install, not just those you intended it for, which can lead the endpoint being used in places it isn't intended *The file will be fragile, moving your plugins folder, or putting the plugin in mu-plugins will cause the endpoint to give 500 fatal errors *Said endpoint can accept anything and it could return anything *your webhosts security might flag it as malicious, most malware installs standalone PHP files once it's broken into your site It would be an understatement to say that standalone endpoints in themes and plugins are a security risk, be it an AJAX handler or a form handler, or even a standalone file for images ( timthumb did this and even the original devs have disowned it due to its security reputation ) Better/Safer Alternatives Admin AJAX You could use the WP AJAX API, which is better, but requires you to implement any auth or sanitising checks yourself, and has some quirks. It also provides no structure, as with a standard endpoint it can receive anything and return anything ( if it returns at all ). REST API endpoints Instead, use the REST API with register_rest_route, it's easier to use, has fewer quirks, and handles authentication for you. It also gives you friendlier URLs and namespacing, e.g.: function tomjn_rest_test( $request ) { return "moomins"; } add_action( 'rest_api_init', function () { register_rest_route( 'tomjn/v1', '/test/', [ 'methods' => 'GET', 'callback' => 'tomjn_rest_test' ] ); } ); You can see this at: https://tomjn.com/wp-json/tomjn/v1/test With this I can do a number of things: * *specify that the user must be logged in and exactly what they need to be able to do this *specify the arguments * *specify the type and sanitiser for each argument separately *specify if they're required or not *specify if an endpoint is for reading writing or both All of which are handled by code written for core. Of course you can implement all of this yourself by hand in each WP AJAX handler, but this is much more concise and tested ( and there are few in the WP community experienced enough to do this properly ), e.g. to make my endpoint above only available for admins: register_rest_route( 'tomjn/v1', '/test/', array( 'methods' => 'GET', 'callback' => 'tomjn_rest_test', 'permission_callback' => function( $req ) { return current_user_can('manage_options'); } ) ); As a bonus, it makes certain best practices much easier to use, such as returning data not HTML, uses standard HTTP GET PUT POST etc, and returns a JSON response that can be validated What's so bad about an endpoint being always active? Earlier I mentioned that a native endpoint is active, even if the plugin it's inside is disabled. The only way to turn it off is via internal checks, or by deleting the file. Why is this bad though? The crux of this, is that what might be appropriate in one circumstance, may not be in another. For example, scenario 1: An admin installs a plugin that allows users to login and register on the frontend without refreshing the page. To do this the plugin has an endpoint to create users. However, the admin realises that registration isn't what they wanted, only login, and deactivates the plugin. The files are still there however, and users can still load the endpoint to create new users. Scenario 2: A plugin is being used on a multisite install to send emails to the administrator of a blog via a contact form. This is all working as expected, but there are other blogs on the site who have no interest in this functionality. By changing the domain used for the blog, an attacker can send emails to the admins of these other blogs by loading the endpoint used by the contact form in the context of the other blogs on the network, sending emails to anybody who has an admin role anywhere on the multisite installation Scenario 3: A plugin has a useful debug feature that allows users to change their emails, but for security reasons you've turned this feature off. However, the endpoint that handles the email change form is a standalone file, anybody who knows how the form is built can still change their email Scenario 4: A standalone file is being used as a part of a theme, and time goes by. People forget about the file and it doesn't get updated, then it gets exploited. this was a widespread problem with libraries such as timthumb.php
wordpress
{ "language": "en", "length": 1048, "provenance": "stackexchange_00019.jsonl.gz:469695", "question_score": "6", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/244158" }
[ 0.1112060546875, -0.0030956268310546875, -0.01117706298828125, -0.09619140625, 0.045318603515625, -0.035675048828125, 0.033660888671875, 0.0177001953125, -0.018035888671875, -0.0013828277587890625, -0.0421142578125, 0.00518035888671875, -0.05401611328125, 0.0027942657470703125, -0.018890380859375, -0.062255859375, 0.0310821533203125, -0.00731658935546875, 0.0275421142578125, -0.005596160888671875, 0.0025501251220703125, 0.0172271728515625, 0.008209228515625, 0.050384521484375, 0.006458282470703125, -0.006855010986328125, 0.008697509765625, 0.01218414306640625, -0.0084991455078125, -0.005756378173828125, 0.0091094970703125, 0.007205963134765625, 0.01302337646484375, 0.06524658203125, -0.076904296875, -0.01119232177734375, -0.00006264448165893555, 0.0269775390625, -0.0117645263671875, 0.035736083984375, 0.018646240234375, -0.0035839080810546875, 0.028350830078125, -0.0099639892578125, 0.0062103271484375, -0.02886962890625, 0.034759521484375, -0.0286407470703125, -0.007366180419921875, 0.03424072265625, 0.0142059326171875, -0.0267181396484375, 0.02642822265625, -0.0162811279296875, -0.0131988525390625, -0.0291595458984375, -0.03619384765625, 0.044677734375, 0.031341552734375, 0.0247344970703125, -0.0208282470703125, -0.000591278076171875, 0.00545501708984375, -0.028533935546875, -0.003215789794921875, -0.0185089111328125, -0.0302276611328125, 0.0291595458984375, -0.01580810546875, -0.022064208984375, 0.002227783203125, -0.0145111083984375, 0.0160980224609375, -0.0031490325927734375, 0.0032253265380859375, -0.0309295654296875, 0.01175689697265625, -0.0128021240234375, 0.0163726806640625, 0.01351165771484375, -0.035430908203125, -0.0227508544921875, -0.057891845703125, -0.0138702392578125, 0.0163421630859375, 0.03326416015625, -0.0200653076171875, -0.008880615234375, 0.019866943359375, -0.003177642822265625, -0.003330230712890625, -0.034149169921875, 0.0203399658203125, 0.0498046875, -0.007572174072265625, -0.015045166015625, -0.0557861328125, -0.0301666259765625, -0.0117340087890625, 0.03521728515625, 0.0467529296875, -0.04022216796875, 0.0731201171875, -0.0240478515625, 0.0244140625, 0.082275390625, 0.00019156932830810547, 0.00899505615234375, 0.040740966796875, 0.001453399658203125, 0.034332275390625, 0.0301971435546875, 0.03216552734375, -0.005626678466796875, -0.00518035888671875, -0.00913238525390625, 0.0102996826171875, 0.0236358642578125, -0.0022125244140625, 0.029510498046875, -0.00348663330078125, 0.0005655288696289062, -0.0274810791015625, 0.045745849609375, -0.01605224609375, -0.0282745361328125, -0.0078887939453125, 0.0142364501953125, -0.0019817352294921875, 0.0268707275390625, -0.0234832763671875, -0.01058197021484375, 0.0555419921875, 0.03369140625, 0.01398468017578125, -0.0245208740234375, 0.048614501953125, 0.0243072509765625, 0.0139312744140625, -0.01125335693359375, 0.0128173828125, -0.042724609375, -0.031982421875, 0.017547607421875, -0.00026416778564453125, -0.00836944580078125, 0.0027637481689453125, 0.02398681640625, 0.010955810546875, -0.00969696044921875, 0.0157012939453125, -0.0170135498046875, 0.0189056396484375, 0.0114593505859375, 0.0222930908203125, -0.01324462890625, 0.040924072265625, -0.037933349609375, -0.004077911376953125, -0.0274200439453125, 0.01050567626953125, 0.00315093994140625, -0.0231475830078125, -0.004528045654296875, 0.00444793701171875, -0.0115203857421875, -0.01294708251953125, 0.0174407958984375, 0.0187835693359375, 0.04742431640625, -0.018768310546875, -0.03326416015625, -0.0540771484375, 0.007793426513671875, -0.005523681640625, 0.0273895263671875, 0.003925323486328125, 0.046661376953125, 0.039154052734375, 0.0178070068359375, -0.0093841552734375, -0.03741455078125, 0.1092529296875, -0.036041259765625, -0.06976318359375, 0.065185546875, 0.00435638427734375, 0.11126708984375, 0.00872039794921875, 0.0178375244140625, 0.001987457275390625, 0.00566864013671875, 0.01019287109375, 0.018157958984375, -0.037841796875, -0.035552978515625, -0.0352783203125, 0.0017480850219726562, -0.040130615234375, 0.03863525390625, 0.010528564453125, -0.0036983489990234375, -0.0021514892578125, -0.01427459716796875, -0.068603515625, 0.01137542724609375, -0.032989501953125, 0.049224853515625, 0.0011396408081054688, 0.00582122802734375, 0.0206756591796875, 0.04327392578125, -0.034393310546875, -0.009613037109375, -0.020538330078125, 0.0311279296875, -0.035369873046875, 0.043670654296875, -0.021240234375, 0.038421630859375, -0.0323486328125, -0.039581298828125, -0.02752685546875, -0.0014591217041015625, -0.00341796875, 0.019775390625, -0.033935546875, -0.005939483642578125, 0.01187896728515625, 0.006404876708984375, 0.037139892578125, 0.0265655517578125, 0.08270263671875, 0.06585693359375, -0.00899505615234375, -0.007450103759765625, -0.0001747608184814453, -0.07061767578125, -0.01435089111328125, 0.04864501953125, 0.0223236083984375, 0.031829833984375, -0.00860595703125, 0.043243408203125, 0.014556884765625, -0.051513671875, -0.01739501953125, 0.033599853515625, -0.0008153915405273438, 0.01483917236328125, -0.0447998046875, -0.0283050537109375, 0.02874755859375, -0.048431396484375, -0.01074981689453125, 0.049896240234375, 0.01146697998046875, 0.0287933349609375, -0.012969970703125, -0.00516510009765625, 0.00023221969604492188, -0.01393890380859375, -0.02264404296875, 0.001499176025390625, 0.003910064697265625, -0.0159454345703125, 0.01288604736328125, 0.007076263427734375, 0.01059722900390625, -0.0273590087890625, 0.01532745361328125, -0.0239410400390625, -0.0162811279296875, 0.01020050048828125, 0.049285888671875, -0.00809478759765625, -0.042999267578125, 0.00021004676818847656, 0.00630950927734375, 0.021820068359375, -0.030975341796875, 0.00868988037109375, -0.04827880859375, -0.020050048828125, -0.0045928955078125, -0.00893402099609375, 0.00693511962890625, -0.006824493408203125, 0.033203125, 0.035125732421875, 0.044342041015625, 0.046630859375, 0.019134521484375, 0.0272979736328125, -0.004726409912109375, 0.004467010498046875, 0.0802001953125, -0.021514892578125, 0.00351715087890625, 0.0185089111328125, 0.033843994140625, 0.05322265625, 0.042266845703125, -0.04681396484375, 0.004100799560546875, 0.0215606689453125, 0.0138397216796875, -0.00438690185546875, 0.0055084228515625, -0.0204925537109375, -0.00832366943359375, 0.00852203369140625, 0.042236328125, 0.08740234375, 0.006984710693359375, -0.02911376953125, 0.0113525390625, 0.062469482421875, -0.045440673828125, -0.10028076171875, 0.0200347900390625, -0.034088134765625, 0.021728515625, -0.0220184326171875, -0.009796142578125, -0.0322265625, -0.002330780029296875, -0.0012302398681640625, -0.0185546875, -0.0278167724609375, -0.031707763671875, -0.080810546875, -0.08111572265625, -0.0297088623046875, 0.00623321533203125, -0.0012540817260742188, -0.004413604736328125, 0.056854248046875, -0.0041351318359375, -0.07318115234375, -0.03814697265625, 0.06884765625, -0.02215576171875, -0.0227813720703125, 0.0126800537109375, -0.019927978515625, -0.0338134765625, 0.003429412841796875, 0.01551055908203125, 0.0008563995361328125, -0.0017576217651367188, -0.0072021484375, 0.01348876953125, 0.018402099609375, 0.007671356201171875, 0.052093505859375, -0.0159912109375, -0.0002906322479248047, 0.0173187255859375, -0.054046630859375, -0.0236663818359375, 0.0294036865234375, -0.01186370849609375, -0.003223419189453125, -0.0031375885009765625, -0.0294952392578125, 0.015167236328125, 0.0198211669921875, 0.0297698974609375, 0.0281524658203125, 0.010040283203125, -0.00577545166015625, 0.031524658203125, -0.0033435821533203125, 0.0283203125, -0.0406494140625, 0.04754638671875, -0.00986480712890625, -0.021026611328125, -0.0006341934204101562, 0.00946807861328125, -0.0193939208984375, -0.0181884765625, -0.047607421875, -0.032470703125, 0.04833984375, -0.00010567903518676758, -0.032196044921875, 0.00656890869140625, -0.01947021484375, 0.0283660888671875, 0.058685302734375, 0.047088623046875, -0.0015802383422851562, -0.005466461181640625, -0.0013360977172851562, -0.0830078125, -0.05029296875, -0.06939697265625, 0.01885986328125, 0.0193328857421875, -0.01056671142578125, -0.01181793212890625, 0.02197265625, -0.0254058837890625, 0.05462646484375, 0.006649017333984375, -0.00640106201171875, 0.042022705078125, -0.037750244140625, 0.038421630859375, -0.01123046875, 0.0340576171875, -0.0262603759765625, -0.023681640625, -0.0284881591796875, -0.10345458984375, -0.01166534423828125, -0.06781005859375, 0.066650390625, 0.01226806640625, 0.0023708343505859375, -0.001674652099609375, 0.05322265625, 0.0030460357666015625, 0.01219940185546875, 0.01861572265625, -0.0131378173828125, 0.041595458984375, 0.038726806640625, 0.017486572265625, 0.007221221923828125, -0.017669677734375, -0.01444244384765625, -0.0457763671875, -0.0007495880126953125, -0.01837158203125, -0.039031982421875, 0.008056640625, -0.0234832763671875, -0.0264739990234375, -0.0278472900390625, -0.02020263671875, 0.052642822265625, -0.00618743896484375, 0.01520538330078125, -0.050994873046875, -0.047027587890625, 0.0283355712890625, 0.0355224609375, -0.01238250732421875, 0.000003874301910400391, 0.054107666015625, 0.01184844970703125, -0.031280517578125, -0.05718994140625, -0.0023517608642578125, -0.0033550262451171875, -0.047088623046875, 0.05804443359375, -0.031341552734375, -0.0007495880126953125, 0.08526611328125, -0.058624267578125, 0.039703369140625, -0.0048370361328125, 0.048492431640625, 0.0199737548828125, 0.01494598388671875, 0.00571441650390625, 0.04107666015625, -0.07708740234375, 0.03485107421875, -0.0157012939453125, 0.0104827880859375, 0.029815673828125, -0.01026153564453125, -0.07244873046875, 0.04150390625, 0.0218963623046875, 0.0022144317626953125, 0.00585174560546875, -0.020294189453125, 0.0728759765625, 0.0254974365234375, 0.0012693405151367188, 0.004764556884765625, 0.0110321044921875, 0.015380859375, 0.01058197021484375, 0.009521484375, -0.0275421142578125, 0.020904541015625, 0.0419921875, 0.00673675537109375, -0.007335662841796875, -0.0014801025390625, 0.034332275390625, -0.006198883056640625, -0.0308837890625, -0.023895263671875, -0.0085601806640625, 0.0247344970703125, -0.01100921630859375, 0.004131317138671875, 0.031768798828125, 0.01163482666015625, -0.00841522216796875, -0.0032367706298828125, 0.00279998779296875, -0.040008544921875, -0.033233642578125, 0.046661376953125, 0.0207977294921875, -0.002437591552734375, -0.01085662841796875, 0.04547119140625, 0.032440185546875, 0.008880615234375, -0.012908935546875, 0.064697265625, 0.00966644287109375, 0.0277099609375, 0.004528045654296875, -0.006195068359375, 0.033843994140625, -0.019866943359375, -0.0053558349609375, -0.0294952392578125, -0.004058837890625, 0.01235198974609375, 0.00516510009765625, 0.0033168792724609375, -0.0076904296875, 0.0279083251953125, 0.005008697509765625, -0.021759033203125, 0.0457763671875, 0.02978515625, -0.03997802734375, -0.04705810546875, -0.0229644775390625, 0.041839599609375, 0.0121612548828125, 0.02294921875, -0.006313323974609375, 0.0104217529296875, 0.03399658203125, -0.02105712890625, 0.011016845703125, -0.01531982421875, -0.030242919921875, -0.01535797119140625, 0.000060617923736572266, -0.0182952880859375, -0.0188446044921875, -0.031463623046875, -0.00006407499313354492, -0.0192413330078125, 0.0275421142578125, -0.0372314453125, -0.00684356689453125, -0.033416748046875, 0.036712646484375, -0.00548553466796875, 0.02154541015625, 0.036834716796875, 0.0007953643798828125, -0.04327392578125, -0.0038433074951171875, -0.0151214599609375, -0.033721923828125, -0.01690673828125, -0.034271240234375, -0.052215576171875, 0.007450103759765625, 0.022705078125, 0.01195526123046875, -0.0224151611328125, -0.035400390625, -0.00151824951171875, 0.030059814453125, 0.0216064453125, 0.0246124267578125, -0.04473876953125, 0.044677734375, 0.053070068359375, 0.027587890625, 0.0233306884765625, 0.02410888671875, 0.0259552001953125, -0.027923583984375, -0.006542205810546875, -0.08837890625, -0.027496337890625, -0.0177001953125, 0.01082611083984375, 0.06854248046875, 0.019927978515625, 0.006267547607421875, 0.0242462158203125, -0.0135498046875, -0.002712249755859375, -0.0096282958984375, 0.0068206787109375, 0.0027103424072265625, 0.024322509765625, 0.007389068603515625, -0.00811004638671875, 0.01520538330078125, -0.0232391357421875, -0.0193023681640625, 0.0262298583984375, -0.01371002197265625, 0.01096343994140625, 0.02569580078125, -0.0199737548828125, 0.038421630859375, 0.060577392578125, -0.01537322998046875, 0.047637939453125, 0.0308074951171875, 0.01218414306640625, 0.046295166015625, 0.083740234375, -0.0374755859375, -0.06280517578125, 0.031982421875, 0.024322509765625, -0.031768798828125, -0.01184844970703125, -0.021484375, 0.01009368896484375, 0.034576416015625, 0.08563232421875, -0.051971435546875, 0.01251983642578125, 0.0228424072265625, -0.00664520263671875, 0.0093231201171875, -0.0202178955078125, -0.012115478515625, -0.028106689453125, 0.05126953125, -0.00189971923828125, -0.0177459716796875, 0.0130767822265625, 0.01123046875, 0.00757598876953125, -0.04083251953125, 0.03912353515625, 0.0269927978515625, -0.044830322265625, 0.050262451171875, 0.025604248046875, 0.03228759765625, -0.031463623046875, 0.0276031494140625, -0.00836181640625, 0.00681304931640625, -0.032745361328125, 0.037445068359375, 0.0152740478515625, -0.01210784912109375, 0.0003993511199951172, 0.01403045654296875, 0.04986572265625, 0.0318603515625, -0.0092620849609375, 0.0180511474609375, -0.0161895751953125, 0.07080078125, 0.004261016845703125, -0.025054931640625, 0.01099395751953125, 0.0347900390625, -0.0312042236328125, 0.015960693359375, -0.004642486572265625, -0.006763458251953125, -0.004302978515625, -0.0186004638671875, 0.0843505859375, -0.032379150390625, -0.0200347900390625, 0.003753662109375, -0.0283203125, 0.00531768798828125, 0.002033233642578125, -0.004322052001953125, -0.0570068359375, -0.04241943359375, -0.00405120849609375, -0.054901123046875, 0.01163482666015625, -0.00399017333984375, -0.0000095367431640625, 0.11572265625, -0.0198974609375, -0.0283355712890625, 0.0303192138671875, 0.06744384765625, -0.03363037109375, 0.06549072265625, -0.0212860107421875, 0.0693359375, 0.026214599609375, 0.04705810546875, -0.02532958984375, 0.0006575584411621094, 0.0232696533203125, 0.0181121826171875, -0.029266357421875, -0.0014429092407226562, 0.0186614990234375, -0.0211944580078125, -0.0281219482421875, 0.019256591796875, -0.0161285400390625, 0.00414276123046875, -0.0014314651489257812, -0.026611328125, 0.00952911376953125, 0.0207366943359375, 0.0238037109375, -0.0031108856201171875, -0.01690673828125, 0.03466796875, 0.0309600830078125, 0.0230865478515625, -0.0012493133544921875, 0.00750732421875, -0.0321044921875, 0.013885498046875, 0.0230865478515625, 0.055023193359375, -0.0302581787109375, 0.01983642578125, -0.00496673583984375, -0.0321044921875, 0.00559234619140625, -0.037567138671875, 0.0267181396484375, -0.0113067626953125, 0.0171661376953125, 0.0227508544921875, 0.0156402587890625, 0.0027904510498046875, -0.01041412353515625, 0.011016845703125, 0.02294921875, -0.02301025390625, 0.05474853515625, 0.020416259765625, 0.03289794921875, -0.041473388671875, -0.0506591796875, -0.003597259521484375, 0.062286376953125, -0.013671875, -0.01922607421875, -0.0007605552673339844, 0.0138702392578125, 0.017364501953125, 0.003055572509765625, 0.05743408203125, 0.05609130859375, 0.0286407470703125, -0.01497650146484375, -0.02081298828125, -0.00586700439453125, 0.01425933837890625, -0.007625579833984375, -0.0219879150390625, 0.0130615234375, -0.0179595947265625, -0.00716400146484375, -0.036468505859375, 0.0174713134765625, 0.0252685546875, 0.01544189453125, 0.036529541015625, -0.014434814453125, -0.0184783935546875, 0.0218963623046875, 0.0288238525390625, -0.007747650146484375, -0.0235137939453125, -0.019287109375, -0.07537841796875, 0.0262451171875, 0.038665771484375, 0.004711151123046875, 0.062408447265625, 0.042266845703125, 0.052581787109375, -0.00214385986328125, 0.0062408447265625, 0.053741455078125, -0.01568603515625, -0.01519775390625, -0.029510498046875, 0.0274505615234375, 0.0199432373046875, 0.0159759521484375, -0.005496978759765625, 0.02557373046875, 0.0283203125, -0.037841796875, 0.03656005859375, -0.017730712890625, -0.0273590087890625, 0.06585693359375, -0.01183319091796875, 0.06829833984375, -0.0109405517578125, -0.044921875, -0.0011167526245117188, -0.020416259765625, -0.0372314453125, 0.01000213623046875, 0.036468505859375, -0.004924774169921875, 0.0101470947265625, -0.00027179718017578125, 0.01387786865234375, 0.047515869140625, -0.0604248046875, -0.0022563934326171875, -0.0291595458984375, 0.01378631591796875, -0.00467681884765625, -0.01532745361328125, 0.0030269622802734375, -0.00537109375, 0.0257415771484375, 0.0004780292510986328, 0.08404541015625, -0.0340576171875, 0.010223388671875, 0.0302886962890625, -0.026123046875, 0.005794525146484375, 0.0207977294921875, -0.0240631103515625, -0.035675048828125, 0.00916290283203125, -0.0018243789672851562, -0.0036907196044921875, 0.017822265625, 0.009979248046875, -0.0283966064453125, 0.0035839080810546875, -0.023956298828125, 0.020782470703125, 0.00794219970703125, 0.0149688720703125, -0.03619384765625, -0.03485107421875, -0.0264892578125, -0.00848388671875, -0.00897979736328125, -0.0401611328125, -0.00006562471389770508, -0.036407470703125, -0.004779815673828125, -0.0384521484375, 0.0177459716796875, 0.0116729736328125, 0.0143890380859375, 0.0189208984375, 0.01099395751953125, -0.0411376953125, 0.020050048828125, -0.012115478515625, -0.0010776519775390625, 0.00852203369140625, 0.032745361328125, 0.02685546875, -0.07135009765625, -0.016510009765625, 0.03900146484375, 0.048004150390625, -0.0053558349609375, 0.034271240234375, -0.00897216796875, -0.00991058349609375, 0.01215362548828125, 0.00531768798828125, -0.0009965896606445312, 0.02362060546875, -0.0214080810546875, -0.004138946533203125, 0.0193328857421875, -0.04437255859375, -0.0204925537109375, -0.01251983642578125, 0.051055908203125, 0.0158538818359375, -0.023101806640625, 0.00885772705078125, -0.0297393798828125, 0.0107269287109375, 0.034637451171875, 0.035919189453125, -0.042877197265625, -0.0030765533447265625, -0.03826904296875, -0.06903076171875, -0.05145263671875, 0.08319091796875, -0.04510498046875, 0.0302734375, 0.0428466796875, -0.0277099609375, -0.01300811767578125, 0.045623779296875, 0.020660400390625, 0.0894775390625, -0.034210205078125, -0.009185791015625, 0.0175018310546875, -0.0005316734313964844, -0.033111572265625, -0.02880859375, 0.0292205810546875, -0.038421630859375, -0.032501220703125, -0.037506103515625, 0.023895263671875, 0.0159149169921875, -0.046356201171875, -0.07818603515625, 0.028839111328125, -0.01248931884765625, -0.036529541015625, 0.0005269050598144531, 0.0164337158203125, 0.0167083740234375, -0.013519287109375, 0.004810333251953125, -0.036163330078125, -0.0185089111328125, -0.00817108154296875, 0.00803375244140625, 0.00811767578125, 0.0343017578125, 0.0002351999282836914, -0.019805908203125, 0.0188751220703125, 0.00823974609375, -0.01119232177734375, -0.035919189453125, 0.006011962890625, 0.050201416015625, 0.047149658203125, -0.00384521484375, 0.0958251953125, 0.03851318359375, 0.0071563720703125, -0.005168914794921875, -0.04302978515625, 0.01197052001953125, 0.0313720703125, 0.04248046875, 0.02337646484375, -0.0022487640380859375, -0.06182861328125, -0.020660400390625, -0.036041259765625, 0.034332275390625, -0.003849029541015625, -0.01947021484375, -0.0265960693359375, 0.00788116455078125, 0.005161285400390625, -0.01325225830078125, 0.0254364013671875, 0.006679534912109375, -0.016204833984375, 0.0007104873657226562, -0.0018739700317382812, -0.020172119140625, -0.036041259765625, -0.034454345703125, 0.06280517578125, -0.0070648193359375, 0.031402587890625, 0.0237579345703125, 0.0189666748046875, 0.052703857421875, 0.07879638671875, 0.006900787353515625, 0.0235137939453125, -0.047821044921875, -0.0016927719116210938, 0.006893157958984375, 0.00519561767578125, -0.0198211669921875, -0.0186767578125, 0.0035228729248046875, 0.01111602783203125, -0.00013458728790283203, -0.00086212158203125, 0.02410888671875, 0.018524169921875, -0.005886077880859375, 0.0154571533203125, -0.016510009765625, 0.05963134765625, -0.01345062255859375, 0.0214996337890625, -0.0129547119140625, 0.01535797119140625, 0.004241943359375, -0.019317626953125, 0.00994873046875, 0.027374267578125, 0.00936126708984375, 0.009246826171875, -0.0233154296875, -0.057037353515625, 0.003887176513671875, -0.0162353515625 ]
9664899319cb8f28454263d8c870a0f081982592
Wordpress Stackexchange Q: WP-CLI - Selecting PHP version On a development server I have a co-install of PHP 5.6 & 7; nginx is configured with PHP 5.6. When I type "wp" it returns several errors and at the end of the error is a message containing the following: Your PHP installation appears to be missing the MySQL extension which is required by WordPress. Typing wp --info returns: PHP binary: /usr/bin/php7.0 PHP version: 7.0.10-2+deb.sury.org~precise+1 php.ini used: /etc/php/7.0/cli/php.ini WP-CLI root dir: phar://wp-cli.phar WP-CLI packages dir: WP-CLI global config: /srv/www/wp-cli.yml WP-CLI project config: WP-CLI version: 0.26.0-alpha-5672b63 WP-CLI seems to be defaulting to PHP 7, I would prefer it to use PHP 5.6. So I was wondering if there was an option I could add to the configuration yml file to select which PHP version to use? If you need any further information, please let me know A: You can set the php binary that WP-CLI uses by setting an environment variable in your linux shell. export WP_CLI_PHP=/path/to/php5.6
Q: WP-CLI - Selecting PHP version On a development server I have a co-install of PHP 5.6 & 7; nginx is configured with PHP 5.6. When I type "wp" it returns several errors and at the end of the error is a message containing the following: Your PHP installation appears to be missing the MySQL extension which is required by WordPress. Typing wp --info returns: PHP binary: /usr/bin/php7.0 PHP version: 7.0.10-2+deb.sury.org~precise+1 php.ini used: /etc/php/7.0/cli/php.ini WP-CLI root dir: phar://wp-cli.phar WP-CLI packages dir: WP-CLI global config: /srv/www/wp-cli.yml WP-CLI project config: WP-CLI version: 0.26.0-alpha-5672b63 WP-CLI seems to be defaulting to PHP 7, I would prefer it to use PHP 5.6. So I was wondering if there was an option I could add to the configuration yml file to select which PHP version to use? If you need any further information, please let me know A: You can set the php binary that WP-CLI uses by setting an environment variable in your linux shell. export WP_CLI_PHP=/path/to/php5.6 A: On a system where * *you can't change the /usr/bin/php symlink *you can't change the PATH to point to a different version (because the php executables don't reside in distinct /lib/ directories) *WP_CLI_PHP has no effect (like my Arch Linux with php(8), php7 installed from extra and wp-cli installed from AUR. I'm using php7 vs php8 here, but this should work for any versions.) …a workaround may be to call the wp phar executable with php7 cli: whereis wp # /usr/bin/wp php7 /usr/bin/wp cli info # PHP binary: /usr/bin/php7 # PHP version: 7.4.25 for convenience you can add a bash alias in your .bashrc: alias wp-php7='php7 /usr/bin/wp' # or override wp altogether alias wp='php7 /usr/bin/wp' A: Got the same problem! Just switch the php version. On my server PHP5.6 was default for apache, while CLI was configured with PHP7.1. After installing WP-CLI, with wp --info I got this result: PHP binary: /usr/bin/php7.1 PHP version: 7.1.5-1+deb.sury.org~xenial+1 php.ini used: /etc/php/7.1/cli/php.ini WP-CLI root dir: phar://wp-cli.phar And when i used the wp core install command i got the error: Your PHP installation appears to be missing the MySQL extension which is required by WordPress. The problem is just the mix between the different versions: we have just to switch completely to 5.6 or 7.1. In my case problem was solved simply by writing on the shell: sudo update-alternatives --set php /usr/bin/php5.6 And then wp --info PHP binary: /usr/bin/php5.6 PHP version: 5.6.30-10+deb.sury.org~xenial+2 php.ini used: /etc/php/5.6/cli/php.ini WP-CLI root dir: phar://wp-cli.phar Problem solved! WP-CLI worked like a charm. A: Sounds like you need to change your default PHP version. I assume php -v returns 7? You'll need to change the PATH. See this: https://stackoverflow.com/questions/31206864/use-different-php-version-cli-executable-for-one-command Or this: https://make.wordpress.org/cli/handbook/installing/#using-a-custom-php-binary
wordpress
{ "language": "en", "length": 443, "provenance": "stackexchange_00019.jsonl.gz:469698", "question_score": "11", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/244164" }
[ 0.010162353515625, -0.001964569091796875, -0.06280517578125, -0.030029296875, 0.007076263427734375, -0.04986572265625, 0.005672454833984375, 0.01468658447265625, 0.045745849609375, -0.02044677734375, -0.033966064453125, -0.02825927734375, -0.052581787109375, -0.039276123046875, -0.018890380859375, -0.042449951171875, 0.02850341796875, -0.0038852691650390625, 0.0165557861328125, 0.0006546974182128906, -0.027587890625, 0.0243377685546875, 0.037841796875, 0.01776123046875, 0.0246124267578125, -0.01265716552734375, 0.046783447265625, -0.01776123046875, -0.00025081634521484375, -0.0254058837890625, 0.01285552978515625, 0.01678466796875, 0.0491943359375, -0.0026073455810546875, -0.016876220703125, 0.031707763671875, 0.015228271484375, -0.0009236335754394531, -0.015655517578125, 0.033538818359375, -0.005096435546875, -0.01111602783203125, 0.046844482421875, -0.016021728515625, 0.01006317138671875, -0.006256103515625, 0.0117340087890625, -0.038665771484375, -0.00984954833984375, -0.051177978515625, -0.0179290771484375, 0.0233001708984375, 0.01448822021484375, -0.043487548828125, -0.0094757080078125, -0.00959014892578125, -0.0017795562744140625, 0.050567626953125, 0.01412200927734375, 0.01186370849609375, -0.028533935546875, 0.035980224609375, -0.014251708984375, -0.0144500732421875, 0.0028438568115234375, -0.0130615234375, 0.046173095703125, 0.0019588470458984375, -0.046875, 0.0110015869140625, 0.054656982421875, -0.006778717041015625, 0.0033168792724609375, -0.054901123046875, 0.0168304443359375, 0.0216522216796875, -0.011871337890625, -0.022308349609375, 0.0025501251220703125, -0.0122833251953125, 0.073486328125, 0.005207061767578125, -0.004505157470703125, -0.006481170654296875, 0.042633056640625, 0.0455322265625, 0.01062774658203125, -0.048492431640625, -0.0020084381103515625, -0.0237579345703125, -0.01959228515625, 0.01358795166015625, -0.046173095703125, -0.02642822265625, -0.004291534423828125, -0.04376220703125, -0.045257568359375, -0.0657958984375, 0.0157470703125, 0.043914794921875, 0.049468994140625, -0.043975830078125, 0.07110595703125, -0.015838623046875, 0.00588226318359375, 0.07073974609375, -0.005954742431640625, 0.036102294921875, 0.0299224853515625, 0.0138702392578125, 0.025970458984375, -0.033355712890625, -0.0043182373046875, -0.0028133392333984375, -0.01198577880859375, 0.0012111663818359375, -0.033843994140625, 0.01528167724609375, -0.00865936279296875, 0.007343292236328125, 0.01070404052734375, 0.03515625, -0.01305389404296875, -0.0247650146484375, -0.02874755859375, -0.029815673828125, 0.00461578369140625, -0.03369140625, -0.05535888671875, 0.025665283203125, 0.0012493133544921875, 0.0151214599609375, 0.0150146484375, 0.021575927734375, -0.00923919677734375, -0.01361846923828125, 0.02178955078125, -0.0128173828125, 0.01511383056640625, 0.043182373046875, -0.0352783203125, -0.04443359375, 0.020660400390625, -0.0035152435302734375, 0.016265869140625, 0.01580810546875, 0.023406982421875, 0.0094451904296875, -0.0146636962890625, 0.00567626953125, 0.0014829635620117188, -0.004352569580078125, 0.0103607177734375, 0.0390625, 0.0243072509765625, 0.0308380126953125, 0.04949951171875, -0.0184783935546875, -0.031524658203125, -0.01953125, -0.019073486328125, -0.014556884765625, 0.03485107421875, -0.0233917236328125, -0.033050537109375, 0.031158447265625, -0.033111572265625, -0.0135040283203125, 0.00537872314453125, -0.03546142578125, 0.006378173828125, -0.012542724609375, 0.00417327880859375, -0.00830078125, -0.004238128662109375, 0.0028820037841796875, 0.007488250732421875, 0.0011949539184570312, 0.026214599609375, 0.0219573974609375, -0.01422119140625, -0.02996826171875, 0.0408935546875, -0.00699615478515625, -0.048431396484375, -0.0063018798828125, 0.006923675537109375, 0.01354217529296875, 0.060455322265625, 0.0013866424560546875, 0.0290069580078125, -0.0254364013671875, -0.0172119140625, 0.05078125, -0.0246124267578125, -0.0198822021484375, -0.034759521484375, 0.0303497314453125, -0.034454345703125, -0.03515625, 0.04718017578125, -0.01113128662109375, 0.01451873779296875, -0.020294189453125, -0.10552978515625, 0.01470184326171875, -0.035858154296875, 0.0244598388671875, -0.00467681884765625, -0.019134521484375, 0.007293701171875, -0.0236053466796875, 0.0171966552734375, -0.040252685546875, -0.04998779296875, 0.007511138916015625, -0.023529052734375, 0.0322265625, -0.00354766845703125, 0.038543701171875, 0.00966644287109375, -0.01320648193359375, 0.00787353515625, -0.0178375244140625, 0.01438140869140625, 0.031402587890625, -0.005992889404296875, 0.0233917236328125, 0.06524658203125, 0.03790283203125, 0.05816650390625, -0.0472412109375, -0.044891357421875, -0.019744873046875, -0.044708251953125, -0.030303955078125, -0.01302337646484375, -0.06158447265625, 0.05145263671875, 0.0419921875, 0.049468994140625, 0.00769805908203125, 0.0139007568359375, 0.0037174224853515625, 0.058441162109375, -0.01085662841796875, 0.0276031494140625, -0.037506103515625, -0.0164337158203125, 0.01934814453125, -0.01045989990234375, 0.014862060546875, 0.0167083740234375, -0.00916290283203125, -0.0298004150390625, 0.057464599609375, -0.015899658203125, -0.0491943359375, 0.023651123046875, -0.0279998779296875, 0.033050537109375, -0.0281524658203125, -0.06610107421875, 0.030303955078125, -0.0100250244140625, -0.005825042724609375, 0.0189666748046875, 0.033721923828125, 0.01371002197265625, -0.045654296875, 0.0152587890625, 0.0005984306335449219, 0.00897216796875, -0.00925445556640625, -0.055938720703125, 0.051361083984375, -0.0275726318359375, 0.01763916015625, 0.012237548828125, 0.0010156631469726562, -0.0152130126953125, 0.019561767578125, 0.008697509765625, -0.00725555419921875, -0.0291290283203125, -0.0093231201171875, 0.046295166015625, 0.0301666259765625, -0.017822265625, -0.035064697265625, 0.01055908203125, 0.012298583984375, -0.039642333984375, 0.038726806640625, -0.0003306865692138672, -0.0287322998046875, 0.0601806640625, -0.030120849609375, 0.028411865234375, -0.008758544921875, 0.032806396484375, 0.039093017578125, -0.004772186279296875, 0.00952911376953125, -0.025604248046875, 0.0175933837890625, -0.0036983489990234375, -0.0200653076171875, -0.043182373046875, -0.0272979736328125, -0.07403564453125, -0.044281005859375, 0.0287628173828125, -0.01551055908203125, 0.0236053466796875, -0.022064208984375, -0.00830841064453125, 0.000751495361328125, -0.061798095703125, -0.050628662109375, -0.01000213623046875, -0.03155517578125, 0.022125244140625, -0.0020618438720703125, -0.00994873046875, -0.0177459716796875, 0.0290985107421875, 0.017333984375, 0.05145263671875, -0.028228759765625, -0.0582275390625, -0.049346923828125, -0.08660888671875, -0.051605224609375, -0.00016808509826660156, 0.00959014892578125, 0.002292633056640625, 0.041778564453125, -0.00914764404296875, -0.08758544921875, -0.0262451171875, 0.01488494873046875, -0.017181396484375, 0.003570556640625, -0.0176849365234375, -0.02520751953125, 0.01236724853515625, -0.00750732421875, 0.045654296875, 0.00365447998046875, 0.012176513671875, -0.018463134765625, -0.0187530517578125, -0.059356689453125, 0.0025920867919921875, 0.00502777099609375, -0.00937652587890625, -0.056304931640625, 0.00223541259765625, -0.076416015625, 0.02935791015625, -0.01300048828125, -0.0014524459838867188, 0.0183258056640625, -0.007080078125, -0.02178955078125, 0.004344940185546875, -0.007251739501953125, -0.023223876953125, -0.017791748046875, -0.01032257080078125, -0.0435791015625, 0.0684814453125, 0.00868988037109375, -0.0025806427001953125, 0.005672454833984375, 0.05029296875, -0.0270233154296875, 0.004486083984375, 0.0204925537109375, -0.036285400390625, -0.0162200927734375, -0.0440673828125, -0.03265380859375, -0.04193115234375, 0.0328369140625, -0.039581298828125, -0.0008993148803710938, -0.0187835693359375, -0.0106658935546875, 0.01486968994140625, 0.0667724609375, -0.04388427734375, -0.04864501953125, 0.0335693359375, 0.035125732421875, -0.00653076171875, -0.01456451416015625, -0.0016689300537109375, -0.0499267578125, -0.032012939453125, -0.0128631591796875, 0.013916015625, -0.0215606689453125, 0.0157012939453125, 0.0125885009765625, 0.0034923553466796875, -0.0299072265625, 0.03717041015625, -0.025238037109375, 0.0158538818359375, 0.039825439453125, -0.0142974853515625, 0.0236968994140625, -0.0347900390625, -0.0174713134765625, -0.0875244140625, -0.022918701171875, -0.01471710205078125, 0.0484619140625, -0.004055023193359375, -0.01251220703125, 0.003143310546875, 0.07464599609375, 0.0166473388671875, -0.00902557373046875, 0.031768798828125, -0.00429534912109375, 0.0099029541015625, 0.0074005126953125, 0.0231475830078125, -0.02130126953125, -0.009490966796875, -0.0299530029296875, -0.032440185546875, -0.0022754669189453125, -0.0110321044921875, 0.0011234283447265625, 0.01178741455078125, -0.01546478271484375, -0.016265869140625, -0.0452880859375, -0.037811279296875, -0.002307891845703125, -0.02569580078125, -0.0017576217651367188, -0.046661376953125, -0.0226287841796875, 0.09674072265625, -0.0008153915405273438, 0.03564453125, -0.038604736328125, 0.099365234375, -0.00875091552734375, -0.045806884765625, 0.0197601318359375, -0.0232696533203125, 0.00506591796875, 0.0026874542236328125, 0.07965087890625, 0.0193939208984375, 0.01300811767578125, 0.0134735107421875, -0.01169586181640625, 0.00537872314453125, 0.0081024169921875, -0.033599853515625, 0.0228271484375, -0.03594970703125, 0.0136566162109375, 0.03387451171875, -0.003917694091796875, -0.017730712890625, 0.0062255859375, -0.0021915435791015625, 0.03948974609375, -0.00896453857421875, 0.006679534912109375, -0.01241302490234375, -0.0072021484375, -0.044281005859375, 0.0165252685546875, -0.09991455078125, 0.01812744140625, 0.02874755859375, -0.0223236083984375, 0.053466796875, 0.0004963874816894531, 0.00269317626953125, 0.01427459716796875, 0.064453125, -0.001117706298828125, 0.04150390625, 0.01064300537109375, -0.01206207275390625, -0.019317626953125, -0.01514434814453125, 0.046783447265625, 0.01348114013671875, -0.023773193359375, -0.0010633468627929688, 0.00024247169494628906, -0.01043701171875, -0.005847930908203125, 0.021575927734375, 0.06500244140625, -0.0023784637451171875, -0.0601806640625, -0.04827880859375, -0.040771484375, -0.05218505859375, -0.0780029296875, -0.0110321044921875, -0.00994110107421875, 0.006195068359375, 0.033477783203125, 0.032012939453125, 0.005977630615234375, 0.0279998779296875, -0.020660400390625, 0.042510986328125, 0.038055419921875, 0.00797271728515625, 0.00426483154296875, 0.0020656585693359375, 0.03399658203125, -0.041015625, 0.0191497802734375, -0.0261383056640625, -0.017486572265625, 0.01161956787109375, 0.031219482421875, 0.033477783203125, 0.01451873779296875, -0.01204681396484375, 0.0006508827209472656, -0.00910186767578125, 0.01325225830078125, 0.0203399658203125, -0.0038700103759765625, -0.026275634765625, 0.0181427001953125, 0.046173095703125, 0.018829345703125, -0.01361846923828125, 0.019287109375, 0.0025310516357421875, -0.01898193359375, 0.09259033203125, -0.0784912109375, -0.007579803466796875, 0.01837158203125, 0.0280303955078125, -0.00772857666015625, -0.019866943359375, -0.007518768310546875, -0.007183074951171875, -0.0328369140625, -0.0201416015625, 0.0572509765625, -0.0108795166015625, 0.013458251953125, -0.019622802734375, -0.0161895751953125, -0.006473541259765625, -0.007434844970703125, 0.039581298828125, 0.03546142578125, -0.007579803466796875, 0.0128173828125, -0.03936767578125, -0.01311492919921875, 0.03155517578125, -0.018707275390625, -0.0482177734375, -0.045013427734375, -0.023956298828125, 0.0194091796875, -0.039886474609375, -0.032623291015625, -0.049591064453125, 0.022003173828125, 0.036529541015625, 0.019805908203125, -0.01242828369140625, 0.0465087890625, -0.0188446044921875, -0.0032138824462890625, -0.01300048828125, 0.021942138671875, 0.0175018310546875, -0.0012197494506835938, 0.0010786056518554688, -0.0218505859375, 0.0030364990234375, -0.01036834716796875, 0.049346923828125, -0.0012960433959960938, 0.0180511474609375, -0.0059661865234375, 0.0207366943359375, 0.0028629302978515625, 0.007049560546875, -0.0139923095703125, -0.020599365234375, -0.004535675048828125, 0.0237884521484375, 0.01043701171875, -0.0188140869140625, 0.0265350341796875, 0.0019216537475585938, 0.02081298828125, 0.01409912109375, -0.030059814453125, -0.003238677978515625, 0.034332275390625, -0.05810546875, 0.07684326171875, 0.119384765625, 0.00555419921875, 0.0714111328125, 0.0225372314453125, 0.003063201904296875, 0.03656005859375, 0.031341552734375, -0.045135498046875, -0.0498046875, 0.0109100341796875, -0.0033130645751953125, -0.00002378225326538086, 0.0008373260498046875, -0.0056610107421875, 0.00859832763671875, 0.02520751953125, 0.050506591796875, -0.0259246826171875, 0.00601959228515625, 0.0159759521484375, -0.03436279296875, 0.0094757080078125, -0.0198974609375, -0.033935546875, -0.0478515625, 0.03338623046875, -0.007183074951171875, -0.04302978515625, -0.00004482269287109375, 0.0190277099609375, -0.032684326171875, -0.02435302734375, 0.00046372413635253906, 0.0283203125, 0.0021076202392578125, 0.0589599609375, -0.01111602783203125, 0.046142578125, 0.039306640625, 0.00881195068359375, -0.04620361328125, -0.038482666015625, -0.046722412109375, -0.08251953125, -0.046844482421875, -0.057952880859375, 0.0118560791015625, -0.0010356903076171875, 0.0267486572265625, 0.0413818359375, 0.01004791259765625, -0.006244659423828125, 0.0245361328125, -0.03106689453125, -0.01490020751953125, -0.00984954833984375, 0.004058837890625, 0.0303192138671875, -0.06011962890625, 0.005908966064453125, -0.0458984375, 0.01041412353515625, -0.006443023681640625, 0.0333251953125, 0.07879638671875, -0.061279296875, -0.00531005859375, 0.047149658203125, 0.0285491943359375, -0.0257415771484375, 0.01020050048828125, 0.049072265625, -0.06915283203125, -0.05780029296875, 0.04150390625, -0.03643798828125, -0.05303955078125, 0.02557373046875, -0.01031494140625, 0.06103515625, -0.00812530517578125, -0.0166473388671875, 0.031402587890625, 0.024627685546875, -0.03643798828125, 0.0192413330078125, -0.026824951171875, 0.029510498046875, 0.0380859375, 0.029541015625, -0.0182037353515625, -0.01220703125, 0.01568603515625, 0.038543701171875, 0.031463623046875, -0.0012178421020507812, -0.00630950927734375, -0.0030918121337890625, 0.0556640625, 0.040618896484375, 0.017578125, 0.0252685546875, 0.0167999267578125, 0.01491546630859375, 0.039093017578125, -0.00206756591796875, 0.030059814453125, -0.006855010986328125, 0.005550384521484375, 0.034454345703125, 0.01361083984375, 0.00925445556640625, -0.007080078125, 0.04815673828125, -0.032318115234375, -0.004573822021484375, 0.0242919921875, -0.0128021240234375, -0.0030002593994140625, -0.01739501953125, -0.039459228515625, 0.01459503173828125, -0.0149688720703125, -0.0044403076171875, 0.01119232177734375, 0.004566192626953125, -0.04559326171875, -0.0011167526245117188, -0.0097808837890625, -0.007633209228515625, -0.00958251953125, -0.047576904296875, 0.007366180419921875, 0.0294036865234375, 0.0235748291015625, 0.00885772705078125, 0.029052734375, 0.01020050048828125, 0.056060791015625, 0.0131988525390625, 0.00030541419982910156, -0.039093017578125, -0.08184814453125, 0.01384735107421875, 0.0150146484375, 0.001415252685546875, 0.02069091796875, -0.01232147216796875, -0.0181732177734375, 0.05767822265625, -0.0316162109375, 0.0160369873046875, 0.041290283203125, -0.00811767578125, 0.00661468505859375, 0.038116455078125, -0.0210723876953125, 0.00955963134765625, -0.01409912109375, 0.01055145263671875, 0.0221405029296875, 0.017791748046875, -0.0282135009765625, 0.041351318359375, -0.00429534912109375, 0.0018262863159179688, 0.00653076171875, 0.0249786376953125, 0.0010585784912109375, -0.023040771484375, -0.0086669921875, -0.039459228515625, -0.01192474365234375, 0.039215087890625, -0.00152587890625, 0.038360595703125, 0.058502197265625, 0.05194091796875, -0.030517578125, -0.0101776123046875, 0.07470703125, -0.01186370849609375, -0.031951904296875, 0.028411865234375, -0.00821685791015625, 0.051361083984375, -0.011993408203125, -0.00878143310546875, 0.051025390625, 0.031219482421875, -0.0323486328125, 0.05126953125, -0.016082763671875, 0.0007357597351074219, 0.0141448974609375, 0.0181732177734375, 0.0303497314453125, 0.010955810546875, 0.0278167724609375, 0.0147857666015625, 0.0020732879638671875, 0.0227203369140625, -0.050384521484375, -0.0168609619140625, 0.00982666015625, 0.04522705078125, 0.01291656494140625, -0.006259918212890625, 0.007144927978515625, 0.0085601806640625, -0.01171112060546875, -0.03179931640625, 0.036773681640625, -0.01702880859375, -0.03436279296875, -0.040618896484375, -0.04925537109375, 0.0802001953125, 0.057861328125, 0.049163818359375, -0.02325439453125, 0.04998779296875, -0.03350830078125, 0.014617919921875, -0.0301666259765625, -0.03173828125, 0.017822265625, 0.0279998779296875, 0.0091094970703125, -0.01302337646484375, -0.048004150390625, 0.020111083984375, 0.021392822265625, -0.0218658447265625, 0.0217437744140625, -0.022674560546875, 0.023529052734375, -0.0057525634765625, -0.00492095947265625, -0.028228759765625, -0.0164642333984375, -0.03228759765625, -0.00994873046875, 0.035491943359375, 0.016448974609375, -0.0238189697265625, -0.04547119140625, 0.0036945343017578125, -0.049530029296875, 0.029876708984375, 0.013458251953125, 0.0189361572265625, 0.0212249755859375, -0.0176239013671875, 0.0017862319946289062, -0.0231475830078125, -0.0231170654296875, -0.003688812255859375, 0.01110076904296875, -0.01202392578125, -0.0173492431640625, 0.01436614990234375, 0.01457977294921875, 0.0179595947265625, 0.042816162109375, -0.007366180419921875, 0.0101165771484375, 0.00890350341796875, -0.004199981689453125, 0.018463134765625, -0.046844482421875, -0.005878448486328125, -0.03424072265625, -0.018157958984375, 0.0178985595703125, -0.0156097412109375, -0.016937255859375, -0.005825042724609375, 0.01641845703125, 0.028900146484375, -0.0025157928466796875, -0.00037860870361328125, 0.026458740234375, -0.046478271484375, -0.0287933349609375, 0.0156402587890625, -0.0226287841796875, -0.0186004638671875, -0.03228759765625, -0.0036525726318359375, -0.030548095703125, -0.05413818359375, 0.044586181640625, -0.015960693359375, 0.0026569366455078125, 0.0202484130859375, -0.007350921630859375, -0.04180908203125, 0.015625, -0.009552001953125, 0.06927490234375, -0.0050506591796875, -0.005970001220703125, 0.027191162109375, -0.0196533203125, -0.07147216796875, -0.09033203125, 0.046783447265625, -0.131591796875, -0.0382080078125, -0.019317626953125, -0.0037784576416015625, 0.0006647109985351562, -0.054962158203125, -0.1231689453125, 0.06451416015625, -0.04364013671875, -0.031005859375, -0.020294189453125, -0.0018749237060546875, 0.005191802978515625, 0.03253173828125, -0.0010652542114257812, -0.028839111328125, -0.0330810546875, 0.01021575927734375, -0.0181427001953125, 0.0341796875, -0.00838470458984375, -0.03887939453125, 0.00897979736328125, 0.0248870849609375, 0.039031982421875, 0.01261138916015625, -0.0091094970703125, 0.01213836669921875, 0.0010442733764648438, 0.04345703125, -0.0209503173828125, 0.0126953125, -0.0105133056640625, -0.0215911865234375, -0.005931854248046875, -0.00583648681640625, -0.01268768310546875, -0.01526641845703125, 0.055816650390625, 0.060211181640625, 0.008209228515625, -0.0228118896484375, -0.0506591796875, -0.046417236328125, 0.0085296630859375, -0.0204010009765625, 0.00848388671875, -0.054229736328125, 0.0097808837890625, 0.003803253173828125, 0.027587890625, 0.06488037109375, 0.019287109375, 0.0307464599609375, -0.01715087890625, 0.023590087890625, -0.049530029296875, -0.056610107421875, -0.0386962890625, 0.061309814453125, -0.039337158203125, 0.0238800048828125, -0.006938934326171875, 0.0306549072265625, 0.041412353515625, 0.0196533203125, 0.0151519775390625, 0.01152801513671875, -0.022796630859375, 0.039459228515625, 0.004718780517578125, -0.00830841064453125, -0.0303192138671875, -0.0023250579833984375, 0.0188140869140625, 0.010650634765625, -0.0024166107177734375, 0.033447265625, 0.01097869873046875, -0.004787445068359375, -0.025543212890625, -0.0010013580322265625, 0.0034503936767578125, -0.031524658203125, -0.041656494140625, 0.0634765625, -0.0185394287109375, -0.0260009765625, -0.01751708984375, 0.026947021484375, 0.0178070068359375, -0.0006070137023925781, 0.01453399658203125, -0.027587890625, 0.013153076171875, 0.047576904296875, 0.004673004150390625, 0.00852203369140625 ]
15e125ee92309493b8b1387a03d4f815fc094294
Wordpress Stackexchange Q: Capturing arbitrary semantic URL arguments So, My articles have this URL structure : mydomain.com/category/article-name I'm using ACF to add additional information to my post types. For example, another text field with some related information to my article. Let's call that field tab-1. I don't wan't to show all this extra data immediately on the article page, but I want to have some sort of subpage on my article for that kind of extra data. For example, this would be url of my sub page that will show only content from my article tab-1 field: mydomain.com/category/article-name/tab-1 Is something like this achievable in wordpress? Essentially, I'd just like to capture that extra URL part /tab-1 in my template file and than base on it's actual value, show appropriate field on the article. And all that without getting 404 error :D A: The thing in WP that hits a passable balance of such functionality to not so painful implementation is rewrite endpoint. They are structured a little differently from your example (i.e. /tab/2) but they are easy to implement and order of magnitude less painful than dealing with Rewrite API usually is.
Q: Capturing arbitrary semantic URL arguments So, My articles have this URL structure : mydomain.com/category/article-name I'm using ACF to add additional information to my post types. For example, another text field with some related information to my article. Let's call that field tab-1. I don't wan't to show all this extra data immediately on the article page, but I want to have some sort of subpage on my article for that kind of extra data. For example, this would be url of my sub page that will show only content from my article tab-1 field: mydomain.com/category/article-name/tab-1 Is something like this achievable in wordpress? Essentially, I'd just like to capture that extra URL part /tab-1 in my template file and than base on it's actual value, show appropriate field on the article. And all that without getting 404 error :D A: The thing in WP that hits a passable balance of such functionality to not so painful implementation is rewrite endpoint. They are structured a little differently from your example (i.e. /tab/2) but they are easy to implement and order of magnitude less painful than dealing with Rewrite API usually is.
wordpress
{ "language": "en", "length": 190, "provenance": "stackexchange_00019.jsonl.gz:469784", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/244446" }
[ 0.055908203125, 0.0002543926239013672, 0.003643035888671875, -0.0367431640625, -0.00823211669921875, -0.0020961761474609375, -0.0040130615234375, -0.0188446044921875, -0.031768798828125, 0.005214691162109375, 0.023223876953125, 0.03326416015625, -0.0239410400390625, -0.05023193359375, 0.04290771484375, 0.0018157958984375, 0.012908935546875, -0.012664794921875, -0.0228729248046875, -0.028167724609375, 0.01045989990234375, -0.0159912109375, 0.02166748046875, 0.020294189453125, 0.030242919921875, -0.0406494140625, 0.0367431640625, 0.0113067626953125, 0.01233673095703125, -0.0016689300537109375, 0.03656005859375, -0.041412353515625, 0.0297393798828125, 0.0335693359375, -0.049407958984375, -0.022918701171875, 0.01226806640625, 0.004497528076171875, -0.0184478759765625, 0.027313232421875, 0.035858154296875, -0.0154876708984375, 0.00794219970703125, 0.00348663330078125, 0.0171661376953125, -0.042572021484375, 0.032623291015625, -0.05621337890625, 0.0218353271484375, -0.005176544189453125, -0.007480621337890625, 0.014984130859375, -0.01157379150390625, 0.0149078369140625, -0.007068634033203125, 0.008697509765625, 0.0303497314453125, -0.0252532958984375, 0.019927978515625, -0.01373291015625, -0.032196044921875, -0.001026153564453125, 0.021728515625, -0.010406494140625, -0.01093292236328125, -0.0004417896270751953, 0.04058837890625, 0.0203857421875, -0.039276123046875, -0.0227813720703125, 0.03411865234375, -0.02227783203125, -0.01226043701171875, -0.01108551025390625, -0.00940704345703125, -0.0245513916015625, 0.056396484375, -0.024200439453125, -0.03240966796875, 0.04315185546875, -0.017059326171875, -0.01309967041015625, -0.033782958984375, -0.00008147954940795898, 0.01371002197265625, 0.00798797607421875, -0.0208282470703125, -0.0117034912109375, -0.060272216796875, -0.01155853271484375, -0.03778076171875, 0.004634857177734375, -0.0316162109375, -0.0005645751953125, -0.0265960693359375, 0.0109100341796875, 0.01171875, -0.01605224609375, 0.0027523040771484375, 0.0002770423889160156, 0.039398193359375, -0.05963134765625, 0.044921875, -0.0256500244140625, 0.034698486328125, 0.0830078125, 0.0207977294921875, 0.0282440185546875, 0.0645751953125, -0.0447998046875, 0.013702392578125, 0.059906005859375, -0.01180267333984375, 0.005336761474609375, -0.021087646484375, 0.032318115234375, -0.027313232421875, -0.0247039794921875, -0.024078369140625, 0.0031223297119140625, -0.036376953125, 0.02587890625, -0.00279998779296875, -0.01140594482421875, -0.0148468017578125, -0.0152435302734375, 0.031494140625, -0.026885986328125, -0.0033550262451171875, 0.01445770263671875, 0.0177001953125, 0.00988006591796875, -0.026092529296875, 0.0269012451171875, -0.00774383544921875, -0.004985809326171875, 0.020233154296875, 0.01213836669921875, 0.0044708251953125, -0.018829345703125, 0.01922607421875, -0.01206207275390625, -0.01004791259765625, 0.01557159423828125, -0.00533294677734375, 0.00017642974853515625, 0.01146697998046875, 0.0247039794921875, -0.0175628662109375, -0.00949859619140625, -0.01470184326171875, -0.0229339599609375, 0.0673828125, -0.012420654296875, -0.04180908203125, -0.059417724609375, 0.0190582275390625, -0.043304443359375, -0.0215606689453125, -0.05816650390625, 0.0143585205078125, -0.016937255859375, -0.004444122314453125, -0.04461669921875, -0.036895751953125, -0.00022137165069580078, -0.07470703125, -0.0089263916015625, 0.0242462158203125, 0.0360107421875, 0.02294921875, -0.0034236907958984375, 0.0008459091186523438, 0.04168701171875, 0.0201416015625, 0.0035686492919921875, -0.0230712890625, 0.0380859375, -0.004486083984375, 0.06951904296875, 0.049072265625, -0.0265655517578125, 0.0321044921875, 0.0110931396484375, -0.055511474609375, 0.07513427734375, -0.00019168853759765625, 0.10626220703125, 0.0103912353515625, 0.021697998046875, 0.00293731689453125, -0.01061248779296875, -0.040863037109375, -0.006381988525390625, -0.0211944580078125, 0.0080718994140625, 0.053558349609375, 0.036956787109375, -0.01532745361328125, -0.03070068359375, -0.00885009765625, 0.01491546630859375, -0.00788116455078125, 0.01287841796875, 0.00954437255859375, -0.0148773193359375, 0.00576019287109375, 0.03277587890625, -0.018035888671875, 0.04071044921875, 0.033294677734375, 0.03363037109375, -0.03936767578125, -0.030975341796875, -0.002899169921875, 0.0042877197265625, 0.01251983642578125, 0.01078033447265625, -0.01554107666015625, 0.0192108154296875, -0.0088958740234375, 0.000030040740966796875, -0.0263214111328125, 0.005702972412109375, 0.048004150390625, -0.005214691162109375, -0.00724029541015625, -0.015655517578125, 0.0306854248046875, 0.017547607421875, -0.040283203125, 0.0234832763671875, 0.00530242919921875, 0.018829345703125, -0.028778076171875, 0.0025844573974609375, -0.050018310546875, -0.040435791015625, 0.0007548332214355469, 0.053955078125, 0.03594970703125, 0.007228851318359375, -0.0260162353515625, -0.0287322998046875, 0.0197906494140625, -0.01995849609375, 0.02032470703125, -0.0155181884765625, -0.0179290771484375, 0.0572509765625, 0.026702880859375, -0.006622314453125, -0.0003819465637207031, -0.046844482421875, -0.03192138671875, 0.0308837890625, -0.0205841064453125, -0.0240936279296875, -0.03662109375, 0.0379638671875, -0.006847381591796875, 0.02862548828125, 0.0155487060546875, -0.00923919677734375, 0.0689697265625, 0.00023829936981201172, 0.058380126953125, 0.040435791015625, -0.0157012939453125, -0.0037841796875, -0.0016183853149414062, 0.022918701171875, 0.0021877288818359375, 0.03570556640625, 0.0288238525390625, -0.055419921875, 0.00409698486328125, 0.00817108154296875, -0.0288543701171875, -0.01052093505859375, -0.0088043212890625, 0.04998779296875, -0.020904541015625, -0.0118865966796875, -0.0428466796875, -0.061614990234375, 0.0025501251220703125, 0.01326751708984375, 0.0011396408081054688, 0.028564453125, 0.042999267578125, 0.03411865234375, -0.01078033447265625, 0.032928466796875, 0.0212249755859375, -0.00270843505859375, -0.0125885009765625, -0.07586669921875, 0.045867919921875, -0.053741455078125, 0.039459228515625, 0.06475830078125, 0.0009007453918457031, -0.0162353515625, 0.0005888938903808594, -0.01215362548828125, -0.024078369140625, 0.0193634033203125, 0.0029659271240234375, -0.004741668701171875, -0.05718994140625, 0.02899169921875, 0.00951385498046875, 0.045074462890625, -0.005901336669921875, -0.03192138671875, 0.0115509033203125, 0.011199951171875, -0.070556640625, -0.081298828125, 0.0543212890625, -0.028778076171875, -0.006954193115234375, 0.03948974609375, -0.0286102294921875, -0.0272064208984375, 0.07928466796875, -0.0185394287109375, -0.0303192138671875, -0.023529052734375, -0.04998779296875, -0.08331298828125, -0.095947265625, -0.02264404296875, 0.0058135986328125, 0.0290069580078125, 0.016448974609375, -0.0203399658203125, 0.0010662078857421875, -0.028228759765625, 0.0350341796875, -0.026153564453125, 0.016845703125, 0.0187530517578125, -0.00507354736328125, -0.05810546875, 0.02386474609375, -0.035003662109375, 0.048095703125, 0.042236328125, -0.0037631988525390625, 0.043365478515625, -0.0258941650390625, 0.0158538818359375, -0.004734039306640625, -0.0169525146484375, 0.0435791015625, 0.037994384765625, -0.0013523101806640625, -0.024627685546875, -0.01439666748046875, 0.016845703125, -0.00717926025390625, -0.011260986328125, -0.0016994476318359375, -0.01317596435546875, -0.02392578125, 0.0218353271484375, -0.017822265625, 0.0146942138671875, 0.033966064453125, -0.031280517578125, 0.0115814208984375, -0.0159759521484375, -0.036346435546875, -0.01482391357421875, 0.03375244140625, -0.015716552734375, 0.0137481689453125, 0.02227783203125, -0.00174713134765625, 0.0236968994140625, -0.01995849609375, 0.015472412109375, -0.018096923828125, 0.038604736328125, -0.03509521484375, 0.00917816162109375, -0.04693603515625, -0.023406982421875, -0.04742431640625, 0.039276123046875, -0.004863739013671875, -0.03277587890625, -0.0292816162109375, 0.01502227783203125, -0.0022792816162109375, -0.057281494140625, 0.0328369140625, -0.0288238525390625, -0.05487060546875, -0.003971099853515625, -0.03350830078125, -0.0007066726684570312, -0.022918701171875, 0.0173187255859375, -0.00936126708984375, -0.02923583984375, 0.0390625, -0.045013427734375, 0.026123046875, 0.0162811279296875, 0.0257720947265625, -0.0208892822265625, -0.047943115234375, 0.001850128173828125, -0.028106689453125, -0.028411865234375, 0.0222625732421875, 0.04266357421875, -0.01262664794921875, -0.0147247314453125, 0.003307342529296875, 0.047027587890625, -0.0103302001953125, -0.0017452239990234375, 0.039886474609375, 0.00616455078125, 0.0384521484375, 0.0298309326171875, 0.038299560546875, -0.025054931640625, 0.0244598388671875, -0.02008056640625, -0.07122802734375, -0.01264190673828125, -0.028411865234375, 0.03778076171875, 0.01372528076171875, -0.0219573974609375, -0.042694091796875, -0.040496826171875, -0.00986480712890625, 0.0072021484375, 0.0163726806640625, -0.039276123046875, -0.031463623046875, -0.02288818359375, 0.038177490234375, 0.0138397216796875, -0.0087127685546875, -0.00035953521728515625, 0.035797119140625, 0.0052337646484375, -0.020782470703125, -0.0118255615234375, 0.0080718994140625, 0.0288848876953125, 0.002704620361328125, 0.038665771484375, -0.000980377197265625, -0.0023670196533203125, 0.041473388671875, -0.017669677734375, 0.0460205078125, -0.0132904052734375, -0.025970458984375, 0.019989013671875, -0.032440185546875, 0.02618408203125, 0.04266357421875, -0.039306640625, 0.038055419921875, -0.0335693359375, -0.00621795654296875, -0.021209716796875, 0.01451873779296875, -0.06695556640625, 0.084716796875, -0.01007080078125, -0.036895751953125, 0.007137298583984375, 0.058380126953125, 0.0121002197265625, 0.053741455078125, -0.029144287109375, 0.0548095703125, 0.0201873779296875, -0.0241851806640625, -0.013824462890625, 0.01015472412109375, -0.01291656494140625, 0.0034885406494140625, -0.0004055500030517578, -0.04241943359375, -0.03143310546875, 0.011871337890625, 0.01216888427734375, -0.0234832763671875, -0.054443359375, -0.033935546875, -0.00439453125, -0.004241943359375, 0.016387939453125, -0.021453857421875, 0.021514892578125, 0.03778076171875, -0.00679779052734375, 0.0249786376953125, 0.0225372314453125, -0.034637451171875, -0.01375579833984375, 0.0173187255859375, 0.018707275390625, -0.0139923095703125, -0.006866455078125, 0.06634521484375, -0.022216796875, 0.019927978515625, -0.010009765625, 0.00396728515625, 0.0380859375, 0.00977325439453125, 0.034210205078125, -0.010772705078125, 0.007640838623046875, -0.036346435546875, 0.025146484375, -0.05218505859375, 0.01352691650390625, 0.0229339599609375, 0.053924560546875, -0.0009493827819824219, -0.038421630859375, 0.0054931640625, -0.030426025390625, -0.024505615234375, -0.01470184326171875, -0.040985107421875, -0.0093994140625, -0.018585205078125, -0.034210205078125, 0.0019197463989257812, 0.005283355712890625, -0.00312042236328125, 0.0186920166015625, 0.0134735107421875, 0.0518798828125, 0.024261474609375, 0.01392364501953125, 0.03033447265625, -0.0015354156494140625, -0.00800323486328125, 0.007602691650390625, 0.0126953125, -0.011962890625, -0.025848388671875, 0.00007390975952148438, -0.02325439453125, 0.046905517578125, -0.01617431640625, 0.0501708984375, -0.03338623046875, -0.024871826171875, 0.001323699951171875, 0.00901031494140625, 0.046173095703125, 0.022064208984375, -0.03955078125, 0.0140228271484375, -0.0299072265625, 0.00647735595703125, -0.00258636474609375, -0.0279083251953125, -0.0017194747924804688, -0.027923583984375, 0.0036983489990234375, 0.036163330078125, -0.00690460205078125, 0.019561767578125, -0.00850677490234375, 0.02294921875, -0.00556182861328125, 0.04461669921875, -0.00072479248046875, 0.056060791015625, -0.027923583984375, 0.0443115234375, -0.0069732666015625, 0.01029205322265625, -0.038848876953125, 0.004974365234375, -0.0179595947265625, -0.08258056640625, -0.01412200927734375, 0.01390838623046875, -0.0290985107421875, 0.059783935546875, 0.0269927978515625, 0.01343536376953125, -0.010162353515625, -0.00998687744140625, 0.01099395751953125, -0.037353515625, 0.04119873046875, -0.016510009765625, 0.0094146728515625, -0.0297393798828125, 0.01285552978515625, 0.07794189453125, -0.04302978515625, -0.018035888671875, 0.00019276142120361328, -0.0201263427734375, 0.029083251953125, 0.038665771484375, -0.03216552734375, 0.0113372802734375, 0.08917236328125, 0.01250457763671875, 0.0606689453125, 0.041534423828125, 0.017303466796875, 0.036102294921875, 0.01385498046875, 0.00925445556640625, -0.0108795166015625, 0.01067352294921875, -0.002216339111328125, 0.0044097900390625, 0.01357269287109375, -0.006359100341796875, 0.007480621337890625, 0.052032470703125, 0.0299530029296875, -0.076904296875, 0.00812530517578125, -0.007404327392578125, -0.01253509521484375, 0.0284423828125, 0.01174163818359375, -0.01070404052734375, 0.0022487640380859375, -0.04266357421875, 0.05712890625, -0.03314208984375, -0.007244110107421875, 0.05267333984375, 0.00585174560546875, -0.0172576904296875, 0.045867919921875, 0.006404876708984375, -0.005451202392578125, -0.0136871337890625, -0.014190673828125, 0.01690673828125, -0.01776123046875, -0.0036678314208984375, -0.003337860107421875, -0.019134521484375, 0.0017213821411132812, 0.044708251953125, -0.01861572265625, 0.01274871826171875, -0.03399658203125, 0.017791748046875, 0.049072265625, 0.060821533203125, -0.002300262451171875, -0.0018138885498046875, 0.037567138671875, 0.022613525390625, 0.07611083984375, -0.01349639892578125, 0.00960540771484375, 0.00682830810546875, -0.0171051025390625, -0.012420654296875, -0.0007500648498535156, -0.0183563232421875, -0.01433563232421875, -0.027679443359375, 0.07794189453125, -0.0614013671875, 0.0029888153076171875, 0.00791168212890625, 0.0135040283203125, 0.0155487060546875, 0.01445770263671875, -0.00823974609375, -0.03863525390625, -0.016082763671875, 0.003448486328125, -0.0220947265625, 0.0266876220703125, 0.02423095703125, -0.0914306640625, 0.1051025390625, 0.0137481689453125, 0.04736328125, 0.0021209716796875, 0.03912353515625, -0.0281219482421875, -0.00426483154296875, -0.0419921875, 0.052001953125, 0.07293701171875, 0.029052734375, -0.033447265625, -0.0153961181640625, 0.0019159317016601562, 0.040008544921875, 0.08026123046875, 0.0112457275390625, -0.0460205078125, -0.003841400146484375, 0.031707763671875, 0.01154327392578125, -0.029510498046875, 0.0521240234375, 0.0260162353515625, 0.041900634765625, 0.03680419921875, -0.04534912109375, 0.0178985595703125, -0.0305328369140625, 0.0311431884765625, 0.061187744140625, 0.00699615478515625, 0.029205322265625, -0.01447296142578125, 0.01690673828125, -0.0255279541015625, -0.005855560302734375, 0.03704833984375, -0.0633544921875, 0.04034423828125, 0.014892578125, 0.0474853515625, -0.034515380859375, -0.01497650146484375, -0.01447296142578125, 0.048553466796875, 0.01654052734375, 0.017181396484375, 0.0258026123046875, 0.0198974609375, 0.058746337890625, 0.00037670135498046875, 0.002498626708984375, 0.03387451171875, 0.006603240966796875, 0.053985595703125, 0.027435302734375, 0.0245208740234375, -0.03521728515625, -0.0011320114135742188, 0.0714111328125, 0.07159423828125, -0.034759521484375, -0.061676025390625, 0.0159149169921875, 0.0199127197265625, 0.0308837890625, 0.039825439453125, 0.050079345703125, 0.0012798309326171875, 0.046478271484375, -0.052093505859375, 0.021881103515625, 0.034210205078125, 0.040863037109375, -0.0124053955078125, -0.0116424560546875, -0.070556640625, 0.01151275634765625, -0.06591796875, -0.02349853515625, -0.01020050048828125, 0.09234619140625, 0.091552734375, 0.03448486328125, -0.0190887451171875, -0.061126708984375, -0.0039520263671875, 0.0102081298828125, -0.00628662109375, 0.00487518310546875, -0.0111083984375, -0.0271453857421875, 0.0256805419921875, 0.0343017578125, 0.0167083740234375, 0.0231475830078125, 0.0543212890625, 0.06988525390625, -0.007427215576171875, -0.005207061767578125, 0.0253448486328125, -0.00847625732421875, 0.04547119140625, -0.054168701171875, 0.03253173828125, -0.002452850341796875, -0.0164642333984375, -0.0189971923828125, -0.033935546875, 0.038299560546875, 0.0005130767822265625, 0.017120361328125, 0.00954437255859375, -0.017364501953125, 0.01386260986328125, -0.0291748046875, -0.00872802734375, 0.01177215576171875, -0.050384521484375, 0.02752685546875, -0.05279541015625, -0.12384033203125, 0.04742431640625, 0.06561279296875, -0.01336669921875, -0.0272674560546875, 0.0005512237548828125, 0.0129547119140625, 0.016265869140625, -0.029998779296875, 0.007213592529296875, 0.0012083053588867188, 0.01507568359375, 0.0118560791015625, -0.01178741455078125, -0.0195770263671875, 0.0201263427734375, 0.0233612060546875, -0.006290435791015625, 0.0914306640625, -0.0277252197265625, -0.01061248779296875, 0.0295867919921875, 0.034576416015625, -0.005535125732421875, 0.0362548828125, 0.01190185546875, 0.024932861328125, 0.032958984375, -0.033111572265625, -0.0155181884765625, -0.006504058837890625, 0.01367950439453125, -0.054931640625, -0.009674072265625, -0.021820068359375, 0.0208740234375, -0.01267242431640625, -0.01169586181640625, -0.03204345703125, -0.049407958984375, -0.0794677734375, -0.0201416015625, 0.043914794921875, 0.03558349609375, -0.03204345703125, 0.034515380859375, 0.04925537109375, -0.003818511962890625, 0.005146026611328125, -0.01256561279296875, 0.0269012451171875, 0.0418701171875, 0.01751708984375, 0.0380859375, 0.031463623046875, -0.02093505859375, 0.046234130859375, -0.00588226318359375, 0.0218963623046875, 0.0293426513671875, 0.0081329345703125, -0.0179595947265625, -0.01357269287109375, 0.0302276611328125, -0.0178680419921875, 0.00768280029296875, -0.035552978515625, 0.01873779296875, 0.0029201507568359375, -0.0159912109375, -0.037628173828125, -0.053497314453125, 0.008209228515625, 0.01910400390625, -0.012451171875, -0.03759765625, -0.019134521484375, -0.0004382133483886719, 0.005481719970703125, -0.0167999267578125, -0.021697998046875, 0.0161895751953125, -0.018035888671875, 0.05181884765625, -0.041351318359375, 0.01261138916015625, -0.001407623291015625, 0.045562744140625, -0.0516357421875, -0.0207061767578125, -0.0228271484375, 0.013763427734375, -0.051025390625, 0.02117919921875, 0.0323486328125, -0.03814697265625, 0.0107879638671875, -0.0020008087158203125, 0.0132293701171875, 0.05035400390625, -0.0193634033203125, -0.006069183349609375, 0.01158905029296875, 0.0285491943359375, -0.044525146484375, -0.03314208984375, -0.005367279052734375, 0.021697998046875, 0.0179290771484375, -0.005290985107421875, -0.02020263671875, 0.00965118408203125, -0.032073974609375, -0.0193023681640625, 0.01325225830078125, 0.01140594482421875, -0.024688720703125, -0.03729248046875, -0.0245819091796875, -0.0168914794921875, 0.033294677734375, -0.0168304443359375, -0.012908935546875, -0.041534423828125, 0.0316162109375, 0.0186920166015625, 0.0110931396484375, -0.00443267822265625, -0.005916595458984375, -0.061737060546875, 0.0160980224609375, 0.00043082237243652344, 0.013427734375, 0.033203125, -0.042633056640625, 0.04254150390625, 0.04119873046875, -0.043121337890625, -0.006561279296875, -0.00435638427734375, -0.00395965576171875, -0.0316162109375, -0.0703125, -0.01308441162109375, -0.02142333984375, 0.06927490234375, 0.033447265625, 0.002223968505859375, -0.030181884765625, 0.000934600830078125, -0.0109405517578125, 0.0032062530517578125, -0.0256195068359375, 0.025299072265625, -0.066162109375, -0.0228271484375, -0.00494384765625, 0.018035888671875, -0.0208892822265625, -0.01076507568359375, 0.0006389617919921875, -0.020843505859375, 0.032440185546875, 0.004070281982421875, -0.007373809814453125, 0.028350830078125, 0.0655517578125, -0.056488037109375, -0.0251922607421875, 0.042205810546875, -0.00562286376953125, 0.00449371337890625, -0.0004868507385253906, -0.01331329345703125, 0.0460205078125, -0.052764892578125, 0.021240234375, -0.0197906494140625, 0.01435089111328125, -0.0538330078125, 0.0161285400390625, -0.0160369873046875, 0.019317626953125, 0.0064697265625, 0.01158905029296875, -0.01837158203125, 0.02215576171875, 0.005985260009765625, 0.0193939208984375, 0.00533294677734375, -0.006496429443359375, -0.00833892822265625, 0.03253173828125, -0.032073974609375, -0.010711669921875, -0.005046844482421875, -0.050628662109375, -0.00539398193359375, -0.026641845703125, -0.05511474609375, -0.0302886962890625, -0.0479736328125, -0.0138092041015625, -0.020172119140625, 0.003978729248046875 ]
9d3afe155b0a1232f37fec868902e36fc866b038
Wordpress Stackexchange Q: How do I include js without register/enqueue? I have some js which, rather than register and enqueue, I add directly to a page template. Currently located outside of WP, I use <script type="text/javascript" src="/apps/js/amplitude/amplitude.js"></script> If I move it to a js folder inside my theme, how do I then include it in a template without hardcoding a root-relative path... can I use something like get_template_directory_uri? A: Yes, you can use get_template_directory_uri to refer to the theme root path. <script type="text/javascript" src="<?php echo get_template_directory_uri();?>/js/amplitude/amplitude.js"></script> But prefered way of doing is to use wp_enqueue_script().
Q: How do I include js without register/enqueue? I have some js which, rather than register and enqueue, I add directly to a page template. Currently located outside of WP, I use <script type="text/javascript" src="/apps/js/amplitude/amplitude.js"></script> If I move it to a js folder inside my theme, how do I then include it in a template without hardcoding a root-relative path... can I use something like get_template_directory_uri? A: Yes, you can use get_template_directory_uri to refer to the theme root path. <script type="text/javascript" src="<?php echo get_template_directory_uri();?>/js/amplitude/amplitude.js"></script> But prefered way of doing is to use wp_enqueue_script().
wordpress
{ "language": "en", "length": 93, "provenance": "stackexchange_00019.jsonl.gz:469807", "question_score": "4", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/244554" }
[ 0.03765869140625, 0.008026123046875, -0.05511474609375, -0.06512451171875, 0.0234222412109375, -0.032867431640625, 0.004547119140625, 0.020965576171875, -0.039764404296875, 0.02337646484375, -0.034454345703125, 0.03277587890625, -0.04437255859375, 0.00989532470703125, -0.01319122314453125, -0.0545654296875, 0.06903076171875, -0.059051513671875, -0.004421234130859375, -0.01174163818359375, 0.0289154052734375, 0.01549530029296875, 0.0276031494140625, 0.1324462890625, 0.0157470703125, -0.0123443603515625, 0.1009521484375, -0.0071563720703125, -0.01593017578125, -0.027130126953125, 0.0260467529296875, -0.00008606910705566406, 0.03472900390625, -0.0007033348083496094, 0.0003426074981689453, 0.027069091796875, 0.0225830078125, -0.003231048583984375, 0.004955291748046875, 0.01898193359375, 0.01180267333984375, 0.0015840530395507812, 0.0274505615234375, 0.042755126953125, -0.0030727386474609375, -0.0458984375, 0.0039005279541015625, -0.0430908203125, 0.005634307861328125, -0.01105499267578125, 0.01470184326171875, 0.008392333984375, 0.02386474609375, -0.017791748046875, -0.0038089752197265625, 0.02520751953125, -0.0218963623046875, -0.0005507469177246094, 0.0030651092529296875, 0.0660400390625, 0.0227813720703125, 0.019744873046875, -0.00870513916015625, -0.035736083984375, -0.0019388198852539062, -0.00484466552734375, -0.026092529296875, 0.006900787353515625, -0.0794677734375, -0.0033550262451171875, 0.053985595703125, -0.0604248046875, 0.008514404296875, -0.021728515625, -0.026336669921875, -0.005771636962890625, -0.002483367919921875, -0.026275634765625, 0.019622802734375, -0.01174163818359375, -0.0171966552734375, -0.006610870361328125, 0.00647735595703125, -0.0156097412109375, -0.01544189453125, 0.008087158203125, -0.0241241455078125, -0.005413055419921875, -0.0347900390625, -0.01482391357421875, -0.03582763671875, 0.0163726806640625, -0.0301666259765625, -0.0025196075439453125, -0.027862548828125, 0.01953125, 0.0250091552734375, -0.003185272216796875, 0.043365478515625, 0.035400390625, 0.0250091552734375, -0.06915283203125, 0.08978271484375, -0.05010986328125, 0.0006880760192871094, 0.12255859375, -0.005168914794921875, -0.0380859375, -0.001064300537109375, -0.0169219970703125, 0.039398193359375, -0.025238037109375, 0.0265350341796875, 0.01161956787109375, -0.040740966796875, -0.019287109375, -0.01459503173828125, 0.01204681396484375, 0.009185791015625, 0.02978515625, 0.0089111328125, 0.04034423828125, -0.0008444786071777344, -0.0247344970703125, -0.019317626953125, -0.0275115966796875, 0.0034542083740234375, -0.034210205078125, -0.00420379638671875, 0.0289154052734375, -0.004852294921875, -0.0037517547607421875, 0.00856781005859375, 0.0296783447265625, -0.006824493408203125, -0.0142822265625, 0.052337646484375, 0.00423431396484375, 0.0029087066650390625, -0.01467132568359375, 0.02777099609375, -0.036285400390625, -0.02374267578125, 0.021087646484375, -0.0083465576171875, -0.005161285400390625, -0.01904296875, 0.02642822265625, 0.042236328125, 0.003948211669921875, 0.0274200439453125, -0.050262451171875, 0.02972412109375, -0.003143310546875, -0.006389617919921875, -0.02020263671875, 0.014404296875, -0.0170135498046875, -0.0193634033203125, -0.0245208740234375, -0.0189971923828125, 0.01407623291015625, 0.024658203125, -0.050140380859375, -0.0238494873046875, -0.041656494140625, -0.014739990234375, 0.012664794921875, 0.0282440185546875, 0.0748291015625, -0.0128631591796875, -0.07586669921875, -0.007965087890625, 0.0133056640625, -0.02252197265625, 0.04193115234375, 0.0008444786071777344, 0.03448486328125, 0.005123138427734375, 0.022369384765625, 0.01629638671875, -0.0318603515625, 0.03936767578125, -0.0168304443359375, -0.0504150390625, 0.0229034423828125, 0.006931304931640625, 0.035430908203125, 0.00966644287109375, 0.0038623809814453125, 0.0859375, 0.033111572265625, -0.01139068603515625, 0.011260986328125, -0.0205535888671875, -0.0350341796875, 0.0133514404296875, 0.0008702278137207031, -0.0078582763671875, 0.01364898681640625, -0.029449462890625, 0.00159454345703125, 0.021026611328125, 0.036407470703125, 0.03118896484375, 0.01407623291015625, -0.0147247314453125, 0.022308349609375, 0.003116607666015625, 0.00989532470703125, 0.01007080078125, 0.054656982421875, -0.023956298828125, -0.08697509765625, -0.0413818359375, 0.043365478515625, -0.0328369140625, 0.07513427734375, -0.006916046142578125, 0.05438232421875, 0.0217437744140625, -0.055908203125, 0.0298919677734375, 0.00662994384765625, -0.0020160675048828125, 0.007236480712890625, -0.0229339599609375, -0.01027679443359375, -0.0170440673828125, -0.0001392364501953125, -0.0231170654296875, 0.06439208984375, -0.0233306884765625, -0.0098419189453125, -0.0256805419921875, 0.0015316009521484375, 0.0229339599609375, 0.0018768310546875, 0.01806640625, 0.01849365234375, 0.028045654296875, 0.06964111328125, 0.0185699462890625, 0.02691650390625, 0.033599853515625, -0.0498046875, 0.01033782958984375, -0.006313323974609375, -0.0207672119140625, 0.0050201416015625, 0.01546478271484375, -0.002285003662109375, 0.020843505859375, -0.07965087890625, -0.01371002197265625, 0.038543701171875, 0.006526947021484375, 0.028106689453125, 0.0010242462158203125, -0.0017309188842773438, -0.0007023811340332031, 0.0233001708984375, -0.0018815994262695312, 0.0031566619873046875, 0.033660888671875, -0.0081787109375, 0.01015472412109375, -0.005260467529296875, 0.002490997314453125, 0.005756378173828125, 0.007396697998046875, -0.06463623046875, 0.0005717277526855469, 0.01251220703125, -0.022186279296875, -0.002166748046875, -0.01116943359375, -0.00010609626770019531, 0.0013446807861328125, 0.0004341602325439453, -0.01148223876953125, -0.019775390625, -0.049530029296875, -0.0148773193359375, 0.008270263671875, -0.07159423828125, 0.018890380859375, 0.050506591796875, 0.0237884521484375, 0.0313720703125, 0.039398193359375, 0.055267333984375, 0.041107177734375, 0.0038814544677734375, 0.025848388671875, 0.005596160888671875, 0.05029296875, 0.0082550048828125, -0.018035888671875, 0.0059661865234375, 0.054718017578125, 0.030914306640625, 0.00029754638671875, -0.0203857421875, 0.004787445068359375, 0.01136016845703125, 0.038238525390625, -0.0159149169921875, -0.0023193359375, -0.0323486328125, -0.019012451171875, 0.00775146484375, 0.0186920166015625, -0.003215789794921875, 0.00750732421875, -0.0340576171875, 0.01239776611328125, -0.0024585723876953125, -0.09564208984375, -0.10711669921875, 0.0026950836181640625, -0.053314208984375, 0.01549530029296875, 0.0025997161865234375, -0.026885986328125, -0.0207672119140625, 0.039276123046875, 0.0168304443359375, -0.04095458984375, -0.011260986328125, -0.022857666015625, -0.06146240234375, -0.056365966796875, 0.006511688232421875, -0.00275421142578125, 0.004302978515625, 0.0157318115234375, -0.004009246826171875, 0.000005304813385009766, -0.0203857421875, 0.0157318115234375, 0.051513671875, -0.0012178421020507812, -0.00820159912109375, 0.0340576171875, -0.053131103515625, -0.03192138671875, 0.011993408203125, -0.05615234375, -0.0093536376953125, 0.0154266357421875, -0.0232391357421875, -0.011322021484375, -0.01519775390625, -0.0080413818359375, 0.037109375, 0.030120849609375, 0.006755828857421875, 0.03350830078125, -0.0291290283203125, -0.06689453125, 0.0150146484375, -0.057037353515625, -0.0191192626953125, 0.01318359375, 0.00030422210693359375, -0.01134490966796875, 0.0194549560546875, 0.0323486328125, 0.007755279541015625, -0.01142120361328125, 0.006374359130859375, 0.040924072265625, 0.0003437995910644531, 0.02911376953125, -0.0198974609375, 0.043121337890625, -0.016998291015625, 0.04632568359375, 0.0264739990234375, 0.01430511474609375, 0.009002685546875, -0.0244903564453125, -0.022918701171875, 0.0157012939453125, 0.00394439697265625, -0.0350341796875, 0.0238189697265625, 0.008758544921875, -0.002605438232421875, -0.001552581787109375, 0.036865234375, -0.05657958984375, 0.002986907958984375, 0.01047515869140625, 0.021331787109375, -0.05352783203125, -0.06207275390625, -0.06805419921875, -0.006786346435546875, -0.0042724609375, -0.01143646240234375, -0.025177001953125, -0.0213623046875, 0.004131317138671875, -0.033416748046875, 0.0017547607421875, -0.0249786376953125, 0.049774169921875, -0.07177734375, 0.0192718505859375, 0.025909423828125, 0.029571533203125, -0.033203125, -0.034820556640625, -0.040313720703125, -0.06817626953125, -0.022216796875, -0.0196685791015625, 0.08282470703125, 0.00977325439453125, -0.0028209686279296875, -0.0262451171875, 0.045013427734375, -0.03802490234375, 0.023223876953125, 0.0225982666015625, 0.053741455078125, -0.046295166015625, 0.01088714599609375, 0.035064697265625, -0.034088134765625, 0.004238128662109375, 0.00852203369140625, -0.0261383056640625, 0.00960540771484375, -0.007110595703125, -0.0214385986328125, 0.031646728515625, -0.0316162109375, -0.0243072509765625, 0.00952911376953125, 0.0010576248168945312, -0.0163116455078125, 0.020111083984375, -0.031341552734375, 0.01535797119140625, -0.0080718994140625, 0.03228759765625, 0.0031280517578125, 0.0308074951171875, -0.004009246826171875, 0.0400390625, 0.0162200927734375, -0.0267791748046875, 0.01158905029296875, 0.0399169921875, 0.00811004638671875, 0.0181732177734375, 0.020965576171875, -0.0131378173828125, -0.0101470947265625, 0.045257568359375, -0.013275146484375, 0.01303863525390625, 0.0026302337646484375, 0.0276947021484375, 0.0322265625, 0.00464630126953125, 0.006694793701171875, 0.03839111328125, -0.0241851806640625, 0.00522613525390625, 0.002094268798828125, 0.0092010498046875, 0.010772705078125, -0.00669097900390625, -0.0282745361328125, 0.0128173828125, -0.0013856887817382812, -0.037811279296875, -0.0027751922607421875, -0.0184478759765625, 0.067626953125, 0.0243682861328125, -0.00341033935546875, 0.03851318359375, 0.049835205078125, 0.00554656982421875, 0.04254150390625, -0.0162811279296875, 0.0391845703125, 0.0277252197265625, 0.035491943359375, 0.033935546875, 0.0181732177734375, -0.004180908203125, 0.0059661865234375, -0.00328826904296875, -0.037445068359375, -0.038848876953125, 0.0233001708984375, 0.06671142578125, 0.0006623268127441406, 0.0214385986328125, 0.047119140625, 0.04632568359375, 0.01131439208984375, -0.010589599609375, 0.027374267578125, 0.01076507568359375, -0.036407470703125, 0.0281829833984375, 0.020965576171875, -0.0252532958984375, -0.0458984375, 0.030303955078125, 0.0201873779296875, -0.04095458984375, 0.006320953369140625, 0.0225982666015625, -0.0214080810546875, 0.04730224609375, 0.01229095458984375, -0.0235748291015625, 0.0036907196044921875, 0.033447265625, -0.010101318359375, -0.01177978515625, 0.019134521484375, 0.0069580078125, 0.0253448486328125, -0.0201873779296875, -0.0204010009765625, 0.023712158203125, -0.0195465087890625, -0.0258941650390625, 0.0012502670288085938, -0.009002685546875, 0.005496978759765625, -0.0217132568359375, -0.035400390625, 0.020233154296875, 0.041168212890625, 0.0185394287109375, 0.0170135498046875, 0.030792236328125, 0.01078033447265625, 0.01837158203125, -0.01044464111328125, -0.01021575927734375, 0.006252288818359375, -0.0066070556640625, 0.02825927734375, 0.0209197998046875, -0.058685302734375, -0.055755615234375, -0.015869140625, -0.0170745849609375, 0.061859130859375, -0.0154266357421875, -0.0166778564453125, -0.012298583984375, 0.01082611083984375, 0.00605010986328125, 0.004604339599609375, 0.048065185546875, 0.005580902099609375, -0.035491943359375, 0.000743865966796875, -0.08294677734375, -0.024932861328125, -0.062286376953125, -0.04736328125, -0.027374267578125, 0.027587890625, -0.02008056640625, 0.01155853271484375, -0.043487548828125, -0.0283966064453125, 0.00907135009765625, 0.0299835205078125, 0.005706787109375, 0.0411376953125, -0.02203369140625, 0.047027587890625, 0.0033416748046875, 0.01070404052734375, -0.003826141357421875, 0.007709503173828125, 0.0018901824951171875, -0.0124664306640625, -0.006679534912109375, -0.04046630859375, -0.0013113021850585938, -0.01470184326171875, -0.0039043426513671875, 0.008209228515625, 0.04541015625, 0.0037078857421875, 0.0236663818359375, -0.0018129348754882812, -0.01210784912109375, -0.01387786865234375, 0.032684326171875, -0.004558563232421875, 0.01837158203125, 0.031951904296875, 0.00611114501953125, 0.0016651153564453125, -0.007038116455078125, -0.0254058837890625, 0.024810791015625, 0.00406646728515625, 0.0207977294921875, -0.0282745361328125, -0.022064208984375, 0.035552978515625, 0.00714874267578125, 0.00843048095703125, 0.0133056640625, -0.01287841796875, 0.0193634033203125, -0.0192718505859375, 0.030975341796875, -0.042083740234375, -0.030853271484375, 0.0406494140625, 0.004230499267578125, -0.04449462890625, 0.01494598388671875, -0.0267791748046875, -0.01050567626953125, 0.048248291015625, 0.0299835205078125, -0.05133056640625, -0.0140838623046875, -0.024627685546875, -0.034576416015625, -0.040130615234375, -0.0280303955078125, 0.0157623291015625, -0.0006699562072753906, 0.03826904296875, 0.05316162109375, -0.01424407958984375, 0.0197296142578125, -0.006557464599609375, -0.005687713623046875, 0.0024776458740234375, -0.00536346435546875, 0.005352020263671875, 0.010772705078125, -0.0170135498046875, -0.007175445556640625, 0.006275177001953125, -0.005344390869140625, 0.0238189697265625, 0.01078033447265625, -0.006519317626953125, -0.01154327392578125, 0.02728271484375, -0.0184173583984375, -0.030029296875, -0.00659942626953125, 0.005580902099609375, 0.07843017578125, 0.01413726806640625, 0.02294921875, -0.033905029296875, -0.00457763671875, 0.003749847412109375, 0.035430908203125, -0.0352783203125, 0.0024871826171875, -0.01383209228515625, -0.06597900390625, -0.0006456375122070312, -0.01690673828125, -0.0043182373046875, -0.01422882080078125, 0.0232086181640625, 0.080322265625, -0.0031414031982421875, -0.041717529296875, 0.0170440673828125, -0.0005879402160644531, -0.01058197021484375, 0.0021419525146484375, 0.013580322265625, -0.033477783203125, -0.02984619140625, 0.01125335693359375, -0.05816650390625, -0.00875091552734375, -0.00759124755859375, -0.0167999267578125, 0.1346435546875, -0.008880615234375, -0.0238189697265625, 0.03070068359375, 0.0810546875, -0.048797607421875, 0.0482177734375, -0.00855255126953125, 0.031829833984375, 0.0015192031860351562, -0.000030040740966796875, -0.048828125, -0.01085662841796875, -0.01218414306640625, 0.042510986328125, 0.057708740234375, 0.0008697509765625, 0.036712646484375, -0.0010843276977539062, 0.0556640625, 0.052581787109375, -0.0093841552734375, -0.0186309814453125, 0.017547607421875, 0.035858154296875, 0.034515380859375, -0.0284271240234375, 0.02667236328125, -0.0345458984375, -0.017242431640625, 0.038970947265625, 0.0085296630859375, 0.0218963623046875, 0.0080413818359375, -0.026885986328125, -0.01611328125, 0.0142669677734375, 0.01203155517578125, -0.002010345458984375, -0.0184326171875, 0.0288238525390625, -0.043731689453125, -0.006549835205078125, -0.06475830078125, -0.01457977294921875, 0.0016984939575195312, -0.02081298828125, -0.00858306884765625, -0.0038280487060546875, 0.01947021484375, -0.0294342041015625, 0.0008745193481445312, -0.00830078125, 0.03668212890625, -0.038787841796875, -0.01131439208984375, 0.0277252197265625, 0.024871826171875, -0.0240936279296875, -0.0266876220703125, 0.0665283203125, 0.01418304443359375, -0.007965087890625, -0.0135955810546875, 0.01092529296875, 0.038543701171875, 0.00420379638671875, -0.0105438232421875, 0.014373779296875, -0.01654052734375, 0.0191497802734375, 0.0098876953125, -0.022216796875, 0.00975799560546875, 0.00974273681640625, 0.014984130859375, 0.003932952880859375, 0.017730712890625, 0.01026153564453125, -0.10003662109375, 0.056976318359375, 0.05548095703125, 0.075439453125, 0.0150146484375, 0.06451416015625, 0.042694091796875, -0.0396728515625, -0.032012939453125, 0.0169219970703125, 0.00408935546875, 0.037261962890625, -0.04986572265625, -0.00763702392578125, 0.03466796875, 0.046051025390625, 0.02008056640625, -0.004673004150390625, 0.03277587890625, 0.0152435302734375, -0.0523681640625, -0.005767822265625, 0.044769287109375, -0.0229644775390625, 0.061187744140625, -0.0023212432861328125, 0.05535888671875, 0.02178955078125, -0.00701141357421875, -0.043701171875, 0.027984619140625, 0.07269287109375, -0.020050048828125, 0.035064697265625, -0.0043182373046875, -0.005802154541015625, 0.048248291015625, -0.01169586181640625, 0.06890869140625, 0.01404571533203125, -0.01036834716796875, 0.00917816162109375, -0.00743865966796875, -0.04486083984375, 0.02593994140625, 0.03961181640625, -0.048828125, 0.044708251953125, 0.081787109375, 0.015777587890625, -0.01557159423828125, 0.004001617431640625, 0.01873779296875, -0.037841796875, 0.041717529296875, 0.02447509765625, 0.0261688232421875, -0.0072021484375, 0.035308837890625, 0.040252685546875, 0.0240631103515625, 0.0262451171875, -0.031524658203125, 0.0274658203125, 0.068359375, -0.0002703666687011719, 0.053741455078125, 0.0479736328125, 0.0022068023681640625, -0.00794219970703125, 0.0293426513671875, -0.036895751953125, -0.037567138671875, 0.042938232421875, -0.00235748291015625, -0.0035343170166015625, 0.03216552734375, -0.011810302734375, 0.007442474365234375, -0.0008683204650878906, 0.0282135009765625, -0.0306396484375, -0.034271240234375, -0.00183868408203125, 0.0218658447265625, -0.006256103515625, -0.01010894775390625, -0.01849365234375, -0.0005292892456054688, 0.0146026611328125, -0.0258636474609375, -0.0026073455810546875, -0.0007600784301757812, -0.016326904296875, 0.01207733154296875, 0.037994384765625, 0.0203094482421875, 0.0187225341796875, -0.027008056640625, 0.049957275390625, -0.0157012939453125, 0.068115234375, -0.00861358642578125, 0.0010251998901367188, -0.00696563720703125, 0.0107421875, 0.022216796875, 0.01039886474609375, 0.00501251220703125, -0.007587432861328125, -0.024078369140625, -0.0208282470703125, -0.00399017333984375, -0.0322265625, -0.0216827392578125, 0.00499725341796875, 0.004665374755859375, 0.01129150390625, -0.0081787109375, 0.0037136077880859375, -0.015472412109375, 0.05078125, 0.0009226799011230469, -0.05072021484375, 0.00861358642578125, -0.04534912109375, 0.05218505859375, -0.0078887939453125, 0.03570556640625, -0.00873565673828125, -0.006305694580078125, -0.043060302734375, -0.01287078857421875, -0.00984954833984375, 0.03887939453125, 0.0181121826171875, 0.01161956787109375, 0.034027099609375, 0.0010213851928710938, 0.0046844482421875, 0.0300445556640625, -0.01210784912109375, 0.09423828125, -0.0792236328125, -0.01934814453125, -0.005645751953125, 0.0251312255859375, -0.0049591064453125, -0.03216552734375, -0.01422119140625, 0.0082855224609375, 0.0170135498046875, -0.0134735107421875, 0.004871368408203125, 0.0028476715087890625, -0.0478515625, -0.07958984375, 0.0285491943359375, 0.00341796875, -0.036865234375, -0.04705810546875, -0.0028839111328125, 0.01026153564453125, -0.0169525146484375, -0.0295257568359375, -0.0177001953125, -0.039581298828125, 0.0254058837890625, 0.0230865478515625, -0.01528167724609375, 0.06304931640625, -0.0265045166015625, -0.06451416015625, -0.015777587890625, -0.0075836181640625, 0.01141357421875, -0.034698486328125, 0.008209228515625, 0.0118255615234375, 0.026885986328125, -0.009552001953125, -0.024658203125, 0.0279541015625, -0.006786346435546875, -0.015045166015625, -0.01311492919921875, -0.038543701171875, -0.01151275634765625, 0.0899658203125, 0.046783447265625, 0.019561767578125, -0.0312042236328125, -0.03192138671875, -0.0545654296875, 0.026702880859375, -0.00921630859375, 0.0026950836181640625, -0.047149658203125, 0.00279998779296875, 0.02984619140625, -0.001850128173828125, -0.0108795166015625, -0.041259765625, -0.037841796875, -0.01727294921875, -0.01511383056640625, 0.01496124267578125, 0.0030803680419921875, -0.05084228515625, 0.061981201171875, -0.005313873291015625, 0.0465087890625, 0.00502777099609375, 0.040740966796875, 0.06280517578125, 0.0308990478515625, 0.022796630859375, 0.0266265869140625, -0.042877197265625, 0.006015777587890625, -0.00246429443359375, 0.03515625, -0.044921875, -0.0221099853515625, -0.011932373046875, 0.03338623046875, 0.0220489501953125, 0.03253173828125, -0.056793212890625, 0.07171630859375, 0.0202484130859375, 0.0171356201171875, -0.032012939453125, -0.0181732177734375, -0.0072174072265625, -0.00931549072265625, 0.0032863616943359375, 0.024139404296875, 0.05364990234375, -0.015777587890625, -0.01788330078125, -0.0299835205078125, -0.11962890625, -0.03314208984375, -0.0282135009765625, -0.060333251953125, -0.053558349609375, -0.0033092498779296875 ]
bba8c798a92a2cb9474f361464f981605b7c547e
Wordpress Stackexchange Q: How do I technically prove that WordPress is secure? One of my clients forces me to do their project without WordPress. But WordPress is the best for his requirements. What he said is, WordPress is unsecure because WordPress is open source and everyone knows the code. So hacking chance is higher than with a custom website. That is the only thing he does not like about WordPress. How do I prove that WordPress is secure even code is open for everyone? A: Tell your client to read up on cybersecurity, because his premise is nonsense. Security through obscurity has been discredited since 1851 (yes, that's one and a half century ago). The opposite is also untrue. Open source software is not more secure than proprietary software. The crucial thing in code security is not whether it's open or not, but whether it's well maintained. WordPress has an active community that is constantly alert on security matters. Follow the guidelines. Ask yourself how alert the authors of a rival cms are. That said, security is a constant threat. There are no proofs or guarantees.
Q: How do I technically prove that WordPress is secure? One of my clients forces me to do their project without WordPress. But WordPress is the best for his requirements. What he said is, WordPress is unsecure because WordPress is open source and everyone knows the code. So hacking chance is higher than with a custom website. That is the only thing he does not like about WordPress. How do I prove that WordPress is secure even code is open for everyone? A: Tell your client to read up on cybersecurity, because his premise is nonsense. Security through obscurity has been discredited since 1851 (yes, that's one and a half century ago). The opposite is also untrue. Open source software is not more secure than proprietary software. The crucial thing in code security is not whether it's open or not, but whether it's well maintained. WordPress has an active community that is constantly alert on security matters. Follow the guidelines. Ask yourself how alert the authors of a rival cms are. That said, security is a constant threat. There are no proofs or guarantees. A: "Isn't Cassandra, the engine that runs Facebook, open source?" That question ought to put them at ease. Cassandra is used by Apple and Netflix too, and it's open source. Further you could cite all the major sites that use WordPress. "If it's good enough for them it's probably good enough for you." The point, as the other answer notes, is that how the software is made and updated is completely irrelevant to security. More important is how frequently it gets updated and how easy it is to update your specific sites. In my opinion WordPress is pretty good at this. A: Since this is a general question, it is not smart to provide in-detail answers. It would be better to show some interesting examples. The other people do serious tests. Take Docker WordPress unit for example 1 2 They say WordPress is secure, but PHP is not secure, yet. So even if you have Perfect WordPress (setup by the book) the problems may be on the other side. A: I belong to a country, where I faced the similar situations many times. But I faced 'em with my active WP sites, and their sound histories. The rumor was actually true, when everybody became developers and developed WordPress' things without understanding how WordPress handles things by itself. So things developed, and hackers got way through their buggy code. The rumor strengthened with a huge collapse with Joomla sites, that time. Sometimes it happened because of some cheap servers, where server security were bad. Anyway, I questioned myself whether I know the answer for you and I find myself empty. So I consulted some articles, and quoting from some of 'em and adding my points/understandings too: * *Ask what security guarantees your [client] wants from a piece of software and then ask whether the software delivers that.[source] *Every piece of software has to be evaluated before we buy — it's utter nonsense. Only security-enforcing functions need security evaluation.[source] *License does not dictate code quality.[source] My [lame] points: * *WordPress, like other Open Source, is open source, so if it is vulnerable to security threats, it would collapse a long ago. It's still flourished since 2003. *WordPress updates itself automatically with security patches after version 3.7. If your custom code searches for latest security threats, bugs in your code by [a small group of coders'] known ways, and updates constantly, then still you are behind WordPress, because WordPress security is maintained by a huge group of people around the globe [and is better than a small group]. *And @cjbj already made the point, obscurity doesn't make thing secure. A: Mayeenul Islam - thats no lame point you make regarding Open Source. If we consider that Microsoft - one of the world's largest software and system's developers and producers is also one of the worlds most invaded systems - having 'closed down code' is in no way more secure than having a code base watched over by hundreds if not thousands of developers and users. To my recall, the biggest failings in security tend not to be down to software but implementation. Wordpress out of the box is as secure as it can be - but people still choose stupidly easy to guess password - or none at all, or run services without HTTPS etc. All of which you can do on a home grown system and be just as insecure. Having as secure as system as possible starts way ahead of software and platform choice, it starts with implementation, policy, making sure that you know what you are after. Then choose a platform that has consistently plugged its leaks and holes and above all - is open about informing its client and development community about these issues. If we know there is an issue - we can plan and patch accordingly, if the reverse is true - we end up having to wipe-clean and rebuild. I recall holes in Windows that were discovered to go way back to 3.1 and were known about and left because they were regarded as 'obscured'. Open Source solutions are not perfect, but by their very definition it is far easier to find, spot, report and correct flaws. The original question - how do you prove that a system is secure - you cannot - no system ever has been or ever will be secure. The moment such a claim is made every hacker in the world has a case to prove in taking it down. It is far more sensible and honest to understand that we make things as secure as we can, and develop operations and means of working with systems that promote a sense of secure usage. A: Technically you can explain about WP, according to what you know. You should read this topic to increase your knowledge about security: https://wordpress.stackexchange.com/questions/245051/security-with-wordpress-how-to-secure-website/245052#245052
wordpress
{ "language": "en", "length": 991, "provenance": "stackexchange_00019.jsonl.gz:469830", "question_score": "7", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/244642" }
[ 0.028076171875, 0.036041259765625, 0.0152130126953125, 0.0305633544921875, 0.0132293701171875, -0.017852783203125, 0.026092529296875, -0.08203125, -0.040496826171875, -0.026641845703125, -0.03143310546875, 0.0031833648681640625, -0.064208984375, -0.03411865234375, 0.038818359375, -0.0711669921875, 0.016754150390625, -0.016326904296875, -0.0087890625, -0.00473785400390625, 0.0038280487060546875, 0.0056610107421875, 0.004611968994140625, -0.056884765625, 0.0282440185546875, -0.040618896484375, 0.10247802734375, -0.034210205078125, 0.052520751953125, -0.00434112548828125, 0.037353515625, -0.061492919921875, -0.0054931640625, 0.06378173828125, -0.036285400390625, -0.061309814453125, -0.05145263671875, 0.04351806640625, 0.0022487640380859375, 0.01947021484375, 0.0021514892578125, 0.0135345458984375, 0.04736328125, -0.00047707557678222656, -0.0032672882080078125, -0.027618408203125, -0.007480621337890625, -0.0540771484375, -0.0033206939697265625, -0.04248046875, 0.0009098052978515625, 0.02728271484375, 0.038299560546875, -0.0208282470703125, -0.00864410400390625, 0.0165863037109375, 0.03448486328125, -0.0189971923828125, 0.04052734375, -0.007175445556640625, -0.02972412109375, -0.003948211669921875, 0.01265716552734375, -0.019012451171875, -0.005527496337890625, -0.01450347900390625, -0.01088714599609375, 0.0160980224609375, -0.023406982421875, -0.01117706298828125, 0.02838134765625, -0.0040283203125, 0.00992584228515625, -0.048370361328125, 0.033477783203125, 0.0036945343017578125, -0.0217437744140625, -0.029266357421875, 0.024444580078125, 0.0026073455810546875, 0.006961822509765625, 0.01102447509765625, -0.0185089111328125, -0.0222930908203125, -0.01947021484375, -0.0166168212890625, -0.00736236572265625, -0.006084442138671875, -0.01207733154296875, 0.007579803466796875, -0.0081787109375, 0.0292816162109375, -0.023956298828125, 0.01238250732421875, -0.00653839111328125, -0.0126190185546875, -0.001399993896484375, 0.0212249755859375, 0.0010585784912109375, -0.00959014892578125, 0.00806427001953125, -0.02276611328125, -0.0024051666259765625, -0.0207366943359375, -0.043182373046875, 0.04608154296875, 0.033416748046875, 0.03094482421875, -0.035614013671875, 0.0149383544921875, -0.0185546875, -0.08319091796875, -0.0269012451171875, -0.066162109375, 0.005321502685546875, 0.06353759765625, -0.007701873779296875, 0.0053558349609375, 0.00966644287109375, 0.0033855438232421875, -0.003643035888671875, -0.003955841064453125, 0.03155517578125, -0.01042938232421875, -0.016510009765625, -0.0287322998046875, -0.03485107421875, -0.004852294921875, -0.01202392578125, 0.0220794677734375, -0.01360321044921875, 0.022857666015625, 0.01137542724609375, 0.0064239501953125, -0.038482666015625, -0.003032684326171875, 0.03619384765625, 0.0214080810546875, 0.002826690673828125, 0.02264404296875, -0.044891357421875, -0.0251312255859375, 0.036590576171875, -0.027435302734375, 0.045135498046875, 0.004123687744140625, 0.01849365234375, 0.022613525390625, -0.0130157470703125, -0.01053619384765625, 0.040435791015625, -0.0172271728515625, -0.01453399658203125, 0.0135650634765625, 0.0179443359375, -0.006679534912109375, -0.0188446044921875, 0.0003490447998046875, 0.029205322265625, -0.0007991790771484375, 0.028076171875, 0.0009713172912597656, 0.03045654296875, 0.034393310546875, 0.01190185546875, -0.011383056640625, -0.049835205078125, 0.000911712646484375, 0.0238800048828125, -0.0233917236328125, 0.0235748291015625, -0.03302001953125, 0.05377197265625, -0.005062103271484375, -0.009490966796875, 0.0249481201171875, -0.016510009765625, 0.0179595947265625, 0.0472412109375, 0.0126495361328125, 0.0207977294921875, -0.00882720947265625, 0.07928466796875, -0.01462554931640625, -0.00791168212890625, -0.01418304443359375, 0.0229034423828125, 0.06707763671875, 0.002166748046875, 0.04443359375, -0.006649017333984375, 0.0107421875, 0.035919189453125, 0.01380157470703125, -0.03338623046875, -0.032379150390625, -0.032073974609375, 0.0245513916015625, -0.043548583984375, 0.00490570068359375, 0.0291595458984375, -0.00024580955505371094, -0.0161895751953125, -0.052886962890625, -0.0269775390625, -0.054351806640625, 0.01165771484375, 0.0220947265625, -0.042633056640625, 0.0191192626953125, 0.027191162109375, -0.0233154296875, -0.0292510986328125, 0.0445556640625, 0.0248870849609375, -0.002532958984375, -0.045867919921875, 0.053802490234375, -0.01303863525390625, 0.048492431640625, -0.0174102783203125, -0.057098388671875, -0.0149688720703125, -0.039154052734375, 0.004856109619140625, -0.0076446533203125, -0.0159912109375, -0.0087432861328125, 0.03826904296875, 0.004772186279296875, 0.01837158203125, -0.01251983642578125, 0.0194244384765625, 0.01119232177734375, -0.011627197265625, -0.016937255859375, -0.03411865234375, -0.10040283203125, 0.005035400390625, 0.0673828125, 0.033294677734375, 0.024993896484375, 0.000043272972106933594, -0.005741119384765625, 0.0621337890625, -0.0421142578125, 0.007354736328125, -0.006229400634765625, 0.0004963874816894531, 0.0458984375, 0.02154541015625, 0.00628662109375, -0.006855010986328125, 0.0031223297119140625, -0.0280609130859375, 0.0286712646484375, 0.041351318359375, 0.07269287109375, -0.04461669921875, 0.03057861328125, -0.0252838134765625, -0.0023040771484375, -0.015045166015625, -0.0167236328125, -0.007274627685546875, -0.0070953369140625, -0.003326416015625, 0.001850128173828125, -0.00811004638671875, -0.021697998046875, 0.0175018310546875, -0.0026378631591796875, -0.0171051025390625, 0.050750732421875, 0.08221435546875, 0.04302978515625, -0.04400634765625, -0.019622802734375, 0.005458831787109375, 0.057586669921875, -0.0111846923828125, 0.00727081298828125, 0.01332855224609375, -0.01302337646484375, 0.00785064697265625, 0.0034885406494140625, 0.03125, 0.005779266357421875, 0.0025787353515625, 0.0357666015625, 0.050933837890625, 0.016571044921875, -0.00997161865234375, 0.041015625, -0.0421142578125, -0.006717681884765625, -0.00656890869140625, -0.01983642578125, 0.019805908203125, -0.0145416259765625, 0.0330810546875, 0.06292724609375, 0.01158905029296875, 0.01366424560546875, -0.00714874267578125, 0.0216827392578125, 0.000012755393981933594, -0.034515380859375, -0.0469970703125, 0.02032470703125, -0.0867919921875, -0.0195770263671875, 0.023468017578125, 0.00861358642578125, -0.0058746337890625, -0.030548095703125, -0.033843994140625, 0.01311492919921875, -0.06982421875, -0.03704833984375, -0.05267333984375, -0.025604248046875, 0.00152587890625, -0.0193939208984375, 0.01021575927734375, 0.01534271240234375, -0.03302001953125, 0.0159149169921875, 0.00553131103515625, 0.0113525390625, -0.0322265625, -0.041717529296875, -0.0694580078125, -0.0325927734375, -0.015411376953125, 0.0178985595703125, 0.007442474365234375, 0.04437255859375, 0.0097503662109375, -0.045013427734375, -0.005916595458984375, 0.01444244384765625, -0.0112457275390625, -0.0020923614501953125, -0.050262451171875, 0.0107574462890625, 0.0024318695068359375, 0.0035343170166015625, -0.005367279052734375, -0.0203399658203125, 0.046051025390625, -0.01369476318359375, 0.00594329833984375, -0.061126708984375, -0.003582000732421875, -0.0438232421875, -0.025543212890625, -0.0430908203125, -0.038665771484375, -0.07080078125, 0.035400390625, 0.027191162109375, 0.035858154296875, -0.0278472900390625, -0.053375244140625, -0.0537109375, -0.02197265625, 0.018463134765625, 0.0234222412109375, 0.038787841796875, -0.01338958740234375, 0.003429412841796875, 0.041046142578125, -0.006565093994140625, 0.0159149169921875, -0.0183563232421875, 0.004901885986328125, -0.047119140625, -0.026275634765625, -0.0291900634765625, -0.036346435546875, -0.025360107421875, -0.0076446533203125, -0.016510009765625, -0.03363037109375, 0.05230712890625, -0.01187896728515625, 0.026763916015625, -0.01360321044921875, -0.0275115966796875, -0.0007505416870117188, 0.0904541015625, -0.0071258544921875, -0.00860595703125, 0.0312347412109375, 0.004253387451171875, -0.0265350341796875, 0.00380706787109375, -0.052459716796875, -0.01128387451171875, -0.0465087890625, 0.006378173828125, -0.026611328125, -0.0263519287109375, -0.0003879070281982422, -0.061187744140625, -0.005435943603515625, -0.049591064453125, 0.01045989990234375, -0.037139892578125, 0.0187225341796875, -0.026336669921875, 0.023284912109375, -0.060577392578125, 0.017578125, -0.041229248046875, -0.0860595703125, -0.011260986328125, 0.017913818359375, 0.0307769775390625, -0.0211944580078125, -0.006565093994140625, -0.03155517578125, 0.0265350341796875, -0.03131103515625, 0.0281829833984375, -0.01171112060546875, 0.007114410400390625, 0.0204315185546875, 0.0328369140625, -0.003505706787109375, 0.0010633468627929688, 0.0074310302734375, -0.01702880859375, -0.0521240234375, -0.0714111328125, -0.045440673828125, -0.06134033203125, 0.00555419921875, -0.04510498046875, 0.01434326171875, -0.0161590576171875, -0.05816650390625, 0.023773193359375, -0.039337158203125, 0.0024051666259765625, -0.0318603515625, -0.013946533203125, 0.048980712890625, 0.026275634765625, -0.003582000732421875, 0.01361083984375, 0.07672119140625, -0.00904083251953125, -0.0263214111328125, -0.098876953125, -0.0168304443359375, 0.0235443115234375, -0.0278472900390625, 0.056243896484375, 0.04132080078125, 0.004474639892578125, 0.035369873046875, 0.002899169921875, 0.004810333251953125, -0.009368896484375, 0.0423583984375, 0.016815185546875, 0.0023899078369140625, 0.003482818603515625, 0.0224151611328125, -0.00048089027404785156, 0.0189361572265625, 0.0310211181640625, -0.0154571533203125, 0.01541900634765625, -0.0136566162109375, 0.03375244140625, -0.03607177734375, 0.00879669189453125, -0.0021114349365234375, 0.006664276123046875, -0.048828125, 0.032989501953125, 0.0136260986328125, -0.0010194778442382812, -0.0091400146484375, 0.0237884521484375, 0.011444091796875, -0.0297088623046875, -0.035125732421875, 0.0066680908203125, 0.00832366943359375, 0.0112762451171875, 0.031585693359375, -0.0290679931640625, -0.0240936279296875, 0.0845947265625, 0.00531768798828125, -0.07244873046875, 0.02288818359375, -0.0118408203125, -0.01450347900390625, 0.04119873046875, -0.020050048828125, 0.059844970703125, -0.0173187255859375, -0.0479736328125, -0.0224456787109375, -0.0657958984375, -0.055877685546875, -0.07470703125, -0.018768310546875, -0.02874755859375, -0.009429931640625, 0.06634521484375, -0.05609130859375, -0.015228271484375, 0.0145263671875, -0.004665374755859375, 0.04962158203125, 0.07440185546875, -0.00997161865234375, 0.01456451416015625, 0.0155487060546875, -0.0015363693237304688, -0.032257080078125, -0.007259368896484375, -0.0234375, -0.0108184814453125, 0.0139007568359375, 0.0179901123046875, 0.01287841796875, -0.0102386474609375, 0.020782470703125, 0.01406097412109375, -0.0130157470703125, -0.0311431884765625, 0.01195526123046875, 0.033721923828125, -0.0170745849609375, 0.005588531494140625, 0.01560211181640625, 0.060943603515625, 0.003963470458984375, 0.037811279296875, -0.0014505386352539062, 0.01169586181640625, 0.040924072265625, -0.00833892822265625, -0.029510498046875, -0.0186004638671875, -0.0012054443359375, -0.0177154541015625, 0.00690460205078125, 0.0120086669921875, 0.00476837158203125, -0.02581787109375, -0.0292816162109375, 0.031036376953125, -0.0271453857421875, 0.0264739990234375, -0.0255889892578125, -0.0025691986083984375, 0.007572174072265625, 0.00921630859375, 0.047149658203125, 0.0224761962890625, -0.037200927734375, -0.0212554931640625, -0.0241546630859375, -0.031982421875, 0.0130767822265625, 0.00821685791015625, -0.03466796875, 0.005580902099609375, 0.004695892333984375, 0.0165863037109375, -0.02685546875, -0.0059814453125, -0.0130462646484375, 0.038970947265625, 0.0257110595703125, 0.0633544921875, 0.00855255126953125, 0.015838623046875, 0.02740478515625, 0.057830810546875, 0.03680419921875, 0.01641845703125, -0.027191162109375, -0.04864501953125, 0.0281219482421875, 0.01131439208984375, -0.0009083747863769531, -0.032501220703125, 0.0091705322265625, -0.055084228515625, 0.01727294921875, -0.00748443603515625, -0.0005407333374023438, -0.00667572021484375, 0.0060577392578125, -0.02862548828125, 0.006931304931640625, 0.0167388916015625, -0.0018758773803710938, 0.005237579345703125, 0.017333984375, 0.07830810546875, -0.01468658447265625, -0.01519775390625, -0.0012502670288085938, -0.004730224609375, 0.0266265869140625, 0.00899505615234375, -0.025115966796875, 0.046630859375, 0.047454833984375, -0.00653076171875, 0.0362548828125, 0.032623291015625, 0.012115478515625, -0.009674072265625, 0.01605224609375, -0.045196533203125, -0.021240234375, 0.0111083984375, 0.0131988525390625, -0.0138092041015625, 0.0055999755859375, -0.01788330078125, 0.048248291015625, 0.0557861328125, 0.10296630859375, -0.07379150390625, 0.01165008544921875, 0.01483917236328125, -0.0576171875, 0.02618408203125, 0.024810791015625, -0.03411865234375, -0.0543212890625, 0.0615234375, -0.036834716796875, 0.0098114013671875, 0.0283050537109375, -0.01430511474609375, -0.01317596435546875, -0.0269317626953125, 0.09698486328125, 0.017730712890625, -0.0413818359375, 0.01157379150390625, 0.044464111328125, 0.0014600753784179688, -0.00960540771484375, 0.016021728515625, -0.025604248046875, -0.00786590576171875, -0.031219482421875, 0.0012664794921875, -0.035186767578125, 0.0102996826171875, 0.028564453125, 0.00543975830078125, 0.00702667236328125, 0.03460693359375, -0.00732421875, 0.019500732421875, -0.014984130859375, 0.0238037109375, -0.015350341796875, -0.01739501953125, 0.004146575927734375, 0.020904541015625, -0.0138397216796875, 0.01120758056640625, -0.0310821533203125, -0.0034160614013671875, -0.00966644287109375, 0.005901336669921875, 0.1099853515625, -0.053558349609375, -0.010528564453125, 0.038330078125, -0.0016775131225585938, -0.038421630859375, -0.004238128662109375, 0.0034618377685546875, -0.041778564453125, 0.025604248046875, -0.0057830810546875, 0.03533935546875, 0.016998291015625, 0.00872802734375, -0.03460693359375, 0.0195770263671875, -0.013458251953125, -0.030731201171875, 0.00942230224609375, 0.0226898193359375, -0.0280609130859375, -0.0103912353515625, -0.004978179931640625, 0.057861328125, -0.01464080810546875, 0.0257110595703125, -0.0290985107421875, -0.002475738525390625, 0.0136566162109375, 0.0221099853515625, 0.042755126953125, 0.0008206367492675781, -0.03253173828125, -0.01519012451171875, 0.049560546875, 0.046844482421875, 0.010101318359375, 0.02130126953125, -0.01312255859375, -0.006488800048828125, 0.01366424560546875, -0.033294677734375, 0.026611328125, -0.04449462890625, 0.0040435791015625, 0.00005716085433959961, 0.005489349365234375, -0.0183258056640625, 0.0265350341796875, -0.034149169921875, -0.07293701171875, 0.052703857421875, 0.0289306640625, 0.06854248046875, -0.004730224609375, 0.005702972412109375, -0.00010323524475097656, -0.0213470458984375, 0.0182647705078125, -0.0280303955078125, 0.043060302734375, -0.0084991455078125, 0.021484375, 0.004425048828125, 0.00826263427734375, -0.01160430908203125, 0.0175018310546875, 0.005176544189453125, 0.04144287109375, -0.0264434814453125, -0.001049041748046875, 0.03985595703125, 0.0322265625, 0.01277923583984375, -0.0005321502685546875, 0.034881591796875, 0.0243682861328125, -0.0174713134765625, -0.00812530517578125, 0.0138702392578125, 0.00885772705078125, 0.00537109375, -0.02142333984375, 0.008056640625, 0.034027099609375, 0.04644775390625, -0.006366729736328125, 0.002727508544921875, 0.006805419921875, 0.0104217529296875, -0.0007572174072265625, 0.04339599609375, -0.0224609375, -0.00032639503479003906, -0.0170745849609375, 0.00890350341796875, 0.005336761474609375, 0.0196990966796875, -0.00959014892578125, 0.0316162109375, -0.01033782958984375, -0.0037860870361328125, -0.01513671875, 0.0267791748046875, 0.0205535888671875, 0.0009236335754394531, -0.027496337890625, -0.036346435546875, 0.0732421875, 0.03717041015625, 0.016815185546875, -0.0019464492797851562, -0.01338958740234375, 0.01751708984375, 0.0243988037109375, 0.002079010009765625, 0.05157470703125, -0.004291534423828125, -0.007717132568359375, -0.0006151199340820312, -0.0271759033203125, 0.00620269775390625, -0.044281005859375, -0.0013790130615234375, -0.00669097900390625, 0.039215087890625, 0.0076141357421875, 0.0235443115234375, 0.0096282958984375, 0.0268402099609375, 0.0019330978393554688, -0.0252227783203125, -0.043304443359375, 0.0158843994140625, -0.03759765625, -0.0235443115234375, 0.01284027099609375, 0.015228271484375, -0.021697998046875, 0.007427215576171875, 0.00431060791015625, 0.007061004638671875, 0.0278778076171875, -0.03717041015625, 0.056640625, 0.02239990234375, -0.030609130859375, -0.01192474365234375, 0.03594970703125, -0.0292205810546875, -0.0089569091796875, -0.0218963623046875, 0.00885772705078125, 0.05328369140625, -0.015167236328125, 0.06915283203125, -0.037750244140625, 0.01464080810546875, -0.050811767578125, 0.013885498046875, -0.01180267333984375, -0.0271759033203125, -0.0006155967712402344, 0.045928955078125, 0.023834228515625, -0.01549530029296875, -0.0219268798828125, -0.003604888916015625, 0.029327392578125, -0.038360595703125, 0.004364013671875, -0.032470703125, 0.032958984375, -0.01910400390625, -0.0298919677734375, -0.060882568359375, -0.039794921875, -0.0206146240234375, -0.0014257431030273438, -0.0190582275390625, -0.04962158203125, -0.000934600830078125, 0.02093505859375, -0.06500244140625, -0.07171630859375, -0.006420135498046875, -0.059173583984375, -0.07476806640625, 0.001842498779296875, 0.062408447265625, -0.032379150390625, -0.028045654296875, -0.027374267578125, -0.016632080078125, 0.0030727386474609375, -0.01126861572265625, -0.00946044921875, -0.06488037109375, -0.021514892578125, 0.035003662109375, 0.035614013671875, -0.00859832763671875, 0.0174102783203125, 0.025543212890625, -0.031036376953125, -0.007022857666015625, 0.036468505859375, -0.01284027099609375, 0.0147247314453125, -0.0005688667297363281, 0.00433349609375, 0.028594970703125, 0.00809478759765625, -0.0260467529296875, 0.0212249755859375, 0.01251983642578125, -0.039794921875, 0.0253753662109375, -0.0118408203125, -0.073974609375, 0.035858154296875, -0.0169830322265625, 0.0552978515625, -0.0152130126953125, 0.0142669677734375, -0.049835205078125, -0.042327880859375, -0.004688262939453125, 0.0638427734375, -0.022491455078125, 0.03900146484375, 0.0189971923828125, -0.0278167724609375, 0.041595458984375, 0.03985595703125, 0.03656005859375, 0.08416748046875, -0.0021419525146484375, -0.0188446044921875, -0.033294677734375, 0.01526641845703125, -0.0103607177734375, -0.02471923828125, 0.048797607421875, -0.07916259765625, -0.033111572265625, -0.055999755859375, 0.0227813720703125, -0.00589752197265625, -0.043609619140625, -0.038726806640625, 0.059326171875, -0.0196685791015625, -0.017333984375, -0.0565185546875, 0.0140838623046875, -0.036041259765625, 0.053619384765625, -0.00412750244140625, -0.0032196044921875, 0.0274810791015625, 0.051116943359375, 0.032501220703125, 0.037994384765625, -0.0012331008911132812, 0.07708740234375, -0.0182342529296875, 0.0546875, 0.0059051513671875, -0.0089874267578125, -0.01534271240234375, 0.0035648345947265625, 0.04705810546875, 0.0347900390625, -0.01274871826171875, 0.039093017578125, 0.0226898193359375, -0.0138092041015625, -0.0108642578125, 0.007717132568359375, -0.01776123046875, 0.0036525726318359375, 0.0238494873046875, 0.06732177734375, 0.0105133056640625, -0.0272369384765625, -0.039794921875, -0.01381683349609375, -0.0038547515869140625, -0.000152587890625, 0.0181121826171875, -0.047271728515625, 0.00870513916015625, -0.0030517578125, 0.0011224746704101562, -0.005657196044921875, -0.037200927734375, -0.032470703125, -0.00908660888671875, -0.030731201171875, -0.0014524459838867188, -0.00565338134765625, -0.031951904296875, 0.0887451171875, -0.054534912109375, -0.005001068115234375, 0.033905029296875, 0.0038051605224609375, 0.04541015625, 0.045806884765625, 0.06378173828125, -0.0007653236389160156, -0.034454345703125, 0.01120758056640625, 0.03485107421875, 0.006366729736328125, -0.0308074951171875, -0.0772705078125, -0.0298919677734375, 0.019561767578125, 0.035614013671875, 0.040130615234375, -0.03277587890625, 0.0012989044189453125, 0.042755126953125, -0.00263214111328125, 0.0012159347534179688, -0.03582763671875, -0.0009098052978515625, 0.0166168212890625, -0.0022430419921875, -0.020538330078125, 0.0504150390625, -0.04205322265625, 0.021636962890625, -0.00970458984375, 0.013519287109375, -0.01111602783203125, -0.0210418701171875, -0.0204925537109375, -0.001651763916015625, 0.0101318359375 ]
c5ae00fece3b8fe8f45dd68e28c38890216959f4
Wordpress Stackexchange Q: $wpdb->insert_id I'm using $wpdb->insert to insert data to my plugin table. How can I get the id of the new line I Just insert. Because I have a lot of users that add data to the table I can't use $wpdb->insert_id Because it's not necessary the last one. A: There is no other way, but I can not see how you need any other way then this. I believe that the insert ID accessed by $wpdb is the last ID by this instance of WPDB, other inserts should not affect that but I'm not sure. <?php $wpdb->insert("QUERY"); $this_insert = $wpdb->insert_id; ?>
Q: $wpdb->insert_id I'm using $wpdb->insert to insert data to my plugin table. How can I get the id of the new line I Just insert. Because I have a lot of users that add data to the table I can't use $wpdb->insert_id Because it's not necessary the last one. A: There is no other way, but I can not see how you need any other way then this. I believe that the insert ID accessed by $wpdb is the last ID by this instance of WPDB, other inserts should not affect that but I'm not sure. <?php $wpdb->insert("QUERY"); $this_insert = $wpdb->insert_id; ?> A: $wpdb->insert_id is global withint the database session. since Wordpress creates a new session per user session this is not a problem, even when using a connection pooling. the only caveat is that this variable will always have the last inserted auto-increment ID, so you have to check after each insert. If you really want to capture the list of new inserted records, you can do it inside a stored procedure and capture it in a transaction. or inside a trigger.
wordpress
{ "language": "en", "length": 183, "provenance": "stackexchange_00019.jsonl.gz:469874", "question_score": "7", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/244802" }
[ 0.058074951171875, 0.0240936279296875, 0.0219573974609375, -0.0013141632080078125, 0.0284423828125, -0.0268402099609375, 0.038055419921875, -0.044158935546875, 0.0163116455078125, 0.031402587890625, -0.05120849609375, 0.0131072998046875, -0.034820556640625, -0.0022144317626953125, -0.040496826171875, -0.03753662109375, 0.01116943359375, -0.0265045166015625, -0.010223388671875, -0.0254669189453125, 0.008026123046875, -0.019378662109375, 0.0058441162109375, 0.039581298828125, 0.01593017578125, -0.0020694732666015625, 0.057525634765625, -0.006145477294921875, 0.040191650390625, -0.00913238525390625, 0.0172271728515625, -0.048614501953125, -0.009796142578125, 0.0035686492919921875, 0.0404052734375, 0.0335693359375, 0.0494384765625, 0.0037174224853515625, 0.055023193359375, 0.01398468017578125, 0.046600341796875, -0.0240478515625, -0.031494140625, 0.01268768310546875, -0.037017822265625, -0.0352783203125, 0.042449951171875, 0.005420684814453125, -0.0040283203125, 0.048675537109375, -0.0025787353515625, 0.0224609375, 0.004062652587890625, 0.022125244140625, 0.019805908203125, 0.0225677490234375, -0.0189971923828125, -0.0306243896484375, 0.0288848876953125, 0.03271484375, 0.00472259521484375, -0.02972412109375, 0.01090240478515625, -0.037078857421875, 0.0190582275390625, -0.004154205322265625, 0.05615234375, 0.03521728515625, -0.053009033203125, -0.00949859619140625, 0.00821685791015625, -0.01424407958984375, -0.00011074542999267578, -0.0008797645568847656, -0.04571533203125, -0.018768310546875, 0.05718994140625, -0.01111602783203125, -0.006938934326171875, 0.002590179443359375, -0.01548004150390625, -0.03509521484375, -0.058685302734375, -0.0212249755859375, 0.006145477294921875, 0.006298065185546875, -0.00951385498046875, 0.009063720703125, -0.0160064697265625, -0.0157623291015625, -0.029571533203125, 0.004245758056640625, 0.01549530029296875, -0.0068511962890625, -0.048919677734375, -0.01114654541015625, -0.0110626220703125, 0.0528564453125, -0.045501708984375, 0.038177490234375, -0.01515960693359375, -0.02960205078125, 0.03533935546875, -0.05145263671875, 0.0173187255859375, 0.00962066650390625, -0.0027008056640625, -0.07025146484375, 0.00626373291015625, 0.01062774658203125, -0.01277923583984375, 0.01837158203125, -0.00043845176696777344, -0.01953125, 0.001369476318359375, 0.0170440673828125, -0.0071563720703125, 0.0154876708984375, 0.00249481201171875, 0.005870819091796875, -0.01800537109375, 0.004718780517578125, -0.07147216796875, 0.032440185546875, 0.0005950927734375, -0.028076171875, -0.0011682510375976562, 0.055938720703125, -0.07098388671875, -0.035400390625, -0.018280029296875, 0.0362548828125, 0.10528564453125, 0.07757568359375, 0.0236968994140625, 0.00417327880859375, 0.03759765625, 0.0055999755859375, 0.00347900390625, 0.00433349609375, -0.0308380126953125, -0.0259857177734375, -0.0090789794921875, -0.0521240234375, -0.00704193115234375, 0.012786865234375, 0.006763458251953125, 0.0276947021484375, -0.001003265380859375, -0.042205810546875, -0.0010786056518554688, -0.0212860107421875, 0.00943756103515625, 0.01094818115234375, 0.016387939453125, -0.01146697998046875, 0.01357269287109375, -0.0154876708984375, 0.00740814208984375, -0.0011472702026367188, -0.01090240478515625, -0.004238128662109375, 0.02392578125, -0.043182373046875, -0.04913330078125, 0.0018930435180664062, -0.0545654296875, 0.00044035911560058594, 0.03326416015625, 0.056732177734375, -0.01265716552734375, -0.008209228515625, 0.042877197265625, 0.0128173828125, -0.0233154296875, 0.003631591796875, -0.0016202926635742188, -0.01180267333984375, 0.0257110595703125, 0.0216064453125, -0.0103759765625, -0.01390838623046875, 0.042694091796875, 0.0005764961242675781, -0.049835205078125, 0.07794189453125, 0.0027256011962890625, 0.10235595703125, 0.0145416259765625, 0.0271453857421875, 0.018280029296875, 0.0058135986328125, -0.041229248046875, 0.0029754638671875, -0.01085662841796875, 0.0014390945434570312, -0.01102447509765625, 0.0199737548828125, -0.01435089111328125, -0.01535797119140625, -0.01409912109375, 0.0106964111328125, 0.0171356201171875, 0.004425048828125, -0.042877197265625, 0.01837158203125, -0.0237579345703125, 0.035369873046875, 0.047943115234375, 0.004055023193359375, -0.0262298583984375, -0.010833740234375, 0.0159759521484375, -0.05902099609375, -0.06597900390625, 0.013031005859375, -0.043487548828125, 0.01611328125, -0.0257415771484375, 0.03924560546875, -0.03900146484375, 0.005306243896484375, -0.0235748291015625, -0.029876708984375, 0.0084075927734375, -0.016845703125, -0.0011472702026367188, -0.01320648193359375, 0.022125244140625, -0.002811431884765625, -0.0007734298706054688, -0.0009613037109375, 0.028533935546875, 0.0426025390625, -0.007114410400390625, -0.00957489013671875, -0.0035953521728515625, -0.0865478515625, 0.0163726806640625, 0.0390625, 0.045074462890625, 0.01116943359375, 0.019622802734375, -0.00972747802734375, 0.0019140243530273438, -0.0631103515625, 0.028350830078125, -0.0277557373046875, -0.0034046173095703125, 0.052032470703125, -0.01151275634765625, 0.01031494140625, 0.0241546630859375, -0.0025482177734375, -0.022857666015625, 0.045989990234375, -0.0240478515625, -0.0049591064453125, 0.0005369186401367188, -0.00998687744140625, 0.0023174285888671875, -0.03570556640625, 0.01342010498046875, -0.02789306640625, 0.031524658203125, -0.01215362548828125, 0.0418701171875, 0.041717529296875, 0.0166015625, -0.0345458984375, 0.0050048828125, -0.005649566650390625, -0.008209228515625, 0.0263824462890625, -0.040679931640625, 0.038360595703125, -0.0196533203125, 0.0120086669921875, 0.002262115478515625, 0.01169586181640625, -0.01617431640625, 0.0189971923828125, 0.010284423828125, -0.0180511474609375, -0.0157623291015625, -0.0301055908203125, 0.0220184326171875, -0.010040283203125, -0.04022216796875, -0.0199737548828125, -0.002544403076171875, 0.06988525390625, -0.0150299072265625, 0.05126953125, -0.02496337890625, 0.020660400390625, 0.0175933837890625, -0.027557373046875, 0.032073974609375, -0.032470703125, 0.0023250579833984375, 0.054168701171875, -0.01369476318359375, 0.0078277587890625, 0.0026454925537109375, -0.032806396484375, 0.01464080810546875, -0.00310516357421875, -0.0155181884765625, -0.00608062744140625, -0.06951904296875, 0.003753662109375, 0.041595458984375, 0.0811767578125, -0.00241851806640625, -0.04833984375, 0.005725860595703125, 0.054473876953125, -0.046142578125, -0.0985107421875, -0.05682373046875, -0.06488037109375, -0.002849578857421875, -0.0239715576171875, -0.0264739990234375, 0.0268707275390625, 0.00496673583984375, 0.0154266357421875, -0.0027294158935546875, -0.05291748046875, -0.04351806640625, -0.064453125, -0.058746337890625, 0.0239105224609375, -0.0015430450439453125, 0.0133514404296875, -0.0013408660888671875, 0.048858642578125, -0.0092926025390625, -0.019561767578125, -0.016448974609375, -0.014434814453125, -0.0272216796875, -0.046478271484375, -0.02142333984375, -0.047393798828125, -0.00623321533203125, 0.0004591941833496094, -0.0243682861328125, 0.0008726119995117188, 0.0191650390625, 0.00714111328125, 0.0157928466796875, -0.011810302734375, 0.038055419921875, 0.0124969482421875, -0.03155517578125, 0.020782470703125, 0.049774169921875, -0.032623291015625, 0.026336669921875, -0.02838134765625, -0.016265869140625, -0.0009331703186035156, -0.031768798828125, 0.008209228515625, -0.00933837890625, 0.010009765625, 0.00934600830078125, -0.00027441978454589844, -0.028778076171875, -0.032012939453125, 0.04754638671875, 0.0096435546875, 0.023162841796875, 0.006633758544921875, 0.0379638671875, -0.01412200927734375, -0.0200347900390625, -0.002391815185546875, -0.003101348876953125, -0.0014801025390625, -0.0104827880859375, -0.0218658447265625, -0.0149993896484375, 0.02020263671875, 0.0007314682006835938, 0.03985595703125, -0.0275726318359375, -0.0205078125, 0.0018720626831054688, 0.0943603515625, -0.04327392578125, -0.0147552490234375, 0.0012912750244140625, 0.020355224609375, -0.0282440185546875, -0.0259246826171875, -0.046966552734375, -0.009735107421875, 0.00548553466796875, -0.00733184814453125, -0.037384033203125, 0.0186004638671875, -0.00894927978515625, 0.05828857421875, 0.0241546630859375, -0.01506805419921875, 0.062347412109375, -0.044677734375, 0.0226898193359375, 0.05828857421875, 0.00923919677734375, 0.0279998779296875, -0.04638671875, -0.00717926025390625, -0.0631103515625, 0.005222320556640625, -0.0465087890625, 0.0511474609375, 0.0263671875, -0.0155029296875, -0.0194854736328125, 0.01020050048828125, -0.040740966796875, 0.036651611328125, -0.0207366943359375, 0.0565185546875, -0.0662841796875, -0.0306549072265625, -0.007717132568359375, -0.04339599609375, -0.0170440673828125, -0.045440673828125, -0.0355224609375, -0.006496429443359375, -0.023040771484375, 0.01496124267578125, -0.0255279541015625, 0.0018224716186523438, -0.02117919921875, -0.0477294921875, -0.0203094482421875, 0.031646728515625, -0.0071563720703125, 0.0004949569702148438, -0.06256103515625, -0.048004150390625, 0.04986572265625, -0.0276031494140625, 0.00243377685546875, 0.003475189208984375, 0.110107421875, 0.0214996337890625, -0.00466156005859375, -0.0267791748046875, 0.03985595703125, 0.053436279296875, 0.0312042236328125, 0.019683837890625, 0.021026611328125, -0.030487060546875, 0.03399658203125, 0.05938720703125, -0.00258636474609375, 0.0018939971923828125, 0.043914794921875, -0.004608154296875, -0.045745849609375, 0.0269622802734375, -0.00997161865234375, -0.03314208984375, 0.01546478271484375, -0.026031494140625, -0.01873779296875, -0.022613525390625, 0.034423828125, -0.0278472900390625, 0.0662841796875, -0.0260009765625, -0.0643310546875, 0.0443115234375, -0.0234375, -0.02850341796875, -0.0015125274658203125, -0.0028533935546875, -0.00263214111328125, -0.0458984375, -0.02374267578125, 0.0186309814453125, 0.03387451171875, 0.0234527587890625, 0.022430419921875, 0.026031494140625, -0.005062103271484375, -0.043487548828125, -0.0115814208984375, 0.04425048828125, -0.0279998779296875, -0.045806884765625, 0.00827789306640625, -0.029205322265625, -0.0004086494445800781, 0.045074462890625, -0.0014486312866210938, 0.03790283203125, 0.04815673828125, 0.01418304443359375, 0.002590179443359375, 0.0013475418090820312, 0.0279388427734375, -0.01812744140625, 0.0004355907440185547, 0.0021648406982421875, -0.0135650634765625, 0.0016565322875976562, 0.04376220703125, 0.02880859375, 0.0080718994140625, -0.0276947021484375, 0.0770263671875, 0.019378662109375, 0.045623779296875, 0.0022106170654296875, -0.0244293212890625, 0.036041259765625, 0.0005197525024414062, -0.041656494140625, -0.01220703125, 0.053375244140625, 0.01763916015625, 0.0095367431640625, -0.0024127960205078125, -0.046905517578125, 0.03118896484375, -0.05474853515625, 0.007843017578125, 0.0386962890625, 0.004726409912109375, -0.03607177734375, -0.031768798828125, 0.004909515380859375, 0.041900634765625, -0.01708984375, 0.043731689453125, -0.0300140380859375, 0.0001901388168334961, -0.006008148193359375, -0.018310546875, 0.0011463165283203125, -0.047088623046875, -0.0279541015625, 0.0231475830078125, -0.004947662353515625, -0.05194091796875, 0.027496337890625, 0.006107330322265625, -0.0167694091796875, -0.0201873779296875, 0.042694091796875, -0.0175323486328125, 0.0745849609375, -0.043212890625, -0.008087158203125, -0.035369873046875, 0.00470733642578125, 0.040618896484375, 0.047576904296875, 0.0728759765625, -0.035614013671875, -0.0035800933837890625, -0.028839111328125, 0.033843994140625, -0.0110626220703125, 0.0157623291015625, -0.016326904296875, 0.01425933837890625, 0.033294677734375, -0.011749267578125, -0.03436279296875, 0.019866943359375, -0.00992584228515625, -0.01432037353515625, 0.010467529296875, 0.007251739501953125, 0.0225067138671875, 0.026153564453125, -0.0112762451171875, 0.0232391357421875, 0.00792694091796875, -0.01482391357421875, -0.017578125, 0.01538848876953125, 0.0227508544921875, -0.0003535747528076172, -0.045074462890625, 0.0360107421875, -0.054168701171875, 0.007843017578125, -0.01374053955078125, 0.045989990234375, 0.0142822265625, 0.01039886474609375, -0.0028781890869140625, -0.057159423828125, 0.01113128662109375, -0.00852203369140625, 0.050384521484375, -0.053955078125, -0.062347412109375, 0.005046844482421875, 0.06805419921875, -0.014251708984375, -0.035736083984375, -0.034149169921875, 0.01361846923828125, -0.017578125, 0.033050537109375, 0.046112060546875, 0.025238037109375, 0.056884765625, 0.0012073516845703125, 0.040802001953125, 0.00763702392578125, 0.0184478759765625, -0.015380859375, -0.0038909912109375, 0.045501708984375, 0.0169219970703125, -0.0075531005859375, 0.0284881591796875, -0.0291748046875, 0.04248046875, -0.000751495361328125, 0.040985107421875, -0.043304443359375, 0.050506591796875, 0.01342010498046875, -0.0165252685546875, 0.0294189453125, -0.0154266357421875, -0.01100921630859375, -0.01062774658203125, 0.049591064453125, 0.002414703369140625, -0.015655517578125, 0.0321044921875, 0.0026645660400390625, -0.0004062652587890625, -0.043914794921875, -0.0215606689453125, -0.01361846923828125, 0.050811767578125, -0.0032196044921875, -0.029327392578125, 0.0184478759765625, -0.0255584716796875, -0.00926971435546875, 0.040313720703125, -0.010406494140625, -0.06365966796875, 0.04498291015625, -0.00545501708984375, 0.01000213623046875, 0.03155517578125, 0.0252838134765625, 0.059722900390625, 0.055145263671875, 0.0205535888671875, -0.00782012939453125, 0.0267181396484375, 0.0203857421875, -0.007350921630859375, -0.0158843994140625, -0.0208740234375, 0.034423828125, -0.002071380615234375, 0.01039886474609375, 0.0007424354553222656, -0.005985260009765625, 0.0147247314453125, 0.00445556640625, 0.06597900390625, -0.0645751953125, 0.0099334716796875, 0.032257080078125, 0.001544952392578125, 0.0035991668701171875, -0.0196533203125, -0.00505828857421875, -0.01381683349609375, 0.0228118896484375, -0.018829345703125, 0.0250244140625, 0.007366180419921875, -0.009490966796875, -0.0723876953125, 0.0877685546875, 0.0645751953125, 0.0211334228515625, 0.0013866424560546875, 0.0243682861328125, -0.041717529296875, -0.0088653564453125, -0.017852783203125, 0.0193939208984375, -0.050872802734375, 0.0227813720703125, 0.017608642578125, 0.0046844482421875, 0.02874755859375, 0.0176239013671875, 0.10272216796875, 0.0168914794921875, -0.021209716796875, -0.0107879638671875, 0.038848876953125, 0.037506103515625, -0.0124969482421875, 0.0286712646484375, 0.0140838623046875, 0.0090179443359375, 0.07269287109375, -0.033447265625, 0.0300750732421875, -0.0125579833984375, 0.0450439453125, 0.02593994140625, 0.0088958740234375, 0.007785797119140625, -0.03466796875, -0.035675048828125, 0.050689697265625, -0.036773681640625, -0.036865234375, -0.01476287841796875, -0.001583099365234375, 0.040557861328125, 0.05517578125, -0.059326171875, -0.0284576416015625, -0.0325927734375, 0.0455322265625, 0.0089111328125, 0.006267547607421875, 0.03167724609375, 0.005130767822265625, 0.036376953125, -0.005069732666015625, -0.01076507568359375, -0.001495361328125, 0.01531982421875, 0.03668212890625, 0.016448974609375, 0.01458740234375, -0.060516357421875, -0.01398468017578125, 0.0714111328125, 0.0601806640625, -0.041168212890625, 0.0005540847778320312, 0.0122833251953125, 0.030731201171875, 0.01026153564453125, 0.00362396240234375, 0.058502197265625, -0.02105712890625, -0.01419830322265625, 0.0215301513671875, -0.020050048828125, -0.00984954833984375, 0.0198822021484375, 0.01611328125, 0.044342041015625, -0.03875732421875, -0.037994384765625, -0.06072998046875, 0.04547119140625, 0.011383056640625, 0.0210723876953125, 0.0011987686157226562, 0.0285186767578125, 0.0216522216796875, -0.00804901123046875, -0.006832122802734375, 0.015228271484375, 0.01192474365234375, 0.01020050048828125, -0.01239013671875, -0.00799560546875, 0.0221710205078125, 0.01361083984375, -0.00013589859008789062, 0.064453125, 0.024810791015625, -0.01018524169921875, -0.0257720947265625, 0.003597259521484375, 0.01314544677734375, -0.038238525390625, -0.0244903564453125, -0.05340576171875, 0.038726806640625, 0.024749755859375, 0.0245819091796875, -0.0171356201171875, 0.01531219482421875, 0.040863037109375, -0.0024509429931640625, 0.028961181640625, -0.0037555694580078125, -0.0297088623046875, 0.011077880859375, -0.028472900390625, 0.040069580078125, 0.001373291015625, -0.035614013671875, -0.0042724609375, -0.0163116455078125, 0.01812744140625, -0.0080718994140625, 0.01309967041015625, 0.0013408660888671875, 0.027099609375, 0.0128173828125, -0.00130462646484375, 0.0025119781494140625, -0.028411865234375, 0.043426513671875, 0.00618743896484375, -0.006103515625, 0.0173797607421875, -0.0309906005859375, -0.0153045654296875, 0.0039215087890625, -0.00905609130859375, 0.01457977294921875, -0.018096923828125, 0.040557861328125, 0.0072479248046875, -0.036041259765625, 0.01329803466796875, -0.05474853515625, -0.0177001953125, 0.0202789306640625, 0.0016069412231445312, -0.004695892333984375, 0.0101165771484375, -0.07720947265625, 0.0277252197265625, 0.014984130859375, 0.0233154296875, 0.0298309326171875, -0.0145721435546875, 0.036346435546875, 0.015106201171875, 0.054779052734375, -0.00418853759765625, 0.00643157958984375, -0.042633056640625, -0.0213165283203125, 0.0745849609375, 0.049896240234375, -0.007503509521484375, 0.03802490234375, -0.012786865234375, -0.02154541015625, 0.004718780517578125, -0.0535888671875, 0.007694244384765625, 0.0196075439453125, -0.0221405029296875, -0.005825042724609375, 0.0025806427001953125, -0.0238800048828125, -0.005550384521484375, -0.006420135498046875, 0.0246124267578125, -0.00679779052734375, -0.057220458984375, 0.035675048828125, 0.04718017578125, 0.0887451171875, 0.007785797119140625, 0.042694091796875, 0.0013132095336914062, 0.016632080078125, 0.0036468505859375, -0.039703369140625, -0.01479339599609375, -0.03631591796875, 0.01192474365234375, 0.0177459716796875, -0.018463134765625, 0.0030574798583984375, -0.0625, -0.0112762451171875, -0.00231170654296875, 0.004329681396484375, -0.066650390625, 0.03839111328125, -0.005733489990234375, 0.009368896484375, -0.041473388671875, 0.038818359375, -0.0026531219482421875, 0.0550537109375, -0.037628173828125, -0.07867431640625, -0.00812530517578125, 0.07147216796875, -0.034576416015625, 0.00298309326171875, -0.0005660057067871094, -0.0157318115234375, 0.0102996826171875, 0.007030487060546875, 0.009490966796875, 0.03961181640625, 0.028533935546875, -0.001354217529296875, 0.006366729736328125, 0.0037136077880859375, -0.0032520294189453125, -0.05078125, 0.006378173828125, -0.036468505859375, -0.019378662109375, -0.04815673828125, 0.028411865234375, 0.022064208984375, -0.04180908203125, -0.07904052734375, 0.038421630859375, -0.03076171875, -0.0360107421875, 0.0092620849609375, -0.01099395751953125, -0.007354736328125, -0.00899505615234375, -0.00252532958984375, -0.0213775634765625, -0.0167388916015625, 0.01219940185546875, -0.0087432861328125, 0.00536346435546875, 0.0190277099609375, -0.057098388671875, -0.0584716796875, -0.0101165771484375, 0.00792694091796875, 0.0151214599609375, 0.00673675537109375, -0.0026378631591796875, 0.007740020751953125, 0.0264892578125, -0.042724609375, -0.009521484375, -0.00272369384765625, 0.030029296875, -0.02105712890625, -0.0318603515625, -0.01019287109375, 0.038055419921875, 0.075927734375, 0.07537841796875, 0.0112152099609375, -0.08892822265625, 0.020965576171875, 0.01432037353515625, -0.008209228515625, -0.00765228271484375, 0.002620697021484375, -0.032073974609375, -0.0176544189453125, -0.016082763671875, -0.0124359130859375, -0.004245758056640625, 0.040252685546875, -0.020782470703125, -0.00313568115234375, 0.03717041015625, -0.03851318359375, -0.02606201171875, -0.0138397216796875, 0.041046142578125, -0.0465087890625, -0.03387451171875, -0.01226806640625, 0.0284881591796875, -0.031707763671875, -0.073486328125, 0.0146942138671875, 0.0101776123046875, -0.0379638671875, 0.034698486328125, -0.00623321533203125, 0.03924560546875, -0.0565185546875, -0.0233612060546875, 0.0026378631591796875, 0.01024627685546875, -0.029052734375, 0.01424407958984375, 0.025665283203125, 0.01490020751953125, -0.0294342041015625, 0.06878662109375, 0.01568603515625, 0.022186279296875, -0.0031909942626953125, 0.045562744140625, -0.00814056396484375, -0.01508331298828125, 0.0018749237060546875, -0.0221405029296875, 0.003887176513671875, 0.0469970703125, 0.01232147216796875, -0.0216827392578125, 0.00626373291015625, 0.0308990478515625, 0.0236663818359375, 0.0000069141387939453125 ]
3c0600f5d0285a47a3f66d67370ada4c71de183a
Wordpress Stackexchange Q: No "Add New" Button. How to add new theme? Hii, I don't have the add new button.How to install a new theme? A: Edit config file Go to cpanel -> File Manager -> wp-config.php Click on edit Scroll to the bottom Change define('DISALLOW_FILE_EDIT', true); define('DISALLOW_FILE_MODS', true); to define('DISALLOW_FILE_EDIT', false); define('DISALLOW_FILE_MODS', false); This fixed it for me
Q: No "Add New" Button. How to add new theme? Hii, I don't have the add new button.How to install a new theme? A: Edit config file Go to cpanel -> File Manager -> wp-config.php Click on edit Scroll to the bottom Change define('DISALLOW_FILE_EDIT', true); define('DISALLOW_FILE_MODS', true); to define('DISALLOW_FILE_EDIT', false); define('DISALLOW_FILE_MODS', false); This fixed it for me A: edit the file 'wp-config.php' define('DISALLOW_FILE_MODS', false); A: In my case, the button was missing because it was a multisite install. The Add New button appears only when you go to top bar -> My Sites -> Network Admin -> Themes. From there, you can add new themes and enable them for the rest of the network. A: Themes are just sub-folders in wp-content/themes, when you upload a theme in a zip file to the themes page, it just unzips the file into that folder. If it's a valid theme then it shows up on that page. If for whatever reason this functionality is disabled, or write access isn't possible, that option won't present itself in the user interface, but I would recommend using the manual process instead A: Never ran through such problem but I can suggest you to do the following: If you are a linux user: $cd path_to_your_wordpress_site/wp-content/ ls -lah $sudo chmod -R 755 themes Here h flag to ls command will show you all the ownerships and permissions related to the file. If it didn't help either go to the root directory of the web server: sudo chown -R www-data:www-data your_wordpress_site_folder above command is for ubuntu for centos $sudo chown -R apache:apache your_wordpress_site_folder I hope it helps. A: This might be the problem. The feature only exists for wordpress.ORG and not for sites exists on WordPress.COM A: Why does this happen? It usually happens, if you enable Softaculous Apps Installer> WordPress> Enable Multisite (WPMU), In this case, Wordpress creates 'Network Admin' alongside 'Admin' for using WPMU. Which allows you to upload the theme from 'Network Admin' only. What to do now? Simply re-install and make sure you haven't enabled the option like the image below. What if I wanna use the option? You can simply go to their official website WPMU and learn how to use the features in details. A: define('DISALLOW_FILE_MODS', true); - this was my case, but it wasn't in the wp-config.php, instead, it was in the theme's functions.php file!
wordpress
{ "language": "en", "length": 393, "provenance": "stackexchange_00019.jsonl.gz:469919", "question_score": "9", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/244939" }
[ 0.03900146484375, -0.0179595947265625, 0.014801025390625, -0.0199127197265625, -0.0007710456848144531, -0.022857666015625, 0.023193359375, -0.01557159423828125, -0.04949951171875, 0.0189971923828125, -0.0228729248046875, 0.0166168212890625, -0.01505279541015625, -0.0223388671875, 0.0113372802734375, -0.034759521484375, 0.03399658203125, -0.060455322265625, -0.006984710693359375, -0.01849365234375, -0.0013704299926757812, 0.01044464111328125, 0.0035037994384765625, 0.053131103515625, -0.0245819091796875, 0.03692626953125, 0.053436279296875, -0.028228759765625, 0.00011217594146728516, -0.0096282958984375, 0.0078277587890625, -0.025054931640625, 0.00693511962890625, 0.04193115234375, -0.034393310546875, -0.00916290283203125, -0.003162384033203125, 0.02130126953125, 0.02215576171875, -0.00646209716796875, -0.0018711090087890625, 0.0122833251953125, 0.002254486083984375, 0.07525634765625, -0.032684326171875, -0.060577392578125, 0.003753662109375, -0.04217529296875, -0.0013265609741210938, -0.038970947265625, 0.0160980224609375, 0.01026153564453125, 0.03912353515625, -0.033782958984375, 0.0009331703186035156, 0.0106048583984375, 0.02630615234375, 0.01168060302734375, 0.0102996826171875, -0.014068603515625, -0.022186279296875, 0.03082275390625, 0.01220703125, 0.0005202293395996094, 0.0105133056640625, 0.0021839141845703125, -0.0018787384033203125, 0.01309967041015625, -0.07000732421875, 0.0247650146484375, 0.042694091796875, -0.06060791015625, 0.0031604766845703125, -0.02581787109375, 0.035247802734375, -0.0095977783203125, -0.016357421875, -0.0125274658203125, 0.024932861328125, 0.01959228515625, 0.008453369140625, -0.02362060546875, -0.0113677978515625, -0.019317626953125, -0.0006127357482910156, -0.00933074951171875, 0.0021648406982421875, 0.0013942718505859375, -0.01556396484375, -0.01235198974609375, -0.0179443359375, -0.0306854248046875, -0.0014705657958984375, -0.0073394775390625, -0.002231597900390625, -0.044891357421875, 0.029022216796875, 0.045440673828125, 0.006282806396484375, 0.038421630859375, -0.0091705322265625, -0.04931640625, 0.0714111328125, -0.058837890625, 0.008758544921875, 0.0160980224609375, 0.0005855560302734375, -0.0280914306640625, 0.0209808349609375, 0.016571044921875, -0.0155792236328125, 0.03546142578125, 0.01885986328125, -0.023345947265625, -0.0284576416015625, 0.016937255859375, -0.00946044921875, 0.020965576171875, 0.017303466796875, 0.0220794677734375, -0.005855560302734375, 0.00286865234375, -0.0162200927734375, 0.01303863525390625, 0.0034637451171875, -0.0093536376953125, -0.0080718994140625, 0.01143646240234375, -0.00872039794921875, -0.021942138671875, -0.0296478271484375, 0.038482666015625, 0.0262298583984375, 0.031280517578125, 0.005950927734375, -0.001476287841796875, 0.0073699951171875, -0.003772735595703125, -0.0146331787109375, 0.0089111328125, 0.0189666748046875, -0.0205535888671875, -0.0181884765625, -0.01861572265625, 0.022674560546875, 0.01111602783203125, 0.004817962646484375, 0.0178375244140625, 0.019317626953125, -0.0228118896484375, 0.00560760498046875, -0.0218353271484375, 0.009552001953125, 0.0278472900390625, -0.0290985107421875, -0.004467010498046875, -0.017181396484375, -0.0176849365234375, -0.0096435546875, -0.03448486328125, -0.013885498046875, 0.016998291015625, 0.04010009765625, 0.01343536376953125, -0.0037136077880859375, -0.01247406005859375, 0.0083160400390625, 0.0017242431640625, 0.014129638671875, 0.0277099609375, -0.0004935264587402344, -0.02056884765625, 0.0128021240234375, 0.00547027587890625, -0.005336761474609375, 0.0185394287109375, 0.03662109375, -0.0013885498046875, -0.007110595703125, 0.09722900390625, 0.052825927734375, 0.0032558441162109375, 0.0394287109375, 0.00592041015625, -0.07635498046875, 0.03228759765625, 0.00574493408203125, 0.0849609375, 0.045318603515625, 0.00902557373046875, 0.048309326171875, -0.0292816162109375, 0.006275177001953125, -0.021148681640625, 0.021392822265625, -0.031341552734375, -0.050201416015625, -0.028778076171875, -0.01318359375, 0.016326904296875, -0.01413726806640625, 0.027587890625, -0.00260162353515625, 0.00518035888671875, -0.02447509765625, 0.006999969482421875, -0.0032558441162109375, 0.034149169921875, 0.027130126953125, 0.005939483642578125, -0.0194091796875, -0.040252685546875, 0.047149658203125, -0.07257080078125, -0.045562744140625, 0.03460693359375, -0.05645751953125, 0.02960205078125, 0.0109405517578125, 0.0288238525390625, 0.0016927719116210938, -0.0174713134765625, 0.0235595703125, -0.048004150390625, 0.0242156982421875, -0.031341552734375, 0.003246307373046875, -0.030975341796875, 0.0085296630859375, -0.0038585662841796875, -0.0179595947265625, 0.03326416015625, 0.0086212158203125, -0.00750732421875, -0.0247650146484375, -0.004894256591796875, -0.019195556640625, -0.0797119140625, -0.00241851806640625, 0.06573486328125, 0.014984130859375, 0.0242767333984375, -0.018798828125, 0.0243072509765625, 0.059417724609375, -0.003528594970703125, 0.001983642578125, 0.015350341796875, 0.0215606689453125, 0.05181884765625, 0.0306854248046875, -0.014404296875, 0.01971435546875, -0.034393310546875, 0.0287628173828125, 0.006214141845703125, -0.0338134765625, 0.002162933349609375, -0.039215087890625, -0.0021381378173828125, 0.0020885467529296875, -0.0228118896484375, -0.006381988525390625, -0.0105438232421875, 0.0215911865234375, 0.014984130859375, 0.0196533203125, 0.01490020751953125, -0.0158538818359375, 0.01003265380859375, 0.009307861328125, -0.03863525390625, 0.0056610107421875, 0.015655517578125, -0.0161590576171875, 0.039093017578125, 0.005809783935546875, -0.01016998291015625, 0.00554656982421875, 0.001987457275390625, -0.05364990234375, -0.037994384765625, -0.0110931396484375, -0.0179290771484375, 0.006008148193359375, -0.0830078125, 0.02783203125, -0.032073974609375, -0.0087890625, -0.011474609375, 0.006923675537109375, -0.0031681060791015625, -0.0294952392578125, 0.01361083984375, -0.0006880760192871094, -0.0281219482421875, -0.03369140625, 0.0246429443359375, -0.0102996826171875, 0.01099395751953125, 0.01788330078125, 0.049530029296875, -0.002017974853515625, 0.018798828125, 0.019287109375, -0.01244354248046875, 0.011962890625, 0.044189453125, 0.0175933837890625, 0.02655029296875, -0.09454345703125, -0.01378631591796875, 0.0290679931640625, -0.00553131103515625, 0.014495849609375, -0.01861572265625, -0.0236053466796875, 0.0103912353515625, -0.050201416015625, -0.0272369384765625, -0.06097412109375, -0.055816650390625, 0.0038604736328125, -0.0020160675048828125, -0.0178375244140625, 0.01061248779296875, 0.0189666748046875, 0.01959228515625, 0.0101165771484375, -0.0509033203125, -0.004871368408203125, -0.052337646484375, -0.046051025390625, -0.042327880859375, 0.0145416259765625, 0.006114959716796875, -0.003467559814453125, 0.07867431640625, -0.0016450881958007812, -0.01198577880859375, 0.0229949951171875, -0.046051025390625, 0.0231781005859375, 0.0292510986328125, 0.05224609375, -0.00026535987854003906, 0.0060272216796875, 0.0206756591796875, 0.00899505615234375, 0.039398193359375, -0.056549072265625, -0.043487548828125, -0.0330810546875, -0.07684326171875, -0.042205810546875, 0.043060302734375, 0.043487548828125, -0.08843994140625, -0.01461029052734375, -0.09906005859375, -0.00788116455078125, 0.022003173828125, -0.01145172119140625, 0.0158538818359375, -0.01439666748046875, -0.0220947265625, 0.034423828125, 0.0112457275390625, -0.0016393661499023438, -0.0101776123046875, 0.00624847412109375, -0.0054779052734375, 0.04205322265625, -0.0086517333984375, -0.015838623046875, -0.0279998779296875, 0.0010814666748046875, -0.0232391357421875, 0.030426025390625, 0.0038967132568359375, 0.013580322265625, 0.0002830028533935547, 0.0169525146484375, -0.006679534912109375, -0.0714111328125, 0.04144287109375, -0.0309600830078125, 0.0172882080078125, -0.044036865234375, -0.01392364501953125, 0.00492095947265625, 0.0982666015625, -0.058685302734375, -0.012725830078125, 0.01324462890625, 0.0205535888671875, -0.011016845703125, -0.043609619140625, -0.0264434814453125, -0.040191650390625, -0.0289459228515625, 0.00949859619140625, -0.00005728006362915039, -0.01360321044921875, -0.0260467529296875, -0.01555633544921875, -0.0321044921875, -0.0157928466796875, 0.06365966796875, -0.00860595703125, 0.00994873046875, 0.03839111328125, -0.0198822021484375, 0.019744873046875, -0.055908203125, 0.0138702392578125, -0.103759765625, -0.01482391357421875, -0.044952392578125, 0.06451416015625, -0.01117706298828125, 0.028045654296875, -0.045135498046875, 0.026336669921875, 0.00885009765625, -0.0131988525390625, -0.01169586181640625, 0.0095062255859375, -0.01328277587890625, -0.0229034423828125, -0.0303955078125, -0.01947021484375, 0.0033283233642578125, -0.01024627685546875, -0.016387939453125, 0.03515625, -0.0294647216796875, 0.0249481201171875, -0.00537109375, -0.0159454345703125, 0.00571441650390625, -0.01543426513671875, 0.0162811279296875, 0.03936767578125, -0.00010627508163452148, 0.01151275634765625, -0.0295562744140625, -0.007396697998046875, -0.002849578857421875, -0.043121337890625, -0.002941131591796875, 0.032073974609375, 0.09710693359375, 0.030609130859375, 0.0131072998046875, -0.0699462890625, 0.028472900390625, 0.0310516357421875, 0.029571533203125, 0.0184173583984375, -0.00238800048828125, -0.01287078857421875, -0.0013818740844726562, 0.022857666015625, -0.00988006591796875, -0.0214385986328125, 0.0643310546875, -0.005794525146484375, -0.0150604248046875, 0.0289459228515625, -0.0212860107421875, 0.04364013671875, -0.03887939453125, -0.017791748046875, 0.00374603271484375, -0.0008363723754882812, 0.00406646728515625, 0.0058746337890625, 0.017578125, -0.00804901123046875, -0.02520751953125, 0.0170745849609375, -0.01873779296875, 0.02587890625, -0.00823974609375, 0.0166778564453125, -0.01262664794921875, -0.0004646778106689453, -0.00635528564453125, 0.0088043212890625, 0.041595458984375, -0.00428009033203125, 0.042572021484375, 0.0247802734375, -0.0014543533325195312, -0.0430908203125, -0.0261688232421875, 0.05426025390625, 0.026031494140625, -0.049468994140625, 0.013641357421875, 0.00959014892578125, 0.07550048828125, 0.022552490234375, 0.004558563232421875, 0.025482177734375, 0.0062408447265625, -0.0024166107177734375, -0.007843017578125, 0.01251983642578125, -0.035491943359375, -0.016357421875, 0.004169464111328125, 0.0203704833984375, -0.0229339599609375, 0.043975830078125, -0.01509857177734375, -0.00394439697265625, -0.007354736328125, 0.00479888916015625, 0.0263519287109375, 0.0274505615234375, 0.0138092041015625, 0.005229949951171875, 0.007602691650390625, 0.0138092041015625, -0.036865234375, 0.011199951171875, -0.051177978515625, -0.003124237060546875, 0.0406494140625, 0.055389404296875, -0.00695037841796875, -0.033111572265625, 0.0163116455078125, -0.0214996337890625, 0.005084991455078125, -0.03411865234375, -0.0027103424072265625, -0.014068603515625, 0.0176849365234375, 0.06390380859375, 0.0030975341796875, 0.0007805824279785156, -0.0104217529296875, 0.0297088623046875, -0.0272369384765625, 0.0258026123046875, 0.031463623046875, -0.013031005859375, -0.0013399124145507812, -0.0029296875, -0.035919189453125, 0.01245880126953125, 0.0282135009765625, -0.046600341796875, -0.0285491943359375, -0.02984619140625, -0.04632568359375, 0.04541015625, 0.01306915283203125, 0.0198822021484375, -0.009429931640625, -0.0201416015625, 0.01314544677734375, 0.00160980224609375, 0.0237274169921875, -0.02978515625, 0.0024585723876953125, -0.0264739990234375, -0.059173583984375, -0.036376953125, -0.037506103515625, -0.0088958740234375, -0.027313232421875, 0.016998291015625, 0.0259246826171875, 0.0143585205078125, -0.0341796875, -0.057281494140625, -0.0230712890625, 0.03363037109375, 0.0440673828125, 0.047271728515625, -0.003559112548828125, 0.00787353515625, 0.00452423095703125, 0.031982421875, -0.0085906982421875, -0.00916290283203125, -0.022857666015625, -0.019012451171875, 0.016387939453125, -0.015960693359375, -0.031585693359375, -0.00958251953125, -0.03668212890625, 0.0019083023071289062, 0.042510986328125, -0.006885528564453125, 0.03594970703125, -0.031219482421875, -0.0010356903076171875, -0.01186370849609375, 0.0170440673828125, -0.05133056640625, -0.01084136962890625, 0.0227508544921875, -0.0482177734375, 0.01255035400390625, -0.00983428955078125, 0.005695343017578125, 0.0167694091796875, -0.041290283203125, 0.0021038055419921875, 0.0550537109375, -0.0670166015625, 0.07073974609375, 0.05889892578125, 0.0244140625, 0.046356201171875, -0.00421142578125, 0.028900146484375, -0.0174407958984375, 0.0296478271484375, -0.0616455078125, -0.028594970703125, 0.0496826171875, 0.034515380859375, -0.005401611328125, 0.06182861328125, -0.006969451904296875, 0.0261993408203125, 0.044921875, 0.07879638671875, -0.0850830078125, 0.0279693603515625, 0.016204833984375, -0.002681732177734375, 0.03179931640625, 0.007518768310546875, 0.0112762451171875, -0.0283355712890625, 0.050140380859375, -0.0161285400390625, 0.0288543701171875, 0.0150146484375, -0.03558349609375, -0.007518768310546875, -0.00977325439453125, 0.013671875, 0.006805419921875, -0.0209197998046875, 0.00649261474609375, 0.00872039794921875, 0.00040650367736816406, 0.00832366943359375, -0.0205841064453125, -0.01183319091796875, -0.033416748046875, -0.04742431640625, -0.02728271484375, -0.0304107666015625, -0.005146026611328125, 0.03912353515625, -0.0010528564453125, -0.018157958984375, 0.026092529296875, -0.017669677734375, 0.02581787109375, -0.00656890869140625, -0.0218048095703125, -0.002017974853515625, -0.0240325927734375, 0.006900787353515625, -0.00920867919921875, 0.0214080810546875, 0.01114654541015625, 0.005313873291015625, -0.059112548828125, 0.0035762786865234375, 0.023284912109375, 0.06689453125, -0.046295166015625, -0.00917816162109375, 0.042755126953125, 0.0008063316345214844, -0.011260986328125, 0.032196044921875, -0.0142669677734375, -0.017791748046875, 0.00855255126953125, 0.0048065185546875, -0.0098419189453125, 0.03173828125, 0.053070068359375, -0.037261962890625, 0.102783203125, 0.0005979537963867188, -0.031158447265625, 0.008758544921875, 0.06036376953125, -0.061309814453125, 0.00949859619140625, -0.01081085205078125, 0.055908203125, -0.01308441162109375, 0.024566650390625, -0.0250701904296875, 0.002857208251953125, 0.014739990234375, 0.038116455078125, 0.04425048828125, 0.007068634033203125, 0.0246734619140625, 0.02655029296875, 0.07965087890625, 0.06097412109375, 0.005588531494140625, -0.0238494873046875, -0.0284576416015625, -0.0164794921875, 0.0357666015625, -0.019287109375, 0.0205841064453125, 0.0142974853515625, -0.0289154052734375, -0.01110076904296875, 0.0008039474487304688, -0.0111846923828125, 0.030853271484375, -0.00870513916015625, -0.025054931640625, 0.01153564453125, -0.0006165504455566406, 0.0152587890625, -0.017578125, 0.0104827880859375, -0.017303466796875, 0.026885986328125, 0.01523590087890625, -0.0213623046875, 0.02789306640625, 0.00789642333984375, -0.003643035888671875, -0.051239013671875, 0.007694244384765625, -0.04925537109375, -0.048583984375, -0.02191162109375, 0.05108642578125, -0.064697265625, -0.0139312744140625, 0.03924560546875, 0.0188140869140625, -0.032257080078125, -0.02569580078125, 0.0626220703125, 0.0234375, -0.0123138427734375, -0.0157623291015625, 0.012603759765625, 0.00481414794921875, -0.0163116455078125, 0.00347900390625, 0.0281524658203125, 0.013763427734375, 0.01152801513671875, -0.03375244140625, 0.00873565673828125, 0.03656005859375, 0.009368896484375, -0.01024627685546875, 0.01800537109375, -0.018524169921875, 0.01629638671875, -0.01763916015625, -0.00019347667694091797, -0.014129638671875, 0.028350830078125, 0.0216217041015625, 0.057891845703125, -0.004344940185546875, -0.015350341796875, 0.0004019737243652344, 0.025238037109375, 0.00014209747314453125, 0.00927734375, -0.048065185546875, -0.05963134765625, 0.017120361328125, 0.042388916015625, -0.00014150142669677734, 0.038848876953125, 0.0280303955078125, 0.047637939453125, 0.01776123046875, -0.00484466552734375, 0.055572509765625, -0.0167236328125, 0.005153656005859375, -0.0282135009765625, 0.0367431640625, 0.0369873046875, 0.0083465576171875, -0.0190277099609375, 0.015625, 0.07049560546875, -0.00493621826171875, -0.0109100341796875, 0.006397247314453125, -0.0270233154296875, 0.045654296875, -0.0032138824462890625, 0.032318115234375, 0.01959228515625, -0.049346923828125, 0.000015020370483398438, -0.025848388671875, -0.031219482421875, 0.0306243896484375, 0.03875732421875, -0.034088134765625, 0.038177490234375, -0.0244140625, -0.0168609619140625, -0.0267791748046875, 0.01387786865234375, 0.007022857666015625, 0.00824737548828125, 0.01739501953125, -0.00928497314453125, -0.07373046875, -0.042816162109375, -0.038726806640625, 0.0306549072265625, 0.013092041015625, 0.07098388671875, -0.016265869140625, 0.0170440673828125, -0.0303192138671875, 0.00937652587890625, -0.007415771484375, -0.00725555419921875, 0.047454833984375, 0.062744140625, -0.004856109619140625, -0.037689208984375, -0.0423583984375, 0.02093505859375, 0.01395416259765625, -0.008087158203125, 0.0283966064453125, -0.03924560546875, 0.026580810546875, -0.00812530517578125, 0.006378173828125, -0.0146026611328125, -0.050079345703125, -0.02880859375, 0.036102294921875, -0.006214141845703125, 0.00807952880859375, -0.034698486328125, -0.002155303955078125, 0.016937255859375, 0.017181396484375, 0.0144805908203125, 0.05255126953125, 0.01605224609375, 0.0228271484375, -0.04119873046875, -0.08013916015625, -0.00801849365234375, -0.01078033447265625, -0.01384735107421875, 0.00722503662109375, 0.054718017578125, 0.0162200927734375, -0.06005859375, 0.0162353515625, 0.0430908203125, 0.053680419921875, -0.0227813720703125, 0.01556396484375, 0.02313232421875, -0.0125732421875, 0.032562255859375, 0.0218505859375, -0.01287841796875, -0.020782470703125, -0.0289764404296875, 0.0012493133544921875, -0.01354217529296875, -0.0391845703125, -0.04571533203125, 0.05462646484375, 0.044464111328125, -0.0008873939514160156, -0.11102294921875, 0.0733642578125, -0.042236328125, 0.08306884765625, -0.0269622802734375, -0.044525146484375, 0.00522613525390625, 0.0170440673828125, -0.0223236083984375, -0.0161590576171875, -0.03228759765625, 0.014739990234375, -0.00717926025390625, -0.005229949951171875, -0.01433563232421875, 0.00711822509765625, 0.06689453125, 0.0089569091796875, -0.01727294921875, 0.076416015625, -0.020782470703125, -0.007663726806640625, 0.035308837890625, -0.0321044921875, -0.02801513671875, -0.059051513671875, 0.0188446044921875, -0.10064697265625, -0.0222015380859375, -0.058868408203125, 0.004642486572265625, -0.00969696044921875, -0.0711669921875, -0.11712646484375, -0.0019474029541015625, -0.0183258056640625, -0.04864501953125, -0.051544189453125, -0.002361297607421875, -0.00872039794921875, 0.011016845703125, -0.01629638671875, -0.0246734619140625, -0.005764007568359375, 0.04937744140625, -0.00811767578125, 0.00533294677734375, 0.0132293701171875, 0.00807952880859375, -0.036407470703125, 0.003475189208984375, 0.005992889404296875, -0.0292205810546875, 0.05615234375, -0.048675537109375, 0.056915283203125, 0.0469970703125, -0.0474853515625, -0.044891357421875, -0.0287017822265625, -0.005748748779296875, -0.0323486328125, -0.05706787109375, -0.0179595947265625, -0.03326416015625, 0.09722900390625, 0.007549285888671875, 0.00717926025390625, -0.0008101463317871094, 0.0023345947265625, -0.0193939208984375, -0.0254364013671875, 0.01108551025390625, 0.0198211669921875, -0.058868408203125, -0.003971099853515625, 0.0322265625, -0.003200531005859375, -0.0018787384033203125, -0.0038585662841796875, -0.02978515625, -0.0026607513427734375, 0.01285552978515625, 0.016510009765625, -0.040985107421875, -0.017303466796875, 0.1005859375, -0.03900146484375, 0.053253173828125, -0.01245880126953125, 0.0187530517578125, 0.0810546875, -0.01065826416015625, -0.001903533935546875, 0.035980224609375, -0.0372314453125, 0.01439666748046875, -0.0000034570693969726562, 0.049652099609375, -0.060394287109375, -0.00865936279296875, 0.0023288726806640625, 0.0154876708984375, -0.01059722900390625, 0.0135040283203125, -0.01366424560546875, 0.052154541015625, -0.0263214111328125, 0.100830078125, -0.0180816650390625, 0.019744873046875, -0.0242767333984375, 0.0192108154296875, -0.031768798828125, 0.020721435546875, 0.01494598388671875, -0.0129852294921875, 0.0037364959716796875, -0.0163421630859375, -0.0025424957275390625, -0.0199127197265625, 0.003082275390625, -0.0035495758056640625, -0.0138702392578125, 0.00952911376953125 ]
e02d6ba85a6dd0cdac495449d4fd57e9e0dab179
Wordpress Stackexchange Q: Wordpress post visible only those with a link I posted this question here because it is regarding security. I wanted to know is there any way to WordPress post be only visible when someone has a link. And not to be shown in search or recent posts. I am asking this because i own english-only website and I wish to post something in my language and share link within my country so that other english visitors do not be confused with article on Serbian language. Regards A: Real solution to my question is to install UCE (Ultimate Category Excluder) which allows me to exclude post for showing in front page, feeds, archives, and search results. I can choose where I want it to show, if I do. https://wordpress.org/plugins/ultimate-category-excluder/
Q: Wordpress post visible only those with a link I posted this question here because it is regarding security. I wanted to know is there any way to WordPress post be only visible when someone has a link. And not to be shown in search or recent posts. I am asking this because i own english-only website and I wish to post something in my language and share link within my country so that other english visitors do not be confused with article on Serbian language. Regards A: Real solution to my question is to install UCE (Ultimate Category Excluder) which allows me to exclude post for showing in front page, feeds, archives, and search results. I can choose where I want it to show, if I do. https://wordpress.org/plugins/ultimate-category-excluder/ A: You should select "Password-protected" below the post PUBLISH button. (Or PRIVATE, if sharing only with logged-in users).
wordpress
{ "language": "en", "length": 147, "provenance": "stackexchange_00019.jsonl.gz:469922", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/244946" }
[ 0.0704345703125, -0.002208709716796875, 0.033782958984375, 0.0286865234375, 0.01271820068359375, -0.0408935546875, 0.08294677734375, -0.057403564453125, 0.03167724609375, 0.00553131103515625, -0.0079193115234375, -0.016357421875, -0.0006432533264160156, -0.0421142578125, 0.004695892333984375, -0.013427734375, 0.0170440673828125, 0.050994873046875, 0.0712890625, -0.004108428955078125, -0.00701141357421875, -0.0030422210693359375, 0.0859375, -0.035736083984375, 0.01197052001953125, -0.028839111328125, 0.054473876953125, -0.0240478515625, 0.0066680908203125, -0.020477294921875, 0.0258636474609375, 0.0017805099487304688, 0.00995635986328125, 0.0104522705078125, 0.0019683837890625, -0.035980224609375, -0.0156707763671875, 0.01151275634765625, 0.004932403564453125, -0.005207061767578125, -0.010650634765625, 0.017608642578125, -0.03387451171875, -0.0085601806640625, -0.029052734375, -0.03546142578125, -0.0020313262939453125, -0.019866943359375, -0.0080413818359375, 0.01534271240234375, 0.0107574462890625, 0.032806396484375, 0.01242828369140625, 0.0114593505859375, 0.004253387451171875, 0.0169830322265625, -0.0145111083984375, 0.042144775390625, 0.050994873046875, -0.02294921875, -0.047332763671875, -0.0279388427734375, 0.0079345703125, -0.0174102783203125, -0.01306915283203125, -0.012847900390625, -0.0085906982421875, 0.01390838623046875, -0.068359375, -0.0307159423828125, 0.05535888671875, -0.031524658203125, 0.016204833984375, -0.022064208984375, -0.032501220703125, -0.028045654296875, 0.00872039794921875, -0.049468994140625, 0.01198577880859375, -0.007572174072265625, -0.030242919921875, -0.01297760009765625, -0.0017232894897460938, -0.028076171875, -0.0213623046875, -0.0198211669921875, -0.026824951171875, 0.01363372802734375, -0.0203094482421875, -0.0254974365234375, -0.0199127197265625, -0.0118408203125, -0.072265625, 0.0301055908203125, 0.0046539306640625, -0.01502227783203125, 0.0494384765625, 0.051300048828125, -0.0428466796875, -0.01261138916015625, -0.03350830078125, -0.01364898681640625, -0.0131988525390625, -0.0176239013671875, -0.00844573974609375, 0.0302886962890625, -0.003353118896484375, 0.0614013671875, 0.044525146484375, 0.03729248046875, 0.011749267578125, 0.019500732421875, -0.0132293701171875, 0.0157012939453125, -0.0209197998046875, 0.01727294921875, -0.03387451171875, 0.0193023681640625, -0.0171356201171875, 0.051361083984375, 0.01245880126953125, 0.039337158203125, -0.01418304443359375, -0.037872314453125, -0.006290435791015625, -0.01708984375, -0.022247314453125, -0.00606536865234375, 0.01401519775390625, 0.034637451171875, -0.031951904296875, -0.01306915283203125, 0.04107666015625, 0.005641937255859375, -0.0054473876953125, -0.025909423828125, -0.051239013671875, -0.0043487548828125, -0.03204345703125, 0.031646728515625, -0.053863525390625, -0.04779052734375, 0.0504150390625, -0.038818359375, -0.0037384033203125, 0.0208892822265625, 0.0075531005859375, 0.01119232177734375, -0.00939178466796875, -0.04107666015625, -0.00846099853515625, -0.01898193359375, 0.049774169921875, -0.012969970703125, -0.055816650390625, -0.0177001953125, 0.039764404296875, -0.0272674560546875, -0.0421142578125, -0.0538330078125, 0.0679931640625, 0.005008697509765625, -0.0000642538070678711, 0.036407470703125, -0.004364013671875, -0.014617919921875, -0.059783935546875, -0.0014619827270507812, 0.02886962890625, 0.01049041748046875, 0.0038433074951171875, -0.00786590576171875, 0.0765380859375, -0.0013170242309570312, -0.023040771484375, 0.02618408203125, 0.0052490234375, 0.046478271484375, 0.000050127506256103516, 0.0169677734375, 0.0273590087890625, -0.026275634765625, 0.07366943359375, -0.006107330322265625, -0.04290771484375, 0.0216217041015625, 0.0233306884765625, 0.045379638671875, -0.0277557373046875, 0.034210205078125, 0.049346923828125, 0.053192138671875, 0.04254150390625, -0.01202392578125, -0.032440185546875, -0.03656005859375, 0.0185546875, 0.0233612060546875, -0.0254974365234375, -0.00206756591796875, -0.005146026611328125, 0.004547119140625, 0.01776123046875, 0.00435638427734375, -0.01338958740234375, 0.0091094970703125, -0.0092010498046875, 0.029571533203125, -0.0345458984375, 0.0128631591796875, 0.0206451416015625, -0.01371002197265625, -0.0039825439453125, -0.0180816650390625, 0.011383056640625, -0.006687164306640625, -0.03533935546875, 0.00894927978515625, -0.0148468017578125, 0.038909912109375, 0.004909515380859375, -0.039306640625, -0.00547027587890625, 0.0028209686279296875, 0.026611328125, -0.0207672119140625, 0.007781982421875, -0.0249481201171875, 0.0254669189453125, 0.017608642578125, -0.0306243896484375, -0.005138397216796875, 0.0029506683349609375, -0.01165008544921875, -0.040618896484375, 0.0126953125, 0.01250457763671875, -0.004276275634765625, 0.0139617919921875, 0.0419921875, 0.0286865234375, 0.017486572265625, -0.016265869140625, 0.01483154296875, 0.016510009765625, -0.053924560546875, 0.0112762451171875, -0.00103759765625, -0.01074981689453125, 0.020904541015625, 0.0277099609375, 0.011444091796875, 0.00353240966796875, -0.034576416015625, 0.01468658447265625, 0.01284027099609375, 0.039581298828125, 0.0350341796875, -0.0240936279296875, 0.004932403564453125, 0.0070953369140625, 0.0191650390625, -0.03594970703125, 0.0167083740234375, 0.034088134765625, -0.039703369140625, 0.019622802734375, 0.0123443603515625, -0.01287078857421875, -0.0298919677734375, 0.0276947021484375, 0.05987548828125, 0.00675201416015625, 0.045257568359375, 0.035736083984375, 0.00464630126953125, -0.005603790283203125, -0.03399658203125, 0.0268402099609375, 0.037017822265625, -0.027252197265625, -0.0017843246459960938, 0.02960205078125, -0.01485443115234375, 0.00569915771484375, -0.0219879150390625, 0.02886962890625, -0.031524658203125, 0.0290069580078125, 0.0243377685546875, 0.0243072509765625, 0.03265380859375, -0.00675201416015625, 0.059814453125, -0.0151519775390625, -0.0137786865234375, -0.050140380859375, -0.05926513671875, 0.056854248046875, -0.037200927734375, 0.01219940185546875, 0.08111572265625, 0.021575927734375, 0.01076507568359375, 0.00148773193359375, 0.032928466796875, -0.00255584716796875, 0.0008378028869628906, -0.026275634765625, -0.00885772705078125, -0.066162109375, -0.0360107421875, 0.01415252685546875, -0.04681396484375, 0.006866455078125, -0.01534271240234375, -0.0244293212890625, -0.004261016845703125, -0.08203125, -0.01751708984375, -0.0015468597412109375, -0.060150146484375, -0.00033092498779296875, 0.0501708984375, -0.033233642578125, -0.0269622802734375, 0.0787353515625, -0.005218505859375, -0.02490234375, 0.0009617805480957031, -0.051513671875, -0.0103912353515625, -0.020751953125, 0.041015625, -0.036865234375, -0.00522613525390625, 0.00408172607421875, 0.049407958984375, 0.006603240966796875, -0.05108642578125, -0.02117919921875, 0.033203125, -0.035186767578125, -0.0189208984375, -0.025604248046875, 0.00034737586975097656, -0.006008148193359375, 0.0226898193359375, 0.0007824897766113281, -0.0020999908447265625, -0.00852203369140625, -0.0176239013671875, 0.0357666015625, 0.01214599609375, 0.0226287841796875, -0.00568389892578125, -0.042144775390625, 0.0255126953125, -0.005420684814453125, -0.034210205078125, -0.0034027099609375, 0.00466156005859375, -0.02099609375, -0.01403045654296875, 0.0028095245361328125, -0.019134521484375, -0.03387451171875, 0.005016326904296875, 0.01320648193359375, 0.01409149169921875, -0.0047760009765625, -0.0293731689453125, 0.01264190673828125, 0.008453369140625, 0.0240325927734375, -0.0027637481689453125, -0.00829315185546875, -0.0265045166015625, 0.0325927734375, -0.0204620361328125, -0.003814697265625, -0.0171661376953125, 0.03765869140625, -0.0261688232421875, 0.01641845703125, 0.0263671875, 0.003437042236328125, 0.0230560302734375, -0.004642486572265625, -0.0258026123046875, -0.007579803466796875, 0.035797119140625, -0.0362548828125, -0.00492095947265625, 0.0215301513671875, 0.0016241073608398438, -0.00876617431640625, -0.02459716796875, -0.06494140625, 0.0008401870727539062, -0.057586669921875, 0.002765655517578125, -0.01084136962890625, -0.0202178955078125, -0.025482177734375, 0.024139404296875, -0.0455322265625, -0.010162353515625, 0.03277587890625, -0.00736236572265625, -0.00016438961029052734, 0.01081085205078125, 0.002246856689453125, 0.0028972625732421875, -0.030059814453125, -0.005565643310546875, -0.044921875, 0.0004355907440185547, 0.00296783447265625, -0.0039520263671875, -0.0217437744140625, 0.035980224609375, -0.0223236083984375, 0.016387939453125, 0.016204833984375, 0.0760498046875, -0.0174560546875, -0.04010009765625, 0.043426513671875, 0.04522705078125, 0.025604248046875, 0.021697998046875, 0.0117034912109375, -0.017547607421875, -0.05731201171875, -0.0029964447021484375, -0.020904541015625, 0.0034046173095703125, -0.0041656494140625, -0.036285400390625, -0.02996826171875, -0.060699462890625, -0.03302001953125, 0.046051025390625, -0.0237579345703125, 0.01519775390625, -0.0902099609375, -0.049774169921875, 0.04583740234375, 0.019622802734375, -0.050445556640625, 0.0069732666015625, 0.026092529296875, 0.0036792755126953125, -0.037109375, -0.0499267578125, -0.01073455810546875, 0.030242919921875, 0.027618408203125, 0.035186767578125, 0.0265655517578125, -0.028900146484375, 0.0382080078125, 0.02972412109375, -0.0138397216796875, 0.01434326171875, 0.0535888671875, -0.018829345703125, -0.054931640625, 0.04095458984375, -0.01544952392578125, -0.0174407958984375, -0.0008029937744140625, 0.007381439208984375, -0.0300140380859375, 0.038055419921875, 0.05340576171875, -0.01239013671875, 0.004222869873046875, -0.04400634765625, 0.0220489501953125, -0.01273345947265625, 0.0253143310546875, 0.053375244140625, 0.055572509765625, -0.007076263427734375, 0.0011472702026367188, 0.0268402099609375, -0.01049041748046875, 0.03009033203125, -0.0016040802001953125, -0.02734375, 0.0149688720703125, 0.002986907958984375, -0.0250244140625, 0.0193939208984375, -0.009307861328125, 0.04254150390625, -0.0004930496215820312, -0.06353759765625, 0.00848388671875, -0.0039520263671875, 0.0309906005859375, 0.02520751953125, -0.002033233642578125, 0.01169586181640625, -0.0172882080078125, -0.00611114501953125, 0.0160369873046875, 0.0223541259765625, -0.05340576171875, -0.00754547119140625, 0.0009655952453613281, 0.005123138427734375, -0.0015811920166015625, -0.00727081298828125, 0.0802001953125, 0.007297515869140625, 0.03857421875, -0.03826904296875, 0.01113128662109375, -0.005542755126953125, 0.023834228515625, 0.00897979736328125, 0.00678253173828125, 0.01261138916015625, 0.0108642578125, 0.0200653076171875, -0.023284912109375, -0.019805908203125, 0.0277557373046875, -0.0006875991821289062, 0.01406097412109375, 0.01045989990234375, 0.017425537109375, 0.0283966064453125, -0.037353515625, 0.046051025390625, 0.0230865478515625, -0.036834716796875, -0.03814697265625, -0.005985260009765625, 0.0192108154296875, 0.01837158203125, -0.030029296875, -0.01236724853515625, -0.050689697265625, -0.01287841796875, 0.031707763671875, -0.040679931640625, 0.0110015869140625, 0.004489898681640625, 0.01202392578125, -0.0202789306640625, -0.0039215087890625, 0.0006709098815917969, 0.01015472412109375, -0.024169921875, -0.00893402099609375, 0.0278167724609375, -0.0009751319885253906, 0.0191802978515625, -0.0021343231201171875, -0.0297393798828125, 0.0745849609375, 0.02288818359375, 0.00997161865234375, -0.0313720703125, -0.0714111328125, 0.018310546875, -0.037261962890625, -0.01477813720703125, -0.01275634765625, -0.0166168212890625, -0.0772705078125, -0.0175323486328125, 0.017791748046875, 0.020843505859375, -0.031097412109375, -0.05303955078125, -0.0186004638671875, 0.0283203125, 0.039154052734375, 0.0264892578125, -0.0067291259765625, 0.06427001953125, -0.0197296142578125, 0.08184814453125, 0.0011358261108398438, 0.0173797607421875, -0.003086090087890625, -0.0258026123046875, 0.00457763671875, -0.0653076171875, -0.03765869140625, 0.034027099609375, -0.053436279296875, 0.0193023681640625, 0.004627227783203125, -0.0055084228515625, 0.00675201416015625, -0.00036072731018066406, -0.006389617919921875, -0.020751953125, 0.03729248046875, 0.01293182373046875, 0.0278472900390625, 0.0026092529296875, -0.0004944801330566406, 0.050079345703125, 0.0085296630859375, 0.0014858245849609375, 0.0026264190673828125, -0.005054473876953125, 0.040557861328125, -0.01306915283203125, 0.0421142578125, 0.0103607177734375, 0.0777587890625, 0.0031528472900390625, 0.061309814453125, 0.07061767578125, 0.031646728515625, 0.0025634765625, -0.0229339599609375, -0.017486572265625, 0.00902557373046875, 0.01154327392578125, -0.0112457275390625, 0.0201263427734375, 0.0186004638671875, -0.00832366943359375, -0.008758544921875, 0.053192138671875, 0.05902099609375, -0.055511474609375, -0.0060882568359375, 0.0193939208984375, -0.03375244140625, -0.01708984375, 0.00301361083984375, -0.0156402587890625, -0.023956298828125, 0.0171356201171875, -0.034149169921875, -0.0153045654296875, 0.0001188516616821289, -0.0157318115234375, -0.0043182373046875, 0.01038360595703125, 0.06787109375, 0.0158843994140625, -0.080078125, -0.023956298828125, 0.048126220703125, -0.03057861328125, -0.054107666015625, -0.022674560546875, 0.000051140785217285156, -0.026947021484375, -0.1082763671875, -0.032867431640625, -0.019561767578125, 0.01476287841796875, 0.042083740234375, 0.00843048095703125, -0.0176239013671875, 0.04083251953125, -0.0296783447265625, 0.02569580078125, 0.00879669189453125, -0.031402587890625, 0.004573822021484375, -0.031280517578125, 0.00986480712890625, 0.056854248046875, -0.0228729248046875, 0.0124053955078125, 0.0194549560546875, -0.0228424072265625, -0.0146942138671875, -0.014434814453125, 0.10418701171875, -0.03692626953125, -0.017333984375, -0.0198822021484375, 0.052734375, 0.0228424072265625, -0.00922393798828125, -0.00490570068359375, -0.0280303955078125, 0.004547119140625, -0.027313232421875, -0.0281524658203125, 0.020782470703125, -0.0302276611328125, -0.0960693359375, 0.06048583984375, -0.031402587890625, 0.08148193359375, -0.0201416015625, 0.005748748779296875, 0.029815673828125, 0.00152587890625, -0.037628173828125, 0.07867431640625, -0.0018711090087890625, 0.078125, -0.07232666015625, -0.02154541015625, 0.03594970703125, 0.05908203125, 0.05133056640625, 0.01065826416015625, -0.02203369140625, -0.032806396484375, 0.004291534423828125, 0.055633544921875, -0.007328033447265625, 0.0265960693359375, -0.0084075927734375, 0.0286102294921875, 0.0297088623046875, -0.04656982421875, 0.0219573974609375, -0.004730224609375, -0.0090789794921875, 0.0236968994140625, 0.02471923828125, 0.0201873779296875, 0.0265350341796875, 0.042022705078125, -0.0253753662109375, 0.01629638671875, 0.020751953125, -0.01537322998046875, -0.01502227783203125, 0.037109375, 0.058746337890625, -0.09161376953125, -0.07208251953125, -0.0357666015625, 0.03741455078125, 0.039581298828125, 0.039093017578125, 0.0306854248046875, 0.01021575927734375, 0.066162109375, -0.0168609619140625, 0.025970458984375, 0.016357421875, -0.0262603759765625, 0.0170440673828125, 0.023651123046875, 0.0172576904296875, -0.0396728515625, -0.0156402587890625, 0.06298828125, 0.045166015625, -0.01983642578125, -0.0089263916015625, 0.010894775390625, 0.01471710205078125, -0.0274810791015625, -0.024688720703125, -0.032562255859375, 0.04437255859375, 0.061920166015625, -0.00429534912109375, 0.0203094482421875, 0.01415252685546875, 0.039459228515625, 0.0026836395263671875, -0.018951416015625, -0.06732177734375, 0.0027923583984375, -0.029815673828125, -0.0438232421875, 0.0043487548828125, 0.053070068359375, 0.054351806640625, 0.037200927734375, 0.0253753662109375, -0.023468017578125, -0.007335662841796875, -0.013580322265625, -0.01413726806640625, -0.003360748291015625, -0.0186767578125, -0.01155853271484375, -0.01457977294921875, 0.037200927734375, -0.01092529296875, 0.0171051025390625, 0.02392578125, 0.04132080078125, -0.0107879638671875, -0.02484130859375, 0.00897979736328125, -0.025909423828125, 0.0031585693359375, -0.029876708984375, 0.0182037353515625, 0.0138092041015625, -0.0180206298828125, 0.005863189697265625, -0.008941650390625, 0.04864501953125, 0.00428009033203125, 0.01462554931640625, 0.0121612548828125, -0.0240325927734375, 0.02752685546875, 0.01355743408203125, 0.045623779296875, 0.034393310546875, -0.032257080078125, -0.0059661865234375, -0.0137481689453125, -0.039398193359375, 0.0164794921875, 0.031158447265625, -0.0404052734375, 0.034698486328125, 0.02691650390625, -0.0192413330078125, 0.0226898193359375, -0.0263519287109375, 0.0283660888671875, -0.0140533447265625, -0.0301513671875, -0.0032806396484375, -0.0158843994140625, -0.021942138671875, -0.002826690673828125, 0.0462646484375, -0.004673004150390625, 0.0635986328125, -0.01445770263671875, 0.01306915283203125, -0.037261962890625, 0.040374755859375, -0.0301666259765625, -0.01372528076171875, 0.026397705078125, 0.05133056640625, 0.028533935546875, -0.016510009765625, -0.0333251953125, 0.0103302001953125, 0.018157958984375, -0.0263824462890625, 0.019195556640625, -0.0372314453125, 0.0145721435546875, -0.027069091796875, 0.0268402099609375, -0.0173797607421875, -0.0016927719116210938, -0.04461669921875, -0.0168914794921875, 0.04644775390625, 0.0362548828125, -0.0210113525390625, 0.0205535888671875, -0.043853759765625, -0.06011962890625, 0.01140594482421875, -0.05963134765625, -0.016571044921875, 0.0157470703125, 0.04083251953125, 0.05596923828125, -0.0028057098388671875, -0.020050048828125, 0.018798828125, 0.0135498046875, -0.048492431640625, 0.0026836395263671875, 0.0126800537109375, -0.0290679931640625, -0.018707275390625, 0.0210418701171875, -0.00432586669921875, 0.01085662841796875, -0.02105712890625, 0.00212860107421875, -0.019256591796875, 0.038665771484375, -0.00553131103515625, 0.025543212890625, -0.031280517578125, -0.01013946533203125, 0.0093841552734375, -0.07861328125, -0.061065673828125, -0.0225982666015625, 0.02313232421875, -0.00286865234375, -0.0357666015625, 0.0206756591796875, -0.02777099609375, 0.0161895751953125, -0.0343017578125, 0.02911376953125, 0.0034809112548828125, 0.05804443359375, -0.05926513671875, -0.0146026611328125, 0.0160369873046875, 0.0071868896484375, 0.00014281272888183594, 0.01367950439453125, 0.02557373046875, -0.0258636474609375, -0.00505828857421875, -0.01116180419921875, 0.01544189453125, 0.0297393798828125, 0.0085906982421875, 0.005802154541015625, 0.0019006729125976562, 0.0111083984375, -0.03271484375, -0.025421142578125, 0.04412841796875, -0.030731201171875, -0.0601806640625, 0.0166015625, -0.01113128662109375, -0.004032135009765625, -0.033935546875, -0.08587646484375, 0.1246337890625, -0.0215606689453125, -0.03155517578125, -0.01898193359375, 0.019073486328125, -0.005779266357421875, 0.024261474609375, 0.01110076904296875, -0.039215087890625, -0.0162811279296875, -0.002582550048828125, -0.0135498046875, 0.04327392578125, -0.0092620849609375, -0.0087890625, -0.01242828369140625, 0.007137298583984375, 0.005886077880859375, -0.01152801513671875, 0.004123687744140625, -0.006275177001953125, 0.032745361328125, 0.0311279296875, -0.0452880859375, 0.040863037109375, 0.006710052490234375, 0.01345062255859375, 0.033843994140625, -0.01148223876953125, -0.07135009765625, -0.0716552734375, 0.006366729736328125, 0.032623291015625, 0.0196075439453125, 0.0218963623046875, -0.007572174072265625, -0.060272216796875, -0.0350341796875, -0.01377105712890625, 0.027862548828125, -0.0780029296875, 0.0167694091796875, 0.0443115234375, 0.01253509521484375, 0.018402099609375, -0.0094757080078125, -0.01959228515625, -0.0164642333984375, -0.0025119781494140625, 0.037506103515625, -0.10662841796875, 0.035675048828125, 0.034149169921875, -0.04254150390625, -0.0272979736328125, 0.0380859375, -0.028778076171875, 0.0084686279296875, 0.04888916015625, -0.026458740234375, -0.0310516357421875, -0.0001729726791381836, 0.0297088623046875, -0.0023136138916015625, 0.01483917236328125, -0.0198211669921875, 0.00560760498046875, -0.03436279296875, 0.0282135009765625, 0.021697998046875, 0.0295867919921875, -0.037506103515625, 0.033416748046875, 0.0313720703125, 0.04351806640625, -0.033599853515625, 0.005786895751953125, 0.00572967529296875, -0.0038471221923828125, -0.05877685546875, 0.0297088623046875, 0.0023937225341796875, -0.041961669921875, -0.0021076202392578125, 0.00682830810546875, -0.03955078125, -0.0361328125, 0.013519287109375, -0.0249481201171875, -0.0068359375, 0.0161285400390625 ]
4a3333d7d5ffb33f531580c037aad5a097537ed6
Wordpress Stackexchange Q: How can I list all pages with their templates? I want to list all site pages with the template they use. Is there a mod to wp_list_pages which does this? A: https://codex.wordpress.org/Function_Reference/get_page_template_slug a basic query to get all pages, sorted by title, then output page title and template file name: $args = array( 'post_type' => array( 'page' ), 'order' => 'ASC', 'orderby' => 'title' ); $the_query = new WP_Query( $args ); if ( $the_query->have_posts() ) { while ( $the_query->have_posts() ) { $the_query->the_post(); echo '<p>'; the_title(); echo ' - '; echo get_page_template_slug(); echo '</p>'; } wp_reset_postdata(); }
Q: How can I list all pages with their templates? I want to list all site pages with the template they use. Is there a mod to wp_list_pages which does this? A: https://codex.wordpress.org/Function_Reference/get_page_template_slug a basic query to get all pages, sorted by title, then output page title and template file name: $args = array( 'post_type' => array( 'page' ), 'order' => 'ASC', 'orderby' => 'title' ); $the_query = new WP_Query( $args ); if ( $the_query->have_posts() ) { while ( $the_query->have_posts() ) { $the_query->the_post(); echo '<p>'; the_title(); echo ' - '; echo get_page_template_slug(); echo '</p>'; } wp_reset_postdata(); } A: If you wish to get a list of posts within all post types that are using a template, use: $args = array( 'post_type' => 'any', 'order' => 'ASC', 'orderby' => 'title', 'posts_per_page' => -1 ); $query = new WP_Query($args); if ($query->have_posts()) { while ($query->have_posts()) { $query->the_post(); if (get_page_template_slug($post->ID)) { echo '<a href="' . get_the_permalink() . '">' . get_the_title() . ' - ' . esc_html(get_page_template_slug($post->ID)) . '</a><br>'; } } wp_reset_postdata(); } Can be a large query though. A: I have tried flowing code to get all page with template, and worked perfect for me. this code purpose was to get all custom page template,as i was developed single page template. $args = array( "post_type" => "page", "order" => "ASC", "orderby" => "menu_order" ); $the_query = new WP_Query( $args ); if ( have_posts() ) { while ( $the_query->have_posts() ) { $the_query->the_post(); ?> <div id="post-<?php the_ID() ?>"> <?php global $post; $slug = $post->post_name; get_template_part("page", $slug); ?> </div> <?php } wp_reset_postdata(); } A: Rather than do this in PHP, you can do it with this mysql: SELECT distinct meta_value FROM `wp_postmeta` WHERE meta_key='_wp_page_template' I just needed it for a quick check so that I could clean up unused templates with the theme_page_templates filter. A: Using phpmyadmin (sql) you can run this query to get a list of all pages with its used template: SELECT p.post_name, p.post_title, meta_key, meta_value FROM `wp_postmeta` INNER JOIN wp_posts p ON p.ID = post_id WHERE meta_key='_wp_page_template' ORDER BY meta_value, p.post_name
wordpress
{ "language": "en", "length": 338, "provenance": "stackexchange_00019.jsonl.gz:469923", "question_score": "4", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/244950" }
[ 0.006229400634765625, -0.0013055801391601562, 0.004390716552734375, -0.006290435791015625, -0.0016984939575195312, -0.01276397705078125, 0.038177490234375, -0.0112152099609375, -0.0034580230712890625, 0.0115203857421875, -0.00762939453125, -0.0038909912109375, -0.0148773193359375, -0.0244140625, 0.019256591796875, -0.032562255859375, 0.039794921875, -0.04437255859375, 0.015960693359375, -0.014678955078125, 0.031036376953125, 0.00659942626953125, 0.019683837890625, 0.060150146484375, 0.03143310546875, -0.04180908203125, 0.0239715576171875, 0.0054168701171875, 0.00872802734375, -0.031524658203125, 0.0108489990234375, 0.04132080078125, 0.0298309326171875, -0.019195556640625, -0.00539398193359375, -0.0299072265625, 0.00443267822265625, -0.0131683349609375, -0.004711151123046875, 0.0173187255859375, 0.01019287109375, 0.000988006591796875, 0.04022216796875, 0.0244598388671875, -0.00597381591796875, -0.00904083251953125, 0.01023101806640625, -0.030914306640625, 0.0031566619873046875, 0.0175018310546875, 0.011260986328125, -0.019073486328125, 0.01324462890625, 0.0282135009765625, -0.0222320556640625, -0.018280029296875, 0.037017822265625, -0.01067352294921875, 0.0284423828125, -0.05938720703125, -0.047882080078125, 0.01873779296875, 0.033660888671875, 0.0080108642578125, -0.0355224609375, 0.0030536651611328125, -0.0272216796875, 0.0115509033203125, -0.00766754150390625, -0.03564453125, 0.0026836395263671875, -0.0172882080078125, -0.01262664794921875, -0.02911376953125, 0.01276397705078125, 0.004390716552734375, -0.031585693359375, -0.0318603515625, 0.0103607177734375, 0.0175018310546875, 0.0232696533203125, -0.006622314453125, -0.058349609375, -0.02716064453125, 0.03253173828125, 0.009857177734375, -0.002376556396484375, -0.0185394287109375, -0.01200103759765625, -0.0178375244140625, -0.02105712890625, 0.026458740234375, -0.007595062255859375, -0.0151519775390625, -0.0290374755859375, -0.023590087890625, 0.014892578125, 0.0712890625, -0.00858306884765625, 0.024200439453125, -0.03326416015625, -0.021759033203125, 0.007358551025390625, -0.04437255859375, 0.01568603515625, 0.052764892578125, -0.007568359375, 0.025054931640625, 0.048065185546875, 0.0355224609375, 0.031585693359375, -0.0032215118408203125, -0.0231170654296875, 0.0015087127685546875, -0.041412353515625, 0.019622802734375, -0.03424072265625, -0.0277099609375, -0.00815582275390625, -0.01995849609375, 0.02227783203125, 0.036895751953125, 0.057159423828125, -0.045684814453125, -0.0297698974609375, 0.0023040771484375, -0.0251312255859375, -0.108642578125, 0.00742340087890625, 0.001789093017578125, -0.0157470703125, 0.0118408203125, 0.0087890625, 0.01378631591796875, -0.0196533203125, -0.0140228271484375, -0.0303497314453125, -0.0240020751953125, 0.0031147003173828125, -0.00962066650390625, 0.00443267822265625, -0.0168914794921875, 0.0321044921875, -0.002254486083984375, 0.008819580078125, -0.016937255859375, 0.0008668899536132812, 0.0401611328125, 0.01076507568359375, 0.02203369140625, -0.0071563720703125, 0.017303466796875, 0.0008358955383300781, 0.00815582275390625, 0.017669677734375, -0.036834716796875, -0.011627197265625, -0.0202789306640625, 0.0309906005859375, -0.020904541015625, -0.0231170654296875, 0.01678466796875, 0.030914306640625, -0.0264739990234375, -0.01473236083984375, -0.0270843505859375, -0.01023101806640625, -0.0105743408203125, 0.01220703125, 0.0167999267578125, -0.0161285400390625, -0.04248046875, 0.036346435546875, 0.0134735107421875, -0.0154571533203125, 0.038177490234375, -0.005828857421875, -0.00270843505859375, 0.0226593017578125, 0.0243377685546875, -0.0014734268188476562, -0.0117645263671875, 0.0247802734375, 0.00939178466796875, -0.073486328125, 0.0193634033203125, 0.00726318359375, 0.042816162109375, 0.025238037109375, 0.0036487579345703125, 0.07073974609375, 0.0005803108215332031, -0.04644775390625, 0.06585693359375, 0.01219940185546875, -0.022308349609375, -0.03192138671875, 0.015594482421875, -0.00910186767578125, -0.06329345703125, 0.018829345703125, -0.01361846923828125, 0.005504608154296875, 0.01488494873046875, -0.033966064453125, -0.00975799560546875, -0.00750732421875, 0.016937255859375, 0.026092529296875, 0.041290283203125, 0.004467010498046875, 0.00360870361328125, -0.04315185546875, 0.01018524169921875, -0.03680419921875, 0.013397216796875, 0.0305938720703125, -0.01983642578125, 0.0070343017578125, -0.0087890625, -0.00687408447265625, -0.003971099853515625, -0.035675048828125, 0.0302886962890625, 0.038726806640625, 0.0074920654296875, -0.046844482421875, -0.01556396484375, -0.039215087890625, 0.0216217041015625, -0.09979248046875, 0.062744140625, -0.01325225830078125, 0.038818359375, -0.03289794921875, -0.00485992431640625, -0.022613525390625, 0.0166778564453125, 0.01006317138671875, 0.0158233642578125, 0.0284423828125, 0.0279541015625, 0.0132293701171875, 0.0096588134765625, 0.04461669921875, -0.05718994140625, -0.0115509033203125, 0.0164794921875, 0.0382080078125, 0.0714111328125, 0.0302581787109375, 0.020172119140625, -0.00731658935546875, 0.01454925537109375, 0.03265380859375, 0.011322021484375, -0.0019435882568359375, 0.04443359375, -0.0265350341796875, 0.006923675537109375, -0.01380157470703125, 0.01279449462890625, 0.0234375, -0.00952911376953125, 0.0108795166015625, 0.03240966796875, 0.02099609375, 0.017791748046875, -0.042388916015625, 0.01311492919921875, 0.019317626953125, 0.0029201507568359375, 0.017425537109375, 0.032989501953125, -0.024658203125, 0.0309906005859375, -0.0227508544921875, -0.00998687744140625, 0.00357818603515625, 0.0227508544921875, 0.0029735565185546875, 0.042388916015625, 0.002437591552734375, -0.0036716461181640625, -0.0238037109375, -0.067626953125, 0.0035858154296875, 0.049774169921875, 0.0048065185546875, 0.0142669677734375, 0.01253509521484375, 0.050811767578125, -0.00920867919921875, 0.038818359375, -0.002971649169921875, 0.0026187896728515625, 0.04083251953125, -0.06500244140625, 0.040679931640625, -0.032989501953125, 0.05859375, 0.06695556640625, 0.0104522705078125, -0.006008148193359375, -0.00807952880859375, -0.01058197021484375, 0.0301513671875, -0.0213165283203125, -0.01678466796875, -0.021820068359375, -0.0192108154296875, 0.01093292236328125, 0.0166168212890625, 0.043792724609375, -0.01515960693359375, -0.0430908203125, -0.0223846435546875, 0.00958251953125, -0.10382080078125, -0.06573486328125, 0.011627197265625, -0.043243408203125, -0.036956787109375, -0.0263671875, -0.025482177734375, 0.006252288818359375, -0.004245758056640625, -0.0036029815673828125, 0.0254058837890625, -0.048004150390625, -0.06378173828125, -0.056182861328125, -0.0762939453125, -0.0379638671875, -0.005725860595703125, -0.00788116455078125, 0.00579833984375, 0.0733642578125, 0.0166778564453125, -0.058197021484375, 0.01091766357421875, 0.055633544921875, -0.031951904296875, -0.004413604736328125, 0.01494598388671875, -0.00963592529296875, 0.00559234619140625, 0.00891876220703125, -0.007717132568359375, 0.04156494140625, -0.01641845703125, -0.006511688232421875, -0.0193634033203125, -0.027130126953125, -0.0014514923095703125, -0.003139495849609375, 0.0222930908203125, -0.027099609375, -0.01499176025390625, -0.0614013671875, -0.052490234375, -0.006504058837890625, -0.06817626953125, 0.057586669921875, 0.05657958984375, -0.0078582763671875, -0.002590179443359375, 0.0011425018310546875, 0.031890869140625, 0.0028209686279296875, 0.00957489013671875, 0.00397491455078125, 0.004940032958984375, -0.00547027587890625, 0.01953125, -0.0195159912109375, 0.03564453125, -0.00254058837890625, 0.00997161865234375, 0.0157470703125, 0.01003265380859375, -0.00475311279296875, 0.00942230224609375, -0.011932373046875, -0.0721435546875, 0.060821533203125, 0.006603240966796875, 0.00974273681640625, -0.04254150390625, -0.0498046875, -0.00548553466796875, 0.10491943359375, -0.0179290771484375, -0.047515869140625, -0.0229034423828125, -0.0018377304077148438, 0.009307861328125, -0.0016183853149414062, 0.0379638671875, -0.0261688232421875, -0.074951171875, 0.012542724609375, -0.0197601318359375, -0.04248046875, -0.01666259765625, -0.017822265625, -0.034637451171875, -0.03363037109375, 0.0209197998046875, 0.0007848739624023438, 0.0092010498046875, 0.0148162841796875, -0.014923095703125, 0.01192474365234375, -0.0181732177734375, -0.0081329345703125, -0.0780029296875, -0.010833740234375, -0.0144805908203125, 0.05303955078125, 0.024810791015625, -0.04632568359375, -0.00785064697265625, 0.03668212890625, 0.0225830078125, 0.057403564453125, -0.0099639892578125, -0.010955810546875, 0.0004584789276123047, -0.03125, 0.0105743408203125, -0.039337158203125, 0.01357269287109375, -0.006763458251953125, -0.019622802734375, -0.00673675537109375, -0.040740966796875, 0.006866455078125, -0.004604339599609375, -0.0261688232421875, -0.025238037109375, -0.0053558349609375, 0.03326416015625, 0.00824737548828125, 0.00872039794921875, -0.001148223876953125, -0.003910064697265625, -0.0287933349609375, 0.031829833984375, 0.04071044921875, -0.041412353515625, 0.0089874267578125, 0.058441162109375, 0.0219879150390625, -0.040069580078125, -0.08221435546875, 0.01922607421875, 0.03411865234375, -0.0101318359375, 0.04815673828125, 0.0183868408203125, -0.016632080078125, 0.04754638671875, -0.006328582763671875, -0.0440673828125, -0.01390838623046875, 0.045684814453125, -0.004730224609375, -0.045135498046875, 0.0196990966796875, -0.038116455078125, 0.044158935546875, 0.06884765625, -0.0081329345703125, -0.021484375, -0.01554107666015625, 0.0504150390625, 0.00214385986328125, -0.00208282470703125, -0.05322265625, -0.0284271240234375, -0.0132293701171875, 0.02630615234375, 0.0177764892578125, 0.03515625, -0.017242431640625, 0.03228759765625, 0.043487548828125, 0.005725860595703125, 0.0396728515625, 0.040252685546875, 0.016448974609375, 0.0382080078125, -0.00014519691467285156, 0.0007414817810058594, 0.0014047622680664062, 0.00010269880294799805, 0.029937744140625, 0.00832366943359375, -0.04119873046875, 0.007110595703125, -0.0158843994140625, 0.0022907257080078125, 0.0012445449829101562, 0.03857421875, 0.06951904296875, 0.031463623046875, 0.0030384063720703125, -0.033905029296875, -0.0162353515625, 0.016845703125, -0.056488037109375, -0.001262664794921875, 0.02044677734375, -0.029815673828125, 0.0004565715789794922, 0.028594970703125, -0.03662109375, 0.0084991455078125, 0.0059814453125, 0.003871917724609375, 0.006298065185546875, 0.0302581787109375, 0.01483917236328125, -0.001697540283203125, -0.007171630859375, 0.007740020751953125, 0.013275146484375, -0.051513671875, -0.0030269622802734375, 0.02423095703125, 0.046630859375, 0.0046539306640625, -0.03399658203125, 0.0036716461181640625, -0.0185546875, -0.0020275115966796875, 0.0174407958984375, -0.00415802001953125, -0.01549530029296875, -0.045806884765625, -0.01007843017578125, 0.02850341796875, 0.01132965087890625, -0.00319671630859375, 0.024261474609375, -0.00434112548828125, 0.01090240478515625, 0.00975799560546875, -0.036834716796875, -0.004978179931640625, 0.00290679931640625, -0.027862548828125, -0.0260162353515625, 0.0005307197570800781, -0.08416748046875, -0.033416748046875, -0.00760650634765625, 0.01004791259765625, 0.0335693359375, 0.0010824203491210938, 0.0689697265625, -0.0210113525390625, -0.04632568359375, 0.020965576171875, 0.00615692138671875, 0.045654296875, 0.01953125, -0.031158447265625, -0.0036792755126953125, -0.055419921875, -0.02056884765625, 0.0168914794921875, -0.044403076171875, -0.0272064208984375, -0.032867431640625, 0.0022792816162109375, 0.03558349609375, 0.0073394775390625, 0.01505279541015625, -0.01024627685546875, 0.004608154296875, -0.0215301513671875, 0.040374755859375, 0.001499176025390625, 0.08392333984375, -0.041595458984375, 0.04425048828125, 0.0018339157104492188, 0.029571533203125, -0.032379150390625, -0.007068634033203125, 0.028045654296875, -0.0316162109375, -0.040283203125, -0.0194244384765625, -0.044586181640625, 0.0308990478515625, 0.06964111328125, 0.007434844970703125, 0.01045989990234375, -0.05450439453125, -0.0020084381103515625, -0.0213623046875, 0.07623291015625, -0.056793212890625, -0.0248565673828125, 0.05792236328125, 0.0176544189453125, 0.012542724609375, -0.0242462158203125, -0.036163330078125, 0.019500732421875, 0.0188140869140625, 0.0237274169921875, -0.0440673828125, -0.027679443359375, 0.061676025390625, 0.043548583984375, 0.0017900466918945312, 0.0168914794921875, 0.01611328125, -0.0011749267578125, -0.0247344970703125, 0.016143798828125, 0.019866943359375, -0.0330810546875, 0.057647705078125, 0.01219940185546875, -0.0008921623229980469, 0.05963134765625, -0.0364990234375, -0.004261016845703125, 0.047637939453125, 0.04461669921875, -0.0665283203125, 0.0052947998046875, 0.03656005859375, 0.0118408203125, -0.00838470458984375, -0.019195556640625, -0.00739288330078125, -0.045166015625, 0.040069580078125, 0.00286865234375, -0.0179901123046875, -0.001216888427734375, -0.017059326171875, -0.002262115478515625, -0.00989532470703125, 0.078857421875, 0.01390838623046875, 0.0158843994140625, -0.0281524658203125, -0.01117706298828125, 0.0163421630859375, -0.036773681640625, 0.010162353515625, -0.0172119140625, 0.022979736328125, -0.00788116455078125, 0.046417236328125, -0.048828125, 0.03240966796875, 0.0297698974609375, 0.044952392578125, -0.043731689453125, 0.051422119140625, -0.0274810791015625, 0.040374755859375, 0.02508544921875, -0.038543701171875, -0.03240966796875, -0.01049041748046875, -0.0296783447265625, 0.00769805908203125, -0.001155853271484375, 0.0113677978515625, -0.03863525390625, 0.016754150390625, -0.0202178955078125, 0.02398681640625, 0.1063232421875, -0.036895751953125, -0.026031494140625, 0.01806640625, 0.061492919921875, -0.007526397705078125, 0.006343841552734375, 0.007289886474609375, -0.033447265625, 0.01129913330078125, 0.0132904052734375, 0.00998687744140625, -0.0218048095703125, -0.0041351318359375, -0.07305908203125, 0.103759765625, 0.021636962890625, 0.034332275390625, 0.042510986328125, 0.0306243896484375, -0.06683349609375, 0.00363922119140625, -0.0293121337890625, 0.0731201171875, 0.04913330078125, 0.054473876953125, -0.037322998046875, -0.018646240234375, 0.0267791748046875, 0.0545654296875, 0.0372314453125, 0.0021953582763671875, -0.03289794921875, 0.0006785392761230469, 0.061981201171875, 0.040069580078125, 0.003269195556640625, 0.03619384765625, -0.006023406982421875, 0.04638671875, 0.0255584716796875, -0.07220458984375, 0.00946044921875, -0.027801513671875, -0.0037517547607421875, 0.01462554931640625, 0.0071868896484375, 0.0178985595703125, 0.0013723373413085938, -0.03997802734375, -0.0465087890625, -0.002437591552734375, 0.0200347900390625, -0.004802703857421875, 0.0100555419921875, 0.01453399658203125, 0.027099609375, -0.056304931640625, -0.02130126953125, -0.0200958251953125, 0.0472412109375, 0.0054473876953125, -0.003620147705078125, -0.0108184814453125, 0.012542724609375, 0.0257568359375, -0.0303802490234375, -0.018707275390625, 0.0201873779296875, -0.010101318359375, 0.06402587890625, 0.011688232421875, 0.0220489501953125, -0.07110595703125, -0.01171112060546875, 0.041656494140625, 0.06402587890625, -0.046417236328125, -0.0556640625, 0.029571533203125, 0.01322174072265625, -0.021728515625, 0.033233642578125, -0.0029773712158203125, -0.00681304931640625, 0.06817626953125, -0.0209808349609375, -0.039215087890625, -0.00891876220703125, 0.019439697265625, -0.03326416015625, -0.056884765625, 0.04608154296875, -0.0178985595703125, -0.0364990234375, -0.0022430419921875, 0.030181884765625, 0.0489501953125, 0.0201568603515625, 0.051544189453125, -0.024658203125, -0.0218353271484375, -0.01041412353515625, -0.00008887052536010742, -0.02813720703125, 0.026641845703125, -0.0211334228515625, -0.0056304931640625, -0.0198211669921875, 0.0266876220703125, 0.053314208984375, -0.0164031982421875, 0.0311126708984375, -0.0012645721435546875, -0.0274505615234375, 0.0015268325805664062, -0.00875091552734375, -0.0265960693359375, 0.0280914306640625, -0.03179931640625, -0.0013151168823242188, -0.0015354156494140625, -0.028045654296875, -0.006839752197265625, 0.006908416748046875, 0.0274658203125, -0.018798828125, 0.035614013671875, -0.005725860595703125, -0.0007882118225097656, 0.037933349609375, 0.0018587112426757812, 0.0264129638671875, 0.01352691650390625, -0.09539794921875, -0.0084991455078125, -0.05517578125, -0.05438232421875, 0.060821533203125, 0.058746337890625, -0.0301971435546875, 0.01983642578125, -0.00560760498046875, 0.029510498046875, -0.00457763671875, -0.014129638671875, -0.0050048828125, 0.015289306640625, 0.03814697265625, 0.00568389892578125, -0.02923583984375, -0.00975799560546875, -0.02117919921875, 0.0149383544921875, 0.0196990966796875, 0.0880126953125, -0.01910400390625, 0.0005168914794921875, 0.0250244140625, 0.007076263427734375, 0.0022678375244140625, -0.0164642333984375, 0.061126708984375, -0.0033111572265625, -0.008636474609375, -0.030975341796875, -0.041107177734375, 0.025177001953125, 0.03509521484375, 0.0003504753112792969, 0.00986480712890625, -0.010650634765625, 0.00574493408203125, -0.0037250518798828125, 0.002841949462890625, -0.02191162109375, -0.01345062255859375, -0.007671356201171875, -0.010772705078125, 0.0165557861328125, 0.0114898681640625, 0.0117645263671875, 0.050811767578125, -0.021392822265625, -0.03887939453125, 0.012847900390625, -0.059661865234375, -0.004669189453125, 0.0304718017578125, 0.0285797119140625, -0.04046630859375, 0.0283203125, -0.006420135498046875, 0.004978179931640625, 0.0081939697265625, 0.0203094482421875, 0.028106689453125, -0.0254058837890625, -0.0264129638671875, -0.039154052734375, 0.00803375244140625, -0.021026611328125, -0.01342010498046875, -0.0408935546875, 0.01139068603515625, 0.0014810562133789062, -0.048095703125, -0.03924560546875, -0.0423583984375, 0.013580322265625, 0.0318603515625, -0.00798797607421875, -0.01995849609375, -0.050079345703125, -0.010162353515625, -0.004589080810546875, -0.0188751220703125, -0.002681732177734375, 0.023529052734375, -0.0338134765625, -0.01727294921875, -0.0233154296875, -0.008880615234375, 0.006969451904296875, 0.0008845329284667969, -0.029144287109375, 0.04803466796875, -0.01471710205078125, -0.036346435546875, 0.036346435546875, 0.004535675048828125, 0.03875732421875, -0.0128326416015625, -0.009735107421875, 0.01715087890625, 0.01145172119140625, 0.06256103515625, -0.0166778564453125, -0.01043701171875, 0.048797607421875, -0.01605224609375, -0.014129638671875, -0.046905517578125, -0.0161590576171875, -0.019012451171875, 0.032318115234375, 0.016265869140625, 0.009368896484375, 0.041748046875, -0.01678466796875, -0.051849365234375, 0.06817626953125, -0.0109710693359375, -0.030242919921875, -0.06268310546875, 0.046112060546875, 0.0233917236328125, -0.059814453125, -0.033905029296875, 0.012786865234375, -0.00725555419921875, 0.025390625, 0.03826904296875, 0.0222320556640625, 0.0180511474609375, 0.03753662109375, -0.047607421875, 0.040008544921875, -0.01085662841796875, 0.0029125213623046875, 0.0249786376953125, -0.056121826171875, 0.04144287109375, 0.0213470458984375, -0.05712890625, -0.04364013671875, 0.00872039794921875, 0.01177215576171875, -0.0025730133056640625, 0.037567138671875, -0.0306396484375, 0.00646209716796875, 0.06414794921875, 0.061248779296875, 0.031890869140625, -0.0394287109375, 0.0169830322265625, -0.0164031982421875, -0.0305938720703125, -0.00955963134765625, 0.036285400390625, -0.04925537109375, 0.007038116455078125, 0.00812530517578125, -0.02044677734375, -0.00867462158203125, -0.033721923828125, -0.050079345703125, -0.01013946533203125, -0.05364990234375, 0.005641937255859375, -0.01282501220703125, 0.0308380126953125, 0.025482177734375, -0.0213470458984375, 0.01360321044921875, -0.0521240234375, 0.023529052734375, -0.00136566162109375, -0.08587646484375, -0.0251312255859375, 0.024139404296875, -0.028717041015625, 0.0177154541015625, 0.00030493736267089844, 0.0178375244140625, -0.02520751953125, 0.0252685546875, -0.01493072509765625, 0.038665771484375, 0.00853729248046875, 0.0228424072265625, -0.043304443359375, 0.085205078125, 0.01459503173828125, 0.071044921875, 0.00391387939453125, 0.0391845703125, 0.00494384765625, 0.04095458984375, 0.01535797119140625, -0.032928466796875, 0.04217529296875, -0.0631103515625, -0.0013580322265625, 0.00554656982421875, -0.0178985595703125, -0.0291595458984375, 0.02191162109375, -0.0246734619140625, -0.0004467964172363281, 0.01389312744140625 ]
0e7e1ca604444324a8568ce1214e5f9c1ecd951a
Wordpress Stackexchange Q: How to add custom css to login and admin? I have custom CSS for the login and admin pages. Is it OK to add it as I've done below, or is there a better alternative? function custom_admin_css() { wp_enqueue_style( 'custom_admin_css', get_template_directory_uri() . '/css/admin.css', array(), filemtime( get_template_directory() . '/css/admin.css' ) ); } add_action( 'login_enqueue_scripts', 'custom_admin_css', 10 ); add_action( 'admin_enqueue_scripts', 'custom_admin_css', 10 ); A: That's pretty fine and it's the proper way to add CSS to login page. But you can also change login page CSS by below code- function the_dramatist_custom_login_css() { echo '<style type="text/css"> //Write your css here </style>'; } add_action('login_head', 'the_dramatist_custom_login_css'); This actually prints CSS code inline in the login page. And for admin CSS your way is correct.
Q: How to add custom css to login and admin? I have custom CSS for the login and admin pages. Is it OK to add it as I've done below, or is there a better alternative? function custom_admin_css() { wp_enqueue_style( 'custom_admin_css', get_template_directory_uri() . '/css/admin.css', array(), filemtime( get_template_directory() . '/css/admin.css' ) ); } add_action( 'login_enqueue_scripts', 'custom_admin_css', 10 ); add_action( 'admin_enqueue_scripts', 'custom_admin_css', 10 ); A: That's pretty fine and it's the proper way to add CSS to login page. But you can also change login page CSS by below code- function the_dramatist_custom_login_css() { echo '<style type="text/css"> //Write your css here </style>'; } add_action('login_head', 'the_dramatist_custom_login_css'); This actually prints CSS code inline in the login page. And for admin CSS your way is correct. A: Sometimes you have to add CSS to the content created with help of jQuery so the above methods will not work if jquery code loads in the footer. you can use the below code too. function the_king_custom_login_css() { echo '<style type="text/css"> .nsl-container { text-align:center !important; } </style>'; } add_action('wp_footer', 'the_king_custom_login_css'); A: as explained at here you can do as below: // custom login for theme function childtheme_custom_login() { echo '<link rel="stylesheet" type="text/css" href="' . get_bloginfo('stylesheet_directory') . '/customlogin.css" />'; } add_action('login_head', 'childtheme_custom_login'); another way for plugin: If you want to load extra css for login page from your plugin you can do as below: I assume you know basics of wp plugin development. make a css directory in your plugin directory create a login.css file. in your init function add this. public static function init(){ //other function as your need add_action( 'login_enqueue_scripts', __CLASS__.'::custom_login_css', 10 ); } then you can write function like this. public static function custom_login_css(){ wp_enqueue_style('custom_login_css', plugins_url('/css/login.css', __FILE__), [], '1.0.0'); }
wordpress
{ "language": "en", "length": 283, "provenance": "stackexchange_00019.jsonl.gz:469932", "question_score": "7", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/244978" }
[ 0.038543701171875, 0.0005044937133789062, -0.00261688232421875, -0.05084228515625, -0.000377655029296875, -0.0165863037109375, 0.0006451606750488281, -0.00710296630859375, -0.07830810546875, 0.00022137165069580078, 0.01092529296875, 0.0255126953125, -0.057281494140625, -0.03582763671875, 0.045928955078125, -0.05059814453125, 0.032012939453125, 0.0127716064453125, 0.040283203125, 0.0017385482788085938, 0.0024471282958984375, 0.018646240234375, 0.005123138427734375, 0.02191162109375, 0.020599365234375, -0.04400634765625, 0.10302734375, -0.02142333984375, 0.048858642578125, 0.005382537841796875, 0.03277587890625, -0.06982421875, 0.015716552734375, 0.01715087890625, -0.0079803466796875, -0.037750244140625, -0.006664276123046875, 0.00652313232421875, -0.0036792755126953125, 0.005855560302734375, 0.05023193359375, -0.0313720703125, -0.00498199462890625, 0.024993896484375, -0.0114593505859375, -0.0229949951171875, 0.04412841796875, -0.01873779296875, 0.031768798828125, -0.055572509765625, 0.0013475418090820312, -0.030181884765625, 0.0214996337890625, -0.0221710205078125, -0.032867431640625, 0.01218414306640625, -0.0160369873046875, -0.01488494873046875, 0.039306640625, 0.004138946533203125, -0.0164794921875, -0.05975341796875, 0.0190277099609375, -0.0350341796875, -0.0129547119140625, 0.01111602783203125, 0.033294677734375, 0.0010652542114257812, 0.01163482666015625, -0.0255889892578125, -0.00897216796875, 0.005939483642578125, 0.012237548828125, -0.0172271728515625, -0.03558349609375, 0.0241546630859375, -0.01274871826171875, 0.0025653839111328125, 0.032958984375, -0.0169525146484375, 0.0024242401123046875, 0.020660400390625, -0.0197906494140625, -0.040283203125, 0.034698486328125, -0.0028247833251953125, -0.0203857421875, -0.0275726318359375, 0.0195465087890625, -0.0265655517578125, 0.0017805099487304688, -0.01412200927734375, 0.033599853515625, -0.01470184326171875, -0.0269012451171875, -0.04949951171875, 0.0104217529296875, 0.04962158203125, 0.010345458984375, 0.011749267578125, -0.0218658447265625, -0.0265350341796875, -0.0007886886596679688, -0.03167724609375, -0.0153656005859375, 0.058258056640625, 0.007274627685546875, 0.0428466796875, 0.00940704345703125, 0.0105743408203125, 0.0178375244140625, -0.053863525390625, -0.021331787109375, -0.036529541015625, 0.0016326904296875, 0.038116455078125, -0.01161956787109375, 0.000018894672393798828, 0.012969970703125, 0.0012750625610351562, -0.0031528472900390625, 0.01175689697265625, 0.0257568359375, -0.0232391357421875, -0.0180206298828125, -0.031707763671875, -0.0182037353515625, -0.040802001953125, 0.02392578125, 0.010772705078125, -0.046539306640625, 0.0204315185546875, 0.04547119140625, 0.01181793212890625, 0.00821685791015625, -0.02398681640625, 0.0325927734375, 0.01262664794921875, -0.010467529296875, 0.0153045654296875, -0.0016574859619140625, -0.051300048828125, -0.0171356201171875, 0.0009226799011230469, -0.03106689453125, 0.046844482421875, 0.018798828125, -0.0070343017578125, -0.027557373046875, -0.1031494140625, 0.0496826171875, -0.066650390625, -0.0168304443359375, 0.0305023193359375, 0.0234222412109375, 0.046844482421875, 0.043365478515625, 0.009613037109375, -0.0300445556640625, 0.017425537109375, -0.00959014892578125, 0.01454925537109375, 0.03350830078125, -0.0157318115234375, -0.0023288726806640625, -0.03680419921875, -0.023773193359375, 0.0281829833984375, 0.035430908203125, -0.006580352783203125, 0.038238525390625, -0.0206756591796875, 0.050201416015625, 0.02618408203125, 0.005428314208984375, 0.0200653076171875, 0.0005507469177246094, 0.03424072265625, 0.012420654296875, 0.008880615234375, -0.0013608932495117188, -0.032379150390625, 0.0543212890625, -0.0191650390625, -0.03759765625, -0.0205230712890625, 0.007305145263671875, 0.035400390625, 0.035888671875, 0.0257720947265625, -0.0112762451171875, -0.0166015625, -0.020294189453125, 0.004154205322265625, 0.00579833984375, -0.0138397216796875, -0.0233001708984375, -0.0006556510925292969, -0.00994873046875, 0.007450103759765625, -0.022430419921875, -0.0086822509765625, 0.01336669921875, 0.011505126953125, 0.002685546875, 0.00020396709442138672, 0.0022487640380859375, 0.0279998779296875, 0.0077056884765625, 0.00922393798828125, -0.0032978057861328125, -0.002803802490234375, 0.0014972686767578125, -0.0677490234375, -0.035552978515625, 0.01335906982421875, -0.00862884521484375, 0.0675048828125, 0.01384735107421875, 0.035430908203125, 0.04669189453125, -0.0572509765625, 0.033233642578125, -0.01800537109375, -0.0115814208984375, 0.00015079975128173828, -0.02838134765625, -0.006008148193359375, 0.0185699462890625, -0.0106658935546875, 0.039031982421875, 0.03753662109375, 0.0307464599609375, 0.06744384765625, -0.020904541015625, -0.01544952392578125, -0.0179595947265625, -0.050262451171875, 0.0013380050659179688, 0.029052734375, 0.04681396484375, 0.0006923675537109375, -0.003337860107421875, -0.0006470680236816406, 0.040618896484375, -0.01366424560546875, 0.0249481201171875, -0.01300811767578125, -0.007541656494140625, 0.015167236328125, -0.004917144775390625, 0.00968170166015625, 0.031585693359375, -0.07061767578125, 0.0157012939453125, 0.0452880859375, -0.0184783935546875, -0.02325439453125, 0.0016078948974609375, 0.0030193328857421875, 0.010223388671875, -0.00865936279296875, -0.0178070068359375, -0.0090484619140625, -0.04949951171875, 0.0049896240234375, -0.02203369140625, -0.031707763671875, -0.0311737060546875, -0.0059967041015625, 0.037506103515625, -0.00278472900390625, -0.0113983154296875, -0.00991058349609375, 0.0111541748046875, -0.0614013671875, -0.04339599609375, 0.01678466796875, 0.012969970703125, -0.029052734375, 0.007354736328125, 0.033843994140625, -0.035064697265625, -0.00952911376953125, 0.02294921875, -0.03179931640625, -0.0054473876953125, 0.0228729248046875, 0.035888671875, 0.00968170166015625, 0.035064697265625, -0.002105712890625, -0.018951416015625, 0.032073974609375, -0.0140838623046875, -0.03863525390625, 0.03387451171875, -0.0126495361328125, 0.038055419921875, -0.0176849365234375, 0.044647216796875, 0.044769287109375, -0.00897979736328125, 0.02056884765625, -0.0054473876953125, 0.01284027099609375, -0.01497650146484375, 0.0236053466796875, 0.018096923828125, -0.045379638671875, 0.03466796875, 0.050140380859375, 0.043243408203125, 0.0258941650390625, 0.0211334228515625, -0.024566650390625, -0.0209808349609375, 0.035888671875, -0.033843994140625, -0.044036865234375, -0.06298828125, -0.0865478515625, -0.01190948486328125, 0.01294708251953125, -0.041473388671875, 0.033355712890625, 0.030975341796875, 0.0158233642578125, 0.0184326171875, -0.02020263671875, -0.00698089599609375, -0.01837158203125, -0.045989990234375, -0.020233154296875, 0.01021575927734375, -0.00940704345703125, 0.002197265625, 0.085205078125, 0.00958251953125, -0.052459716796875, 0.00400543212890625, -0.0013418197631835938, -0.0207977294921875, 0.0157012939453125, -0.0256195068359375, -0.04974365234375, 0.029632568359375, -0.0261383056640625, -0.003437042236328125, -0.015777587890625, 0.041351318359375, -0.00020599365234375, -0.0135345458984375, -0.02447509765625, -0.01444244384765625, 0.023406982421875, 0.0257415771484375, -0.030609130859375, 0.004825592041015625, -0.059814453125, 0.007259368896484375, 0.01128387451171875, -0.00267791748046875, 0.050445556640625, -0.01025390625, -0.042266845703125, 0.0134124755859375, 0.026397705078125, -0.00127410888671875, -0.0200042724609375, 0.006237030029296875, -0.0279693603515625, 0.019256591796875, 0.0068206787109375, 0.01708984375, 0.009124755859375, 0.00951385498046875, -0.0340576171875, 0.0259552001953125, 0.00470733642578125, 0.01548004150390625, -0.0005040168762207031, -0.018768310546875, -0.024871826171875, -0.0809326171875, 0.05657958984375, -0.00463104248046875, 0.00626373291015625, -0.0219268798828125, -0.039398193359375, 0.0095367431640625, 0.115966796875, -0.023956298828125, -0.01232147216796875, 0.002208709716796875, 0.03057861328125, -0.065185546875, -0.052276611328125, -0.043670654296875, 0.0035419464111328125, -0.111572265625, 0.002292633056640625, -0.0106201171875, -0.03936767578125, 0.0187530517578125, -0.034332275390625, -0.045654296875, -0.06768798828125, 0.0037021636962890625, 0.0538330078125, -0.0036487579345703125, 0.00994110107421875, -0.00927734375, -0.0106964111328125, 0.035980224609375, -0.004100799560546875, -0.09429931640625, -0.022369384765625, -0.043548583984375, 0.1103515625, 0.04473876953125, -0.021514892578125, 0.008453369140625, 0.0599365234375, -0.01143646240234375, -0.022735595703125, 0.01222991943359375, 0.030120849609375, -0.00875091552734375, -0.00955963134765625, -0.01428985595703125, -0.032318115234375, -0.01210784912109375, 0.005767822265625, -0.0227508544921875, 0.03167724609375, -0.003948211669921875, -0.00937652587890625, 0.0460205078125, -0.029266357421875, -0.0267791748046875, -0.0178375244140625, 0.003570556640625, 0.00673675537109375, 0.0000400543212890625, 0.0012540817260742188, -0.00787353515625, -0.0099029541015625, 0.0173492431640625, 0.0142822265625, -0.022430419921875, -0.0003380775451660156, 0.0379638671875, 0.03515625, -0.0241241455078125, 0.0104522705078125, 0.04150390625, 0.040191650390625, -0.0044403076171875, 0.02691650390625, 0.00579833984375, -0.0345458984375, 0.061553955078125, 0.005680084228515625, 0.002925872802734375, -0.01294708251953125, 0.05218505859375, -0.01367950439453125, -0.039825439453125, 0.037689208984375, -0.032745361328125, 0.0034503936767578125, 0.0308074951171875, 0.01374053955078125, -0.012481689453125, 0.00820159912109375, 0.0135498046875, 0.01219940185546875, -0.0298004150390625, -0.01213836669921875, -0.034423828125, -0.0014410018920898438, -0.023193359375, 0.0303192138671875, 0.040252685546875, -0.0183868408203125, 0.0233612060546875, -0.01062774658203125, 0.0018329620361328125, 0.0132904052734375, 0.0000756382942199707, 0.01363372802734375, -0.01128387451171875, 0.055816650390625, -0.00858306884765625, -0.00673675537109375, -0.0172271728515625, 0.12066650390625, 0.0149078369140625, -0.05816650390625, 0.00357818603515625, -0.02374267578125, 0.038665771484375, 0.0404052734375, 0.01081085205078125, 0.0416259765625, -0.026519775390625, -0.01953125, -0.016448974609375, -0.000640869140625, -0.051727294921875, -0.05084228515625, 0.0163726806640625, -0.0095672607421875, -0.009521484375, 0.01800537109375, 0.03753662109375, 0.01073455810546875, 0.0225067138671875, -0.00791168212890625, -0.003658294677734375, 0.01000213623046875, 0.03472900390625, 0.001392364501953125, -0.007030487060546875, 0.005558013916015625, 0.01158905029296875, 0.040313720703125, -0.01995849609375, 0.00492095947265625, 0.010009765625, 0.042388916015625, 0.004390716552734375, -0.0093231201171875, 0.00673675537109375, -0.0121002197265625, -0.01751708984375, 0.03790283203125, -0.0158843994140625, -0.056060791015625, -0.0211944580078125, -0.001873016357421875, 0.02008056640625, -0.023468017578125, -0.0198822021484375, 0.024017333984375, -0.034454345703125, 0.00041103363037109375, -0.0103607177734375, -0.027557373046875, -0.011077880859375, -0.00989532470703125, -0.03350830078125, -0.0284271240234375, -0.033233642578125, -0.047698974609375, -0.0252532958984375, 0.019866943359375, 0.0174713134765625, -0.0433349609375, -0.014678955078125, 0.045440673828125, -0.01374053955078125, -0.0418701171875, 0.0160064697265625, 0.0131683349609375, 0.0311126708984375, 0.002227783203125, -0.034454345703125, 0.00775146484375, -0.04217529296875, -0.0034275054931640625, -0.0543212890625, -0.05596923828125, -0.02392578125, 0.005794525146484375, -0.0114898681640625, -0.0113983154296875, -0.002346038818359375, -0.006771087646484375, -0.0697021484375, 0.053802490234375, 0.058746337890625, 0.0390625, -0.0191802978515625, 0.05242919921875, 0.01026153564453125, 0.004428863525390625, 0.00634002685546875, 0.032440185546875, 0.01070404052734375, -0.003833770751953125, 0.019805908203125, -0.01195526123046875, -0.0079345703125, -0.055389404296875, 0.025115966796875, 0.0092010498046875, 0.054962158203125, -0.005664825439453125, 0.0163726806640625, 0.00449371337890625, -0.0160980224609375, -0.0169525146484375, 0.005596160888671875, 0.0254669189453125, 0.0220184326171875, 0.0248260498046875, 0.036773681640625, 0.0694580078125, -0.03387451171875, -0.068603515625, 0.035064697265625, 0.0186309814453125, 0.0469970703125, -0.0017490386962890625, -0.05609130859375, 0.039337158203125, 0.0222015380859375, 0.01727294921875, 0.037933349609375, -0.01267242431640625, 0.0256500244140625, 0.0166473388671875, -0.0301513671875, 0.031341552734375, 0.030364990234375, 0.06317138671875, -0.00982666015625, -0.0050811767578125, 0.047454833984375, -0.0286102294921875, 0.01861572265625, 0.10296630859375, 0.0723876953125, -0.1351318359375, 0.003925323486328125, -0.0206756591796875, 0.006633758544921875, 0.08685302734375, 0.0015697479248046875, -0.00765228271484375, -0.0003478527069091797, 0.0413818359375, 0.00815582275390625, -0.006381988525390625, 0.038848876953125, 0.0027256011962890625, 0.00569915771484375, 0.00018084049224853516, -0.03045654296875, -0.01702880859375, -0.01378631591796875, -0.0246429443359375, 0.0094451904296875, -0.00989532470703125, -0.01432037353515625, 0.0019855499267578125, -0.00919342041015625, -0.008941650390625, -0.0262298583984375, 0.0214080810546875, -0.052734375, 0.004199981689453125, 0.0364990234375, 0.03216552734375, 0.0482177734375, 0.0296630859375, 0.00977325439453125, 0.007251739501953125, -0.0242156982421875, 0.03656005859375, 0.023101806640625, -0.0102996826171875, -0.018280029296875, 0.000080108642578125, -0.0190887451171875, 0.0107574462890625, -0.0135650634765625, -0.007175445556640625, -0.005588531494140625, -0.0016489028930664062, 0.0584716796875, 0.003330230712890625, -0.029052734375, 0.0136871337890625, -0.0033855438232421875, 0.00901031494140625, -0.0313720703125, 0.0352783203125, -0.09051513671875, -0.057098388671875, 0.00351715087890625, -0.05938720703125, -0.0178680419921875, -0.03924560546875, -0.036468505859375, 0.058685302734375, -0.0293731689453125, 0.020904541015625, 0.026885986328125, 0.015228271484375, -0.01500701904296875, 0.005157470703125, 0.003086090087890625, 0.0212860107421875, 0.00034928321838378906, -0.0160369873046875, -0.0146484375, -0.005435943603515625, -0.006954193115234375, 0.0185394287109375, 0.0236053466796875, 0.01239013671875, -0.06756591796875, -0.01165008544921875, 0.03314208984375, 0.032379150390625, 0.02789306640625, 0.04693603515625, -0.01126861572265625, 0.0181732177734375, 0.0084075927734375, -0.00923919677734375, 0.032318115234375, 0.01009368896484375, -0.07403564453125, 0.02838134765625, -0.01271820068359375, -0.035675048828125, -0.0105133056640625, 0.02117919921875, -0.09490966796875, 0.024566650390625, 0.042999267578125, 0.01555633544921875, -0.01119232177734375, 0.0289764404296875, 0.00506591796875, 0.0021915435791015625, -0.036529541015625, -0.0126495361328125, 0.0215301513671875, 0.007755279541015625, 0.005939483642578125, -0.0171356201171875, 0.009185791015625, -0.0195770263671875, 0.00559234619140625, -0.0048370361328125, 0.03485107421875, -0.0230865478515625, 0.0117645263671875, 0.00038552284240722656, 0.0248870849609375, -0.0239410400390625, -0.01174163818359375, -0.0206298828125, 0.0129241943359375, -0.0186920166015625, -0.00838470458984375, 0.01183319091796875, 0.00391387939453125, 0.032135009765625, -0.003574371337890625, 0.055419921875, -0.051727294921875, -0.038787841796875, 0.00197601318359375, -0.007312774658203125, 0.005321502685546875, -0.009857177734375, -0.002841949462890625, 0.01544952392578125, 0.005992889404296875, 0.03411865234375, -0.00975799560546875, -0.00025916099548339844, -0.000027179718017578125, 0.006755828857421875, 0.0151824951171875, 0.006927490234375, -0.012969970703125, 0.007221221923828125, -0.036376953125, -0.003017425537109375, -0.01105499267578125, 0.034423828125, 0.0012693405151367188, 0.0360107421875, -0.037139892578125, 0.017791748046875, 0.0009260177612304688, -0.01556396484375, 0.009368896484375, 0.0071258544921875, -0.029388427734375, -0.0286407470703125, -0.0030269622802734375, -0.026885986328125, -0.0010194778442382812, -0.0421142578125, 0.0261383056640625, 0.0184783935546875, 0.00568389892578125, 0.00618743896484375, -0.005802154541015625, 0.041900634765625, -0.013092041015625, 0.004924774169921875, 0.0079498291015625, -0.023956298828125, -0.005428314208984375, 0.01506805419921875, 0.031585693359375, 0.029388427734375, -0.038177490234375, -0.005245208740234375, -0.021087646484375, -0.038116455078125, 0.018280029296875, 0.039642333984375, 0.00029969215393066406, 0.00444793701171875, 0.03692626953125, -0.006328582763671875, -0.01311492919921875, 0.0001195669174194336, 0.02154541015625, -0.039764404296875, 0.0082550048828125, 0.005901336669921875, -0.09033203125, -0.044281005859375, -0.061553955078125, 0.036285400390625, 0.027252197265625, 0.08074951171875, -0.0123443603515625, 0.035186767578125, -0.0021820068359375, 0.00858306884765625, -0.0209197998046875, -0.0008420944213867188, 0.00992584228515625, -0.028076171875, -0.01288604736328125, 0.004032135009765625, -0.05950927734375, 0.0694580078125, -0.0142974853515625, 0.005321502685546875, 0.04986572265625, 0.0036869049072265625, -0.0050811767578125, -0.01001739501953125, -0.00864410400390625, -0.034759521484375, -0.05902099609375, -0.036224365234375, 0.0297698974609375, -0.014892578125, -0.01245880126953125, -0.03009033203125, 0.032928466796875, -0.01276397705078125, -0.037139892578125, 0.040771484375, -0.0625, 0.06451416015625, 0.0341796875, -0.018951416015625, 0.005344390869140625, -0.0032196044921875, -0.015380859375, 0.01477813720703125, 0.0038585662841796875, 0.0235595703125, -0.002826690673828125, -0.006603240966796875, 0.048828125, 0.09429931640625, 0.0892333984375, 0.0198822021484375, 0.0305633544921875, 0.04364013671875, -0.038726806640625, 0.056640625, -0.0322265625, -0.053466796875, -0.047760009765625, 0.007022857666015625, 0.0261688232421875, -0.0176849365234375, -0.0546875, -0.0845947265625, 0.033355712890625, 0.0400390625, -0.0221099853515625, -0.04345703125, 0.0243682861328125, -0.041259765625, 0.08087158203125, -0.00313568115234375, 0.00045371055603027344, 0.00855255126953125, 0.039398193359375, -0.0152587890625, -0.0289764404296875, -0.0262451171875, 0.030853271484375, -0.04302978515625, 0.005565643310546875, 0.0275115966796875, 0.0017728805541992188, 0.059783935546875, -0.0140228271484375, -0.017578125, 0.03607177734375, -0.07037353515625, 0.01132965087890625, 0.039215087890625, 0.0200347900390625, -0.0413818359375, -0.07879638671875, -0.010284423828125, -0.00081634521484375, 0.0298309326171875, -0.00969696044921875, 0.015716552734375, 0.02716064453125, -0.025634765625, -0.080322265625, 0.004947662353515625, -0.0008602142333984375, -0.040679931640625, -0.020751953125, 0.04132080078125, 0.00024390220642089844, -0.036590576171875, -0.01212310791015625, -0.041656494140625, 0.01377105712890625, 0.0087432861328125, 0.021514892578125, -0.001049041748046875, 0.043609619140625, 0.04736328125, -0.0345458984375, 0.0145721435546875, 0.0019292831420898438, -0.0014133453369140625, -0.0189971923828125, -0.001750946044921875, 0.024261474609375, 0.029052734375, -0.01611328125, -0.035614013671875, 0.018341064453125, -0.0108642578125, -0.00010842084884643555, -0.042724609375, 0.00286865234375, -0.00899505615234375, 0.062255859375, 0.00103759765625, -0.006061553955078125, -0.00312042236328125, -0.04730224609375, -0.0305938720703125, -0.0255126953125, -0.029327392578125, 0.02264404296875, -0.08868408203125, -0.01666259765625, -0.00447845458984375, -0.0099639892578125, -0.01152801513671875, 0.027984619140625, -0.017578125, 0.00550079345703125, 0.044036865234375, 0.0028247833251953125, -0.039337158203125, 0.035430908203125, 0.0833740234375, -0.03509521484375, 0.033782958984375, -0.0012369155883789062, -0.00585174560546875, 0.07476806640625, -0.0031604766845703125, 0.00669097900390625, 0.00666046142578125, -0.03179931640625, -0.0002932548522949219, -0.01513671875, 0.022430419921875, -0.029815673828125, -0.0238800048828125, -0.0020427703857421875, -0.01538848876953125, -0.0282135009765625, -0.02581787109375, 0.00974273681640625, 0.03155517578125, -0.01837158203125, 0.0736083984375, 0.0015201568603515625, -0.0150604248046875, -0.01483917236328125, 0.017822265625, 0.01432037353515625, -0.0252532958984375, 0.0282440185546875, -0.0199737548828125, -0.0023403167724609375, -0.041107177734375, 0.0050048828125, -0.07733154296875, 0.033050537109375, 0.0004811286926269531, 0.0107421875, 0.03997802734375 ]
587e42a8790f4f72a260ec4fd00fa9e6f54193f6
Wordpress Stackexchange Q: Custom CSS In Admin Only For Certain Roles I'm looking to apply custom CSS in the admin only for a certain user role, "Contributor" to be exact. Everything I try either seems to have no effect, or produces a 500 error. What I've tried has in the main been loosely based around this: add_action('admin_head', 'custom_admin_css'); function custom_admin_css( ){ global $user; if (isset($user->roles) && is_array( $user->roles ) ) { if( $user->roles[0] == 'administrator' ) { //Do something } elseif ( $user->roles[0] == 'editor' ) { //Do something } elseif ( $user->roles[0] == 'contributor') { echo '<style> CSS </style>'; } else { //Do something } } } A: Try this: function wpse245372_admin_user_css() { $user = wp_get_current_user(); if ( in_array( 'administrator', (array) $user->roles ) ) { // Your Admin Stuff } elseif ( in_array( 'editor', (array) $user->roles ) ) { // Your Editor Stuff } elseif ( in_array( 'contributor', (array) $user->roles ) ) { echo '<style> CSS </style>'; } else { // What Everyone Else Gets } } add_action( 'admin_head', 'wpse245372_admin_user_css' );
Q: Custom CSS In Admin Only For Certain Roles I'm looking to apply custom CSS in the admin only for a certain user role, "Contributor" to be exact. Everything I try either seems to have no effect, or produces a 500 error. What I've tried has in the main been loosely based around this: add_action('admin_head', 'custom_admin_css'); function custom_admin_css( ){ global $user; if (isset($user->roles) && is_array( $user->roles ) ) { if( $user->roles[0] == 'administrator' ) { //Do something } elseif ( $user->roles[0] == 'editor' ) { //Do something } elseif ( $user->roles[0] == 'contributor') { echo '<style> CSS </style>'; } else { //Do something } } } A: Try this: function wpse245372_admin_user_css() { $user = wp_get_current_user(); if ( in_array( 'administrator', (array) $user->roles ) ) { // Your Admin Stuff } elseif ( in_array( 'editor', (array) $user->roles ) ) { // Your Editor Stuff } elseif ( in_array( 'contributor', (array) $user->roles ) ) { echo '<style> CSS </style>'; } else { // What Everyone Else Gets } } add_action( 'admin_head', 'wpse245372_admin_user_css' ); A: Upon request I will write an answer using a function from a suggested answer for the similar question: How to target with css, admin elements according to user role level?. This function will output classes to the body element for all roles of the current user in the form role-XXXXX function wpa66834_role_admin_body_class( $classes ) { global $current_user; foreach( $current_user->roles as $role ) $classes .= ' role-' . $role; return trim( $classes ); } add_filter( 'admin_body_class', 'wpa66834_role_admin_body_class' ); Now the roles can be targeted with css rules like: #targetElement { display: none; } .role-editor #targetElement { display: visible; } These CSS rules don't have to be output conditionally. They can be placed for example in any CSS file which is included via admin_enqueue_scripts action: function wp245372_admin_enqueue_scripts() { wp_enqueue_style( 'my-admin-css', 'path/to/file.css', array(), 0.1); } add_action( 'admin_enqueue_scripts', 'wp245372_admin_enqueue_scripts' );
wordpress
{ "language": "en", "length": 307, "provenance": "stackexchange_00019.jsonl.gz:470035", "question_score": "4", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/245372" }
[ 0.03851318359375, -0.01474761962890625, -0.0079803466796875, -0.032958984375, -0.0224761962890625, -0.0257415771484375, -0.0173492431640625, -0.0235748291015625, -0.0261993408203125, 0.01523590087890625, -0.000705718994140625, 0.01934814453125, -0.0110626220703125, -0.03125, 0.009307861328125, -0.0076751708984375, 0.01427459716796875, 0.0142974853515625, 0.00179290771484375, -0.0233306884765625, -0.01666259765625, -0.01207733154296875, -0.004909515380859375, 0.0187225341796875, 0.005687713623046875, -0.03375244140625, 0.052947998046875, -0.0017862319946289062, 0.0180511474609375, -0.00841522216796875, 0.01508331298828125, -0.0250091552734375, 0.01006317138671875, 0.0028591156005859375, 0.008270263671875, -0.0036773681640625, -0.0147857666015625, 0.00650787353515625, -0.0014677047729492188, 0.003173828125, 0.0218963623046875, 0.0015506744384765625, -0.025543212890625, 0.049072265625, -0.0254669189453125, -0.05828857421875, 0.0254364013671875, -0.01050567626953125, 0.0109405517578125, -0.02850341796875, 0.0012950897216796875, -0.03009033203125, 0.013671875, -0.0176544189453125, -0.01373291015625, 0.02056884765625, -0.003833770751953125, 0.040985107421875, 0.042999267578125, -0.041473388671875, -0.047882080078125, -0.0333251953125, 0.027923583984375, -0.0224761962890625, -0.005626678466796875, 0.018310546875, 0.047332763671875, 0.0111846923828125, -0.03948974609375, -0.03143310546875, -0.010101318359375, -0.0037860870361328125, -0.0221099853515625, -0.0022716522216796875, -0.06695556640625, -0.0074615478515625, 0.004642486572265625, -0.0596923828125, 0.022705078125, 0.0055084228515625, -0.0012969970703125, 0.038848876953125, -0.00201416015625, -0.01409149169921875, 0.00836944580078125, 0.0224609375, -0.027923583984375, -0.035675048828125, -0.0003075599670410156, -0.012176513671875, -0.0059661865234375, -0.0087432861328125, -0.0050811767578125, -0.0231781005859375, 0.00103759765625, -0.0419921875, 0.02850341796875, 0.0850830078125, -0.018310546875, -0.02239990234375, -0.0260467529296875, -0.01151275634765625, -0.049072265625, -0.025848388671875, 0.0285491943359375, 0.07135009765625, -0.0170745849609375, -0.006591796875, 0.0251312255859375, -0.005100250244140625, 0.01024627685546875, -0.0281219482421875, -0.011627197265625, 0.009246826171875, 0.0010805130004882812, -0.0255279541015625, -0.05078125, 0.01123046875, -0.0282745361328125, -0.01522064208984375, -0.003086090087890625, 0.004055023193359375, 0.050872802734375, -0.033538818359375, 0.00643157958984375, 0.006198883056640625, -0.0308074951171875, -0.045379638671875, 0.0181732177734375, -0.007335662841796875, -0.037841796875, 0.017547607421875, 0.0765380859375, 0.032012939453125, 0.024810791015625, -0.018524169921875, 0.0682373046875, -0.001827239990234375, -0.018951416015625, 0.030426025390625, -0.0211029052734375, -0.01372528076171875, -0.007373809814453125, -0.033538818359375, -0.0220947265625, 0.0117950439453125, 0.0135040283203125, 0.01161956787109375, -0.006397247314453125, -0.08575439453125, 0.0243072509765625, -0.0455322265625, -0.0022640228271484375, 0.026885986328125, 0.017913818359375, 0.028106689453125, 0.036773681640625, -0.0017900466918945312, -0.027801513671875, -0.00305938720703125, 0.004276275634765625, 0.0121917724609375, 0.036407470703125, -0.026092529296875, -0.0404052734375, -0.00980377197265625, -0.03607177734375, -0.00157928466796875, 0.0323486328125, -0.0269317626953125, 0.038909912109375, -0.009613037109375, 0.078369140625, 0.02813720703125, 0.0120086669921875, 0.03704833984375, -0.01181793212890625, 0.01444244384765625, 0.006526947021484375, -0.002094268798828125, -0.0107574462890625, -0.04534912109375, 0.016632080078125, -0.00969696044921875, -0.029754638671875, -0.03643798828125, -0.0184326171875, -0.014129638671875, 0.06817626953125, 0.016326904296875, -0.016632080078125, -0.0181732177734375, 0.013580322265625, -0.044647216796875, -0.01776123046875, -0.0299530029296875, 0.0282135009765625, -0.0009179115295410156, -0.004795074462890625, 0.044708251953125, 0.03082275390625, -0.0291900634765625, 0.0247344970703125, -0.02392578125, -0.049591064453125, 0.00301361083984375, -0.028076171875, 0.0137939453125, 0.0004413127899169922, 0.012237548828125, -0.007526397705078125, 0.0023784637451171875, 0.004669189453125, -0.0640869140625, -0.014312744140625, 0.034759521484375, 0.0130767822265625, 0.042449951171875, -0.001682281494140625, 0.0097198486328125, 0.032012939453125, -0.03741455078125, 0.0182952880859375, 0.0394287109375, 0.0117340087890625, -0.01041412353515625, -0.010223388671875, 0.00669097900390625, 0.050384521484375, 0.020599365234375, 0.043426513671875, -0.0206451416015625, 0.054443359375, 0.050018310546875, -0.00838470458984375, -0.0020046234130859375, -0.01177978515625, -0.09295654296875, -0.011444091796875, 0.058349609375, 0.034149169921875, -0.00860595703125, -0.00817108154296875, 0.01030731201171875, 0.08966064453125, 0.04156494140625, 0.022308349609375, 0.0039215087890625, -0.018585205078125, 0.01248931884765625, 0.01143646240234375, 0.0159759521484375, 0.020904541015625, -0.049713134765625, 0.0069122314453125, 0.058013916015625, -0.041534423828125, -0.0179595947265625, -0.001529693603515625, -0.003444671630859375, 0.00756072998046875, -0.0176849365234375, 0.00580596923828125, -0.01360321044921875, -0.044158935546875, -0.01210784912109375, -0.0291290283203125, -0.038116455078125, -0.0292816162109375, -0.01085662841796875, 0.052398681640625, -0.002727508544921875, 0.006549835205078125, 0.037445068359375, 0.0513916015625, -0.029052734375, -0.04107666015625, -0.0234527587890625, 0.049774169921875, 0.00693511962890625, -0.001438140869140625, 0.050537109375, -0.0201263427734375, -0.004222869873046875, -0.00582122802734375, -0.022308349609375, -0.00788116455078125, 0.0031070709228515625, 0.045257568359375, -0.00609588623046875, 0.0305938720703125, -0.01064300537109375, -0.0245208740234375, 0.039459228515625, -0.0134735107421875, -0.045501708984375, 0.00937652587890625, -0.0036163330078125, 0.00885009765625, -0.00698089599609375, 0.019744873046875, 0.0406494140625, 0.0023479461669921875, -0.00022077560424804688, 0.0005898475646972656, -0.0265655517578125, -0.0232391357421875, 0.04034423828125, 0.00421142578125, -0.049957275390625, 0.0189056396484375, 0.04412841796875, 0.01274871826171875, 0.019775390625, 0.006862640380859375, -0.03741455078125, 0.00977325439453125, 0.0034542083740234375, -0.04754638671875, -0.0494384765625, -0.0028743743896484375, -0.07440185546875, -0.02618408203125, 0.013671875, -0.04718017578125, 0.016143798828125, 0.01445770263671875, -0.0015668869018554688, 0.0249786376953125, -0.023406982421875, -0.0214691162109375, -0.006908416748046875, -0.053955078125, -0.0084075927734375, 0.00878143310546875, 0.00458526611328125, -0.011474609375, 0.0814208984375, 0.003631591796875, -0.05218505859375, -0.0077972412109375, 0.0029125213623046875, -0.005096435546875, 0.003536224365234375, 0.007457733154296875, -0.03338623046875, -0.006946563720703125, 0.0027256011962890625, 0.045135498046875, -0.0105133056640625, -0.0156097412109375, -0.0165557861328125, -0.00951385498046875, -0.02197265625, 0.0265045166015625, 0.0413818359375, 0.00768280029296875, 0.018585205078125, 0.07318115234375, -0.0106201171875, -0.035186767578125, 0.01192474365234375, -0.035308837890625, 0.089599609375, 0.00319671630859375, -0.004703521728515625, 0.046630859375, 0.038482666015625, 0.03399658203125, 0.0198516845703125, -0.031158447265625, 0.026214599609375, -0.002532958984375, 0.01224517822265625, 0.04229736328125, 0.01242828369140625, -0.0250701904296875, -0.03729248046875, 0.032867431640625, -0.011138916015625, 0.010101318359375, 0.004913330078125, 0.01082611083984375, -0.0233001708984375, -0.055450439453125, 0.04229736328125, -0.01422119140625, 0.03240966796875, -0.042938232421875, -0.0259857177734375, -0.0032558441162109375, 0.0911865234375, -0.01739501953125, -0.011383056640625, -0.020965576171875, 0.0119781494140625, -0.037322998046875, -0.041778564453125, -0.00868988037109375, 0.0091400146484375, -0.11199951171875, 0.00836944580078125, -0.023101806640625, -0.01247406005859375, -0.0172271728515625, 0.01189422607421875, -0.063232421875, -0.05340576171875, 0.027008056640625, -0.02886962890625, -0.006237030029296875, 0.029296875, -0.0257415771484375, -0.0049285888671875, -0.01212310791015625, -0.029296875, -0.141357421875, -0.0229034423828125, -0.0238037109375, 0.09356689453125, -0.00476837158203125, 0.026947021484375, -0.035675048828125, 0.057952880859375, -0.005519866943359375, -0.01214599609375, -0.006816864013671875, 0.0194549560546875, -0.0311279296875, -0.0091094970703125, -0.0203857421875, -0.0239105224609375, -0.0202789306640625, 0.0089874267578125, -0.024658203125, 0.049407958984375, -0.01175689697265625, -0.029449462890625, 0.032623291015625, -0.035919189453125, -0.0282745361328125, -0.005218505859375, 0.001659393310546875, 0.027496337890625, -0.0234375, 0.0031185150146484375, -0.01708984375, -0.041351318359375, 0.0278472900390625, -0.054443359375, -0.0146331787109375, 0.01258087158203125, 0.040618896484375, 0.03009033203125, -0.006805419921875, 0.0186920166015625, 0.01824951171875, 0.041015625, -0.0021762847900390625, 0.06982421875, 0.052459716796875, -0.0254058837890625, 0.056304931640625, 0.0301666259765625, 0.0030727386474609375, -0.01806640625, 0.037353515625, -0.0022411346435546875, -0.029693603515625, 0.025146484375, -0.01172637939453125, 0.01041412353515625, -0.02947998046875, 0.006336212158203125, -0.0200347900390625, 0.036163330078125, 0.036468505859375, 0.028564453125, -0.026275634765625, -0.03131103515625, -0.038238525390625, -0.0077056884765625, -0.02435302734375, 0.0615234375, 0.03546142578125, -0.017547607421875, 0.041961669921875, 0.01456451416015625, -0.0082244873046875, -0.01776123046875, 0.0088958740234375, -0.0063629150390625, 0.03271484375, -0.0267791748046875, -0.00490570068359375, -0.032562255859375, -0.00667572021484375, 0.050994873046875, 0.001773834228515625, -0.03192138671875, -0.015960693359375, -0.0157012939453125, 0.02008056640625, 0.005985260009765625, -0.0121917724609375, 0.039642333984375, -0.00327301025390625, -0.0178070068359375, 0.0142059326171875, -0.00637054443359375, -0.0116424560546875, -0.046905517578125, 0.027862548828125, 0.0060882568359375, -0.02630615234375, 0.0069580078125, 0.021240234375, 0.0625, -0.004150390625, -0.0311737060546875, 0.01751708984375, 0.024688720703125, -0.0157470703125, -0.01360321044921875, 0.04095458984375, 0.02313232421875, -0.0364990234375, 0.060760498046875, -0.0171356201171875, 0.027313232421875, 0.0270233154296875, 0.03204345703125, 0.02508544921875, -0.007293701171875, -0.014129638671875, -0.01727294921875, -0.0212860107421875, 0.04266357421875, -0.033050537109375, -0.06134033203125, -0.0268096923828125, 0.014617919921875, 0.028961181640625, -0.035552978515625, -0.0265045166015625, 0.0160369873046875, -0.01016998291015625, 0.01593017578125, -0.00743865966796875, -0.0545654296875, 0.0379638671875, 0.04119873046875, -0.032379150390625, -0.0098724365234375, -0.001499176025390625, -0.031829833984375, -0.0400390625, 0.01177978515625, 0.004428863525390625, 0.0013942718505859375, -0.02532958984375, 0.0164794921875, -0.04498291015625, 0.0080108642578125, -0.05645751953125, 0.0010986328125, 0.0404052734375, 0.0347900390625, -0.056793212890625, 0.044097900390625, -0.048828125, 0.01470184326171875, -0.055145263671875, -0.06787109375, -0.0251617431640625, -0.03314208984375, -0.0037555694580078125, -0.0030117034912109375, 0.00759124755859375, -0.019500732421875, -0.05242919921875, 0.053192138671875, 0.0579833984375, 0.051971435546875, -0.02886962890625, 0.06378173828125, 0.0236968994140625, 0.0110626220703125, 0.007354736328125, 0.00455474853515625, -0.027740478515625, 0.0194091796875, -0.0114593505859375, -0.049896240234375, 0.0030670166015625, -0.00701904296875, 0.01502227783203125, 0.040771484375, 0.044525146484375, 0.0039520263671875, 0.0284271240234375, 0.00797271728515625, 0.0083160400390625, -0.0231170654296875, -0.073974609375, -0.019744873046875, 0.00940704345703125, -0.01218414306640625, 0.0234832763671875, 0.0745849609375, -0.0224609375, -0.05487060546875, 0.0248870849609375, 0.00466156005859375, 0.053619384765625, 0.01177215576171875, -0.041778564453125, 0.0232696533203125, 0.033203125, 0.0162506103515625, 0.035675048828125, 0.0013856887817382812, 0.019866943359375, 0.017242431640625, -0.0208282470703125, 0.03997802734375, 0.0271759033203125, 0.032684326171875, -0.01165008544921875, 0.04022216796875, 0.036376953125, 0.0012559890747070312, 0.03253173828125, 0.08404541015625, 0.073974609375, -0.1241455078125, -0.006328582763671875, -0.024932861328125, 0.005062103271484375, 0.09405517578125, -0.005496978759765625, -0.022613525390625, -0.045074462890625, 0.0538330078125, -0.0216522216796875, -0.0131988525390625, 0.0201416015625, -0.01561737060546875, -0.00989532470703125, -0.0196685791015625, -0.01739501953125, -0.0167388916015625, 0.01277923583984375, -0.03662109375, -0.0145263671875, -0.024200439453125, 0.00848388671875, 0.034912109375, -0.030426025390625, 0.001316070556640625, -0.03924560546875, -0.0014009475708007812, -0.01256561279296875, -0.0462646484375, 0.02069091796875, -0.003894805908203125, 0.051910400390625, 0.044830322265625, -0.01459503173828125, 0.01448822021484375, 0.0189361572265625, -0.01525115966796875, -0.05462646484375, -0.042388916015625, -0.005397796630859375, 0.01274871826171875, -0.0098114013671875, 0.040130615234375, 0.0018205642700195312, -0.052825927734375, -0.007183074951171875, 0.00630950927734375, 0.084228515625, -0.0197296142578125, -0.0303192138671875, 0.033355712890625, -0.0136260986328125, -0.0302581787109375, 0.0018815994262695312, 0.01288604736328125, -0.06732177734375, -0.071533203125, -0.0014324188232421875, -0.07904052734375, -0.0019435882568359375, -0.01160430908203125, -0.0185089111328125, 0.040374755859375, -0.01433563232421875, 0.0126953125, 0.0323486328125, 0.00021660327911376953, -0.00395965576171875, -0.0017728805541992188, -0.020538330078125, 0.0016994476318359375, 0.025665283203125, -0.0005545616149902344, -0.024505615234375, -0.0091552734375, -0.019287109375, 0.041656494140625, 0.0275421142578125, 0.0286102294921875, -0.07525634765625, -0.00821685791015625, 0.021942138671875, -0.00560760498046875, -0.0070648193359375, 0.07830810546875, -0.0183868408203125, -0.0311431884765625, -0.015533447265625, 0.004367828369140625, 0.04010009765625, -0.0382080078125, -0.0594482421875, -0.0146942138671875, 0.01291656494140625, 0.0191802978515625, 0.010040283203125, 0.04736328125, -0.07818603515625, 0.00612640380859375, 0.07000732421875, -0.06390380859375, -0.0181427001953125, 0.0106964111328125, -0.00624847412109375, -0.029571533203125, -0.00218963623046875, -0.0294647216796875, 0.0350341796875, 0.0094451904296875, -0.0188446044921875, -0.00890350341796875, 0.01715087890625, -0.0162353515625, -0.00679779052734375, -0.0162200927734375, 0.039459228515625, -0.024932861328125, -0.00856781005859375, 0.000331878662109375, 0.006710052490234375, -0.0090179443359375, 0.021759033203125, 0.0020084381103515625, -0.0137176513671875, -0.01059722900390625, -0.01104736328125, 0.0146026611328125, 0.01146697998046875, 0.01294708251953125, 0.015045166015625, 0.037750244140625, -0.0137481689453125, 0.0019855499267578125, -0.05340576171875, 0.0103607177734375, 0.0226287841796875, -0.032989501953125, -0.012359619140625, 0.0010890960693359375, 0.01517486572265625, 0.027252197265625, -0.03302001953125, -0.03497314453125, 0.02679443359375, 0.0230865478515625, 0.04388427734375, -0.0094757080078125, 0.060699462890625, -0.01084136962890625, -0.015777587890625, 0.026275634765625, -0.0020618438720703125, -0.024322509765625, -0.0014066696166992188, -0.026153564453125, -0.0164642333984375, 0.0255126953125, -0.0138397216796875, -0.0287017822265625, -0.02862548828125, -0.00946044921875, 0.0015087127685546875, -0.0120849609375, -0.0189056396484375, -0.02301025390625, 0.00151824951171875, -0.0265350341796875, 0.0379638671875, 0.036468505859375, 0.0174713134765625, -0.0024509429931640625, 0.002529144287109375, 0.06683349609375, -0.014923095703125, 0.0274658203125, 0.0034122467041015625, -0.00048828125, -0.012542724609375, 0.0015535354614257812, -0.00341033935546875, 0.0205078125, -0.024200439453125, 0.001995086669921875, -0.0276641845703125, -0.0416259765625, 0.022247314453125, 0.034454345703125, -0.0294189453125, 0.0272369384765625, 0.0195159912109375, -0.0274200439453125, -0.00421142578125, 0.0152435302734375, 0.01329803466796875, -0.01390838623046875, 0.006443023681640625, -0.00171661376953125, -0.0147857666015625, -0.0184478759765625, -0.0306396484375, 0.052734375, 0.026031494140625, 0.0694580078125, -0.044189453125, 0.0330810546875, -0.01218414306640625, 0.0211944580078125, -0.0258636474609375, -0.049224853515625, 0.060791015625, -0.00945281982421875, 0.0011186599731445312, -0.0005612373352050781, -0.060699462890625, 0.005279541015625, 0.0301361083984375, -0.00562286376953125, -0.0027008056640625, 0.0160369873046875, 0.0208740234375, -0.01245880126953125, 0.022186279296875, -0.02239990234375, -0.0259857177734375, -0.06744384765625, -0.022125244140625, 0.0274810791015625, -0.0013780593872070312, -0.01500701904296875, 0.040771484375, -0.014739990234375, -0.028594970703125, 0.0269775390625, -0.040771484375, 0.0094451904296875, 0.0236663818359375, 0.004657745361328125, -0.00910186767578125, 0.00879669189453125, 0.002162933349609375, -0.00966644287109375, 0.0273590087890625, 0.005886077880859375, -0.001155853271484375, -0.01197052001953125, 0.06011962890625, 0.042510986328125, 0.0650634765625, -0.0207366943359375, 0.01226043701171875, 0.047760009765625, -0.0237274169921875, 0.01265716552734375, -0.038482666015625, -0.04229736328125, -0.01470184326171875, -0.0021266937255859375, 0.0239410400390625, 0.00511932373046875, -0.048583984375, -0.0732421875, 0.02935791015625, 0.028594970703125, 0.005611419677734375, -0.06622314453125, 0.044647216796875, -0.0246124267578125, 0.05108642578125, 0.004558563232421875, -0.02288818359375, 0.02813720703125, 0.050201416015625, -0.01522064208984375, -0.00568389892578125, -0.0175628662109375, -0.00763702392578125, -0.037445068359375, 0.021026611328125, 0.0494384765625, 0.0012693405151367188, -0.0012407302856445312, 0.0311126708984375, -0.0296173095703125, 0.084228515625, -0.07415771484375, 0.006168365478515625, 0.01535797119140625, 0.0030231475830078125, -0.0218505859375, -0.0865478515625, 0.00576019287109375, -0.053253173828125, -0.0294952392578125, 0.00791168212890625, -0.0142669677734375, 0.01250457763671875, -0.04278564453125, -0.07769775390625, 0.0266876220703125, 0.007537841796875, -0.036163330078125, -0.029693603515625, 0.050079345703125, 0.005336761474609375, -0.0321044921875, -0.00318145751953125, -0.035003662109375, 0.0033359527587890625, -0.0030422210693359375, 0.0374755859375, -0.035858154296875, 0.030792236328125, 0.037445068359375, -0.10052490234375, 0.0149078369140625, 0.00360107421875, -0.005222320556640625, -0.01336669921875, 0.0286865234375, 0.0034637451171875, 0.039398193359375, 0.00771331787109375, -0.062103271484375, -0.0130462646484375, -0.031829833984375, -0.01122283935546875, -0.010498046875, -0.0254058837890625, -0.027313232421875, 0.05352783203125, 0.059173583984375, 0.0098724365234375, -0.006256103515625, 0.0047454833984375, -0.01342010498046875, -0.06463623046875, -0.0089111328125, 0.030426025390625, -0.06268310546875, -0.0094146728515625, 0.0122528076171875, -0.022735595703125, -0.01192474365234375, 0.03570556640625, -0.047576904296875, 0.003093719482421875, 0.0050506591796875, 0.0027446746826171875, -0.06951904296875, 0.021148681640625, 0.0220184326171875, -0.035980224609375, -0.0213775634765625, 0.0124969482421875, -0.00868988037109375, -0.0005645751953125, 0.0377197265625, -0.001995086669921875, -0.0186767578125, -0.039337158203125, 0.023223876953125, -0.023162841796875, 0.022705078125, -0.046295166015625, -0.015869140625, 0.018798828125, -0.00193023681640625, -0.0289459228515625, -0.0153656005859375, 0.01177978515625, 0.0338134765625, -0.036163330078125, 0.053192138671875, -0.01461029052734375, 0.0295257568359375, -0.0087890625, 0.024749755859375, 0.017425537109375, 0.00046825408935546875, 0.048095703125, -0.023590087890625, 0.0017099380493164062, 0.005657196044921875, -0.004180908203125, -0.050048828125, 0.0148162841796875, 0.03900146484375, 0.0222015380859375, 0.01275634765625 ]
ff65e2b8dd6fab6eb3076529a9004b4d7cc296f4
Wordpress Stackexchange Q: How to make native video player full width? This is what I have now: I want the video player to take up the whole horizontal space and stretch width 100%. The video should also stay responsive, filling the whole video player area. I fallowed advice in this answer and added this to my functions.php: if ( ! isset( $content_width ) ) { $content_width = 850; } The content width on my template is 850px. But setting the content width didn't help. How to make WordPress native video player width 100%? A: It's simple with Wordpress 5 Just add the following CSS: .wp-video { width: 100% !important } .wp-video video { width: 100% !important; height: 100% !important; }
Q: How to make native video player full width? This is what I have now: I want the video player to take up the whole horizontal space and stretch width 100%. The video should also stay responsive, filling the whole video player area. I fallowed advice in this answer and added this to my functions.php: if ( ! isset( $content_width ) ) { $content_width = 850; } The content width on my template is 850px. But setting the content width didn't help. How to make WordPress native video player width 100%? A: It's simple with Wordpress 5 Just add the following CSS: .wp-video { width: 100% !important } .wp-video video { width: 100% !important; height: 100% !important; } A: I added this to my style.css and now the video player is fully responsive! .wp-video, video.wp-video-shortcode, .mejs-container, .mejs-overlay.load { width: 100% !important; height: 100% !important; } .mejs-container { padding-top: 56.25%; } .wp-video, video.wp-video-shortcode { max-width: 100% !important; } video.wp-video-shortcode { position: relative; } .mejs-mediaelement { position: absolute; top: 0; right: 0; bottom: 0; left: 0; } .mejs-controls { display: none; } .mejs-overlay-play { top: 0; right: 0; bottom: 0; left: 0; width: auto !important; height: auto !important; } A: I know this comes a bit late but I going to leave here in case some one needs a different alternative from the above answer. We add the function below to our theme most probably under functions.php or any other included file. The function below wraps the oembed inside the video-container div and below function is the respective CSS for the new class /** * Add Response code to video embeds in WordPress * */ function ns_embed_html( $html ) { return '<div class="video-container">' . $html . '</div>'; } add_filter( 'embed_oembed_html', 'ns_embed_html', 10, 3 ); add_filter( 'video_embed_html', 'ns_embed_html' ); // Jetpack // CSS .video-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 1200px; margin: 0 auto; } .video-container iframe, .video-container object, .video-container embed, .video-container video { position: absolute; top: 0; left: 0; right: 0; width: 100%; height: 100%; }
wordpress
{ "language": "en", "length": 338, "provenance": "stackexchange_00019.jsonl.gz:470041", "question_score": "7", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/245388" }
[ -0.0269622802734375, -0.0229644775390625, -0.02362060546875, 0.0206756591796875, -0.0308837890625, -0.018341064453125, 0.023101806640625, -0.01678466796875, 0.01052093505859375, -0.0011539459228515625, -0.05975341796875, 0.034515380859375, -0.039703369140625, -0.004940032958984375, 0.007007598876953125, -0.04541015625, 0.059112548828125, -0.050750732421875, 0.0249786376953125, -0.0081329345703125, 0.0240478515625, 0.0184478759765625, 0.0411376953125, 0.0689697265625, 0.002895355224609375, -0.007083892822265625, 0.0699462890625, -0.032440185546875, -0.0247802734375, -0.04693603515625, -0.00376129150390625, 0.061248779296875, 0.0152130126953125, 0.045196533203125, -0.0509033203125, -0.02813720703125, 0.01580810546875, -0.00374603271484375, -0.006099700927734375, 0.01065826416015625, -0.00189971923828125, 0.0264129638671875, 0.017913818359375, 0.023193359375, -0.036712646484375, -0.016448974609375, 0.00015985965728759766, -0.0243988037109375, 0.0142059326171875, -0.00994873046875, 0.01220703125, -0.014495849609375, 0.0153961181640625, 0.035919189453125, -0.033294677734375, -0.0284271240234375, -0.07196044921875, 0.01052093505859375, 0.033203125, 0.016876220703125, 0.01099395751953125, -0.0305328369140625, 0.029571533203125, 0.0174102783203125, -0.01290130615234375, -0.015472412109375, -0.025634765625, -0.00305938720703125, -0.023956298828125, -0.0163421630859375, 0.04046630859375, -0.018402099609375, -0.0027370452880859375, -0.031494140625, -0.005229949951171875, 0.0006642341613769531, 0.01134490966796875, -0.00789642333984375, 0.006763458251953125, -0.00942230224609375, 0.0194091796875, -0.00530242919921875, 0.01219940185546875, -0.05963134765625, 0.02886962890625, -0.03411865234375, -0.006011962890625, 0.00868988037109375, -0.0215301513671875, -0.0264129638671875, -0.0109100341796875, -0.0014066696166992188, -0.069091796875, -0.0172271728515625, -0.006473541259765625, -0.031341552734375, -0.00936126708984375, -0.008270263671875, 0.012176513671875, 0.03302001953125, 0.04876708984375, -0.0684814453125, 0.07861328125, -0.04730224609375, 0.002086639404296875, 0.0264129638671875, 0.007843017578125, 0.0018491744995117188, 0.0350341796875, 0.034637451171875, -0.007129669189453125, 0.05047607421875, -0.02008056640625, 0.0159912109375, -0.072509765625, 0.00502777099609375, -0.027252197265625, -0.036712646484375, -0.01500701904296875, 0.001068115234375, -0.00879669189453125, 0.01277923583984375, 0.0107421875, 0.02911376953125, -0.0001748800277709961, 0.01464080810546875, 0.011077880859375, -0.0244598388671875, -0.01355743408203125, 0.0570068359375, -0.03387451171875, -0.0078887939453125, 0.033905029296875, 0.00989532470703125, -0.0181884765625, -0.037017822265625, 0.0073089599609375, -0.0128631591796875, -0.03228759765625, 0.035247802734375, -0.0340576171875, 0.01175689697265625, 0.058685302734375, -0.036895751953125, 0.0670166015625, -0.033782958984375, 0.00933837890625, 0.060943603515625, 0.021820068359375, 0.026397705078125, 0.054931640625, 0.0005054473876953125, -0.0021953582763671875, 0.05450439453125, 0.036865234375, 0.034912109375, 0.08306884765625, -0.0096588134765625, -0.0535888671875, -0.0236968994140625, -0.01082611083984375, 0.0082855224609375, 0.06640625, -0.0122833251953125, -0.0014734268188476562, -0.005725860595703125, -0.08026123046875, -0.0081939697265625, 0.025299072265625, 0.04144287109375, 0.010589599609375, 0.0223846435546875, 0.0159149169921875, 0.0200042724609375, -0.00797271728515625, -0.010223388671875, 0.0293121337890625, -0.02728271484375, -0.00279998779296875, 0.032562255859375, -0.0015001296997070312, -0.017181396484375, 0.023468017578125, -0.022735595703125, 0.019287109375, -0.0228424072265625, 0.001987457275390625, -0.0211334228515625, 0.00424957275390625, 0.0164337158203125, -0.0269927978515625, 0.0113067626953125, -0.04449462890625, 0.030364990234375, -0.0206298828125, 0.00922393798828125, -0.01515960693359375, 0.01073455810546875, -0.01519012451171875, -0.005970001220703125, 0.0540771484375, -0.0157318115234375, 0.019775390625, -0.0135040283203125, -0.049041748046875, 0.005138397216796875, -0.0251922607421875, 0.0272369384765625, 0.0203857421875, 0.01102447509765625, 0.00775146484375, 0.025604248046875, 0.0008187294006347656, -0.0794677734375, -0.054229736328125, 0.0207061767578125, 0.031585693359375, 0.035247802734375, 0.01430511474609375, 0.018829345703125, 0.0247039794921875, -0.016387939453125, 0.0232696533203125, 0.053314208984375, 0.02825927734375, -0.0411376953125, -0.0044403076171875, -0.036376953125, 0.061737060546875, -0.0266571044921875, 0.0268096923828125, 0.0560302734375, -0.002246856689453125, -0.01629638671875, -0.0413818359375, -0.002147674560546875, 0.00420379638671875, -0.009765625, 0.004566192626953125, 0.039764404296875, 0.038330078125, 0.0195465087890625, 0.01218414306640625, 0.030029296875, 0.028167724609375, -0.013458251953125, 0.039276123046875, -0.01317596435546875, 0.020477294921875, 0.01253509521484375, -0.0240631103515625, -0.04718017578125, 0.0242919921875, -0.09210205078125, -0.00237274169921875, 0.048187255859375, -0.0222625732421875, 0.035247802734375, -0.047515869140625, 0.043304443359375, -0.05328369140625, 0.00998687744140625, 0.07830810546875, -0.032867431640625, -0.032012939453125, -0.009765625, -0.0174560546875, -0.0105133056640625, -0.022308349609375, 0.00975799560546875, 0.04150390625, 0.0025959014892578125, -0.0005011558532714844, 0.05169677734375, 0.0011138916015625, -0.04443359375, -0.0025043487548828125, -0.0119476318359375, -0.03851318359375, -0.01157379150390625, -0.014007568359375, 0.024810791015625, -0.047698974609375, -0.019134521484375, 0.02410888671875, -0.0263671875, -0.033416748046875, -0.013916015625, -0.0221099853515625, -0.002132415771484375, 0.013946533203125, 0.0654296875, 0.01568603515625, 0.0271453857421875, -0.00933837890625, 0.006389617919921875, 0.035980224609375, -0.076416015625, 0.0660400390625, -0.0248870849609375, 0.0557861328125, 0.09075927734375, -0.011871337890625, 0.0426025390625, -0.00756072998046875, 0.03350830078125, 0.022613525390625, 0.0009584426879882812, -0.01806640625, -0.022247314453125, -0.026031494140625, -0.058349609375, 0.0117950439453125, 0.03192138671875, -0.033416748046875, -0.04180908203125, -0.0297088623046875, 0.006206512451171875, -0.03759765625, 0.00557708740234375, 0.0284271240234375, -0.051177978515625, 0.04766845703125, -0.0161590576171875, -0.01340484619140625, -0.04693603515625, 0.023529052734375, 0.004039764404296875, 0.02117919921875, -0.01364898681640625, -0.01352691650390625, 0.027069091796875, -0.0157928466796875, 0.035003662109375, -0.003711700439453125, -0.0170440673828125, 0.0278778076171875, -0.01102447509765625, 0.015106201171875, -0.002902984619140625, 0.0137786865234375, 0.042816162109375, -0.040863037109375, -0.06964111328125, 0.041107177734375, -0.0254364013671875, 0.00527191162109375, 0.018096923828125, -0.06927490234375, 0.002910614013671875, 0.0095062255859375, -0.05731201171875, 0.0223846435546875, -0.05755615234375, -0.0038890838623046875, 0.0208282470703125, -0.0295867919921875, -0.07818603515625, -0.0016088485717773438, -0.086669921875, 0.017608642578125, -0.0039825439453125, 0.004058837890625, -0.00801849365234375, -0.01788330078125, -0.028411865234375, -0.018310546875, 0.00628662109375, -0.031280517578125, -0.020233154296875, -0.00970458984375, -0.054168701171875, 0.0626220703125, -0.00392913818359375, -0.01129150390625, 0.0131072998046875, -0.00814056396484375, -0.0235443115234375, 0.0305633544921875, -0.0195465087890625, 0.0033550262451171875, -0.00988006591796875, -0.0017042160034179688, -0.04296875, -0.0047454833984375, 0.04876708984375, 0.0198516845703125, 0.015472412109375, -0.0017604827880859375, -0.036102294921875, 0.012542724609375, 0.05780029296875, -0.0276336669921875, -0.0279998779296875, 0.006572723388671875, 0.0084381103515625, -0.02178955078125, -0.012603759765625, -0.031829833984375, -0.0008320808410644531, 0.006351470947265625, -0.00836944580078125, -0.001621246337890625, -0.0235443115234375, -0.0248565673828125, 0.0240631103515625, -0.013519287109375, -0.01435089111328125, 0.031463623046875, 0.0204315185546875, -0.01013946533203125, 0.006519317626953125, -0.0283660888671875, 0.01044464111328125, -0.003559112548828125, -0.0103607177734375, -0.050994873046875, -0.01540374755859375, -0.0325927734375, 0.0736083984375, 0.00943756103515625, -0.01032257080078125, -0.0235748291015625, 0.0295257568359375, -0.0157012939453125, -0.04864501953125, 0.0126953125, -0.00444793701171875, 0.00646209716796875, 0.0760498046875, 0.0119476318359375, 0.0052490234375, 0.0006322860717773438, -0.0011730194091796875, -0.03173828125, 0.0280609130859375, -0.037200927734375, 0.0031719207763671875, -0.008758544921875, -0.0260467529296875, -0.059661865234375, -0.036651611328125, 0.010986328125, 0.0163421630859375, -0.0210113525390625, 0.033050537109375, -0.03753662109375, -0.044891357421875, 0.06805419921875, 0.0286865234375, -0.0003631114959716797, -0.01502227783203125, 0.050384521484375, -0.002468109130859375, -0.04412841796875, -0.0264739990234375, 0.01386260986328125, 0.05059814453125, 0.0156707763671875, 0.0165557861328125, -0.01464080810546875, -0.059967041015625, 0.1070556640625, 0.0303955078125, 0.024017333984375, 0.040771484375, 0.022003173828125, 0.002391815185546875, -0.044708251953125, 0.060028076171875, -0.005161285400390625, -0.08203125, -0.017547607421875, -0.0018177032470703125, 0.035797119140625, 0.0372314453125, -0.023223876953125, 0.00965118408203125, -0.040924072265625, 0.004917144775390625, -0.042205810546875, 0.008697509765625, -0.019622802734375, 0.05767822265625, 0.02203369140625, -0.005046844482421875, 0.04010009765625, 0.042083740234375, -0.0087738037109375, 0.032318115234375, 0.0012264251708984375, -0.007427215576171875, 0.03515625, 0.028076171875, -0.004428863525390625, 0.01702880859375, 0.0124664306640625, -0.0406494140625, 0.0139923095703125, -0.0288238525390625, -0.03619384765625, 0.02838134765625, -0.01372528076171875, 0.004009246826171875, -0.02490234375, 0.07672119140625, 0.032806396484375, -0.03765869140625, -0.03271484375, -0.043731689453125, -0.0321044921875, -0.07427978515625, -0.00876617431640625, -0.0014791488647460938, -0.0027561187744140625, -0.0157318115234375, 0.059814453125, 0.027679443359375, 0.009674072265625, -0.0167083740234375, 0.037994384765625, 0.033355712890625, 0.0225372314453125, 0.04327392578125, -0.021392822265625, -0.0289154052734375, -0.003673553466796875, -0.046600341796875, -0.013641357421875, 0.015350341796875, 0.011138916015625, -0.002605438232421875, 0.014251708984375, 0.0065460205078125, 0.032501220703125, -0.0196075439453125, 0.0198516845703125, -0.053619384765625, -0.04339599609375, 0.0158843994140625, 0.017364501953125, 0.053009033203125, 0.0246429443359375, 0.00366973876953125, -0.027008056640625, -0.0030231475830078125, -0.03265380859375, 0.006988525390625, 0.055419921875, -0.049652099609375, 0.02587890625, 0.0233917236328125, -0.029541015625, -0.027801513671875, -0.00807952880859375, -0.02923583984375, -0.0002846717834472656, -0.0272674560546875, -0.0306854248046875, 0.054779052734375, -0.043701171875, -0.0212860107421875, -0.024932861328125, 0.037109375, -0.0180816650390625, 0.017486572265625, 0.002986907958984375, -0.0089111328125, 0.00001817941665649414, -0.0278167724609375, -0.0209197998046875, -0.02099609375, 0.00965118408203125, -0.031036376953125, 0.005710601806640625, -0.0217742919921875, -0.033721923828125, -0.0301513671875, -0.00846099853515625, 0.0278472900390625, -0.0279541015625, 0.0859375, 0.0307769775390625, -0.0211334228515625, -0.0153656005859375, 0.00628662109375, 0.020355224609375, 0.001995086669921875, -0.01152801513671875, -0.0183563232421875, 0.0110321044921875, -0.0064697265625, -0.00672149658203125, 0.032379150390625, -0.02203369140625, 0.01128387451171875, 0.0020599365234375, -0.03155517578125, 0.0758056640625, -0.0099029541015625, 0.0178680419921875, -0.0256500244140625, 0.00815582275390625, -0.02996826171875, 0.0537109375, -0.04229736328125, 0.031219482421875, 0.006755828857421875, 0.00042748451232910156, 0.0308074951171875, 0.007190704345703125, -0.01351165771484375, 0.0116424560546875, -0.00737762451171875, 0.004703521728515625, 0.0086822509765625, 0.004215240478515625, 0.0374755859375, 0.023956298828125, -0.0074462890625, 0.0209197998046875, 0.0211944580078125, 0.005420684814453125, -0.0310516357421875, -0.01526641845703125, -0.06329345703125, -0.012725830078125, -0.0038280487060546875, 0.00012481212615966797, -0.0011339187622070312, 0.00595855712890625, 0.006175994873046875, 0.031951904296875, -0.025909423828125, 0.049072265625, 0.010345458984375, 0.020111083984375, 0.0059967041015625, -0.047943115234375, 0.037811279296875, -0.0543212890625, 0.0291748046875, -0.0174102783203125, 0.045562744140625, 0.06231689453125, -0.03131103515625, -0.004528045654296875, -0.01154327392578125, -0.01128387451171875, 0.00980377197265625, 0.00830841064453125, 0.018341064453125, -0.025909423828125, 0.029266357421875, 0.011993408203125, 0.036468505859375, 0.0238494873046875, 0.04986572265625, -0.0292510986328125, -0.0014562606811523438, 0.0216522216796875, 0.00392913818359375, -0.008697509765625, -0.0271148681640625, 0.07666015625, 0.03271484375, -0.0504150390625, 0.050445556640625, -0.023681640625, 0.061553955078125, 0.01517486572265625, -0.061676025390625, -0.013946533203125, -0.00891876220703125, -0.0021533966064453125, 0.0193939208984375, -0.00649261474609375, 0.00917816162109375, -0.021209716796875, 0.01122283935546875, 0.00565338134765625, -0.033233642578125, 0.0579833984375, -0.0601806640625, 0.01009368896484375, 0.01450347900390625, -0.005657196044921875, 0.0075225830078125, 0.00522613525390625, 0.028045654296875, -0.049041748046875, -0.03045654296875, 0.027252197265625, -0.04473876953125, -0.03778076171875, 0.01450347900390625, -0.0230255126953125, 0.0316162109375, 0.01329803466796875, 0.0009031295776367188, 0.039642333984375, 0.01256561279296875, -0.04547119140625, -0.0133056640625, 0.0093231201171875, 0.032135009765625, 0.0293121337890625, -0.0254058837890625, -0.00943756103515625, -0.018280029296875, -0.005649566650390625, 0.047210693359375, -0.0400390625, -0.033599853515625, 0.026763916015625, 0.0160369873046875, 0.08563232421875, 0.042449951171875, 0.042633056640625, -0.0144805908203125, -0.029083251953125, 0.0103607177734375, -0.002857208251953125, 0.0118408203125, 0.05206298828125, -0.050689697265625, -0.08331298828125, -0.01500701904296875, 0.00981903076171875, -0.00287628173828125, 0.022735595703125, 0.0230255126953125, -0.03009033203125, 0.0034313201904296875, 0.0156097412109375, -0.0439453125, 0.0187225341796875, 0.0004413127899169922, 0.01499176025390625, -0.0714111328125, 0.0277252197265625, -0.036376953125, 0.045440673828125, -0.01023101806640625, -0.0433349609375, 0.03912353515625, -0.0007886886596679688, 0.039306640625, -0.0263824462890625, -0.040313720703125, -0.02716064453125, 0.054290771484375, 0.00814056396484375, 0.029541015625, 0.032318115234375, 0.022705078125, -0.0125732421875, -0.006069183349609375, 0.01369476318359375, -0.0128021240234375, -0.055450439453125, 0.0162811279296875, -0.0168609619140625, 0.00029277801513671875, -0.007598876953125, -0.031524658203125, -0.003429412841796875, 0.04986572265625, -0.032073974609375, 0.0161285400390625, 0.0061492919921875, 0.03411865234375, 0.0017385482788085938, 0.015899658203125, -0.048431396484375, 0.002651214599609375, -0.08660888671875, 0.04443359375, 0.01303863525390625, 0.018218994140625, 0.044036865234375, 0.00476837158203125, 0.08221435546875, -0.005237579345703125, 0.01297760009765625, 0.02325439453125, 0.00617218017578125, -0.02349853515625, -0.0160675048828125, -0.048919677734375, 0.0154876708984375, 0.03125, 0.0163116455078125, -0.007312774658203125, 0.0279388427734375, 0.0185394287109375, -0.03436279296875, -0.01297760009765625, -0.007762908935546875, -0.0194854736328125, -0.009857177734375, -0.037200927734375, 0.029571533203125, 0.028594970703125, 0.006542205810546875, 0.021514892578125, 0.0075531005859375, 0.0535888671875, 0.003421783447265625, -0.0179290771484375, 0.017547607421875, -0.0230865478515625, 0.0177459716796875, 0.0184783935546875, 0.0204620361328125, 0.026580810546875, -0.029449462890625, 0.0141143798828125, -0.06292724609375, -0.04180908203125, 0.029693603515625, 0.0301361083984375, -0.0172271728515625, 0.0177459716796875, -0.00775909423828125, 0.017578125, -0.03448486328125, 0.002872467041015625, 0.006061553955078125, 0.0177459716796875, 0.0260772705078125, 0.0260162353515625, -0.0810546875, -0.04949951171875, -0.06298828125, 0.03887939453125, 0.0008478164672851562, 0.1131591796875, -0.04180908203125, 0.020355224609375, 0.02545166015625, -0.053314208984375, 0.071533203125, 0.01557159423828125, 0.0147857666015625, 0.0166473388671875, -0.01441192626953125, -0.034942626953125, -0.0114593505859375, 0.0118255615234375, 0.04217529296875, -0.034515380859375, 0.025970458984375, 0.006008148193359375, -0.0055999755859375, -0.054443359375, -0.03240966796875, -0.050445556640625, -0.052886962890625, -0.0300140380859375, 0.031463623046875, -0.0243988037109375, -0.050384521484375, -0.054840087890625, 0.05828857421875, 0.0033550262451171875, -0.012359619140625, 0.035675048828125, -0.061676025390625, 0.0262603759765625, 0.0306396484375, -0.01161956787109375, -0.047393798828125, -0.001270294189453125, -0.01226043701171875, 0.0007505416870117188, -0.0015115737915039062, 0.035308837890625, 0.031707763671875, -0.0521240234375, 0.004573822021484375, -0.010009765625, 0.02264404296875, -0.037139892578125, 0.0008511543273925781, 0.00740814208984375, 0.0070343017578125, 0.01419830322265625, 0.0033702850341796875, -0.0167083740234375, -0.0110321044921875, -0.005817413330078125, 0.01424407958984375, 0.02362060546875, -0.0169830322265625, 0.030120849609375, -0.00502777099609375, 0.015167236328125, -0.0012369155883789062, -0.01800537109375, -0.0122528076171875, 0.0101318359375, 0.0208740234375, -0.007068634033203125, 0.0150909423828125, -0.0008602142333984375, 0.041290283203125, -0.0100860595703125, -0.02880859375, -0.017242431640625, 0.022735595703125, -0.007534027099609375, -0.0008597373962402344, 0.0391845703125, -0.0271148681640625, -0.016632080078125, 0.039703369140625, 0.043121337890625, 0.07354736328125, -0.01168060302734375, -0.01461029052734375, -0.0114288330078125, 0.036590576171875, 0.0036144256591796875, -0.027679443359375, -0.00022268295288085938, -0.0166473388671875, 0.00405120849609375, 0.0477294921875, -0.0487060546875, -0.025604248046875, -0.043701171875, -0.033782958984375, 0.039154052734375, 0.032562255859375, -0.03375244140625, -0.0168304443359375, 0.0120849609375, -0.004909515380859375, -0.003597259521484375, -0.00620269775390625, 0.019866943359375, 0.002864837646484375, 0.00913238525390625, 0.003154754638671875, 0.0205078125, 0.0234375, -0.01264190673828125, 0.0083160400390625, 0.0307464599609375, 0.024200439453125, 0.0023365020751953125, -0.0450439453125, 0.02423095703125, -0.027587890625, 0.00846099853515625, -0.0176849365234375, -0.04840087890625, 0.0194854736328125, 0.004550933837890625, -0.01158905029296875, -0.014373779296875, 0.011444091796875, -0.0024394989013671875, 0.0301361083984375, 0.01593017578125, -0.0145416259765625, -0.0158843994140625, -0.0401611328125, -0.0096588134765625, -0.01593017578125, 0.0243377685546875, 0.008819580078125, -0.046722412109375, 0.0180816650390625, 0.007221221923828125, -0.00872802734375, -0.0229034423828125, -0.0051422119140625, -0.041229248046875, -0.0185699462890625, -0.0312347412109375, 0.00428009033203125, -0.050994873046875, 0.048736572265625, 0.07647705078125, -0.06512451171875, -0.0293121337890625, 0.01342010498046875, -0.016448974609375, 0.012451171875, -0.046478271484375, 0.011932373046875, -0.00013124942779541016, -0.0294952392578125, -0.0105133056640625, 0.0321044921875, 0.015899658203125, 0.0248870849609375, -0.02166748046875, 0.007312774658203125, 0.005146026611328125, -0.01568603515625, 0.036651611328125, -0.0010585784912109375, 0.0175018310546875, -0.00836181640625, 0.01910400390625, -0.029937744140625, -0.033905029296875, -0.0440673828125, 0.01812744140625, 0.0250091552734375, -0.0083770751953125, 0.06451416015625, -0.0024662017822265625, -0.013671875, -0.00017273426055908203, -0.05584716796875, -0.08697509765625, 0.021697998046875, -0.06134033203125, 0.0178070068359375, 0.032623291015625 ]
36ac1f4c4f0362dcb0a6ee39e1d7dc8044b8cc00
Wordpress Stackexchange Q: What is the best practice for escaping data URIs? Usually, you would use esc_url() to escape a URL before displaying it. If that 'URL' is a data URI (eg. 'data:image/svg+xml;base64,...'), it will be trimmed blank by esc_url(). The Codex page on Data Validation has this to say about escaping URLs: Always use esc_url when sanitizing URLs (in text nodes, attribute nodes or anywhere else). Rejects URLs that do not have one of the provided whitelisted protocols (defaulting to http, https, ftp, ftps, mailto, news, irc, gopher, nntp, feed, and telnet), eliminates invalid characters, and removes dangerous characters. Replaces clean_url() which was deprecated in 3.0. Data URIs aren't covered by this function and don't appear to be covered by any of the other standard WP escaping functions. Is there an established best practice in WordPress for escaping data URIs? A: It is possible to pass an array with allowed protocols to the esc_url() function. For data-URLs this has to contain the data scheme, as this is not whitelisted by wp_allowed_protocols() as default. esc_url( $data_url, array( 'data' ) );
Q: What is the best practice for escaping data URIs? Usually, you would use esc_url() to escape a URL before displaying it. If that 'URL' is a data URI (eg. 'data:image/svg+xml;base64,...'), it will be trimmed blank by esc_url(). The Codex page on Data Validation has this to say about escaping URLs: Always use esc_url when sanitizing URLs (in text nodes, attribute nodes or anywhere else). Rejects URLs that do not have one of the provided whitelisted protocols (defaulting to http, https, ftp, ftps, mailto, news, irc, gopher, nntp, feed, and telnet), eliminates invalid characters, and removes dangerous characters. Replaces clean_url() which was deprecated in 3.0. Data URIs aren't covered by this function and don't appear to be covered by any of the other standard WP escaping functions. Is there an established best practice in WordPress for escaping data URIs? A: It is possible to pass an array with allowed protocols to the esc_url() function. For data-URLs this has to contain the data scheme, as this is not whitelisted by wp_allowed_protocols() as default. esc_url( $data_url, array( 'data' ) ); A: A data URI isn't quite a url, but it is an attribute. Use esc_attr to escape it in attributes, and esc_html elsewhere. The key being that escaping indicates what you're expecting. If you're expecting a url, use esc_url, if it's an attribute use esc_attr, if it's text with no html, use esc_html, etc etc esc_url will do the same but with some additional rules, such as enforcing a protocol at the beginning etc
wordpress
{ "language": "en", "length": 252, "provenance": "stackexchange_00019.jsonl.gz:470081", "question_score": "4", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/245535" }
[ 0.07806396484375, -0.004863739013671875, -0.0123291015625, -0.031494140625, 0.0281219482421875, -0.0306854248046875, 0.044891357421875, -0.0142059326171875, 0.01157379150390625, -0.003326416015625, 0.01690673828125, -0.0340576171875, -0.0170440673828125, -0.057403564453125, 0.0108642578125, -0.0183258056640625, 0.01406097412109375, -0.00885009765625, 0.0058441162109375, -0.0209197998046875, 0.0158233642578125, -0.0263824462890625, 0.022552490234375, 0.0220947265625, -0.0164642333984375, 0.0216064453125, 0.077392578125, -0.038909912109375, -0.0023822784423828125, -0.0286407470703125, -0.01024627685546875, -0.006717681884765625, 0.018890380859375, 0.062255859375, -0.061676025390625, 0.03887939453125, -0.029449462890625, 0.03973388671875, 0.0038700103759765625, 0.0304107666015625, 0.0252227783203125, -0.01424407958984375, 0.046722412109375, -0.0189666748046875, 0.0172576904296875, -0.019256591796875, 0.033416748046875, -0.03472900390625, -0.009307861328125, 0.062469482421875, 0.036407470703125, -0.018646240234375, 0.02386474609375, 0.07952880859375, -0.0162811279296875, -0.00995635986328125, 0.010528564453125, -0.043365478515625, 0.0194244384765625, 0.0269622802734375, -0.00931549072265625, 0.0067291259765625, -0.0006704330444335938, -0.047637939453125, 0.037567138671875, -0.0019369125366210938, 0.013763427734375, 0.0478515625, -0.076904296875, 0.01013946533203125, 0.043609619140625, -0.040618896484375, -0.0204010009765625, -0.060577392578125, -0.017913818359375, 0.073486328125, -0.01317596435546875, -0.0020427703857421875, 0.0019502639770507812, -0.00751495361328125, 0.025665283203125, 0.0283660888671875, -0.0194091796875, -0.0426025390625, 0.03363037109375, -0.0179595947265625, -0.017333984375, -0.0093994140625, 0.0232391357421875, -0.00133514404296875, -0.01079559326171875, -0.0013523101806640625, 0.044219970703125, 0.0004439353942871094, -0.029083251953125, -0.0433349609375, -0.019561767578125, -0.0160064697265625, -0.0005311965942382812, -0.0005970001220703125, 0.015716552734375, -0.040435791015625, 0.0222930908203125, -0.019317626953125, -0.0152587890625, 0.054656982421875, 0.0097503662109375, 0.01438140869140625, 0.0209197998046875, 0.017303466796875, 0.01403045654296875, 0.00463104248046875, -0.04156494140625, -0.00908660888671875, -0.0261383056640625, 0.061370849609375, -0.042449951171875, 0.01288604736328125, -0.0293731689453125, 0.045501708984375, -0.005397796630859375, 0.0054931640625, -0.015899658203125, 0.0014257431030273438, 0.01666259765625, 0.00506591796875, -0.0201568603515625, 0.00464630126953125, -0.032257080078125, 0.0211181640625, -0.0172271728515625, 0.005458831787109375, 0.052398681640625, 0.034576416015625, -0.00469207763671875, -0.028228759765625, 0.007061004638671875, -0.0345458984375, -0.002918243408203125, -0.004222869873046875, -0.00016570091247558594, -0.003002166748046875, 0.040008544921875, -0.01444244384765625, 0.0201263427734375, 0.0389404296875, 0.0286865234375, -0.0102691650390625, 0.0162506103515625, -0.058502197265625, -0.0295257568359375, 0.005733489990234375, 0.057098388671875, -0.033538818359375, -0.0198211669921875, -0.043182373046875, 0.038848876953125, -0.05682373046875, -0.020965576171875, -0.052978515625, -0.0158233642578125, -0.004245758056640625, 0.0208282470703125, 0.007396697998046875, -0.005260467529296875, -0.0039825439453125, -0.0024776458740234375, 0.004032135009765625, 0.0200958251953125, 0.045074462890625, -0.002727508544921875, 0.02215576171875, -0.049835205078125, 0.007556915283203125, 0.0005345344543457031, -0.0162506103515625, -0.01261138916015625, 0.01763916015625, 0.022857666015625, 0.07672119140625, 0.03363037109375, -0.028228759765625, 0.058929443359375, -0.01195526123046875, -0.06317138671875, 0.06451416015625, 0.0011348724365234375, 0.06805419921875, 0.0256805419921875, 0.00650787353515625, 0.034637451171875, 0.0236663818359375, -0.0211639404296875, 0.003429412841796875, -0.00974273681640625, -0.04486083984375, 0.01287841796875, -0.021026611328125, -0.025634765625, 0.049468994140625, 0.048492431640625, -0.0020751953125, 0.01123809814453125, -0.0226898193359375, -0.0625, -0.00017559528350830078, -0.022552490234375, 0.033355712890625, -0.034332275390625, 0.0347900390625, 0.0258636474609375, 0.017181396484375, -0.060791015625, 0.036346435546875, 0.048583984375, 0.0232391357421875, 0.004016876220703125, 0.036712646484375, -0.0027370452880859375, 0.0263519287109375, -0.0192108154296875, -0.035064697265625, -0.016082763671875, 0.00019800662994384766, 0.0032787322998046875, -0.029510498046875, -0.00421142578125, -0.0296783447265625, 0.02789306640625, -0.0208740234375, 0.0445556640625, 0.01971435546875, 0.054840087890625, 0.047332763671875, -0.03350830078125, -0.023040771484375, -0.00531768798828125, -0.043212890625, 0.0012865066528320312, 0.059600830078125, 0.045074462890625, 0.04241943359375, 0.01446533203125, -0.02178955078125, 0.0299072265625, -0.047393798828125, 0.042266845703125, -0.046630859375, -0.0232391357421875, -0.0014476776123046875, 0.0031299591064453125, -0.024017333984375, 0.00969696044921875, -0.055633544921875, -0.013916015625, 0.0017490386962890625, -0.039398193359375, -0.033172607421875, -0.0172882080078125, 0.01076507568359375, 0.003719329833984375, 0.00736236572265625, 0.0014410018920898438, 0.0010242462158203125, 0.00894927978515625, 0.0182952880859375, 0.03228759765625, 0.024871826171875, -0.01409912109375, -0.0017995834350585938, 0.01470184326171875, -0.00363922119140625, -0.0110931396484375, 0.05731201171875, 0.04388427734375, 0.002166748046875, -0.0230865478515625, -0.0245361328125, 0.01070404052734375, 0.04010009765625, 0.00555419921875, 0.017059326171875, 0.01568603515625, -0.021759033203125, 0.006618499755859375, 0.0029582977294921875, 0.0106658935546875, 0.003246307373046875, 0.0234375, -0.045562744140625, 0.00846099853515625, -0.00323486328125, -0.0081939697265625, 0.033599853515625, 0.02294921875, -0.06072998046875, 0.03839111328125, -0.0178375244140625, 0.025360107421875, -0.0117645263671875, 0.045654296875, 0.04315185546875, 0.0039215087890625, -0.0281829833984375, -0.025360107421875, 0.0222320556640625, -0.02197265625, 0.013916015625, -0.0207061767578125, -0.043304443359375, -0.065673828125, -0.059173583984375, 0.007843017578125, 0.023193359375, -0.034210205078125, -0.034423828125, -0.042205810546875, -0.0194091796875, -0.09246826171875, -0.06396484375, 0.01410675048828125, -0.034576416015625, -0.0016355514526367188, -0.0133209228515625, -0.0024089813232421875, 0.0013294219970703125, -0.01039886474609375, -0.0144500732421875, 0.00833892822265625, 0.0105438232421875, -0.07958984375, -0.03680419921875, -0.07232666015625, 0.03277587890625, -0.018707275390625, 0.037445068359375, -0.00557708740234375, -0.0012111663818359375, -0.0030517578125, 0.0013332366943359375, -0.00006967782974243164, 0.027923583984375, 0.0224456787109375, -0.0400390625, -0.01280975341796875, -0.020416259765625, -0.02606201171875, -0.00814056396484375, 0.058258056640625, 0.0088653564453125, -0.0164337158203125, 0.029937744140625, -0.01348876953125, 0.02099609375, 0.0248870849609375, -0.02337646484375, 0.0189361572265625, 0.0289764404296875, 0.016021728515625, -0.02655029296875, 0.002216339111328125, -0.0261993408203125, -0.0169219970703125, 0.03192138671875, 0.0029621124267578125, 0.00408935546875, -0.0024013519287109375, 0.033843994140625, -0.037933349609375, -0.00251007080078125, 0.038604736328125, -0.031524658203125, -0.0014581680297851562, -0.040008544921875, -0.05694580078125, -0.0226898193359375, 0.06512451171875, 0.004344940185546875, -0.0216064453125, 0.03216552734375, 0.03082275390625, 0.033172607421875, -0.028839111328125, 0.00417327880859375, -0.01947021484375, 0.04852294921875, 0.033538818359375, 0.072021484375, -0.042877197265625, -0.052459716796875, -0.045928955078125, 0.0831298828125, 0.00959014892578125, -0.033111572265625, 0.0199127197265625, 0.032684326171875, -0.049713134765625, -0.01727294921875, -0.01523590087890625, -0.0010538101196289062, -0.037841796875, 0.0151824951171875, 0.0023097991943359375, -0.0271453857421875, 0.008697509765625, -0.064453125, -0.00799560546875, -0.03955078125, 0.01201629638671875, 0.006206512451171875, -0.004787445068359375, -0.003185272216796875, 0.022308349609375, -0.031280517578125, 0.00722503662109375, 0.0078277587890625, -0.0408935546875, -0.017425537109375, 0.01212310791015625, 0.042633056640625, 0.038970947265625, -0.10821533203125, 0.0117340087890625, 0.050872802734375, -0.0084075927734375, -0.01220703125, 0.02093505859375, 0.0110626220703125, 0.00115203857421875, 0.05291748046875, 0.02081298828125, 0.0014181137084960938, -0.00218963623046875, 0.00667572021484375, -0.040496826171875, -0.0255126953125, 0.01029205322265625, -0.048065185546875, 0.0635986328125, -0.038970947265625, -0.05908203125, -0.0103912353515625, -0.0058441162109375, -0.0047454833984375, 0.002964019775390625, -0.0284881591796875, 0.0179901123046875, -0.048980712890625, 0.051055908203125, 0.0118408203125, 0.0033512115478515625, -0.0139617919921875, 0.0643310546875, 0.0035610198974609375, -0.02923583984375, -0.0213775634765625, -0.0361328125, 0.0193328857421875, -0.01202392578125, 0.03955078125, -0.0034542083740234375, -0.00885009765625, 0.03790283203125, -0.0248565673828125, 0.0230255126953125, -0.01442718505859375, 0.037841796875, 0.016876220703125, -0.0003676414489746094, 0.009979248046875, 0.0206146240234375, -0.0309600830078125, 0.06463623046875, 0.0153961181640625, -0.035369873046875, 0.004283905029296875, 0.01314544677734375, -0.015899658203125, -0.0058746337890625, 0.001712799072265625, -0.040924072265625, 0.01177978515625, 0.036712646484375, 0.0175018310546875, 0.029266357421875, -0.00800323486328125, 0.02008056640625, 0.0046539306640625, 0.0149688720703125, -0.00021505355834960938, 0.0458984375, -0.03143310546875, 0.04534912109375, -0.0084991455078125, -0.032318115234375, -0.01064300537109375, -0.0031757354736328125, 0.020721435546875, -0.0283966064453125, -0.006458282470703125, -0.05328369140625, -0.0018558502197265625, -0.009857177734375, 0.01363372802734375, 0.07073974609375, 0.0010623931884765625, -0.029205322265625, 0.005523681640625, -0.003509521484375, 0.03851318359375, -0.021820068359375, -0.0141143798828125, 0.059967041015625, 0.0287017822265625, 0.0023860931396484375, -0.0007987022399902344, 0.047088623046875, 0.00738525390625, 0.0040130615234375, 0.0035400390625, 0.01800537109375, 0.0287628173828125, 0.018890380859375, 0.0287933349609375, -0.04168701171875, 0.003631591796875, -0.00012445449829101562, 0.00710296630859375, -0.036468505859375, -0.034912109375, 0.0474853515625, 0.043426513671875, -0.052032470703125, -0.0224151611328125, 0.0009074211120605469, 0.0102081298828125, -0.02374267578125, 0.01430511474609375, 0.014801025390625, -0.0249176025390625, -0.015228271484375, -0.0012254714965820312, -0.0050201416015625, 0.004734039306640625, 0.0088958740234375, -0.0045623779296875, 0.022918701171875, 0.032318115234375, -0.045379638671875, 0.002735137939453125, -0.0131988525390625, -0.0026912689208984375, 0.027099609375, -0.0020236968994140625, -0.0325927734375, 0.040557861328125, 0.009124755859375, -0.0299224853515625, -0.033843994140625, 0.08270263671875, -0.06951904296875, 0.04119873046875, -0.0026836395263671875, -0.0117645263671875, -0.006938934326171875, 0.035186767578125, 0.0546875, 0.0673828125, -0.062347412109375, 0.0064544677734375, -0.048583984375, -0.000835418701171875, 0.032745361328125, -0.000023126602172851562, -0.02685546875, -0.023406982421875, 0.00209808349609375, 0.036468505859375, -0.0265045166015625, -0.0223846435546875, -0.0006427764892578125, 0.01337432861328125, 0.0088043212890625, 0.061798095703125, -0.0015668869018554688, 0.01554107666015625, -0.02197265625, 0.039642333984375, -0.006763458251953125, -0.0008664131164550781, 0.0028209686279296875, -0.0277557373046875, -0.0171966552734375, -0.01268768310546875, -0.01528167724609375, -0.018218994140625, 0.037567138671875, 0.038787841796875, 0.0496826171875, 0.009735107421875, 0.0205841064453125, -0.01111602783203125, 0.0007967948913574219, -0.024566650390625, 0.04840087890625, -0.004627227783203125, 0.04278564453125, 0.0290985107421875, 0.015625, 0.032958984375, -0.0146484375, -0.0271453857421875, 0.0207061767578125, 0.01776123046875, 0.01415252685546875, -0.0204010009765625, -0.0227203369140625, 0.025604248046875, 0.07586669921875, -0.0290374755859375, 0.045074462890625, 0.032501220703125, 0.00218963623046875, 0.04388427734375, -0.0228729248046875, -0.0276031494140625, -0.0005435943603515625, -0.003154754638671875, -0.023193359375, -0.0052032470703125, -0.0172271728515625, -0.0048675537109375, 0.039703369140625, 0.0523681640625, 0.07806396484375, -0.0650634765625, 0.017242431640625, 0.0233612060546875, -0.045501708984375, 0.0163421630859375, 0.0015411376953125, -0.016082763671875, -0.0260772705078125, 0.010009765625, -0.0311431884765625, -0.0249786376953125, -0.0213775634765625, -0.0012102127075195312, -0.017974853515625, -0.0066986083984375, -0.0004036426544189453, 0.0002665519714355469, -0.0305023193359375, -0.042327880859375, 0.041900634765625, -0.058929443359375, -0.01381683349609375, 0.0258331298828125, -0.012481689453125, -0.0255584716796875, -0.05902099609375, -0.01629638671875, 0.004962921142578125, -0.03204345703125, -0.012969970703125, 0.01153564453125, 0.0693359375, 0.03887939453125, 0.0216064453125, -0.0355224609375, 0.00384521484375, 0.0297698974609375, 0.032958984375, -0.0179901123046875, 0.0017862319946289062, 0.06121826171875, -0.043121337890625, 0.00579071044921875, -0.0167236328125, 0.0289306640625, -0.0185394287109375, 0.005374908447265625, 0.1058349609375, -0.021453857421875, -0.016876220703125, 0.0236968994140625, 0.0214385986328125, -0.0235748291015625, -0.04669189453125, 0.019805908203125, -0.061737060546875, -0.009552001953125, -0.0131683349609375, 0.004730224609375, -0.005153656005859375, -0.0361328125, -0.04339599609375, 0.0380859375, 0.01995849609375, 0.040557861328125, 0.0218353271484375, -0.00415802001953125, -0.01189422607421875, -0.01531982421875, 0.00045800209045410156, 0.0182647705078125, 0.00628662109375, -0.03350830078125, -0.00934600830078125, -0.0007486343383789062, -0.0255889892578125, 0.024017333984375, 0.057708740234375, 0.00537872314453125, 0.003215789794921875, 0.005664825439453125, 0.039398193359375, 0.003879547119140625, -0.04266357421875, 0.01428985595703125, 0.0377197265625, 0.0308837890625, 0.0809326171875, -0.0128021240234375, 0.04388427734375, -0.04248046875, 0.03369140625, 0.054656982421875, 0.0173187255859375, 0.02587890625, 0.0011243820190429688, 0.0070037841796875, -0.0175018310546875, 0.007312774658203125, 0.01453399658203125, -0.010955810546875, -0.01006317138671875, 0.00994873046875, 0.0011997222900390625, -0.034576416015625, -0.06439208984375, 0.0008406639099121094, 0.01216888427734375, 0.020477294921875, 0.041748046875, 0.08392333984375, 0.033447265625, 0.04254150390625, 0.005260467529296875, 0.0384521484375, -0.0146026611328125, 0.0011739730834960938, 0.043975830078125, 0.01055145263671875, 0.0270538330078125, -0.059661865234375, -0.013885498046875, 0.036712646484375, 0.052825927734375, -0.024017333984375, -0.049835205078125, 0.0003018379211425781, 0.0258331298828125, 0.03253173828125, 0.0190887451171875, 0.05926513671875, -0.00942230224609375, 0.0241241455078125, -0.04827880859375, 0.003864288330078125, 0.027984619140625, 0.021820068359375, -0.01250457763671875, -0.0173187255859375, -0.046661376953125, -0.0131683349609375, -0.00005799531936645508, -0.0309295654296875, -0.01470947265625, 0.011383056640625, 0.028961181640625, -0.025970458984375, -0.0220184326171875, 0.004688262939453125, -0.0029506683349609375, 0.033477783203125, 0.038299560546875, -0.0015211105346679688, -0.033843994140625, -0.00959014892578125, 0.03924560546875, 0.0276336669921875, 0.02276611328125, 0.021514892578125, 0.050018310546875, 0.019683837890625, -0.02081298828125, -0.00634765625, 0.032989501953125, -0.022552490234375, 0.0316162109375, -0.062255859375, 0.026580810546875, -0.0172271728515625, -0.004955291748046875, -0.0136566162109375, -0.0321044921875, 0.0270538330078125, -0.02667236328125, 0.0634765625, -0.0146636962890625, -0.01123046875, -0.0197296142578125, -0.040557861328125, 0.04425048828125, -0.019134521484375, -0.049957275390625, -0.0241851806640625, 0.0076446533203125, 0.00604248046875, 0.010833740234375, 0.03179931640625, 0.0002779960632324219, 0.0287017822265625, 0.003025054931640625, -0.005847930908203125, 0.018341064453125, 0.022247314453125, -0.048492431640625, -0.00991058349609375, 0.053955078125, -0.023895263671875, 0.0310211181640625, -0.003284454345703125, 0.042633056640625, 0.048736572265625, -0.00725555419921875, 0.0989990234375, -0.058624267578125, 0.00606536865234375, 0.041961669921875, 0.007015228271484375, 0.004352569580078125, 0.040313720703125, -0.0203704833984375, -0.02301025390625, 0.01953125, -0.004550933837890625, 0.0084075927734375, 0.005733489990234375, 0.0200653076171875, -0.0283966064453125, 0.01065826416015625, -0.0489501953125, 0.013275146484375, 0.003993988037109375, 0.0689697265625, -0.03558349609375, -0.06866455078125, -0.05126953125, 0.020965576171875, 0.0179595947265625, 0.037506103515625, -0.01393890380859375, 0.0169525146484375, -0.0237884521484375, 0.004459381103515625, 0.004634857177734375, -0.044769287109375, 0.0098876953125, 0.0242156982421875, -0.046661376953125, 0.01322174072265625, -0.0106353759765625, -0.031585693359375, -0.00537109375, -0.00644683837890625, 0.0179901123046875, -0.0233001708984375, -0.007274627685546875, -0.040557861328125, 0.0254974365234375, 0.020050048828125, -0.01123046875, 0.006603240966796875, 0.0186920166015625, -0.030792236328125, 0.01000213623046875, 0.035858154296875, 0.0024967193603515625, -0.00701141357421875, -0.0360107421875, -0.0164642333984375, -0.00293731689453125, -0.044647216796875, -0.01446533203125, -0.01409149169921875, -0.0017528533935546875, 0.0024089813232421875, -0.0091400146484375, -0.0182647705078125, -0.007389068603515625, -0.0002315044403076172, -0.0281982421875, 0.05487060546875, -0.023651123046875, 0.0033130645751953125, -0.038909912109375, -0.0204925537109375, -0.0005373954772949219, 0.04876708984375, 0.0004532337188720703, 0.0020351409912109375, 0.02252197265625, -0.01247406005859375, -0.0325927734375, 0.024322509765625, 0.0165863037109375, 0.061126708984375, 0.006931304931640625, -0.0309600830078125, -0.0234832763671875, 0.035400390625, -0.0209808349609375, -0.048187255859375, -0.0099029541015625, -0.00970458984375, 0.0222015380859375, 0.00753021240234375, -0.01148223876953125, 0.0217742919921875, -0.05047607421875, -0.09197998046875, 0.1097412109375, -0.0224456787109375, -0.02239990234375, 0.041015625, -0.00431060791015625, -0.00977325439453125, 0.0074615478515625, 0.007038116455078125, 0.01421356201171875, -0.007381439208984375, 0.007274627685546875, 0.0119476318359375, 0.0305023193359375, 0.0171356201171875, -0.0293426513671875, 0.0246124267578125, 0.01617431640625, 0.0306854248046875, 0.01299285888671875, -0.03179931640625, 0.005222320556640625, 0.037689208984375, 0.0311279296875, -0.01345062255859375, 0.03448486328125, 0.042572021484375, 0.01654052734375, -0.046783447265625, -0.0176544189453125, 0.052154541015625, 0.059051513671875, 0.091552734375, 0.02777099609375, -0.0000171661376953125, -0.07781982421875, -0.03253173828125, -0.011871337890625, 0.050872802734375, -0.01136016845703125, -0.01430511474609375, -0.06744384765625, -0.037109375, 0.0072021484375, 0.000033974647521972656, 0.0118865966796875, -0.023193359375, -0.01525115966796875, -0.0009756088256835938, 0.01412200927734375, 0.005649566650390625, -0.0295562744140625, -0.0248870849609375, 0.07666015625, -0.041259765625, -0.00926971435546875, -0.0196685791015625, 0.03955078125, 0.0211334228515625, -0.051055908203125, 0.02142333984375, 0.018218994140625, -0.048004150390625, 0.0036296844482421875, 0.0132598876953125, 0.00408935546875, -0.036285400390625, -0.040679931640625, -0.00629425048828125, 0.0343017578125, -0.01354217529296875, 0.047515869140625, 0.0227508544921875, 0.0013713836669921875, 0.0102081298828125, 0.01476287841796875, -0.06622314453125, 0.01361846923828125, 0.0013256072998046875, -0.020538330078125, -0.029998779296875, 0.047576904296875, 0.06353759765625, -0.0445556640625, 0.024261474609375, -0.0135650634765625, 0.00579833984375, 0.029815673828125, -0.047882080078125, -0.07073974609375, -0.029266357421875, -0.01934814453125 ]
9ad6e5b63b6b6375989c1c0d4013c5dacd15f962
Wordpress Stackexchange Q: Revolution Slider Orderby Two Custom Fields I have create Revolution Slider which load the custom post type, Events. There are two custom fields, Event Start Date and Event End Date. I would like to display order by Start and End date. Because now only able order by Start date and if same Start date, then will order by Title. Here is what I found from Revolution Slider website: https://www.themepunch.com/faq/sort-options-post-based-sliders/ function modify_slider_order($query, $slider_id) { if($slider_id == 4) { $query['meta_key'] = 'event_start_date'; $query['orderby'] = 'event_start_date'; $query['meta_type'] = 'DATE'; $query['order'] = 'ASC'; } return $query; } add_filter('revslider_get_posts', 'modify_slider_order', 10, 2); However, I unable able to add array to 'orderby'. According this: http://www.billerickson.net/wp-query-sort-by-meta/ 'orderby' => array( 'event_start_date' => 'ASC', 'event_end_date' => 'ASC', ), Can anyone give me some idea, how I change the 'orderby'? Thanks! A: To order by event-end date or start date, your write separate function and call them as per requirement. For example if user clicks on order by start then start function should be called. switch($orderby){ case: 'event-start': # your code /* $query['meta_key'] = 'event_start_date'; $query['orderby'] = 'event_start_date'; */ break; case 'event-end': #your code /* $query['meta_key'] = 'event_end_date'; $query['orderby'] = 'event_end_date'; */ break; }
Q: Revolution Slider Orderby Two Custom Fields I have create Revolution Slider which load the custom post type, Events. There are two custom fields, Event Start Date and Event End Date. I would like to display order by Start and End date. Because now only able order by Start date and if same Start date, then will order by Title. Here is what I found from Revolution Slider website: https://www.themepunch.com/faq/sort-options-post-based-sliders/ function modify_slider_order($query, $slider_id) { if($slider_id == 4) { $query['meta_key'] = 'event_start_date'; $query['orderby'] = 'event_start_date'; $query['meta_type'] = 'DATE'; $query['order'] = 'ASC'; } return $query; } add_filter('revslider_get_posts', 'modify_slider_order', 10, 2); However, I unable able to add array to 'orderby'. According this: http://www.billerickson.net/wp-query-sort-by-meta/ 'orderby' => array( 'event_start_date' => 'ASC', 'event_end_date' => 'ASC', ), Can anyone give me some idea, how I change the 'orderby'? Thanks! A: To order by event-end date or start date, your write separate function and call them as per requirement. For example if user clicks on order by start then start function should be called. switch($orderby){ case: 'event-start': # your code /* $query['meta_key'] = 'event_start_date'; $query['orderby'] = 'event_start_date'; */ break; case 'event-end': #your code /* $query['meta_key'] = 'event_end_date'; $query['orderby'] = 'event_end_date'; */ break; }
wordpress
{ "language": "en", "length": 195, "provenance": "stackexchange_00019.jsonl.gz:470085", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/245555" }
[ 0.0634765625, 0.019927978515625, 0.007625579833984375, -0.05206298828125, 0.030059814453125, -0.025634765625, 0.019683837890625, -0.02008056640625, 0.021148681640625, -0.006740570068359375, 0.0313720703125, -0.0201263427734375, -0.051544189453125, -0.0662841796875, -0.008819580078125, -0.028564453125, 0.05963134765625, -0.0478515625, 0.01300048828125, -0.007537841796875, -0.002056121826171875, 0.049041748046875, 0.03070068359375, 0.0462646484375, 0.032135009765625, -0.02313232421875, 0.091064453125, -0.051483154296875, 0.0709228515625, -0.009979248046875, 0.02764892578125, -0.05987548828125, -0.01154327392578125, 0.011199951171875, 0.04144287109375, -0.0230712890625, 0.050079345703125, -0.004787445068359375, 0.019775390625, 0.0264739990234375, 0.040985107421875, -0.0174407958984375, -0.044158935546875, 0.0260772705078125, -0.0438232421875, -0.037078857421875, 0.046661376953125, 0.006946563720703125, 0.02978515625, 0.023284912109375, 0.001987457275390625, 0.005462646484375, 0.00495147705078125, -0.024688720703125, -0.0184173583984375, -0.03546142578125, -0.020050048828125, 0.0254058837890625, 0.0021305084228515625, 0.035125732421875, 0.026824951171875, 0.05255126953125, -0.0105438232421875, -0.004730224609375, -0.040313720703125, 0.0023040771484375, 0.03668212890625, -0.004467010498046875, 0.00562286376953125, -0.045806884765625, 0.0055694580078125, 0.03753662109375, 0.0136871337890625, -0.03802490234375, 0.01776123046875, 0.0105438232421875, -0.05596923828125, -0.028656005859375, 0.029510498046875, 0.00037479400634765625, 0.0203094482421875, 0.0101318359375, -0.0098419189453125, -0.0367431640625, 0.02789306640625, -0.017333984375, -0.0285797119140625, 0.0012311935424804688, -0.0238189697265625, -0.03753662109375, -0.01491546630859375, -0.00847625732421875, -0.054840087890625, 0.0167083740234375, -0.00113677978515625, -0.028411865234375, 0.019866943359375, 0.0338134765625, -0.0248870849609375, -0.0171356201171875, -0.004985809326171875, -0.01265716552734375, -0.0037822723388671875, -0.021697998046875, 0.020782470703125, 0.0068206787109375, -0.01546478271484375, -0.0090484619140625, 0.049713134765625, 0.030792236328125, -0.0041351318359375, 0.03497314453125, 0.03582763671875, -0.0025634765625, -0.024993896484375, -0.021636962890625, -0.00927734375, 0.0273590087890625, 0.0164642333984375, 0.000980377197265625, 0.0201568603515625, 0.0206298828125, -0.01119232177734375, 0.00867462158203125, 0.0018949508666992188, 0.0163726806640625, -0.0212249755859375, -0.0236053466796875, -0.041107177734375, 0.03021240234375, -0.031707763671875, 0.007297515869140625, 0.06390380859375, 0.041259765625, 0.01064300537109375, -0.01593017578125, 0.019989013671875, -0.016693115234375, -0.01090240478515625, 0.03436279296875, 0.01457977294921875, -0.04168701171875, -0.0089263916015625, 0.017608642578125, 0.0007576942443847656, 0.0033473968505859375, 0.0030231475830078125, 0.01134490966796875, 0.013580322265625, -0.0130767822265625, -0.0185394287109375, -0.0012836456298828125, 0.01297760009765625, 0.0178375244140625, -0.029571533203125, 0.005962371826171875, 0.0238189697265625, -0.0092315673828125, -0.0163726806640625, -0.023223876953125, -0.0276031494140625, 0.00669097900390625, 0.0204315185546875, -0.06732177734375, -0.0423583984375, -0.016387939453125, -0.04107666015625, 0.00618743896484375, 0.0204315185546875, -0.00402069091796875, 0.01824951171875, -0.01103973388671875, 0.01296234130859375, 0.0211944580078125, 0.00016450881958007812, 0.01971435546875, 0.0249176025390625, -0.050323486328125, -0.006290435791015625, 0.042327880859375, -0.0311279296875, -0.041015625, -0.035308837890625, -0.01788330078125, -0.048126220703125, 0.03466796875, -0.02374267578125, -0.01373291015625, 0.0396728515625, -0.0144500732421875, 0.02703857421875, 0.03961181640625, -0.04095458984375, 0.027130126953125, 0.019012451171875, -0.0200347900390625, -0.03643798828125, -0.0167388916015625, 0.00746917724609375, -0.0310821533203125, -0.0528564453125, 0.039306640625, -0.042388916015625, 0.0155792236328125, -0.054718017578125, 0.00662994384765625, -0.017913818359375, 0.035888671875, -0.0230865478515625, 0.051666259765625, 0.0186614990234375, 0.039154052734375, -0.0504150390625, 0.0247955322265625, 0.0186767578125, -0.0290374755859375, 0.0281219482421875, 0.01995849609375, -0.01837158203125, 0.0174560546875, -0.006969451904296875, -0.04974365234375, -0.0181427001953125, 0.04150390625, 0.10162353515625, -0.019439697265625, 0.0058746337890625, -0.039794921875, 0.1214599609375, -0.00914764404296875, 0.00864410400390625, 0.00026535987854003906, 0.022369384765625, -0.007740020751953125, -0.04986572265625, 0.004085540771484375, 0.0231781005859375, -0.0087127685546875, 0.005344390869140625, 0.0307769775390625, 0.0343017578125, 0.03192138671875, 0.0199737548828125, 0.0179901123046875, 0.06243896484375, -0.0286712646484375, 0.007610321044921875, 0.0010356903076171875, -0.035064697265625, 0.0020542144775390625, 0.049072265625, 0.0413818359375, 0.0169677734375, 0.07989501953125, 0.02899169921875, 0.016845703125, 0.035064697265625, 0.01488494873046875, 0.00905609130859375, 0.0228118896484375, -0.01427459716796875, -0.01062774658203125, -0.034210205078125, 0.006549835205078125, -0.0054931640625, -0.016265869140625, 0.01499176025390625, 0.004791259765625, 0.003681182861328125, -0.02374267578125, 0.01415252685546875, -0.0251922607421875, 0.0181732177734375, 0.0006351470947265625, -0.065185546875, 0.027557373046875, -0.0015439987182617188, 0.013946533203125, -0.02569580078125, -0.0194091796875, -0.0260009765625, -0.005207061767578125, -0.049041748046875, -0.0184326171875, 0.01235198974609375, -0.0272216796875, -0.01268768310546875, 0.0004744529724121094, -0.04425048828125, -0.039642333984375, 0.00646209716796875, 0.006214141845703125, -0.04779052734375, 0.0299835205078125, -0.01102447509765625, -0.0318603515625, -0.0166778564453125, 0.015380859375, -0.01080322265625, -0.01166534423828125, 0.03564453125, 0.043548583984375, -0.0191497802734375, 0.01554107666015625, -0.007617950439453125, 0.0140380859375, -0.0110626220703125, 0.0011663436889648438, -0.0192718505859375, -0.0059814453125, -0.03778076171875, -0.01067352294921875, 0.065673828125, 0.029205322265625, 0.0687255859375, 0.0125732421875, 0.0352783203125, 0.054840087890625, -0.034027099609375, -0.139892578125, -0.005832672119140625, -0.057464599609375, 0.025726318359375, -0.025482177734375, -0.0185699462890625, -0.00594329833984375, -0.01241302490234375, 0.0071563720703125, -0.0279693603515625, 0.0106201171875, -0.01898193359375, -0.032470703125, -0.02313232421875, -0.0144805908203125, -0.01213836669921875, 0.0119781494140625, 0.01081085205078125, 0.07220458984375, 0.00446319580078125, -0.0888671875, -0.025604248046875, 0.007465362548828125, -0.035186767578125, 0.019317626953125, 0.06591796875, -0.053314208984375, 0.018768310546875, 0.00058746337890625, 0.047637939453125, 0.060302734375, -0.059722900390625, 0.007228851318359375, -0.0216522216796875, 0.0219268798828125, 0.0030803680419921875, 0.053802490234375, 0.044708251953125, 0.0155487060546875, 0.048004150390625, -0.0184783935546875, -0.0078887939453125, -0.0260772705078125, -0.04815673828125, -0.019256591796875, 0.0457763671875, 0.0071868896484375, -0.0150299072265625, -0.03131103515625, 0.007549285888671875, -0.00826263427734375, 0.0191650390625, -0.03497314453125, 0.0543212890625, -0.00681304931640625, 0.024749755859375, -0.0272216796875, -0.00434112548828125, -0.033355712890625, -0.020233154296875, -0.0274505615234375, -0.01207733154296875, -0.02569580078125, 0.00760650634765625, -0.0230865478515625, -0.057586669921875, 0.026763916015625, -0.025238037109375, -0.010498046875, 0.001667022705078125, -0.01032257080078125, 0.0279998779296875, 0.055999755859375, -0.02716064453125, -0.0206756591796875, -0.0013456344604492188, -0.0055084228515625, -0.0074615478515625, 0.0237579345703125, -0.035919189453125, -0.007114410400390625, -0.1251220703125, 0.05242919921875, 0.032928466796875, -0.03759765625, -0.02764892578125, 0.0201416015625, -0.0859375, -0.0309906005859375, 0.045196533203125, 0.028167724609375, -0.0228729248046875, 0.0352783203125, -0.04248046875, 0.0277099609375, -0.0408935546875, 0.043548583984375, -0.044647216796875, -0.03350830078125, 0.00833892822265625, 0.0772705078125, 0.0289306640625, -0.042449951171875, 0.004730224609375, 0.06524658203125, -0.0024127960205078125, -0.04913330078125, 0.031158447265625, 0.01332855224609375, -0.0179901123046875, 0.01512908935546875, 0.0007481575012207031, -0.0360107421875, 0.003753662109375, -0.0023956298828125, -0.01038360595703125, -0.0017070770263671875, -0.039093017578125, -0.0014829635620117188, -0.00016033649444580078, -0.0262603759765625, -0.04852294921875, -0.0260772705078125, -0.03167724609375, 0.00982666015625, -0.02618408203125, -0.01364898681640625, -0.042938232421875, -0.0855712890625, 0.007297515869140625, -0.037933349609375, -0.006587982177734375, 0.0260467529296875, 0.0511474609375, 0.0160064697265625, 0.0004973411560058594, -0.0195770263671875, 0.0221099853515625, 0.004726409912109375, 0.03778076171875, 0.0166168212890625, -0.04119873046875, -0.01922607421875, 0.044464111328125, -0.0212554931640625, 0.015625, -0.04315185546875, 0.019561767578125, -0.0178070068359375, -0.0325927734375, 0.0377197265625, -0.039642333984375, 0.03997802734375, 0.0173492431640625, -0.020660400390625, -0.004669189453125, 0.0177764892578125, 0.018035888671875, -0.041046142578125, 0.0361328125, -0.0002703666687011719, -0.01044464111328125, -0.0017328262329101562, 0.01309967041015625, 0.0195770263671875, -0.00905609130859375, 0.006755828857421875, -0.01873779296875, 0.04547119140625, 0.03460693359375, 0.005870819091796875, -0.001956939697265625, -0.03533935546875, 0.023651123046875, 0.072021484375, 0.023681640625, 0.02105712890625, 0.008026123046875, 0.028564453125, 0.0088958740234375, -0.015289306640625, -0.0838623046875, 0.0036830902099609375, 0.036102294921875, -0.01190948486328125, -0.02899169921875, -0.016937255859375, -0.0012159347534179688, 0.021270751953125, 0.0267791748046875, -0.01007843017578125, 0.0205078125, 0.0128021240234375, 0.0086669921875, 0.0269775390625, -0.0269927978515625, -0.0291900634765625, 0.0294189453125, 0.0199432373046875, -0.0237579345703125, -0.01335906982421875, 0.04302978515625, 0.045135498046875, 0.00003510713577270508, 0.01557159423828125, 0.011016845703125, -0.0139007568359375, -0.003093719482421875, 0.005527496337890625, -0.0283660888671875, 0.0250091552734375, -0.003173828125, 0.010894775390625, 0.0098876953125, -0.0167999267578125, 0.0439453125, 0.00513458251953125, -0.01947021484375, -0.0002701282501220703, 0.041168212890625, 0.045928955078125, -0.013885498046875, -0.056182861328125, -0.0070953369140625, 0.0552978515625, 0.0113372802734375, 0.0177154541015625, -0.0024204254150390625, 0.01507568359375, -0.01318359375, -0.0076751708984375, -0.007213592529296875, 0.0007920265197753906, -0.0013208389282226562, 0.0017423629760742188, -0.0176849365234375, 0.01171112060546875, -0.0268096923828125, -0.004146575927734375, -0.014739990234375, 0.05023193359375, -0.051025390625, 0.018402099609375, -0.067138671875, 0.05975341796875, -0.1351318359375, 0.0233154296875, 0.004878997802734375, 0.0273895263671875, -0.003208160400390625, -0.0192718505859375, -0.009765625, -0.0131072998046875, 0.0043792724609375, -0.035919189453125, -0.0096435546875, -0.0159912109375, 0.0307464599609375, 0.0372314453125, 0.0160369873046875, -0.033599853515625, 0.021270751953125, -0.028350830078125, -0.01145172119140625, 0.001277923583984375, 0.01617431640625, 0.062225341796875, -0.0221405029296875, 0.084716796875, 0.026763916015625, 0.00595855712890625, -0.050384521484375, -0.03106689453125, 0.0300140380859375, -0.005695343017578125, -0.0186004638671875, -0.030426025390625, -0.0245513916015625, -0.035400390625, 0.0177001953125, -0.01404571533203125, 0.025054931640625, -0.0044403076171875, -0.00347137451171875, -0.0223236083984375, -0.042510986328125, 0.0006475448608398438, 0.021575927734375, -0.01471710205078125, -0.036376953125, 0.0015382766723632812, 0.0213623046875, 0.01031494140625, -0.0035533905029296875, -0.017852783203125, 0.02252197265625, 0.009002685546875, -0.02099609375, 0.035888671875, 0.05914306640625, 0.01171875, 0.039031982421875, 0.0011997222900390625, 0.024566650390625, 0.022308349609375, 0.021636962890625, 0.056365966796875, 0.007762908935546875, 0.055145263671875, -0.019195556640625, -0.01543426513671875, -0.0215301513671875, -0.0302886962890625, 0.0210113525390625, 0.032196044921875, 0.04827880859375, -0.031494140625, -0.0061492919921875, 0.009735107421875, -0.033599853515625, 0.038421630859375, -0.01529693603515625, -0.0034389495849609375, 0.0269317626953125, -0.0101776123046875, -0.052276611328125, -0.06756591796875, -0.031494140625, -0.0166473388671875, -0.0233612060546875, -0.0124359130859375, 0.035247802734375, -0.01303863525390625, -0.035675048828125, 0.00585174560546875, -0.026336669921875, 0.0105438232421875, -0.0614013671875, 0.0016527175903320312, 0.013458251953125, -0.0002524852752685547, -0.095458984375, 0.01611328125, -0.00014984607696533203, 0.0182342529296875, 0.00978851318359375, -0.034149169921875, 0.032196044921875, -0.0062408447265625, -0.00017023086547851562, -0.035552978515625, -0.0224761962890625, -0.03466796875, 0.01239776611328125, -0.01398468017578125, 0.005947113037109375, -0.0284881591796875, 0.02081298828125, -0.0001131296157836914, -0.0035152435302734375, -0.038177490234375, -0.0223388671875, -0.024139404296875, 0.07623291015625, -0.005268096923828125, -0.0312347412109375, -0.003505706787109375, 0.06378173828125, -0.004150390625, 0.01776123046875, 0.0308074951171875, -0.047760009765625, -0.03668212890625, 0.01459503173828125, -0.0435791015625, -0.00879669189453125, 0.0034236907958984375, -0.0380859375, 0.08416748046875, -0.026336669921875, -0.0034275054931640625, 0.0159149169921875, 0.041290283203125, -0.01512908935546875, 0.0307769775390625, -0.023956298828125, 0.03228759765625, 0.01617431640625, 0.01041412353515625, -0.0556640625, -0.0177001953125, -0.023162841796875, 0.057525634765625, 0.03369140625, 0.01158905029296875, -0.0255584716796875, -0.004917144775390625, 0.058563232421875, 0.039398193359375, 0.006439208984375, 0.02813720703125, -0.0040740966796875, 0.0221405029296875, 0.028411865234375, -0.005352020263671875, 0.02789306640625, -0.015533447265625, -0.034515380859375, 0.0166473388671875, -0.01934814453125, -0.0299835205078125, -0.049346923828125, -0.046600341796875, -0.007076263427734375, -0.030731201171875, -0.0229339599609375, 0.0207977294921875, 0.0285491943359375, 0.0012226104736328125, 0.054931640625, -0.0280303955078125, -0.05303955078125, 0.00616455078125, 0.041351318359375, 0.04400634765625, 0.0214996337890625, 0.053497314453125, 0.0256195068359375, -0.057098388671875, 0.0201568603515625, 0.0200958251953125, -0.015625, -0.0235595703125, 0.0301361083984375, 0.005428314208984375, 0.0222015380859375, -0.03125, 0.0157318115234375, 0.036285400390625, 0.045867919921875, -0.042694091796875, 0.017578125, 0.0169525146484375, -0.01320648193359375, -0.009521484375, -0.068359375, -0.04132080078125, -0.0484619140625, -0.056121826171875, -0.02783203125, 0.01593017578125, 0.0305023193359375, -0.01255035400390625, 0.0177001953125, 0.06353759765625, -0.0438232421875, 0.0083160400390625, -0.00827789306640625, -0.00006175041198730469, 0.0120697021484375, -0.004913330078125, -0.015411376953125, 0.0201416015625, 0.00688934326171875, 0.016082763671875, -0.0218505859375, 0.0167694091796875, -0.0051727294921875, 0.0296783447265625, -0.040924072265625, 0.0031490325927734375, -0.0309295654296875, 0.045928955078125, 0.00421905517578125, 0.0308380126953125, 0.041351318359375, 0.05828857421875, 0.0210113525390625, -0.0015230178833007812, 0.07623291015625, -0.0050811767578125, -0.0245819091796875, -0.0300750732421875, -0.01471710205078125, 0.002368927001953125, -0.0146636962890625, 0.0196533203125, -0.02362060546875, 0.03448486328125, 0.0013608932495117188, 0.004734039306640625, 0.015167236328125, -0.0095062255859375, 0.025390625, 0.01995849609375, 0.01209259033203125, 0.02178955078125, -0.06658935546875, -0.0196685791015625, -0.044464111328125, -0.0021266937255859375, 0.051971435546875, 0.0438232421875, -0.00196075439453125, 0.0038433074951171875, -0.046356201171875, -0.01259613037109375, 0.0252838134765625, -0.007076263427734375, -0.01091766357421875, 0.0175933837890625, -0.0014715194702148438, -0.01166534423828125, -0.03607177734375, -0.038055419921875, -0.0017099380493164062, 0.044769287109375, -0.00884246826171875, -0.0206451416015625, 0.01430511474609375, 0.0283966064453125, 0.01251220703125, -0.01148223876953125, 0.0166473388671875, 0.01513671875, 0.038330078125, 0.004215240478515625, -0.02410888671875, -0.032562255859375, 0.008544921875, -0.0159454345703125, 0.0694580078125, -0.0595703125, 0.027923583984375, -0.033416748046875, 0.019287109375, -0.0643310546875, -0.0249786376953125, -0.034271240234375, -0.00974273681640625, 0.019134521484375, 0.006832122802734375, -0.0048828125, -0.0197296142578125, -0.0195159912109375, -0.01479339599609375, 0.0279998779296875, -0.03387451171875, 0.03466796875, -0.0123443603515625, 0.05926513671875, 0.039794921875, -0.00559234619140625, -0.008575439453125, 0.0191497802734375, 0.01128387451171875, 0.01175689697265625, 0.03509521484375, -0.01081085205078125, 0.02459716796875, 0.001743316650390625, -0.00494384765625, 0.03167724609375, 0.0428466796875, 0.0167694091796875, 0.00899505615234375, 0.0220184326171875, -0.030670166015625, -0.053375244140625, 0.01088714599609375, -0.00981903076171875, 0.00919342041015625, -0.0053558349609375, -0.0008182525634765625, 0.044708251953125, -0.0008692741394042969, -0.00627899169921875, -0.0017337799072265625, 0.00023233890533447266, -0.003185272216796875, -0.0166015625, 0.0009379386901855469, -0.01314544677734375, -0.0105743408203125, -0.00379180908203125, -0.03228759765625, 0.022735595703125, 0.051300048828125, -0.00008559226989746094, -0.002593994140625, -0.01396942138671875, 0.0003662109375, -0.002277374267578125, -0.02886962890625, 0.0283355712890625, 0.015106201171875, -0.038421630859375, -0.047210693359375, -0.03399658203125, 0.0034008026123046875, -0.044769287109375, 0.014373779296875, 0.021331787109375, 0.023101806640625, -0.06683349609375, -0.05657958984375, 0.0200042724609375, -0.004253387451171875, -0.01485443115234375, -0.0278472900390625, 0.0201873779296875, 0.01470947265625, -0.03240966796875, -0.05682373046875, 0.060760498046875, -0.0162506103515625, -0.0162353515625, -0.03546142578125, 0.01503753662109375, -0.00699615478515625, 0.0247955322265625, 0.01218414306640625, -0.04180908203125, -0.0037689208984375, 0.0177459716796875, -0.01261138916015625, 0.036041259765625, 0.004650115966796875, -0.0058441162109375, -0.05865478515625, -0.0036468505859375, -0.037811279296875, 0.01096343994140625, -0.011566162109375, -0.01611328125, 0.0245361328125, 0.00972747802734375, -0.0400390625, -0.05450439453125, 0.01004791259765625, 0.0193023681640625, 0.0044403076171875, -0.012969970703125, -0.03228759765625, -0.00403594970703125, 0.035614013671875, 0.0714111328125, 0.0258331298828125, -0.05389404296875, -0.004962921142578125, -0.035491943359375, -0.00734710693359375, -0.0282745361328125, 0.0184478759765625, -0.08416748046875, -0.042144775390625, 0.023193359375, -0.005458831787109375, -0.00725555419921875, 0.01097869873046875, -0.0269775390625, -0.009246826171875, 0.0004820823669433594, 0.009857177734375, -0.1033935546875, 0.09320068359375, -0.0015850067138671875, -0.042022705078125, -0.024871826171875, -0.039306640625, -0.0377197265625, -0.0191802978515625, -0.0736083984375, -0.0227203369140625, 0.0129547119140625, 0.0262298583984375, -0.0038967132568359375, 0.01374053955078125, 0.01129913330078125, 0.0284423828125, 0.01532745361328125, -0.01416778564453125, 0.020721435546875, -0.00096893310546875, -0.004962921142578125, -0.033233642578125, 0.0477294921875, 0.01212310791015625, 0.0616455078125, -0.00344085693359375, 0.0183563232421875, -0.0074005126953125, 0.032684326171875, -0.036285400390625, 0.0023174285888671875, -0.0091400146484375, -0.0030078887939453125, 0.00856781005859375, -0.004581451416015625, -0.03955078125, -0.0090789794921875, -0.0087432861328125, -0.0413818359375, -0.034912109375, 0.00667572021484375 ]
c1679189f319b55737c2f604bc6fedb4702e5fd9
Wordpress Stackexchange Q: WP_Query orderby date not working I have a simple WP_Query to get a list of posts of co-author (taxonomy author) order by date, this is the query : $username = get_the_author_meta( 'login', $author_id ); $args = array( 'post_type' => 'any', 'orderby' => 'date', //'orderby' => 'post_date', 'order' => 'DESC', 'tax_query' => array( array( 'taxonomy' => 'author', 'field' => 'name', 'terms' => $username ) ) ); $query = new WP_Query( $args ); The result is always a list of posts ordering by date ASC... I have already search solution over internet without success... Any idea ? Thanks a lot A: Adding 'suppress_filters' => true into the $args array did sorting in the order I needed.
Q: WP_Query orderby date not working I have a simple WP_Query to get a list of posts of co-author (taxonomy author) order by date, this is the query : $username = get_the_author_meta( 'login', $author_id ); $args = array( 'post_type' => 'any', 'orderby' => 'date', //'orderby' => 'post_date', 'order' => 'DESC', 'tax_query' => array( array( 'taxonomy' => 'author', 'field' => 'name', 'terms' => $username ) ) ); $query = new WP_Query( $args ); The result is always a list of posts ordering by date ASC... I have already search solution over internet without success... Any idea ? Thanks a lot A: Adding 'suppress_filters' => true into the $args array did sorting in the order I needed. A: This will definitely work....It worked for me... $username = get_the_author_meta( 'login', $author_id ); $args = array( 'post_type' => 'any', 'orderby' => 'date', 'order' => 'DESC', 'suppress_filters' => true, 'tax_query' => array( array( 'taxonomy' => 'author', 'field' => 'name', 'terms' => $username ) ) ); $query = new WP_Query( $args ); A: If you're using the Post Types Order plugin, you may need to add the following to your query args: 'ignore_custom_sort' => true,
wordpress
{ "language": "en", "length": 189, "provenance": "stackexchange_00019.jsonl.gz:470110", "question_score": "10", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/245682" }
[ 0.052886962890625, 0.002716064453125, -0.00841522216796875, -0.0465087890625, 0.01678466796875, -0.036956787109375, 0.0098876953125, -0.0182037353515625, 0.01430511474609375, 0.056060791015625, -0.0217132568359375, 0.00159454345703125, 0.01418304443359375, -0.00023412704467773438, -0.052093505859375, -0.0350341796875, 0.02557373046875, -0.032806396484375, -0.0110015869140625, 0.00015687942504882812, 0.008544921875, 0.026214599609375, 0.0015287399291992188, -0.006565093994140625, 0.03912353515625, 0.01384735107421875, 0.07000732421875, -0.036285400390625, 0.0640869140625, 0.009185791015625, 0.03314208984375, -0.08203125, -0.01194000244140625, 0.0191802978515625, 0.0218658447265625, 0.01264190673828125, 0.0198822021484375, 0.0178985595703125, 0.0275726318359375, 0.01447296142578125, 0.0265960693359375, -0.003997802734375, -0.038726806640625, 0.027435302734375, -0.046356201171875, -0.053985595703125, 0.07476806640625, 0.036407470703125, 0.04229736328125, -0.01042938232421875, -0.0137939453125, 0.01605224609375, 0.007221221923828125, -0.0308380126953125, -0.0258941650390625, -0.021209716796875, -0.005138397216796875, 0.020782470703125, 0.0094757080078125, -0.038421630859375, -0.021392822265625, 0.02410888671875, 0.0281524658203125, 0.041717529296875, 0.01158905029296875, 0.009002685546875, 0.053253173828125, 0.00789642333984375, -0.0123748779296875, -0.0009908676147460938, 0.020355224609375, -0.002971649169921875, -0.0217742919921875, 0.01288604736328125, 0.016265869140625, -0.04498291015625, -0.02166748046875, -0.054901123046875, 0.0250091552734375, 0.061798095703125, -0.00319671630859375, 0.0487060546875, -0.0545654296875, -0.01384735107421875, 0.03350830078125, 0.017913818359375, -0.02642822265625, -0.031585693359375, -0.050018310546875, -0.01129150390625, -0.03167724609375, -0.00173187255859375, -0.0494384765625, 0.0034809112548828125, -0.006839752197265625, -0.00815582275390625, 0.0269012451171875, 0.060150146484375, -0.0179290771484375, -0.019134521484375, -0.0282745361328125, -0.007221221923828125, -0.041717529296875, -0.0124053955078125, 0.013397216796875, 0.015625, 0.01009368896484375, 0.021636962890625, 0.030548095703125, 0.0226287841796875, -0.004657745361328125, -0.005901336669921875, -0.0285797119140625, -0.042572021484375, 0.0112152099609375, 0.0017261505126953125, -0.05242919921875, 0.027130126953125, 0.0284881591796875, -0.045257568359375, 0.018310546875, 0.042999267578125, -0.030029296875, -0.031005859375, 0.0148162841796875, 0.0038967132568359375, -0.01207733154296875, -0.014495849609375, -0.03692626953125, 0.0101776123046875, -0.030548095703125, 0.03179931640625, 0.033935546875, 0.0139617919921875, -0.01506805419921875, -0.00984954833984375, 0.022369384765625, -0.009552001953125, -0.002002716064453125, 0.004276275634765625, 0.01093292236328125, -0.019287109375, -0.00110626220703125, -0.0036220550537109375, -0.0203704833984375, -0.01336669921875, 0.0160369873046875, 0.0275421142578125, 0.006992340087890625, -0.017578125, -0.010223388671875, 0.0192413330078125, 0.042755126953125, -0.009002685546875, -0.03033447265625, -0.02105712890625, 0.00927734375, -0.0228118896484375, -0.0211944580078125, -0.028350830078125, -0.0011501312255859375, 0.00836181640625, -0.005462646484375, -0.031494140625, -0.02764892578125, -0.031768798828125, -0.01324462890625, -0.0043487548828125, 0.01087188720703125, -0.01457977294921875, -0.01153564453125, -0.0141143798828125, 0.04608154296875, 0.0200653076171875, -0.00604248046875, 0.036773681640625, -0.007778167724609375, -0.0192413330078125, -0.0011234283447265625, 0.041168212890625, -0.01342010498046875, -0.032135009765625, -0.00713348388671875, -0.00872802734375, -0.0382080078125, 0.0145111083984375, 0.0194091796875, 0.0227203369140625, -0.00545501708984375, 0.004634857177734375, 0.050628662109375, 0.058929443359375, -0.090576171875, 0.07763671875, 0.0199127197265625, -0.0229339599609375, -0.0157928466796875, -0.002864837646484375, 0.0145111083984375, -0.061676025390625, -0.01534271240234375, 0.050750732421875, -0.02294921875, 0.00244903564453125, -0.062164306640625, 0.041534423828125, -0.0194091796875, 0.0533447265625, 0.01212310791015625, 0.0458984375, 0.006130218505859375, 0.02215576171875, -0.051666259765625, 0.0102386474609375, -0.018951416015625, 0.0034503936767578125, 0.0006146430969238281, 0.04345703125, -0.00238800048828125, 0.00998687744140625, -0.02008056640625, -0.0421142578125, 0.00296783447265625, 0.039398193359375, 0.03753662109375, -0.038848876953125, 0.0145416259765625, -0.032867431640625, 0.0501708984375, -0.005672454833984375, 0.0012998580932617188, -0.000591278076171875, 0.040496826171875, 0.059234619140625, -0.047332763671875, -0.01158905029296875, 0.0088958740234375, 0.0172882080078125, 0.01153564453125, 0.0218963623046875, 0.0298309326171875, -0.0141754150390625, 0.0189971923828125, 0.02484130859375, 0.031707763671875, -0.021697998046875, 0.019256591796875, -0.0154876708984375, 0.007232666015625, 0.04180908203125, 0.0218048095703125, 0.0033416748046875, 0.00832366943359375, -0.0087738037109375, 0.00875091552734375, 0.037353515625, -0.0037403106689453125, 0.034515380859375, -0.02532958984375, -0.003536224365234375, -0.01007080078125, -0.05865478515625, -0.0100555419921875, -0.02679443359375, -0.008026123046875, -0.005008697509765625, 0.01605224609375, 0.0093231201171875, -0.014739990234375, -0.0202178955078125, 0.01214599609375, -0.009521484375, 0.01308441162109375, -0.0001767873764038086, -0.0439453125, 0.0022106170654296875, -0.00566864013671875, 0.0109710693359375, 0.0027313232421875, -0.002532958984375, 0.00720977783203125, 0.032806396484375, 0.05865478515625, 0.0007615089416503906, -0.01555633544921875, -0.017120361328125, 0.060699462890625, 0.03765869140625, -0.010498046875, -0.0174102783203125, 0.02978515625, 0.016815185546875, -0.019378662109375, 0.023345947265625, 0.0114593505859375, -0.02886962890625, -0.01302337646484375, -0.045684814453125, 0.049560546875, -0.061553955078125, 0.00235748291015625, 0.0469970703125, -0.01238250732421875, 0.0134735107421875, -0.0124053955078125, -0.0218353271484375, -0.0191650390625, -0.0074310302734375, -0.0180816650390625, 0.00893402099609375, -0.06182861328125, 0.040191650390625, 0.03155517578125, 0.048492431640625, 0.0165557861328125, -0.0218658447265625, 0.00971221923828125, 0.032562255859375, -0.06640625, -0.12841796875, -0.054962158203125, -0.045257568359375, 0.0252685546875, -0.0188446044921875, -0.0037975311279296875, 0.0016431808471679688, -0.017608642578125, 0.0156707763671875, 0.01824951171875, -0.05029296875, -0.09039306640625, -0.05999755859375, -0.0611572265625, 0.0245819091796875, 0.00952911376953125, -0.004055023193359375, 0.0140533447265625, 0.09686279296875, 0.00839996337890625, -0.08001708984375, -0.008056640625, -0.01535797119140625, -0.0275421142578125, 0.02093505859375, 0.00263214111328125, 0.0169677734375, -0.0238800048828125, 0.0037689208984375, 0.06610107421875, 0.02520751953125, -0.035980224609375, 0.00579833984375, 0.025726318359375, 0.020355224609375, 0.038055419921875, -0.0007252693176269531, -0.03717041015625, 0.0345458984375, 0.0302886962890625, -0.032196044921875, 0.01198577880859375, -0.01136016845703125, -0.004673004150390625, 0.05633544921875, -0.01067352294921875, -0.0178375244140625, 0.035125732421875, -0.00472259521484375, 0.0215301513671875, -0.004230499267578125, 0.01108551025390625, -0.016876220703125, 0.03411865234375, 0.018768310546875, 0.023956298828125, -0.0156402587890625, -0.0198822021484375, -0.037261962890625, -0.0035858154296875, -0.016754150390625, -0.0106658935546875, -0.023193359375, 0.01464080810546875, -0.0330810546875, -0.031982421875, 0.0543212890625, -0.00341033935546875, -0.0210418701171875, -0.022613525390625, -0.0272064208984375, -0.01056671142578125, 0.04827880859375, -0.0034465789794921875, -0.0214996337890625, 0.0294952392578125, 0.0115509033203125, -0.0584716796875, -0.0124359130859375, -0.05047607421875, -0.012451171875, -0.053070068359375, 0.005947113037109375, 0.0220489501953125, -0.025238037109375, -0.0291595458984375, 0.033782958984375, -0.05816650390625, -0.0056304931640625, 0.0215301513671875, 0.01336669921875, -0.01416015625, 0.0347900390625, -0.0275115966796875, 0.005092620849609375, -0.0178070068359375, 0.0156097412109375, -0.0931396484375, -0.010284423828125, 0.00897216796875, 0.04278564453125, -0.033843994140625, 0.0195159912109375, -0.046234130859375, 0.03759765625, -0.019378662109375, -0.0012073516845703125, 0.032745361328125, 0.0234832763671875, 0.00145721435546875, 0.0158843994140625, 0.0186767578125, -0.03057861328125, -0.0265960693359375, -0.00726318359375, 0.0202178955078125, 0.027862548828125, -0.040008544921875, -0.037872314453125, -0.046356201171875, -0.005016326904296875, 0.0030517578125, -0.02154541015625, -0.035247802734375, 0.00870513916015625, -0.05242919921875, 0.007228851318359375, -0.0162506103515625, -0.0264434814453125, 0.0506591796875, -0.00904083251953125, -0.01065826416015625, -0.00855255126953125, 0.10528564453125, 0.018951416015625, -0.018280029296875, -0.025787353515625, 0.03326416015625, 0.0242767333984375, 0.013824462890625, 0.023040771484375, -0.024505615234375, -0.029144287109375, 0.0614013671875, -0.0127105712890625, 0.00667572021484375, -0.023162841796875, 0.03863525390625, -0.003887176513671875, -0.035675048828125, 0.03631591796875, -0.0218505859375, 0.01537322998046875, 0.0040740966796875, 0.0077667236328125, -0.00850677490234375, 0.0081787109375, 0.0259552001953125, 0.01142120361328125, -0.004852294921875, -0.017730712890625, -0.045440673828125, 0.0163726806640625, -0.0560302734375, -0.00827789306640625, -0.005207061767578125, -0.003070831298828125, -0.01806640625, 0.003795623779296875, 0.004245758056640625, 0.0003581047058105469, -0.00424957275390625, -0.003879547119140625, 0.03363037109375, -0.014923095703125, 0.019927978515625, 0.0017108917236328125, -0.013397216796875, 0.1046142578125, 0.034515380859375, -0.021148681640625, -0.0022220611572265625, -0.0203399658203125, 0.029693603515625, 0.004207611083984375, -0.04937744140625, 0.012664794921875, 0.0222015380859375, 0.00978851318359375, 0.0168609619140625, -0.06787109375, 0.0233154296875, -0.0239105224609375, 0.036041259765625, 0.0149078369140625, -0.004657745361328125, 0.03076171875, 0.05389404296875, -0.0011968612670898438, 0.030853271484375, -0.031829833984375, 0.003566741943359375, -0.0170745849609375, 0.052398681640625, 0.04144287109375, -0.040069580078125, 0.00846099853515625, 0.0171356201171875, -0.004352569580078125, -0.0009126663208007812, 0.0021762847900390625, -0.0011129379272460938, -0.033660888671875, 0.01450347900390625, 0.026611328125, 0.0279998779296875, 0.03729248046875, -0.015655517578125, 0.0098876953125, 0.0321044921875, 0.0118560791015625, -0.021331787109375, -0.061126708984375, -0.01190948486328125, 0.02020263671875, 0.0010862350463867188, 0.0059814453125, -0.041259765625, 0.037139892578125, -0.03411865234375, 0.07464599609375, -0.041534423828125, -0.07086181640625, 0.033294677734375, -0.01580810546875, -0.0183868408203125, 0.050628662109375, 0.034149169921875, -0.0458984375, -0.01522064208984375, 0.07232666015625, -0.0208587646484375, 0.057952880859375, -0.06982421875, 0.0173492431640625, -0.0129852294921875, 0.00203704833984375, 0.044952392578125, 0.0287933349609375, -0.0408935546875, -0.0030670166015625, -0.026458740234375, 0.004123687744140625, 0.00717926025390625, -0.035980224609375, -0.0243377685546875, -0.0170135498046875, 0.003910064697265625, 0.036529541015625, -0.0152435302734375, -0.041046142578125, -0.004184722900390625, -0.0263824462890625, -0.01404571533203125, -0.00021457672119140625, 0.0014209747314453125, 0.07965087890625, -0.032623291015625, 0.07666015625, 0.004810333251953125, 0.0286865234375, -0.0248565673828125, -0.0101776123046875, 0.005645751953125, -0.06396484375, -0.0223541259765625, 0.0013370513916015625, -0.0733642578125, 0.0066375732421875, 0.02947998046875, -0.0015554428100585938, 0.0535888671875, -0.0266265869140625, -0.01403045654296875, -0.0038890838623046875, -0.040130615234375, -0.013214111328125, 0.043975830078125, 0.018951416015625, -0.006496429443359375, 0.047027587890625, -0.03369140625, 0.005222320556640625, 0.0009822845458984375, -0.0225677490234375, 0.002105712890625, 0.0186767578125, -0.028778076171875, 0.033203125, 0.0623779296875, 0.0190277099609375, 0.043304443359375, 0.003658294677734375, 0.03436279296875, 0.02117919921875, -0.00782012939453125, 0.0008296966552734375, -0.015594482421875, 0.042877197265625, 0.00010854005813598633, -0.001064300537109375, 0.0307159423828125, -0.018402099609375, 0.00440216064453125, 0.0228729248046875, 0.052032470703125, -0.030487060546875, 0.00923919677734375, 0.0257110595703125, 0.007778167724609375, 0.0421142578125, -0.0107574462890625, -0.0093994140625, 0.00594329833984375, 0.06097412109375, -0.036834716796875, -0.0218963623046875, 0.032928466796875, -0.01152801513671875, 0.01523590087890625, 0.0007033348083496094, 0.06292724609375, 0.019622802734375, -0.037841796875, 0.0013446807861328125, 0.01177978515625, 0.0182952880859375, -0.016265869140625, 0.0202789306640625, -0.024383544921875, 0.025115966796875, -0.03466796875, 0.019927978515625, -0.0360107421875, 0.0131683349609375, -0.0196533203125, -0.028411865234375, 0.024505615234375, 0.0245361328125, -0.0115814208984375, -0.03662109375, 0.00731658935546875, -0.0170440673828125, 0.00482940673828125, -0.034271240234375, -0.006694793701171875, 0.035186767578125, -0.0010547637939453125, 0.0207366943359375, 0.022308349609375, -0.037506103515625, -0.0162811279296875, -0.02178955078125, 0.0489501953125, -0.015869140625, -0.004825592041015625, 0.0217132568359375, 0.05596923828125, -0.0137786865234375, 0.031707763671875, 0.043975830078125, -0.047271728515625, -0.0296173095703125, 0.049774169921875, -0.004009246826171875, -0.00824737548828125, 0.03228759765625, -0.0479736328125, 0.085693359375, -0.0227508544921875, 0.0217437744140625, 0.01274871826171875, 0.034637451171875, -0.024688720703125, 0.0075836181640625, -0.058624267578125, 0.0777587890625, 0.02777099609375, 0.0523681640625, -0.06805419921875, -0.0112762451171875, 0.0031909942626953125, 0.02728271484375, 0.071044921875, 0.008026123046875, -0.0693359375, -0.01166534423828125, 0.07928466796875, 0.064697265625, 0.03192138671875, 0.044952392578125, 0.01215362548828125, 0.034332275390625, 0.0251007080078125, 0.00411224365234375, 0.04766845703125, -0.0125274658203125, -0.0438232421875, 0.0263214111328125, 0.01143646240234375, 0.022003173828125, -0.05377197265625, -0.0178375244140625, -0.059906005859375, -0.0159149169921875, 0.041107177734375, 0.00852203369140625, 0.0426025390625, 0.0190887451171875, 0.053680419921875, -0.06451416015625, -0.051910400390625, -0.01102447509765625, 0.037384033203125, 0.0175018310546875, 0.0215911865234375, 0.01157379150390625, 0.01280975341796875, 0.034759521484375, -0.03436279296875, 0.0017175674438476562, -0.004425048828125, -0.027099609375, 0.0556640625, -0.02630615234375, 0.02203369140625, -0.076904296875, -0.0323486328125, 0.044891357421875, 0.07354736328125, -0.02764892578125, 0.018646240234375, 0.0241241455078125, -0.002349853515625, -0.0267486572265625, -0.045196533203125, -0.0428466796875, 0.01490020751953125, 0.0211944580078125, -0.0280609130859375, -0.011260986328125, 0.00849151611328125, 0.03289794921875, -0.007354736328125, 0.0180511474609375, -0.02099609375, -0.021209716796875, -0.028167724609375, 0.0183868408203125, 0.0230865478515625, 0.0251007080078125, -0.00479888916015625, 0.0560302734375, -0.0252227783203125, -0.008819580078125, -0.007480621337890625, 0.006816864013671875, -0.01299285888671875, 0.00937652587890625, -0.0209808349609375, -0.01947021484375, -0.0172882080078125, 0.03363037109375, 0.002941131591796875, 0.01438140869140625, 0.0263214111328125, 0.04583740234375, 0.0051727294921875, -0.01506805419921875, 0.057830810546875, -0.01739501953125, -0.03485107421875, -0.0198974609375, 0.0151519775390625, 0.033111572265625, -0.002292633056640625, 0.0229034423828125, 0.0263671875, 0.037200927734375, -0.031982421875, 0.0037097930908203125, -0.00716400146484375, -0.0292816162109375, 0.0340576171875, -0.0458984375, 0.036895751953125, -0.032073974609375, -0.0134124755859375, 0.0057830810546875, -0.038818359375, -0.032073974609375, 0.01523590087890625, 0.027130126953125, -0.005512237548828125, 0.017303466796875, -0.026763916015625, -0.028350830078125, 0.00531005859375, 0.006565093994140625, 0.0018310546875, 0.0208282470703125, 0.003200531005859375, -0.020477294921875, -0.07879638671875, -0.0220947265625, -0.01500701904296875, 0.00568389892578125, -0.013885498046875, -0.012298583984375, 0.047760009765625, -0.0009965896606445312, -0.0487060546875, -0.00814056396484375, -0.07513427734375, -0.0396728515625, 0.06463623046875, -0.079345703125, -0.094970703125, 0.037933349609375, -0.0162811279296875, -0.00835418701171875, 0.0341796875, -0.0167083740234375, 0.005809783935546875, -0.0244903564453125, 0.0210113525390625, -0.0084075927734375, -0.006557464599609375, -0.03521728515625, 0.0080718994140625, 0.0220489501953125, -0.01580810546875, 0.0068817138671875, -0.0138702392578125, 0.004077911376953125, 0.01221466064453125, -0.006374359130859375, -0.055389404296875, 0.033050537109375, -0.038177490234375, 0.035614013671875, 0.0396728515625, 0.00632476806640625, 0.020172119140625, -0.0240478515625, -0.02459716796875, 0.0150299072265625, -0.0006432533264160156, -0.0318603515625, 0.01016998291015625, -0.0108489990234375, 0.0217437744140625, 0.00682830810546875, 0.034271240234375, 0.00940704345703125, -0.016510009765625, 0.00537109375, -0.013946533203125, -0.03045654296875, 0.02880859375, -0.03106689453125, -0.019378662109375, 0.0217742919921875, -0.0002994537353515625, 0.0220794677734375, -0.01120758056640625, -0.03265380859375, -0.0250091552734375, -0.01096343994140625, -0.0069122314453125, -0.004108428955078125, 0.0244140625, -0.0272369384765625, -0.059417724609375, -0.0192413330078125, -0.059051513671875, 0.01371002197265625, -0.0027942657470703125, -0.0176239013671875, 0.03021240234375, -0.045623779296875, -0.041534423828125, -0.009796142578125, 0.007030487060546875, 0.00970458984375, -0.0023746490478515625, 0.0081024169921875, 0.02032470703125, 0.00003170967102050781, 0.054840087890625, -0.01337432861328125, 0.00460052490234375, 0.0177001953125, 0.02801513671875, -0.051483154296875, -0.1031494140625, 0.0168609619140625, -0.04962158203125, 0.0206298828125, -0.0289154052734375, 0.044677734375, 0.0494384765625, -0.00731658935546875, -0.047210693359375, 0.07220458984375, -0.0202484130859375, -0.0205841064453125, -0.038726806640625, -0.0025272369384765625, 0.005496978759765625, -0.01187896728515625, -0.00637054443359375, -0.0426025390625, -0.0279083251953125, 0.0186767578125, -0.001895904541015625, 0.0316162109375, 0.0177001953125, 0.022125244140625, -0.08062744140625, -0.019287109375, -0.06781005859375, -0.0136566162109375, 0.0186004638671875, -0.0114898681640625, 0.048553466796875, 0.0582275390625, -0.019012451171875, 0.0352783203125, 0.0144195556640625, 0.00823974609375, -0.00347137451171875, -0.0150909423828125, -0.046905517578125, 0.0023899078369140625, 0.0206756591796875, 0.07965087890625, 0.007656097412109375, -0.049713134765625, -0.0303497314453125, -0.0256195068359375, 0.01256561279296875, -0.04058837890625, 0.00820159912109375, -0.06005859375, -0.0302886962890625, -0.01354217529296875, -0.01282501220703125, 0.034912109375, 0.01611328125, -0.019805908203125, 0.0010776519775390625, -0.01409912109375, -0.03594970703125, -0.057342529296875, 0.0285186767578125, 0.011688232421875, -0.0347900390625, -0.0203857421875, -0.0168609619140625, 0.0005311965942382812, -0.0198516845703125, -0.03900146484375, -0.0173187255859375, -0.002391815185546875, 0.0265045166015625, -0.0170135498046875, 0.0272369384765625, -0.0286102294921875, 0.0531005859375, 0.01322174072265625, -0.02496337890625, 0.0180206298828125, -0.006679534912109375, -0.0067901611328125, 0.030670166015625, 0.0086822509765625, 0.004123687744140625, 0.08135986328125, -0.016326904296875, 0.032562255859375, 0.007373809814453125, 0.011871337890625, -0.0151519775390625, -0.0059051513671875, 0.0311279296875, -0.02545166015625, 0.0079498291015625, -0.01280975341796875, 0.002445220947265625, -0.0101776123046875, -0.006916046142578125, -0.02081298828125, -0.0187530517578125, 0.009796142578125 ]
16ef11452903d4b433a2165f055ed24f2826b14a
Wordpress Stackexchange Q: What is the best / efficient way to get WordPress content by post id and why? I just wanted to get WordPress content by post id. I found the following three ways to get WordPress content by post id. (All the following ways I found on this site.) Method 01: $content_post = get_post($my_postid); $content = $content_post->post_content; $content = apply_filters('the_content', $content); $content = str_replace(']]>', ']]&gt;', $content); Method 02: $content=get_post_field('post_content', $my_postid); Method 03: $content=apply_filters('the_content', get_post_field('post_content', $my_postid)); What is the best / efficient way from above there methods and why? A: The methods you offer for comparison are pretty much the same, with minor API differences and whether the_content filters are applied. Within the loop get_the_content() should typically be used, which properly handles split into pages and so on. To retrieve raw content get_post_field() is generally suitable, but any further processing (such as the_content filters) heavily depends on specific purpose of retrieving content and what you are going to do with it. PS take note that many extensions out there are dumb and variously break on the_content filter executed outside of loop / more than once.
Q: What is the best / efficient way to get WordPress content by post id and why? I just wanted to get WordPress content by post id. I found the following three ways to get WordPress content by post id. (All the following ways I found on this site.) Method 01: $content_post = get_post($my_postid); $content = $content_post->post_content; $content = apply_filters('the_content', $content); $content = str_replace(']]>', ']]&gt;', $content); Method 02: $content=get_post_field('post_content', $my_postid); Method 03: $content=apply_filters('the_content', get_post_field('post_content', $my_postid)); What is the best / efficient way from above there methods and why? A: The methods you offer for comparison are pretty much the same, with minor API differences and whether the_content filters are applied. Within the loop get_the_content() should typically be used, which properly handles split into pages and so on. To retrieve raw content get_post_field() is generally suitable, but any further processing (such as the_content filters) heavily depends on specific purpose of retrieving content and what you are going to do with it. PS take note that many extensions out there are dumb and variously break on the_content filter executed outside of loop / more than once.
wordpress
{ "language": "en", "length": 184, "provenance": "stackexchange_00019.jsonl.gz:470113", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/245692" }
[ 0.034820556640625, -0.017913818359375, 0.039642333984375, 0.009307861328125, 0.003154754638671875, -0.0254669189453125, 0.0390625, -0.052490234375, 0.0404052734375, 0.021270751953125, -0.04486083984375, -0.018951416015625, -0.02496337890625, -0.0158538818359375, -0.03515625, -0.051177978515625, 0.0256805419921875, -0.034210205078125, -0.0030975341796875, -0.0198974609375, 0.00020456314086914062, -0.01271820068359375, 0.035003662109375, 0.0159149169921875, 0.0567626953125, -0.062164306640625, 0.045257568359375, -0.01386260986328125, 0.0260162353515625, -0.01123046875, 0.03729248046875, -0.00951385498046875, 0.01439666748046875, 0.00689697265625, -0.005313873291015625, 0.0177001953125, -0.006011962890625, 0.0143280029296875, 0.0263671875, 0.000583648681640625, -0.001781463623046875, 0.00817108154296875, 0.012969970703125, 0.031402587890625, -0.006683349609375, -0.022064208984375, -0.024993896484375, -0.056854248046875, 0.0021839141845703125, 0.002506256103515625, 0.033447265625, 0.022613525390625, 0.044830322265625, 0.01493072509765625, -0.0034465789794921875, 0.0153350830078125, 0.0094146728515625, -0.016265869140625, 0.05230712890625, -0.09124755859375, -0.06353759765625, -0.045501708984375, 0.06695556640625, 0.0251922607421875, 0.00333404541015625, 0.01213836669921875, 0.068115234375, 0.01336669921875, -0.059356689453125, -0.017364501953125, 0.035888671875, -0.0203857421875, 0.01465606689453125, -0.0264892578125, -0.0361328125, -0.0265655517578125, 0.0243682861328125, -0.032318115234375, 0.0009446144104003906, -0.025543212890625, -0.043914794921875, 0.022003173828125, -0.0738525390625, -0.0208587646484375, -0.00995635986328125, -0.004360198974609375, -0.02362060546875, -0.001613616943359375, -0.01076507568359375, -0.03961181640625, -0.00865936279296875, -0.019073486328125, -0.005680084228515625, -0.021392822265625, -0.0355224609375, -0.050933837890625, 0.004482269287109375, 0.019866943359375, -0.0171051025390625, 0.007755279541015625, 0.0306396484375, -0.05413818359375, 0.0675048828125, -0.03594970703125, -0.0048675537109375, 0.004955291748046875, 0.0267333984375, 0.01543426513671875, 0.0299072265625, 0.034027099609375, -0.016448974609375, 0.0274810791015625, 0.01287841796875, -0.005649566650390625, -0.033050537109375, 0.018218994140625, -0.00644683837890625, -0.00830841064453125, 0.007549285888671875, 0.003894805908203125, 0.01509857177734375, -0.005580902099609375, -0.014801025390625, 0.0267333984375, -0.0029621124267578125, -0.005657196044921875, -0.024566650390625, -0.00014281272888183594, -0.00673675537109375, 0.0015354156494140625, -0.013580322265625, 0.00748443603515625, 0.04833984375, 0.027435302734375, 0.0020198822021484375, -0.0182037353515625, 0.0011510848999023438, -0.0292510986328125, -0.002834320068359375, -0.0024471282958984375, -0.01352691650390625, -0.0063629150390625, 0.034271240234375, -0.022735595703125, -0.004940032958984375, 0.0191497802734375, 0.0200042724609375, -0.00017952919006347656, -0.005947113037109375, -0.033538818359375, -0.01605224609375, 0.01309967041015625, 0.0300445556640625, -0.007114410400390625, -0.00034999847412109375, -0.041534423828125, 0.0289764404296875, -0.050079345703125, -0.002277374267578125, -0.056976318359375, 0.05908203125, 0.00318145751953125, -0.003173828125, 0.0421142578125, -0.01271820068359375, -0.006999969482421875, -0.01971435546875, -0.016815185546875, 0.020751953125, 0.042510986328125, 0.05157470703125, -0.041778564453125, -0.05767822265625, -0.033355712890625, -0.0227813720703125, -0.0180206298828125, 0.006206512451171875, 0.008392333984375, 0.005092620849609375, 0.0272216796875, -0.014251708984375, -0.032440185546875, 0.0223541259765625, -0.000255584716796875, -0.04083251953125, 0.0316162109375, 0.033447265625, 0.0633544921875, -0.008880615234375, 0.0236968994140625, 0.03497314453125, 0.0243988037109375, -0.05419921875, 0.0119781494140625, -0.004100799560546875, -0.0240936279296875, -0.01557159423828125, -0.00865936279296875, -0.00829315185546875, 0.0224456787109375, 0.049041748046875, -0.0212554931640625, 0.02716064453125, 0.01312255859375, -0.02294921875, -0.02398681640625, -0.004917144775390625, -0.0099334716796875, 0.003719329833984375, 0.01312255859375, 0.024169921875, 0.01523590087890625, -0.032012939453125, -0.016021728515625, -0.031646728515625, 0.04541015625, -0.014068603515625, -0.018890380859375, -0.0234375, 0.0302734375, -0.0264129638671875, -0.0156707763671875, -0.046600341796875, 0.02410888671875, 0.070068359375, -0.0159912109375, 0.01296234130859375, -0.0195465087890625, 0.07330322265625, 0.0294036865234375, -0.03619384765625, -0.0186004638671875, 0.0467529296875, 0.054473876953125, -0.01502227783203125, 0.01015472412109375, -0.0005655288696289062, -0.05120849609375, -0.004730224609375, 0.04730224609375, 0.0482177734375, 0.0733642578125, 0.00093841552734375, -0.0248870849609375, 0.08148193359375, -0.0438232421875, 0.0079498291015625, -0.02862548828125, 0.047698974609375, 0.0836181640625, -0.03485107421875, 0.01050567626953125, 0.025604248046875, -0.0111083984375, 0.004131317138671875, 0.03924560546875, 0.0038967132568359375, 0.039093017578125, -0.031494140625, 0.0113677978515625, -0.01171875, -0.034820556640625, -0.00861358642578125, -0.023284912109375, 0.00879669189453125, 0.046661376953125, 0.04547119140625, 0.052886962890625, -0.0189208984375, 0.006839752197265625, -0.0019989013671875, 0.0242919921875, 0.00788116455078125, 0.033935546875, -0.0230255126953125, 0.01538848876953125, -0.00434112548828125, -0.013641357421875, 0.00019943714141845703, 0.01549530029296875, 0.00818634033203125, 0.03204345703125, 0.00743865966796875, -0.005695343017578125, 0.0185089111328125, -0.002437591552734375, -0.005672454833984375, -0.00739288330078125, -0.0017499923706054688, -0.00699615478515625, 0.006931304931640625, 0.0679931640625, -0.01255035400390625, 0.06085205078125, -0.030670166015625, 0.003955841064453125, 0.025238037109375, -0.018707275390625, 0.0184173583984375, -0.01084136962890625, 0.041748046875, 0.041046142578125, -0.0086669921875, 0.005863189697265625, 0.0077362060546875, 0.0232391357421875, 0.02471923828125, -0.0120849609375, -0.01214599609375, 0.016387939453125, -0.08807373046875, -0.014190673828125, 0.00611114501953125, 0.0843505859375, -0.038116455078125, -0.0672607421875, -0.01458740234375, 0.0128936767578125, -0.1302490234375, -0.11541748046875, 0.0068206787109375, -0.08489990234375, -0.046142578125, -0.02777099609375, -0.058197021484375, 0.0164642333984375, -0.0159912109375, -0.01556396484375, 0.053070068359375, -0.018310546875, -0.10186767578125, 0.0138092041015625, -0.07977294921875, 0.048797607421875, -0.0203704833984375, 0.026458740234375, 0.020050048828125, 0.003265380859375, 0.013702392578125, -0.0360107421875, 0.018310546875, 0.00920867919921875, -0.0399169921875, -0.0139007568359375, -0.013885498046875, 0.00652313232421875, -0.0333251953125, 0.01483154296875, -0.0160064697265625, -0.0167236328125, 0.008819580078125, -0.0247344970703125, -0.052398681640625, -0.00321197509765625, 0.01430511474609375, -0.00396728515625, 0.03277587890625, 0.0290069580078125, 0.032318115234375, -0.0291900634765625, -0.00843048095703125, -0.01983642578125, -0.031890869140625, 0.0078277587890625, 0.02630615234375, -0.01041412353515625, -0.01551055908203125, 0.0095977783203125, -0.0025081634521484375, 0.004688262939453125, 0.0012378692626953125, -0.04693603515625, 0.0653076171875, 0.011260986328125, 0.0163116455078125, 0.006618499755859375, 0.01555633544921875, -0.01346588134765625, 0.01065826416015625, 0.007701873779296875, 0.0208892822265625, 0.00274658203125, -0.019500732421875, -0.05108642578125, -0.04180908203125, 0.056304931640625, 0.0144805908203125, 0.035675048828125, -0.052154541015625, -0.0482177734375, -0.0270233154296875, 0.09429931640625, -0.00785064697265625, -0.0188140869140625, -0.027862548828125, -0.0012187957763671875, -0.0247650146484375, -0.0335693359375, -0.0257568359375, 0.01508331298828125, -0.03717041015625, 0.00006794929504394531, -0.021575927734375, -0.00806427001953125, -0.0144805908203125, 0.005886077880859375, -0.018402099609375, -0.0175018310546875, 0.0282135009765625, -0.0211944580078125, 0.01276397705078125, 0.00557708740234375, -0.01238250732421875, 0.00669097900390625, -0.02532958984375, 0.003734588623046875, -0.036865234375, -0.021331787109375, 0.0308837890625, 0.0281219482421875, 0.02410888671875, -0.04864501953125, 0.0013589859008789062, 0.0256805419921875, 0.004390716552734375, 0.04095458984375, 0.00794219970703125, 0.00970458984375, 0.00811004638671875, -0.0220489501953125, 0.017578125, -0.032318115234375, -0.0124969482421875, -0.040374755859375, -0.0015840530395507812, 0.006500244140625, -0.048492431640625, 0.0131378173828125, -0.0369873046875, 0.012725830078125, -0.046295166015625, -0.01556396484375, -0.049102783203125, -0.0181427001953125, -0.058380126953125, 0.00769805908203125, 0.00881195068359375, -0.059112548828125, 0.10101318359375, 0.055267333984375, -0.00946807861328125, -0.023956298828125, 0.1253662109375, 0.0189666748046875, -0.055938720703125, -0.0865478515625, -0.0154266357421875, 0.01433563232421875, -0.0299072265625, 0.072021484375, 0.02947998046875, -0.01152801513671875, 0.09814453125, -0.0137786865234375, 0.0082855224609375, -0.0154266357421875, 0.07012939453125, 0.003368377685546875, 0.01502227783203125, 0.0023517608642578125, -0.001140594482421875, -0.004375457763671875, 0.039520263671875, -0.0153350830078125, -0.034271240234375, 0.003444671630859375, 0.0517578125, -0.028106689453125, 0.0369873046875, -0.047760009765625, -0.019683837890625, 0.0014524459838867188, 0.037872314453125, 0.007366180419921875, 0.02093505859375, 0.001590728759765625, 0.00879669189453125, 0.034393310546875, 0.00814056396484375, 0.046478271484375, 0.0233917236328125, 0.01102447509765625, 0.0303802490234375, 0.032196044921875, -0.0199432373046875, 0.0031490325927734375, -0.0077972412109375, 0.0450439453125, -0.01551055908203125, -0.041351318359375, -0.0258026123046875, -0.00955963134765625, 0.0338134765625, 0.031463623046875, -0.032989501953125, 0.0121002197265625, 0.04315185546875, -0.01158905029296875, 0.0015058517456054688, -0.01113128662109375, 0.0111236572265625, -0.040618896484375, -0.00002390146255493164, -0.0181427001953125, -0.00896453857421875, 0.022308349609375, 0.032379150390625, -0.0743408203125, 0.046905517578125, 0.00864410400390625, 0.047760009765625, 0.022857666015625, 0.025726318359375, 0.014923095703125, -0.012969970703125, -0.0087738037109375, 0.0015172958374023438, -0.00009262561798095703, -0.043182373046875, -0.027435302734375, 0.023162841796875, 0.060333251953125, -0.05596923828125, -0.03033447265625, 0.036773681640625, -0.002532958984375, 0.00234222412109375, -0.01142120361328125, -0.00775146484375, -0.00870513916015625, -0.0038204193115234375, 0.0005650520324707031, -0.002109527587890625, 0.01433563232421875, -0.002681732177734375, -0.00861358642578125, -0.024993896484375, 0.0021419525146484375, 0.0040283203125, -0.01403045654296875, 0.005428314208984375, -0.0038890838623046875, 0.01629638671875, -0.0440673828125, -0.032989501953125, -0.004680633544921875, 0.0142974853515625, -0.01544952392578125, 0.0176849365234375, 0.048736572265625, -0.0117950439453125, 0.04681396484375, -0.01428985595703125, -0.0208282470703125, 0.0002579689025878906, 0.006206512451171875, 0.0418701171875, 0.02313232421875, -0.0245819091796875, 0.017608642578125, -0.034423828125, 0.00035858154296875, -0.00794219970703125, -0.05755615234375, -0.026611328125, -0.021392822265625, -0.00980377197265625, -0.0078277587890625, -0.0011968612670898438, 0.01068115234375, -0.00989532470703125, 0.047515869140625, -0.005878448486328125, 0.0296783447265625, -0.004230499267578125, 0.058380126953125, -0.018157958984375, 0.0665283203125, 0.013092041015625, 0.0163726806640625, -0.032318115234375, -0.022247314453125, -0.01476287841796875, -0.037994384765625, 0.01009368896484375, 0.01129150390625, 0.021881103515625, 0.0144805908203125, -0.0005087852478027344, 0.01029205322265625, 0.035064697265625, -0.0258026123046875, -0.014434814453125, -0.00878143310546875, -0.002246856689453125, -0.01113128662109375, -0.0018796920776367188, 0.03515625, 0.00521087646484375, 0.022705078125, 0.004650115966796875, 0.006336212158203125, -0.03424072265625, 0.00499725341796875, -0.02496337890625, 0.0097198486328125, -0.016204833984375, 0.0272216796875, 0.052001953125, 0.0003733634948730469, 0.03277587890625, 0.01318359375, -0.00476837158203125, -0.004405975341796875, 0.0215606689453125, -0.0020046234130859375, -0.0064239501953125, 0.060577392578125, 0.00896453857421875, -0.01849365234375, 0.0283660888671875, -0.036865234375, 0.0233917236328125, 0.053375244140625, 0.07373046875, -0.055633544921875, 0.004436492919921875, 0.0182342529296875, -0.05035400390625, -0.00452423095703125, -0.005977630615234375, -0.0233001708984375, -0.0233306884765625, 0.04986572265625, -0.0168304443359375, -0.0257415771484375, 0.0104217529296875, -0.0245361328125, -0.00872802734375, -0.004245758056640625, 0.037872314453125, 0.0102996826171875, -0.0288848876953125, -0.00281524658203125, 0.0156402587890625, 0.02520751953125, -0.026641845703125, 0.008331298828125, -0.0235748291015625, -0.0012607574462890625, -0.0518798828125, -0.004974365234375, -0.00815582275390625, 0.004711151123046875, -0.00872039794921875, 0.0082244873046875, -0.002735137939453125, 0.073974609375, -0.03125, 0.0079803466796875, 0.0478515625, -0.015655517578125, -0.03887939453125, 0.0028438568115234375, 0.034149169921875, 0.017364501953125, -0.02252197265625, 0.0247802734375, -0.039093017578125, -0.0318603515625, -0.0188140869140625, -0.077880859375, 0.05804443359375, -0.04644775390625, 0.01910400390625, 0.038299560546875, 0.0364990234375, -0.0258026123046875, -0.0205230712890625, 0.04620361328125, -0.023651123046875, 0.028167724609375, 0.006946563720703125, 0.04522705078125, -0.019744873046875, -0.01329803466796875, -0.07000732421875, 0.0914306640625, 0.0212554931640625, 0.0050811767578125, -0.011322021484375, 0.03802490234375, -0.049835205078125, -0.00908660888671875, -0.027252197265625, 0.044891357421875, -0.006183624267578125, 0.0196075439453125, -0.0352783203125, -0.007080078125, -0.0008764266967773438, 0.0310211181640625, 0.08203125, 0.0159149169921875, -0.08270263671875, -0.0278472900390625, 0.04840087890625, 0.06317138671875, 0.0322265625, 0.0479736328125, 0.033966064453125, 0.052886962890625, 0.045166015625, -0.055023193359375, 0.01000213623046875, -0.0039215087890625, 0.023162841796875, 0.0703125, 0.0197906494140625, 0.01125335693359375, 0.036376953125, 0.0160675048828125, -0.059478759765625, 0.026336669921875, 0.0487060546875, -0.00274658203125, 0.00992584228515625, 0.037841796875, 0.0556640625, -0.050872802734375, -0.00698089599609375, -0.04315185546875, 0.05523681640625, 0.0301055908203125, 0.046173095703125, 0.024017333984375, 0.02044677734375, 0.09906005859375, -0.01081085205078125, 0.0178680419921875, 0.0206756591796875, -0.002071380615234375, 0.04901123046875, 0.01898193359375, 0.018096923828125, -0.043914794921875, -0.0187225341796875, 0.02374267578125, 0.049713134765625, -0.02996826171875, -0.0237884521484375, 0.027374267578125, 0.014923095703125, 0.00440216064453125, -0.022796630859375, -0.0087432861328125, 0.0004215240478515625, 0.017822265625, -0.0538330078125, 0.01177978515625, 0.040771484375, 0.005481719970703125, -0.0110321044921875, -0.0048675537109375, -0.035491943359375, 0.02032470703125, -0.039093017578125, 0.01003265380859375, 0.0240631103515625, 0.039276123046875, 0.01776123046875, 0.0323486328125, -0.0097808837890625, -0.0239105224609375, 0.006008148193359375, 0.0316162109375, 0.0014715194702148438, -0.0057830810546875, -0.005611419677734375, -0.04608154296875, -0.00009018182754516602, 0.01953125, 0.0098724365234375, 0.01120758056640625, 0.03436279296875, 0.046875, -0.01384735107421875, -0.02972412109375, -0.0012187957763671875, -0.0109710693359375, 0.025970458984375, -0.041229248046875, -0.038909912109375, -0.0128326416015625, -0.047515869140625, 0.007205963134765625, -0.061553955078125, 0.048126220703125, 0.01259613037109375, 0.034759521484375, 0.01010894775390625, 0.01009368896484375, 0.0175323486328125, -0.0269317626953125, -0.01474761962890625, -0.00733184814453125, -0.0989990234375, -0.003559112548828125, -0.01404571533203125, -0.05108642578125, 0.02276611328125, 0.042572021484375, -0.0180206298828125, -0.0033435821533203125, -0.02685546875, 0.0145416259765625, 0.00971221923828125, -0.01259613037109375, -0.003330230712890625, 0.0220947265625, 0.0276947021484375, 0.0004570484161376953, -0.020233154296875, -0.00682830810546875, -0.017425537109375, 0.01263427734375, 0.061279296875, 0.005405426025390625, 0.03271484375, 0.04705810546875, -0.00982666015625, -0.0006561279296875, -0.036102294921875, 0.01464080810546875, -0.0268402099609375, -0.005702972412109375, 0.005565643310546875, -0.00614166259765625, -0.0109710693359375, 0.0023784637451171875, 0.0416259765625, -0.00844573974609375, 0.00007140636444091797, -0.0328369140625, 0.028076171875, -0.0191192626953125, -0.00824737548828125, -0.031341552734375, -0.0037479400634765625, -0.047821044921875, -0.0257568359375, 0.057220458984375, 0.0142974853515625, -0.00379180908203125, 0.01210784912109375, 0.0261993408203125, 0.00434112548828125, 0.0091094970703125, 0.0225982666015625, 0.028106689453125, 0.03302001953125, -0.04461669921875, -0.045257568359375, 0.021087646484375, -0.0036563873291015625, 0.0261077880859375, 0.0011091232299804688, 0.06011962890625, 0.0225372314453125, -0.0256500244140625, 0.001995086669921875, -0.004039764404296875, 0.0518798828125, 0.0104522705078125, 0.0148773193359375, -0.0146636962890625, 0.00789642333984375, -0.02642822265625, -0.003925323486328125, 0.006801605224609375, -0.035614013671875, -0.01751708984375, -0.0029296875, -0.0230255126953125, -0.01146697998046875, 0.0051422119140625, -0.012939453125, -0.0083770751953125, -0.0094146728515625, -0.007221221923828125, 0.0038738250732421875, -0.005474090576171875, -0.00766754150390625, -0.041961669921875, 0.0242767333984375, -0.01898193359375, 0.0077972412109375, -0.0250701904296875, 0.0018224716186523438, -0.03680419921875, 0.01284027099609375, -0.0137481689453125, 0.00821685791015625, 0.033935546875, -0.017181396484375, -0.012664794921875, 0.0094757080078125, 0.0043182373046875, 0.052215576171875, -0.00862884521484375, -0.01128387451171875, 0.030792236328125, -0.0211334228515625, -0.028594970703125, -0.035430908203125, 0.027374267578125, -0.066162109375, -0.0411376953125, -0.037017822265625, 0.03448486328125, 0.04461669921875, -0.00914764404296875, -0.0209503173828125, 0.02783203125, -0.017242431640625, -0.01406097412109375, -0.047332763671875, -0.01837158203125, 0.00835418701171875, -0.040771484375, -0.024261474609375, -0.0379638671875, -0.045501708984375, 0.04351806640625, 0.0081939697265625, 0.01031494140625, 0.047698974609375, -0.01316070556640625, -0.040069580078125, -0.0187530517578125, -0.0291290283203125, -0.004619598388671875, -0.00919342041015625, -0.00986480712890625, 0.01776123046875, 0.0094146728515625, -0.0491943359375, -0.00640106201171875, 0.015960693359375, 0.0254364013671875, -0.028167724609375, -0.02960205078125, -0.018035888671875, 0.0012340545654296875, 0.0638427734375, 0.066650390625, 0.007335662841796875, -0.04632568359375, 0.0113525390625, 0.007289886474609375, -0.041717529296875, 0.0003783702850341797, 0.0379638671875, -0.078125, -0.0191497802734375, 0.01788330078125, -0.04193115234375, 0.0187225341796875, -0.01983642578125, -0.06573486328125, 0.018402099609375, -0.0232696533203125, 0.00970458984375, -0.047821044921875, -0.0223846435546875, 0.0209503173828125, -0.0224456787109375, -0.0018033981323242188, 0.01010894775390625, 0.00860595703125, 0.004547119140625, 0.0316162109375, 0.035675048828125, -0.01035308837890625, -0.004291534423828125, 0.0073394775390625, 0.033203125, 0.007175445556640625, 0.011810302734375, -0.05181884765625, -0.01220703125, 0.023895263671875, 0.0007672309875488281, 0.026611328125, 0.0159454345703125, -0.0180816650390625, -0.00818634033203125, 0.027435302734375, -0.0264892578125, 0.07379150390625, -0.0024852752685546875, 0.029388427734375, -0.0008563995361328125, -0.01398468017578125, 0.05316162109375, -0.0289154052734375, 0.00463104248046875, 0.0033817291259765625, 0.0134124755859375, -0.029693603515625, 0.0291290283203125, -0.034881591796875, -0.0191802978515625, 0.01476287841796875 ]
10a3e95ea0d8567796b4bbe12cb3927011d953a0
Wordpress Stackexchange Q: Get recent posts with thumbnail I want to ger several recent posts. So I use wp_get_recent_posts. But I get only first image. <?php $args = array( 'numberposts' => '3' ); $recent_posts = wp_get_recent_posts($args); foreach( $recent_posts as $recent ){ echo '<li><a href="' . get_permalink($recent["ID"]) . '">' . $recent["post_title"].'</a> </li> '; if ( has_post_thumbnail() ) { the_post_thumbnail('thumbnail'); } } ?> A: Actually, the condition is always returning false because you are not passing the post id to the function has_post_thumbnail() and the function always getting the default value which is null. has_post_thumbnail( $recent["ID"] ). Same with the function get_the_post_thumbnail(). get_the_post_thumbnail( $recent["ID"] ). $args = array( 'numberposts' => '3' ); $recent_posts = wp_get_recent_posts($args); foreach( $recent_posts as $recent ){ if ( has_post_thumbnail( $recent["ID"]) ) { echo get_the_post_thumbnail($recent["ID"],'thumbnail'); } } But if you use the functions has_post_thumbnail(); and get_the_post_thumbnail() inside the WordPress The_Loop then you don't need to pass the post id. $args = array( 'posts_per_page' => '3' ); $recent_posts = new WP_Query($args); while( $recent_posts->have_posts() ) { $recent_posts->the_post() ; if ( has_post_thumbnail() ) { echo get_the_post_thumbnail(); } } wp_reset_postdata();
Q: Get recent posts with thumbnail I want to ger several recent posts. So I use wp_get_recent_posts. But I get only first image. <?php $args = array( 'numberposts' => '3' ); $recent_posts = wp_get_recent_posts($args); foreach( $recent_posts as $recent ){ echo '<li><a href="' . get_permalink($recent["ID"]) . '">' . $recent["post_title"].'</a> </li> '; if ( has_post_thumbnail() ) { the_post_thumbnail('thumbnail'); } } ?> A: Actually, the condition is always returning false because you are not passing the post id to the function has_post_thumbnail() and the function always getting the default value which is null. has_post_thumbnail( $recent["ID"] ). Same with the function get_the_post_thumbnail(). get_the_post_thumbnail( $recent["ID"] ). $args = array( 'numberposts' => '3' ); $recent_posts = wp_get_recent_posts($args); foreach( $recent_posts as $recent ){ if ( has_post_thumbnail( $recent["ID"]) ) { echo get_the_post_thumbnail($recent["ID"],'thumbnail'); } } But if you use the functions has_post_thumbnail(); and get_the_post_thumbnail() inside the WordPress The_Loop then you don't need to pass the post id. $args = array( 'posts_per_page' => '3' ); $recent_posts = new WP_Query($args); while( $recent_posts->have_posts() ) { $recent_posts->the_post() ; if ( has_post_thumbnail() ) { echo get_the_post_thumbnail(); } } wp_reset_postdata(); A: In order to use the_post_thumbnail, you need to initialize a loop. So more like this: <?php $args = array( 'posts_per_page' => '3' ); $recent_posts = new WP_Query($args); while( $recent_posts->have_posts() ) : $recent_posts->the_post() ?> <li> <a href="<?php echo get_permalink() ?>"><?php the_title() ?></a> <?php if ( has_post_thumbnail() ) : ?> <?php the_post_thumbnail('thumbnail') ?> <?php endif ?> </li> <?php endwhile; ?> <?php wp_reset_postdata(); # reset post data so that other queries/loops work ?> (I put the thumbnail inside the <li> tags because anything besides <li> inside a <ol> or <ul> is invalid html.)
wordpress
{ "language": "en", "length": 266, "provenance": "stackexchange_00019.jsonl.gz:470136", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/245769" }
[ 0.0875244140625, -0.00954437255859375, 0.0272369384765625, -0.037628173828125, 0.032745361328125, -0.0284881591796875, 0.052337646484375, -0.032318115234375, 0.0165557861328125, 0.0242156982421875, -0.04046630859375, 0.022796630859375, -0.036865234375, -0.0134735107421875, -0.00405120849609375, -0.0156402587890625, 0.06390380859375, -0.04010009765625, 0.043670654296875, 0.00899505615234375, -0.0255279541015625, 0.056243896484375, 0.06976318359375, 0.07037353515625, 0.00830841064453125, -0.0208892822265625, 0.032623291015625, -0.004314422607421875, -0.0033397674560546875, -0.01500701904296875, 0.01181793212890625, 0.0153350830078125, 0.0005540847778320312, 0.0236968994140625, 0.003093719482421875, 0.00689697265625, 0.01432037353515625, -0.0004856586456298828, 0.02508544921875, 0.01293182373046875, -0.00766754150390625, 0.01140594482421875, -0.0189056396484375, 0.00513458251953125, -0.0462646484375, -0.0011243820190429688, -0.031219482421875, -0.0109405517578125, -0.01177978515625, 0.0190582275390625, 0.008392333984375, 0.00574493408203125, 0.01447296142578125, 0.007762908935546875, -0.01190185546875, -0.0157470703125, -0.007091522216796875, -0.01267242431640625, 0.05902099609375, 0.005950927734375, -0.032379150390625, -0.0369873046875, 0.02081298828125, -0.0394287109375, -0.01030731201171875, 0.0155029296875, -0.0027446746826171875, 0.01383209228515625, -0.030792236328125, -0.028228759765625, 0.006870269775390625, -0.03668212890625, 0.00634002685546875, -0.039520263671875, 0.0009655952453613281, -0.004795074462890625, -0.0201568603515625, -0.044342041015625, 0.01181793212890625, -0.009613037109375, -0.03759765625, -0.0279541015625, -0.058197021484375, 0.0210418701171875, -0.0264434814453125, 0.048492431640625, -0.0125274658203125, -0.005779266357421875, 0.0147552490234375, -0.0229644775390625, 0.0096282958984375, -0.032501220703125, -0.005023956298828125, 0.038482666015625, 0.0010051727294921875, -0.035797119140625, 0.06951904296875, 0.08380126953125, -0.0132598876953125, -0.02166748046875, 0.006923675537109375, -0.04010009765625, -0.0177001953125, -0.032958984375, 0.01436614990234375, 0.018218994140625, -0.0167388916015625, 0.013763427734375, 0.04766845703125, 0.0550537109375, 0.006999969482421875, 0.03558349609375, 0.01010894775390625, -0.0176239013671875, -0.00395965576171875, 0.0119781494140625, -0.039764404296875, 0.02294921875, 0.00504302978515625, 0.0180206298828125, -0.005527496337890625, 0.005035400390625, 0.028289794921875, 0.003505706787109375, 0.02313232421875, 0.0252227783203125, -0.03741455078125, -0.0251617431640625, 0.01467132568359375, 0.048065185546875, -0.0302276611328125, -0.0216827392578125, 0.03399658203125, 0.030914306640625, 0.01303863525390625, -0.019317626953125, 0.0134124755859375, -0.059478759765625, 0.01157379150390625, 0.018524169921875, -0.02703857421875, -0.03582763671875, 0.01898193359375, -0.031982421875, 0.017669677734375, 0.0233917236328125, -0.01020050048828125, 0.0019044876098632812, 0.0203857421875, -0.0013256072998046875, -0.00389862060546875, -0.053619384765625, 0.00328826904296875, 0.0011386871337890625, 0.030914306640625, -0.0129241943359375, 0.031280517578125, -0.017181396484375, 0.005748748779296875, -0.0177001953125, 0.062225341796875, -0.01303863525390625, -0.035003662109375, -0.021026611328125, -0.07183837890625, 0.0181121826171875, -0.0306396484375, -0.01055145263671875, 0.02777099609375, 0.0667724609375, -0.0011997222900390625, 0.0036144256591796875, 0.051239013671875, 0.0279083251953125, -0.01111602783203125, 0.002346038818359375, -0.00937652587890625, -0.00638580322265625, 0.022918701171875, 0.03515625, -0.0269012451171875, -0.035003662109375, 0.0247955322265625, -0.005615234375, -0.024139404296875, 0.0035686492919921875, 0.022369384765625, 0.038909912109375, 0.0079193115234375, 0.03399658203125, 0.0205078125, 0.004352569580078125, -0.05816650390625, 0.0433349609375, 0.00440216064453125, -0.000053822994232177734, -0.025146484375, -0.00545501708984375, -0.00601959228515625, -0.0213470458984375, 0.04559326171875, -0.004268646240234375, 0.0013713836669921875, 0.004497528076171875, -0.06390380859375, 0.01470947265625, -0.022552490234375, 0.033172607421875, 0.0008759498596191406, 0.00591278076171875, 0.028350830078125, 0.017059326171875, -0.04937744140625, 0.0367431640625, -0.0177459716796875, 0.0259552001953125, -0.060028076171875, -0.001827239990234375, -0.03375244140625, 0.029571533203125, -0.045623779296875, -0.02447509765625, -0.03399658203125, 0.003265380859375, 0.057769775390625, -0.0028934478759765625, -0.022491455078125, -0.027313232421875, -0.01378631591796875, 0.026519775390625, -0.07916259765625, 0.032867431640625, 0.00997161865234375, -0.01560211181640625, -0.03125, 0.013153076171875, 0.038818359375, -0.04241943359375, 0.0100250244140625, 0.04644775390625, 0.050262451171875, 0.05902099609375, 0.0249176025390625, 0.01322174072265625, 0.07977294921875, -0.054718017578125, 0.0104827880859375, -0.02923583984375, 0.006786346435546875, 0.01494598388671875, 0.0245361328125, -0.006900787353515625, 0.027923583984375, 0.0145111083984375, 0.00829315185546875, 0.037841796875, -0.019378662109375, 0.0309600830078125, -0.019500732421875, 0.020721435546875, -0.0177001953125, -0.005489349365234375, 0.02362060546875, -0.0243377685546875, 0.01013946533203125, 0.03631591796875, 0.00909423828125, 0.0137176513671875, -0.03289794921875, 0.02587890625, 0.007175445556640625, -0.035675048828125, 0.01336669921875, 0.0296478271484375, -0.01253509521484375, 0.00730133056640625, -0.021270751953125, -0.00823211669921875, 0.026763916015625, 0.003997802734375, -0.0146484375, 0.0214080810546875, 0.0318603515625, 0.00926971435546875, -0.0270233154296875, -0.018890380859375, 0.034332275390625, 0.01265716552734375, -0.01544189453125, -0.0002694129943847656, 0.0236663818359375, 0.0306854248046875, -0.05682373046875, 0.076904296875, -0.0222015380859375, 0.005794525146484375, -0.002471923828125, -0.0219879150390625, 0.034271240234375, -0.043548583984375, 0.02166748046875, 0.039581298828125, -0.03558349609375, 0.03515625, -0.00977325439453125, -0.0133514404296875, -0.0108795166015625, -0.003490447998046875, -0.042266845703125, -0.0193023681640625, -0.05902099609375, -0.0034942626953125, 0.0136871337890625, 0.11370849609375, -0.0567626953125, -0.0743408203125, 0.014617919921875, 0.01861572265625, -0.091796875, -0.093017578125, -0.0008535385131835938, -0.048187255859375, -0.032623291015625, -0.00719451904296875, -0.038726806640625, 0.005123138427734375, 0.004276275634765625, -0.005519866943359375, 0.0047607421875, 0.005611419677734375, -0.06890869140625, -0.021087646484375, -0.06756591796875, 0.0340576171875, -0.021240234375, 0.026336669921875, 0.001384735107421875, 0.06536865234375, -0.0099334716796875, -0.03936767578125, -0.022308349609375, 0.0171356201171875, -0.0139007568359375, -0.0335693359375, 0.00009399652481079102, 0.0155792236328125, -0.06695556640625, 0.01280975341796875, 0.01108551025390625, 0.0022296905517578125, -0.0265350341796875, 0.0028247833251953125, -0.035858154296875, 0.0491943359375, -0.0042572021484375, 0.041534423828125, 0.056427001953125, 0.040496826171875, 0.0203094482421875, -0.0005612373352050781, -0.0160064697265625, -0.0341796875, -0.060791015625, 0.048309326171875, 0.05523681640625, 0.006191253662109375, 0.00640106201171875, -0.005054473876953125, -0.00455474853515625, 0.0039043426513671875, -0.004138946533203125, -0.05450439453125, 0.06170654296875, 0.0207061767578125, 0.043426513671875, 0.0022945404052734375, -0.02166748046875, -0.029815673828125, 0.032379150390625, -0.0259857177734375, 0.0198516845703125, -0.0140228271484375, 0.0227813720703125, -0.039947509765625, 0.00036835670471191406, 0.0296478271484375, -0.00986480712890625, 0.0029544830322265625, -0.01953125, -0.03021240234375, -0.0020656585693359375, 0.05072021484375, -0.038665771484375, -0.0257568359375, -0.0135498046875, -0.005237579345703125, -0.0019521713256835938, -0.0166778564453125, -0.032318115234375, -0.018524169921875, -0.06475830078125, -0.00695037841796875, -0.0145263671875, -0.0224761962890625, -0.005558013916015625, 0.032867431640625, -0.033172607421875, -0.0151824951171875, 0.040740966796875, 0.007450103759765625, -0.01441192626953125, 0.057159423828125, -0.0226287841796875, 0.030792236328125, -0.050506591796875, 0.013031005859375, -0.0936279296875, -0.020111083984375, 0.0045166015625, 0.0645751953125, -0.00957489013671875, -0.005672454833984375, -0.040069580078125, 0.036651611328125, 0.00848388671875, 0.0178985595703125, 0.0021572113037109375, -0.0013360977172851562, 0.008270263671875, 0.0119781494140625, 0.01148223876953125, -0.01186370849609375, 0.0211639404296875, -0.040191650390625, -0.03826904296875, -0.056060791015625, -0.09002685546875, -0.011322021484375, -0.06097412109375, -0.0246429443359375, -0.05133056640625, 0.01409149169921875, 0.03924560546875, 0.0124969482421875, -0.0123138427734375, 0.01045989990234375, 0.00998687744140625, -0.0325927734375, 0.0645751953125, 0.01788330078125, -0.039276123046875, -0.01348114013671875, 0.09716796875, 0.0177764892578125, -0.0450439453125, -0.057861328125, 0.0029144287109375, 0.037353515625, -0.058319091796875, 0.03582763671875, 0.01280975341796875, -0.0419921875, 0.06634521484375, -0.005374908447265625, -0.005924224853515625, 0.0229644775390625, 0.03253173828125, 0.016571044921875, 0.01303863525390625, -0.025238037109375, 0.005161285400390625, 0.003814697265625, 0.041290283203125, -0.016693115234375, -0.0303192138671875, -0.035064697265625, 0.056976318359375, -0.0002703666687011719, 0.0009655952453613281, -0.052764892578125, -0.03741455078125, 0.01012420654296875, 0.0127410888671875, 0.0274505615234375, 0.047210693359375, -0.02392578125, 0.05169677734375, 0.0361328125, -0.0091400146484375, -0.00737762451171875, 0.0024700164794921875, 0.046173095703125, 0.04669189453125, 0.0032596588134765625, 0.0223236083984375, -0.02398681640625, -0.0012493133544921875, 0.034515380859375, 0.00814056396484375, -0.042449951171875, 0.01071929931640625, 0.0006875991821289062, 0.0543212890625, -0.01535797119140625, -0.01153564453125, 0.0643310546875, 0.041473388671875, -0.0227203369140625, -0.021575927734375, -0.0531005859375, 0.017425537109375, -0.06695556640625, -0.00885009765625, -0.00072479248046875, -0.00728607177734375, 0.02099609375, 0.053375244140625, 0.036529541015625, 0.0404052734375, -0.049591064453125, 0.01325225830078125, -0.0227508544921875, 0.0228729248046875, 0.0213775634765625, 0.0139923095703125, 0.007007598876953125, -0.01123046875, 0.032562255859375, -0.047027587890625, -0.019012451171875, 0.0322265625, 0.0416259765625, -0.0194549560546875, -0.00885772705078125, 0.019195556640625, 0.029541015625, -0.0257568359375, 0.0447998046875, 0.047607421875, -0.03369140625, -0.0196533203125, -0.0012083053588867188, 0.007785797119140625, 0.004924774169921875, -0.0214080810546875, 0.04852294921875, -0.00974273681640625, 0.0318603515625, -0.0201416015625, -0.0004227161407470703, -0.007106781005859375, 0.0005469322204589844, 0.00864410400390625, -0.038848876953125, -0.006610870361328125, 0.0253753662109375, 0.018829345703125, -0.03436279296875, -0.0263519287109375, 0.04376220703125, 0.0010623931884765625, 0.08355712890625, -0.037109375, -0.057281494140625, -0.00978851318359375, -0.005157470703125, 0.043182373046875, 0.03033447265625, -0.03375244140625, 0.0041656494140625, -0.032073974609375, -0.00235748291015625, 0.0308837890625, -0.033935546875, -0.0097198486328125, -0.038909912109375, -0.0010290145874023438, 0.03216552734375, -0.0089111328125, 0.0271148681640625, 0.00015103816986083984, 0.00286865234375, -0.0247650146484375, 0.07537841796875, 0.0073394775390625, 0.01384735107421875, -0.005550384521484375, 0.0355224609375, 0.006866455078125, -0.029388427734375, -0.066162109375, -0.0007815361022949219, -0.0011548995971679688, -0.062103271484375, -0.00011652708053588867, 0.017974853515625, -0.057037353515625, -0.0345458984375, 0.01274871826171875, 0.0009722709655761719, -0.01483154296875, -0.0137481689453125, 0.0076751708984375, -0.0218963623046875, -0.0036468505859375, -0.00931549072265625, -0.0543212890625, 0.0318603515625, -0.04290771484375, -0.053985595703125, -0.0004944801330566406, 0.0014009475708007812, -0.0298309326171875, -0.003154754638671875, -0.07012939453125, 0.052032470703125, 0.0036525726318359375, 0.03497314453125, 0.0543212890625, 0.0159454345703125, 0.04034423828125, 0.03033447265625, 0.0276641845703125, -0.0036792755126953125, 0.00662994384765625, 0.033447265625, 0.0263519287109375, 0.07916259765625, 0.0070648193359375, -0.0003936290740966797, 0.025177001953125, -0.0307769775390625, 0.00777435302734375, -0.034393310546875, 0.046661376953125, 0.03485107421875, 0.01568603515625, 0.020599365234375, -0.048797607421875, 0.0225830078125, 0.0068359375, -0.01505279541015625, -0.0221099853515625, 0.037506103515625, -0.054962158203125, -0.032928466796875, -0.00027298927307128906, -0.0182342529296875, -0.0016832351684570312, -0.0210113525390625, 0.0233001708984375, -0.0165557861328125, -0.08868408203125, -0.004970550537109375, 0.05621337890625, -0.053497314453125, -0.0173797607421875, 0.028289794921875, -0.037506103515625, 0.0018339157104492188, -0.058624267578125, -0.005779266357421875, 0.0020999908447265625, -0.0161590576171875, 0.05181884765625, 0.00031828880310058594, -0.0147247314453125, 0.0635986328125, -0.0242919921875, 0.035491943359375, 0.0299530029296875, -0.0584716796875, -0.049560546875, -0.009674072265625, 0.03363037109375, 0.043243408203125, -0.049346923828125, 0.043426513671875, -0.020660400390625, -0.005260467529296875, -0.0170745849609375, 0.0234375, 0.07696533203125, -0.034698486328125, -0.0282135009765625, 0.01555633544921875, 0.06903076171875, 0.00012123584747314453, 0.0026645660400390625, -0.007965087890625, -0.02630615234375, 0.0019178390502929688, -0.0173187255859375, -0.01245880126953125, -0.0007748603820800781, -0.0303802490234375, -0.067138671875, 0.07049560546875, -0.0084686279296875, 0.054779052734375, 0.0165863037109375, 0.018035888671875, -0.0020732879638671875, -0.012969970703125, -0.0153350830078125, 0.01444244384765625, -0.04498291015625, 0.024505615234375, -0.0528564453125, -0.006832122802734375, -0.01274871826171875, 0.03558349609375, 0.046630859375, 0.00800323486328125, -0.0276641845703125, -0.011627197265625, 0.047698974609375, 0.05816650390625, 0.0134124755859375, 0.01641845703125, -0.0031375885009765625, 0.04595947265625, 0.0657958984375, -0.039215087890625, 0.042327880859375, 0.00901031494140625, -0.0140228271484375, 0.012481689453125, 0.0197296142578125, 0.01125335693359375, -0.0380859375, 0.0109100341796875, -0.059173583984375, -0.0083770751953125, 0.052093505859375, -0.04022216796875, 0.021697998046875, 0.043243408203125, 0.05633544921875, -0.01131439208984375, -0.0083160400390625, -0.013824462890625, 0.056976318359375, 0.0207977294921875, 0.007450103759765625, 0.0313720703125, 0.02587890625, 0.00811767578125, 0.031524658203125, 0.0208892822265625, 0.0411376953125, -0.018829345703125, 0.06951904296875, 0.06829833984375, 0.021759033203125, -0.023712158203125, -0.0031566619873046875, 0.0517578125, 0.0887451171875, -0.058746337890625, -0.0445556640625, 0.01062774658203125, 0.004695892333984375, 0.00128936767578125, -0.00432586669921875, -0.0014801025390625, 0.00982666015625, 0.04132080078125, -0.0478515625, 0.00923919677734375, 0.044769287109375, 0.005908966064453125, 0.0003769397735595703, -0.04180908203125, -0.01641845703125, 0.004932403564453125, -0.01556396484375, 0.00385284423828125, 0.03173828125, 0.055450439453125, -0.0011005401611328125, 0.032073974609375, -0.065673828125, -0.00765228271484375, 0.0146942138671875, 0.035308837890625, -0.001995086669921875, -0.02349853515625, 0.0005207061767578125, -0.044036865234375, -0.01041412353515625, 0.0158538818359375, 0.021942138671875, -0.02081298828125, 0.0310516357421875, 0.0227203369140625, -0.042205810546875, -0.00556182861328125, 0.006275177001953125, -0.0171661376953125, -0.0157623291015625, 0.0056915283203125, -0.01025390625, 0.0192108154296875, -0.0207366943359375, -0.002986907958984375, 0.0037212371826171875, 0.030792236328125, -0.04388427734375, 0.05767822265625, -0.01043701171875, 0.0002689361572265625, 0.0278167724609375, -0.0037994384765625, 0.039337158203125, -0.01678466796875, -0.047882080078125, -0.002178192138671875, -0.007160186767578125, -0.03277587890625, 0.00673675537109375, 0.005645751953125, -0.0308990478515625, 0.034942626953125, 0.00024187564849853516, -0.0227508544921875, 0.0183868408203125, 0.00995635986328125, -0.001708984375, -0.004131317138671875, 0.021270751953125, -0.00693511962890625, -0.0249176025390625, -0.01378631591796875, 0.0177154541015625, 0.00028252601623535156, 0.049835205078125, -0.0165863037109375, 0.04266357421875, 0.0125274658203125, -0.0166015625, 0.003971099853515625, -0.0237884521484375, -0.0178375244140625, 0.03271484375, -0.010467529296875, -0.0135040283203125, -0.003520965576171875, -0.00949859619140625, 0.0188140869140625, 0.03387451171875, -0.016082763671875, -0.018768310546875, -0.00019085407257080078, 0.0209197998046875, 0.00787353515625, 0.0219879150390625, -0.03326416015625, -0.01025390625, -0.06292724609375, -0.053070068359375, 0.050201416015625, -0.0227813720703125, -0.01462554931640625, -0.0015125274658203125, 0.05517578125, -0.04339599609375, 0.03802490234375, 0.00577545166015625, 0.0616455078125, 0.0430908203125, 0.01535797119140625, -0.00446319580078125, -0.041015625, -0.0172576904296875, -0.014312744140625, 0.0158233642578125, -0.033477783203125, -0.0165863037109375, 0.025054931640625, 0.0180206298828125, -0.0157470703125, 0.0108642578125, -0.031707763671875, -0.021881103515625, -0.0029850006103515625, -0.0152130126953125, -0.0207672119140625, -0.04510498046875, -0.02130126953125, -0.053802490234375, 0.004764556884765625, 0.013641357421875, -0.0244598388671875, -0.00873565673828125, -0.01477813720703125, 0.0011091232299804688, 0.00543975830078125, 0.0035648345947265625, -0.028900146484375, 0.054718017578125, -0.0180206298828125, -0.0238189697265625, -0.0129547119140625, -0.02301025390625, -0.0037994384765625, -0.00006967782974243164, -0.0167694091796875, -0.0197296142578125, -0.0307464599609375, 0.013092041015625, -0.0189666748046875, 0.01413726806640625, 0.013824462890625, -0.03802490234375, -0.005374908447265625, 0.0316162109375, 0.0171356201171875, 0.06915283203125, 0.0290985107421875, -0.001529693603515625, 0.026580810546875, 0.00891876220703125, -0.045196533203125, -0.049713134765625, 0.0239410400390625, -0.03631591796875, -0.0169525146484375, -0.00490570068359375, -0.00696563720703125, 0.0160369873046875, -0.0335693359375, -0.0638427734375, 0.047637939453125, -0.02203369140625, -0.0281829833984375, -0.009307861328125, 0.0186004638671875, 0.0032196044921875, -0.02337646484375, 0.010711669921875, -0.034149169921875, -0.004611968994140625, 0.004299163818359375, 0.0293426513671875, 0.0162506103515625, 0.034088134765625, 0.00914764404296875, -0.01079559326171875, 0.017791748046875, -0.01020050048828125, 0.0173797607421875, 0.0002474784851074219, -0.0093994140625, 0.036163330078125, 0.06402587890625, -0.0196533203125, -0.02117919921875, -0.003200531005859375, -0.00800323486328125, -0.0328369140625, -0.0384521484375, -0.034423828125, -0.002071380615234375, 0.07666015625, 0.0859375, 0.0178070068359375, -0.048736572265625, -0.009368896484375, 0.01187896728515625, -0.017547607421875, -0.0182342529296875, 0.01702880859375, -0.051513671875, -0.016876220703125, -0.007770538330078125, 0.00641632080078125, 0.008087158203125, -0.0144500732421875, -0.017486572265625, -0.0004451274871826172, 0.012054443359375, -0.0011034011840820312, -0.0114898681640625, 0.02642822265625, 0.055633544921875, -0.040771484375, 0.00567626953125, -0.00911712646484375, -0.008819580078125, 0.0258026123046875, -0.0298919677734375, 0.00464630126953125, 0.038330078125, 0.0012159347534179688, -0.004146575927734375, 0.039459228515625, 0.0058441162109375, 0.0266571044921875, 0.0139923095703125, -0.00960540771484375, -0.0164642333984375, 0.018463134765625, -0.0268707275390625, 0.00884246826171875, -0.02557373046875, 0.0074615478515625, -0.0059967041015625, 0.010040283203125, 0.038787841796875, 0.00006538629531860352, 0.0487060546875, -0.0256805419921875, -0.02325439453125, 0.0016927719116210938, -0.0232391357421875, -0.0222015380859375, 0.001819610595703125, -0.04412841796875, -0.035888671875, 0.01102447509765625, 0.01218414306640625, -0.018646240234375, 0.00970458984375 ]
f6b1fa1a437881ef1721bfb64a3750b36092209e
Wordpress Stackexchange Q: Wordpress Customize — Move "menus" options / field to another section I want to move this section ( menus ) into a new panel or section, in the wordpress customizer options. Note: * *Menus is one of the default options added by wp. *Header is one new panel created by me. A: The customizer is divided into panels, then sections, then controls. You cannot move a panel inside another panel. However, you can move sections from one panel to another. In this case you can move the sections inside "Menus" to the "Header panel" like this: $wp_customize->get_section ('AAA')->panel = 'BBB'; Where AAA is the slug of the section you want to move and BBB is the slug of the panel where you want it to show up. You can find the slugs in the ID's of the customizer html (use the browser's inspector) Once a panel is empty, you can remove it with: $wp_customize->remove_pange ('CCC') The slug for the default menu panel is nav_menu.
Q: Wordpress Customize — Move "menus" options / field to another section I want to move this section ( menus ) into a new panel or section, in the wordpress customizer options. Note: * *Menus is one of the default options added by wp. *Header is one new panel created by me. A: The customizer is divided into panels, then sections, then controls. You cannot move a panel inside another panel. However, you can move sections from one panel to another. In this case you can move the sections inside "Menus" to the "Header panel" like this: $wp_customize->get_section ('AAA')->panel = 'BBB'; Where AAA is the slug of the section you want to move and BBB is the slug of the panel where you want it to show up. You can find the slugs in the ID's of the customizer html (use the browser's inspector) Once a panel is empty, you can remove it with: $wp_customize->remove_pange ('CCC') The slug for the default menu panel is nav_menu.
wordpress
{ "language": "en", "length": 165, "provenance": "stackexchange_00019.jsonl.gz:470159", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/245857" }
[ 0.037750244140625, 0.011138916015625, 0.013580322265625, 0.0114593505859375, 0.028106689453125, -0.0271148681640625, 0.056396484375, -0.0589599609375, -0.0311431884765625, 0.00962066650390625, 0.004650115966796875, 0.0096588134765625, -0.043792724609375, -0.0279998779296875, -0.0015478134155273438, -0.04840087890625, 0.0143280029296875, -0.0196075439453125, -0.0024261474609375, -0.0199127197265625, -0.0002123117446899414, -0.029632568359375, 0.0546875, 0.040069580078125, 0.0302734375, -0.01030731201171875, -0.03228759765625, -0.01421356201171875, -0.0037364959716796875, -0.022979736328125, 0.0190582275390625, 0.030059814453125, -0.00485992431640625, 0.017669677734375, 0.0222015380859375, 0.00490570068359375, 0.02362060546875, 0.017486572265625, 0.032928466796875, 0.0124053955078125, 0.02569580078125, -0.0018901824951171875, 0.018646240234375, 0.05963134765625, -0.01117706298828125, -0.04541015625, 0.0380859375, -0.034088134765625, 0.0312042236328125, -0.0146636962890625, 0.0161285400390625, 0.0093536376953125, 0.022552490234375, -0.04296875, -0.027313232421875, -0.0238800048828125, -0.02545166015625, -0.0139312744140625, 0.0209808349609375, 0.047149658203125, 0.0208282470703125, 0.0006380081176757812, -0.0012216567993164062, -0.02947998046875, -0.00615692138671875, 0.03814697265625, 0.0069122314453125, 0.004749298095703125, -0.05511474609375, 0.001995086669921875, 0.0287017822265625, -0.053619384765625, 0.005161285400390625, -0.0193328857421875, -0.00571441650390625, 0.0028057098388671875, -0.0298309326171875, -0.022003173828125, 0.047088623046875, -0.0017824172973632812, 0.01522064208984375, -0.02728271484375, 0.0521240234375, -0.0232391357421875, 0.0158538818359375, -0.00778961181640625, -0.0004968643188476562, -0.005313873291015625, -0.0024394989013671875, 0.003833770751953125, -0.0106964111328125, -0.0170745849609375, -0.0244903564453125, 0.07977294921875, 0.001773834228515625, 0.0265350341796875, 0.0010461807250976562, -0.0023937225341796875, 0.0190277099609375, 0.06109619140625, -0.007537841796875, -0.040283203125, 0.08135986328125, -0.048187255859375, 0.0030364990234375, 0.0228118896484375, -0.00855255126953125, -0.00440216064453125, 0.0247344970703125, 0.0261688232421875, -0.0131378173828125, -0.003536224365234375, -0.025115966796875, -0.0133819580078125, -0.040069580078125, -0.0004324913024902344, -0.050201416015625, -0.021759033203125, -0.0011386871337890625, -0.0294342041015625, -0.028961181640625, -0.0019197463989257812, -0.0306854248046875, 0.00867462158203125, -0.015472412109375, -0.03546142578125, -0.0003058910369873047, 0.0227813720703125, -0.045013427734375, 0.009857177734375, -0.03369140625, 0.007198333740234375, 0.0924072265625, 0.09576416015625, 0.0462646484375, -0.01471710205078125, 0.033355712890625, -0.045318603515625, 0.0026683807373046875, 0.0121917724609375, 0.018951416015625, -0.01039886474609375, -0.0236053466796875, -0.0108795166015625, -0.00579833984375, -0.0216217041015625, 0.02197265625, 0.03656005859375, -0.017791748046875, -0.056884765625, 0.041259765625, -0.002002716064453125, 0.042236328125, 0.0219879150390625, -0.04437255859375, -0.00334930419921875, 0.0259246826171875, -0.019866943359375, -0.02569580078125, -0.050750732421875, -0.043792724609375, 0.0016765594482421875, 0.04156494140625, -0.06500244140625, -0.055450439453125, 0.006320953369140625, -0.054779052734375, -0.0105133056640625, 0.01171112060546875, 0.0149993896484375, -0.034576416015625, -0.00458526611328125, 0.005924224853515625, 0.0239105224609375, 0.007511138916015625, 0.03179931640625, -0.0130615234375, 0.0036449432373046875, -0.019287109375, 0.0782470703125, 0.0277099609375, -0.03460693359375, -0.003673553466796875, 0.00841522216796875, -0.05975341796875, 0.07122802734375, 0.00373077392578125, 0.07061767578125, 0.0240325927734375, 0.01441192626953125, 0.029388427734375, 0.0189666748046875, -0.04888916015625, -0.00479888916015625, -0.031158447265625, -0.00701904296875, 0.031768798828125, 0.033203125, -0.01788330078125, 0.0127716064453125, -0.0703125, 0.021820068359375, 0.0088043212890625, 0.0197906494140625, -0.005702972412109375, 0.01027679443359375, -0.0167083740234375, 0.050384521484375, 0.04864501953125, 0.0120697021484375, -0.01261138916015625, 0.01255035400390625, -0.0002968311309814453, -0.058074951171875, -0.060577392578125, -0.0004978179931640625, -0.03936767578125, 0.0455322265625, -0.0160369873046875, 0.0207061767578125, -0.016845703125, -0.0275726318359375, 0.0011148452758789062, -0.0025653839111328125, 0.0526123046875, -0.036834716796875, -0.01102447509765625, -0.04931640625, 0.040069580078125, -0.00665283203125, -0.03656005859375, 0.05426025390625, 0.035430908203125, 0.0186614990234375, -0.028350830078125, 0.007808685302734375, 0.02581787109375, -0.032135009765625, -0.00963592529296875, 0.031707763671875, 0.031463623046875, 0.03350830078125, 0.016845703125, 0.004970550537109375, 0.0325927734375, -0.01531982421875, 0.02960205078125, -0.035552978515625, -0.042755126953125, -0.018829345703125, 0.07513427734375, 0.0168304443359375, 0.018310546875, 0.02703857421875, 0.03790283203125, -0.0031585693359375, -0.054107666015625, -0.049896240234375, 0.029541015625, -0.0296783447265625, 0.028900146484375, -0.040985107421875, -0.027069091796875, -0.01120758056640625, 0.037017822265625, -0.0113983154296875, 0.01415252685546875, 0.007015228271484375, -0.033477783203125, -0.0002601146697998047, 0.0294342041015625, 0.0211029052734375, -0.017242431640625, 0.01303863525390625, 0.0281829833984375, 0.01885986328125, -0.029266357421875, -0.003826141357421875, -0.01068878173828125, 0.0146484375, -0.0144805908203125, 0.02935791015625, 0.0157012939453125, -0.0144195556640625, -0.013336181640625, -0.0367431640625, 0.022369384765625, 0.0012273788452148438, -0.046051025390625, -0.03765869140625, 0.0088653564453125, 0.01276397705078125, -0.042236328125, 0.0186767578125, 0.0031585693359375, -0.0087432861328125, 0.06744384765625, 0.0146484375, -0.0019140243530273438, 0.02593994140625, 0.044586181640625, 0.04852294921875, -0.0010061264038085938, -0.0029850006103515625, -0.0011987686157226562, 0.0275726318359375, 0.022003173828125, 0.0062103271484375, 0.006805419921875, -0.0099639892578125, -0.0185089111328125, 0.0257568359375, 0.01465606689453125, -0.032989501953125, 0.00441741943359375, -0.0169525146484375, -0.024871826171875, -0.0179290771484375, -0.05438232421875, -0.04254150390625, 0.0101318359375, -0.05401611328125, -0.0290374755859375, 0.014007568359375, -0.037322998046875, 0.00586700439453125, 0.029876708984375, 0.0006670951843261719, 0.02093505859375, -0.0237274169921875, -0.004547119140625, -0.0023975372314453125, -0.033477783203125, -0.01385498046875, 0.0031452178955078125, -0.014801025390625, 0.0017261505126953125, 0.04095458984375, 0.0084381103515625, -0.024932861328125, 0.016204833984375, 0.0199737548828125, -0.0131683349609375, 0.00972747802734375, 0.061614990234375, -0.03729248046875, -0.0025959014892578125, 0.01062774658203125, 0.058074951171875, 0.052490234375, -0.052886962890625, 0.0034809112548828125, -0.04278564453125, 0.036773681640625, -0.061004638671875, 0.03851318359375, 0.0914306640625, -0.0162353515625, -0.05487060546875, -0.04083251953125, -0.054046630859375, 0.0256805419921875, -0.04571533203125, 0.005229949951171875, 0.0038280487060546875, -0.0136871337890625, 0.01201629638671875, 0.00826263427734375, 0.006114959716796875, 0.0289764404296875, 0.0009641647338867188, 0.0091094970703125, 0.019195556640625, -0.026611328125, -0.0288238525390625, -0.0237884521484375, 0.03472900390625, -0.0252838134765625, 0.01092529296875, 0.022705078125, -0.01751708984375, 0.00341033935546875, -0.0185394287109375, -0.0066986083984375, -0.06878662109375, 0.043914794921875, -0.034942626953125, 0.0306549072265625, -0.0222930908203125, -0.0121917724609375, 0.0247955322265625, 0.11181640625, -0.06903076171875, -0.026641845703125, 0.0200958251953125, 0.007305145263671875, 0.045318603515625, -0.0007691383361816406, -0.04058837890625, -0.0484619140625, -0.089111328125, 0.01311492919921875, 0.00777435302734375, -0.0355224609375, -0.032928466796875, 0.06610107421875, -0.0670166015625, -0.0305023193359375, 0.030914306640625, 0.0036296844482421875, 0.0263824462890625, 0.016357421875, -0.0076141357421875, -0.00907135009765625, -0.0157928466796875, -0.00734710693359375, -0.0419921875, -0.01177215576171875, -0.01143646240234375, 0.0188751220703125, 0.017120361328125, -0.01096343994140625, 0.007080078125, 0.03680419921875, -0.004550933837890625, 0.04443359375, 0.0133819580078125, 0.0283966064453125, 0.02325439453125, -0.0107574462890625, 0.0189666748046875, -0.036895751953125, 0.016632080078125, -0.007114410400390625, -0.05523681640625, 0.0034656524658203125, -0.0242767333984375, 0.0364990234375, 0.002197265625, -0.034759521484375, -0.043121337890625, -0.064453125, -0.054840087890625, -0.050506591796875, -0.0078582763671875, -0.0188140869140625, -0.0275115966796875, -0.03546142578125, 0.028839111328125, -0.0224609375, 0.00957489013671875, -0.0007424354553222656, 0.060150146484375, 0.0271453857421875, -0.0103607177734375, 0.0304107666015625, 0.00614166259765625, 0.01102447509765625, 0.0142974853515625, 0.0309906005859375, -0.036346435546875, -0.0079193115234375, 0.06988525390625, -0.025909423828125, 0.006866455078125, -0.01154327392578125, 0.00897216796875, -0.01006317138671875, -0.0153656005859375, 0.005268096923828125, -0.0278472900390625, 0.0039825439453125, 0.0236053466796875, -0.00762939453125, -0.0006494522094726562, -0.022125244140625, 0.024505615234375, 0.021087646484375, -0.035491943359375, -0.050262451171875, 0.0142364501953125, -0.016693115234375, 0.032928466796875, 0.03643798828125, 0.0318603515625, 0.0061798095703125, 0.002017974853515625, 0.037139892578125, 0.01139068603515625, -0.01418304443359375, -0.03271484375, -0.021453857421875, 0.00421142578125, 0.01983642578125, -0.0061187744140625, 0.0298614501953125, 0.01611328125, 0.0175323486328125, 0.002750396728515625, -0.0277252197265625, -0.08575439453125, 0.014892578125, 0.00872802734375, -0.016632080078125, -0.0224761962890625, 0.0054168701171875, -0.00664520263671875, -0.0171051025390625, 0.01995849609375, -0.00554656982421875, -0.028106689453125, -0.0104827880859375, 0.0312347412109375, 0.01433563232421875, -0.009674072265625, -0.0026073455810546875, 0.008270263671875, 0.05572509765625, -0.03900146484375, -0.022979736328125, 0.0021457672119140625, -0.02166748046875, 0.03436279296875, -0.005523681640625, 0.008148193359375, 0.01149749755859375, 0.00843048095703125, 0.027984619140625, -0.01087188720703125, -0.00226593017578125, 0.01351165771484375, 0.0294189453125, 0.02099609375, 0.0062408447265625, -0.01403045654296875, -0.01959228515625, -0.027069091796875, 0.037750244140625, -0.0078277587890625, -0.07568359375, -0.0296478271484375, 0.024566650390625, 0.029876708984375, -0.01134490966796875, -0.01088714599609375, 0.01346588134765625, -0.0308990478515625, -0.00702667236328125, 0.00009959936141967773, -0.0216064453125, -0.018463134765625, -0.0187835693359375, -0.02593994140625, 0.006633758544921875, 0.017425537109375, -0.13330078125, -0.06707763671875, 0.0022945404052734375, -0.006343841552734375, 0.04034423828125, -0.0199432373046875, 0.0236053466796875, -0.044677734375, 0.015777587890625, -0.042633056640625, -0.002307891845703125, 0.051177978515625, 0.024078369140625, -0.0330810546875, 0.007694244384765625, -0.0210418701171875, -0.004436492919921875, -0.04449462890625, -0.07342529296875, -0.0290679931640625, -0.023895263671875, 0.017364501953125, 0.0133209228515625, 0.041717529296875, 0.0118560791015625, -0.0019025802612304688, -0.0017766952514648438, 0.00505828857421875, -0.004589080810546875, -0.0516357421875, 0.03607177734375, 0.0031032562255859375, 0.019439697265625, -0.0313720703125, -0.01088714599609375, 0.0089874267578125, 0.012298583984375, 0.01313018798828125, 0.00305938720703125, -0.0183258056640625, -0.0653076171875, 0.0002034902572631836, 0.024566650390625, 0.08294677734375, -0.008148193359375, 0.038360595703125, -0.0150604248046875, 0.00604248046875, -0.0293426513671875, 0.000530242919921875, -0.056854248046875, 0.005565643310546875, 0.019378662109375, -0.00983428955078125, 0.00847625732421875, -0.004119873046875, 0.025360107421875, -0.0199737548828125, -0.015350341796875, -0.00519561767578125, -0.00644683837890625, -0.08251953125, 0.08221435546875, 0.08856201171875, 0.0186614990234375, 0.035125732421875, -0.0014314651489257812, 0.0119171142578125, -0.014556884765625, -0.039764404296875, 0.03857421875, 0.08380126953125, 0.025909423828125, -0.0274505615234375, 0.01263427734375, -0.00829315185546875, -0.0089111328125, 0.037139892578125, 0.04052734375, 0.06451416015625, -0.08721923828125, 0.0257568359375, -0.0111846923828125, 0.007678985595703125, 0.09344482421875, -0.0054931640625, -0.01465606689453125, -0.01209259033203125, 0.031219482421875, -0.01580810546875, -0.0279998779296875, 0.015350341796875, 0.019866943359375, -0.0029926300048828125, -0.01312255859375, 0.0101165771484375, -0.0062713623046875, -0.032623291015625, 0.0009107589721679688, 0.0007309913635253906, -0.0169830322265625, -0.033355712890625, -0.0175628662109375, 0.042388916015625, -0.0345458984375, -0.04852294921875, 0.04705810546875, -0.023712158203125, 0.033111572265625, 0.032989501953125, -0.0218658447265625, 0.026031494140625, 0.0281829833984375, -0.0294036865234375, 0.0303497314453125, -0.038848876953125, 0.050323486328125, 0.005657196044921875, -0.0091400146484375, 0.0382080078125, 0.01366424560546875, -0.05078125, 0.015960693359375, -0.029541015625, -0.01226043701171875, -0.00730133056640625, -0.0006699562072753906, 0.083740234375, -0.02386474609375, -0.034423828125, 0.020416259765625, 0.02606201171875, -0.0111236572265625, 0.0159912109375, 0.040374755859375, -0.050537109375, -0.023040771484375, 0.0197601318359375, -0.02520751953125, 0.0146331787109375, 0.0255279541015625, -0.04486083984375, 0.10186767578125, 0.038665771484375, -0.0132293701171875, 0.01442718505859375, 0.058502197265625, -0.05218505859375, 0.0302276611328125, -0.016571044921875, 0.042572021484375, 0.0028476715087890625, 0.033782958984375, -0.0192108154296875, 0.00397491455078125, 0.00888824462890625, 0.0223541259765625, 0.0109710693359375, 0.007598876953125, -0.006988525390625, 0.022979736328125, 0.06732177734375, 0.052581787109375, 0.01100921630859375, 0.032135009765625, -0.029693603515625, -0.036865234375, -0.0004680156707763672, -0.0128631591796875, 0.00882720947265625, 0.003925323486328125, -0.03265380859375, -0.01381683349609375, 0.006103515625, 0.020294189453125, -0.027557373046875, 0.0241851806640625, -0.02044677734375, -0.02203369140625, 0.00826263427734375, -0.0095062255859375, -0.048736572265625, 0.0220947265625, -0.01332855224609375, -0.0306396484375, 0.01177978515625, -0.036163330078125, 0.029998779296875, 0.0229949951171875, 0.052215576171875, -0.005886077880859375, 0.0152435302734375, -0.015045166015625, -0.02728271484375, 0.01233673095703125, 0.0400390625, -0.07763671875, 0.0633544921875, 0.0382080078125, 0.048248291015625, 0.00835418701171875, 0.0011138916015625, 0.0127716064453125, 0.068115234375, -0.0322265625, -0.05194091796875, 0.01169586181640625, 0.016571044921875, 0.01299285888671875, -0.00360107421875, 0.017791748046875, -0.039886474609375, 0.024932861328125, -0.0269622802734375, 0.0020809173583984375, 0.0517578125, 0.015838623046875, 0.0034046173095703125, 0.045166015625, -0.03997802734375, 0.0028171539306640625, -0.05218505859375, 0.033721923828125, 0.0233612060546875, 0.0221710205078125, 0.00202178955078125, 0.0404052734375, 0.05084228515625, 0.00222015380859375, -0.0145111083984375, 0.046539306640625, -0.00853729248046875, 0.034912109375, -0.05511474609375, -0.0582275390625, 0.01067352294921875, 0.039459228515625, 0.01142120361328125, -0.019256591796875, -0.015625, 0.01474761962890625, 0.03546142578125, 0.00501251220703125, 0.034088134765625, 0.0084228515625, 0.01535797119140625, -0.01068878173828125, 0.006420135498046875, 0.019317626953125, -0.0126953125, -0.0005903244018554688, -0.017181396484375, 0.0775146484375, 0.0321044921875, -0.01009368896484375, 0.0105743408203125, -0.01000213623046875, 0.01070404052734375, 0.01537322998046875, 0.0199737548828125, 0.053680419921875, -0.0538330078125, -0.0338134765625, -0.01026153564453125, -0.021148681640625, 0.0268707275390625, 0.04766845703125, -0.01367950439453125, 0.01552581787109375, 0.01873779296875, 0.007808685302734375, -0.0237579345703125, -0.0019006729125976562, 0.0091400146484375, 0.04547119140625, 0.048431396484375, 0.04486083984375, -0.08642578125, -0.044830322265625, -0.0325927734375, 0.035308837890625, 0.006069183349609375, 0.02349853515625, 0.0231170654296875, 0.0272216796875, -0.06951904296875, 0.004253387451171875, -0.0288848876953125, -0.042877197265625, 0.0291595458984375, 0.03912353515625, -0.0088043212890625, -0.0308380126953125, -0.02325439453125, -0.00998687744140625, 0.052459716796875, -0.0499267578125, -0.004161834716796875, 0.005962371826171875, 0.0198974609375, -0.0279541015625, 0.0185089111328125, -0.018402099609375, -0.018707275390625, -0.021240234375, -0.01271820068359375, 0.021026611328125, 0.0162200927734375, 0.0201263427734375, 0.022064208984375, 0.01526641845703125, 0.00046062469482421875, 0.00934600830078125, 0.00168609619140625, 0.036407470703125, 0.0472412109375, -0.03253173828125, -0.036834716796875, 0.004932403564453125, -0.0035419464111328125, 0.0012941360473632812, 0.0256500244140625, 0.0074462890625, 0.021240234375, -0.0202789306640625, 0.00963592529296875, 0.0123748779296875, 0.0192718505859375, -0.0253448486328125, 0.00395965576171875, 0.0151824951171875, -0.0196533203125, 0.01482391357421875, -0.055145263671875, -0.03887939453125, -0.034393310546875, 0.0157012939453125, 0.05023193359375, -0.01332855224609375, 0.004665374755859375, -0.093505859375, -0.005870819091796875, 0.0297088623046875, 0.007144927978515625, -0.06634521484375, 0.0635986328125, -0.0290985107421875, -0.00018930435180664062, -0.02728271484375, 0.0105743408203125, -0.0135498046875, -0.01050567626953125, -0.026275634765625, -0.0151824951171875, -0.033721923828125, 0.0228424072265625, -0.00823974609375, 0.01491546630859375, 0.045806884765625, -0.00994873046875, -0.017852783203125, -0.01322174072265625, -0.01258087158203125, 0.042572021484375, -0.041168212890625, -0.028411865234375, 0.00359344482421875, -0.01334381103515625, 0.007389068603515625, 0.00835418701171875, 0.0010967254638671875, -0.0017242431640625, -0.011871337890625, 0.00508880615234375, -0.03741455078125, -0.0250091552734375, -0.05133056640625, -0.06793212890625, 0.02978515625, 0.005733489990234375, -0.037139892578125, -0.017120361328125, 0.014373779296875, -0.0033779144287109375, -0.0015287399291992188, -0.02276611328125, -0.0110931396484375, -0.017608642578125, 0.0033664703369140625, 0.002338409423828125, 0.08343505859375, -0.0290985107421875, 0.0102996826171875, -0.0419921875, 0.0152130126953125, -0.0133209228515625, 0.038848876953125, -0.01328277587890625, -0.003173828125, 0.022491455078125, 0.046173095703125, -0.01239776611328125, -0.0310821533203125, 0.0028438568115234375, -0.01617431640625, 0.0182647705078125, -0.004863739013671875, -0.027435302734375, -0.00894927978515625, 0.00007271766662597656, 0.0222625732421875, 0.00603485107421875, -0.01152801513671875, 0.00682830810546875, -0.0008368492126464844, 0.003635406494140625, -0.01541900634765625, -0.0010614395141601562, -0.037261962890625, -0.0323486328125, -0.005107879638671875, -0.039703369140625, -0.01392364501953125, 0.027496337890625, -0.041656494140625, 0.0029392242431640625, 0.0190582275390625, 0.00013303756713867188, -0.08612060546875, -0.03277587890625, 0.043701171875, -0.04486083984375, -0.019622802734375, 0.0098114013671875, 0.0296478271484375, -0.00021946430206298828, 0.005374908447265625, -0.002857208251953125, -0.0205078125, -0.040069580078125, 0.0406494140625, -0.024261474609375, 0.08319091796875, -0.0863037109375, -0.02862548828125, -0.023345947265625, 0.0225067138671875, 0.01141357421875, 0.029083251953125, -0.01132965087890625, 0.032257080078125, 0.0225982666015625, -0.01013946533203125, 0.00543212890625, 0.012786865234375, -0.0175628662109375, 0.03802490234375, 0.0151824951171875, -0.01470947265625, 0.042938232421875, -0.03753662109375, -0.0024738311767578125, -0.0123443603515625, -0.0023746490478515625, -0.0537109375, 0.0281524658203125, -0.006580352783203125, -0.0106201171875, 0.0283660888671875 ]
d95815429ad7d2ec9e6ebba066d1df5c6740f4ad
Wordpress Stackexchange Q: Extending Genericons in WordPress With wordpress 4+, is it possible to create our own genericons and add them to the existing list that is bundled with WordPress? I know exactly what I want, which I can design in illustrator, but the default icons with the CMS don't come close to it. If so, is there a tutorial online? I'd rather go this route than adding on an addition large font system along with genericons. Thanks A: You need something like Fontastic or Grunticon to create your custom fonts/icons. Then just add your fonts to your html with wp_enqueue_style() or add the head elements directly. There is a section on the Genericons GitHub that describes Building your own Genericons using FontCustom or Fontello.
Q: Extending Genericons in WordPress With wordpress 4+, is it possible to create our own genericons and add them to the existing list that is bundled with WordPress? I know exactly what I want, which I can design in illustrator, but the default icons with the CMS don't come close to it. If so, is there a tutorial online? I'd rather go this route than adding on an addition large font system along with genericons. Thanks A: You need something like Fontastic or Grunticon to create your custom fonts/icons. Then just add your fonts to your html with wp_enqueue_style() or add the head elements directly. There is a section on the Genericons GitHub that describes Building your own Genericons using FontCustom or Fontello.
wordpress
{ "language": "en", "length": 123, "provenance": "stackexchange_00019.jsonl.gz:470186", "question_score": "4", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/245954" }
[ 0.004070281982421875, -0.02099609375, 0.02410888671875, -0.0172271728515625, -0.0233612060546875, 0.0038051605224609375, 0.020721435546875, -0.0116729736328125, -0.001811981201171875, 0.005893707275390625, -0.0005125999450683594, -0.004276275634765625, -0.047393798828125, -0.0274200439453125, -0.01374053955078125, -0.029327392578125, 0.04345703125, -0.0259552001953125, 0.019622802734375, -0.0196685791015625, 0.01971435546875, -0.00638580322265625, 0.0163116455078125, 0.0682373046875, 0.007396697998046875, 0.0058135986328125, 0.11029052734375, -0.03900146484375, -0.0012197494506835938, -0.0404052734375, 0.023406982421875, 0.005962371826171875, -0.01020050048828125, 0.038116455078125, 0.0023784637451171875, 0.01309967041015625, 0.0131072998046875, 0.0235443115234375, 0.045745849609375, -0.017364501953125, 0.0220184326171875, -0.0252227783203125, 0.02288818359375, 0.04296875, 0.00843048095703125, -0.049285888671875, 0.0396728515625, -0.07879638671875, -0.020751953125, -0.01049041748046875, -0.01177978515625, 0.0027179718017578125, 0.01078033447265625, -0.02178955078125, 0.0037784576416015625, -0.0188140869140625, 0.015869140625, 0.0235137939453125, 0.056610107421875, -0.0017375946044921875, -0.05511474609375, -0.024810791015625, 0.021942138671875, -0.0380859375, 0.01464080810546875, -0.018096923828125, -0.037017822265625, 0.01511383056640625, -0.008880615234375, 0.01763916015625, 0.00579071044921875, -0.0287017822265625, 0.006954193115234375, -0.054718017578125, -0.01491546630859375, 0.046173095703125, -0.0113067626953125, -0.0162200927734375, 0.01149749755859375, -0.020355224609375, 0.035125732421875, 0.022491455078125, -0.03753662109375, -0.03277587890625, 0.005672454833984375, -0.02862548828125, -0.00098419189453125, -0.0158233642578125, -0.032928466796875, -0.01155853271484375, -0.0232086181640625, -0.07098388671875, -0.02606201171875, 0.00658416748046875, 0.01039886474609375, -0.01251220703125, 0.00513458251953125, -0.0180511474609375, -0.008544921875, 0.03948974609375, 0.0308074951171875, -0.06805419921875, 0.10833740234375, -0.04852294921875, -0.0146636962890625, 0.03875732421875, -0.00778961181640625, 0.048828125, 0.03094482421875, 0.038818359375, 0.0205841064453125, -0.032562255859375, 0.03680419921875, 0.0054931640625, -0.0052642822265625, -0.01540374755859375, 0.004871368408203125, 0.030517578125, 0.006099700927734375, 0.00986480712890625, 0.00844573974609375, 0.0298614501953125, 0.01322174072265625, 0.0032634735107421875, -0.02545166015625, -0.0168304443359375, 0.0018596649169921875, -0.059051513671875, -0.0022430419921875, 0.0308837890625, -0.0283660888671875, 0.0168304443359375, 0.0771484375, 0.032806396484375, 0.002765655517578125, -0.0213165283203125, 0.01493072509765625, -0.0140380859375, 0.0027904510498046875, -0.0251617431640625, 0.04901123046875, -0.00020611286163330078, 0.0015668869018554688, 0.0253448486328125, 0.0055999755859375, -0.0237274169921875, 0.0006728172302246094, 0.04644775390625, -0.005794525146484375, -0.0003695487976074219, 0.0428466796875, -0.0274810791015625, 0.032073974609375, 0.005504608154296875, 0.0130462646484375, -0.04925537109375, 0.04132080078125, -0.0560302734375, 0.0289459228515625, -0.051727294921875, -0.04547119140625, -0.014556884765625, 0.00933074951171875, -0.01056671142578125, -0.0033016204833984375, 0.0279693603515625, 0.05096435546875, 0.0172271728515625, 0.0185699462890625, 0.0079345703125, -0.019256591796875, 0.01216888427734375, 0.0195770263671875, 0.002346038818359375, -0.002849578857421875, 0.0109100341796875, -0.00632476806640625, -0.022064208984375, 0.0572509765625, 0.0157928466796875, -0.006366729736328125, -0.007678985595703125, 0.0928955078125, -0.026824951171875, -0.0738525390625, 0.0066375732421875, 0.008941650390625, 0.047607421875, 0.06036376953125, 0.0036563873291015625, 0.017486572265625, -0.017852783203125, -0.06378173828125, -0.006591796875, -0.0054931640625, 0.03125, -0.038330078125, 0.014373779296875, -0.003376007080078125, -0.0127410888671875, 0.01032257080078125, 0.002788543701171875, 0.0091705322265625, -0.009796142578125, -0.034912109375, 0.0035800933837890625, -0.0189971923828125, 0.0290069580078125, 0.005191802978515625, -0.007785797119140625, 0.0132904052734375, -0.033660888671875, 0.0034389495849609375, -0.01064300537109375, -0.06060791015625, -0.0193328857421875, -0.031036376953125, 0.0164794921875, 0.009552001953125, -0.035247802734375, 0.06988525390625, -0.036529541015625, 0.07989501953125, 0.061920166015625, 0.00850677490234375, -0.0157012939453125, -0.0176544189453125, -0.011627197265625, -0.01406097412109375, 0.0263214111328125, -0.03704833984375, 0.01348876953125, -0.038543701171875, 0.03216552734375, 0.0034351348876953125, -0.0195159912109375, 0.007625579833984375, -0.02398681640625, 0.0233917236328125, 0.0189971923828125, 0.0413818359375, 0.041351318359375, 0.02099609375, 0.0142974853515625, 0.07073974609375, -0.006412506103515625, 0.029266357421875, -0.03607177734375, -0.00945281982421875, 0.00740814208984375, 0.035552978515625, 0.004192352294921875, 0.01438140869140625, -0.02850341796875, 0.0007166862487792969, 0.02703857421875, 0.01080322265625, 0.016815185546875, -0.0286407470703125, -0.0077972412109375, 0.0250701904296875, 0.02972412109375, -0.032379150390625, 0.0206451416015625, 0.036956787109375, 0.005985260009765625, 0.022369384765625, 0.016754150390625, -0.039337158203125, 0.0169219970703125, 0.02362060546875, 0.00342559814453125, 0.00848388671875, -0.00534820556640625, 0.0146331787109375, 0.049102783203125, -0.043060302734375, -0.0012693405151367188, 0.0271148681640625, 0.00899505615234375, 0.004604339599609375, 0.0179290771484375, -0.05780029296875, -0.01012420654296875, 0.01461029052734375, -0.00884246826171875, -0.0165863037109375, 0.0183868408203125, -0.023468017578125, 0.0035400390625, 0.00479888916015625, 0.060882568359375, 0.0143585205078125, 0.00817108154296875, 0.040283203125, 0.0191650390625, 0.004730224609375, -0.03167724609375, 0.044921875, -0.043670654296875, 0.037567138671875, 0.05303955078125, -0.062286376953125, 0.032562255859375, -0.0206298828125, 0.0218658447265625, -0.031951904296875, 0.0192108154296875, 0.002185821533203125, -0.06292724609375, 0.021575927734375, 0.01076507568359375, -0.0008463859558105469, 0.038116455078125, -0.0426025390625, -0.040374755859375, -0.0189971923828125, 0.006938934326171875, -0.0142364501953125, 0.0016393661499023438, 0.032257080078125, -0.0028514862060546875, 0.00836181640625, -0.0160980224609375, 0.009124755859375, -0.02874755859375, -0.00272369384765625, -0.007568359375, -0.048309326171875, -0.027191162109375, 0.01617431640625, -0.07427978515625, -0.05426025390625, -0.07391357421875, 0.01367950439453125, 0.018157958984375, 0.01134490966796875, 0.01496124267578125, 0.0177459716796875, 0.0293426513671875, 0.04669189453125, 0.08648681640625, 0.00583648681640625, -0.0271148681640625, 0.037139892578125, -0.034759521484375, 0.0017309188842773438, 0.0018491744995117188, 0.034698486328125, 0.041351318359375, -0.037689208984375, -0.011322021484375, -0.0145263671875, -0.044921875, -0.003116607666015625, 0.05694580078125, 0.004383087158203125, -0.022735595703125, 0.036468505859375, -0.037506103515625, -0.032989501953125, 0.05426025390625, 0.0003695487976074219, 0.04559326171875, -0.0261383056640625, -0.052001953125, 0.003704071044921875, 0.0684814453125, 0.016693115234375, 0.0031833648681640625, 0.01568603515625, 0.00093841552734375, 0.03228759765625, -0.01110076904296875, -0.01442718505859375, -0.0430908203125, 0.0217132568359375, -0.0175933837890625, 0.04730224609375, 0.018707275390625, 0.0261383056640625, 0.0034923553466796875, 0.00685882568359375, -0.03350830078125, -0.051300048828125, 0.041595458984375, -0.0550537109375, -0.007904052734375, -0.0264434814453125, -0.01174163818359375, 0.0013332366943359375, 0.07476806640625, 0.0245361328125, -0.0185394287109375, 0.005062103271484375, 0.0218963623046875, -0.039642333984375, -0.044769287109375, -0.006961822509765625, -0.01102447509765625, -0.048431396484375, 0.0185394287109375, -0.004058837890625, -0.0186309814453125, -0.0179595947265625, -0.00019681453704833984, -0.0216217041015625, -0.0254974365234375, 0.017974853515625, -0.0244903564453125, -0.00644683837890625, -0.00749969482421875, -0.0229644775390625, -0.0201873779296875, -0.0034046173095703125, -0.0341796875, -0.11029052734375, -0.0187835693359375, -0.049041748046875, 0.10443115234375, 0.009735107421875, 0.0026569366455078125, -0.01458740234375, 0.072998046875, -0.0235748291015625, 0.054656982421875, 0.0015649795532226562, 0.04473876953125, -0.0021114349365234375, -0.03240966796875, 0.00904083251953125, -0.03753662109375, -0.01024627685546875, 0.00217437744140625, -0.0262603759765625, 0.08221435546875, 0.005710601806640625, 0.0244598388671875, 0.025665283203125, -0.009674072265625, 0.005863189697265625, -0.024169921875, -0.029937744140625, -0.00720977783203125, -0.018035888671875, -0.00885009765625, -0.034759521484375, -0.0016155242919921875, 0.04931640625, 0.012359619140625, -0.0006113052368164062, -0.00907135009765625, 0.07244873046875, 0.007709503173828125, -0.039398193359375, -0.02850341796875, -0.016204833984375, -0.00391387939453125, 0.0209197998046875, -0.015228271484375, -0.041168212890625, 0.0217742919921875, -0.033416748046875, -0.038848876953125, -0.0242767333984375, 0.00850677490234375, 0.0245819091796875, -0.0113525390625, -0.039764404296875, 0.01271820068359375, -0.024871826171875, 0.0199127197265625, 0.060333251953125, 0.035736083984375, -0.061004638671875, -0.013031005859375, 0.046478271484375, 0.0213470458984375, -0.01885986328125, -0.0245513916015625, -0.022308349609375, 0.007755279541015625, 0.0193023681640625, 0.0019350051879882812, -0.0006318092346191406, 0.01137542724609375, -0.0142974853515625, -0.029541015625, -0.0048980712890625, -0.0019092559814453125, -0.017364501953125, 0.002918243408203125, 0.0291748046875, -0.0004565715789794922, -0.004665374755859375, 0.006511688232421875, -0.01409912109375, 0.09857177734375, 0.03570556640625, -0.05413818359375, 0.0181427001953125, -0.0039215087890625, 0.0208587646484375, -0.0213165283203125, -0.0233917236328125, 0.01153564453125, 0.020904541015625, -0.005023956298828125, -0.0087432861328125, -0.034881591796875, 0.0029430389404296875, -0.044647216796875, 0.0118560791015625, 0.02008056640625, -0.01544952392578125, 0.016876220703125, 0.018035888671875, 0.057281494140625, -0.01013946533203125, -0.0229644775390625, 0.0278167724609375, 0.058502197265625, 0.00665283203125, 0.00847625732421875, -0.013946533203125, 0.006549835205078125, -0.017547607421875, 0.0183563232421875, -0.033355712890625, 0.01245880126953125, -0.01558685302734375, 0.04339599609375, -0.0240631103515625, -0.03887939453125, 0.0287017822265625, -0.065673828125, -0.0203857421875, -0.0284271240234375, -0.02972412109375, -0.0178680419921875, -0.006069183349609375, 0.01247406005859375, 0.0198822021484375, 0.0204010009765625, -0.03277587890625, 0.033050537109375, -0.0139312744140625, 0.0290374755859375, -0.0018320083618164062, -0.0340576171875, 0.01081085205078125, 0.0202789306640625, -0.07318115234375, -0.01145172119140625, 0.035430908203125, -0.10882568359375, -0.050628662109375, 0.0172576904296875, -0.009918212890625, 0.009979248046875, 0.004055023193359375, -0.005397796630859375, -0.0202484130859375, -0.01439666748046875, -0.007232666015625, 0.0033664703369140625, 0.06964111328125, 0.01338958740234375, 0.015533447265625, -0.0242462158203125, -0.0167236328125, -0.040374755859375, -0.0265045166015625, -0.0199737548828125, -0.044525146484375, 0.0246429443359375, 0.003971099853515625, 0.030670166015625, 0.0015411376953125, 0.0150909423828125, -0.018707275390625, 0.0318603515625, 0.00232696533203125, 0.062286376953125, 0.023895263671875, -0.035797119140625, 0.0012683868408203125, 0.0065765380859375, 0.026031494140625, 0.0164794921875, 0.04730224609375, -0.0743408203125, 0.008880615234375, -0.0745849609375, -0.048919677734375, -0.00921630859375, -0.0231475830078125, 0.0810546875, 0.049560546875, -0.0061798095703125, -0.0120849609375, -0.03369140625, -0.00428009033203125, -0.0160064697265625, 0.0650634765625, -0.02130126953125, -0.04473876953125, 0.0543212890625, -0.00432586669921875, 0.0479736328125, -0.03289794921875, -0.0184783935546875, 0.006366729736328125, -0.01096343994140625, 0.00460052490234375, 0.040771484375, -0.041168212890625, 0.037841796875, 0.0290374755859375, -0.0021457672119140625, 0.01056671142578125, 0.00450897216796875, -0.01153564453125, -0.01166534423828125, -0.0126953125, -0.0250244140625, -0.00481414794921875, 0.0307769775390625, -0.0000972747802734375, -0.0394287109375, 0.01548004150390625, -0.026092529296875, 0.027191162109375, 0.018829345703125, 0.07318115234375, -0.03558349609375, 0.0234222412109375, 0.03125, -0.039154052734375, 0.0120697021484375, -0.017974853515625, 0.0084991455078125, -0.0287017822265625, 0.056365966796875, 0.017791748046875, -0.020294189453125, 0.01332855224609375, -0.018280029296875, -0.0176544189453125, 0.00421142578125, 0.059356689453125, 0.02093505859375, -0.035308837890625, -0.006702423095703125, 0.033599853515625, -0.01171875, -0.001415252685546875, -0.003498077392578125, 0.0181121826171875, -0.01302337646484375, -0.020477294921875, 0.041290283203125, -0.074951171875, 0.0165557861328125, 0.03131103515625, 0.0257110595703125, 0.00927734375, 0.0249786376953125, 0.00753021240234375, -0.00464630126953125, -0.00902557373046875, -0.0015802383422851562, 0.03662109375, -0.004917144775390625, 0.0011758804321289062, 0.00807952880859375, -0.0106201171875, 0.003467559814453125, -0.0150146484375, 0.00574493408203125, -0.0107421875, 0.0303802490234375, 0.08251953125, -0.043182373046875, -0.0140228271484375, 0.059967041015625, 0.0242156982421875, -0.036376953125, 0.00986480712890625, -0.0192718505859375, -0.0587158203125, -0.051727294921875, -0.00606536865234375, -0.083740234375, 0.023895263671875, -0.0008349418640136719, -0.03521728515625, 0.07391357421875, -0.037078857421875, 0.00026297569274902344, 0.0136260986328125, 0.0364990234375, -0.01025390625, 0.0202178955078125, -0.0257720947265625, -0.01462554931640625, -0.045501708984375, 0.0206451416015625, 0.007175445556640625, 0.026275634765625, 0.0079498291015625, 0.00719451904296875, 0.052642822265625, 0.00972747802734375, -0.0172119140625, -0.030426025390625, 0.01561737060546875, 0.0347900390625, -0.005573272705078125, 0.0210723876953125, -0.003955841064453125, -0.041015625, -0.0070953369140625, 0.0241546630859375, 0.041229248046875, -0.040985107421875, -0.030914306640625, 0.018829345703125, 0.01258087158203125, 0.0155487060546875, -0.0391845703125, 0.02825927734375, -0.0199127197265625, -0.0260772705078125, 0.01526641845703125, 0.0146942138671875, 0.0021800994873046875, 0.039794921875, -0.0086669921875, 0.0443115234375, 0.01236724853515625, -0.0200653076171875, 0.02496337890625, -0.016937255859375, 0.000774383544921875, 0.035308837890625, 0.0276031494140625, -0.031585693359375, -0.00323486328125, 0.00493621826171875, 0.0128173828125, -0.01497650146484375, 0.040496826171875, -0.0200042724609375, 0.014801025390625, -0.060791015625, -0.001155853271484375, 0.01006317138671875, 0.031463623046875, -0.03619384765625, -0.009796142578125, 0.004764556884765625, 0.0015783309936523438, 0.023223876953125, -0.02423095703125, 0.050567626953125, -0.069091796875, -0.0655517578125, -0.03533935546875, 0.0033702850341796875, 0.03668212890625, 0.004734039306640625, -0.01236724853515625, 0.005527496337890625, -0.004062652587890625, 0.009674072265625, -0.0242767333984375, 0.0086517333984375, 0.01837158203125, 0.045135498046875, -0.011077880859375, 0.065185546875, -0.00787353515625, -0.00843048095703125, -0.01204681396484375, 0.01020050048828125, 0.0279541015625, -0.0005545616149902344, 0.01372528076171875, 0.03350830078125, -0.01494598388671875, 0.0216064453125, 0.007007598876953125, -0.01300048828125, 0.01013946533203125, 0.033050537109375, 0.01364898681640625, -0.0304107666015625, 0.0168304443359375, 0.00560760498046875, 0.002704620361328125, -0.014984130859375, 0.00484466552734375, 0.0173797607421875, 0.00034165382385253906, -0.007587432861328125, 0.027069091796875, 0.046295166015625, -0.01258087158203125, 0.05047607421875, -0.0031337738037109375, -0.01497650146484375, 0.0297393798828125, 0.02142333984375, 0.0771484375, 0.0211181640625, -0.021728515625, 0.035491943359375, -0.04241943359375, -0.06561279296875, -0.0006990432739257812, 0.0285797119140625, -0.042327880859375, 0.056396484375, 0.02899169921875, -0.01203155517578125, -0.0224151611328125, 0.0164947509765625, 0.034088134765625, 0.017669677734375, 0.00569915771484375, 0.034149169921875, -0.02471923828125, -0.0003566741943359375, 0.01468658447265625, 0.0154571533203125, -0.0174407958984375, 0.05279541015625, -0.01531219482421875, -0.01708984375, -0.00746917724609375, 0.0148468017578125, 0.003452301025390625, -0.01078033447265625, 0.05157470703125, 0.0325927734375, -0.0012655258178710938, -0.041046142578125, -0.046142578125, 0.001300811767578125, 0.0218963623046875, -0.02850341796875, -0.01285552978515625, -0.00611114501953125, 0.0222320556640625, -0.01525115966796875, 0.0052032470703125, -0.022796630859375, -0.01276397705078125, 0.0091705322265625, -0.0199737548828125, 0.01157379150390625, 0.00876617431640625, 0.041595458984375, 0.0169219970703125, 0.028656005859375, -0.030059814453125, 0.046142578125, -0.038726806640625, 0.07269287109375, 0.04425048828125, 0.00061798095703125, -0.027099609375, -0.004730224609375, -0.0277252197265625, 0.01055908203125, 0.0017938613891601562, 0.042816162109375, -0.0240478515625, -0.04278564453125, 0.04815673828125, -0.0189971923828125, 0.00911712646484375, -0.05426025390625, -0.01824951171875, 0.031890869140625, 0.019561767578125, -0.013946533203125, 0.009674072265625, -0.0322265625, -0.07659912109375, -0.003360748291015625, 0.0272369384765625, -0.0760498046875, -0.0175323486328125, -0.09906005859375, -0.01157379150390625, 0.04443359375, 0.0299072265625, -0.060760498046875, 0.0218505859375, -0.004764556884765625, 0.0263214111328125, 0.0226287841796875, 0.060760498046875, -0.0029277801513671875, -0.00778961181640625, -0.062255859375, -0.0335693359375, -0.01392364501953125, 0.042510986328125, -0.010406494140625, 0.0048065185546875, 0.0230255126953125, -0.013397216796875, 0.01407623291015625, 0.003353118896484375, 0.0252532958984375, 0.0499267578125, -0.0139923095703125, -0.02618408203125, -0.005970001220703125, -0.01334381103515625, -0.0156707763671875, -0.0782470703125, 0.027435302734375, -0.1319580078125, -0.053497314453125, 0.0016584396362304688, 0.00849151611328125, 0.00797271728515625, -0.03570556640625, -0.10467529296875, 0.06341552734375, -0.0267791748046875, -0.042694091796875, -0.037322998046875, -0.007480621337890625, -0.006305694580078125, -0.0265655517578125, -0.0181732177734375, -0.0252227783203125, -0.005458831787109375, 0.055633544921875, 0.0086822509765625, 0.0004372596740722656, 0.00920867919921875, 0.0222015380859375, -0.00717926025390625, 0.035003662109375, 0.022796630859375, -0.01385498046875, 0.0290374755859375, -0.034515380859375, 0.0257415771484375, 0.01220703125, -0.06549072265625, -0.04437255859375, -0.0286407470703125, 0.01800537109375, -0.0097503662109375, -0.066162109375, 0.026641845703125, -0.0009212493896484375, 0.0284881591796875, 0.0025043487548828125, -0.0174713134765625, -0.04315185546875, 0.0238037109375, 0.0173492431640625, -0.0270843505859375, -0.0161590576171875, 0.0165557861328125, -0.047332763671875, -0.0308990478515625, -0.00677490234375, 0.0137176513671875, -0.01232147216796875, 0.00858306884765625, 0.0021686553955078125, -0.039459228515625, 0.00351715087890625, -0.019927978515625, -0.026092529296875, -0.00841522216796875, 0.055267333984375, -0.018829345703125, 0.019683837890625, -0.004482269287109375, 0.01522064208984375, 0.02978515625, 0.005283355712890625, -0.0233001708984375, 0.01041412353515625, 0.004779815673828125, 0.02264404296875, 0.0020885467529296875, 0.016845703125, 0.0008091926574707031, 0.026947021484375, -0.028472900390625, 0.03662109375, 0.0188140869140625, 0.056304931640625, -0.048095703125, 0.03790283203125, 0.0270538330078125, 0.05218505859375, -0.0018129348754882812, -0.0096893310546875, -0.01282501220703125, 0.00836181640625, -0.00760650634765625, -0.0128021240234375, 0.01708984375, -0.032958984375, 0.01052093505859375, -0.00833892822265625, -0.03668212890625, -0.00024259090423583984, 0.009918212890625, -0.0194854736328125, -0.045806884765625, 0.00527191162109375 ]
5d76145f63ae6a8dfb9fc402f0c70846d15ff1c1
Wordpress Stackexchange Q: Get terms from multiple taxonomies I have to get all the terms from four taxonomies: * *vehicle_safely_features *vehicle_exterior_features *vehicle_interior_features *vehicle_extras I tried this: $terms = get_terms( array( 'taxonomy' => 'vehicle_safely_features', 'vehicle_exterior_features', 'vehicle_interior_features', 'vehicle_extras' ) ); But, it only gets terms of vehicle_safely_features and not all of the taxonomies. A: If you want to retrieve multiple taxonomies you need to put the four taxonomies in an array, you are doing this, but you have put taxonomy=> in the array. $terms = get_terms( 'taxonomy' => array( 'vehicle_safely_features', 'vehicle_exterior_features', 'vehicle_interior_features', 'vehicle_extras') ); Hope it helps
Q: Get terms from multiple taxonomies I have to get all the terms from four taxonomies: * *vehicle_safely_features *vehicle_exterior_features *vehicle_interior_features *vehicle_extras I tried this: $terms = get_terms( array( 'taxonomy' => 'vehicle_safely_features', 'vehicle_exterior_features', 'vehicle_interior_features', 'vehicle_extras' ) ); But, it only gets terms of vehicle_safely_features and not all of the taxonomies. A: If you want to retrieve multiple taxonomies you need to put the four taxonomies in an array, you are doing this, but you have put taxonomy=> in the array. $terms = get_terms( 'taxonomy' => array( 'vehicle_safely_features', 'vehicle_exterior_features', 'vehicle_interior_features', 'vehicle_extras') ); Hope it helps A: Incase someone get an error due to the => use below $termsArray = get_the_terms( $post->ID, array( 'tax1', 'tax2', 'tax3' ) )
wordpress
{ "language": "en", "length": 115, "provenance": "stackexchange_00019.jsonl.gz:470261", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/246225" }
[ 0.0215301513671875, -0.017303466796875, -0.034912109375, -0.045989990234375, 0.0160064697265625, -0.020416259765625, 0.019073486328125, 0.0171966552734375, -0.0019779205322265625, 0.0128936767578125, -0.035736083984375, 0.0164947509765625, -0.08148193359375, -0.00988006591796875, -0.032562255859375, -0.0548095703125, 0.023834228515625, -0.046875, 0.0170745849609375, -0.002101898193359375, 0.020538330078125, 0.01302337646484375, 0.01120758056640625, -0.035797119140625, 0.0131683349609375, 0.0002503395080566406, 0.0235443115234375, -0.0272369384765625, 0.0052490234375, -0.02764892578125, 0.01219940185546875, 0.0308837890625, 0.007602691650390625, 0.0164031982421875, -0.00897216796875, -0.03863525390625, 0.005588531494140625, -0.0004916191101074219, 0.00885772705078125, 0.015716552734375, 0.01264190673828125, 0.004009246826171875, 0.00036716461181640625, 0.0496826171875, -0.027587890625, -0.040008544921875, -0.0045013427734375, -0.047454833984375, -0.0167236328125, -0.0386962890625, 0.04461669921875, -0.01194000244140625, 0.04693603515625, 0.01025390625, -0.006244659423828125, 0.023223876953125, -0.005489349365234375, -0.00858306884765625, 0.046173095703125, -0.02093505859375, -0.031097412109375, -0.032501220703125, 0.031890869140625, -0.01995849609375, -0.0234832763671875, 0.039154052734375, 0.012542724609375, -0.014068603515625, -0.032928466796875, -0.03729248046875, 0.007579803466796875, -0.046478271484375, 0.01111602783203125, 0.0107269287109375, -0.0136871337890625, -0.044921875, 0.0137176513671875, -0.0251922607421875, 0.0023059844970703125, 0.0196533203125, 0.036163330078125, 0.01153564453125, -0.09686279296875, 0.02569580078125, 0.01898193359375, 0.0506591796875, 0.003391265869140625, -0.041015625, 0.004451751708984375, -0.0238037109375, -0.000021338462829589844, -0.0760498046875, -0.0352783203125, 0.065673828125, 0.0182037353515625, -0.0296783447265625, 0.021759033203125, 0.042510986328125, -0.034515380859375, -0.0158233642578125, -0.016204833984375, -0.03131103515625, 0.00485992431640625, -0.034515380859375, 0.0289459228515625, -0.01158905029296875, 0.0186767578125, 0.01861572265625, 0.06048583984375, 0.0204315185546875, -0.0154876708984375, 0.0875244140625, -0.002643585205078125, -0.04815673828125, -0.0023670196533203125, 0.012786865234375, -0.0025424957275390625, 0.01006317138671875, 0.0301055908203125, -0.04925537109375, 0.03546142578125, 0.0626220703125, -0.03131103515625, -0.01270294189453125, -0.05084228515625, -0.028656005859375, -0.006710052490234375, -0.0325927734375, 0.0018701553344726562, 0.034271240234375, -0.0237579345703125, 0.0012826919555664062, -0.0152130126953125, 0.013275146484375, -0.0174560546875, -0.0200958251953125, 0.005279541015625, 0.005153656005859375, 0.0174713134765625, -0.01528167724609375, 0.0357666015625, -0.00904083251953125, 0.019775390625, 0.01404571533203125, -0.01142120361328125, -0.0251312255859375, 0.037353515625, 0.0557861328125, -0.0277252197265625, -0.01538848876953125, 0.0301666259765625, 0.039031982421875, 0.049774169921875, -0.005657196044921875, -0.06085205078125, -0.032379150390625, -0.002925872802734375, -0.027618408203125, -0.02374267578125, -0.08050537109375, 0.01508331298828125, -0.0023860931396484375, 0.01538848876953125, 0.01242828369140625, -0.00783538818359375, 0.004070281982421875, -0.0404052734375, -0.006500244140625, 0.0279693603515625, -0.00165557861328125, 0.0285491943359375, -0.0288238525390625, -0.001911163330078125, 0.0208282470703125, 0.00330352783203125, 0.0308074951171875, -0.0313720703125, -0.011138916015625, 0.052825927734375, -0.027130126953125, -0.033966064453125, -0.047454833984375, 0.03350830078125, -0.002666473388671875, -0.047698974609375, 0.004375457763671875, 0.004608154296875, 0.06304931640625, 0.0229949951171875, 0.019622802734375, 0.01494598388671875, -0.023101806640625, -0.04962158203125, 0.04193115234375, 0.008575439453125, 0.01062774658203125, -0.038909912109375, 0.0197601318359375, -0.01009368896484375, -0.06475830078125, 0.0227203369140625, -0.03436279296875, 0.0247039794921875, -0.028106689453125, 0.0029506683349609375, -0.036712646484375, 0.0121307373046875, 0.0004248619079589844, -0.0391845703125, 0.01552581787109375, 0.01885986328125, -0.03369140625, -0.0248870849609375, 0.01555633544921875, 0.0152130126953125, 0.009307861328125, -0.01450347900390625, -0.01186370849609375, -0.00899505615234375, -0.02825927734375, 0.0122222900390625, -0.0032405853271484375, 0.01739501953125, 0.08807373046875, 0.013671875, 0.01357269287109375, -0.0208740234375, 0.006519317626953125, 0.0126800537109375, 0.03863525390625, -0.019439697265625, -0.0193328857421875, 0.03436279296875, 0.05865478515625, 0.0111236572265625, 0.006072998046875, 0.059783935546875, -0.0714111328125, 0.0060272216796875, 0.0173797607421875, 0.0360107421875, 0.0250244140625, -0.0445556640625, -0.056671142578125, 0.045745849609375, -0.0830078125, -0.029541015625, -0.01027679443359375, -0.007076263427734375, 0.0222320556640625, 0.0382080078125, 0.0252685546875, 0.006317138671875, 0.042694091796875, 0.00823211669921875, 0.03656005859375, -0.034637451171875, -0.007640838623046875, -0.0235443115234375, 0.03253173828125, -0.0148162841796875, -0.07476806640625, -0.005016326904296875, -0.04638671875, -0.01000213623046875, 0.019012451171875, 0.00858306884765625, 0.03338623046875, -0.01739501953125, -0.01053619384765625, 0.0159149169921875, 0.030364990234375, -0.0099334716796875, 0.01055908203125, -0.004154205322265625, -0.0234222412109375, -0.017120361328125, 0.019256591796875, -0.042266845703125, -0.01125335693359375, 0.0295867919921875, 0.0528564453125, 0.00597381591796875, -0.00490570068359375, -0.00966644287109375, -0.0169219970703125, -0.0020542144775390625, 0.0367431640625, -0.0906982421875, -0.017120361328125, 0.01165008544921875, 0.037109375, -0.0220184326171875, -0.007366180419921875, -0.042724609375, 0.03240966796875, -0.0176239013671875, -0.00013935565948486328, 0.0182037353515625, 0.0013685226440429688, 0.0022182464599609375, 0.052276611328125, 0.01410675048828125, -0.0081024169921875, 0.0094146728515625, -0.03961181640625, 0.04547119140625, -0.0205535888671875, -0.02850341796875, 0.0155181884765625, -0.09661865234375, 0.0015239715576171875, 0.015411376953125, 0.030914306640625, 0.00498199462890625, -0.030670166015625, -0.00046515464782714844, 0.0340576171875, -0.0213470458984375, 0.0289154052734375, 0.048736572265625, -0.00962066650390625, 0.0220947265625, -0.0185546875, -0.0024356842041015625, -0.053985595703125, -0.0131072998046875, -0.00626373291015625, 0.0250244140625, -0.0108489990234375, -0.053985595703125, -0.0098419189453125, -0.06280517578125, 0.0014696121215820312, -0.00787353515625, 0.01560211181640625, 0.00348663330078125, 0.06622314453125, 0.005626678466796875, -0.0208587646484375, 0.0270233154296875, 0.0221405029296875, -0.01153564453125, 0.010406494140625, -0.0300750732421875, 0.0262451171875, -0.0163421630859375, -0.0015344619750976562, -0.0180816650390625, 0.0123138427734375, -0.00629425048828125, -0.01488494873046875, 0.00617218017578125, 0.03173828125, 0.053375244140625, -0.056304931640625, -0.0499267578125, 0.07806396484375, 0.0256195068359375, 0.0016622543334960938, -0.0253753662109375, 0.01392364501953125, -0.00878143310546875, 0.04608154296875, -0.0174407958984375, -0.0258026123046875, 0.0135955810546875, 0.031494140625, -0.0218048095703125, 0.0008802413940429688, -0.049713134765625, -0.013397216796875, 0.01180267333984375, 0.003955841064453125, 0.0008182525634765625, 0.04705810546875, -0.0108795166015625, -0.0286407470703125, 0.0224456787109375, -0.01593017578125, 0.00873565673828125, -0.0278472900390625, 0.0220794677734375, -0.045623779296875, -0.06317138671875, 0.0465087890625, -0.059234619140625, -0.0295257568359375, -0.03955078125, -0.007038116455078125, -0.01296234130859375, 0.07568359375, -0.0261077880859375, -0.00931549072265625, -0.00252532958984375, 0.00603485107421875, -0.03924560546875, -0.033782958984375, -0.05145263671875, -0.00814056396484375, -0.059356689453125, -0.01486968994140625, -0.0100860595703125, -0.0282440185546875, -0.0169219970703125, 0.003253936767578125, -0.0450439453125, -0.03460693359375, 0.0283966064453125, -0.024383544921875, 0.00669097900390625, 0.007808685302734375, -0.01500701904296875, -0.006465911865234375, -0.03704833984375, -0.008544921875, -0.01605224609375, 0.00371551513671875, 0.0221405029296875, -0.001689910888671875, -0.00374603271484375, -0.04302978515625, 0.0211029052734375, 0.052154541015625, -0.01107025146484375, -0.011505126953125, 0.00171661376953125, 0.02142333984375, -0.040679931640625, 0.015716552734375, 0.0005393028259277344, -0.0175323486328125, -0.047149658203125, -0.0318603515625, 0.04180908203125, 0.039520263671875, -0.0251007080078125, -0.01094818115234375, -0.0305023193359375, 0.0175628662109375, -0.00428009033203125, 0.004669189453125, -0.0207061767578125, -0.0312347412109375, -0.0282745361328125, -0.0109710693359375, 0.03564453125, 0.005878448486328125, -0.0029354095458984375, 0.019287109375, -0.0160675048828125, 0.0035762786865234375, 0.0240020751953125, 0.006580352783203125, -0.0283050537109375, -0.029052734375, -0.0034503936767578125, 0.037078857421875, 0.0104827880859375, 0.01454925537109375, -0.0130615234375, -0.047454833984375, 0.0760498046875, 0.001689910888671875, -0.0105438232421875, -0.003376007080078125, 0.013153076171875, 0.006744384765625, -0.032196044921875, 0.006549835205078125, -0.014312744140625, 0.0250701904296875, 0.0078277587890625, -0.02728271484375, -0.047576904296875, -0.020416259765625, 0.08837890625, -0.039337158203125, 0.0836181640625, -0.039520263671875, -0.03216552734375, 0.01415252685546875, -0.02044677734375, 0.0176544189453125, 0.00907135009765625, -0.0074615478515625, -0.0058746337890625, -0.019287109375, -0.019500732421875, 0.0433349609375, -0.010284423828125, 0.032379150390625, -0.0103912353515625, 0.05889892578125, -0.018951416015625, 0.00943756103515625, 0.01776123046875, -0.005828857421875, -0.043670654296875, -0.08160400390625, -0.00567626953125, -0.0100250244140625, 0.002094268798828125, 0.0614013671875, -0.01904296875, 0.04339599609375, 0.029296875, -0.0139312744140625, -0.0017576217651367188, -0.0545654296875, 0.0134429931640625, -0.046356201171875, 0.002727508544921875, -0.0081329345703125, -0.0166778564453125, 0.00240325927734375, 0.050933837890625, -0.06689453125, 0.0489501953125, 0.01336669921875, 0.007495880126953125, -0.01520538330078125, 0.032501220703125, 0.01409912109375, -0.012847900390625, 0.0245208740234375, -0.005580902099609375, 0.020050048828125, -0.03314208984375, -0.015625, 0.00010091066360473633, 0.01373291015625, -0.0204315185546875, -0.0246124267578125, 0.047454833984375, 0.004955291748046875, -0.01337432861328125, -0.00830078125, -0.02093505859375, -0.0226898193359375, -0.01348114013671875, 0.00995635986328125, 0.012664794921875, 0.0022525787353515625, -0.01165771484375, 0.025054931640625, -0.00914764404296875, 0.037872314453125, -0.0257720947265625, -0.01190185546875, -0.00586700439453125, 0.01580810546875, -0.03643798828125, -0.023956298828125, 0.004688262939453125, -0.11370849609375, -0.033660888671875, 0.0031585693359375, -0.00003355741500854492, 0.01372528076171875, -0.0116729736328125, 0.0103302001953125, 0.0207366943359375, -0.03253173828125, 0.04937744140625, 0.007472991943359375, 0.019134521484375, -0.0155487060546875, 0.005809783935546875, 0.0005359649658203125, -0.042083740234375, -0.0286407470703125, -0.01378631591796875, -0.04010009765625, -0.0286712646484375, -0.00926971435546875, -0.018829345703125, 0.0020198822021484375, 0.0303955078125, 0.050323486328125, 0.00559234619140625, 0.028839111328125, -0.0176239013671875, 0.0013170242309570312, 0.00777435302734375, -0.038543701171875, 0.048828125, -0.0016012191772460938, 0.02227783203125, -0.0307159423828125, -0.033935546875, -0.037628173828125, -0.04388427734375, -0.12109375, 0.004302978515625, 0.052459716796875, -0.03924560546875, 0.0709228515625, 0.01528167724609375, 0.03533935546875, -0.01336669921875, -0.0213470458984375, 0.001186370849609375, -0.0109710693359375, 0.0242462158203125, 0.0019702911376953125, -0.038055419921875, 0.04119873046875, -0.003841400146484375, 0.006000518798828125, -0.0207977294921875, -0.0220947265625, 0.0206298828125, -0.005527496337890625, 0.01206207275390625, 0.01406097412109375, -0.020538330078125, 0.014892578125, 0.03472900390625, 0.012054443359375, 0.042205810546875, 0.001255035400390625, 0.0252838134765625, 0.046905517578125, 0.0185394287109375, -0.0093231201171875, -0.0252532958984375, 0.0259857177734375, 0.0034961700439453125, 0.00333404541015625, 0.0171051025390625, -0.0158538818359375, -0.0280914306640625, -0.055908203125, -0.00780487060546875, 0.0181427001953125, 0.0184478759765625, 0.0102996826171875, 0.0169525146484375, 0.008270263671875, 0.0662841796875, -0.056121826171875, -0.0792236328125, -0.05914306640625, -0.0214080810546875, -0.0169830322265625, -0.0299224853515625, 0.032012939453125, -0.0035953521728515625, -0.0009794235229492188, 0.0030918121337890625, 0.004276275634765625, -0.0140533447265625, -0.0061187744140625, 0.014923095703125, 0.0255584716796875, -0.002593994140625, -0.0016326904296875, 0.0024566650390625, -0.0307159423828125, -0.030609130859375, 0.0272064208984375, -0.01454925537109375, -0.0030345916748046875, -0.04815673828125, -0.0213775634765625, -0.0124359130859375, 0.0275421142578125, -0.033538818359375, -0.0178375244140625, 0.0101470947265625, -0.075927734375, -0.0106353759765625, 0.01824951171875, -0.00925445556640625, 0.0159149169921875, -0.00028014183044433594, 0.022705078125, -0.0272979736328125, 0.019866943359375, -0.0099334716796875, -0.0305938720703125, 0.029327392578125, -0.017181396484375, -0.00988006591796875, 0.03631591796875, 0.029449462890625, -0.003032684326171875, 0.01036834716796875, 0.040557861328125, -0.0419921875, -0.0265350341796875, 0.030242919921875, 0.01062774658203125, -0.01189422607421875, 0.01666259765625, -0.1016845703125, 0.1077880859375, -0.01303863525390625, 0.07354736328125, -0.001220703125, 0.0311126708984375, -0.016693115234375, -0.00835418701171875, -0.016357421875, 0.0255584716796875, 0.00749969482421875, -0.01528167724609375, -0.01375579833984375, -0.0012989044189453125, -0.0225830078125, 0.0251617431640625, 0.0091705322265625, 0.0028133392333984375, -0.0115509033203125, 0.0040740966796875, 0.0531005859375, 0.020294189453125, 0.003864288330078125, 0.0307159423828125, 0.032928466796875, -0.0192413330078125, 0.034759521484375, 0.0079345703125, 0.0304718017578125, -0.01013946533203125, 0.0128326416015625, 0.06524658203125, 0.0186309814453125, 0.01432037353515625, 0.00450897216796875, 0.038330078125, -0.034149169921875, -0.00228118896484375, 0.026397705078125, -0.003704071044921875, 0.01213836669921875, -0.005916595458984375, -0.00855255126953125, 0.0019159317016601562, 0.115966796875, -0.034912109375, 0.04595947265625, -0.0173187255859375, 0.01715087890625, 0.019989013671875, 0.006805419921875, 0.054962158203125, 0.0124359130859375, 0.015838623046875, 0.0197906494140625, 0.01418304443359375, 0.04876708984375, -0.02978515625, 0.01209259033203125, -0.10107421875, -0.01520538330078125, 0.031768798828125, 0.068359375, -0.0299224853515625, -0.0477294921875, 0.00469970703125, 0.0089111328125, 0.0052490234375, 0.0134429931640625, 0.0126190185546875, 0.050048828125, 0.096923828125, -0.06011962890625, 0.0030498504638671875, 0.031036376953125, 0.0161285400390625, -0.014373779296875, -0.03106689453125, -0.0194244384765625, -0.00402069091796875, -0.06121826171875, 0.023223876953125, 0.0421142578125, 0.048736572265625, -0.0178985595703125, 0.07830810546875, -0.0011072158813476562, -0.0247650146484375, -0.00011491775512695312, 0.049285888671875, 0.0266265869140625, -0.0347900390625, 0.0386962890625, -0.0224761962890625, -0.011566162109375, -0.0106658935546875, 0.032135009765625, -0.0236663818359375, 0.040252685546875, 0.056610107421875, -0.0151214599609375, -0.01444244384765625, 0.0511474609375, -0.0005598068237304688, -0.03460693359375, -0.038604736328125, -0.0012102127075195312, 0.047882080078125, 0.00852203369140625, 0.0218353271484375, -0.029266357421875, 0.07696533203125, -0.0291748046875, 0.039520263671875, -0.01470947265625, 0.0019216537475585938, 0.007701873779296875, -0.032470703125, -0.0111846923828125, -0.015777587890625, -0.083251953125, -0.005542755126953125, -0.060882568359375, 0.0164337158203125, 0.031524658203125, 0.036590576171875, 0.006168365478515625, 0.0185394287109375, -0.01025390625, -0.021942138671875, -0.016357421875, 0.023468017578125, 0.025360107421875, 0.0006017684936523438, 0.004169464111328125, -0.003818511962890625, -0.0833740234375, -0.021087646484375, -0.016845703125, -0.004383087158203125, -0.0296783447265625, 0.0673828125, 0.01189422607421875, -0.006595611572265625, -0.01383209228515625, 0.006999969482421875, -0.016082763671875, -0.0198516845703125, 0.0092926025390625, 0.00011199712753295898, -0.01953125, -0.005504608154296875, -0.01515960693359375, 0.06024169921875, 0.05096435546875, -0.0196075439453125, 0.03497314453125, 0.0005044937133789062, -0.003513336181640625, -0.041290283203125, 0.06414794921875, -0.00983428955078125, -0.0175323486328125, -0.0518798828125, -0.039947509765625, 0.046173095703125, 0.05938720703125, 0.01309967041015625, 0.01311492919921875, 0.06402587890625, -0.0182647705078125, 0.044586181640625, 0.0016422271728515625, 0.074951171875, 0.029388427734375, 0.03521728515625, -0.052581787109375, -0.030517578125, -0.02166748046875, 0.005733489990234375, -0.0321044921875, 0.049896240234375, -0.0135498046875, -0.00830841064453125, 0.00792694091796875, -0.0216217041015625, 0.018218994140625, -0.02435302734375, -0.01320648193359375, 0.0189056396484375, 0.00989532470703125, -0.0142364501953125, -0.037322998046875, -0.015869140625, -0.056640625, -0.00017261505126953125, 0.02337646484375, -0.0308990478515625, -0.00948333740234375, -0.0233306884765625, -0.00742340087890625, 0.043212890625, -0.0287017822265625, 0.051055908203125, -0.0200958251953125, -0.060455322265625, 0.001953125, -0.006214141845703125, -0.038177490234375, 0.031707763671875, 0.0195770263671875, -0.04217529296875, 0.013885498046875, -0.0181732177734375, -0.041839599609375, -0.0182342529296875, 0.0006871223449707031, 0.010894775390625, -0.022705078125, -0.01023101806640625, 0.02899169921875, 0.0224456787109375, 0.056121826171875, 0.03173828125, -0.0193023681640625, -0.0187835693359375, 0.0266876220703125, -0.022491455078125, -0.0266876220703125, 0.028961181640625, -0.0129547119140625, -0.0399169921875, 0.02276611328125, 0.0020618438720703125, 0.0233917236328125, -0.028076171875, -0.0716552734375, 0.06341552734375, -0.005779266357421875, -0.03253173828125, -0.04925537109375, -0.0297698974609375, 0.00635528564453125, 0.007083892822265625, -0.0194854736328125, 0.012237548828125, -0.0438232421875, 0.04669189453125, 0.005512237548828125, -0.007534027099609375, 0.0091400146484375, 0.007717132568359375, -0.0650634765625, 0.0133514404296875, 0.00373077392578125, -0.0092315673828125, -0.00827789306640625, 0.00914764404296875, 0.0021495819091796875, 0.035369873046875, -0.0032253265380859375, -0.03167724609375, 0.0173187255859375, -0.054779052734375, 0.0042266845703125, -0.022796630859375, 0.006465911865234375, -0.02593994140625, 0.000009119510650634766, -0.0174713134765625, -0.00604248046875, -0.004322052001953125, -0.003444671630859375, 0.006610870361328125, -0.0066070556640625, 0.0117645263671875, 0.009490966796875, -0.03985595703125, -0.0032100677490234375, 0.0182342529296875, -0.01038360595703125, -0.007411956787109375, -0.004150390625, -0.0660400390625, -0.01255035400390625, -0.034912109375, -0.0042724609375, -0.05694580078125, 0.053955078125, -0.01137542724609375, -0.031402587890625, -0.06341552734375, -0.031280517578125, -0.01427459716796875, -0.060394287109375, -0.0672607421875, -0.002468109130859375, -0.00566864013671875, 0.0202484130859375, 0.0034275054931640625, 0.0318603515625, -0.038299560546875, 0.0390625, 0.0006995201110839844, -0.00799560546875, 0.020294189453125, 0.005390167236328125, 0.0204010009765625, -0.01306915283203125, 0.035797119140625, 0.0038967132568359375, 0.0289764404296875, -0.0291595458984375, 0.0721435546875, -0.00902557373046875, 0.04681396484375, -0.014862060546875, 0.0010194778442382812, 0.018890380859375, -0.01236724853515625, 0.00798797607421875, 0.0509033203125, -0.025970458984375, -0.005645751953125, 0.012939453125, 0.034027099609375, 0.005626678466796875, 0.0024852752685546875 ]
a72210f314487c977bed0fc02d61462a426d1297
Wordpress Stackexchange Q: dbDelta does not create Table, but returns success I wrote a Plugin, which creates a table on activation. On previous WP Versions, it worked fine. Now it doesn't. This is my function: function on_activation(){ global $wpdb; $table_name = $wpdb->prefix."tc_competition_data_all_countries_and_fields"; $sql = "CREATE TABLE $table_name ( mail VARCHAR(55), id VARCHAR(255) NOT NULL, time datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, name VARCHAR(255) NOT NULL, stra VARCHAR(255) NOT NULL, ort VARCHAR(255) NOT NULL, uid VARCHAR(255) NOT NULL, msg VARCHAR(500) NOT NULL, meta1 VARCHAR(500) NOT NULL, meta2 VARCHAR(500) NOT NULL, UNIQUE KEY id (id) );"; #dbDelta( $sql ); $c = dbDelta( $sql ); } It gets fied with this hook: register_activation_hook( __FILE__, array( 'tc_comp_form', 'on_activation' ) ); When I do a vardump in for $c, it returns, that the table has been created, but it does not exists. What could be the issue? Many Thanks! A: The Problem was in this line: time datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, I changed it to: time TIMESTAMP DEFAULT CURRENT_TIMESTAMP, Now, it works.
Q: dbDelta does not create Table, but returns success I wrote a Plugin, which creates a table on activation. On previous WP Versions, it worked fine. Now it doesn't. This is my function: function on_activation(){ global $wpdb; $table_name = $wpdb->prefix."tc_competition_data_all_countries_and_fields"; $sql = "CREATE TABLE $table_name ( mail VARCHAR(55), id VARCHAR(255) NOT NULL, time datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, name VARCHAR(255) NOT NULL, stra VARCHAR(255) NOT NULL, ort VARCHAR(255) NOT NULL, uid VARCHAR(255) NOT NULL, msg VARCHAR(500) NOT NULL, meta1 VARCHAR(500) NOT NULL, meta2 VARCHAR(500) NOT NULL, UNIQUE KEY id (id) );"; #dbDelta( $sql ); $c = dbDelta( $sql ); } It gets fied with this hook: register_activation_hook( __FILE__, array( 'tc_comp_form', 'on_activation' ) ); When I do a vardump in for $c, it returns, that the table has been created, but it does not exists. What could be the issue? Many Thanks! A: The Problem was in this line: time datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, I changed it to: time TIMESTAMP DEFAULT CURRENT_TIMESTAMP, Now, it works.
wordpress
{ "language": "en", "length": 165, "provenance": "stackexchange_00019.jsonl.gz:470278", "question_score": "4", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/246294" }
[ 0.0350341796875, 0.017669677734375, -0.031036376953125, -0.04052734375, 0.0271453857421875, -0.0276947021484375, 0.007843017578125, -0.0013895034790039062, 0.01277923583984375, 0.0195465087890625, -0.0303955078125, -0.01432037353515625, -0.0061187744140625, -0.0173492431640625, -0.0275115966796875, -0.04156494140625, 0.0362548828125, -0.0100555419921875, 0.0174713134765625, -0.007526397705078125, 0.0018625259399414062, 0.0135650634765625, 0.01554107666015625, 0.06768798828125, 0.0404052734375, -0.030914306640625, 0.0498046875, -0.036407470703125, 0.0462646484375, 0.0012969970703125, 0.036102294921875, -0.039398193359375, -0.0401611328125, 0.0216064453125, 0.04010009765625, -0.01435089111328125, 0.059295654296875, 0.00372314453125, 0.039459228515625, 0.0254669189453125, 0.0281829833984375, -0.008453369140625, 0.0592041015625, -0.0023040771484375, 0.0038166046142578125, -0.0592041015625, 0.0640869140625, -0.01102447509765625, 0.0213775634765625, 0.052093505859375, -0.0308837890625, 0.0721435546875, -0.022491455078125, -0.0232696533203125, 0.0009212493896484375, -0.042144775390625, -0.030517578125, 0.01324462890625, 0.0031833648681640625, 0.0469970703125, 0.0165252685546875, 0.0240325927734375, -0.007480621337890625, -0.007289886474609375, 0.032379150390625, 0.01094818115234375, 0.046783447265625, 0.022430419921875, -0.018218994140625, 0.02154541015625, 0.01062774658203125, -0.019439697265625, -0.00634002685546875, 0.0024261474609375, -0.04071044921875, 0.00978851318359375, 0.034027099609375, 0.001789093017578125, -0.01220703125, 0.0200958251953125, 0.00890350341796875, -0.018280029296875, -0.03448486328125, -0.044097900390625, 0.006313323974609375, -0.04962158203125, -0.0016651153564453125, 0.0162506103515625, -0.01605224609375, -0.00046896934509277344, -0.0243377685546875, -0.0061798095703125, -0.01342010498046875, 0.01483154296875, -0.004207611083984375, -0.0278472900390625, 0.0443115234375, 0.09747314453125, -0.033721923828125, -0.0008015632629394531, -0.00232696533203125, -0.03790283203125, -0.00502777099609375, -0.048431396484375, 0.007198333740234375, 0.046966552734375, -0.0345458984375, -0.0509033203125, -0.0034351348876953125, 0.0246429443359375, 0.01114654541015625, -0.043212890625, 0.003787994384765625, -0.0186920166015625, -0.01297760009765625, -0.020355224609375, -0.041961669921875, 0.01290130615234375, 0.01422119140625, -0.023162841796875, -0.0302581787109375, -0.01331329345703125, -0.036834716796875, 0.00102996826171875, -0.00775909423828125, -0.03045654296875, 0.0032405853271484375, 0.038909912109375, -0.04425048828125, -0.002231597900390625, -0.003849029541015625, 0.045684814453125, 0.08868408203125, 0.0202484130859375, -0.015380859375, 0.003997802734375, 0.04180908203125, -0.05743408203125, -0.0269012451171875, 0.0160675048828125, -0.01422882080078125, -0.0239715576171875, -0.0022258758544921875, -0.0311737060546875, -0.04925537109375, 0.0227508544921875, 0.0396728515625, -0.005649566650390625, -0.053466796875, -0.054931640625, -0.03204345703125, -0.01025390625, 0.01995849609375, -0.013946533203125, -0.020843505859375, -0.017608642578125, -0.002918243408203125, -0.01395416259765625, -0.00209808349609375, -0.0024356842041015625, 0.033477783203125, -0.040924072265625, -0.0305328369140625, -0.044647216796875, -0.07464599609375, 0.0517578125, -0.05914306640625, -0.009521484375, 0.037567138671875, 0.0245819091796875, -0.00943756103515625, -0.03619384765625, 0.03131103515625, 0.002834320068359375, -0.019378662109375, 0.037078857421875, -0.02789306640625, -0.047882080078125, 0.081298828125, -0.038726806640625, -0.05120849609375, -0.01145172119140625, 0.056915283203125, -0.023406982421875, -0.058563232421875, 0.06549072265625, 0.01558685302734375, 0.08746337890625, 0.0131683349609375, 0.02691650390625, 0.016845703125, 0.027862548828125, -0.059600830078125, 0.06170654296875, -0.0198211669921875, -0.03509521484375, -0.0261688232421875, -0.004756927490234375, -0.034515380859375, 0.0211639404296875, -0.05279541015625, 0.0166778564453125, -0.01180267333984375, -0.0166778564453125, -0.078125, 0.0287628173828125, -0.0450439453125, 0.06793212890625, 0.00044035911560058594, 0.0079803466796875, 0.0017042160034179688, -0.01165008544921875, -0.0072174072265625, -0.0137481689453125, -0.0234527587890625, 0.01959228515625, -0.0703125, 0.035614013671875, -0.0115966796875, 0.073486328125, -0.0130462646484375, -0.0323486328125, -0.0009131431579589844, -0.049041748046875, 0.01305389404296875, -0.013458251953125, -0.01251983642578125, -0.016754150390625, 0.05035400390625, -0.007110595703125, 0.05596923828125, 0.00974273681640625, -0.0018777847290039062, -0.00327301025390625, -0.050384521484375, -0.01029205322265625, -0.0241546630859375, -0.029937744140625, 0.01256561279296875, 0.05316162109375, 0.010528564453125, 0.04595947265625, -0.01141357421875, 0.029754638671875, 0.026519775390625, -0.0179290771484375, 0.0074615478515625, 0.0080718994140625, 0.0176239013671875, 0.038482666015625, -0.003265380859375, -0.0092010498046875, -0.004543304443359375, -0.0286865234375, -0.00928497314453125, 0.0293426513671875, -0.035186767578125, -0.032623291015625, -0.006191253662109375, -0.00189971923828125, 0.0070648193359375, -0.037200927734375, -0.009063720703125, -0.023345947265625, 0.03204345703125, 0.01166534423828125, 0.05059814453125, 0.034454345703125, -0.00579071044921875, -0.01169586181640625, 0.0035381317138671875, -0.012603759765625, 0.0004405975341796875, 0.0080413818359375, -0.040496826171875, 0.0273284912109375, -0.0709228515625, 0.0195159912109375, 0.03961181640625, 0.01494598388671875, -0.0080413818359375, 0.033203125, -0.007450103759765625, -0.0239410400390625, 0.019378662109375, -0.03594970703125, -0.0242462158203125, -0.05377197265625, -0.0180511474609375, -0.03143310546875, 0.01132965087890625, -0.01206207275390625, -0.038330078125, 0.0287933349609375, -0.01134490966796875, -0.04461669921875, 0.0204315185546875, -0.0022525787353515625, 0.01003265380859375, -0.017608642578125, 0.0264892578125, 0.044097900390625, -0.01526641845703125, -0.005718231201171875, -0.00861358642578125, -0.00861358642578125, 0.004970550537109375, -0.01457977294921875, -0.034759521484375, -0.025634765625, -0.0162811279296875, 0.04156494140625, 0.0204315185546875, 0.08746337890625, -0.0240631103515625, -0.065673828125, 0.001743316650390625, 0.04571533203125, -0.060272216796875, -0.08154296875, -0.0572509765625, 0.004940032958984375, -0.0178070068359375, -0.022369384765625, -0.003387451171875, 0.0390625, -0.041717529296875, 0.01291656494140625, 0.002346038818359375, -0.01702880859375, -0.01666259765625, -0.037567138671875, -0.06610107421875, -0.0167083740234375, 0.0058746337890625, 0.009552001953125, -0.01351165771484375, 0.031219482421875, -0.0178070068359375, -0.0241851806640625, -0.03057861328125, -0.038116455078125, 0.00734710693359375, -0.01131439208984375, 0.00876617431640625, 0.02374267578125, -0.006237030029296875, 0.037200927734375, 0.01934814453125, 0.02215576171875, -0.03900146484375, -0.046661376953125, 0.052642822265625, 0.0289459228515625, 0.05322265625, 0.04901123046875, -0.05645751953125, 0.0173797607421875, 0.043670654296875, -0.0258941650390625, 0.027252197265625, -0.0168914794921875, -0.008087158203125, -0.051177978515625, -0.029052734375, 0.0128173828125, -0.018646240234375, -0.001117706298828125, 0.025115966796875, 0.03759765625, 0.03094482421875, 0.0279541015625, -0.0253753662109375, -0.01763916015625, -0.0255889892578125, -0.050872802734375, 0.0694580078125, -0.01568603515625, -0.051361083984375, 0.0165252685546875, -0.007404327392578125, 0.03240966796875, -0.062744140625, 0.00806427001953125, -0.046173095703125, 0.0242156982421875, -0.03277587890625, -0.01690673828125, -0.00894927978515625, -0.00315093994140625, 0.01456451416015625, 0.055755615234375, 0.0032863616943359375, -0.0267181396484375, 0.01209259033203125, 0.0252227783203125, -0.077392578125, -0.036468505859375, -0.031585693359375, 0.0167083740234375, -0.03173828125, 0.003116607666015625, 0.005950927734375, -0.020477294921875, 0.01097869873046875, -0.0330810546875, -0.0172119140625, -0.0306549072265625, 0.038726806640625, -0.01216888427734375, 0.005634307861328125, 0.019287109375, -0.007663726806640625, 0.0034465789794921875, -0.02777099609375, -0.0064239501953125, -0.052215576171875, -0.0179290771484375, -0.020477294921875, 0.035980224609375, -0.00826263427734375, 0.026336669921875, -0.0169830322265625, 0.0305023193359375, 0.0195159912109375, 0.0009474754333496094, 0.0143280029296875, -0.0269012451171875, 0.0164337158203125, 0.0374755859375, 0.03436279296875, -0.0027332305908203125, -0.023193359375, -0.033599853515625, 0.024932861328125, 0.04119873046875, -0.0316162109375, 0.00891876220703125, -0.043060302734375, 0.002346038818359375, 0.0223388671875, -0.004180908203125, 0.004352569580078125, 0.041046142578125, -0.0267486572265625, 0.0271148681640625, -0.00511932373046875, -0.00930023193359375, 0.06317138671875, -0.02606201171875, -0.01142120361328125, -0.00273895263671875, 0.06707763671875, 0.0164642333984375, -0.01259613037109375, -0.0255584716796875, 0.005229949951171875, 0.028076171875, 0.03363037109375, 0.0222930908203125, -0.005886077880859375, -0.0228118896484375, 0.05047607421875, 0.0164947509765625, -0.00830078125, 0.00420379638671875, 0.037567138671875, -0.00598907470703125, -0.00870513916015625, -0.005847930908203125, -0.0245361328125, -0.00008231401443481445, 0.039154052734375, 0.008544921875, -0.006072998046875, -0.0125579833984375, 0.039093017578125, 0.0264739990234375, -0.047119140625, -0.056884765625, -0.033203125, 0.0196533203125, -0.0108489990234375, 0.024322509765625, -0.002315521240234375, 0.01033782958984375, -0.001537322998046875, -0.0241851806640625, 0.0167694091796875, -0.0260467529296875, 0.0082855224609375, -0.03857421875, 0.0239105224609375, 0.009857177734375, 0.01107025146484375, -0.0264739990234375, -0.0195770263671875, 0.10308837890625, 0.017333984375, -0.032958984375, 0.0296783447265625, -0.0302581787109375, -0.021453857421875, 0.01416778564453125, -0.00860595703125, 0.0200958251953125, 0.035003662109375, -0.016998291015625, 0.0009508132934570312, -0.013153076171875, 0.0290985107421875, -0.026580810546875, -0.005916595458984375, 0.01097869873046875, -0.0136871337890625, 0.0113067626953125, 0.0364990234375, 0.0014438629150390625, 0.0177154541015625, -0.013519287109375, 0.04168701171875, 0.01690673828125, 0.07135009765625, 0.0213623046875, -0.06744384765625, -0.0210418701171875, 0.053558349609375, -0.053924560546875, -0.04473876953125, -0.01558685302734375, 0.005825042724609375, 0.0631103515625, -0.023406982421875, -0.0209197998046875, 0.033782958984375, -0.0256805419921875, -0.010406494140625, 0.0264892578125, 0.0069427490234375, -0.051513671875, -0.0100860595703125, 0.0235137939453125, 0.0195770263671875, -0.0003650188446044922, 0.0035305023193359375, 0.01100921630859375, -0.0189666748046875, 0.045013427734375, -0.0166015625, 0.045257568359375, -0.032928466796875, -0.045440673828125, 0.031005859375, -0.058837890625, -0.060699462890625, 0.06298828125, 0.056121826171875, -0.023284912109375, -0.01526641845703125, 0.01226043701171875, -0.0253448486328125, 0.059356689453125, -0.03839111328125, -0.033966064453125, -0.038848876953125, 0.0154266357421875, 0.0275421142578125, 0.0244293212890625, 0.033294677734375, -0.04144287109375, -0.02459716796875, -0.036895751953125, 0.0098724365234375, 0.0103912353515625, 0.0184783935546875, -0.005840301513671875, 0.02392578125, 0.0020503997802734375, 0.0162353515625, -0.01983642578125, -0.032867431640625, 0.0311126708984375, 0.056304931640625, 0.035125732421875, -0.00908660888671875, 0.064453125, -0.0035266876220703125, 0.052398681640625, 0.026702880859375, 0.0200653076171875, -0.039642333984375, -0.0091552734375, 0.013092041015625, -0.01507568359375, -0.016876220703125, -0.006206512451171875, -0.054718017578125, -0.033538818359375, 0.0232086181640625, -0.01288604736328125, 0.0290985107421875, 0.0172119140625, 0.002750396728515625, 0.0002143383026123047, -0.00021576881408691406, 0.0247344970703125, 0.028411865234375, 0.036834716796875, -0.028961181640625, 0.026763916015625, -0.03619384765625, 0.02374267578125, 0.0005211830139160156, -0.06549072265625, -0.0027370452880859375, 0.058349609375, -0.0300140380859375, 0.04931640625, 0.0653076171875, -0.0038909912109375, 0.040802001953125, 0.0157012939453125, 0.0001417398452758789, 0.01422119140625, 0.0306243896484375, -0.03741455078125, -0.0193939208984375, 0.0693359375, 0.0255584716796875, -0.01087188720703125, 0.056488037109375, -0.01250457763671875, -0.0179290771484375, 0.047088623046875, 0.02813720703125, -0.0858154296875, 0.00710296630859375, 0.002750396728515625, 0.0001424551010131836, -0.0204010009765625, -0.017120361328125, 0.0107879638671875, 0.01245880126953125, -0.0142364501953125, 0.0455322265625, -0.048828125, -0.0186309814453125, 0.051300048828125, -0.027557373046875, -0.012939453125, 0.015716552734375, 0.0222930908203125, 0.024169921875, 0.00251007080078125, -0.029876708984375, 0.02667236328125, -0.0305633544921875, 0.050445556640625, -0.029083251953125, 0.023529052734375, -0.01239013671875, 0.03778076171875, 0.0204620361328125, -0.003940582275390625, -0.0010528564453125, -0.01387786865234375, 0.065185546875, 0.0253448486328125, -0.013641357421875, 0.0070037841796875, -0.01288604736328125, 0.068359375, -0.036956787109375, -0.035552978515625, 0.025970458984375, 0.0290985107421875, -0.025177001953125, 0.034423828125, -0.01378631591796875, -0.017730712890625, 0.019622802734375, -0.002490997314453125, -0.0028705596923828125, 0.007152557373046875, -0.029388427734375, 0.00971221923828125, -0.048126220703125, 0.0177001953125, 0.0185089111328125, -0.00988006591796875, -0.0305633544921875, -0.01496124267578125, 0.002239227294921875, -0.042083740234375, -0.00870513916015625, 0.0192108154296875, -0.058349609375, 0.05023193359375, 0.0019893646240234375, -0.0006036758422851562, -0.0030841827392578125, 0.02252197265625, -0.00616455078125, -0.00878143310546875, -0.0221710205078125, 0.043701171875, -0.04351806640625, 0.04364013671875, -0.035552978515625, 0.0240936279296875, 0.026947021484375, -0.010894775390625, 0.044647216796875, -0.00399017333984375, 0.032135009765625, 0.00293731689453125, 0.045440673828125, -0.040069580078125, -0.0543212890625, 0.019134521484375, -0.0180511474609375, 0.0269927978515625, 0.00934600830078125, -0.0185089111328125, 0.0164031982421875, -0.00713348388671875, -0.05364990234375, 0.0228424072265625, 0.00322723388671875, -0.01151275634765625, 0.005985260009765625, -0.00008404254913330078, 0.0114288330078125, -0.004734039306640625, -0.005954742431640625, -0.0369873046875, 0.01509857177734375, 0.038330078125, 0.046295166015625, -0.0390625, -0.0226898193359375, -0.0272674560546875, 0.050811767578125, 0.01331329345703125, -0.00997161865234375, 0.0606689453125, 0.035858154296875, -0.008148193359375, -0.02349853515625, -0.0102691650390625, 0.001728057861328125, -0.0026836395263671875, 0.0421142578125, 0.03948974609375, 0.0246124267578125, -0.01837158203125, -0.01287078857421875, 0.03631591796875, 0.06658935546875, -0.029876708984375, -0.00970458984375, 0.01201629638671875, 0.026275634765625, 0.01509857177734375, 0.0159912109375, 0.05084228515625, 0.04803466796875, 0.0570068359375, 0.00386810302734375, -0.01491546630859375, 0.005191802978515625, 0.0146484375, 0.00040149688720703125, 0.0036163330078125, -0.006481170654296875, -0.01410675048828125, -0.0223541259765625, -0.0227813720703125, 0.040374755859375, 0.0609130859375, 0.00695037841796875, 0.042724609375, -0.0177764892578125, -0.025848388671875, -0.0219879150390625, 0.041259765625, -0.005481719970703125, 0.02679443359375, -0.0302276611328125, -0.0123443603515625, -0.0216064453125, 0.033172607421875, 0.0140533447265625, 0.06671142578125, 0.06036376953125, 0.0222625732421875, -0.01502227783203125, 0.00765228271484375, 0.006954193115234375, -0.035125732421875, -0.026153564453125, -0.0301513671875, 0.021697998046875, 0.0111541748046875, 0.0211944580078125, -0.001537322998046875, 0.054168701171875, -0.0297393798828125, -0.00992584228515625, 0.042938232421875, -0.0011491775512695312, 0.0011272430419921875, 0.03448486328125, -0.0416259765625, 0.016082763671875, -0.0031871795654296875, -0.03546142578125, -0.021270751953125, -0.030517578125, 0.01617431640625, 0.0139923095703125, 0.045684814453125, 0.044464111328125, -0.0384521484375, -0.01256561279296875, 0.0234527587890625, 0.00262451171875, -0.028350830078125, -0.004138946533203125, 0.0200653076171875, 0.038238525390625, 0.015655517578125, -0.004436492919921875, 0.0140228271484375, 0.024871826171875, -0.007965087890625, -0.045867919921875, 0.088623046875, -0.03271484375, -0.002246856689453125, -0.005615234375, 0.01435089111328125, -0.0279998779296875, 0.003978729248046875, 0.0333251953125, 0.0030384063720703125, -0.0017805099487304688, -0.0188140869140625, -0.0267333984375, -0.01129150390625, 0.0380859375, -0.01953125, -0.02276611328125, 0.01326751708984375, 0.038848876953125, 0.01275634765625, 0.00501251220703125, -0.012359619140625, -0.0019207000732421875, 0.02825927734375, 0.011383056640625, 0.0169219970703125, 0.035308837890625, 0.01131439208984375, 0.041473388671875, -0.044769287109375, -0.042510986328125, 0.01096343994140625, -0.07537841796875, 0.00980377197265625, 0.0247344970703125, -0.00354766845703125, -0.02593994140625, -0.03717041015625, -0.0298309326171875, -0.0141754150390625, 0.0022907257080078125, -0.00922393798828125, -0.0147857666015625, -0.006595611572265625, 0.0614013671875, 0.0282745361328125, 0.04449462890625, -0.03302001953125, 0.0099945068359375, 0.045440673828125, 0.019866943359375, 0.0330810546875, -0.0246734619140625, -0.02032470703125, -0.0091094970703125, -0.0189971923828125, 0.0173187255859375, -0.0145416259765625, -0.0029544830322265625, -0.060760498046875, 0.044036865234375, 0.01482391357421875, 0.0023555755615234375, -0.07476806640625, 0.0606689453125, -0.0166168212890625, 0.05596923828125, -0.026336669921875, -0.00383758544921875, -0.0239410400390625, 0.0155029296875, -0.031341552734375, -0.038177490234375, -0.03424072265625, 0.035797119140625, -0.04638671875, 0.004230499267578125, 0.0112457275390625, 0.012481689453125, -0.0241241455078125, -0.0159759521484375, -0.0146942138671875, 0.0201416015625, -0.024932861328125, -0.033477783203125, 0.0245819091796875, -0.041290283203125, -0.017608642578125, -0.058197021484375, 0.0302734375, -0.12359619140625, -0.03192138671875, -0.058013916015625, 0.026458740234375, 0.0171051025390625, -0.048828125, -0.0643310546875, 0.0170440673828125, -0.0233001708984375, -0.02978515625, -0.01568603515625, -0.0222930908203125, -0.006557464599609375, 0.00885009765625, -0.0143280029296875, -0.0114288330078125, -0.0247344970703125, 0.042633056640625, 0.002330780029296875, 0.0099639892578125, 0.03558349609375, -0.0065765380859375, -0.0293731689453125, -0.0134124755859375, -0.00818634033203125, -0.0089263916015625, 0.008544921875, 0.0198516845703125, 0.00383758544921875, 0.04132080078125, -0.01239776611328125, -0.05279541015625, -0.01483154296875, -0.05450439453125, -0.004947662353515625, -0.08721923828125, -0.002246856689453125, -0.01385498046875, 0.0287933349609375, 0.031890869140625, 0.003749847412109375, -0.061737060546875, -0.03631591796875, -0.040802001953125, -0.0231170654296875, -0.01082611083984375, 0.0257415771484375, -0.0843505859375, 0.0187835693359375, 0.02764892578125, -0.0011281967163085938, 0.001201629638671875, 0.0201416015625, -0.0059051513671875, 0.01287078857421875, 0.059600830078125, -0.01739501953125, -0.021270751953125, 0.004589080810546875, -0.0140228271484375, 0.0019435882568359375, -0.0399169921875, -0.0084381103515625, 0.009613037109375, -0.05096435546875, -0.00637054443359375, -0.0012636184692382812, 0.0196685791015625, -0.01280975341796875, -0.012969970703125, 0.0244293212890625, 0.0020809173583984375, 0.01904296875, -0.00789642333984375, 0.0014753341674804688, -0.008087158203125, -0.0205841064453125, -0.0126953125, 0.00603485107421875, 0.035247802734375, -0.0182952880859375, 0.0450439453125, 0.02044677734375, -0.030059814453125, -0.015838623046875, 0.05224609375, 0.0228271484375, -0.04779052734375, 0.01212310791015625, -0.0164642333984375, 0.0081939697265625, 0.0025634765625, 0.00899505615234375, -0.0396728515625, 0.031463623046875, -0.0362548828125, 0.00774383544921875, 0.0243377685546875 ]
510177783769dbd702b2bc589d19689fc96551e2
Wordpress Stackexchange Q: Change default settings used by gallery shortcode I need to change the default gallery shortcode settings so that "columns" = 5 & "link" = 'file'. Which filter to add to the file functions.php? Source code: $atts = shortcode_atts( array( 'order' => 'ASC', 'orderby' => 'menu_order ID', 'id' => $post ? $post->ID : 0, 'itemtag' => $html5 ? 'figure' : 'dl', 'icontag' => $html5 ? 'div' : 'dt', 'captiontag' => $html5 ? 'figcaption' : 'dd', 'columns' => 3, 'size' => 'thumbnail', 'include' => '', 'exclude' => '', 'link' => '' ), $attr, 'gallery' ); A: The shortcode_atts_{$shortcode} filter allows default parameters to be modified for shortcodes. To modify the [gallery] shortcode, we'll use the shortcode_atts_gallery filter. Here is an example that changes the defaults for the columns and link parameters in the [gallery] shortcode. Note that if the user specifies values for these parameters, those values will be used; we're just changing the defaults. add_filter( 'shortcode_atts_gallery', 'wpse246345_shortcode_atts_gallery', 10, 4 ); function wpse246345_shortcode_atts_gallery( $out, $pairs, $atts, $shortcode ) { if ( ! isset( $atts['columns'] ) ) { $out['columns'] = 5; } if ( ! isset( $atts['link'] ) ) { $out['link'] = 'file'; } return $out; }
Q: Change default settings used by gallery shortcode I need to change the default gallery shortcode settings so that "columns" = 5 & "link" = 'file'. Which filter to add to the file functions.php? Source code: $atts = shortcode_atts( array( 'order' => 'ASC', 'orderby' => 'menu_order ID', 'id' => $post ? $post->ID : 0, 'itemtag' => $html5 ? 'figure' : 'dl', 'icontag' => $html5 ? 'div' : 'dt', 'captiontag' => $html5 ? 'figcaption' : 'dd', 'columns' => 3, 'size' => 'thumbnail', 'include' => '', 'exclude' => '', 'link' => '' ), $attr, 'gallery' ); A: The shortcode_atts_{$shortcode} filter allows default parameters to be modified for shortcodes. To modify the [gallery] shortcode, we'll use the shortcode_atts_gallery filter. Here is an example that changes the defaults for the columns and link parameters in the [gallery] shortcode. Note that if the user specifies values for these parameters, those values will be used; we're just changing the defaults. add_filter( 'shortcode_atts_gallery', 'wpse246345_shortcode_atts_gallery', 10, 4 ); function wpse246345_shortcode_atts_gallery( $out, $pairs, $atts, $shortcode ) { if ( ! isset( $atts['columns'] ) ) { $out['columns'] = 5; } if ( ! isset( $atts['link'] ) ) { $out['link'] = 'file'; } return $out; }
wordpress
{ "language": "en", "length": 195, "provenance": "stackexchange_00019.jsonl.gz:470291", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/246345" }
[ 0.0249176025390625, -0.02362060546875, 0.035125732421875, -0.0187835693359375, -0.00516510009765625, 0.00342559814453125, 0.039794921875, -0.01094818115234375, 0.002899169921875, 0.01036834716796875, -0.01349639892578125, -0.033203125, -0.0213623046875, -0.03497314453125, -0.016815185546875, -0.05023193359375, 0.0212249755859375, 0.016815185546875, 0.0231170654296875, -0.0165252685546875, 0.0036182403564453125, 0.0068206787109375, -0.0215911865234375, 0.07891845703125, -0.01448822021484375, 0.0006003379821777344, 0.08447265625, -0.0230255126953125, -0.01092529296875, -0.01511383056640625, 0.00298309326171875, -0.0023021697998046875, 0.04998779296875, -0.01117706298828125, -0.06298828125, 0.044830322265625, -0.01043701171875, -0.0018711090087890625, -0.038787841796875, 0.0357666015625, 0.0265350341796875, -0.01580810546875, 0.0088958740234375, -0.027191162109375, -0.027374267578125, 0.005535125732421875, 0.0087432861328125, -0.012115478515625, 0.0163116455078125, 0.0036907196044921875, 0.0240325927734375, 0.0032444000244140625, 0.0382080078125, -0.04058837890625, -0.01323699951171875, -0.017120361328125, -0.01007843017578125, -0.01800537109375, 0.044830322265625, -0.0094146728515625, -0.026123046875, -0.03167724609375, 0.0236053466796875, -0.035247802734375, 0.0159912109375, 0.0108489990234375, -0.01039886474609375, 0.03167724609375, 0.011627197265625, 0.0274810791015625, 0.0099029541015625, -0.037628173828125, -0.0023250579833984375, -0.05877685546875, -0.0184783935546875, 0.064697265625, -0.0092010498046875, 0.019744873046875, 0.0191650390625, -0.020751953125, 0.02935791015625, -0.032684326171875, 0.00270843505859375, 0.001026153564453125, 0.01328277587890625, 0.01134490966796875, -0.0020427703857421875, -0.0152435302734375, -0.00293731689453125, -0.006893157958984375, 0.0005626678466796875, 0.004383087158203125, -0.01153564453125, 0.00887298583984375, -0.0193634033203125, -0.03765869140625, -0.040191650390625, 0.0184478759765625, 0.006206512451171875, 0.04559326171875, 0.0009145736694335938, -0.0182037353515625, 0.00807952880859375, -0.039215087890625, -0.003265380859375, 0.00467681884765625, -0.0202484130859375, -0.00804901123046875, 0.0238189697265625, 0.035369873046875, -0.016021728515625, 0.01103973388671875, -0.0210418701171875, 0.0189971923828125, -0.035919189453125, -0.017547607421875, -0.0740966796875, 0.00302886962890625, -0.04290771484375, 0.01314544677734375, -0.0113983154296875, -0.0065765380859375, 0.048858642578125, -0.0292510986328125, -0.0006427764892578125, -0.01708984375, -0.036224365234375, -0.03155517578125, 0.00634765625, 0.01165008544921875, -0.0357666015625, 0.01885986328125, 0.0919189453125, 0.04620361328125, 0.032958984375, -0.0175933837890625, 0.043792724609375, -0.0223388671875, -0.0067138671875, 0.03204345703125, -0.006542205810546875, -0.02734375, -0.0171966552734375, -0.00839996337890625, -0.006313323974609375, -0.006793975830078125, 0.03997802734375, 0.042083740234375, -0.0257720947265625, -0.06524658203125, 0.048980712890625, 0.00740814208984375, 0.0599365234375, 0.01442718505859375, -0.0469970703125, 0.0218353271484375, 0.05206298828125, -0.01480865478515625, -0.08599853515625, -0.057159423828125, -0.00753021240234375, -0.011016845703125, -0.00904083251953125, -0.0821533203125, -0.092529296875, 0.0064849853515625, -0.004161834716796875, -0.01458740234375, 0.016510009765625, 0.058319091796875, -0.0117034912109375, -0.00771331787109375, -0.052398681640625, 0.0304412841796875, 0.01511383056640625, 0.02825927734375, -0.03564453125, 0.01287841796875, 0.03131103515625, -0.00074005126953125, -0.009185791015625, -0.03851318359375, 0.0298004150390625, -0.00016105175018310547, -0.046295166015625, 0.03936767578125, -0.003444671630859375, 0.047149658203125, 0.02496337890625, 0.00656890869140625, -0.00890350341796875, 0.017364501953125, -0.035552978515625, 0.00202178955078125, 0.0217132568359375, -0.0168914794921875, -0.01201629638671875, -0.01239776611328125, 0.0158233642578125, -0.0080413818359375, -0.0173492431640625, -0.023101806640625, 0.022125244140625, 0.0169677734375, -0.004871368408203125, -0.002628326416015625, -0.0182952880859375, 0.00873565673828125, -0.053558349609375, -0.0283203125, 0.036895751953125, -0.0323486328125, -0.0263214111328125, 0.042572021484375, 0.0262451171875, 0.0312042236328125, -0.0165252685546875, 0.012603759765625, -0.003459930419921875, 0.0225067138671875, -0.0086517333984375, -0.034423828125, -0.0156402587890625, 0.0226898193359375, 0.0293121337890625, -0.0175933837890625, -0.027587890625, -0.036834716796875, 0.005359649658203125, 0.0027713775634765625, -0.043243408203125, 0.040283203125, 0.004985809326171875, -0.01276397705078125, -0.04718017578125, -0.00420379638671875, -0.0214996337890625, -0.04510498046875, 0.0086822509765625, 0.045684814453125, 0.033477783203125, 0.01806640625, -0.003849029541015625, -0.0246734619140625, 0.08013916015625, 0.04351806640625, 0.04345703125, -0.035491943359375, -0.0161285400390625, 0.0241546630859375, 0.0074462890625, 0.0217742919921875, 0.0205230712890625, -0.03228759765625, 0.0141754150390625, 0.042236328125, -0.0020084381103515625, -0.0016994476318359375, 0.015655517578125, 0.007183074951171875, -0.004009246826171875, -0.0240020751953125, -0.007389068603515625, -0.01120758056640625, 0.08197021484375, 0.0240936279296875, 0.050537109375, 0.026458740234375, -0.0784912109375, 0.07421875, 0.01464080810546875, -0.006473541259765625, -0.0186004638671875, 0.01446533203125, 0.02203369140625, 0.02410888671875, -0.03350830078125, 0.018157958984375, -0.006900787353515625, 0.007122039794921875, -0.0103759765625, 0.045623779296875, -0.025909423828125, -0.01096343994140625, -0.0165557861328125, -0.0159912109375, -0.0007419586181640625, 0.004871368408203125, -0.0192413330078125, -0.029998779296875, 0.02105712890625, -0.0067291259765625, -0.0305023193359375, 0.007678985595703125, 0.035400390625, -0.0335693359375, 0.01165008544921875, -0.0205841064453125, 0.035400390625, -0.049560546875, 0.03466796875, 0.049346923828125, -0.061492919921875, 0.054718017578125, -0.01495361328125, 0.01502227783203125, -0.0310516357421875, -0.0014514923095703125, -0.032440185546875, -0.032012939453125, -0.00440216064453125, 0.04681396484375, -0.007434844970703125, 0.039794921875, -0.0615234375, -0.04010009765625, -0.04241943359375, -0.00701904296875, -0.04290771484375, -0.036468505859375, 0.05596923828125, -0.05322265625, 0.01099395751953125, -0.01248931884765625, -0.03143310546875, -0.0291290283203125, 0.007770538330078125, -0.004192352294921875, -0.006252288818359375, 0.01439666748046875, -0.0219268798828125, 0.01427459716796875, -0.0312042236328125, 0.0316162109375, -0.008148193359375, -0.0040740966796875, 0.0006999969482421875, 0.033843994140625, 0.00023353099822998047, -0.0303192138671875, 0.0024871826171875, -0.04254150390625, -0.002773284912109375, 0.0134429931640625, 0.0216217041015625, -0.04571533203125, 0.0110015869140625, -0.011260986328125, 0.06402587890625, 0.0574951171875, -0.03631591796875, 0.0169677734375, -0.03741455078125, 0.01316070556640625, 0.0399169921875, 0.0171051025390625, 0.011077880859375, 0.016937255859375, 0.0670166015625, -0.01364898681640625, -0.017425537109375, -0.0271148681640625, -0.039093017578125, 0.0203399658203125, 0.007022857666015625, 0.0221710205078125, -0.0161590576171875, 0.033721923828125, 0.007404327392578125, 0.0004563331604003906, 0.069580078125, -0.05206298828125, 0.01508331298828125, -0.00078582763671875, -0.01715087890625, -0.06695556640625, 0.03936767578125, -0.007568359375, -0.03619384765625, 0.00830841064453125, 0.0274505615234375, 0.0082244873046875, 0.011138916015625, 0.0004341602325439453, -0.0655517578125, 0.04669189453125, -0.044891357421875, 0.0072021484375, -0.0626220703125, -0.01230621337890625, -0.00687408447265625, 0.07989501953125, -0.0498046875, -0.01181793212890625, 0.01407623291015625, 0.005329132080078125, 0.024322509765625, -0.0162811279296875, -0.03912353515625, -0.034881591796875, -0.073974609375, 0.0421142578125, -0.0102081298828125, 0.0006160736083984375, 0.01410675048828125, -0.059051513671875, -0.002620697021484375, -0.06982421875, 0.060791015625, 0.05511474609375, 0.0222015380859375, -0.0006375312805175781, -0.007717132568359375, 0.011505126953125, -0.044525146484375, 0.0377197265625, -0.10089111328125, -0.0322265625, 0.041015625, 0.05712890625, -0.0088958740234375, -0.049652099609375, -0.0265655517578125, 0.0634765625, 0.0017538070678710938, -0.01427459716796875, 0.00304412841796875, 0.0017604827880859375, -0.01045989990234375, 0.0188140869140625, -0.01088714599609375, -0.0117645263671875, 0.01395416259765625, 0.0173187255859375, -0.021881103515625, 0.03125, -0.0279083251953125, 0.00724029541015625, 0.02239990234375, -0.0458984375, -0.060089111328125, -0.0550537109375, -0.020355224609375, 0.0254364013671875, -0.022613525390625, 0.004543304443359375, -0.06805419921875, -0.05322265625, 0.0225067138671875, -0.0006856918334960938, -0.01175689697265625, 0.0038547515869140625, 0.061431884765625, 0.0248260498046875, -0.01154327392578125, -0.02667236328125, 0.007167816162109375, 0.03094482421875, 0.005157470703125, 0.039642333984375, 0.03289794921875, -0.0025806427001953125, 0.023681640625, 0.00798797607421875, -0.006740570068359375, -0.0814208984375, 0.0699462890625, 0.00469207763671875, 0.00980377197265625, 0.002529144287109375, -0.005161285400390625, 0.045196533203125, -0.048248291015625, -0.0175933837890625, 0.0097503662109375, 0.0164337158203125, 0.034088134765625, 0.0257415771484375, -0.0228424072265625, -0.040496826171875, 0.00945281982421875, -0.0149383544921875, 0.060577392578125, 0.016021728515625, 0.0260162353515625, -0.0032863616943359375, -0.0211944580078125, 0.023773193359375, 0.01358795166015625, 0.0259552001953125, 0.0183868408203125, -0.00891876220703125, 0.058319091796875, -0.0214385986328125, -0.0075531005859375, 0.0081939697265625, -0.00327301025390625, -0.0202484130859375, 0.002323150634765625, -0.014556884765625, -0.0077362060546875, 0.015289306640625, -0.0248565673828125, -0.0029296875, -0.000598907470703125, 0.050048828125, 0.01959228515625, -0.02703857421875, -0.021026611328125, -0.05126953125, 0.0280303955078125, -0.0535888671875, 0.01861572265625, -0.002704620361328125, -0.009307861328125, 0.0241241455078125, 0.0024967193603515625, -0.002536773681640625, 0.00859832763671875, -0.01525115966796875, -0.0285491943359375, 0.0040283203125, -0.0009632110595703125, 0.0279388427734375, -0.00124359130859375, 0.00374603271484375, -0.006488800048828125, 0.042999267578125, -0.0115509033203125, -0.0003330707550048828, 0.02783203125, 0.0355224609375, -0.0159759521484375, -0.01044464111328125, -0.011810302734375, -0.026092529296875, 0.0148773193359375, -0.0308380126953125, -0.044830322265625, -0.0123748779296875, -0.0258941650390625, 0.020843505859375, 0.045745849609375, -0.0013093948364257812, -0.022125244140625, 0.015594482421875, -0.0217437744140625, 0.01065826416015625, -0.0236358642578125, -0.01922607421875, 0.00047659873962402344, -0.00449371337890625, 0.035736083984375, -0.0185089111328125, -0.03131103515625, -0.01898193359375, -0.006832122802734375, -0.0161285400390625, 0.01543426513671875, 0.0587158203125, -0.0535888671875, 0.031463623046875, -0.0165863037109375, 0.015655517578125, -0.00522613525390625, 0.0312347412109375, 0.0200042724609375, 0.01502227783203125, -0.01052093505859375, -0.0257720947265625, -0.0093994140625, -0.01122283935546875, 0.046630859375, -0.0161285400390625, -0.01346588134765625, -0.0245361328125, -0.0180816650390625, 0.0264739990234375, -0.006256103515625, -0.007598876953125, -0.0028514862060546875, -0.0164794921875, -0.012054443359375, 0.018218994140625, 0.00024175643920898438, 0.01385498046875, 0.004764556884765625, -0.0021305084228515625, 0.01500701904296875, -0.00502777099609375, -0.0086212158203125, -0.0150909423828125, 0.0228729248046875, 0.00037407875061035156, -0.041900634765625, -0.0142974853515625, -0.0682373046875, -0.014373779296875, 0.051361083984375, -0.026763916015625, 0.02825927734375, -0.0028533935546875, -0.0260467529296875, -0.00934600830078125, 0.004329681396484375, 0.003986358642578125, 0.051513671875, -0.01465606689453125, 0.0033740997314453125, 0.0246734619140625, -0.0284881591796875, -0.06689453125, 0.056610107421875, -0.0005211830139160156, 0.04949951171875, 0.020172119140625, -0.00022494792938232422, 0.069580078125, 0.0865478515625, -0.01861572265625, 0.05792236328125, 0.04510498046875, 0.003875732421875, 0.005645751953125, 0.0020771026611328125, 0.0576171875, 0.0272674560546875, 0.063720703125, -0.0138092041015625, -0.0178680419921875, 0.0267791748046875, -0.0295867919921875, 0.0265655517578125, 0.005889892578125, 0.061981201171875, -0.0240325927734375, 0.013031005859375, 0.02032470703125, -0.0281829833984375, 0.032073974609375, -0.004360198974609375, -0.0191650390625, -0.0024051666259765625, 0.027557373046875, -0.02880859375, -0.03826904296875, 0.0149383544921875, 0.025543212890625, -0.0134429931640625, -0.0041046142578125, -0.00015294551849365234, 0.00809478759765625, -0.011810302734375, -0.0306549072265625, -0.0096435546875, -0.0211944580078125, 0.03094482421875, 0.021270751953125, -0.015655517578125, -0.03411865234375, -0.043121337890625, -0.0233154296875, -0.0068359375, -0.060821533203125, 0.0279083251953125, -0.01555633544921875, 0.033477783203125, 0.035736083984375, -0.016632080078125, 0.0051727294921875, 0.01558685302734375, 0.011199951171875, 0.03863525390625, -0.016571044921875, 0.006565093994140625, 0.06158447265625, -0.0290679931640625, 0.0195770263671875, 0.02392578125, -0.0033588409423828125, -0.0094451904296875, -0.03216552734375, 0.061614990234375, -0.031280517578125, -0.0070953369140625, 0.015106201171875, 0.01535797119140625, 0.0004322528839111328, 0.0221099853515625, 0.0088043212890625, -0.05133056640625, -0.07061767578125, 0.0180816650390625, -0.09881591796875, -0.0261688232421875, -0.0216522216796875, -0.05999755859375, 0.04974365234375, -0.025726318359375, 0.0352783203125, 0.0170745849609375, 0.00437164306640625, -0.01366424560546875, -0.00933837890625, -0.0189666748046875, 0.019927978515625, 0.0084381103515625, 0.0197601318359375, 0.0025844573974609375, 0.006561279296875, 0.01267242431640625, 0.0159912109375, 0.0285491943359375, 0.0008711814880371094, 0.00785064697265625, 0.0201873779296875, 0.10137939453125, 0.0072784423828125, -0.01334381103515625, 0.025543212890625, -0.0256500244140625, -0.01421356201171875, -0.00946044921875, -0.02252197265625, 0.016143798828125, -0.042205810546875, -0.03570556640625, -0.01068115234375, 0.00829315185546875, 0.0107421875, 0.0027217864990234375, 0.042694091796875, -0.0310516357421875, -0.00574493408203125, 0.02410888671875, -0.0090484619140625, -0.04461669921875, 0.052642822265625, 0.0218353271484375, -0.0175323486328125, -0.032562255859375, -0.0178985595703125, 0.038055419921875, 0.022186279296875, 0.0278472900390625, 0.08172607421875, 0.023284912109375, 0.05987548828125, -0.00376129150390625, 0.01375579833984375, -0.006069183349609375, 0.003887176513671875, 0.01535797119140625, -0.0049285888671875, -0.003307342529296875, -0.01537322998046875, 0.08770751953125, 0.0204010009765625, 0.012176513671875, -0.046539306640625, -0.008056640625, 0.01401519775390625, 0.0017032623291015625, -0.007781982421875, -0.033172607421875, 0.008636474609375, -0.0706787109375, -0.03955078125, -0.056488037109375, -0.006099700927734375, 0.04266357421875, 0.0302886962890625, -0.01141357421875, -0.031280517578125, -0.0266571044921875, -0.0279693603515625, -0.025360107421875, 0.036163330078125, 0.043975830078125, 0.02069091796875, -0.0643310546875, 0.0533447265625, -0.038848876953125, 0.00630950927734375, -0.0258941650390625, 0.0246734619140625, -0.052490234375, 0.036041259765625, -0.062225341796875, -0.046356201171875, -0.043701171875, 0.07073974609375, 0.02630615234375, 0.03692626953125, 0.053375244140625, 0.005512237548828125, -0.028045654296875, 0.01065826416015625, 0.02117919921875, -0.0226898193359375, 0.00453948974609375, -0.019744873046875, 0.016082763671875, 0.022308349609375, -0.00939178466796875, -0.012786865234375, 0.0025482177734375, 0.051177978515625, -0.057342529296875, 0.047210693359375, -0.0192718505859375, -0.0189056396484375, 0.033416748046875, -0.006076812744140625, 0.048065185546875, -0.021392822265625, -0.05877685546875, -0.00821685791015625, -0.020782470703125, -0.08367919921875, 0.0465087890625, 0.057708740234375, -0.037017822265625, 0.01107025146484375, -0.031890869140625, -0.03277587890625, 0.0141754150390625, 0.0074005126953125, 0.0007295608520507812, 0.0207977294921875, 0.011810302734375, -0.0262298583984375, -0.040435791015625, -0.0186614990234375, -0.0293426513671875, 0.03271484375, 0.051483154296875, 0.05517578125, -0.01053619384765625, 0.03875732421875, 0.0097503662109375, -0.002330780029296875, 0.004253387451171875, 0.006473541259765625, 0.054443359375, -0.0059356689453125, -0.01294708251953125, -0.029266357421875, 0.0791015625, 0.006805419921875, 0.0443115234375, -0.042388916015625, 0.01007843017578125, -0.053619384765625, 0.0220489501953125, -0.021209716796875, 0.054412841796875, -0.02777099609375, -0.055145263671875, -0.09088134765625, -0.007472991943359375, 0.0272216796875, -0.00556182861328125, -0.044830322265625, 0.0282745361328125, 0.0277099609375, -0.0130462646484375, 0.04205322265625, -0.019073486328125, 0.0704345703125, 0.02984619140625, -0.017578125, 0.012786865234375, -0.028717041015625, -0.02496337890625, -0.0235748291015625, 0.0031280517578125, -0.034271240234375, -0.01580810546875, -0.07977294921875, 0.01001739501953125, 0.0372314453125, 0.01385498046875, -0.036468505859375, 0.01094818115234375, 0.035675048828125, -0.0210723876953125, 0.01739501953125, 0.004131317138671875, -0.00007003545761108398, -0.03179931640625, -0.006465911865234375, 0.00707244873046875, -0.0160675048828125, -0.0166015625, -0.02752685546875, -0.0185089111328125, 0.054107666015625, 0.023529052734375, -0.076171875, 0.045745849609375, 0.0006055831909179688, 0.0162200927734375, 0.0100860595703125, -0.0085601806640625, -0.01177215576171875, -0.01320648193359375, -0.02862548828125, -0.0270843505859375, -0.05780029296875, 0.01465606689453125, -0.03955078125, 0.0259857177734375, 0.0487060546875, -0.030181884765625, -0.01812744140625, 0.02789306640625, -0.00492095947265625, 0.0806884765625, -0.04266357421875, -0.039947509765625, 0.03839111328125, -0.0199432373046875, -0.004261016845703125, -0.0506591796875, -0.011749267578125, -0.0318603515625, 0.01837158203125, 0.0430908203125, -0.0511474609375, -0.00978851318359375, -0.050384521484375, -0.10870361328125, 0.0601806640625, -0.0069122314453125, -0.048370361328125, -0.030029296875, 0.0002586841583251953, -0.0259246826171875, 0.046478271484375, 0.0172576904296875, -0.033599853515625, -0.00843048095703125, 0.01776123046875, -0.008575439453125, 0.054290771484375, 0.00847625732421875, -0.02081298828125, 0.00475311279296875, -0.014434814453125, -0.01146697998046875, -0.01593017578125, 0.045654296875, -0.016876220703125, 0.03564453125, 0.023895263671875, -0.045654296875, -0.0111541748046875, -0.03173828125, -0.0179901123046875, 0.036346435546875, -0.0298919677734375, -0.04046630859375, -0.03436279296875, 0.0201416015625, 0.00008249282836914062, 0.008697509765625, 0.008697509765625, -0.0165863037109375, -0.01331329345703125, 0.02777099609375, -0.01334381103515625, -0.00531005859375, -0.047576904296875, -0.0238037109375, -0.004604339599609375, -0.01220703125, -0.0251312255859375, 0.0206298828125, -0.0170440673828125, 0.0048065185546875, 0.0184478759765625, -0.022369384765625, 0.003665924072265625, 0.017852783203125, 0.01296234130859375, -0.0160064697265625, 0.034332275390625, -0.040313720703125, 0.01517486572265625, 0.02008056640625, -0.019683837890625, -0.0293426513671875, -0.006450653076171875, -0.0006933212280273438, 0.003391265869140625, 0.0209197998046875, 0.0022716522216796875, 0.0166168212890625, 0.018402099609375, 0.00821685791015625, 0.0016698837280273438, 0.0198974609375, 0.0107269287109375, -0.0016450881958007812, -0.0145111083984375, -0.0204925537109375, 0.001529693603515625, -0.021484375, 0.0272979736328125, -0.007663726806640625, 0.0130462646484375, -0.00022077560424804688, 0.003017425537109375, 0.041778564453125, -0.04150390625, -0.00034332275390625, 0.0233306884765625, 0.0047760009765625, -0.03668212890625, 0.02825927734375, -0.0521240234375, 0.01446533203125, 0.00679779052734375 ]
c30c007d4f981b812548fa42f16ebb141c46e778
Wordpress Stackexchange Q: Notice: Undefined index: host in /var/www/html/wp-includes/canonical.php on line 445 After changing siteurl ,home url form database it shows 3/4 errors called Notice: Undefined index: host in /var/www/html/wp-includes/canonical.php on line 445 Notice: Undefined index: scheme in /var/www/html/wp-includes/canonical.php on line 465 Notice: Undefined index: host in /var/www/html/wp-includes/canonical.php on line 444 Notice: Undefined index: host in /var/www/html/wp-includes/canonical.php on line 444 I have no idea whats wrong with this. A: When I change the url from the database I just put forgot to keep http before the ip address . When I set the http it works fine here.
Q: Notice: Undefined index: host in /var/www/html/wp-includes/canonical.php on line 445 After changing siteurl ,home url form database it shows 3/4 errors called Notice: Undefined index: host in /var/www/html/wp-includes/canonical.php on line 445 Notice: Undefined index: scheme in /var/www/html/wp-includes/canonical.php on line 465 Notice: Undefined index: host in /var/www/html/wp-includes/canonical.php on line 444 Notice: Undefined index: host in /var/www/html/wp-includes/canonical.php on line 444 I have no idea whats wrong with this. A: When I change the url from the database I just put forgot to keep http before the ip address . When I set the http it works fine here. A: As an update on this: You can debug this by entering your WordPress Database table named "wp_options" and check for the tables "siteurl" and "home". These should reveal a mistake with your url (often http:// or https:// is not copied correctly). A: This is a bug in WordPress, scheduled for fix in v5.0: https://core.trac.wordpress.org/ticket/34353
wordpress
{ "language": "en", "length": 151, "provenance": "stackexchange_00019.jsonl.gz:470292", "question_score": "7", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/246347" }
[ 0.0297393798828125, 0.033660888671875, -0.04345703125, -0.022796630859375, 0.04443359375, -0.0537109375, 0.0257110595703125, -0.038055419921875, 0.06591796875, -0.0096588134765625, -0.0196075439453125, -0.0440673828125, -0.0022029876708984375, -0.051361083984375, -0.013671875, -0.00933074951171875, 0.0151214599609375, -0.01044464111328125, 0.00630950927734375, -0.00015413761138916016, 0.01406097412109375, 0.004608154296875, -0.02484130859375, 0.020050048828125, 0.005840301513671875, -0.07568359375, 0.07537841796875, 0.00940704345703125, -0.029998779296875, -0.033294677734375, 0.01141357421875, 0.0240325927734375, 0.00848388671875, 0.033660888671875, -0.0196533203125, -0.038360595703125, 0.0273895263671875, 0.005374908447265625, 0.0022792816162109375, 0.034149169921875, -0.01107025146484375, 0.0082244873046875, 0.09661865234375, 0.0160675048828125, 0.0171661376953125, 0.01236724853515625, -0.0214385986328125, -0.0531005859375, 0.014678955078125, 0.0157012939453125, -0.002773284912109375, 0.0218048095703125, -0.00884246826171875, -0.056304931640625, 0.004703521728515625, 0.0029163360595703125, 0.0136566162109375, 0.0406494140625, 0.04296875, -0.00870513916015625, -0.0462646484375, 0.0215606689453125, -0.004913330078125, -0.0133056640625, -0.0301513671875, -0.0181427001953125, 0.00958251953125, -0.0012149810791015625, -0.056854248046875, -0.05389404296875, 0.039276123046875, -0.01233673095703125, 0.00571441650390625, 0.0296173095703125, -0.017364501953125, -0.0631103515625, 0.01739501953125, -0.02789306640625, 0.0036029815673828125, 0.038330078125, -0.0283203125, 0.019622802734375, -0.055267333984375, -0.01558685302734375, 0.002681732177734375, 0.021270751953125, -0.024261474609375, -0.01800537109375, -0.01580810546875, -0.0142974853515625, -0.004970550537109375, -0.041229248046875, -0.0292510986328125, 0.0172119140625, 0.0270538330078125, -0.04925537109375, 0.045928955078125, 0.046875, -0.0120697021484375, -0.02337646484375, -0.01544952392578125, -0.0230865478515625, -0.01904296875, -0.00716400146484375, -0.0074310302734375, 0.042266845703125, 0.0053558349609375, 0.049713134765625, 0.03521728515625, 0.0309600830078125, 0.0117950439453125, -0.028411865234375, -0.0172576904296875, 0.00008928775787353516, -0.032470703125, -0.010833740234375, -0.045013427734375, -0.00994110107421875, -0.021240234375, -0.0026874542236328125, 0.00760650634765625, 0.046966552734375, -0.03424072265625, -0.0650634765625, -0.0228729248046875, -0.059173583984375, -0.0190277099609375, 0.00962066650390625, -0.04486083984375, 0.043914794921875, -0.0146026611328125, 0.02728271484375, 0.045318603515625, -0.008026123046875, -0.0278167724609375, -0.02886962890625, -0.0025043487548828125, 0.04736328125, 0.00313568115234375, 0.0274810791015625, -0.03216552734375, -0.056549072265625, 0.0016145706176757812, -0.0255126953125, 0.02435302734375, 0.03973388671875, 0.0400390625, -0.0163726806640625, -0.03582763671875, -0.04449462890625, 0.01111602783203125, -0.019134521484375, 0.039520263671875, 0.006694793701171875, -0.035064697265625, -0.01291656494140625, 0.0190887451171875, -0.037139892578125, -0.036651611328125, -0.0657958984375, 0.0189056396484375, -0.020416259765625, 0.0192413330078125, -0.0298004150390625, -0.062225341796875, 0.0118560791015625, -0.06634521484375, -0.0147552490234375, 0.0233917236328125, -0.007415771484375, 0.004611968994140625, -0.04669189453125, 0.04095458984375, 0.0226898193359375, -0.00696563720703125, 0.056182861328125, -0.00020253658294677734, -0.0330810546875, 0.020843505859375, 0.07049560546875, 0.0137786865234375, -0.0157928466796875, 0.0277252197265625, 0.006072998046875, -0.07342529296875, 0.049652099609375, -0.006145477294921875, 0.05584716796875, 0.0150604248046875, -0.01145172119140625, 0.058013916015625, 0.0242462158203125, -0.0266265869140625, 0.04510498046875, -0.03668212890625, -0.0134735107421875, 0.0177764892578125, 0.044830322265625, -0.025390625, -0.03564453125, -0.0258941650390625, 0.0022220611572265625, -0.019775390625, -0.010040283203125, -0.05450439453125, -0.006923675537109375, -0.0215606689453125, 0.02618408203125, 0.00856781005859375, 0.0068511962890625, 0.0205078125, 0.0221710205078125, -0.037078857421875, -0.01080322265625, -0.050750732421875, 0.0091094970703125, -0.0029850006103515625, 0.0008649826049804688, 0.0058746337890625, -0.01306915283203125, 0.02874755859375, 0.0025959014892578125, -0.01494598388671875, 0.005474090576171875, 0.0211181640625, -0.001094818115234375, -0.0194854736328125, -0.00897216796875, 0.018829345703125, -0.00601959228515625, 0.00969696044921875, 0.0516357421875, -0.01131439208984375, -0.006114959716796875, -0.0479736328125, 0.007541656494140625, -0.007598876953125, -0.0260772705078125, -0.00803375244140625, 0.04046630859375, 0.035430908203125, -0.035369873046875, -0.0053253173828125, 0.0278167724609375, -0.0016813278198242188, -0.0450439453125, 0.01389312744140625, 0.00930023193359375, -0.006755828857421875, 0.04193115234375, -0.0122222900390625, 0.009490966796875, 0.009735107421875, 0.0240325927734375, -0.0232086181640625, 0.035125732421875, 0.0289154052734375, 0.027313232421875, -0.03662109375, 0.02056884765625, -0.004302978515625, -0.03594970703125, -0.04150390625, -0.003082275390625, -0.01715087890625, -0.00667572021484375, -0.0105743408203125, -0.0110931396484375, -0.0279998779296875, -0.0009517669677734375, 0.03485107421875, 0.0114288330078125, -0.01442718505859375, -0.0286102294921875, -0.01551055908203125, -0.00888824462890625, -0.03271484375, 0.044219970703125, -0.01947021484375, -0.0221405029296875, -0.033050537109375, 0.0335693359375, 0.016265869140625, -0.029205322265625, -0.03399658203125, 0.0011005401611328125, 0.0292816162109375, -0.0428466796875, 0.0051422119140625, -0.034637451171875, 0.02252197265625, -0.025543212890625, -0.026885986328125, 0.01474761962890625, -0.00960540771484375, -0.051605224609375, -0.02423095703125, -0.0034008026123046875, -0.0036602020263671875, -0.004108428955078125, 0.05389404296875, 0.046722412109375, 0.012359619140625, -0.0176849365234375, 0.020538330078125, 0.012725830078125, 0.052886962890625, -0.0248260498046875, 0.005260467529296875, 0.05517578125, -0.095458984375, -0.005657196044921875, 0.0196685791015625, -0.06427001953125, 0.0535888671875, 0.001129150390625, 0.0104217529296875, -0.0212554931640625, -0.1029052734375, -0.1158447265625, -0.049957275390625, 0.02667236328125, -0.036041259765625, 0.002655029296875, 0.01641845703125, 0.024566650390625, -0.0295867919921875, 0.00603485107421875, -0.0123748779296875, -0.042083740234375, -0.1043701171875, -0.10052490234375, -0.11614990234375, 0.0011568069458007812, -0.0158843994140625, 0.04168701171875, 0.005535125732421875, -0.0171966552734375, -0.0006551742553710938, -0.0035343170166015625, -0.004520416259765625, 0.0144500732421875, 0.0007243156433105469, -0.0782470703125, -0.010498046875, -0.00086212158203125, -0.049957275390625, 0.02191162109375, -0.00910186767578125, -0.021270751953125, 0.006710052490234375, -0.032684326171875, 0.01436614990234375, -0.003978729248046875, 0.01351165771484375, -0.002262115478515625, -0.0161895751953125, -0.01812744140625, 0.004695892333984375, -0.04364013671875, -0.006328582763671875, 0.0010442733764648438, -0.0178680419921875, -0.04364013671875, 0.01357269287109375, -0.0241851806640625, -0.00299835205078125, -0.0209808349609375, -0.0283660888671875, -0.04913330078125, -0.00469970703125, -0.03472900390625, 0.03717041015625, -0.0058135986328125, -0.007434844970703125, 0.0019159317016601562, 0.0280609130859375, -0.0023632049560546875, -0.03448486328125, 0.00232696533203125, 0.0213165283203125, 0.041259765625, -0.00855255126953125, 0.0335693359375, -0.0211334228515625, 0.0214996337890625, -0.0228729248046875, 0.0232696533203125, -0.0195770263671875, -0.013580322265625, -0.019439697265625, 0.05096435546875, -0.03460693359375, -0.0196685791015625, 0.0019521713256835938, 0.0155487060546875, -0.027252197265625, 0.012054443359375, -0.04241943359375, -0.006591796875, -0.03997802734375, -0.027862548828125, -0.0209503173828125, -0.0285491943359375, 0.008056640625, -0.0030155181884765625, 0.003505706787109375, -0.040374755859375, 0.0259246826171875, -0.0310516357421875, -0.0225372314453125, 0.027435302734375, -0.0281829833984375, -0.030303955078125, -0.032806396484375, -0.0178680419921875, -0.05999755859375, -0.03167724609375, 0.015106201171875, 0.0665283203125, 0.01461029052734375, -0.0499267578125, -0.01197052001953125, 0.04412841796875, -0.03582763671875, -0.00832366943359375, -0.0144500732421875, 0.0302734375, -0.01412200927734375, -0.005817413330078125, -0.024200439453125, -0.009368896484375, -0.016143798828125, -0.037750244140625, -0.059173583984375, 0.0034732818603515625, 0.004566192626953125, 0.036895751953125, 0.03265380859375, -0.0170135498046875, -0.04620361328125, -0.00487518310546875, 0.0112762451171875, 0.06610107421875, 0.0090789794921875, 0.00762939453125, -0.048553466796875, -0.054107666015625, 0.0020542144775390625, -0.0227813720703125, -0.01219940185546875, 0.00904083251953125, 0.037445068359375, 0.037567138671875, -0.00970458984375, 0.065185546875, 0.04443359375, 0.029449462890625, 0.036834716796875, 0.053253173828125, 0.009429931640625, -0.0104217529296875, 0.0260772705078125, 0.0206146240234375, -0.00769805908203125, 0.04327392578125, -0.04132080078125, 0.0178985595703125, -0.053955078125, 0.0139312744140625, 0.0238494873046875, -0.01343536376953125, 0.013763427734375, -0.004192352294921875, 0.03314208984375, 0.0193328857421875, -0.052978515625, -0.0225677490234375, 0.01215362548828125, 0.04144287109375, -0.055633544921875, 0.022491455078125, 0.01340484619140625, 0.0262451171875, 0.0003178119659423828, 0.0020599365234375, 0.027130126953125, 0.01488494873046875, 0.0109710693359375, -0.007160186767578125, 0.00809478759765625, -0.048095703125, 0.03033447265625, -0.0306396484375, -0.0262603759765625, 0.018157958984375, -0.017242431640625, 0.0521240234375, -0.0062408447265625, -0.06317138671875, 0.04644775390625, -0.022064208984375, -0.0017042160034179688, 0.061004638671875, 0.03497314453125, -0.0020961761474609375, -0.01515960693359375, 0.02142333984375, 0.0223388671875, 0.042388916015625, -0.0008597373962402344, 0.0176544189453125, 0.0262298583984375, 0.032745361328125, -0.00803375244140625, 0.0200653076171875, 0.036102294921875, 0.041259765625, 0.01013946533203125, -0.01702880859375, -0.02899169921875, -0.02166748046875, 0.06695556640625, 0.005035400390625, -0.0182037353515625, -0.0095672607421875, 0.074951171875, 0.04278564453125, -0.0177764892578125, 0.0224761962890625, 0.029144287109375, 0.0298614501953125, 0.01271820068359375, -0.0300140380859375, -0.0034885406494140625, -0.0247039794921875, -0.01025390625, -0.004138946533203125, -0.056549072265625, -0.04266357421875, -0.013763427734375, 0.045379638671875, 0.035614013671875, -0.00568389892578125, -0.0164947509765625, -0.046905517578125, -0.04144287109375, 0.036834716796875, -0.006999969482421875, 0.00836181640625, 0.04248046875, -0.0033016204833984375, 0.057647705078125, -0.00969696044921875, -0.03656005859375, -0.047943115234375, -0.01617431640625, -0.016754150390625, 0.01491546630859375, 0.032623291015625, -0.01290130615234375, -0.0007534027099609375, -0.01226043701171875, 0.007518768310546875, -0.00986480712890625, -0.0038967132568359375, 0.047607421875, -0.00147247314453125, -0.03076171875, -0.00792694091796875, -0.050628662109375, -0.0204620361328125, -0.0036640167236328125, -0.01174163818359375, -0.038726806640625, -0.0129852294921875, 0.00817108154296875, -0.01103973388671875, -0.0135498046875, -0.030029296875, -0.0297088623046875, 0.044952392578125, 0.038482666015625, -0.032806396484375, -0.01444244384765625, 0.012725830078125, -0.002361297607421875, 0.002597808837890625, 0.0031452178955078125, 0.013885498046875, 0.052520751953125, -0.0290679931640625, -0.0129241943359375, -0.050628662109375, 0.01210784912109375, -0.03240966796875, 0.033050537109375, 0.041900634765625, 0.041107177734375, 0.00290679931640625, -0.0197296142578125, 0.005802154541015625, -0.003971099853515625, -0.0377197265625, 0.006938934326171875, 0.021026611328125, 0.0235137939453125, -0.078857421875, 0.00933074951171875, 0.048065185546875, -0.02581787109375, -0.00884246826171875, 0.0158233642578125, -0.008392333984375, 0.0149688720703125, -0.00879669189453125, -0.031097412109375, 0.048065185546875, 0.04498291015625, -0.01641845703125, 0.043365478515625, 0.007755279541015625, -0.0002853870391845703, 0.03680419921875, -0.001766204833984375, -0.01230621337890625, -0.04315185546875, 0.0079193115234375, -0.008026123046875, 0.0110015869140625, 0.01922607421875, -0.01300811767578125, -0.01617431640625, 0.0298309326171875, 0.037078857421875, -0.04443359375, -0.01212310791015625, 0.0166015625, 0.01210784912109375, -0.01442718505859375, 0.013641357421875, 0.01157379150390625, 0.019500732421875, -0.009796142578125, -0.0113983154296875, -0.01483917236328125, -0.0169830322265625, 0.01453399658203125, -0.0072174072265625, -0.01029205322265625, 0.017852783203125, 0.012451171875, -0.0013980865478515625, -0.005275726318359375, 0.0179595947265625, 0.00390625, -0.0004611015319824219, 0.01284027099609375, 0.0185546875, -0.029083251953125, -0.04022216796875, 0.01629638671875, 0.001758575439453125, -0.031524658203125, 0.0099334716796875, -0.0001652240753173828, 0.018585205078125, 0.0024871826171875, 0.003993988037109375, -0.0032825469970703125, -0.0154571533203125, -0.04840087890625, 0.10162353515625, -0.003353118896484375, 0.0194549560546875, -0.0142364501953125, -0.06951904296875, -0.0225982666015625, -0.02484130859375, 0.0049285888671875, -0.006717681884765625, -0.00829315185546875, 0.07025146484375, -0.018035888671875, -0.025543212890625, 0.0283966064453125, -0.034515380859375, -0.0198211669921875, -0.03448486328125, 0.0584716796875, -0.07275390625, -0.039703369140625, 0.00998687744140625, -0.025604248046875, -0.04443359375, -0.035369873046875, -0.02606201171875, 0.032073974609375, -0.045867919921875, 0.01019287109375, 0.0176239013671875, 0.022918701171875, -0.01264190673828125, 0.0079498291015625, -0.0306854248046875, 0.05706787109375, -0.0206146240234375, 0.06488037109375, -0.0679931640625, -0.002925872802734375, 0.0192108154296875, 0.0260162353515625, 0.0711669921875, 0.0262298583984375, -0.04058837890625, 0.0004856586456298828, 0.01220703125, -0.01175689697265625, -0.0408935546875, 0.06121826171875, -0.0193939208984375, 0.036468505859375, 0.04302978515625, -0.032623291015625, 0.02374267578125, 0.00630950927734375, -0.05718994140625, -0.01119232177734375, 0.0288238525390625, 0.00836181640625, -0.007427215576171875, -0.0011491775512695312, -0.0310516357421875, 0.005992889404296875, 0.034820556640625, -0.0100555419921875, -0.00818634033203125, 0.013824462890625, -0.027618408203125, -0.01345062255859375, 0.050506591796875, -0.049652099609375, 0.032379150390625, -0.0297393798828125, -0.01233673095703125, 0.0169677734375, 0.02239990234375, 0.038238525390625, -0.00714874267578125, 0.0022678375244140625, 0.0286865234375, -0.0233306884765625, 0.0772705078125, 0.088623046875, 0.04681396484375, 0.0298004150390625, 0.044586181640625, 0.00455474853515625, 0.07623291015625, -0.0555419921875, -0.026641845703125, 0.004734039306640625, 0.0099334716796875, 0.038543701171875, 0.0006990432739257812, 0.04901123046875, -0.001983642578125, -0.005069732666015625, 0.017913818359375, -0.0257568359375, 0.006500244140625, -0.01363372802734375, 0.01885986328125, 0.037841796875, 0.0181884765625, 0.0151519775390625, -0.017669677734375, 0.00603485107421875, -0.016387939453125, 0.018341064453125, 0.0265960693359375, -0.0001926422119140625, -0.01128387451171875, -0.00586700439453125, -0.0279541015625, 0.07281494140625, 0.0136871337890625, 0.0151214599609375, -0.034759521484375, -0.05181884765625, 0.014801025390625, 0.0156402587890625, 0.0181121826171875, 0.04913330078125, 0.06256103515625, 0.04119873046875, -0.0404052734375, 0.01068115234375, 0.0821533203125, -0.0272674560546875, -0.0141143798828125, -0.0174102783203125, 0.03607177734375, 0.06024169921875, 0.032440185546875, 0.007137298583984375, 0.0308685302734375, 0.038970947265625, -0.022674560546875, 0.023101806640625, -0.0023059844970703125, -0.0241851806640625, 0.028594970703125, 0.010498046875, 0.0205078125, 0.0125579833984375, 0.033935546875, -0.001651763916015625, 0.00530242919921875, 0.0006465911865234375, -0.0166015625, 0.0308380126953125, 0.037200927734375, -0.007595062255859375, 0.0211944580078125, -0.04632568359375, 0.0110626220703125, 0.050079345703125, 0.002178192138671875, 0.026611328125, 0.036956787109375, 0.0002455711364746094, 0.0028400421142578125, 0.00006192922592163086, 0.0265045166015625, 0.0149688720703125, -0.00206756591796875, 0.101806640625, -0.037567138671875, -0.0017871856689453125, 0.0192718505859375, 0.01751708984375, -0.027374267578125, 0.0189971923828125, -0.012603759765625, -0.0202484130859375, 0.0147552490234375, -0.01163482666015625, -0.05126953125, 0.00026607513427734375, 0.0252838134765625, -0.05596923828125, 0.02532958984375, 0.02490234375, -0.005802154541015625, -0.053497314453125, 0.050018310546875, -0.0175323486328125, -0.07763671875, -0.043609619140625, 0.039581298828125, 0.0009388923645019531, 0.053985595703125, -0.035125732421875, 0.003940582275390625, -0.00726318359375, -0.039642333984375, 0.00777435302734375, -0.014312744140625, 0.0016775131225585938, 0.0190582275390625, 0.016265869140625, 0.01290130615234375, 0.01213836669921875, -0.02203369140625, 0.041290283203125, -0.010223388671875, 0.055084228515625, -0.01024627685546875, 0.057891845703125, -0.00878143310546875, -0.02008056640625, -0.037445068359375, -0.032196044921875, -0.026947021484375, 0.0113372802734375, -0.0221710205078125, -0.03704833984375, 0.01421356201171875, -0.01093292236328125, 0.0015897750854492188, -0.0394287109375, -0.0041656494140625, -0.0207366943359375, -0.055419921875, -0.0268402099609375, 0.01593017578125, 0.0301513671875, -0.0243072509765625, -0.007415771484375, 0.0264129638671875, -0.06597900390625, 0.0311737060546875, -0.037078857421875, 0.058502197265625, -0.0228729248046875, -0.024627685546875, -0.06646728515625, -0.0057525634765625, -0.0257415771484375, 0.0147705078125, 0.01149749755859375, 0.0190582275390625, 0.046966552734375, -0.02325439453125, -0.041778564453125, -0.01983642578125, 0.0026874542236328125, 0.0160064697265625, -0.021697998046875, -0.019439697265625, 0.032684326171875, -0.0295562744140625, -0.018157958984375, -0.0166778564453125, 0.00499725341796875, -0.061065673828125, -0.01410675048828125, -0.01155853271484375, -0.0012636184692382812, 0.0054931640625, -0.033843994140625, -0.07855224609375, 0.07373046875, -0.0035037994384765625, -0.0261688232421875, -0.04193115234375, -0.020294189453125, -0.0249176025390625, 0.056793212890625, 0.0005898475646972656, -0.0478515625, -0.004093170166015625, 0.062469482421875, 0.0048828125, 0.021392822265625, 0.018585205078125, -0.039520263671875, -0.0059356689453125, 0.0179443359375, 0.03131103515625, 0.02801513671875, 0.024658203125, 0.0016946792602539062, 0.020965576171875, 0.03643798828125, -0.02923583984375, -0.0161285400390625, -0.01557159423828125, -0.037750244140625, 0.0105438232421875, -0.01299285888671875, -0.020233154296875, 0.01523590087890625, 0.03289794921875, 0.067138671875, 0.0032749176025390625, -0.053863525390625, -0.00635528564453125, -0.0236663818359375, 0.0023479461669921875, -0.0594482421875, -0.00768280029296875, -0.08966064453125, -0.05902099609375, 0.00022161006927490234, 0.005771636962890625, -0.01114654541015625, -0.0175933837890625, -0.0360107421875, 0.00021314620971679688, 0.0035610198974609375, 0.00995635986328125, -0.0188446044921875, -0.035552978515625, 0.01380157470703125, -0.00649261474609375, 0.009918212890625, -0.00911712646484375, 0.031402587890625, 0.0016927719116210938, 0.0158843994140625, 0.002407073974609375, -0.0225982666015625, -0.0005726814270019531, 0.00919342041015625, 0.004787445068359375, -0.0134429931640625, -0.007122039794921875, -0.03936767578125, 0.0282135009765625, 0.0065460205078125, -0.0166168212890625, -0.00019276142120361328, 0.033477783203125, 0.005615234375, -0.0408935546875, 0.019012451171875, -0.007534027099609375, 0.03448486328125, -0.0183563232421875, 0.059844970703125, -0.019989013671875, -0.0197906494140625, 0.01377105712890625, -0.040191650390625, 0.000698089599609375, 0.0244903564453125, -0.017333984375, -0.025054931640625, 0.0005221366882324219, -0.026947021484375, 0.0183868408203125, -0.0038890838623046875 ]
79fa0707411673abc768e430ef1ab42dba3d7f86
Wordpress Stackexchange Q: admin_post hook not called I have good experience in other CMS. but I'm very new in Wordpress. My goal is to intercept POST values in some of the form of a pre-existent site. Following documentation I've done the following steps: * *I had a look on the page source, finding that the form action: < form method='post' enctype='multipart/form-data' id='gform_4' action='/volunteer/'> * *in theme folder I modified function.php adding the code: add_action( 'admin_post_nopriv_/volunteer/', 'send_contact_to_civicrm'); add_action( 'admin_post_/volunteer/', 'send_contact_to_civicrm' ); * *finally in the same .php file I added the function function send_contact_to_civicrm() { ... }; But my function is not executed. I also tried to modify the action name in 'admin_post_nopriv_volunteer' but with no result. Where am I doing wrong? Thanks A: Modify your form to include: <form action="<?php echo admin_url('admin-post.php'); ?>" method="post"> <input type="hidden" name="action" value="volunteer"> ... </form> and add an action to run your function: add_action( 'admin_post_volunteer', 'send_contact_to_civicrm' ); add_action( 'admin_post_nopriv_volunteer', 'send_contact_to_civicrm' ); function send_contact_to_civicrm() { // stuff here }
Q: admin_post hook not called I have good experience in other CMS. but I'm very new in Wordpress. My goal is to intercept POST values in some of the form of a pre-existent site. Following documentation I've done the following steps: * *I had a look on the page source, finding that the form action: < form method='post' enctype='multipart/form-data' id='gform_4' action='/volunteer/'> * *in theme folder I modified function.php adding the code: add_action( 'admin_post_nopriv_/volunteer/', 'send_contact_to_civicrm'); add_action( 'admin_post_/volunteer/', 'send_contact_to_civicrm' ); * *finally in the same .php file I added the function function send_contact_to_civicrm() { ... }; But my function is not executed. I also tried to modify the action name in 'admin_post_nopriv_volunteer' but with no result. Where am I doing wrong? Thanks A: Modify your form to include: <form action="<?php echo admin_url('admin-post.php'); ?>" method="post"> <input type="hidden" name="action" value="volunteer"> ... </form> and add an action to run your function: add_action( 'admin_post_volunteer', 'send_contact_to_civicrm' ); add_action( 'admin_post_nopriv_volunteer', 'send_contact_to_civicrm' ); function send_contact_to_civicrm() { // stuff here } A: Just checked the code in admin-post.php. Apparently when the user is authenticated the hook admin_post_ACTIONNAME is called. BUT for an unauthorized request the hook admin_post_nopriv_register_ACTIONAME is called. So I thought everything worked fine on the website. Until an actual client of my practice informed me the register forms weren't operational at all. AWESOME. SO! I though I share this information for people who are trying to debug this damn hook.
wordpress
{ "language": "en", "length": 232, "provenance": "stackexchange_00019.jsonl.gz:470302", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/246375" }
[ 0.04736328125, -0.009674072265625, -0.010955810546875, -0.026123046875, 0.01062774658203125, -0.03558349609375, 0.0299835205078125, -0.016937255859375, -0.0104827880859375, 0.0025920867919921875, -0.00037550926208496094, -0.007434844970703125, 0.0009984970092773438, -0.04144287109375, 0.0263519287109375, -0.0212860107421875, 0.00797271728515625, 0.022857666015625, 0.02685546875, -0.01085662841796875, 0.0008573532104492188, 0.004055023193359375, -0.0177001953125, -0.01202392578125, 0.0210113525390625, 0.007419586181640625, 0.01934814453125, -0.021728515625, 0.012176513671875, -0.007381439208984375, 0.014068603515625, -0.0221405029296875, 0.02099609375, 0.0189208984375, -0.0234527587890625, -0.01251983642578125, 0.015350341796875, 0.006072998046875, -0.006916046142578125, 0.032958984375, 0.048919677734375, -0.041290283203125, 0.01515960693359375, 0.0015506744384765625, 0.01342010498046875, -0.038909912109375, 0.074951171875, -0.035736083984375, 0.0034637451171875, -0.00681304931640625, -0.0166015625, 0.0258941650390625, -0.0057220458984375, -0.0192108154296875, 0.0022068023681640625, 0.006969451904296875, -0.05560302734375, 0.0560302734375, 0.0226287841796875, 0.06280517578125, -0.0054473876953125, 0.010101318359375, -0.0238037109375, -0.074462890625, 0.0072174072265625, 0.0311431884765625, 0.024749755859375, 0.0068359375, -0.0439453125, 0.00008821487426757812, 0.00664520263671875, -0.045379638671875, 0.0019702911376953125, -0.0089111328125, 0.0274200439453125, -0.041961669921875, -0.0078582763671875, -0.0194091796875, 0.0139923095703125, 0.027374267578125, -0.017822265625, -0.00860595703125, -0.01416778564453125, -0.0078887939453125, -0.0112762451171875, 0.0246734619140625, -0.024749755859375, -0.014617919921875, -0.03607177734375, -0.03314208984375, -0.03399658203125, -0.040435791015625, -0.0285491943359375, -0.005832672119140625, -0.00787353515625, -0.03619384765625, 0.04388427734375, 0.02215576171875, 0.01611328125, -0.034698486328125, 0.011077880859375, -0.049468994140625, -0.0107879638671875, -0.007198333740234375, 0.0101776123046875, 0.07733154296875, 0.017913818359375, 0.030609130859375, 0.006381988525390625, -0.0263519287109375, 0.0145111083984375, -0.0303192138671875, 0.0323486328125, 0.055572509765625, -0.03564453125, -0.0791015625, -0.06536865234375, 0.053497314453125, -0.0154876708984375, 0.02398681640625, -0.01194000244140625, -0.006313323974609375, 0.00995635986328125, -0.036956787109375, 0.0499267578125, 0.0281829833984375, -0.02606201171875, -0.01378631591796875, 0.042236328125, 0.0042572021484375, -0.047119140625, 0.030181884765625, 0.068359375, -0.00279998779296875, 0.00351715087890625, -0.008758544921875, 0.01849365234375, 0.0015621185302734375, -0.004985809326171875, -0.00531768798828125, 0.006374359130859375, -0.0285491943359375, -0.0203857421875, 0.007732391357421875, 0.00696563720703125, 0.01525115966796875, 0.02374267578125, -0.01012420654296875, -0.00478363037109375, 0.0015611648559570312, -0.07135009765625, -0.00978851318359375, 0.00537872314453125, 0.0487060546875, -0.001323699951171875, 0.06097412109375, 0.0170440673828125, 0.004199981689453125, -0.040618896484375, -0.004848480224609375, 0.03143310546875, 0.0196075439453125, 0.032745361328125, -0.049102783203125, -0.04638671875, -0.0263824462890625, -0.0736083984375, -0.01224517822265625, 0.0231170654296875, 0.02069091796875, 0.0321044921875, 0.0268096923828125, 0.02117919921875, 0.0012941360473632812, -8.940696716308594e-7, -0.02557373046875, -0.0200958251953125, 0.01554107666015625, 0.053131103515625, -0.0291290283203125, -0.032379150390625, -0.0225982666015625, 0.0760498046875, -0.01314544677734375, -0.036773681640625, 0.0271453857421875, 0.0305938720703125, 0.04156494140625, -0.01267242431640625, 0.016326904296875, 0.03265380859375, 0.04608154296875, -0.0147552490234375, -0.0084075927734375, -0.01195526123046875, -0.00959014892578125, -0.009185791015625, 0.004444122314453125, -0.01381683349609375, 0.01473236083984375, -0.00443267822265625, -0.0187835693359375, 0.007541656494140625, -0.007232666015625, -0.00749969482421875, -0.0277099609375, -0.00202178955078125, 0.01483154296875, -0.022064208984375, -0.00968170166015625, 0.0187835693359375, -0.00806427001953125, -0.016754150390625, -0.0142364501953125, -0.017974853515625, -0.0030231475830078125, -0.0247344970703125, 0.00940704345703125, -0.04156494140625, 0.035400390625, -0.060791015625, -0.044830322265625, -0.05712890625, 0.01959228515625, 0.01849365234375, 0.0234832763671875, -0.04400634765625, -0.00371551513671875, -0.029052734375, 0.01091766357421875, -0.047943115234375, 0.06072998046875, -0.01690673828125, 0.012908935546875, -0.0155487060546875, -0.003574371337890625, -0.006656646728515625, -0.0284423828125, 0.0184326171875, 0.028900146484375, 0.03668212890625, 0.0239105224609375, 0.0005464553833007812, -0.0001760721206665039, 0.07373046875, -0.00852203369140625, 0.022613525390625, -0.0151214599609375, -0.0006575584411621094, -0.0091705322265625, -0.0011472702026367188, -0.0116729736328125, 0.0293426513671875, -0.080810546875, 0.01348876953125, 0.03302001953125, -0.0082855224609375, -0.04083251953125, -0.004871368408203125, -0.0302734375, 0.041717529296875, -0.0888671875, -0.11181640625, 0.0142974853515625, -0.01108551025390625, -0.024322509765625, -0.002353668212890625, -0.00780487060546875, -0.018524169921875, -0.0226898193359375, 0.03607177734375, 0.012847900390625, -0.01155853271484375, 0.00640869140625, 0.0330810546875, -0.004299163818359375, -0.0287933349609375, 0.00557708740234375, -0.019256591796875, -0.0008969306945800781, -0.027740478515625, 0.0604248046875, -0.00252532958984375, -0.0244140625, -0.0256195068359375, -0.036865234375, -0.0081939697265625, -0.05340576171875, 0.020263671875, -0.00795745849609375, 0.021728515625, 0.00789642333984375, -0.00736236572265625, 0.0273895263671875, 0.00008702278137207031, -0.0322265625, -0.0006136894226074219, -0.02984619140625, 0.0193634033203125, -0.017791748046875, 0.04840087890625, 0.07080078125, -0.01410675048828125, 0.0229949951171875, -0.0204925537109375, -0.0225830078125, -0.05621337890625, 0.05401611328125, -0.0001266002655029297, -0.0927734375, 0.033050537109375, 0.0596923828125, 0.026519775390625, 0.04541015625, 0.0034351348876953125, -0.035797119140625, -0.007724761962890625, 0.036407470703125, -0.04925537109375, -0.047454833984375, -0.0714111328125, -0.03448486328125, -0.0015430450439453125, -0.0031890869140625, -0.01081085205078125, 0.008453369140625, -0.0145263671875, 0.0215606689453125, 0.00030922889709472656, 0.0211944580078125, -0.0029144287109375, -0.0009737014770507812, -0.04058837890625, -0.0136871337890625, 0.0001747608184814453, 0.0125732421875, 0.01580810546875, 0.04791259765625, 0.00681304931640625, -0.0236053466796875, 0.0241241455078125, -0.00691986083984375, -0.031219482421875, 0.007289886474609375, -0.036712646484375, -0.035919189453125, -0.004657745361328125, -0.00853729248046875, 0.061126708984375, -0.0163421630859375, 0.00736236572265625, 0.0173187255859375, -0.01279449462890625, -0.04205322265625, 0.00952911376953125, 0.00836944580078125, 0.0006475448608398438, -0.043121337890625, 0.0017938613891601562, -0.06402587890625, -0.00955963134765625, -0.01041412353515625, -0.038543701171875, 0.005496978759765625, 0.0142059326171875, -0.01220703125, 0.01081085205078125, 0.00600433349609375, 0.0196685791015625, 0.009674072265625, 0.0275421142578125, -0.0003840923309326172, -0.01483917236328125, -0.00899505615234375, 0.00868988037109375, -0.032501220703125, 0.015869140625, -0.00380706787109375, 0.032562255859375, 0.018463134765625, 0.029815673828125, 0.006572723388671875, 0.033233642578125, -0.016143798828125, -0.0601806640625, 0.03314208984375, -0.055938720703125, -0.0034732818603515625, -0.042144775390625, -0.01314544677734375, -0.0012102127075195312, 0.092041015625, 0.0026302337646484375, -0.0187835693359375, -0.01381683349609375, 0.00637054443359375, -0.049530029296875, -0.044769287109375, -0.023468017578125, 0.01629638671875, -0.0716552734375, 0.0186920166015625, -0.008941650390625, -0.0149993896484375, -0.019134521484375, 0.0124664306640625, -0.038330078125, -0.047271728515625, 0.004367828369140625, 0.0005083084106445312, -0.0091552734375, 0.028045654296875, -0.0504150390625, 0.023895263671875, 0.010650634765625, -0.03509521484375, -0.09063720703125, -0.0172119140625, -0.0009093284606933594, 0.045867919921875, -0.008026123046875, 0.01123046875, -0.0261688232421875, 0.039642333984375, 0.003246307373046875, -0.0191802978515625, 0.0010099411010742188, -0.01299285888671875, 0.00182342529296875, 0.037109375, 0.0008854866027832031, 0.00356292724609375, -0.0228729248046875, 0.006237030029296875, -0.019378662109375, -0.0119171142578125, -0.0253753662109375, -0.037872314453125, 0.0283203125, -0.0240936279296875, -0.08740234375, -0.034942626953125, 0.0035858154296875, -0.02435302734375, -0.0004119873046875, -0.0260009765625, -0.0238494873046875, -0.047332763671875, 0.007061004638671875, -0.03369140625, -0.00946807861328125, 0.006378173828125, 0.00820159912109375, 0.0135040283203125, -0.0024776458740234375, 0.0062255859375, 0.0119171142578125, 0.03167724609375, -0.01381683349609375, 0.0034008026123046875, 0.01568603515625, -0.0178680419921875, 0.0098419189453125, 0.00267791748046875, 0.0245361328125, -0.03778076171875, 0.055023193359375, -0.01029205322265625, 0.007457733154296875, 0.0037384033203125, -0.018402099609375, 0.007354736328125, 0.02130126953125, -0.018463134765625, -0.043670654296875, -0.01302337646484375, 0.05474853515625, -0.052398681640625, 0.0858154296875, -0.02398681640625, -0.03717041015625, 0.0095977783203125, -0.0889892578125, 0.040924072265625, 0.0374755859375, -0.0201568603515625, 0.036376953125, 0.0036678314208984375, -0.0179290771484375, -0.01885986328125, -0.0187835693359375, -0.014251708984375, 0.00948333740234375, -0.0120697021484375, -0.0248260498046875, 0.01145172119140625, 0.00865936279296875, -0.005405426025390625, 0.012969970703125, 0.0101776123046875, -0.057373046875, 0.00859832763671875, 0.0110015869140625, -0.0304107666015625, -0.0117950439453125, -0.00368499755859375, 0.060546875, 0.006237030029296875, 0.00395965576171875, 0.031890869140625, 0.0418701171875, -0.01248931884765625, 0.038665771484375, 0.033203125, -0.00537109375, 0.0267486572265625, 0.0479736328125, 0.0616455078125, 0.01172637939453125, -0.03546142578125, 0.068603515625, 0.04705810546875, -0.0059356689453125, 0.027008056640625, -0.0056304931640625, -0.0016698837280273438, -0.050018310546875, -0.03253173828125, -0.0197601318359375, 0.0010128021240234375, -0.007049560546875, 0.0217437744140625, 0.0341796875, 0.0068817138671875, 0.00928497314453125, -0.0229339599609375, -0.017059326171875, -0.03021240234375, 0.00812530517578125, 0.0180206298828125, -0.01552581787109375, -0.01531982421875, -0.0018930435180664062, 0.035797119140625, 0.0002853870391845703, 0.026397705078125, 0.0032825469970703125, 0.0440673828125, -0.0190887451171875, 0.0201263427734375, -0.00556182861328125, -0.01537322998046875, 0.033660888671875, -0.0301361083984375, -0.0109100341796875, 0.005031585693359375, 0.03271484375, -0.03753662109375, -0.006237030029296875, 0.06915283203125, -0.0079498291015625, 0.02203369140625, -0.01959228515625, -0.01464080810546875, -0.00943756103515625, -0.01067352294921875, 0.07916259765625, 0.04473876953125, -0.0290985107421875, -0.007297515869140625, -0.0291900634765625, -0.0251922607421875, -0.048126220703125, 0.006450653076171875, -0.003742218017578125, 0.012603759765625, -0.02728271484375, 0.0011196136474609375, -0.0113525390625, 0.0230712890625, 0.007476806640625, 0.0404052734375, -0.0202484130859375, 0.00124359130859375, 0.005229949951171875, 0.06427001953125, -0.043212890625, 0.04608154296875, -0.0011587142944335938, 0.01515960693359375, -0.04351806640625, 0.00909423828125, -0.0294036865234375, -0.056671142578125, 0.003711700439453125, 0.017242431640625, 0.002532958984375, 0.052764892578125, 0.050689697265625, 0.0145263671875, -0.029632568359375, 0.0027370452880859375, 0.006534576416015625, -0.0195465087890625, 0.026458740234375, 0.0189666748046875, -0.0272064208984375, 0.0014486312866210938, -0.035736083984375, -0.0162506103515625, -0.0036334991455078125, 0.01529693603515625, 0.008270263671875, -0.0205535888671875, -0.004642486572265625, 0.028076171875, -0.01288604736328125, 0.0218658447265625, 0.07672119140625, 0.0155181884765625, 0.0576171875, 0.0377197265625, 0.031341552734375, 0.0250091552734375, 0.053436279296875, -0.051971435546875, -0.07330322265625, 0.039093017578125, 0.0252227783203125, -0.0210113525390625, 0.03717041015625, -0.0157318115234375, 0.0265350341796875, 0.05560302734375, 0.0693359375, -0.07763671875, 0.0061187744140625, 0.0197601318359375, -0.0159759521484375, 0.043914794921875, -0.025360107421875, -0.036041259765625, -0.05328369140625, 0.038604736328125, 0.03399658203125, -0.02508544921875, -0.005321502685546875, 0.032989501953125, -0.0224761962890625, -0.0227813720703125, -0.0017452239990234375, -0.001384735107421875, 0.0206298828125, 0.01861572265625, -0.0255584716796875, 0.0163421630859375, -0.04656982421875, -0.02734375, 0.005428314208984375, -0.04681396484375, -0.0911865234375, -0.0309295654296875, -0.0103607177734375, 0.0013589859008789062, -0.00482940673828125, 0.014251708984375, 0.00032830238342285156, 0.021026611328125, -0.003780364990234375, -0.018707275390625, -0.00664520263671875, 0.00304412841796875, -0.0142669677734375, -0.042388916015625, 0.0038204193115234375, 0.050567626953125, -0.0231781005859375, 0.0267333984375, 0.00873565673828125, -0.0232696533203125, -0.005031585693359375, 0.0171356201171875, 0.08453369140625, -0.0124359130859375, -0.048553466796875, 0.03521728515625, -0.029052734375, -0.02398681640625, 0.0007009506225585938, 0.003955841064453125, -0.054168701171875, -0.032501220703125, -0.000022172927856445312, -0.04876708984375, -0.0020465850830078125, -0.005870819091796875, -0.048370361328125, 0.1307373046875, 0.0103302001953125, -0.01200103759765625, -0.00899505615234375, 0.0721435546875, -0.041412353515625, 0.04376220703125, -0.045684814453125, 0.02899169921875, -0.0220184326171875, 0.0281982421875, -0.03997802734375, 0.01171875, -0.01016998291015625, 0.0026836395263671875, 0.062255859375, 0.0271453857421875, -0.03741455078125, -0.015533447265625, 0.0293121337890625, 0.0173187255859375, -0.013031005859375, 0.038116455078125, 0.011566162109375, -0.030029296875, 0.022308349609375, 0.0201263427734375, 0.0241546630859375, 0.00029158592224121094, -0.01271820068359375, 0.049407958984375, -0.00812530517578125, -0.01078033447265625, -0.035400390625, 0.0277862548828125, -0.035430908203125, -0.02197265625, 0.0235137939453125, -0.0199737548828125, -0.0206451416015625, -0.0156402587890625, -0.029693603515625, -0.0220794677734375, 0.05712890625, -0.039520263671875, 0.029754638671875, 0.0038909912109375, 0.03271484375, 0.04364013671875, 0.00496673583984375, 0.10577392578125, 0.0015811920166015625, 0.01457977294921875, 0.00598907470703125, 0.0241241455078125, 0.046661376953125, 0.03961181640625, 0.0166168212890625, -0.0080108642578125, 0.04302978515625, 0.031280517578125, 0.052642822265625, -0.053436279296875, -0.020538330078125, 0.0120086669921875, 0.024749755859375, 0.0035839080810546875, 0.0005502700805664062, 0.0117645263671875, -0.007221221923828125, 0.0285186767578125, -0.034271240234375, -0.038238525390625, 0.0030040740966796875, 0.0181121826171875, -0.005367279052734375, -0.0010814666748046875, 0.0261077880859375, -0.04736328125, -0.0301055908203125, 0.0030498504638671875, 0.000263214111328125, 0.05755615234375, 0.0190887451171875, 0.0264434814453125, -0.0374755859375, -0.02288818359375, 0.0064544677734375, -0.022918701171875, -0.01067352294921875, -0.01500701904296875, 0.00580596923828125, 0.0008702278137207031, -0.01366424560546875, 0.0286407470703125, 0.0153961181640625, 0.07568359375, 0.050079345703125, 0.0447998046875, 0.03338623046875, 0.01245880126953125, 0.07427978515625, -0.01242828369140625, -0.010284423828125, -0.0305023193359375, -0.025115966796875, -0.002506256103515625, -0.01092529296875, 0.0229949951171875, 0.005626678466796875, 0.015625, -0.04559326171875, 0.0220184326171875, -0.00870513916015625, -0.04351806640625, 0.057861328125, -0.0105133056640625, 0.0762939453125, -0.01271820068359375, -0.046173095703125, -0.005962371826171875, -0.01032257080078125, -0.0384521484375, 0.015716552734375, 0.0384521484375, -0.016387939453125, 0.027679443359375, 0.036895751953125, 0.007068634033203125, -0.00485992431640625, 0.01629638671875, -0.0130615234375, -0.011810302734375, 0.042694091796875, -0.00249481201171875, 0.04058837890625, 0.0108489990234375, -0.0030155181884765625, 0.062469482421875, 0.006443023681640625, 0.09771728515625, -0.07623291015625, 0.029754638671875, -0.045867919921875, 0.0219573974609375, -0.0242767333984375, -0.031951904296875, 0.0018825531005859375, 0.036346435546875, -0.0016622543334960938, -0.0023288726806640625, -0.006160736083984375, 0.004695892333984375, 0.0184326171875, -0.047607421875, -0.044158935546875, 0.0450439453125, 0.00730133056640625, 0.02471923828125, 0.04046630859375, -0.015167236328125, -0.037139892578125, -0.04425048828125, -0.00691986083984375, 0.0226593017578125, 0.047027587890625, -0.01763916015625, 0.0236358642578125, -0.0648193359375, -0.016815185546875, 0.0024585723876953125, -0.021759033203125, -0.02117919921875, 0.01158905029296875, -0.0592041015625, 0.01401519775390625, 0.0384521484375, -0.0099334716796875, 0.052886962890625, 0.00101470947265625, 0.023590087890625, 0.0260162353515625, -0.01751708984375, -0.04034423828125, -0.0517578125, -0.00852203369140625, -0.023223876953125, -0.0146484375, -0.04364013671875, -0.0001633167266845703, 0.002239227294921875, -0.023681640625, -0.041015625, -0.06744384765625, 0.004718780517578125, 0.01187896728515625, -0.0262298583984375, -0.0509033203125, -0.01403045654296875, 0.01898193359375, 0.00807952880859375, -0.026641845703125, -0.01486968994140625, 0.0001386404037475586, -0.036376953125, 0.0328369140625, -0.034576416015625, 0.0369873046875, 0.031829833984375, 0.07647705078125, -0.058563232421875, -0.0062103271484375, 0.0194091796875, -0.011566162109375, -0.019775390625, 0.00881195068359375, 0.04766845703125, -0.0231475830078125, -0.040557861328125, 0.0196075439453125, 0.0113983154296875, 0.0501708984375, -0.01441192626953125, -0.01546478271484375, -0.0145721435546875, 0.034942626953125, -0.02197265625, -0.0634765625, -0.0108795166015625, -0.02685546875, 0.0113677978515625, -0.042999267578125, 0.0219573974609375, 0.0190887451171875, -0.021697998046875, -0.0260467529296875, 0.032379150390625, -0.002391815185546875, -0.00624847412109375, -0.0306549072265625, 0.0242767333984375, 0.0077972412109375, -0.01457977294921875, -0.016448974609375, -0.004306793212890625, -0.020233154296875, 0.00017714500427246094, -0.01128387451171875, 0.0152587890625, 0.02099609375, -0.017181396484375, -0.048614501953125, -0.0041656494140625, 0.001605987548828125, -0.016998291015625, 0.0518798828125, -0.045074462890625, 0.0513916015625, 0.044647216796875, -0.0457763671875, -0.0567626953125, -0.015960693359375, -0.047210693359375, -0.0192718505859375, -0.05804443359375, -0.0401611328125, -0.0196990966796875, 0.0972900390625, 0.05926513671875, 0.017791748046875, -0.046417236328125, -0.004680633544921875, 0.01244354248046875, -0.0255889892578125, -0.007297515869140625, 0.0226898193359375, -0.040191650390625, -0.0151824951171875, -0.0082550048828125, 0.00614166259765625, -0.0013933181762695312, 0.019317626953125, -0.002994537353515625, -0.01528167724609375, -0.007717132568359375, -0.048553466796875, -0.0175018310546875, -0.0124969482421875, 0.05859375, -0.03875732421875, -0.0261688232421875, 0.02215576171875, 0.0098724365234375, 0.00872039794921875, 0.0267181396484375, 0.0002453327178955078, -0.00228118896484375, -0.0108642578125, 0.01544189453125, 0.011871337890625, 0.0447998046875, -0.006622314453125, -0.018707275390625, -0.01800537109375, 0.0035037994384765625, -0.0017881393432617188, -0.006931304931640625, -0.0076751708984375, 0.0203857421875, 0.0058441162109375, 0.0740966796875, 0.0006923675537109375, -0.0036602020263671875, -0.0295562744140625, 0.05035400390625, 0.0220184326171875, -0.029266357421875, 0.055633544921875, -0.01454925537109375, -0.01104736328125, 0.03515625, 0.005336761474609375, -0.05126953125, 0.03277587890625, 0.05084228515625, 0.045623779296875, 0.0119781494140625 ]
f35ebdd78f0c59865a1b0988891516e8b6b29729
Wordpress Stackexchange Q: Missing URL in password reset email From the wp admin login page I click to reset my password (not on the theme, on wp). I get the email but it contains no url to click. Plugins are disabled. What shoud I do? A: If you only want to remove the angle brackets WordPress added but let the rest of the generated message unchanged, add the following to the functions.php of your WordPress theme (eg. wp-content/themes/some_awesome_theme/functions.php). /** * Removes angle brackets (characters < and >) arounds URLs in a given string * * @param string $string The string to remove potential angle brackets from * * @return string $string where any angle brackets surrounding an URL have been removed. */ function remove_angle_brackets_around_url($string) { return preg_replace('/<(' . preg_quote(network_site_url(), '/') . '[^>]*)>/', '\1', $string); } // Apply the remove_angle_brackets_around_url() function on the "retrieve password" message: add_filter('retrieve_password_message', 'remove_angle_brackets_around_url', 99, 1);
Q: Missing URL in password reset email From the wp admin login page I click to reset my password (not on the theme, on wp). I get the email but it contains no url to click. Plugins are disabled. What shoud I do? A: If you only want to remove the angle brackets WordPress added but let the rest of the generated message unchanged, add the following to the functions.php of your WordPress theme (eg. wp-content/themes/some_awesome_theme/functions.php). /** * Removes angle brackets (characters < and >) arounds URLs in a given string * * @param string $string The string to remove potential angle brackets from * * @return string $string where any angle brackets surrounding an URL have been removed. */ function remove_angle_brackets_around_url($string) { return preg_replace('/<(' . preg_quote(network_site_url(), '/') . '[^>]*)>/', '\1', $string); } // Apply the remove_angle_brackets_around_url() function on the "retrieve password" message: add_filter('retrieve_password_message', 'remove_angle_brackets_around_url', 99, 1); A: The problem is the < and > which surround the reset URL in wp-login.php. You can remove them using retrieve_password_message in your theme functions.php file like below: add_filter("retrieve_password_message", "mapp_custom_password_reset", 99, 4); function mapp_custom_password_reset($message, $key, $user_login, $user_data ) { $message = "Someone has requested a password reset for the following account: " . sprintf(__('%s'), $user_data->user_email) . " If this was a mistake, just ignore this email and nothing will happen. To reset your password, visit the following address: " . network_site_url("wp-login.php?action=rp&key=$key&login=" . rawurlencode($user_login), 'login') . "\r\n"; return $message; } A: Check out the wp-login.php on GitHub. The default blocks looks like: // Redefining user_login ensures we return the right case in the email. $user_login = $user_data->user_login; $user_email = $user_data->user_email; $key = get_password_reset_key( $user_data ); if ( is_wp_error( $key ) ) { return $key; } $message = __('Someone has requested a password reset for the following account:') . "\r\n\r\n"; $message .= network_home_url( '/' ) . "\r\n\r\n"; $message .= sprintf(__('Username: %s'), $user_login) . "\r\n\r\n"; $message .= __('If this was a mistake, just ignore this email and nothing will happen.') . "\r\n\r\n"; $message .= __('To reset your password, visit the following address:') . "\r\n\r\n"; $message .= '<' . network_site_url("wp-login.php?action=rp&key=$key&login=" . rawurlencode($user_login), 'login') . ">\r\n"; You should be able to filter the password reset message with 'retrieve_password_message' and change it to what you need. $message = apply_filters( 'retrieve_password_message', $message, $key, $user_login, $user_data ); A: I had this problem and wanted to share how I solved it here. I opened the email and to the right where you would see the time stamp of when you got the email, there will be three dots. Click on that and then click "show original" From there you will see the code for the email. Look for the part of the email where it says you should click on the link. Copy the link that is within the < > marks. Paste it into your browser and voila, you will be able to reset. A: I had this problem and did similar to Travis... * *right click on the email message *select view source *copy the link you see below the words 'To reset your password, visit the following address:' *paste it into your domain box and hey presto. hope this helps too :)
wordpress
{ "language": "en", "length": 523, "provenance": "stackexchange_00019.jsonl.gz:470304", "question_score": "9", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/246377" }
[ 0.03851318359375, -0.00458526611328125, -0.0211639404296875, -0.036468505859375, 0.0192108154296875, -0.041534423828125, 0.0194244384765625, -0.010528564453125, -0.0287017822265625, 0.039306640625, 0.03631591796875, -0.016876220703125, 0.021759033203125, -0.05206298828125, -0.002513885498046875, -0.0212554931640625, 0.00682830810546875, 0.00469970703125, -0.01036834716796875, -0.0115203857421875, 0.0129547119140625, -0.0029697418212890625, -0.03765869140625, 0.01849365234375, -0.0247802734375, 0.03594970703125, 0.1751708984375, -0.03851318359375, -0.0008816719055175781, -0.045196533203125, 0.00536346435546875, -0.034210205078125, 0.036865234375, -0.00499725341796875, -0.04754638671875, -0.04205322265625, -0.034820556640625, -0.00004839897155761719, -0.03045654296875, 0.00968170166015625, 0.0123291015625, -0.002834320068359375, -0.0007157325744628906, 0.00041866302490234375, -0.028289794921875, -0.019500732421875, 0.0188751220703125, 0.0007801055908203125, 0.045135498046875, 0.0279998779296875, 0.005397796630859375, -0.00267791748046875, 0.0121002197265625, 0.009796142578125, -0.04473876953125, -0.04351806640625, -0.0213470458984375, 0.00836944580078125, 0.016204833984375, 0.049957275390625, 0.00534820556640625, 0.005756378173828125, -0.0172271728515625, -0.052947998046875, -0.035400390625, 0.02215576171875, 0.048095703125, 0.0087890625, -0.04400634765625, -0.054168701171875, 0.00907135009765625, -0.01605224609375, -0.0313720703125, -0.00960540771484375, 0.004634857177734375, 0.01715087890625, -0.0188446044921875, -0.01242828369140625, 0.0152587890625, 0.040435791015625, 0.024871826171875, 0.0223388671875, -0.013214111328125, 0.0187225341796875, -0.0159759521484375, 0.0235443115234375, -0.01108551025390625, -0.03851318359375, -0.04498291015625, 0.01129913330078125, -0.033905029296875, -0.01201629638671875, -0.02783203125, 0.0156707763671875, -0.024444580078125, 0.0172119140625, 0.022613525390625, 0.0163421630859375, 0.01532745361328125, 0.007701873779296875, 0.00514984130859375, -0.0305023193359375, -0.0001742839813232422, -0.01224517822265625, -0.0177154541015625, 0.0478515625, 0.0133514404296875, 0.034576416015625, 0.0131072998046875, 0.026824951171875, -0.0004355907440185547, -0.049163818359375, -0.0009450912475585938, -0.0172271728515625, -0.0231475830078125, 0.0154876708984375, -0.02008056640625, -0.003887176513671875, -0.00913238525390625, 0.01364898681640625, -0.03826904296875, -0.0179595947265625, -0.01502227783203125, -0.004543304443359375, 0.02093505859375, -0.007587432861328125, -0.01561737060546875, 0.0323486328125, -0.0012311935424804688, 0.0350341796875, -0.053466796875, 0.00029206275939941406, 0.10009765625, 0.0218048095703125, 0.0240020751953125, -0.048309326171875, -0.031829833984375, 0.036285400390625, -0.0253753662109375, 0.03302001953125, 0.0028476715087890625, -0.057037353515625, 0.0019216537475585938, -0.0050048828125, 0.008758544921875, 0.000324249267578125, -0.016876220703125, 0.043121337890625, 0.0465087890625, -0.035980224609375, 0.033355712890625, -0.0186614990234375, 0.045806884765625, 0.0161590576171875, -0.027313232421875, -0.007358551025390625, 0.06658935546875, -0.045135498046875, -0.0472412109375, -0.0697021484375, 0.00628662109375, -0.0198822021484375, -0.0145416259765625, 0.005279541015625, -0.02142333984375, 0.0292816162109375, -0.01739501953125, 0.0025424957275390625, 0.0210418701171875, -0.004383087158203125, -0.0003604888916015625, -0.03216552734375, 0.0178375244140625, 0.024078369140625, 0.0008044242858886719, 0.027191162109375, -0.00447845458984375, -0.002716064453125, -0.01050567626953125, 0.06884765625, 0.0499267578125, -0.0313720703125, -0.03515625, 0.0323486328125, -0.06475830078125, 0.0070953369140625, 0.000023663043975830078, 0.0411376953125, 0.037078857421875, 0.01605224609375, 0.0731201171875, 0.00438690185546875, 0.0032482147216796875, 0.017303466796875, 0.0017824172973632812, -0.039794921875, -0.0112762451171875, 0.008636474609375, -0.022979736328125, 0.0009083747863769531, 0.0137939453125, 0.00608062744140625, -0.00439453125, -0.01050567626953125, -0.0413818359375, -0.004650115966796875, -0.009674072265625, 0.0360107421875, -0.060516357421875, 0.03155517578125, 0.0374755859375, 0.005176544189453125, -0.04833984375, 0.0124664306640625, 0.02032470703125, -0.0102996826171875, 0.006275177001953125, 0.057891845703125, -0.0152130126953125, 0.06427001953125, -0.02960205078125, -0.040863037109375, -0.0218963623046875, -0.023895263671875, 0.023162841796875, -0.01776123046875, -0.0111846923828125, -0.0303955078125, -0.0008873939514160156, 0.003917694091796875, -0.0433349609375, 0.0318603515625, 0.0298614501953125, 0.046234130859375, -0.0521240234375, -0.0107574462890625, -0.036376953125, -0.002956390380859375, -0.00833892822265625, 0.0411376953125, 0.036041259765625, 0.021728515625, -0.0225830078125, -0.036285400390625, 0.012664794921875, -0.049041748046875, 0.022308349609375, -0.0226287841796875, -0.0506591796875, -0.005138397216796875, 0.0191192626953125, 0.01399993896484375, 0.00717926025390625, 0.0276031494140625, -0.034454345703125, 0.01184844970703125, -0.015655517578125, 0.00986480712890625, -0.0140838623046875, 0.015716552734375, -0.0152435302734375, 0.00441741943359375, 0.014068603515625, -0.01555633544921875, -0.0108642578125, 0.028717041015625, 0.0091094970703125, 0.00917816162109375, -0.03741455078125, 0.01105499267578125, 0.0298004150390625, 0.0006785392761230469, -0.01123046875, 0.054534912109375, 0.04742431640625, -0.02777099609375, -0.002178192138671875, -0.0303955078125, -0.02435302734375, 0.01221466064453125, -0.00821685791015625, 0.0002980232238769531, -0.016021728515625, 0.0030689239501953125, -0.021453857421875, -0.0126800537109375, 0.03448486328125, 0.056365966796875, 0.0199432373046875, 0.02276611328125, 0.06280517578125, -0.01146697998046875, -0.01316070556640625, 0.024444580078125, -0.0288848876953125, -0.0286865234375, -0.04058837890625, -0.00409698486328125, 0.006702423095703125, -0.035400390625, 0.0307159423828125, 0.04864501953125, 0.01873779296875, -0.022918701171875, -0.002368927001953125, 0.005466461181640625, 0.005878448486328125, 0.024566650390625, 0.0125732421875, -0.01271820068359375, -0.04144287109375, -0.01496124267578125, 0.0183258056640625, 0.00504302978515625, -0.0161895751953125, -0.040771484375, -0.027557373046875, -0.007488250732421875, -0.1083984375, -0.0836181640625, 0.0227203369140625, -0.047515869140625, -0.046234130859375, 0.039764404296875, -0.052337646484375, 0.01187896728515625, 0.06182861328125, -0.0126190185546875, 0.02838134765625, -0.05181884765625, -0.08721923828125, -0.0692138671875, -0.07568359375, -0.029937744140625, -0.01314544677734375, -0.00225067138671875, 0.011322021484375, 0.0234832763671875, 0.01016998291015625, -0.010894775390625, 0.02630615234375, -0.0244293212890625, -0.00659942626953125, -0.01384735107421875, -0.036041259765625, 0.01407623291015625, 0.0251922607421875, 0.006744384765625, -0.0054473876953125, 0.007427215576171875, -0.0025348663330078125, -0.0192413330078125, 0.03167724609375, -0.01285552978515625, 0.0283203125, 0.010284423828125, -0.03131103515625, 0.00811767578125, 0.0095367431640625, -0.056396484375, -0.0095062255859375, 0.016082763671875, -0.00548553466796875, 0.05908203125, -0.0166168212890625, -0.047088623046875, 0.0361328125, 0.02252197265625, -0.012664794921875, -0.02239990234375, 0.007183074951171875, -0.0293731689453125, 0.0092620849609375, -0.0100860595703125, -0.006938934326171875, 0.003734588623046875, 0.0234832763671875, -0.0200958251953125, -0.010986328125, -0.006542205810546875, 0.0416259765625, 0.039459228515625, -0.004718780517578125, 0.0306549072265625, -0.03857421875, 0.03802490234375, -0.01148223876953125, -0.004955291748046875, -0.0205078125, -0.01123046875, -0.01181793212890625, 0.06463623046875, -0.0178680419921875, -0.01004791259765625, 0.0125274658203125, 0.0265655517578125, -0.058563232421875, -0.031097412109375, -0.050994873046875, 0.00702667236328125, -0.0919189453125, -0.0002751350402832031, -0.008636474609375, -0.04571533203125, 0.0202789306640625, -0.08685302734375, -0.0284423828125, -0.05914306640625, 0.024749755859375, -0.0011310577392578125, 0.006954193115234375, -0.0061798095703125, -0.008880615234375, -0.01419830322265625, -0.01239013671875, -0.01250457763671875, -0.032684326171875, -0.0227813720703125, 0.02435302734375, 0.0245361328125, -0.00804901123046875, -0.03045654296875, -0.03118896484375, 0.0216522216796875, -0.01122283935546875, -0.02398681640625, -0.0018377304077148438, -0.0012273788452148438, -0.0225830078125, 0.06903076171875, -0.0033702850341796875, 0.00899505615234375, 0.0102691650390625, -0.00757598876953125, -0.03057861328125, -0.0096282958984375, 0.0030517578125, 0.0201263427734375, 0.039154052734375, -0.0330810546875, 0.0007448196411132812, 0.002567291259765625, -0.0157623291015625, -0.004276275634765625, 0.00920867919921875, -0.0309906005859375, 0.020172119140625, 0.0026569366455078125, 0.01248931884765625, 0.00852203369140625, -0.030914306640625, 0.0127410888671875, 0.004703521728515625, 0.020721435546875, -0.0178375244140625, 0.0140838623046875, 0.002765655517578125, 0.042877197265625, -0.00014340877532958984, 0.0209197998046875, 0.0230865478515625, -0.0236053466796875, 0.011932373046875, 0.0161590576171875, 0.0208892822265625, -0.0254974365234375, 0.04681396484375, 0.03179931640625, 0.027801513671875, -0.0032520294189453125, 0.03564453125, -0.0158538818359375, 0.01274871826171875, 0.009124755859375, 0.007190704345703125, 0.01531982421875, -0.01018524169921875, 0.0056610107421875, -0.03607177734375, -0.0075836181640625, -0.032745361328125, 0.00751495361328125, 0.011810302734375, 0.0019378662109375, 0.011962890625, -0.0006394386291503906, -0.019287109375, -0.00853729248046875, -0.0255126953125, -0.01346588134765625, -0.004474639892578125, -0.0419921875, 0.0177764892578125, -0.049957275390625, -0.0517578125, 0.003253936767578125, -0.031768798828125, 0.0736083984375, 0.045196533203125, -0.032318115234375, 0.0345458984375, -0.00376129150390625, 0.0233917236328125, -0.0189208984375, -0.01361083984375, 0.03955078125, -0.0183563232421875, -0.03729248046875, -0.01454925537109375, -0.0223236083984375, -0.075439453125, -0.05462646484375, 0.075439453125, 0.0256195068359375, 0.0018644332885742188, 0.01102447509765625, 0.04718017578125, 0.008392333984375, 0.00885772705078125, -0.0067138671875, -0.0312042236328125, -0.01454925537109375, 0.0055084228515625, 0.01209259033203125, 0.0223846435546875, 0.007396697998046875, -0.0159149169921875, 0.0816650390625, -0.0670166015625, -0.030059814453125, 0.02703857421875, 0.0767822265625, -0.01457977294921875, -0.02337646484375, 0.0143280029296875, -0.00699615478515625, 0.00830841064453125, 0.067626953125, 0.01142120361328125, -0.06219482421875, -0.018646240234375, 0.003070831298828125, 0.0210723876953125, -0.04840087890625, 0.0005311965942382812, -0.0010709762573242188, -0.01473236083984375, -0.01381683349609375, -0.0006275177001953125, -0.0183258056640625, -0.03802490234375, -0.03369140625, -0.006649017333984375, -0.00940704345703125, -0.016021728515625, -0.0037403106689453125, -0.031402587890625, -0.0175628662109375, -0.0010433197021484375, 0.07147216796875, -0.0124969482421875, 0.0260162353515625, -0.03167724609375, -0.00025916099548339844, -0.0380859375, -0.0065460205078125, 0.056915283203125, 0.038360595703125, -0.08709716796875, 0.00785064697265625, -0.032745361328125, -0.00284576416015625, 0.0016613006591796875, -0.0071563720703125, -0.057403564453125, -0.016448974609375, 0.040679931640625, 0.048797607421875, 0.0058441162109375, -0.016754150390625, 0.015106201171875, 0.00405120849609375, 0.0033473968505859375, 0.08673095703125, -0.0211029052734375, 0.00952911376953125, 0.04620361328125, -0.0087127685546875, 0.00506591796875, 0.00356292724609375, 0.035186767578125, -0.020538330078125, -0.004852294921875, -0.0318603515625, 0.0005054473876953125, -0.01192474365234375, 0.01363372802734375, 0.004100799560546875, 0.01172637939453125, -0.0008854866027832031, -0.050750732421875, -0.00372314453125, 0.01406097412109375, -0.052886962890625, 0.10595703125, 0.0046844482421875, -0.03460693359375, -0.01898193359375, -0.023162841796875, 0.055908203125, -0.0166778564453125, -0.0022716522216796875, 0.0215606689453125, -0.03631591796875, 0.0230712890625, 0.0426025390625, -0.022674560546875, 0.04290771484375, 0.09613037109375, 0.00988006591796875, 0.038543701171875, 0.0254974365234375, 0.0087432861328125, -0.03167724609375, -0.0213165283203125, -0.0430908203125, 0.0166473388671875, 0.04443359375, 0.017181396484375, 0.0009188652038574219, 0.044677734375, -0.01158905029296875, 0.0019893646240234375, 0.050537109375, 0.02618408203125, -0.08160400390625, 0.00547027587890625, -0.022369384765625, -0.0103912353515625, 0.038055419921875, 0.0302734375, -0.0161285400390625, -0.015869140625, 0.0044403076171875, -0.034149169921875, -0.0102691650390625, 0.0036487579345703125, 0.0151824951171875, -0.00901031494140625, -0.021728515625, 0.04010009765625, 0.004138946533203125, -0.050201416015625, -0.01149749755859375, 0.02349853515625, -0.035369873046875, -0.04180908203125, -0.034759521484375, 0.035736083984375, -0.039093017578125, -0.07666015625, -0.00833892822265625, -0.007335662841796875, 0.00981903076171875, -0.00449371337890625, -0.00818634033203125, 0.01251983642578125, 0.027984619140625, -0.019989013671875, -0.002429962158203125, -0.0048675537109375, -0.0237274169921875, 0.053741455078125, 0.028472900390625, 0.0182037353515625, 0.022003173828125, -0.05560302734375, 0.0030040740966796875, -0.036346435546875, 0.018768310546875, -0.0022258758544921875, 0.039947509765625, 0.052032470703125, 0.0059967041015625, -0.02716064453125, 0.0576171875, 0.011016845703125, -0.0287933349609375, -0.0276947021484375, 0.03143310546875, -0.01526641845703125, 0.04925537109375, -0.018280029296875, 0.037445068359375, -0.0241241455078125, -0.0386962890625, -0.08740234375, 0.126953125, -0.027099609375, 0.08062744140625, 0.0204010009765625, 0.02783203125, -0.0189666748046875, 0.0025424957275390625, -0.016876220703125, 0.030059814453125, 0.01444244384765625, 0.0009751319885253906, -0.01727294921875, 0.004932403564453125, -0.0219879150390625, 0.0164031982421875, 0.0205535888671875, 0.01427459716796875, 0.00876617431640625, -0.034759521484375, 0.004291534423828125, 0.035614013671875, -0.00785064697265625, 0.01036834716796875, 0.01335906982421875, 0.080322265625, 0.0462646484375, -0.055908203125, 0.04193115234375, -0.0267181396484375, -0.0216064453125, 0.038360595703125, -0.0038585662841796875, -0.019622802734375, 0.0290374755859375, 0.029876708984375, -0.054290771484375, 0.0221405029296875, 0.0305023193359375, -0.04339599609375, 0.035308837890625, 0.020233154296875, 0.04791259765625, -0.03509521484375, -0.024871826171875, -0.02252197265625, 0.05364990234375, 0.013702392578125, -0.0185394287109375, 0.04962158203125, 0.01445770263671875, 0.024322509765625, -0.05279541015625, -0.0171356201171875, -0.03680419921875, 0.0169677734375, 0.052947998046875, 0.0272674560546875, 0.0219268798828125, -0.045166015625, 0.0390625, 0.0241851806640625, 0.05230712890625, -0.061370849609375, -0.037109375, 0.007488250732421875, 0.0298919677734375, 0.0379638671875, 0.0107269287109375, 0.0784912109375, -0.014190673828125, 0.006824493408203125, 0.02069091796875, -0.004207611083984375, 0.01052093505859375, -0.006923675537109375, -0.005077362060546875, -0.03369140625, 0.0218658447265625, 0.0374755859375, -0.0213775634765625, -0.010772705078125, -0.0092620849609375, 0.0207672119140625, 0.022979736328125, 0.01238250732421875, 0.0057373046875, -0.01053619384765625, -0.009918212890625, 0.01605224609375, 0.00415802001953125, 0.002857208251953125, -0.011444091796875, -0.0009503364562988281, -0.0057220458984375, 0.020172119140625, 0.0229034423828125, 0.01047515869140625, 0.04998779296875, 0.00701141357421875, -0.03411865234375, 0.0036716461181640625, -0.03118896484375, -0.027252197265625, 0.0460205078125, -0.025177001953125, 0.055908203125, 0.0103302001953125, -0.00911712646484375, -0.01074981689453125, 0.0087738037109375, 0.048675537109375, 0.0238037109375, 0.010528564453125, 0.01397705078125, 0.042388916015625, 0.00090789794921875, 0.01364898681640625, -0.04852294921875, 0.04608154296875, -0.03912353515625, 0.006076812744140625, 0.01000213623046875, -0.052276611328125, 0.002399444580078125, 0.04364013671875, -0.025604248046875, 0.030670166015625, 0.0204620361328125, -0.04644775390625, 0.0031147003173828125, 0.036285400390625, -0.017852783203125, -0.06951904296875, 0.010894775390625, -0.060028076171875, -0.048126220703125, -0.02972412109375, 0.020477294921875, 0.0190582275390625, 0.0018901824951171875, 0.06890869140625, 0.01448822021484375, -0.01873779296875, -0.01275634765625, 0.0225067138671875, -0.042205810546875, -0.00022840499877929688, -0.04669189453125, -0.0169830322265625, 0.0247344970703125, 0.01430511474609375, -0.05767822265625, 0.06915283203125, -0.0084228515625, -0.00650787353515625, 0.067138671875, -0.035369873046875, -0.01378631591796875, -0.022857666015625, 0.04498291015625, -0.01439666748046875, -0.051910400390625, 0.007049560546875, 0.0307769775390625, -0.00331878662109375, 0.049468994140625, -0.006381988525390625, 0.043182373046875, -0.047088623046875, -0.004039764404296875, 0.0181121826171875, -0.0631103515625, -0.01171875, 0.01338958740234375, -0.02105712890625, 0.0133209228515625, -0.01256561279296875, -0.0294647216796875, 0.0068359375, 0.0117950439453125, -0.002498626708984375, -0.01351165771484375, 0.027984619140625, -0.0143280029296875, 0.03076171875, 0.03582763671875, 0.00940704345703125, 0.0268707275390625, -0.00952911376953125, -0.002838134765625, 0.0133209228515625, -0.0010499954223632812, -0.01416778564453125, -0.0078887939453125, -0.030303955078125, -0.0054779052734375, -0.009429931640625, -0.047393798828125, -0.01464080810546875, 0.01483154296875, 0.034515380859375, 0.00923919677734375, -0.060943603515625, 0.021881103515625, -0.0027523040771484375, 0.045501708984375, -0.0056304931640625, -0.004634857177734375, -0.00811767578125, 0.04058837890625, -0.00357818603515625, -0.032684326171875, -0.04864501953125, 0.0291290283203125, -0.041839599609375, -0.0097808837890625, 0.03887939453125, 0.004940032958984375, -0.0170135498046875, -0.0203399658203125, -0.006420135498046875, 0.01361846923828125, -0.0433349609375, -0.0237884521484375, -0.011444091796875, 0.037506103515625, -0.0026302337646484375, -0.0182037353515625, -0.0107574462890625, 0.040313720703125, -0.005634307861328125, 0.0067596435546875, -0.0026226043701171875, 0.0178985595703125, -0.043487548828125, -0.0963134765625, 0.039276123046875, -0.0152587890625, -0.034820556640625, -0.0189361572265625, -0.01023101806640625, -0.0005936622619628906, 0.049774169921875, -0.00746917724609375, -0.00555419921875, -0.0556640625, 0.007587432861328125, 0.02374267578125, 0.0039520263671875, 0.038726806640625, 0.012969970703125, -0.02899169921875, 0.024688720703125, 0.01806640625, 0.021453857421875, 0.012115478515625, -0.00292205810546875, 0.0224151611328125, 0.03826904296875, -0.024383544921875, -0.0260162353515625, -0.01204681396484375, -0.037322998046875, -0.00858306884765625, -0.0266571044921875, 0.0187530517578125, 0.0229034423828125, 0.0078277587890625, 0.031890869140625, -0.01511383056640625, -0.03717041015625, -0.046966552734375, -0.0104522705078125, -0.0027065277099609375, -0.042724609375, 0.0169525146484375, -0.0889892578125, -0.0244598388671875, -0.022430419921875, 0.0003955364227294922, 0.0288848876953125, -0.0848388671875, -0.0283203125, -0.006015777587890625, -0.0587158203125, 0.01488494873046875, -0.01024627685546875, -0.0118560791015625, 0.0474853515625, -0.035491943359375, -0.0004062652587890625, -0.0009365081787109375, 0.0203704833984375, 0.02227783203125, 0.004726409912109375, 0.0187225341796875, -0.0304412841796875, -0.0157318115234375, 0.0188446044921875, 0.01319122314453125, 0.019378662109375, -0.032745361328125, -0.050079345703125, -0.01433563232421875, 0.023773193359375, -0.0256805419921875, 0.0254364013671875, 0.004772186279296875, 0.03533935546875, 0.0166778564453125, 0.05059814453125, -0.015167236328125, -0.057525634765625, -0.03668212890625, 0.025177001953125, -0.019317626953125, -0.0018625259399414062, 0.006923675537109375, -0.005481719970703125, 0.005443572998046875, 0.0247650146484375, 0.043548583984375, -0.034881591796875, 0.0267486572265625, -0.0048065185546875, 0.05242919921875, 0.01168060302734375 ]
03acd9c15d89752e3f9e3c808f5c0773cdd5457b
Wordpress Stackexchange Q: What is /wp-json? I know about the REST API and I know what JSON is. My understanding is that to properly use the REST API right now it requires that the official plugin be installed. However when I hit the above directory even on sites that do not have the plugin installed I get data back. What is generating this? Is this relatively new or has this been in place for a while? A: That's the root URL for the REST API. All WordPress installs have it, but in 4.6 very few endpoints exist, mostly oembed and plugins. The core infrastructure for the REST API has been available since 4.5, with functions such as register_rest_route being available. /wp-json itself is generating discovery data, listing the various available endpoints. You may notice a large number of endpoints if you have for example Jetpack It's the content endpoints that require the WP API plugin, these are slated to be merged in with the 4.7 release
Q: What is /wp-json? I know about the REST API and I know what JSON is. My understanding is that to properly use the REST API right now it requires that the official plugin be installed. However when I hit the above directory even on sites that do not have the plugin installed I get data back. What is generating this? Is this relatively new or has this been in place for a while? A: That's the root URL for the REST API. All WordPress installs have it, but in 4.6 very few endpoints exist, mostly oembed and plugins. The core infrastructure for the REST API has been available since 4.5, with functions such as register_rest_route being available. /wp-json itself is generating discovery data, listing the various available endpoints. You may notice a large number of endpoints if you have for example Jetpack It's the content endpoints that require the WP API plugin, these are slated to be merged in with the 4.7 release
wordpress
{ "language": "en", "length": 164, "provenance": "stackexchange_00019.jsonl.gz:470344", "question_score": "7", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/246530" }
[ 0.0205230712890625, -0.02001953125, -0.049407958984375, -0.0445556640625, -0.0023860931396484375, -0.03857421875, 0.034637451171875, 0.03155517578125, -0.0094757080078125, 0.007411956787109375, -0.005939483642578125, -0.00279998779296875, -0.048736572265625, -0.0262451171875, -0.01324462890625, -0.054412841796875, 0.030548095703125, 0.00411224365234375, 0.020263671875, -0.01148223876953125, 0.00925445556640625, 0.00688934326171875, 0.00632476806640625, 0.077392578125, 0.0123748779296875, 0.0186767578125, 0.054046630859375, -0.032257080078125, 0.012969970703125, -0.021209716796875, 0.0126190185546875, -0.0207366943359375, 0.0105743408203125, 0.04827880859375, -0.04083251953125, -0.027740478515625, 0.003528594970703125, 0.019195556640625, 0.0055999755859375, 0.0241851806640625, 0.01287841796875, -0.0160369873046875, 0.00644683837890625, -0.0236968994140625, -0.0003981590270996094, 0.010162353515625, 0.0053253173828125, -0.044189453125, 0.0016336441040039062, 0.004749298095703125, 0.00695037841796875, -0.00972747802734375, 0.01496124267578125, 0.0212860107421875, -0.0043487548828125, -0.0017423629760742188, 0.054656982421875, 0.00897216796875, 0.045166015625, -0.045074462890625, -0.06787109375, 0.01412200927734375, 0.0174713134765625, -0.021148681640625, 0.05377197265625, -0.01861572265625, 0.01401519775390625, 0.042999267578125, -0.0237579345703125, 0.05511474609375, 0.0184783935546875, -0.04083251953125, -0.00826263427734375, -0.0182647705078125, -0.01055145263671875, 0.003559112548828125, 0.004039764404296875, -0.016632080078125, 0.021392822265625, 0.0037403106689453125, -0.002185821533203125, -0.0224456787109375, 0.0005421638488769531, -0.01055908203125, -0.0093994140625, -0.004055023193359375, -0.005565643310546875, -0.0045623779296875, -0.01885986328125, 0.002910614013671875, -0.01407623291015625, -0.078857421875, -0.01641845703125, 0.056243896484375, -0.00441741943359375, 0.002964019775390625, -0.03558349609375, -0.038818359375, -0.0183258056640625, 0.031219482421875, 0.0272674560546875, -0.041046142578125, 0.08697509765625, -0.0269622802734375, 0.020843505859375, -0.0252685546875, -0.0194854736328125, -0.0297393798828125, 0.057037353515625, 0.032501220703125, -0.03497314453125, 0.09765625, 0.0215301513671875, -0.004077911376953125, -0.03570556640625, -0.007732391357421875, -0.0011339187622070312, -0.00833892822265625, 0.001216888427734375, -0.02301025390625, -0.005695343017578125, 0.0017518997192382812, 0.00510406494140625, 0.010101318359375, 0.023773193359375, 0.012481689453125, -0.0185546875, -0.005542755126953125, -0.0309600830078125, -0.0004200935363769531, 0.004558563232421875, 0.032012939453125, 0.004085540771484375, 0.00751495361328125, -0.039794921875, 0.00637054443359375, 0.0008096694946289062, 0.010345458984375, 0.01305389404296875, -0.00336456298828125, 0.01497650146484375, -0.023590087890625, 0.0178070068359375, 0.0052490234375, 0.0158843994140625, -0.0391845703125, 0.01334381103515625, 0.0460205078125, 0.011566162109375, 0.01611328125, 0.00899505615234375, 0.0382080078125, 0.0309600830078125, 0.0111846923828125, 0.04437255859375, -0.0283203125, 0.06646728515625, -0.053375244140625, -0.0031490325927734375, -0.036773681640625, -0.021759033203125, -0.037322998046875, 0.005374908447265625, -0.01275634765625, -0.021240234375, 0.039215087890625, -0.0164337158203125, 0.01093292236328125, 0.02099609375, 0.0635986328125, 0.0038623809814453125, -0.005634307861328125, -0.0160675048828125, -0.00522613525390625, -0.01238250732421875, -0.0164337158203125, -0.007190704345703125, 0.005275726318359375, 0.01259613037109375, 0.035247802734375, 0.016815185546875, -0.0230560302734375, 0.037261962890625, 0.0022182464599609375, -0.0484619140625, 0.0657958984375, 0.01806640625, 0.08197021484375, -0.01209259033203125, 0.0226287841796875, 0.027984619140625, 0.0556640625, 0.0031719207763671875, 0.047821044921875, -0.0061798095703125, -0.05877685546875, 0.005794525146484375, 0.00463104248046875, -0.0200958251953125, -0.034393310546875, -0.01195526123046875, 0.00710296630859375, -0.00902557373046875, 0.0043487548828125, -0.0477294921875, -0.019622802734375, -0.0185089111328125, 0.02838134765625, -0.005092620849609375, 0.005329132080078125, 0.0156707763671875, 0.02130126953125, -0.0221099853515625, -0.0012388229370117188, -0.02728271484375, 0.0251617431640625, -0.0236358642578125, 0.016815185546875, 0.0025177001953125, 0.04364013671875, -0.0022296905517578125, -0.0031299591064453125, -0.005901336669921875, -0.0129852294921875, 0.053741455078125, -0.01715087890625, 0.0006194114685058594, -0.026397705078125, 0.07574462890625, -0.00653839111328125, 0.0157623291015625, 0.007068634033203125, 0.038604736328125, 0.026885986328125, -0.0168609619140625, -0.01085662841796875, 0.027252197265625, -0.04620361328125, 0.01238250732421875, 0.046875, 0.0338134765625, 0.0222320556640625, -0.0175018310546875, -0.03131103515625, 0.02099609375, -0.047637939453125, 0.014404296875, -0.0270843505859375, 0.003047943115234375, 0.01540374755859375, -0.01371002197265625, -0.0191192626953125, 0.0244598388671875, -0.05462646484375, -0.007511138916015625, 0.037811279296875, -0.01548004150390625, -0.004241943359375, -0.01430511474609375, -0.0053863525390625, 0.0209503173828125, -0.0175628662109375, -0.0299530029296875, -0.0017986297607421875, 0.006206512451171875, -0.0025653839111328125, 0.03521728515625, 0.047760009765625, -0.011077880859375, -0.036224365234375, 0.024627685546875, 0.054107666015625, -0.01421356201171875, 0.04791259765625, 0.0882568359375, 0.00855255126953125, -0.0391845703125, -0.03179931640625, 0.03125, 0.039886474609375, -0.0235595703125, -0.00843048095703125, -0.056365966796875, -0.003826141357421875, -0.0016431808471679688, -0.026458740234375, 0.0091705322265625, 0.033843994140625, 0.01184844970703125, 0.037750244140625, 0.0289154052734375, 0.05401611328125, 0.019805908203125, 0.034759521484375, -0.005523681640625, 0.0167083740234375, 0.030609130859375, -0.00586700439453125, 0.018829345703125, -0.03656005859375, -0.01111602783203125, 0.0271759033203125, -0.0034046173095703125, -0.0201263427734375, 0.0016880035400390625, -0.0263671875, -0.0155487060546875, 0.00844573974609375, -0.005634307861328125, -0.004039764404296875, -0.041778564453125, 0.048980712890625, 0.01442718505859375, 0.025390625, -0.0106964111328125, -0.04547119140625, -0.024688720703125, 0.01137542724609375, -0.1544189453125, -0.1319580078125, 0.05316162109375, -0.06549072265625, -0.01338958740234375, -0.0081939697265625, -0.053985595703125, -0.0045166015625, 0.038330078125, -0.01009368896484375, -0.021209716796875, -0.037689208984375, -0.0616455078125, -0.07470703125, -0.0849609375, -0.00390625, -0.00417327880859375, 0.0306854248046875, 0.01058197021484375, 0.0162200927734375, 0.0013952255249023438, -0.0183258056640625, 0.00531768798828125, 0.022003173828125, -0.0185089111328125, -0.03900146484375, 0.0010223388671875, -0.021575927734375, 0.0016355514526367188, -0.01505279541015625, 0.039886474609375, 0.0242919921875, -0.0154876708984375, -0.0015020370483398438, -0.0251007080078125, 0.003948211669921875, -0.0235137939453125, 0.0014286041259765625, 0.052398681640625, -0.01702880859375, -0.041229248046875, -0.0555419921875, -0.01125335693359375, -0.017578125, -0.03851318359375, 0.024810791015625, 0.015289306640625, -0.005573272705078125, -0.016754150390625, 0.042877197265625, 0.00864410400390625, -0.01800537109375, 0.0310821533203125, -0.0164031982421875, 0.05328369140625, -0.0191192626953125, -0.0207672119140625, -0.046875, 0.0701904296875, -0.00069427490234375, -0.062744140625, 0.005340576171875, -0.03167724609375, -0.038543701171875, -0.008453369140625, -0.06182861328125, -0.045989990234375, 0.05584716796875, 0.0104827880859375, 0.0105133056640625, -0.0260467529296875, -0.036773681640625, -0.00881195068359375, 0.07568359375, -0.00978851318359375, -0.00958251953125, 0.006107330322265625, 0.00536346435546875, -0.0285797119140625, 0.00676727294921875, -0.05096435546875, -0.005062103271484375, 0.0112152099609375, -0.00829315185546875, -0.023468017578125, -0.0131378173828125, 0.005115509033203125, -0.0043792724609375, 0.0269927978515625, -0.0201263427734375, 0.0289459228515625, -0.0777587890625, -0.0080718994140625, 0.0009131431579589844, -0.0017108917236328125, -0.06256103515625, -0.01666259765625, -0.0271759033203125, -0.03570556640625, -0.016571044921875, 0.0086212158203125, 0.03948974609375, 0.019500732421875, -0.0723876953125, 0.00795745849609375, 0.038482666015625, 0.00785064697265625, 0.0208587646484375, 0.0062408447265625, -0.006313323974609375, -0.0124359130859375, -0.0032825469970703125, 0.02362060546875, -0.02069091796875, -0.0352783203125, -0.022003173828125, 0.00023603439331054688, 0.01898193359375, 0.01806640625, 0.0066070556640625, 0.01251983642578125, 0.00907135009765625, 0.0016412734985351562, -0.0289764404296875, -0.0305328369140625, 0.0220489501953125, -0.03302001953125, 0.01971435546875, -0.038238525390625, -0.0168914794921875, 0.056549072265625, 0.0008134841918945312, 0.00826263427734375, 0.004878997802734375, 0.08673095703125, 0.007411956787109375, -0.0227813720703125, -0.0504150390625, -0.00643157958984375, 0.02130126953125, 0.0061798095703125, 0.0576171875, 0.02581787109375, -0.00992584228515625, 0.057373046875, -0.00585174560546875, 0.017578125, 0.04046630859375, 0.00743865966796875, 0.03448486328125, -0.019622802734375, 0.0310821533203125, 0.05401611328125, -0.08770751953125, 0.038330078125, 0.00466156005859375, -0.01220703125, 0.0251312255859375, 0.00945281982421875, -0.041900634765625, 0.0010042190551757812, -0.01245880126953125, -0.07623291015625, 0.03485107421875, -0.0340576171875, 0.0084075927734375, -0.006649017333984375, 0.00434112548828125, 0.04400634765625, 0.0141448974609375, -0.0004794597625732422, -0.00955963134765625, -0.00449371337890625, -0.00972747802734375, 0.0227203369140625, -0.0243377685546875, -0.005481719970703125, -0.020538330078125, -0.0231781005859375, 0.11248779296875, -0.00848388671875, -0.07305908203125, 0.04229736328125, -0.025543212890625, 0.0287017822265625, 0.05316162109375, 0.01219940185546875, 0.04376220703125, 0.048492431640625, -0.029266357421875, -0.037872314453125, -0.0158843994140625, 0.025848388671875, -0.06927490234375, 0.04730224609375, -0.004390716552734375, 0.0167694091796875, 0.002094268798828125, 0.0791015625, -0.004451751708984375, 0.050201416015625, -0.0226287841796875, 0.024383544921875, -0.006038665771484375, 0.05633544921875, 0.006595611572265625, -0.0160064697265625, 0.013214111328125, 0.0245513916015625, -0.0081024169921875, -0.048187255859375, -0.0280303955078125, 0.030517578125, 0.046234130859375, -0.04095458984375, -0.042633056640625, 0.034271240234375, -0.00812530517578125, -0.0247650146484375, -0.0081939697265625, -0.01467132568359375, 0.007297515869140625, -0.00583648681640625, 0.020355224609375, 0.033203125, 0.040679931640625, 0.001934051513671875, 0.0304107666015625, 0.0247650146484375, 0.033935546875, -0.021575927734375, -0.02191162109375, 0.00832366943359375, 0.0190887451171875, -0.00518798828125, -0.0182342529296875, -0.01824951171875, -0.03643798828125, -0.00479888916015625, 0.0018396377563476562, -0.019500732421875, 0.031890869140625, -0.0240020751953125, 0.00959014892578125, -0.0006008148193359375, 0.0049896240234375, -0.04473876953125, 0.0184173583984375, 0.0164642333984375, 0.0213165283203125, -0.014404296875, -0.0294647216796875, -0.017547607421875, -0.0206756591796875, 0.07373046875, 0.01232147216796875, -0.0103912353515625, -0.0121002197265625, 0.0167236328125, 0.01318359375, 0.0068359375, 0.00335693359375, 0.00786590576171875, 0.0180206298828125, -0.0182342529296875, 0.0175933837890625, -0.0197601318359375, 0.0850830078125, -0.041748046875, 0.044342041015625, -0.0118560791015625, 0.0309906005859375, -0.028228759765625, 0.003955841064453125, -0.0021839141845703125, -0.0322265625, -0.02337646484375, -0.01003265380859375, -0.0186920166015625, 0.040191650390625, 0.06689453125, 0.00337982177734375, 0.0281982421875, -0.0229339599609375, -0.01275634765625, 0.004486083984375, 0.05487060546875, -0.0196990966796875, 0.0213470458984375, 0.032745361328125, 0.004505157470703125, 0.031097412109375, -0.034027099609375, -0.041961669921875, 0.0057220458984375, 0.01239013671875, 0.005001068115234375, 0.031829833984375, -0.018218994140625, 0.0675048828125, 0.1212158203125, -0.0229339599609375, 0.056884765625, 0.04986572265625, -0.0166015625, 0.048126220703125, 0.033050537109375, 0.00760650634765625, -0.05755615234375, 0.0130767822265625, 0.0072784423828125, -0.011322021484375, 0.00202178955078125, -0.035400390625, 0.01495361328125, -0.01393890380859375, 0.0304412841796875, -0.01006317138671875, 0.00852203369140625, -0.014190673828125, -0.03448486328125, 0.037567138671875, -0.0176849365234375, -0.0107269287109375, -0.0247650146484375, 0.004756927490234375, -0.03704833984375, -0.05322265625, -0.02880859375, -0.00713348388671875, -0.0198516845703125, 0.0033130645751953125, 0.02618408203125, 0.008575439453125, 0.0391845703125, -0.01300811767578125, -0.04425048828125, 0.0394287109375, 0.021942138671875, 0.003437042236328125, 0.004390716552734375, -0.042938232421875, -0.0172271728515625, 0.01280975341796875, -0.02410888671875, -0.034332275390625, -0.0313720703125, -0.00925445556640625, 0.039306640625, 0.043182373046875, -0.0223236083984375, -0.0229339599609375, 0.0298309326171875, -0.011016845703125, 0.01442718505859375, -0.03533935546875, -0.0119476318359375, 0.0379638671875, -0.0260009765625, 0.0196380615234375, 0.0165252685546875, -0.002685546875, -0.006488800048828125, -0.04071044921875, 0.09527587890625, -0.0648193359375, 0.00833892822265625, 0.004451751708984375, 0.00795745849609375, -0.00264739990234375, -0.0163116455078125, 0.036529541015625, -0.043914794921875, 0.01141357421875, 0.004291534423828125, 0.0214385986328125, 0.00739288330078125, -0.00466156005859375, -0.00279998779296875, 0.07257080078125, -0.0185394287109375, -0.041168212890625, -0.01134490966796875, 0.0533447265625, -0.002105712890625, 0.049896240234375, -0.0238800048828125, 0.04180908203125, 0.019287109375, 0.01232147216796875, -0.0302581787109375, -0.003376007080078125, -0.0032825469970703125, 0.01776123046875, 0.05499267578125, 0.0194091796875, -0.0249786376953125, -0.01317596435546875, -0.006244659423828125, -0.04254150390625, -0.056732177734375, 0.0816650390625, 0.033599853515625, 0.02825927734375, 0.06744384765625, -0.0279998779296875, 0.0192413330078125, 0.0135955810546875, 0.03546142578125, 0.061981201171875, 0.03155517578125, 0.0238037109375, -0.0154571533203125, 0.02459716796875, -0.011016845703125, -0.0203399658203125, 0.01306915283203125, -0.0176849365234375, -0.04144287109375, 0.060333251953125, 0.003223419189453125, -0.0167388916015625, 0.017181396484375, -0.058319091796875, 0.03778076171875, -0.00010162591934204102, 0.046417236328125, 0.00937652587890625, 0.03521728515625, 0.03692626953125, -0.0156097412109375, 0.0172119140625, 0.033966064453125, -0.046905517578125, 0.02655029296875, 0.03790283203125, 0.044952392578125, -0.039520263671875, -0.049560546875, 0.0560302734375, 0.05926513671875, -0.025604248046875, -0.07373046875, 0.004787445068359375, 0.0162353515625, 0.033721923828125, 0.033294677734375, 0.07220458984375, -0.03668212890625, 0.0180511474609375, 0.006839752197265625, 0.0011425018310546875, 0.0178070068359375, 0.0095062255859375, 0.01727294921875, 0.038970947265625, -0.0316162109375, 0.01277923583984375, -0.0258636474609375, 0.01340484619140625, 0.0240631103515625, 0.0308380126953125, 0.00037407875061035156, 0.041748046875, -0.02813720703125, -0.003948211669921875, 0.020751953125, 0.0255126953125, 0.0189361572265625, -0.03570556640625, 0.03271484375, -0.036865234375, 0.0240478515625, -0.0077972412109375, 0.023712158203125, 0.0224151611328125, 0.041015625, 0.01326751708984375, -0.03192138671875, 0.0031585693359375, 0.0124359130859375, -0.0235137939453125, -0.0740966796875, -0.03436279296875, 0.0222015380859375, 0.052764892578125, 0.0328369140625, 0.0202484130859375, 0.044219970703125, 0.0159149169921875, -0.0577392578125, 0.051361083984375, -0.0166168212890625, -0.03399658203125, 0.0474853515625, -0.0189361572265625, 0.087890625, -0.036834716796875, -0.04296875, 0.00341796875, -0.000102996826171875, -0.0147857666015625, -0.0146331787109375, 0.007740020751953125, -0.04339599609375, 0.0709228515625, -0.0151824951171875, 0.0108184814453125, -0.0016078948974609375, -0.0189056396484375, 0.02020263671875, -0.0231475830078125, 0.00957489013671875, -0.01384735107421875, -0.03338623046875, -0.02081298828125, -0.0202789306640625, 0.02008056640625, -0.0164642333984375, 0.0792236328125, -0.0277862548828125, 0.007625579833984375, -0.052978515625, -0.0178985595703125, -0.0030059814453125, -0.0089263916015625, -0.026458740234375, 0.035003662109375, 0.00466156005859375, -0.004390716552734375, -0.042755126953125, 0.0086822509765625, 0.035430908203125, -0.0237579345703125, 0.0229949951171875, -0.020355224609375, 0.0232086181640625, -0.03662109375, 0.0008230209350585938, -0.043853759765625, -0.04473876953125, -0.018524169921875, 0.01052093505859375, -0.0115966796875, 0.0131378173828125, 0.023406982421875, 0.028106689453125, 0.0069732666015625, -0.0128021240234375, 0.00894927978515625, -0.01300048828125, -0.0001842975616455078, 0.023468017578125, 0.007770538330078125, 0.0195465087890625, -0.03900146484375, -0.033416748046875, 0.01068115234375, -0.0186004638671875, 0.0029659271240234375, -0.042724609375, 0.023345947265625, -0.0202178955078125, -0.01125335693359375, 0.01529693603515625, -0.00020492076873779297, -0.008819580078125, -0.02569580078125, 0.0063018798828125, -0.0189361572265625, 0.0022792816162109375, -0.00470733642578125, -0.03302001953125, -0.0234527587890625, 0.0033016204833984375, -0.037322998046875, -0.01284027099609375, -0.0135040283203125, -0.01016998291015625, 0.01432037353515625, -0.002227783203125, -0.0174560546875, 0.00783538818359375, -0.0239715576171875, -0.007289886474609375, 0.0035114288330078125, 0.033538818359375, -0.01387786865234375, 0.032379150390625, -0.04083251953125, 0.00521087646484375, -0.021148681640625, -0.0115203857421875, -0.010406494140625, 0.004695892333984375, 0.004425048828125, -0.007587432861328125, -0.0283355712890625, 0.01035308837890625, 0.01055908203125, 0.043304443359375, 0.0044708251953125, -0.006412506103515625, -0.00734710693359375, 0.0272674560546875, -0.0139617919921875, -0.057861328125, -0.0117645263671875, -0.01849365234375, 0.00302886962890625, -0.03472900390625, 0.0298919677734375, 0.021636962890625, -0.0401611328125, -0.09490966796875, 0.0269622802734375, -0.022491455078125, -0.035003662109375, -0.0743408203125, -0.0250701904296875, 0.0130767822265625, 0.0010204315185546875, -0.049591064453125, 0.00405120849609375, -0.0478515625, 0.06500244140625, -0.00060272216796875, 0.039215087890625, -0.0132598876953125, -0.007617950439453125, -0.059722900390625, 0.015106201171875, -0.00328826904296875, 0.006534576416015625, -0.006641387939453125, 0.0250396728515625, 0.0157928466796875, 0.026763916015625, -0.0382080078125, 0.061798095703125, -0.0143585205078125, 0.029937744140625, -0.005008697509765625, -0.021636962890625, -0.000637054443359375, 0.0116424560546875, 0.0396728515625, 0.042633056640625, 0.0098419189453125, -0.0478515625, -0.004268646240234375, -0.026885986328125, -0.0016107559204101562, -0.00788116455078125, 0.00016760826110839844, -0.036590576171875, -0.0019369125366210938, 0.007358551025390625, 0.036865234375, 0.0203399658203125, -0.0731201171875, 0.01282501220703125, -0.042572021484375, -0.016021728515625, -0.0149993896484375, 0.055389404296875, -0.033843994140625, 0.00792694091796875, -0.0091400146484375, 0.006107330322265625, -0.0068511962890625, 0.039398193359375, -0.00887298583984375, 0.0184326171875, -0.027435302734375, 0.021453857421875, -0.032745361328125, 0.00984954833984375, -0.01485443115234375, 0.033050537109375, -0.0457763671875, 0.005725860595703125, -0.01123046875, 0.035430908203125, 0.0158233642578125, 0.058563232421875, -0.0199127197265625, 0.0253448486328125, 0.020172119140625, 0.0019311904907226562, 0.0029125213623046875, 0.0137176513671875, -0.0293426513671875, 0.05303955078125, -0.023651123046875, -0.0194854736328125, -0.0022754669189453125, -0.02227783203125, -0.007579803466796875, 0.0160675048828125, -0.03521728515625, -0.04583740234375, -0.0011844635009765625, 0.01395416259765625, -0.0009684562683105469, 0.003971099853515625 ]
a664d088a462075cadd395ad07d7e9653aa33143
Wordpress Stackexchange Q: Why does WordPress have private functions? Note: I am talking about _wp_get_current_user(); not wp_get_current_user(). If you check the function _wp_get_current_user(); you can see the following statement: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness. Use wp_get_current_user() instead. Why does WordPress have these types of private functions? Why doesn't WordPress allow to use these types of functions for WordPress plugin or theme developers? A: Put simply, developers will choose to make those internal functions 'private' because they don't want to have to provide public support for them. For example, they don't guarantee that any function arguments will be kept consistent in placement or even existence from update to update. Not that this actually stops plenty of developers from using 'private' functions anyway...
Q: Why does WordPress have private functions? Note: I am talking about _wp_get_current_user(); not wp_get_current_user(). If you check the function _wp_get_current_user(); you can see the following statement: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness. Use wp_get_current_user() instead. Why does WordPress have these types of private functions? Why doesn't WordPress allow to use these types of functions for WordPress plugin or theme developers? A: Put simply, developers will choose to make those internal functions 'private' because they don't want to have to provide public support for them. For example, they don't guarantee that any function arguments will be kept consistent in placement or even existence from update to update. Not that this actually stops plenty of developers from using 'private' functions anyway... A: It was not at first absolutely clear to me so I needed to check out deeper. If you take for instance the great wp-includes/user.php file you will not find a single PHP class definition in there. File: /wp-includes/user.php 2452: * @since 4.5.0 2453: * @access private 2454: * 2455: * @see wp_get_current_user() 2456: * @global WP_User $current_user Checks if the current user is set. 2457: * 2458: * @return WP_User Current WP_User instance. 2459: */ 2460: function _wp_get_current_user() { Yet you will find the _wp_get_current_user() function we are interested in. What you see @access private is just a tip for the PHP doc generator. This also indicates that this function in the future may become private function inside of a class. The concept of a private function exists only when you have PHP classes and this is with PHP 5 or later (since then PHP is Object Oriented). The concept is called encapsulation. WordPress gradually improves the PHP code by introducing classes, but the process will not happen over the night. A: It is quite normal practice for code to not be a part of public API. But much of WP code is ancient and procedural. There are no technical ways to make a private function. These are semantically private, that is WP doesn't want you to use them, but it cannot actually forbid you to. There is a long history of "private" WP APIs being actively used in practice by extensions. The reasons for declaring something private vary from case to case. In this specific case you raised the reason seems to be that "public" version is pluggable, so moving implementation to a "private" version allows original to be replaced more easily / with less issues.
wordpress
{ "language": "en", "length": 432, "provenance": "stackexchange_00019.jsonl.gz:470352", "question_score": "7", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/246556" }
[ 0.0755615234375, -0.00750732421875, 0.0283966064453125, -0.031005859375, -0.0010700225830078125, -0.0246734619140625, 0.0214691162109375, -0.017333984375, 0.0002536773681640625, 0.0159759521484375, 0.0005850791931152344, -0.0027103424072265625, -0.039947509765625, -0.0301666259765625, -0.018280029296875, -0.029388427734375, 0.0284271240234375, -0.0117950439453125, 0.01451873779296875, -0.020263671875, 0.0013055801391601562, 0.00762939453125, 0.0273590087890625, 0.033721923828125, 0.040313720703125, -0.0184173583984375, 0.037017822265625, -0.029052734375, 0.043670654296875, -0.00681304931640625, 0.0241241455078125, -0.034393310546875, -0.0186614990234375, 0.0416259765625, 0.0211181640625, -0.00344085693359375, -0.0307159423828125, 0.02655029296875, 0.049102783203125, -0.008819580078125, -0.004589080810546875, 0.0233306884765625, -0.05706787109375, 0.042449951171875, -0.06689453125, -0.0806884765625, 0.019500732421875, 0.03167724609375, 0.00955963134765625, 0.0188751220703125, 0.03662109375, 0.0038127899169921875, 0.049530029296875, -0.01165771484375, -0.00678253173828125, 0.0165863037109375, 0.0170135498046875, -0.00437164306640625, 0.052001953125, -0.01268768310546875, -0.060089111328125, -0.0341796875, 0.034576416015625, -0.04034423828125, 0.01148223876953125, -0.0173187255859375, 0.0059661865234375, 0.02410888671875, -0.04443359375, 0.00795745849609375, 0.042022705078125, -0.0233001708984375, 0.000042378902435302734, 0.0228424072265625, -0.0201873779296875, -0.047027587890625, 0.0306549072265625, -0.0233917236328125, 0.006053924560546875, 0.03399658203125, -0.0242919921875, -0.03375244140625, -0.07586669921875, 0.057220458984375, -0.030975341796875, 0.08880615234375, -0.0150604248046875, -0.021728515625, -0.009674072265625, 0.0164031982421875, -0.0164337158203125, 0.01398468017578125, 0.01702880859375, -0.005657196044921875, -0.02935791015625, -0.01363372802734375, 0.041839599609375, 0.04547119140625, -0.040069580078125, -0.034393310546875, 0.046539306640625, -0.03765869140625, 0.0174102783203125, -0.007305145263671875, -0.01506805419921875, 0.046234130859375, -0.01554107666015625, -0.005157470703125, -0.013427734375, 0.037689208984375, 0.0193634033203125, -0.0670166015625, 0.005962371826171875, -0.07916259765625, 0.01502227783203125, 0.032623291015625, -0.0015230178833007812, 0.022430419921875, 0.0263519287109375, 0.003955841064453125, 0.0174102783203125, 0.0428466796875, -0.0003020763397216797, -0.013580322265625, -0.01473236083984375, -0.027374267578125, -0.025390625, -0.0191650390625, -0.0224609375, 0.0408935546875, -0.03863525390625, -0.01270294189453125, 0.051666259765625, 0.01971435546875, -0.00604248046875, -0.030426025390625, 0.01343536376953125, -0.0197296142578125, -0.0005736351013183594, 0.032806396484375, -0.0082855224609375, -0.027008056640625, 0.004695892333984375, -0.0231170654296875, -0.00225830078125, 0.00937652587890625, 0.02423095703125, 0.01335906982421875, -0.01389312744140625, -0.004604339599609375, -0.0303955078125, 0.036956787109375, -0.03546142578125, 0.035186767578125, 0.0621337890625, 0.0467529296875, 0.0184173583984375, 0.00627899169921875, 0.0157012939453125, 0.049652099609375, 0.06622314453125, -0.0210418701171875, -0.022369384765625, 0.055419921875, -0.003559112548828125, 0.022796630859375, -0.0301513671875, -0.0024471282958984375, 0.0289764404296875, 0.01131439208984375, 0.0301971435546875, -0.031494140625, 0.042694091796875, 0.051055908203125, 0.007266998291015625, 0.032196044921875, 0.0008778572082519531, 0.05242919921875, 0.02105712890625, 0.03619384765625, 0.006336212158203125, -0.0291595458984375, 0.08551025390625, -0.033233642578125, -0.03955078125, 0.00963592529296875, 0.0222320556640625, 0.068115234375, 0.0160369873046875, 0.0285491943359375, 0.0147705078125, 0.00785064697265625, -0.0211944580078125, 0.03167724609375, 0.0023670196533203125, -0.025421142578125, -0.012420654296875, -0.004913330078125, -0.019744873046875, -0.00257110595703125, 0.017303466796875, 0.016754150390625, -0.019378662109375, -0.04876708984375, -0.0809326171875, -0.012664794921875, -0.01849365234375, 0.041015625, -0.0061798095703125, -0.01085662841796875, -0.006114959716796875, -0.03839111328125, 0.002338409423828125, 0.006275177001953125, -0.023895263671875, -0.0013380050659179688, -0.01470184326171875, 0.0810546875, 0.00682830810546875, 0.05938720703125, -0.0258331298828125, -0.033416748046875, -0.00827789306640625, -0.0228729248046875, 0.0288848876953125, 0.03472900390625, -0.019195556640625, 0.0158843994140625, 0.024566650390625, 0.022064208984375, 0.00994110107421875, -0.0031986236572265625, 0.0250091552734375, 0.043701171875, -0.01324462890625, -0.01239013671875, 0.0016107559204101562, -0.03790283203125, 0.00099945068359375, 0.044342041015625, 0.03472900390625, 0.0364990234375, 0.010162353515625, 0.0113677978515625, 0.03753662109375, -0.04315185546875, 0.0182037353515625, -0.018646240234375, 0.00740814208984375, 0.0306396484375, -0.01535797119140625, -0.01105499267578125, 0.0206146240234375, -0.0552978515625, -0.0030918121337890625, 0.0455322265625, -0.03729248046875, -0.00927734375, 0.00010794401168823242, -0.0218353271484375, 0.007232666015625, -0.08026123046875, -0.01088714599609375, -0.031494140625, -0.00748443603515625, 0.00782012939453125, 0.013916015625, 0.017669677734375, -0.00615692138671875, -0.014404296875, 0.0105743408203125, -0.0263519287109375, -0.00406646728515625, 0.01690673828125, 0.013641357421875, 0.00934600830078125, -0.0179290771484375, -0.0172271728515625, 0.0220794677734375, 0.0005092620849609375, 0.0096893310546875, 0.025146484375, -0.061676025390625, -0.00907135009765625, 0.026885986328125, -0.0028514862060546875, -0.0260009765625, 0.020751953125, 0.0299530029296875, -0.0248565673828125, 0.007320404052734375, 0.0176849365234375, -0.038238525390625, 0.09234619140625, -0.02569580078125, -0.03466796875, 0.01087188720703125, -0.0279998779296875, 0.005519866943359375, -0.0253753662109375, 0.07415771484375, 0.052886962890625, 0.0023860931396484375, 0.001613616943359375, 0.0194854736328125, -0.0181732177734375, 0.028564453125, 0.00579071044921875, -0.00019240379333496094, 0.006961822509765625, -0.05218505859375, 0.01448822021484375, 0.01136016845703125, 0.044525146484375, -0.046112060546875, -0.05615234375, -0.02850341796875, 0.003421783447265625, -0.05584716796875, -0.00508880615234375, -0.01407623291015625, -0.0767822265625, -0.01476287841796875, -0.027313232421875, -0.037139892578125, 0.024017333984375, -0.020233154296875, 0.01534271240234375, -0.031005859375, -0.0345458984375, -0.040252685546875, -0.06756591796875, -0.072509765625, 0.04412841796875, 0.0037860870361328125, 0.020751953125, -0.0088348388671875, 0.053070068359375, -0.005573272705078125, -0.08282470703125, -0.059906005859375, 0.03741455078125, -0.016143798828125, -0.03338623046875, 0.0088958740234375, -0.028106689453125, 0.0138397216796875, 0.00868988037109375, -0.0253143310546875, 0.004070281982421875, 0.004657745361328125, -0.022796630859375, 0.022857666015625, -0.0310821533203125, 0.02197265625, 0.04998779296875, -0.035125732421875, -0.0066375732421875, 0.05010986328125, -0.045806884765625, 0.006038665771484375, -0.00036072731018066406, -0.0220489501953125, 0.025482177734375, -0.006000518798828125, -0.03472900390625, -0.0008425712585449219, -0.007511138916015625, 0.046173095703125, 0.050750732421875, -0.0477294921875, 0.040679931640625, 0.0296783447265625, 0.0159759521484375, 0.036407470703125, 0.007045745849609375, 0.041351318359375, -0.014892578125, 0.03192138671875, 0.021392822265625, -0.0020961761474609375, -0.013702392578125, 0.002971649169921875, -0.0278472900390625, -0.027923583984375, 0.043182373046875, 0.01113128662109375, 0.016693115234375, -0.01375579833984375, -0.01522064208984375, -0.0105438232421875, 0.07122802734375, -0.0039005279541015625, 0.0079193115234375, 0.0265350341796875, -0.0027484893798828125, -0.06634521484375, -0.025787353515625, -0.1065673828125, 0.00164031982421875, 0.00965118408203125, -0.0225372314453125, -0.0116729736328125, -0.002574920654296875, -0.029754638671875, 0.0452880859375, -0.01023101806640625, -0.005802154541015625, 0.004749298095703125, 0.0023212432861328125, 0.0167694091796875, -0.02532958984375, 0.00594329833984375, -0.043731689453125, 0.0347900390625, -0.038543701171875, -0.058197021484375, -0.01314544677734375, -0.02178955078125, 0.0714111328125, 0.01439666748046875, 0.0072021484375, -0.0234375, 0.0271148681640625, -0.0029735565185546875, 0.01971435546875, -0.01024627685546875, -0.0255889892578125, 0.052032470703125, 0.03131103515625, -0.0059051513671875, 0.0305023193359375, 0.0139617919921875, -0.00656890869140625, -0.06072998046875, -0.07391357421875, -0.0399169921875, -0.0443115234375, 0.031768798828125, -0.057037353515625, -0.03863525390625, -0.010162353515625, 0.0252685546875, 0.0289306640625, -0.01290130615234375, 0.0238494873046875, -0.0101776123046875, -0.022674560546875, 0.046417236328125, 0.00997161865234375, -0.0270843505859375, -0.003620147705078125, 0.041778564453125, 0.01309967041015625, -0.037933349609375, -0.0211944580078125, 0.004177093505859375, 0.033660888671875, -0.022918701171875, 0.0265045166015625, 0.00693511962890625, -0.03399658203125, 0.06304931640625, 0.003765106201171875, 0.035186767578125, -0.022186279296875, 0.0208892822265625, -0.015777587890625, -0.0229949951171875, 0.0257568359375, 0.00304412841796875, 0.0019664764404296875, -0.01044464111328125, -0.007556915283203125, -0.055206298828125, -0.007129669189453125, 0.04156494140625, -0.005214691162109375, 0.064208984375, 0.0004284381866455078, -0.034210205078125, 0.00855255126953125, -0.055023193359375, 0.0416259765625, 0.03192138671875, -0.00469207763671875, 0.039398193359375, 0.005153656005859375, -0.024749755859375, -0.0190887451171875, -0.007904052734375, -0.00664520263671875, 0.019744873046875, -0.03216552734375, -0.0037841796875, -0.02227783203125, -0.02178955078125, 0.079833984375, 0.00274658203125, -0.06744384765625, 0.022308349609375, -0.0288238525390625, 0.02392578125, 0.0343017578125, -0.028778076171875, 0.05670166015625, -0.003963470458984375, -0.027008056640625, -0.01226043701171875, -0.0975341796875, -0.00539398193359375, -0.06011962890625, 0.038299560546875, -0.0004341602325439453, 0.01471710205078125, 0.0185089111328125, 0.05450439453125, 0.026275634765625, 0.040679931640625, -0.02972412109375, 0.032073974609375, 0.01531982421875, 0.00702667236328125, 0.01241302490234375, -0.003589630126953125, 0.01934814453125, -0.0255584716796875, 0.03436279296875, -0.0243072509765625, -0.0025310516357421875, 0.0157012939453125, 0.009613037109375, 0.0116424560546875, 0.00875091552734375, 0.0171966552734375, 0.0210418701171875, -0.00937652587890625, 0.038116455078125, 0.0384521484375, -0.0224151611328125, -0.0167388916015625, 0.0357666015625, 0.03759765625, 0.01611328125, 0.00299072265625, 0.01050567626953125, -0.004024505615234375, -0.0241851806640625, 0.043670654296875, -0.05670166015625, -0.0170440673828125, 0.0086669921875, -0.0301361083984375, -0.00522613525390625, -0.00821685791015625, -0.0239410400390625, -0.030181884765625, -0.0126800537109375, -0.042755126953125, 0.077392578125, 0.00870513916015625, 0.0245208740234375, -0.056304931640625, -0.01354217529296875, -0.0185089111328125, -0.0218658447265625, 0.0838623046875, 0.045257568359375, -0.038604736328125, 0.004894256591796875, -0.05010986328125, -0.0167999267578125, -0.0208740234375, -0.056549072265625, -0.0236968994140625, -0.022735595703125, 0.00830078125, 0.02667236328125, -0.019134521484375, -0.04736328125, -0.0259857177734375, 0.008819580078125, 0.034698486328125, 0.051025390625, -0.0124053955078125, 0.07647705078125, 0.03802490234375, 0.0372314453125, 0.0207672119140625, 0.05303955078125, -0.0256500244140625, -0.02227783203125, 0.041015625, 0.00791168212890625, -0.04052734375, -0.06536865234375, 0.0162353515625, -0.035980224609375, 0.019195556640625, -0.0234222412109375, 0.008331298828125, -0.0026912689208984375, 0.00042891502380371094, -0.0150909423828125, 0.02215576171875, 0.01551055908203125, -0.007354736328125, 0.02276611328125, -0.01458740234375, -0.0032806396484375, 0.005298614501953125, -0.029998779296875, 0.0214385986328125, 0.011993408203125, 0.0243072509765625, 0.006526947021484375, -0.050323486328125, 0.03558349609375, 0.0628662109375, 0.004245758056640625, 0.0372314453125, 0.0261993408203125, 0.037750244140625, 0.039031982421875, 0.01409149169921875, -0.04364013671875, 0.0007143020629882812, 0.0244903564453125, 0.0063629150390625, -0.0171966552734375, 0.0012073516845703125, -0.0197601318359375, 0.036041259765625, 0.0640869140625, 0.0933837890625, -0.10797119140625, 0.035369873046875, 0.041839599609375, -0.010986328125, 0.00600433349609375, -0.00173187255859375, -0.005283355712890625, -0.061492919921875, 0.06072998046875, -0.00041294097900390625, 0.006191253662109375, 0.0265960693359375, -0.021820068359375, -0.01366424560546875, -0.0015382766723632812, 0.02215576171875, 0.0010013580322265625, -0.0101318359375, 0.0028324127197265625, -0.0048065185546875, 0.01340484619140625, 0.002941131591796875, 0.00383758544921875, 0.010284423828125, -0.039306640625, -0.07794189453125, -0.012725830078125, 0.00884246826171875, -0.0390625, 0.00916290283203125, -0.0232696533203125, 0.03955078125, 0.03631591796875, -0.0225372314453125, -0.004306793212890625, 0.0169830322265625, -0.00635528564453125, -0.006534576416015625, -0.052520751953125, 0.03900146484375, 0.036346435546875, -0.0771484375, 0.0236053466796875, -0.01024627685546875, -0.03790283203125, -0.0257415771484375, -0.036468505859375, 0.07159423828125, -0.02471923828125, -0.011383056640625, 0.025299072265625, 0.02593994140625, -0.024169921875, 0.004215240478515625, 0.00036025047302246094, -0.038360595703125, -0.0168914794921875, 0.0016717910766601562, -0.02850341796875, 0.0447998046875, 0.010406494140625, -0.026397705078125, 0.0693359375, -0.01024627685546875, 0.0181121826171875, 0.04278564453125, 0.022216796875, -0.01406097412109375, 0.02215576171875, -0.013397216796875, 0.03564453125, 0.001552581787109375, 0.01169586181640625, -0.040313720703125, -0.0114288330078125, -0.00833892822265625, 0.027923583984375, 0.056243896484375, 0.02197265625, 0.0117340087890625, -0.0227508544921875, 0.00798797607421875, 0.027313232421875, -0.02655029296875, 0.021697998046875, 0.00997161865234375, 0.04888916015625, 0.0265350341796875, -0.03240966796875, 0.0294952392578125, -0.03399658203125, -0.0170440673828125, 0.0401611328125, -0.0084991455078125, -0.0210418701171875, -0.03564453125, 0.047698974609375, -0.04400634765625, -0.01244354248046875, 0.0179595947265625, 0.01161956787109375, -0.0179901123046875, 0.05364990234375, 0.0155181884765625, -0.01245880126953125, -0.00543975830078125, -0.03546142578125, 0.04034423828125, -0.00020611286163330078, 0.022430419921875, 0.05718994140625, 0.035125732421875, -0.021575927734375, 0.01329803466796875, 0.0299530029296875, 0.008544921875, -0.032073974609375, 0.0300750732421875, 0.0284881591796875, 0.023345947265625, -0.041259765625, -0.00952911376953125, 0.06561279296875, 0.061309814453125, -0.032379150390625, -0.03875732421875, -0.00290679931640625, -0.0010433197021484375, 0.0229034423828125, 0.0143890380859375, 0.0323486328125, 0.050140380859375, 0.045623779296875, -0.01776123046875, -0.004940032958984375, 0.0028533935546875, 0.01148223876953125, -0.01061248779296875, -0.023223876953125, 0.0012655258178710938, -0.00341033935546875, -0.0128173828125, -0.039398193359375, -0.0025501251220703125, 0.007259368896484375, 0.01113128662109375, 0.0048675537109375, 0.051727294921875, -0.0045166015625, -0.006072998046875, -0.007503509521484375, -0.00675201416015625, 0.0003590583801269531, -0.02398681640625, -0.0305328369140625, 0.013397216796875, 0.02362060546875, 0.0175018310546875, 0.006389617919921875, -0.005924224853515625, -0.0258331298828125, -0.0277862548828125, 0.0012292861938476562, -0.003650665283203125, -0.0206298828125, -0.006160736083984375, -0.005336761474609375, 0.004825592041015625, 0.02020263671875, -0.0126495361328125, -0.0275115966796875, 0.00653839111328125, 0.043975830078125, -0.01348876953125, 0.0127716064453125, -0.002033233642578125, -0.01470184326171875, 0.01513671875, -0.034454345703125, 0.0128936767578125, -0.00824737548828125, -0.04266357421875, 0.0068206787109375, -0.0307159423828125, 0.004505157470703125, -0.01403045654296875, 0.0146331787109375, 0.018402099609375, 0.01025390625, 0.046905517578125, -0.0247039794921875, 0.004779815673828125, 0.0011091232299804688, 0.040557861328125, -0.0195465087890625, 0.007442474365234375, 0.0157928466796875, -0.036102294921875, -0.031463623046875, -0.027587890625, 0.044525146484375, 0.0297393798828125, 0.072998046875, -0.0206451416015625, 0.0274658203125, -0.031829833984375, -0.00823974609375, -0.0400390625, -0.052520751953125, 0.035552978515625, -0.003292083740234375, -0.006580352783203125, 0.018096923828125, -0.04534912109375, 0.0161590576171875, 0.0029430389404296875, -0.018646240234375, 0.0086669921875, -0.00684356689453125, 0.0240020751953125, 0.01041412353515625, 0.018463134765625, -0.01318359375, -0.0180206298828125, 0.0191192626953125, 0.0160369873046875, 0.0185394287109375, 0.0084075927734375, -0.0146331787109375, 0.004638671875, -0.00455474853515625, -0.05877685546875, -0.0157623291015625, -0.019775390625, -0.040008544921875, 0.0244598388671875, 0.0186767578125, -0.00499725341796875, -0.02801513671875, -0.03253173828125, 0.0084075927734375, -0.0212860107421875, 0.0298614501953125, -0.03216552734375, 0.00574493408203125, 0.0138092041015625, -0.036224365234375, 0.0228271484375, -0.0192718505859375, -0.007419586181640625, -0.02484130859375, 0.0233154296875, -0.0181732177734375, -0.0270538330078125, -0.0257415771484375, -0.02215576171875, 0.002330780029296875, 0.01549530029296875, -0.0014820098876953125, -0.029388427734375, -0.047576904296875, 0.0281982421875, 0.0009398460388183594, 0.0096435546875, -0.06640625, 0.03460693359375, -0.0006847381591796875, 0.03643798828125, -0.023651123046875, 0.007843017578125, 0.00931549072265625, 0.0299224853515625, -0.0250091552734375, 0.001739501953125, -0.01534271240234375, 0.005992889404296875, 0.0212554931640625, 0.067138671875, 0.06280517578125, -0.02886962890625, -0.006282806396484375, 0.1114501953125, 0.0209808349609375, 0.163330078125, -0.033233642578125, -0.0244598388671875, -0.0037212371826171875, -0.0027942657470703125, 0.0089569091796875, -0.0164947509765625, 0.016510009765625, -0.03656005859375, -0.035797119140625, -0.0015020370483398438, -0.00746917724609375, 0.02490234375, -0.03759765625, -0.0518798828125, 0.03546142578125, 0.0052032470703125, -0.0419921875, -0.0291595458984375, 0.01134490966796875, -0.016357421875, 0.015380859375, 0.0045623779296875, -0.037200927734375, 0.0006074905395507812, 0.04998779296875, 0.0239105224609375, 0.019561767578125, 0.0259857177734375, 0.03546142578125, -0.044708251953125, 0.029327392578125, 0.0151214599609375, 0.0098419189453125, -0.0075836181640625, -0.00759124755859375, 0.027191162109375, 0.042999267578125, -0.003551483154296875, 0.03472900390625, 0.0139007568359375, 0.0179901123046875, -0.0235137939453125, -0.04351806640625, 0.010009765625, 0.004352569580078125, 0.048675537109375, 0.0178375244140625, 0.0131988525390625, -0.031463623046875, -0.060089111328125, -0.02105712890625, -0.01021575927734375, -0.0030994415283203125, 0.0190887451171875, -0.07745361328125, 0.01361846923828125, 0.0205535888671875, -0.016571044921875, -0.0029773712158203125, -0.036041259765625, -0.054107666015625, -0.003448486328125, -0.036865234375, 0.0006289482116699219, 0.0000426173210144043, -0.04144287109375, 0.01418304443359375, -0.0196075439453125, -0.03753662109375, 0.039306640625, 0.00791168212890625, -0.0104217529296875, 0.06878662109375, 0.00911712646484375, 0.007598876953125, -0.0428466796875, 0.0038433074951171875, -0.00540924072265625, 0.0616455078125, -0.0251007080078125, -0.03350830078125, -0.0151214599609375, 0.012969970703125, -0.0012035369873046875, 0.01873779296875, 0.006866455078125, 0.05877685546875, 0.03204345703125, 0.020416259765625, 0.00836181640625, 0.02996826171875, -0.025054931640625, 0.0469970703125, -0.006580352783203125, -0.011566162109375, 0.0034465789794921875, -0.004276275634765625, 0.00508880615234375, 0.006786346435546875, 0.033233642578125, -0.0119171142578125, 0.0109710693359375, -0.0252838134765625, -0.0019664764404296875, 0.0010242462158203125 ]
2fee1776480f0a27a604e46b70c771ff263afa2c
Wordpress Stackexchange Q: Ban SiteNames Multisite Is there a way to ban site names from being able to be created. For example we have subfolders like domain.com/site Is there a way to ban bad words from being registered. So domain.com/bad would be blocked? How can I do this? A: You can filter domain_exists, a check that runs before a site is registered. If you return a positive integer, WordPress will not create that site. Despite its name, that filter lets you check the path too. Sample code, not tested: add_filter( 'domain_exists', function( $result, $domain, $path ) { // Already taken, no need for further checks. if ( $result ) { return $result; } $blacklist = [ 'domains' => [ 'assets.example.com', 'wordpress.example.com', ], 'paths' => [ 'wp-admin', 'wp-includes', 'wp-content', ], ]; if ( in_array( $domain, $blacklist['domains'] ) ) { return 1; } $path = trim( $path, '/' ); if ( empty ( $path) ) { return $result; } if ( in_array( $path, $blacklist['paths'] ) ) { return 1; } return $result; }, 10, 3 );
Q: Ban SiteNames Multisite Is there a way to ban site names from being able to be created. For example we have subfolders like domain.com/site Is there a way to ban bad words from being registered. So domain.com/bad would be blocked? How can I do this? A: You can filter domain_exists, a check that runs before a site is registered. If you return a positive integer, WordPress will not create that site. Despite its name, that filter lets you check the path too. Sample code, not tested: add_filter( 'domain_exists', function( $result, $domain, $path ) { // Already taken, no need for further checks. if ( $result ) { return $result; } $blacklist = [ 'domains' => [ 'assets.example.com', 'wordpress.example.com', ], 'paths' => [ 'wp-admin', 'wp-includes', 'wp-content', ], ]; if ( in_array( $domain, $blacklist['domains'] ) ) { return 1; } $path = trim( $path, '/' ); if ( empty ( $path) ) { return $result; } if ( in_array( $path, $blacklist['paths'] ) ) { return 1; } return $result; }, 10, 3 );
wordpress
{ "language": "en", "length": 172, "provenance": "stackexchange_00019.jsonl.gz:470390", "question_score": "4", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/246701" }
[ 0.056915283203125, 0.0244598388671875, -0.00580596923828125, -0.0110015869140625, 0.0188751220703125, -0.046142578125, 0.0460205078125, -0.03717041015625, 0.00145721435546875, -0.006107330322265625, -0.03839111328125, 0.005035400390625, 0.00037479400634765625, -0.028350830078125, 0.036956787109375, -0.03521728515625, -0.009490966796875, 0.024993896484375, 0.01503753662109375, -0.02703857421875, 0.0017271041870117188, -0.01403045654296875, -0.0156707763671875, -0.0267333984375, 0.0118560791015625, -0.0704345703125, 0.10858154296875, -0.0191802978515625, 0.00545501708984375, -0.05035400390625, 0.031585693359375, 0.021026611328125, 0.0008897781372070312, 0.03546142578125, 0.00031280517578125, 0.031158447265625, 0.020111083984375, 0.0157470703125, 0.03497314453125, 0.01425933837890625, 0.01468658447265625, -0.0017452239990234375, 0.0250701904296875, 0.0223388671875, 0.01398468017578125, -0.0760498046875, 0.0631103515625, -0.044342041015625, 0.007793426513671875, 0.0151824951171875, 0.00025534629821777344, 0.0273590087890625, 0.00670623779296875, 0.00925445556640625, -0.02203369140625, -0.0215606689453125, -0.005275726318359375, 0.005435943603515625, 0.015716552734375, 0.0268402099609375, -0.0150146484375, 0.017303466796875, 0.00962066650390625, -0.021453857421875, 0.00970458984375, -0.0013475418090820312, -0.01904296875, 0.01502227783203125, -0.003948211669921875, 0.004505157470703125, 0.01419830322265625, -0.015960693359375, 0.0108795166015625, -0.028106689453125, -0.0229949951171875, 0.0221710205078125, -0.038055419921875, -0.017547607421875, 0.047760009765625, -0.0274505615234375, -0.012451171875, -0.0430908203125, -0.04241943359375, 0.00286865234375, -0.002201080322265625, 0.053863525390625, -0.017486572265625, -0.00678253173828125, -0.03277587890625, 0.015838623046875, -0.021026611328125, -0.0208892822265625, -0.0171966552734375, 0.016448974609375, 0.01096343994140625, -0.013397216796875, 0.049285888671875, 0.070068359375, -0.00811004638671875, -0.004192352294921875, -0.01091766357421875, -0.035064697265625, -0.0216827392578125, -0.01428985595703125, 0.023040771484375, 0.05291748046875, -0.003185272216796875, -0.0197906494140625, 0.0214691162109375, -0.005619049072265625, 0.01290130615234375, -0.01288604736328125, -0.015899658203125, -0.03253173828125, -0.0465087890625, 0.026641845703125, -0.0128173828125, -0.03118896484375, -0.0019025802612304688, -0.0203857421875, 0.00864410400390625, 0.023101806640625, 0.0255126953125, -0.00626373291015625, 0.0234222412109375, 0.0215301513671875, -0.0245513916015625, -0.037353515625, 0.002124786376953125, 0.0197296142578125, -0.02716064453125, 0.00833892822265625, -0.0012788772583007812, -0.0076141357421875, -0.0201873779296875, -0.0203704833984375, 0.0537109375, 0.06146240234375, -0.0081787109375, 0.0238800048828125, 0.0087432861328125, -0.036529541015625, -0.041656494140625, -0.009368896484375, 0.032135009765625, 0.0206298828125, 0.01006317138671875, 0.026153564453125, 0.041717529296875, -0.023284912109375, 0.0185394287109375, -0.048828125, 0.055694580078125, -0.007404327392578125, -0.057891845703125, -0.03985595703125, 0.005535125732421875, -0.045166015625, -0.02557373046875, -0.051788330078125, 0.0195159912109375, 0.00643157958984375, 0.01299285888671875, -0.0039520263671875, -0.0072479248046875, -0.01629638671875, -0.048980712890625, -0.0022430419921875, 0.005191802978515625, -0.0006775856018066406, -0.0218353271484375, 0.020477294921875, 0.01160430908203125, -0.0078582763671875, -0.0003609657287597656, 0.01171112060546875, 0.0050811767578125, 0.00841522216796875, 0.0129547119140625, 0.0261993408203125, 0.0079345703125, -0.0260772705078125, 0.030364990234375, 0.0014791488647460938, -0.07122802734375, 0.012176513671875, -0.0080108642578125, 0.0026702880859375, 0.034576416015625, -0.0216522216796875, 0.0802001953125, 0.018035888671875, 0.003223419189453125, -0.021209716796875, -0.007293701171875, -0.041656494140625, 0.01763916015625, -0.01438140869140625, -0.006298065185546875, 0.033721923828125, 0.03192138671875, -0.038055419921875, 0.049957275390625, -0.028167724609375, -0.050201416015625, -0.0016765594482421875, -0.0262603759765625, 0.01580810546875, -0.020660400390625, 0.012298583984375, 0.031951904296875, 0.0063629150390625, -0.04779052734375, 0.04815673828125, 0.00278472900390625, -0.0036869049072265625, -0.01910400390625, 0.00603485107421875, 0.018218994140625, 0.00818634033203125, 0.02337646484375, 0.02032470703125, 0.01032257080078125, -0.03448486328125, 0.04083251953125, -0.0214996337890625, -0.02276611328125, -0.017669677734375, -0.00492095947265625, 0.01519775390625, -0.04827880859375, 0.03424072265625, 0.0887451171875, 0.0214385986328125, -0.0068359375, 0.01520538330078125, 0.00487518310546875, -0.12298583984375, -0.0193328857421875, 0.070556640625, 0.03948974609375, 0.045166015625, 0.0001405477523803711, -0.0236358642578125, 0.041534423828125, -0.113037109375, -0.032501220703125, -0.00799560546875, 0.018463134765625, 0.07122802734375, -0.029144287109375, 0.019683837890625, 0.008636474609375, -0.0286712646484375, 0.00391387939453125, 0.035247802734375, -0.038726806640625, -0.06817626953125, 0.0183868408203125, -0.0007205009460449219, 0.0189666748046875, -0.004638671875, -0.0099334716796875, 0.01666259765625, -0.0211639404296875, 0.0159149169921875, -0.0199432373046875, -0.01274871826171875, -0.000032782554626464844, 0.02899169921875, 0.00945281982421875, -0.09716796875, -0.01348114013671875, -0.010528564453125, 0.07061767578125, -0.01515960693359375, -0.0281524658203125, 0.0005159378051757812, 0.0035343170166015625, -0.0196990966796875, -0.049652099609375, -0.00629425048828125, 0.005229949951171875, -0.0084991455078125, -0.0234222412109375, -0.0465087890625, 0.05987548828125, -0.009521484375, -0.034454345703125, -0.0703125, -0.030487060546875, 0.03887939453125, -0.02130126953125, 0.0272369384765625, 0.041595458984375, -0.040802001953125, 0.03155517578125, -0.00653839111328125, 0.005390167236328125, -0.0029735565185546875, 0.0162353515625, 0.053009033203125, 0.02117919921875, -0.04022216796875, -0.002902984619140625, 0.0193328857421875, 0.0118408203125, -0.027435302734375, -0.04345703125, -0.0224761962890625, -0.07330322265625, -0.0283966064453125, 0.01082611083984375, -0.017669677734375, 0.0019683837890625, -0.0211181640625, -0.015869140625, -0.017120361328125, -0.044677734375, 0.0152435302734375, -0.0186309814453125, -0.00583648681640625, -0.006816864013671875, 0.03460693359375, -0.0006699562072753906, -0.002838134765625, 0.034759521484375, 0.0016603469848632812, 0.00897216796875, -0.028228759765625, -0.051513671875, -0.054534912109375, -0.054290771484375, -0.0111846923828125, -0.002490997314453125, -0.01491546630859375, 0.021453857421875, 0.056976318359375, 0.02838134765625, -0.039886474609375, 0.041015625, 0.0341796875, -0.01507568359375, 0.026580810546875, -0.033233642578125, -0.006496429443359375, -0.00928497314453125, -0.0018301010131835938, 0.0299835205078125, 0.007778167724609375, 0.005710601806640625, 0.008544921875, 0.024261474609375, 0.0272674560546875, 0.0167999267578125, 0.0181732177734375, -0.000640869140625, -0.006481170654296875, -0.0158538818359375, -0.0570068359375, -0.0280303955078125, 0.003505706787109375, -0.02398681640625, 0.0482177734375, -0.0007557868957519531, -0.022430419921875, 0.0189208984375, 0.037353515625, 0.0352783203125, 0.01509857177734375, 0.006000518798828125, -0.0017461776733398438, 0.0008678436279296875, 0.01001739501953125, 0.027099609375, -0.0281219482421875, 0.0645751953125, -0.0167388916015625, -0.033172607421875, 0.00141143798828125, -0.01187896728515625, -0.023345947265625, -0.0007939338684082031, -0.0576171875, 0.00027179718017578125, 0.01953125, -0.06781005859375, 0.032379150390625, -0.0513916015625, -0.00537872314453125, -0.044342041015625, 0.057464599609375, -0.06195068359375, -0.0193634033203125, 0.01064300537109375, 0.0391845703125, -0.00882720947265625, -0.0589599609375, -0.006099700927734375, -0.03240966796875, -0.10968017578125, 0.0265655517578125, -0.0016298294067382812, -0.0438232421875, 0.00804901123046875, -0.068603515625, -0.041412353515625, -0.049957275390625, 0.033172607421875, -0.0235137939453125, 0.059906005859375, -0.00835418701171875, 0.040069580078125, -0.0259857177734375, -0.0096282958984375, -0.039520263671875, -0.0660400390625, -0.01325225830078125, 0.00122833251953125, 0.0384521484375, -0.0220489501953125, 0.0428466796875, -0.03680419921875, 0.0340576171875, 0.00601959228515625, -0.0162353515625, 0.011505126953125, -0.006381988525390625, 0.0144500732421875, 0.00323486328125, -0.0019702911376953125, -0.031982421875, 0.004840850830078125, -0.0140838623046875, -0.03289794921875, -0.03680419921875, -0.0357666015625, -0.0134735107421875, 0.0116729736328125, -0.0328369140625, 0.0005922317504882812, -0.0286712646484375, -0.025543212890625, 0.004364013671875, -0.0091094970703125, -0.0231781005859375, -0.0251312255859375, -0.005558013916015625, 0.044677734375, -0.0172882080078125, -0.014129638671875, 0.0079193115234375, 0.06256103515625, 0.014007568359375, -0.0111083984375, -0.0256805419921875, 0.024749755859375, 0.034393310546875, -0.0158843994140625, 0.03790283203125, 0.01428985595703125, -0.01947021484375, 0.03582763671875, 0.0027370452880859375, 0.0019235610961914062, 0.0278167724609375, -0.0192108154296875, 0.0229034423828125, -0.019775390625, -0.01361083984375, 0.026153564453125, -0.0008840560913085938, 0.024627685546875, -0.003826141357421875, -0.0203857421875, -0.0262603759765625, 0.02703857421875, 0.03631591796875, -0.0225067138671875, -0.050323486328125, -0.0102691650390625, 0.0041961669921875, 0.0088958740234375, -0.030517578125, 0.006229400634765625, 0.00641632080078125, -0.051849365234375, -0.019989013671875, 0.0084991455078125, -0.00673675537109375, -0.0203857421875, -0.0008139610290527344, 0.04351806640625, -0.0267181396484375, -0.0021877288818359375, 0.0224761962890625, -0.0296783447265625, 0.1177978515625, -0.0032596588134765625, -0.038665771484375, 0.00812530517578125, -0.0279083251953125, 0.0472412109375, 0.033233642578125, 0.02569580078125, 0.0095672607421875, 0.012451171875, -0.035858154296875, 0.0011911392211914062, 0.036773681640625, -0.0094757080078125, -0.035430908203125, -0.01561737060546875, -0.0203399658203125, -0.0193939208984375, -0.00002682209014892578, 0.027191162109375, -0.01276397705078125, 0.0128021240234375, -0.0107879638671875, 0.0316162109375, 0.059783935546875, 0.027252197265625, 0.01519775390625, -0.01313018798828125, -0.02313232421875, 0.040130615234375, -0.0036716461181640625, -0.00760650634765625, -0.006923675537109375, 0.0216064453125, 0.018768310546875, -0.02947998046875, -0.0029926300048828125, 0.01141357421875, -0.022857666015625, -0.023468017578125, 0.0283203125, -0.0014715194702148438, -0.035552978515625, -0.027435302734375, -0.03277587890625, -0.0030307769775390625, -0.018157958984375, 0.0016908645629882812, -0.0052642822265625, -0.02398681640625, -0.0307769775390625, 0.006633758544921875, -0.048980712890625, -0.0202789306640625, 0.0092010498046875, -0.01519775390625, -0.0016851425170898438, -0.005859375, -0.01403045654296875, -0.01500701904296875, -0.00893402099609375, -0.03717041015625, 0.028594970703125, -0.0082550048828125, 0.0301361083984375, -0.032501220703125, 0.000751495361328125, 0.033050537109375, 0.006992340087890625, 0.029510498046875, 0.0031490325927734375, -0.04736328125, 0.0030193328857421875, -0.028900146484375, -0.01161956787109375, -0.00603485107421875, -0.0008630752563476562, -0.0248565673828125, -0.01348876953125, -0.0011777877807617188, -0.00876617431640625, 0.0228271484375, -0.006450653076171875, 0.003032684326171875, -0.0006570816040039062, -0.005359649658203125, -0.078369140625, -0.01256561279296875, 0.02001953125, 0.0184173583984375, -0.018890380859375, 0.034454345703125, 0.04180908203125, 0.0521240234375, -0.047088623046875, 0.003284454345703125, -0.058563232421875, -0.007724761962890625, -0.024810791015625, 0.0035610198974609375, 0.04815673828125, 0.028961181640625, 0.01068878173828125, 0.005626678466796875, -0.0027561187744140625, 0.004360198974609375, -0.031494140625, -0.0127716064453125, -0.024261474609375, 0.0155029296875, -0.0305633544921875, -0.031280517578125, 0.052947998046875, -0.00630950927734375, -0.00566864013671875, 0.0136871337890625, -0.030364990234375, 0.02362060546875, 0.0545654296875, -0.01540374755859375, 0.020233154296875, 0.019287109375, 0.005222320556640625, 0.03216552734375, -0.007282257080078125, 0.01418304443359375, 0.0177001953125, 0.003955841064453125, -0.02386474609375, -0.047698974609375, 0.062469482421875, 0.02972412109375, 0.005084991455078125, 0.09197998046875, -0.017730712890625, -0.020355224609375, 0.071044921875, 0.034332275390625, -0.0916748046875, -0.01467132568359375, 0.01042938232421875, 0.0091552734375, -0.032501220703125, -0.020599365234375, 0.0107574462890625, 0.013214111328125, 0.012908935546875, 0.0098876953125, -0.0279998779296875, 0.0021686553955078125, 0.0229644775390625, -0.009735107421875, 0.016143798828125, 0.04718017578125, 0.0181884765625, -0.018829345703125, -0.0038814544677734375, 0.010833740234375, 0.0103302001953125, -0.035797119140625, -0.00902557373046875, -0.01529693603515625, -0.0089569091796875, -0.0491943359375, 0.005352020263671875, -0.0302734375, 0.0243682861328125, -0.017059326171875, -0.0123138427734375, 0.01837158203125, 0.042236328125, -0.03619384765625, 0.01116180419921875, 0.0178985595703125, -0.01702880859375, -0.0006012916564941406, 0.01399993896484375, 0.0193634033203125, -0.03411865234375, 0.00021851062774658203, -0.00553131103515625, -0.04168701171875, -0.0184326171875, -0.004787445068359375, -0.006916046142578125, 0.0557861328125, 0.0104522705078125, -0.03326416015625, 0.032562255859375, -0.010345458984375, -0.019561767578125, -0.0030460357666015625, 0.017608642578125, -0.044677734375, -0.05523681640625, 0.0051422119140625, -0.071044921875, -0.0133514404296875, -0.02447509765625, -0.053314208984375, 0.0604248046875, 0.00849151611328125, 0.02911376953125, 0.037200927734375, 0.01611328125, -0.044219970703125, -0.006038665771484375, -0.047149658203125, 0.0235595703125, 0.01177978515625, 0.034912109375, -0.03704833984375, 0.006114959716796875, 0.007171630859375, 0.01995849609375, 0.0061492919921875, 0.00849151611328125, -0.00409698486328125, -0.0037860870361328125, 0.02130126953125, 0.00553131103515625, -0.01177978515625, 0.0235443115234375, -0.0235137939453125, 0.01151275634765625, 0.0310821533203125, -0.01015472412109375, 0.0355224609375, -0.01401519775390625, -0.0285491943359375, -0.0090789794921875, 0.0038776397705078125, -0.019073486328125, -0.007678985595703125, -0.0296783447265625, -0.01340484619140625, 0.005466461181640625, 0.002323150634765625, 0.01953125, 0.004642486572265625, 0.02545166015625, 0.032989501953125, -0.00833892822265625, 0.03497314453125, -0.03411865234375, 0.058685302734375, 0.023468017578125, -0.01253509521484375, 0.05487060546875, 0.02545166015625, -0.0118560791015625, 0.01036834716796875, 0.003856658935546875, 0.01482391357421875, -0.018646240234375, -0.021331787109375, 0.012298583984375, 0.008758544921875, -0.0272369384765625, -0.0103759765625, 0.041229248046875, 0.00278472900390625, 0.0011348724365234375, -0.032379150390625, 0.0170135498046875, -0.007511138916015625, -0.00994873046875, 0.02630615234375, 0.04217529296875, 0.006923675537109375, 0.025604248046875, -0.044403076171875, 0.032196044921875, 0.07354736328125, -0.0153350830078125, -0.011688232421875, -0.03472900390625, -0.004425048828125, 0.05340576171875, -0.0145263671875, -0.051055908203125, -0.002346038818359375, 0.0777587890625, 0.052764892578125, 0.02899169921875, -0.06634521484375, -0.046875, -0.01404571533203125, 0.046844482421875, 0.00463104248046875, -0.0001876354217529297, -0.041473388671875, -0.05548095703125, 0.0217437744140625, 0.0293121337890625, 0.0304412841796875, 0.07586669921875, 0.09539794921875, 0.05670166015625, -0.033966064453125, 0.0093536376953125, 0.0662841796875, -0.0281982421875, 0.005462646484375, -0.02978515625, -0.0178375244140625, -0.0005650520324707031, -0.021575927734375, -0.00286865234375, -0.0086212158203125, 0.01284027099609375, -0.01165008544921875, 0.0012950897216796875, -0.0005369186401367188, -0.006927490234375, 0.0035686492919921875, 0.00638580322265625, -0.039031982421875, 0.005950927734375, -0.044525146484375, -0.01033782958984375, -0.00848388671875, -0.03759765625, 0.01050567626953125, 0.036407470703125, -0.0260162353515625, 0.033416748046875, 0.059661865234375, -0.0284576416015625, 0.04510498046875, 0.00447845458984375, -0.007404327392578125, 0.02459716796875, 0.044708251953125, 0.0172882080078125, -0.04534912109375, 0.003826141357421875, 0.01116943359375, -0.0110931396484375, -0.0247039794921875, 0.09466552734375, -0.0291290283203125, -0.0080413818359375, -0.02752685546875, -0.01369476318359375, 0.01338958740234375, -0.035186767578125, 0.0085296630859375, 0.03143310546875, 0.006683349609375, -0.0078582763671875, -0.03515625, -0.00550079345703125, 0.0155029296875, -0.05865478515625, 0.0094451904296875, 0.00027179718017578125, 0.01129150390625, -0.0102386474609375, 0.07855224609375, -0.01491546630859375, -0.111083984375, -0.1011962890625, 0.045989990234375, 0.01227569580078125, 0.0794677734375, -0.053253173828125, 0.036895751953125, -0.003940582275390625, -0.00988006591796875, 0.02435302734375, -0.057281494140625, 0.036285400390625, 0.02825927734375, -0.0174407958984375, -0.0364990234375, -0.008575439453125, -0.01303863525390625, -0.0212554931640625, 0.0153656005859375, 0.0261688232421875, -0.01319122314453125, 0.016021728515625, -0.025177001953125, -0.02447509765625, 0.011505126953125, -0.027496337890625, -0.0095062255859375, -0.023193359375, 0.00762939453125, 0.0054931640625, -0.02880859375, -0.025360107421875, -0.00746917724609375, -0.0179901123046875, 0.00958251953125, -0.02337646484375, -0.040863037109375, -0.034210205078125, 0.001857757568359375, 0.038543701171875, 0.01317596435546875, -0.06646728515625, 0.0325927734375, -0.01094818115234375, 0.039703369140625, 0.005207061767578125, 0.03851318359375, -0.036773681640625, -0.03106689453125, -0.032684326171875, -0.0261688232421875, -0.037750244140625, 0.060272216796875, -0.01158905029296875, -0.0207672119140625, 0.0166015625, 0.01467132568359375, -0.01479339599609375, -0.038116455078125, -0.04425048828125, 0.0011272430419921875, -0.0003249645233154297, -0.0154876708984375, 0.0015316009521484375, -0.00489044189453125, -0.0274810791015625, -0.08013916015625, 0.01230621337890625, -0.08782958984375, -0.012176513671875, -0.011322021484375, -0.0231170654296875, -0.00543212890625, -0.040618896484375, -0.0665283203125, 0.037567138671875, 0.001857757568359375, -0.037841796875, -0.0390625, -0.0328369140625, -0.006290435791015625, 0.01325225830078125, -0.015625, 0.007167816162109375, -0.021942138671875, 0.040313720703125, 0.0146636962890625, 0.013031005859375, -0.0211944580078125, 0.0309295654296875, -0.00693511962890625, 0.06414794921875, 0.06353759765625, -0.02349853515625, 0.00795745849609375, -0.007686614990234375, 0.04156494140625, 0.07177734375, 0.01013946533203125, 0.01224517822265625, 0.0180511474609375, -0.083251953125, -0.0167999267578125, -0.06805419921875, -0.05157470703125, -0.065185546875, 0.084228515625, 0.05816650390625, 0.024810791015625, -0.0038433074951171875, -0.0672607421875, -0.0726318359375, -0.018402099609375, -0.0186920166015625, 0.02349853515625, -0.0877685546875, 0.014434814453125, 0.008880615234375, 0.01103973388671875, -0.010772705078125, -0.004852294921875, -0.002063751220703125, -0.0124053955078125, 0.04998779296875, -0.005764007568359375, 0.0080718994140625, -0.038238525390625, 0.006298065185546875, -0.0156097412109375, -0.0204620361328125, -0.0275421142578125, 0.041473388671875, -0.0303955078125, -0.01885986328125, -0.0016565322875976562, -0.021881103515625, 0.01172637939453125, 0.0212860107421875, 0.0157012939453125, 0.01441192626953125, 0.00841522216796875, -0.03338623046875, -0.000728607177734375, 0.01190185546875, -0.00643157958984375, 0.01157379150390625, -0.0027675628662109375, 0.036865234375, -0.0010166168212890625, 0.054595947265625, 0.029998779296875, 0.040924072265625, 0.0035877227783203125, 0.04046630859375, 0.01071929931640625, -0.03900146484375, 0.0172576904296875, -0.0513916015625, -0.004222869873046875, 0.006252288818359375, -0.007091522216796875, -0.060760498046875, 0.01959228515625, -0.0221405029296875, 0.0264434814453125, 0.029998779296875 ]
443000381971798cf9e7138fdc3ce3bce234bba7
Wordpress Stackexchange Q: How to use wp_get_recent_posts with many post types? I've tried displaying many post types (separated by comma) and it didn't work. Is there a way to achieve this? $args = array( 'numberposts' => '5', 'post_type' => 'cpt1, cpt2, cptn'); $recent_posts = wp_get_recent_posts( $args ); Thanks for your input. A: Use post types as an array. $args = array( 'numberposts' => '5', 'post_type' => array('cpt1', 'cpt2', 'cptn') ); $recent_posts = wp_get_recent_posts( $args );
Q: How to use wp_get_recent_posts with many post types? I've tried displaying many post types (separated by comma) and it didn't work. Is there a way to achieve this? $args = array( 'numberposts' => '5', 'post_type' => 'cpt1, cpt2, cptn'); $recent_posts = wp_get_recent_posts( $args ); Thanks for your input. A: Use post types as an array. $args = array( 'numberposts' => '5', 'post_type' => array('cpt1', 'cpt2', 'cptn') ); $recent_posts = wp_get_recent_posts( $args );
wordpress
{ "language": "en", "length": 73, "provenance": "stackexchange_00019.jsonl.gz:470392", "question_score": "3", "source": "stackexchange", "timestamp": "2023-03-29", "url": "https://wordpress.stackexchange.com/questions/246708" }
[ 0.0694580078125, -0.0116729736328125, -0.01409912109375, -0.041107177734375, 0.0271759033203125, -0.035430908203125, 0.050689697265625, 0.01206207275390625, -0.030242919921875, 0.0330810546875, 0.0019397735595703125, 0.0169677734375, -0.04150390625, -0.0284271240234375, -0.005420684814453125, -0.03619384765625, 0.0279388427734375, -0.0209808349609375, 0.02166748046875, -0.00420379638671875, -0.01465606689453125, 0.02008056640625, 0.02838134765625, 0.047760009765625, -0.01441192626953125, 0.02056884765625, 0.035003662109375, 0.0012063980102539062, 0.00016951560974121094, 0.0027599334716796875, 0.01367950439453125, -0.018646240234375, 0.00235748291015625, 0.0270538330078125, -0.0219573974609375, 0.03009033203125, 0.0017480850219726562, 0.01180267333984375, 0.036651611328125, -0.01016998291015625, -0.03253173828125, 0.03240966796875, 0.039093017578125, 0.0184173583984375, -0.0335693359375, 0.0009784698486328125, -0.036224365234375, -0.00875091552734375, 0.014862060546875, -0.023834228515625, 0.01071929931640625, -0.039093017578125, 0.0269317626953125, -0.002956390380859375, -0.031585693359375, -0.019989013671875, 0.0230865478515625, -0.028289794921875, 0.055328369140625, -0.0237884521484375, -0.039794921875, -0.017547607421875, 0.033966064453125, -0.0241241455078125, -0.028289794921875, 0.0195770263671875, 0.025970458984375, -0.0017023086547851562, -0.0430908203125, -0.04718017578125, 0.018463134765625, -0.0341796875, 0.0260009765625, -0.047576904296875, 0.0213775634765625, -0.038116455078125, -0.00690460205078125, -0.051513671875, 0.01087188720703125, 0.0009326934814453125, -0.0206451416015625, 0.0158538818359375, -0.028472900390625, -0.0230255126953125, -0.0200042724609375, -0.0010433197021484375, -0.0252532958984375, -0.00882720947265625, -0.01265716552734375, -0.0278778076171875, -0.00984954833984375, -0.0689697265625, -0.041900634765625, 0.038787841796875, 0.023590087890625, -0.047607421875, 0.03271484375, 0.0146942138671875, 0.0024356842041015625, -0.020263671875, -0.0010652542114257812, -0.037017822265625, -0.0092620849609375, -0.004352569580078125, 0.03643798828125, 0.0218048095703125, -0.03216552734375, 0.02923583984375, 0.084228515625, 0.046875, 0.021240234375, 0.051788330078125, -0.0075531005859375, -0.023468017578125, -0.01410675048828125, 0.0081329345703125, -0.051544189453125, 0.031402587890625, 0.01033782958984375, 0.0156097412109375, 0.0067901611328125, 0.0307464599609375, 0.0352783203125, -0.023712158203125, 0.00786590576171875, 0.0070037841796875, -0.019012451171875, -0.057952880859375, -0.0017232894897460938, 0.0560302734375, -0.03302001953125, -0.0184326171875, -0.00047016143798828125, 0.01273345947265625, -0.01126861572265625, -0.03375244140625, 0.0199127197265625, -0.051971435546875, -0.008544921875, 0.0223388671875, 0.01084136962890625, -0.04290771484375, -0.012054443359375, 0.006046295166015625, 0.040557861328125, 0.01102447509765625, 0.0006237030029296875, 0.001148223876953125, 0.01788330078125, 0.0160980224609375, 0.00274658203125, -0.039825439453125, 0.0184783935546875, 0.0012874603271484375, 0.0042724609375, -0.013916015625, 0.0163726806640625, -0.0160675048828125, -0.0091094970703125, -0.034759521484375, 0.0335693359375, -0.01123046875, -0.0297088623046875, -0.04522705078125, -0.06707763671875, 0.025787353515625, -0.051910400390625, -0.0196380615234375, 0.0299224853515625, 0.0028228759765625, -0.01294708251953125, -0.0167999267578125, 0.0765380859375, 0.040618896484375, -0.0047454833984375, 0.042877197265625, -0.006305694580078125, -0.0096435546875, 0.02484130859375, 0.0224151611328125, -0.0299530029296875, -0.032958984375, 0.0026988983154296875, 0.0011110305786132812, -0.043975830078125, 0.023529052734375, 0.0138397216796875, 0.039031982421875, 0.0038852691650390625, 0.0180206298828125, 0.01251220703125, 0.0249481201171875, -0.0193634033203125, 0.01666259765625, -0.01922607421875, -0.006153106689453125, -0.042236328125, 0.0033397674560546875, -0.036651611328125, 0.00586700439453125, 0.0283203125, 0.0095062255859375, -0.00859832763671875, 0.007678985595703125, -0.05145263671875, 0.01262664794921875, -0.01202392578125, 0.031890869140625, -0.0298004150390625, -0.0008177757263183594, 0.03070068359375, 0.00507354736328125, -0.050445556640625, 0.011932373046875, -0.0020580291748046875, 0.049835205078125, -0.020172119140625, 0.01593017578125, -0.01049041748046875, -0.0144195556640625, -0.00989532470703125, -0.0184783935546875, -0.01025390625, 0.033172607421875, 0.0256195068359375, -0.0186309814453125, -0.00913238525390625, -0.026031494140625, -0.0218048095703125, 0.0222930908203125, -0.04888916015625, 0.023162841796875, -0.00547027587890625, 0.01506805419921875, -0.0189971923828125, 0.0085601806640625, 0.025177001953125, -0.0195465087890625, 0.0164947509765625, 0.0291748046875, 0.043853759765625, 0.0169219970703125, 0.01068878173828125, -0.0214691162109375, 0.03839111328125, -0.05010986328125, 0.035858154296875, -0.0450439453125, 0.0200347900390625, 0.026947021484375, 0.007205963134765625, -0.00429534912109375, 0.022735595703125, -0.006954193115234375, 0.017730712890625, 0.02593994140625, -0.02117919921875, 0.0297393798828125, 0.0036334991455078125, -0.0174560546875, -0.01503753662109375, -0.0443115234375, -0.0014085769653320312, -0.031036376953125, 0.042816162109375, 0.0234527587890625, 0.036376953125, 0.0240631103515625, -0.0163726806640625, 0.0208282470703125, -0.003925323486328125, -0.051727294921875, 0.0247650146484375, 0.0303955078125, -0.032196044921875, 0.0149993896484375, -0.021087646484375, -0.0081024169921875, 0.020782470703125, 0.0004906654357910156, -0.03607177734375, -0.008758544921875, -0.004642486572265625, -0.00873565673828125, -0.0019016265869140625, -0.0024700164794921875, 0.033111572265625, -0.005062103271484375, 0.003662109375, 0.00640106201171875, 0.012359619140625, 0.0389404296875, -0.050689697265625, 0.056304931640625, -0.0074615478515625, -0.0050201416015625, 0.00963592529296875, -0.04803466796875, 0.04022216796875, -0.0491943359375, 0.0191650390625, 0.048553466796875, -0.0260162353515625, 0.0112457275390625, -0.01025390625, 0.01340484619140625, 0.02294921875, -0.007110595703125, -0.034088134765625, -0.04071044921875, -0.044158935546875, -0.019378662109375, 0.0193328857421875, 0.09027099609375, -0.01270294189453125, -0.04193115234375, 0.02264404296875, 0.050933837890625, -0.06634521484375, -0.07000732421875, 0.032012939453125, -0.046478271484375, -0.034393310546875, -0.006389617919921875, -0.0369873046875, 0.007411956787109375, 0.0255889892578125, -0.01445770263671875, 0.010284423828125, 0.00008493661880493164, -0.0552978515625, -0.006748199462890625, -0.04058837890625, 0.01849365234375, -0.02166748046875, -0.0035915374755859375, 0.0021381378173828125, 0.09368896484375, -0.0009264945983886719, -0.0233612060546875, -0.0253143310546875, 0.0136566162109375, -0.00701904296875, -0.0228729248046875, 0.026214599609375, 0.0018177032470703125, -0.0023670196533203125, 0.01171112060546875, 0.013458251953125, 0.028076171875, -0.04144287109375, -0.022735595703125, 0.002216339111328125, 0.0252532958984375, 0.01995849609375, 0.0222930908203125, -0.006561279296875, 0.040985107421875, 0.013458251953125, -0.01849365234375, 0.006374359130859375, 0.003612518310546875, -0.0149688720703125, -0.01328277587890625, -0.01009368896484375, -0.0163421630859375, -0.003025054931640625, -0.0013751983642578125, -0.0037441253662109375, -0.02264404296875, 0.0251617431640625, -0.057342529296875, 0.0595703125, 0.03179931640625, 0.036834716796875, -0.022125244140625, -0.0689697265625, -0.0309906005859375, 0.06097412109375, -0.039215087890625, 0.0203094482421875, -0.027801513671875, 0.058502197265625, -0.053985595703125, -0.05389404296875, 0.05224609375, -0.053436279296875, -0.03851318359375, -0.037506103515625, -0.021209716796875, 0.00255584716796875, 0.08251953125, -0.080078125, -0.0240478515625, -0.04193115234375, 0.0238800048828125, -0.02044677734375, -0.08111572265625, -0.0247650146484375, -0.0205841064453125, -0.0177154541015625, -0.00862884521484375, -0.03204345703125, -0.0102691650390625, -0.0115203857421875, -0.01251220703125, -0.0110015869140625, -0.020721435546875, 0.044952392578125, 0.0010709762573242188, -0.01157379150390625, 0.0202484130859375, -0.0081939697265625, -0.01381683349609375, -0.04034423828125, 0.01438140869140625, -0.0806884765625, -0.03125, 0.023712158203125, 0.07757568359375, -0.0022296905517578125, -0.043792724609375, -0.01114654541015625, 0.06329345703125, 0.03155517578125, 0.00667572021484375, 0.007762908935546875, -0.0224151611328125, -0.021514892578125, -0.00296783447265625, 0.002277374267578125, -0.0163116455078125, -0.00499725341796875, -0.0196685791015625, -0.018280029296875, 0.01329803466796875, -0.04522705078125, -0.01629638671875, -0.02679443359375, -0.0241241455078125, -0.023468017578125, -0.003993988037109375, -0.00927734375, -0.0034580230712890625, -0.001636505126953125, -0.00833892822265625, -0.0106201171875, -0.035736083984375, 0.06280517578125, 0.03668212890625, -0.0352783203125, -0.0187530517578125, 0.07830810546875, 0.0037403106689453125, -0.046295166015625, -0.0723876953125, -0.0125732421875, 0.043426513671875, -0.040802001953125, 0.0211944580078125, 0.01171875, -0.041412353515625, 0.0704345703125, -0.003658294677734375, -0.026031494140625, 0.0238800048828125, 0.01013946533203125, 0.031524658203125, 0.0008568763732910156, -0.01377105712890625, 0.00032401084899902344, 0.031890869140625, 0.0288543701171875, -0.007701873779296875, -0.0521240234375, -0.01186370849609375, 0.09088134765625, -0.0220184326171875, 0.018951416015625, -0.06390380859375, -0.04296875, 0.03509521484375, -0.0177459716796875, 0.0098419189453125, 0.02484130859375, -0.01021575927734375, 0.0297088623046875, -0.00328826904296875, -0.0197906494140625, 0.01336669921875, 0.0250396728515625, 0.0211334228515625, 0.016632080078125, 0.020904541015625, -0.01270294189453125, -0.0120849609375, -0.01031494140625, 0.0232696533203125, -0.01556396484375, -0.046783447265625, 0.02227783203125, -0.0184326171875, 0.052825927734375, 0.023681640625, -0.00748443603515625, 0.055389404296875, 0.055572509765625, -0.00421142578125, -0.00933074951171875, -0.0304107666015625, 0.0288848876953125, -0.0560302734375, -0.0195159912109375, 0.004302978515625, 0.00017714500427246094, 0.01148223876953125, 0.07867431640625, 0.014190673828125, 0.060089111328125, -0.048187255859375, 0.022369384765625, 0.0219268798828125, 0.0248870849609375, 0.006061553955078125, 0.00022161006927490234, 0.015838623046875, -0.0165557861328125, 0.010589599609375, -0.03240966796875, -0.03057861328125, 0.03204345703125, 0.01898193359375, -0.0050048828125, 0.002887725830078125, 0.015838623046875, 0.04498291015625, -0.01328277587890625, 0.043792724609375, 0.0467529296875, -0.02069091796875, -0.0238037109375, 0.0237884521484375, 0.036651611328125, 0.019256591796875, -0.035003662109375, 0.0367431640625, -0.03216552734375, 0.0445556640625, -0.041351318359375, 0.0235137939453125, 0.0026569366455078125, 0.00247955322265625, -0.00524139404296875, -0.0316162109375, 0.0186767578125, -0.045196533203125, -0.00201416015625, -0.0157928466796875, -0.0201263427734375, 0.025543212890625, -0.01181793212890625, 0.03717041015625, -0.02960205078125, -0.007671356201171875, 0.029052734375, 0.006256103515625, 0.039825439453125, 0.0157012939453125, -0.0303802490234375, -0.0164794921875, -0.0390625, -0.0264129638671875, -0.0025463104248046875, -0.0248565673828125, -0.033966064453125, -0.01611328125, -0.007076263427734375, 0.023406982421875, -0.020355224609375, 0.02056884765625, 0.0145263671875, 0.01085662841796875, -0.033233642578125, 0.047027587890625, 0.01776123046875, 0.05126953125, -0.038848876953125, 0.06634521484375, -0.0224761962890625, -0.00006979703903198242, -0.07562255859375, 0.003391265869140625, 0.02056884765625, -0.05078125, -0.0208740234375, 0.0025806427001953125, -0.03326416015625, -0.022186279296875, -0.000865936279296875, -0.0091552734375, 0.00452423095703125, -0.0262908935546875, 0.006099700927734375, -0.0287628173828125, 0.00634765625, -0.0377197265625, -0.020263671875, 0.019073486328125, -0.0210723876953125, -0.03509521484375, -0.0117340087890625, -0.0177001953125, -0.019439697265625, 0.0196685791015625, -0.032318115234375, 0.007068634033203125, -0.0233612060546875, 0.01015472412109375, 0.0445556640625, 0.02972412109375, 0.0419921875, 0.0150909423828125, 0.0287628173828125, 0.0244140625, 0.007904052734375, 0.026153564453125, 0.00823974609375, 0.036956787109375, -0.0023479461669921875, 0.0106048583984375, 0.01462554931640625, -0.016448974609375, 0.0014400482177734375, 0.0294342041015625, 0.04876708984375, -0.048431396484375, 0.0157623291015625, 0.0130767822265625, -0.01207733154296875, 0.0298919677734375, 0.013824462890625, 0.00118255615234375, -0.027313232421875, 0.005802154541015625, -0.00025153160095214844, -0.02716064453125, -0.0142364501953125, -0.00991058349609375, 0.0223846435546875, -0.026153564453125, 0.06884765625, -0.01303863525390625, -0.072265625, -0.01018524169921875, 0.04248046875, -0.035491943359375, -0.0022563934326171875, 0.03167724609375, -0.029052734375, -0.01421356201171875, -0.054107666015625, -0.0001742839813232422, -0.0097808837890625, -0.035430908203125, 0.0037174224853515625, -0.03570556640625, 0.00180816650390625, 0.0645751953125, -0.04150390625, 0.0121002197265625, 0.0372314453125, -0.0177764892578125, -0.0740966796875, -0.020111083984375, 0.0056915283203125, 0.06976318359375, -0.017974853515625, 0.03900146484375, -0.0179443359375, -0.007373809814453125, -0.02386474609375, 0.0123291015625, 0.07196044921875, -0.005237579345703125, -0.03887939453125, 0.0218353271484375, 0.034515380859375, -0.0085906982421875, 0.023651123046875, -0.02325439453125, -0.0030765533447265625, 0.00823211669921875, -0.01140594482421875, -0.03961181640625, 0.0028820037841796875, -0.01523590087890625, -0.05230712890625, 0.065185546875, 0.003204345703125, 0.032562255859375, 0.030242919921875, 0.01947021484375, -0.026641845703125, -0.0137176513671875, -0.046783447265625, 0.0633544921875, -0.04901123046875, 0.04766845703125, -0.05706787109375, 0.0090789794921875, -0.0100250244140625, 0.006748199462890625, 0.0162200927734375, -0.0060882568359375, -0.0291595458984375, 0.0133056640625, 0.08673095703125, 0.06292724609375, 0.0307769775390625, 0.0201568603515625, -0.0008573532104492188, 0.035491943359375, 0.045684814453125, -0.03460693359375, 0.02777099609375, 0.0235748291015625, -0.0206756591796875, 0.024078369140625, 0.021881103515625, 0.012847900390625, -0.03533935546875, -0.03759765625, -0.0701904296875, -0.007442474365234375, 0.034271240234375, 0.00853729248046875, 0.03466796875, 0.040283203125, 0.0819091796875, -0.032501220703125, 0.0113677978515625, -0.029571533203125, 0.065673828125, 0.024017333984375, 0.01605224609375, 0.028167724609375, 0.0198822021484375, 0.0421142578125, 0.0015630722045898438, 0.0037689208984375, 0.019683837890625, -0.01007843017578125, 0.06475830078125, 0.032073974609375, 0.0038623809814453125, -0.0802001953125, -0.015045166015625, 0.07177734375, 0.0931396484375, -0.057464599609375, -0.06817626953125, 0.01788330078125, 0.0034999847412109375, -0.0026531219482421875, 0.0159149169921875, 0.010498046875, 0.00537872314453125, 0.0572509765625, -0.020172119140625, -0.026214599609375, 0.006458282470703125, 0.028564453125, 0.0172119140625, -0.01812744140625, -0.0085906982421875, -0.035980224609375, -0.06304931640625, -0.0018444061279296875, 0.04156494140625, 0.08734130859375, 0.0269622802734375, 0.04034423828125, -0.037139892578125, -0.0290985107421875, 0.02264404296875, 0.00704193115234375, 0.00540924072265625, -0.026275634765625, 0.0247039794921875, 0.0033435821533203125, -0.020263671875, 0.010833740234375, 0.043609619140625, -0.00856781005859375, 0.0289459228515625, 0.01385498046875, 0.00244140625, -0.0006542205810546875, 0.02081298828125, -0.00485992431640625, -0.033447265625, -0.02996826171875, -0.0570068359375, -0.001857757568359375, -0.03765869140625, 0.0260467529296875, -0.0338134765625, 0.019256591796875, -0.026092529296875, 0.07904052734375, -0.010833740234375, 0.0291748046875, 0.0246734619140625, -0.007503509521484375, 0.00249481201171875, -0.00421142578125, -0.06976318359375, -0.00299072265625, -0.07666015625, -0.0285491943359375, 0.05938720703125, 0.037567138671875, -0.005619049072265625, 0.01715087890625, 0.00577545166015625, -0.029144287109375, -0.01192474365234375, 0.03436279296875, 0.0169525146484375, -0.006580352783203125, 0.0167083740234375, -0.006439208984375, -0.06072998046875, -0.0163421630859375, -0.01232147216796875, 0.00655364990234375, 0.05133056640625, 0.005138397216796875, 0.05242919921875, 0.02301025390625, 0.00771331787109375, 0.011474609375, -0.00737762451171875, -0.005748748779296875, 0.0433349609375, -0.0007309913635253906, -0.020721435546875, -0.0033550262451171875, 0.022979736328125, 0.033477783203125, 0.0212554931640625, -0.0274810791015625, -0.0116119384765625, -0.005847930908203125, 0.0189056396484375, 0.01029205322265625, 0.0288238525390625, -0.0264892578125, 0.003513336181640625, -0.054656982421875, -0.047149658203125, 0.057830810546875, 0.0005002021789550781, -0.0209808349609375, -0.0322265625, 0.03857421875, -0.083251953125, 0.039764404296875, -0.00818634033203125, 0.056396484375, 0.031402587890625, 0.06414794921875, -0.00394439697265625, -0.00027370452880859375, -0.017547607421875, -0.004703521728515625, 0.01194000244140625, 0.0330810546875, -0.01117706298828125, 0.040985107421875, -0.0002734661102294922, -0.00954437255859375, 0.0333251953125, -0.0228271484375, -0.005443572998046875, 0.004425048828125, -0.007221221923828125, -0.0275421142578125, -0.0594482421875, -0.040191650390625, -0.0518798828125, 0.01593017578125, 0.03076171875, -0.0167694091796875, -0.01959228515625, -0.046844482421875, -0.0089263916015625, 0.0210418701171875, -0.01409149169921875, -0.0014848709106445312, 0.0207061767578125, -0.039642333984375, -0.0164947509765625, 0.00029206275939941406, -0.09014892578125, 0.03173828125, 0.052703857421875, 0.02508544921875, 0.0091705322265625, -0.0404052734375, -0.0221405029296875, -0.031280517578125, 0.0206146240234375, 0.021636962890625, -0.0298309326171875, -0.005023956298828125, 0.03839111328125, 0.0263214111328125, 0.0751953125, 0.0382080078125, 0.0021514892578125, 0.026123046875, 0.025146484375, -0.060302734375, -0.0645751953125, 0.033233642578125, -0.047149658203125, -0.0177764892578125, -0.018096923828125, 0.0018358230590820312, 0.0007638931274414062, -0.03472900390625, -0.07763671875, 0.076171875, -0.03717041015625, -0.0252532958984375, -0.0570068359375, 0.0034427642822265625, 0.02056884765625, -0.03753662109375, -0.0277099609375, -0.007694244384765625, -0.03521728515625, 0.0157623291015625, -0.00724029541015625, 0.06793212890625, 0.00634002685546875, 0.00980377197265625, 0.016265869140625, 0.00923919677734375, -0.005741119384765625, -0.01128387451171875, 0.00685882568359375, -0.00482940673828125, 0.008758544921875, 0.0400390625, -0.03485107421875, -0.0019426345825195312, -0.01412200927734375, 0.0190582275390625, -0.0025691986083984375, -0.049652099609375, -0.0251007080078125, -0.010589599609375, 0.026123046875, 0.06396484375, 0.0087890625, -0.030426025390625, 0.040435791015625, -0.00917816162109375, -0.045379638671875, -0.00974273681640625, 0.0111846923828125, -0.01385498046875, -0.00890350341796875, -0.01373291015625, 0.01312255859375, 0.0215606689453125, -0.01448822021484375, 0.01251220703125, -0.005908966064453125, 0.04803466796875, -0.00879669189453125, 0.008331298828125, 0.07049560546875, -0.005126953125, -0.00579833984375, 0.005828857421875, -0.02423095703125, -0.016357421875, -0.001499176025390625, -0.0165863037109375, -0.0296630859375, -0.001720428466796875, 0.03399658203125, 0.0028362274169921875, 0.01392364501953125, 0.0310821533203125, 0.04473876953125, 0.0265960693359375, -0.006153106689453125, -0.001796722412109375, -0.004180908203125, -0.022186279296875, 0.003543853759765625, 0.0340576171875, -0.0017023086547851562, 0.02606201171875, 0.005584716796875, 0.018585205078125, -0.0175628662109375, 0.050689697265625, -0.0246429443359375, -0.01253509521484375, 0.00997161865234375, -0.03533935546875, -0.0090179443359375, -0.00963592529296875, -0.024688720703125, -0.03131103515625, 0.0175018310546875, 0.0943603515625, -0.0212249755859375, 0.02142333984375 ]