INSTRUCTION
stringlengths
11
999
RESPONSE
stringlengths
0
999
SOURCE
stringlengths
16
38
METADATA
dict
Audio file's length (duration) is missing from Attachment Details in Media Library I'm uploading a different mp3 file to each post as an attachment and using `wp_get_attachment_metadata()` to print the duration of the mp3 file. Sometimes the response from `wp_get_attachment_metadata()` does not contain the file length and when I inspect the mp3s inside the Media Library, some of them display a length and some do not: ![enter image description here]( ![enter image description here]( I suspect that there are some encoders that produce an mp3 with the length attribute and some that don't. So far I've tried Audacity's LAME encoder and Traktor Pro 2. Does anyone know a piece of software the will reliably give me the length attribute in for mp3s uploaded to WordPress or have some other means of resolving this issue?
I found that this issue could be overcome by opening the mp3 file in the excellent Linux/Windows application Mp3 Diags and applying the `Rebuild VBR Data` transformation. It discards the file's Xing header and attaches a new one. After doing this, the files's duration and bitrate are listed in it's Attachment Details when it is uploaded to WordPress. If you know simpler way to do this in Windows (for example via shell integration/file explorer context menus) or WordPress (via plugin, etc), I'll gladly mark your answer as the accepted answer.
stackexchange-wordpress
{ "answer_score": 1, "question_score": 1, "tags": "media, attachments, media library, audio" }
Error missing MySQL extension Yesterday I delete some files to clean up my storage. After that, I face the following error while visiting my website. > Your PHP installation appears to be missing the MySQL extension which is required by WordPress. I delete my WordPress Old Setup and Install New one, but the problem still exists. What's the possible solution to recover my website. Thank you
The solution to this will require server level changes, this isn't something you can fix by changing PHP files. Your host needs to install the mysqli PHP extension
stackexchange-wordpress
{ "answer_score": 1, "question_score": 0, "tags": "mysql, errors" }
Best way to include reusable sections in page content I'm fairly new to WP dev and I'm trying to work out the best method to include reusable sections/templates within the page content added within the page editor. I have included an image to illustrate what I mean: ![enter image description here]( The content highlighted in green is added to the page via the editor. What I want to know is, how do I split up those sections with reusable sections/includes. Obviously, I can just added the markup into the page content but I assume there is a much better way of doing it? I have been reading about shortcodes, is that the best way to approach this? If correct, I guess the best way would be to create template partials (or whatever the correct term is) for each reusable section, then create shortcode functions for them in the functions.php. Then add them to the page content using shortcodes? Hope this makes sense. Thanks
I think you should to take a look at the gutenberg bloc. This is not simple at the first approach, but I think you should take a look at it (even if you want to use some plugin to help you) See the doc : < ![enter image description here]( ![enter image description here](
stackexchange-wordpress
{ "answer_score": 1, "question_score": 0, "tags": "shortcode" }
What plugins create a directory on the root directory of WordPress? How can I detect if a plugin or a program is creating a folder on the root directory of my WordPress site? How will I know if I could safely remove them?
What I would do here is first rename the folder to something else, this way if something breaks you can just rename it back. After a couple if days if all is well on the site just delete it. Backup folders and files usually cause more issues than they are worth. If you haven't needed a backup from 2018 chances are you never will.
stackexchange-wordpress
{ "answer_score": 1, "question_score": 0, "tags": "directory" }
How to test a Wordpress plugin in real time I'm developing a simple WordPress plugin, and each time I want to test the plugin manually, I need to make a zip file and upload it to the site through the admin panel. (The WordPress site is running locally through XAMPP) It's very tedious to do this every time I make a change. Is there any way to test the changes to my plugin in real-time as I code? Helpful answers are highly appreciated.
If you use a local dev environment you can run WordPress and your plugin on your computer, any changes you make are instant as there is no uploading/installation step. **Since you are already using XAMPP** , open the files directly with your editor from the XAMPP folder that contains the WordPress install. There is no need to upload and install as everything is on the same computer.
stackexchange-wordpress
{ "answer_score": 3, "question_score": 0, "tags": "plugin development" }
Does size of a theme's functions.php file matter? I created a custom theme for my website and I'm in the process of updating the theme to work with Gutenberg. So far the file size of the theme's functions.php file is currently 1.9MBs. Does the file size of my theme's functions.php file matter? If so, then how do I create a custom plugin?
I guess it doesn't really matter, but I think it's better to keep it as short as possible. Before, I used to put all of my logic in my **functions.php** file. But it was quick big at the end (like 2000 lines of code, sometimes more). Now, I prefer generate a sample theme thanks to this : < And for my plugin, that < Thanks to this, functions that I usually use in my websites are all in my **plugin** , so my **theme** is lighter Think to seperate all your content logic in files/folder (inc/entities for post_type, inc/cron for your cron... it depends on you !)
stackexchange-wordpress
{ "answer_score": 1, "question_score": 0, "tags": "functions, theme development" }
Why nav_menu_css_class doesn't work with apply_filters? I was trying to add css class to nav items. The documented function call in WordPress docs was apply_filters( 'nav_menu_css_class', string[] $classes, WP_Post $item, stdClass $args, int $depth ) But I tried adding the following to functions.php in my child theme doesn't work. apply_filters('nav_menu_css_class', ['nav-item']); But the adding the following to functions.php works as expected. add_filter('nav_menu_css_class', fn () => ['nav-item']); Why do add_filter works but not apply_filters?
Because that's not what `apply_filters()` does. You'll even see the usage guide and examples at your link all use `add_filter()`. Also see the official docs on Filters. Using `apply_filters()` makes a value filterable. `add_filter()` is used to filter a filterable value by passing a function that does the filtering. _WordPress_ uses `apply_filters('nav_menu_css_class', ...`, which allows you to use `add_filter()` to modify its value. So if you want to modify the nav menu CSS classes, you need to add a filter, with `add_filter()`. The reason `apply_filters()` is shown in the docs you linked is because it's showing how that filter was originally defined. Not how to use it.
stackexchange-wordpress
{ "answer_score": 0, "question_score": 0, "tags": "theme development, menus, themes, css" }
wc_get_product_id_by_sku() returns 0 for products added programatically via update_post_meta I am parsing some products from XML and adding them into the database in woocommerce programmatically. SKU along with other data is saved with `update_post_meta($post_id, '_sku', (string)$product->id);` and is visible in the back-end. The problem is that when I try to check if there exists product with some SKU added this way programatically I always get 0. `wc_get_product_id_by_sku('SOMESKU');` The only way I will get real product ID is if I manually edit that product in the backend and save it.
The problem was that I didn't create product with WC_Product object. When I create product with this object it works. for instance $product = new WC_Product; $product->set_name("my product"); $product->set_sku("345678"); $product->save(); Then I can easity get the ID of the product by SKU $post_id = wc_get_product_id_by_sku('345678');
stackexchange-wordpress
{ "answer_score": 0, "question_score": 0, "tags": "woocommerce offtopic" }
Divi change project category slug # How to change taxonomy urls in wordpress? Following along with this question and this one But can not get the desired outcome. **The default is:** example.com/project_category/%category%/ **What I want is:** example.com/stainless-steel-products/%category%/ I have changed the slug of the project archive so that `example.com/stainless-steel-products/` is the project archive. Below is the code used to achieve that. // Change peralinks projects function custom_project_slug () { return array( 'feeds' => true, 'slug' => 'stainless-steel-products', 'with_front' => false, ); } add_filter( 'et_project_posttype_rewrite_args', 'custom_project_slug' ); ?> How do I change the slug of the project categories so that it is a child of the project archive? Thanks for any help in advance!
add_filter( 'register_taxonomy_args', 'change_taxonomies_slug', 10, 2 ); function change_taxonomies_slug( $args, $taxonomy ) { if ( 'project_category' === $taxonomy ) { $args['rewrite']['slug'] = 'stainless-steel-products'; } return $args; }
stackexchange-wordpress
{ "answer_score": 2, "question_score": 1, "tags": "php, permalinks, url rewriting, child theme" }
Language string not detecting used within the function I am using Mpdf lib to generate PDF for the plugin I am developing. The PDF has much more tabular data that require localization. For that, I have created a function for `TH` and `TD` as below. function gs_pdf_th(string $text, $style = FALSE, string $class = 'header') { return '<th class="' . $class . '" ' . $style . '>' . __($text, 'group-shop') . '</th>'; } This function's problem is `PO` is not detecting the `$text` string for localization. All other text from the file where I used this function has been detected, but this one.
You can’t use variables in translation functions. From the internationalisation documentation: > The following example tells you what not to do > > > // This is incorrect do not use. > _e( "Your city is $city.", 'my-theme' ); > > > The strings for translation are extracted from the source without executing the PHP associated with it. For example: The variable `$city` may be Vancouver, so your string will read `"Your city is Vancouver"` when the template is run but gettext won’t know what is inside the PHP variable in advance. You need to put the value in the translation function when initially defining it.
stackexchange-wordpress
{ "answer_score": 0, "question_score": 0, "tags": "localization, language" }
How to Extend login session times to a Month How can I extend wordpress login sessions to a month so that it doesn’t automatically ask for login after 48 hours? I am basically testing some program with wordpress and around 48 hours it fails and I’m pretty sure it has to do with the session id... So please help me extend it to at least a month!
By default the login cookie lasts for * 14 days if you tick 'remember me' * 48 hours if you don't So as a short term fix you probably want to tick 'remember me', and to extend that to 30 days you can add an auth_cookie_expiration filter e.g. function auth_cookie_expiration_30_days( $seconds, $user_id, $remember_me ) { if ( $remember_me ) { return 30 * DAY_IN_SECONDS; } return $seconds; } add_filter( 'auth_cookie_expiration', 'auth_cookie_expiration_30_days', 10, 3 ); As you can see you can set per-user-ID durations and you can change the don't-remember-me time here too if you want, although above I'm leaving that as the default.
stackexchange-wordpress
{ "answer_score": 2, "question_score": 0, "tags": "functions, id, session" }
Add a second role when registering programmatically I would like to know if there is a way that at the time of submitting the registration the user programmatically add a second role, so he would have the default role and the second, is it possible? Thank you.
You could use the register_new_user hook which fires after the registration is complete. e.g. function add_role_to_new_user( $user_id ) { $new_user = get_userdata( $user_id ); if ( $new_user ) { $new_user->add_role( 'a_second_role' ); } } add_filter( 'register_new_user', 'add_role_to_new_user' ); This will - I think - fire for all new users, including new administrators added in the dashboard. If that's not what you want then you can add a check e.g. `in_array( 'subscriber', $new_user->roles, true )` first before adding the new role.
stackexchange-wordpress
{ "answer_score": 0, "question_score": 0, "tags": "user roles, user registration" }
How to write a filter to remove a form field (WordPress) I want to remove a form field. How do I write a filter hook to remove it? ![Screenhot](
The solution for this is [data-handler-id="job_extra_fast_delivery_price"] { display: none; }
stackexchange-wordpress
{ "answer_score": 1, "question_score": 0, "tags": "filters" }
Wordpress Plugin Insert Html Code with Shortcode I want to insert an HTML block with a Contact form 7 shortcode. How I can insert the HTML before the shortcode is being converted to HTML? function custom_shortcode_func() { $html = <<<HTML <h1>[contact-form-7 id="10" title="Contact form 1"]</h1> HTML; return $html; } add_shortcode('test_form','custom_shortcode_func');
Use `do_shortcode` to process any shortcodes inside a string
stackexchange-wordpress
{ "answer_score": 1, "question_score": 0, "tags": "plugins, shortcode, html" }
Is it unsafe to put php in the /wp-content/uploads directory? Pretty straight forward question, but I'll provide any clarifications needed. The reason I'm asking is this: I created a child theme that pulls in a `custom-functions.php` file. This allows devs to customize the site without editing the child theme. I know that's the purpose of a child theme, but for the sake of brevity I won't go into the reasoning behind all that. I put `custom-functions.php` in `/wp-content/uploads/customizations`. Is this a security risk? And if so, what's a better place to put it. I don't want to put it in my child theme because it'll get overwritten when the theme is updated.
**Yes it is unsafe** , though not for the reasons you think. _**DO NOT DO THIS.**_ If your developers can upload a PHP file to your site that gets executed, then that PHP file can undo all other security measures that you put in place. The location of the file is irrelevant. Functionally, there is no difference from editing plugins directly. Additionally, a common security enhancement is to prevent PHP execution in the uploads folder, and assume any PHP in the uploads folder is malicious. Either way, your proposed development process is _highly unusual_ and problematic. **I strongly advise against this.** Moving the files uploaded to another folder will not improve security. Do not let developers upload PHP to the uploads folder. It is not a good idea.
stackexchange-wordpress
{ "answer_score": 3, "question_score": 0, "tags": "php, uploads, security" }
Using WordPress PHP code, how to bulk delete only 100 subscribers at a time from thousands of users? Using WordPress PHP code, how to bulk delete ONLY 100 subscribers at a time from thousands of users? (The following code tries to delete all 50k users at once and my server hangs. If I can delete only 100 users at a time then I can use a Cron job every 5 minutes.) <?php $blogusers = get_users( ‘role=subscriber’ ); // Array of WP_User objects. foreach ( $blogusers as $user ) { $user_id = $user->ID; wp_delete_user( $user_id ); } Thanks.
Here you will find all parameters supported by `get_users()`. $blogusers = get_users( [ 'role' => 'subscriber', // limit the number of rows returned 'number' => 100, ] ); foreach ( $blogusers as $user ) { wp_delete_user( $user->ID ); } Or return only ID: // $blogusers is array of IDs $blogusers = get_users( [ 'role' => 'subscriber', // return only user ID 'fields' => 'ID', // limit the number of rows returned 'number' => 100, ] ); foreach ( $blogusers as $user_id ) { wp_delete_user( $user_id ); }
stackexchange-wordpress
{ "answer_score": 1, "question_score": 0, "tags": "plugin development" }
Super admin access to a forgotten WP instance? I have inherited a Wordpress instance backed by a MySQL database, hosted on a bare bones server. I have SSH access to the server, and I can even log in with an old set of credentials to the admin panel. But the login I have does not allow me to install plugins, which I now must do. Given I have the keys to the kingdom, but no knowledge, how can I either find the login for the old super admin or convert the user I can log in as into a super admin? I'm comfortable with raw SQL, I'm just not familiar with Wordpress at all.
**Note:** Super Admins only have meaning in WordPress Multisite. I've assumed below that you're running Multisite, though your question isn't tagged as such. Super Admins are stored as a serialized array in the `{$prefix}_sitemeta` table in the `site_admins` record. In my local installation, with only the user ID `adminpj` as a Super Admin, here's what I see: mysql> SELECT meta_key, meta_value FROM wp_sitemeta WHERE meta_key='site_admins'; +-------------+--------------------------+ | meta_key | meta_value | +-------------+--------------------------+ | site_admins | a:1:{i:0;s:7:"adminpj";} | +-------------+--------------------------+ Unserializing the `meta_value`, I get: Array ( [0] => adminpj ) So you can either a) see what your existing Super Admins are, or b) add your own username to the `site_admins` record.
stackexchange-wordpress
{ "answer_score": 3, "question_score": 1, "tags": "multisite, wp admin" }
Get the term for an taxonomy archive when the term has no posts Seems like it should be simple (the Stack Overflow catchphrase) A taxonomy archive `taxonomy-my-taxonomy.php`, I'm using ` $terms = get_the_terms($post->ID, 'my-taxonomy');` to get the properties of the archive term. Trouble is this is the post term(s) not the archive term. It assumes that `$post->ID` exists, ie this taxonomy has posts. I would like to display the page with the various term properties even if it's empty. How?
You could simply check if a post exists. Otherwise, you can get the currently viewed term: // Check if we have posts to work with if( ! have_posts() ) { $term = get_queried_object(); // Get the current term } // Check if we have a term to work with if( ! empty( $term ) ) { echo $term->name; // Output term properties } Since you're using this in a taxonomy template, `get_queried_object()` should return a WP_Term object.
stackexchange-wordpress
{ "answer_score": 3, "question_score": 2, "tags": "taxonomy" }
What is an equivalent of single_cat_title for getting the slug of the category? I searched for something like `single_cat_slug` but I did not find something relevant. All I don't know how to do it is to find the slug, not the name, of the currently opened category page. I do not know how to find the slug if I have the name. <?php $c = is_category(); $d = !empty(get_the_category()); $cat = $c ? single_cat_title('', false) : ( $d ? get_the_category()[0]->slug : NULL ); if ($cat !== NULL) { ?> and after this there is some HTML in which I will use $cat to highlight the currently opened category (either a post in that category or a category archive page itself). The issue in my case is that `single_cat_title` does not return the slug but the title (the name).
On a category archive page, you can use `get_queried_object()` to get the data of the current category in the main request, and get the slug like so: `get_queried_object()->slug`.
stackexchange-wordpress
{ "answer_score": 2, "question_score": 1, "tags": "php, categories, archives, slug" }
current_user_can() causing critical error I am writing a function to add a link to the Media Library in the admin menu on front end: function add_media_link_to_admin_menu( $wp_admin_bar ) { // add Media Library to admin menu $wp_admin_bar->add_menu( array( 'parent' => 'appearance', 'id' => 'media-library', 'title' => 'Media Library', 'href' => '/wp-admin/upload.php', ) ); } // restrict to only users who can upload media if ( !current_user_can( 'upload_files' ) ) { add_action( 'admin_bar_menu', 'add_media_link_to_admin_menu', 999 ); } Without the "if ( !current_user_can( 'upload_files' ) ) {" the function works fine. But with the if statement, I get a critical error. Am I missing something? I just want to check if user can upload files. If not, they don't need the Media Library link. Thanks, Chris
The problem is that wp_get_current_user (which current_user_can relies upon) is pluggable, which means it isn't loaded until after plugins are loaded (to give plugins a chance to override it). That means it's not available to call from the top level of a plugin file. Instead, I'd make the role check inside the hook e.g. function add_media_link_to_admin_menu( $wp_admin_bar ) { if ( current_user_can( 'upload_files' ) ) { // add Media Library to admin menu $wp_admin_bar->add_menu(array( 'parent' => 'appearance', 'id' => 'media-library', 'title' => 'Media Library', 'href' => '/wp-admin/upload.php', )); } } add_action( 'admin_bar_menu', 'add_media_link_to_admin_menu', 999 ); (However themes are loaded after pluggable functions, so your original code would work fine in a theme.)
stackexchange-wordpress
{ "answer_score": 0, "question_score": 0, "tags": "users, capabilities" }
Double domain name in category URL-s My site runs on the latest version of WordPress. However, I have a problem with categories. Permalinks are set correctly and my category path looks like this: `example.com/category-name`. Links work fine, but the problem is, I can also access every category with a link like this: `example.com/example.com/?cat=6`, which contains no posts. I feel like I've tried everything to fix it. "siteurl" and "home" fields in the database are set correctly (` as well as permalinks. It's not plugin nor theme related - I checked everything. Does anyone have any ideas how to fix this?
You can "workaround" the issue with a redirect in `.htaccess`, although it's not clear why this double-domain-URL would be accessible in the first place. So, we can redirect URLs of the form `example.com/example.com/?cat=6` to `example.com/?cat=6`, which you then say is correctly redirected to `example.com/category` by WordPress. For example, at the top of your `.htaccess` file: RewriteRule ^(?:www\.)?example\.com/(.*) /$1 [R=301,L] This basically removes `example.com` (or `www.example.com`) from the start of the URL-path. Any query string that was present on the initial request (eg. `cat=6`) is passed through to the target URL by default. Test first with a 302 (temporary) redirect to avoid potential caching issues.
stackexchange-wordpress
{ "answer_score": 1, "question_score": 1, "tags": "url rewriting, redirect, htaccess, phpmyadmin" }
Input sanitation I have a question regarding a wordpress site I have recently developed for a client. I have only until now developed a site for small clients that just require personal websites, however this client has asked me to redeveloped his site as the current one has alot of security issues. Anyway I have created the site and shown it to him and he has asked if I can 'apply input sanitation so special characters like @,&,-,+,% are not allowed' to the login field. * My question therefore is does Wordpress require further development to stop SQL injections etc on login forms? And do I need to apply input sanitation to the login fields? * It seems odd to not allow special characters when special characters are better for passwords so should I do this? Bare in mind that the site doesn't have public registration. It has a login feature for partners which the admin would create the login for. Thanks Ian
wp-login.php should not require additional effort from you to secure. However, I don't think that's what you client is asking for. > My question therefore is does Wordpress require further development to stop SQL injections etc on login forms? And do I need to apply input sanitation to the login fields? To wp-login.php, no, you don't. Not for security reasons, anyway, but that's not what your client asked for. They just asked to make "@,&,-,+,% are not allowed", which sounds like a business logic decision, and not related to security. > It seems odd to not allow special characters when special characters are better for passwords so should I do this? Bare in mind that the site doesn't have public registration. It has a login feature for partners which the admin would create the login for. From what you've said, your client didn't mention the password field. They just mentioned the "login" field, which I would interpret as the username field.
stackexchange-wordpress
{ "answer_score": 1, "question_score": 0, "tags": "login, security, sanitization" }
Wordpress query undefined offset in loop I created a query with arguments see blow. On the page I see an error in a loop * Notice undefined offset 1 * Notice undefined offset 2 * Notice undefined offset 3 and so on... $args = array ( 'post_type' => 'catalog', 'post_status' => 'publish', ); $loop = new WP_Query( $args ); if ( $loop->have_posts() ) { while ( $loop->have_posts() ) { the_post(); echo get_the_title(); } } I tried other arguments but this does not work. * 'posts_per_page' => 4 Please who can help me?
There might be other causes to the issue in question, but one issue I noticed in your code is that because you are looping through a custom `WP_Query` instance, i.e. `$loop`, then you need to use `$loop->the_post()` instead of just `the_post()`: while ( $loop->have_posts() ) { $loop->the_post(); the_title(); } And you could see that I simply called `the_title()` and not doing `echo get_the_title()`, so you should also do the same.
stackexchange-wordpress
{ "answer_score": 2, "question_score": 0, "tags": "php, posts, loop, query" }
removing my underline from hyperlinks So I am new to Wordpress, on my website I recently opened the source code and am learning how to customize even more. One thing I am stuck on is how to remove underlines from hyperlink, I tried the text decoration none thing but it did not work, this is the code, what and where do I typset into it to remove underlines? <!-- wp:paragraph {"style":{"typography":{"lineHeight":"1.5","fontSize":"30px"}}} --> <p style="font-size:30px;line-height:1.5"> <strong><a rel="noreferrer noopener" href=" target="_blank" >Here I post math videos to our YouTube page!</a> </strong> </p> <!-- /wp:paragraph --> Thanks! also was not sure what to tag this as so sorry, this is my first WPSE question. I may have many more as I am learning to code it manually rather than use the user friendly interface. Also to see my code you may need to open editor? not sure how to display the code.
The code you said you tried, `a {text-decoration:none;}`, should work. Using, `a {text-decoration:none!important;}`, should definitely work or using an inline style, like in the `<p>` tag would take precedence over the stylesheet. The more correct way would be to either edit the CSS, ideally in a child theme, and apply your own styling. Using !important in the Theme Customizer Custom CSS should be good enough for a mathematician ;-) or anyone else who is doing this as a hobby.
stackexchange-wordpress
{ "answer_score": 2, "question_score": 1, "tags": "css" }
Converting a Wordpress widget to a block Is it possible to convert an existing Wordpress widget to a block, without having to write a custom block (javascript)?
The short answer here is no. Widgets are written in PHP and blocks are written in JavaScript. Beyond that there pretty fundamental differences between the two paradigms in the sense of where they are stored, markup output approaches etc. You could take the approach of a dynamic block where the block is rendered on the front end with PHP, but you'd still need to register a custom block in JavaScript ( as well as enqueue the files ) to be able to insert it into the Block Editor. There may be plugins available that solve this, but I am not aware of any. Hope this helps!
stackexchange-wordpress
{ "answer_score": 3, "question_score": 2, "tags": "widgets, block editor" }
How to Get The Excerpt of the page that displays Blog Posts I use a static page (Blog) to display the latest posts. I want to show the excerpt of that page next to the title. However, wen I use `wp_kses_post( get_the_excerpt() )`, I get the excerpt of the latest post from the post archive loop. I also tried with `wp_kses_post( get_the_archive_description() )` but it also does not seem to work.. Any idea how this can be done?
You can use `get_queried_object()` to get the static page data, and then do something like so to get the excerpt of the page: echo get_the_excerpt( get_queried_object() ); // Or to apply filters just as the_excerpt() does: $excerpt = get_the_excerpt( get_queried_object() ); echo apply_filters( 'the_excerpt', $excerpt );
stackexchange-wordpress
{ "answer_score": 1, "question_score": 0, "tags": "archives, blog page, description" }
Why is onChange={ ( content ) => setAttributes( { content } )} now used? Looking through older tutorials or code for blocks built in 2018/2019 vs the more current blocks, I see two different ways attribute values are set. For example, the "old" way for an attribute called "content" might be: `onChange={ (newContent) => setAttributes({ content: newContent })} ` Whereas in a more modern block: `onChange={ ( content ) => setAttributes( { content } )} ` I get it's a minor change but I'm curious if anyone here knows why. Thanks!
Because `{ content }` is shorthand for `{ content: content }` it's a JS thing not a WordPress thing. Both methods work and do the same thing, but the `{ content }` syntax is shorter, so the variable was named `content` in newer examples to allow it. Otherwise, there are no security or performance improvements, it's just a shorter syntax for the same thing.
stackexchange-wordpress
{ "answer_score": 5, "question_score": 3, "tags": "block editor" }
get_the_post_thumbnail_url does not return anything if image size is set I want to display the post-thumbnail image in the header using `get_the_post_thumbnail_url()` with defined size, however if I am using it without specifying the size, like `get_the_post_thumbnail_url()` it is displaying the thumbnail img, but if I am using it like: `get_the_post_thumbnail_url('thumbnail')` nothing is shown. my code in the header.php is: <?php function vkb_header_style() { if (has_post_thumbnail() and is_singular()) { $vkb_thumbnail_url = get_the_post_thumbnail_url('thumbnail'); echo 'background-image: url(' . $vkb_thumbnail_url . ');'; } else { storefront_header_styles(); } } ?> <header id="masthead" class="site-header vkb-header" role="banner" style=" <?php vkb_header_style(); ?>">
The first parameter for `get_the_post_thumbnail_url()` is the post ID or post object, and not the image size which is actually the second parameter. So: // Instead of this: get_the_post_thumbnail_url( 'thumbnail' ) // You should use: get_the_post_thumbnail_url( get_the_ID(), 'thumbnail' ) // pass a post ID get_the_post_thumbnail_url( get_post(), 'thumbnail' ) // or post object // Or you can pass a null to use the current post: get_the_post_thumbnail_url( null, 'thumbnail' )
stackexchange-wordpress
{ "answer_score": 1, "question_score": 0, "tags": "woocommerce offtopic, post thumbnails" }
Set a dashboard widget to the top? Instead of manually dragging and dropping a dashboard widget to the top, is there a way to code it into the widget itself so it's always at the top position? Thank you in advance
Unfortunately there is no way to **force** a dashboard widget to the top, however following this link should help you...in a way. Note: > Unfortunately this only works for people who have never re-ordered their widgets. Once a user has done so their existing preferences will override this and they will have to move your widget to the top for it to stay there.
stackexchange-wordpress
{ "answer_score": 0, "question_score": 0, "tags": "widgets, dashboard" }
Order posts by date, but also give priority for a specific term is it possible to query posts ordering them by date, but also give priority for a specific term? I want posts from this term to be always on top, followed by the posts of the other taxonomies. $paged = ( get_query_var('paged') ) ? get_query_var('paged') : 1; $query_args = array( 'post_type' => 'topics', 'posts_per_page' => 12, 'paged' => $paged, ); $query = new WP_Query($query_args); if($query -> have_posts()):while($query -> have_posts()):$query -> the_post();
There are no default sorting to show a specific term posts on top of others. So need some tricks to achieve it. You can check this answer, should be helpful. <
stackexchange-wordpress
{ "answer_score": 1, "question_score": 0, "tags": "query, terms" }
Which WordPress option stores the current active theme? I always thought that the current theme is saved under the "template" option. But looking inside the "secret" `/wp-admin/options.php` area, I see other related options. In total, there are three: * template * stylesheet * current_theme In my WP installation all those three have the exact same value. I would like to know what each of those options really does and which one is storing the actual current theme name that WP uses when loading templates. It may seem useless as a question but the point is that I am "studying" the WP architecture, and this is one of the current confusion points of the road.
All those options are actually pointing to the active theme, but the difference is the value stored in each option: * The options `template` and `stylesheet` both store the name of the active theme folder, e.g. `twentytwentyone` for the `Twenty Twenty-One` theme. But if you're using a child theme, then `stylesheet` would be the name of the child theme folder, e.g. `twentytwentyone-child`. * `current_theme` on the other hand (is or seems like a deprecated option which) stores the name of the active theme on the site, e.g. `Twenty Twenty-One`. And this option is used by `get_current_theme()` (a deprecated function) and a deprecated option named `mods_<theme name>` (see `get_theme_mods()`). And note that I don't have this option on my site (default install of WordPress 5.7), but if I had it, then the value would be the same as what `wp_get_theme()->get( 'Name' )` returns.
stackexchange-wordpress
{ "answer_score": 8, "question_score": 4, "tags": "options" }
Using 2 HTML blocks in Gutenberg to wrap content with div I'm trying to wrap a Gutenberg block with a div with class x. The structure I'm using looks like this: * HTML Block (`<div class="x">`) * Other Block(s) * HTML Block (`</div>`) In the frontend, **all works as expected** , but in the Editor, **when saving and reloading, it will popup the "This block contains unexpected or invalid content" error** in both HTML blocks. I assume the editor considers the code is wrong, cause the first one is not closed, and the second one is not open. Is there another cleaner/better way of doing this? Shouldn't I be able to write HTML in the blocks that are not necesserely self-contained?
You can achieve the same thing by wrapping multiplle blocks in groups blocks, and adding HTML classes to them, or to individual blocks. Modifying their HTML with the code editor isn't necessary
stackexchange-wordpress
{ "answer_score": 1, "question_score": 0, "tags": "block editor" }
How to set a Post's default visibility to 'Private' in Gutenberg? I am trying to set a Post's default visibility to 'Private' when a user first creates the post. They should then have the ability to manually select 'published' from the sidebar dropdown once they are ready or the post has been reviewed. My goal is to ensure posts aren't accidentally published if the user isn't ready or forgot to select 'private'. I can't find any code that works for Gutenberg. Most I researched are outdated and for the classic editor. I would prefer not to use a plugin if possible. Any help is much appreciated. Thanks in advance!
At the time of writing, there are no filters on the initial edits array passed from PHP through to javascript and into the editor initialisation function. If such a filter existed, it would be possible to apply a `post_status` field, but no PHP or JS hooks exist currently to do this. The `Editor` component also provides no opportunities to modify this structure to add/edit values.
stackexchange-wordpress
{ "answer_score": 0, "question_score": 1, "tags": "posts, block editor, publish, post status, private" }
A server-side hook failed when committing plugin code to SVN We're trying to commit and push our initial release to the SVN repository assigned to us by the wordpress team. However when committing the code we're getting an error (probably because of the PHP8 polyfill) but are a bit baffled why this is stopping the plugin from being deployed? In the readme.txt and composer we specifically also set the min. version of PHP to 7.0 ![enter image description here](
After discussing this with the WP plugin review team. The precommit hook that is being run on the server does not yet support PHP8. Removing any dependencies on the PHP80 polyfill code in vendor packages should fix this until they upgrade the precommit hooks to support PHP8. > Just noting on the discussion above related to symfony/polyfill-mbstring the Symfony polyfills now include files which are only PHP8-syntax, but those files are only included on PHP8, the PHP7 variant is included for the rest of the users. Same situation as when the libraries added PHP 7.3/7.4 syntax and we were strictly requiring 7.0 or something. > Using the older version of the library is the proper solution for now. The SVN server will lint with PHP8 once it’s deployed for usage on WordPress.org web requests, which while it has no timeline, I expect it’s probably going to happen at some point in the next few months, but before it’s widespread adoption.
stackexchange-wordpress
{ "answer_score": 1, "question_score": 0, "tags": "plugins, php, plugin development, svn" }
WPML best page selector with php I have a multilingual website made with WPML. I have php code to run across pages but I cannot uniquely target the page with `is_page(ID)` since the ID of the page changes across language domain. I need to write the code to target the page for each language. What is the best practice to target pages across language domain?
This code returns the post ID in the current language. $translated_post_id = apply_filters( 'wpml_object_id', $post_id, 'post' ); So, you can use `$translated_post_id` in `is_page`. Documentation.
stackexchange-wordpress
{ "answer_score": 1, "question_score": 0, "tags": "php, plugin wpml" }
Change the URL of an image from wp_get_attachment_image_src except in the frontpage This is the code I used that is working, but I want it to work only on product posts and not on the frontpage. function alterImageSRC($image, $attachment_id, $size, $icon){ $image[0] = ' return $image; } add_filter('wp_get_attachment_image_src', 'alterImageSRC', 10, 4);
This code worked for me: function alterImageSRC($image, $attachment_id, $size, $icon){ if ( is_front_page() ) { return $image; } $image[0] = ' return $image; } add_filter('wp_get_attachment_image_src', 'alterImageSRC', 10, 4);
stackexchange-wordpress
{ "answer_score": 1, "question_score": 1, "tags": "php, woocommerce offtopic, images" }
Custome fields not displayed I am unable to see the custom fields I have added in the website. I have done the following: I have installed _Custom Post Type_ and _Advanced Custom Fields_ plugins. Using them I created a custom post type and field group and associated the field group with post type. When I go to the new custom post, I see the fields I want. I enter the data and publish. I get a message that the page is published with a link to view it. Until this point everything is good. When I click on the link, I only see the default fields that come along with WordPress like Title and Body text. The new custom fields which I have added are not displayed. I am using WordPress 5.7 and the above mentioned plugins are compatible with this WordPress. I have tried viewing using two default themes Twenty Twenty and Twenty Twenty One. Thanks for any help!
You have to add the code to your template to display the fields. They don't automatically output to your page. Assuming you're using the text field, you need to add the following: <h2><?php the_field('heading'); ?></h2> Chage the text 'heading' to the name of your custom field. Normally, If it's the home page, you can edit the template called front-page.php, or if it's a post, you edit single.php and add the above code there. You can read more about it here
stackexchange-wordpress
{ "answer_score": 1, "question_score": 0, "tags": "custom post types, custom field, advanced custom fields" }
`wp_delete_post` returns NULL I am trying to delete a lot of WordPress posts programmatically using `wp_delete_post`, but not all posts are deleted successfully. In some cases I get `NULL` as a return value for `wp_delete_post($row->post_id, true)` and the post isn't deleted from the database. There are both `post` and `page` post_types amongst those not deleted posts, as well as custom post types. What can be the issue there, why aren't some posts deleted, while many others are deleted successfully?
I realized that I was trying to delete a post while my current site wasn't the same one. My WordPress is multisite. `switch_to_blog($siteId);` solved the issue.
stackexchange-wordpress
{ "answer_score": 1, "question_score": 0, "tags": "wp delete post" }
How to show CPTs in term archive I attached default taxonomy "category" to a "story" custom post type, when I register it: 'show_in_rest' => true, 'show_in_feed' => true, 'taxonomies' => ['category'], 'has_archive' => true, Then, I try to show "story" posts with a category term using default template: But the template only shows default posts instead CPT "story" AND default posts with that term. How should the CPT "story" be included in the default wp_query in the term archive template?
You can use pre_get_posts hook to modify the main query, or any WP_Query for that matter. For example like this, add_action( 'pre_get_posts', function($query) { // target only public category main query if ( is_admin() || ! $query->is_main_query() || ! is_category() ) { return; } // include custom post type in the query $query->set( 'post_type', array( 'post', 'story' ) ); } );
stackexchange-wordpress
{ "answer_score": 1, "question_score": 1, "tags": "custom post types, wp query, categories, taxonomy" }
How do i get the link to a block? It appears that the latest gutenberg editor supports direct links to blocks added to a post as mentioned here. How do I get the block link? I need to extract it programmatically but it's not saved in the post's markup as I've discovered.
It’s just an anchor link, so it will be the URL of the post plus the ID you gave it, preceded by a hash.
stackexchange-wordpress
{ "answer_score": 2, "question_score": 0, "tags": "block editor" }
How i remove specific script from header? I need to remove a specific line from the header when opening the site. How do I do this using a filter? <script src="url" data-pn-plugin-url="www.site.com/folder" data-pn-wp-plugin-version="1.0.0" type="text/javascript" async> Thanks!
That script looks like it is coming from some plugin. You'll need to dig into the plugin files to see how the script is added. If it is enqueued, then you can use wp_dequeue_script(). If it is added with an action (e.g. function that echoes the tag to wp_head), then use remove_action().
stackexchange-wordpress
{ "answer_score": 0, "question_score": 0, "tags": "plugins, filters" }
Including code from other themes in child themes I'm about to build a new site based on a theme close to what I'm looking for. I understand the concepts around child theming & have read the caveats about overriding php or css files like the one described here. Using such workarounds and calls from functions.php, is it possible to build a "Frankenchild theme" by taking chunks of a second (would-be parent) theme and patching them into the child theme? I'm not quite asking about creating a child of two parents; the child would only have one "official" parent. As an example: Start with a Gantry basic theme and add custom taxonomy search capabilities & search results formatting (say a card-based carousel). Is that stepping over the line into plugin development?
The canonical answer is that themes are for visuals only, the rest go in plugins. In practice though, people bundle everything in a theme because it's easier to sell a zip you upload to the themes folder. In the future it will be possible to have themes that contain little to no PHP at all thanks to full site editing. With that in mind, if you want to take functionality from an unrelated theme, nothing prevents you copying the files over, however, this doesn't mean that it will work. You'll almost certainly need to make adjustments so that styling looks right. You may need to implement PHP and JS changes to restore the functionality. If you can move it to a plugin then that should always be the preferred choice. If at any point you are tempted to load the code directly from the other themes folder via `include` or `require`, do not do this. _It is extreme bad practice_ , and a very bad thing to do. There is no situation where this is a good idea. Avoid at all costs.
stackexchange-wordpress
{ "answer_score": 0, "question_score": 0, "tags": "child theme, development strategy" }
How does the Gutenberg mobile/tablet/desktop preview work with media queries? I am building a block which has different layouts for mobile and desktop. As far as I understand CSS media queries, they work when the viewport is resized. ![enter image description here]( The preview feature in Gutenberg doesn't actually resize the viewport, it just reduces the width of the container containing the blocks. I saw that the core Gutenberg block "Gallery" changes its layout when switched between desktop and mobile preview modes. I was wondering how that works? I checked the source code and even checked the Dev tools to detect any addition/removal of CSS classes but couldn't find any. Can someone shed some light please?
I investigated the states set using React Dev Tools and found the preview modes are set under the `deviceType` key. Went through the Gutenberg source and came across the `__experimentalGetPreviewDeviceType` function. /** * Returns the current deviceType. */ const { deviceType } = useSelect( select => { const { __experimentalGetPreviewDeviceType } = select( 'core/edit-post' ); return { deviceType: __experimentalGetPreviewDeviceType(), } }, [] ); I'm using this to conditionally set the CSS classes. Worked for me and I hope the Gallery block is doing the same way.
stackexchange-wordpress
{ "answer_score": 3, "question_score": 3, "tags": "block editor" }
Formatting messed up when piping wp commands Ok, so I have been using `wp plugin update --all` in the past with a tee command. There has been no problem in the past, but after I ran an update on my system, everytime I run the command through a pipe, the formatting is messed up. So this is the gist of the command used: `wp plugin update --all|awk '/Success/,EOF'| tee >(convert -font Courier -pointsize 14 label:@- img.png)` Previously it would produce a flawless output: ![enter image description here]( However, now when I pipe, even if I leave out the convert command, say something like this: `wp plugin update --all | tee test.txt' the output is messed up.... ![enter image description here]( or ![enter image description here]( Has anyone got any ideas....driving me a bit crazy...
WP CLI needs to know some things about the terminal it's running in to format the table, aka the TTY. But when you pipe, there is no TTY! But you can trick it into thinking there is if you use this bash function: faketty() { 0</dev/null script --quiet --flush --return --command "$(printf "%q " "$@")" /dev/null } then you can run WP CLI commands and it will think it’s running in an interactive shell, not a pipe, e.g.: faketty wp post list | more
stackexchange-wordpress
{ "answer_score": 1, "question_score": 1, "tags": "wp cli" }
Append a parametter at first or last to a certain URL I want to change a URL and want to add a parameter to the last or first of that URL. For example I have URL like below I want to append an extra parameter "&propertyType=RNT" the URL at last or first or in the middle whatever So the URL looks like below OR How can I achieve this ? The solution can be with PHP or using htaccess. Thanks in advance
I got my code working now. Here is the below code that append that extra parameter to the end of the URL specified above. add_action('init', 'add_custom_query_for_search'); function add_custom_query_for_search(){ global $wp; $tempUrl = home_url() . add_query_arg( $wp->query_vars ) . '&propertyType=RNT'; if( ! isset($_GET['propertyType']) && (strpos($tempUrl, 'homes-for-sale-search') !== false) ){ wp_redirect($tempUrl); die; } }
stackexchange-wordpress
{ "answer_score": 0, "question_score": 0, "tags": "url rewriting, urls, parameter" }
Upload Custom Mime Types in WordPress (SVG, WebP) I have a plugin I created to allow for us to add additional image types (webp, svg, etc). For some reason it is failing and will not allow me to add svg. Could use an extra set of eyes on this one please: function pmp_custom_upload_mimes($existing_mimes = array()) { $existing_mimes['webp'] = 'image/webp'; $existing_mimes['ico'] = 'image/x-icon'; $existing_mimes['svg'] = 'image/svg+xml'; return $existing_mimes; } add_filter('mime_types', 'pmp_custom_upload_mimes');
I have discovered the cause. The SVG document needs to contain the xml declaration in the file: <?xml version="1.0" encoding="utf-8"?>
stackexchange-wordpress
{ "answer_score": 2, "question_score": 0, "tags": "uploads, svg, mime types" }
Display Author Registration Date In author archive, I want to show author registration date in the following format: > January 16, 2021 I have found this code: $user_ID = $post->post_author; echo the_author_meta( 'user_registered', $user_ID ); But its output format is: > 2021-01-16 10:40:52 How can I strip off time and get my desired format? I am using date format `F j, Y`
How about reformat it instead of stripping? //Get post author ID $post_author_id = get_post_field( 'post_author', $post->ID ); //Get the registration date $registered_date = get_the_author_meta( 'user_registered', $post_author_id ); //Convert to desired format $output = date( 'F j, Y', strtotime($registered_date)); //Echo echo $output;
stackexchange-wordpress
{ "answer_score": 1, "question_score": 0, "tags": "date" }
Why is my archive.php redirecting to front-page.php? I generate archives using `wp_get_archives()` and get list of all my archives. But when I click one of the links its always redirect me to `front-page.php` which is `www.mydomainexample.com`. I've created an `archive.php` file in my directory in case you are wondering. I also saved changes for permalinks. In my case I want to redirect to year/date. The links that `wp_get_archives()` generate already what I'm looking for `www.mydomainexample.com/2020/12` but it always redirect to my homepage `www.mydomainexample.com`. What am I missing?
Sorry, this is on me. My SEO plugin by default disable the archives date and redirect to homepage. Leave it on here for the people maybe get stumbled by this problem.
stackexchange-wordpress
{ "answer_score": 1, "question_score": 0, "tags": "archives, frontpage" }
Sanitizing comments or escaping comment_text() I'm creating a template for comments on my WordPress site. I noticed that a simple `<script>alert(1);</script>` slips through the default WP codex implementation of comments, using the `comment_text()` function to display my comments. **No bueno**. How can i properly sanitize and/or escape WordPress comments? The `esc_html()` function, seems to do nothing in this case.
~~After thinking about this a little bit, I guess that the proper way to ensure that your comments are properly escaped, is by doing something like this: $the_comment = get_comment_text(); echo '<p>' . esc_html($the_comment) . '</p>'; Instead of simply using the function like this: comment_text(); Why even have these handy functions in the first place, if they aren't properly escaped? The `comment_author();` function IS, yet this is not for some reason? Perhaps I am missing something?~~ I **was** missing something: the `unfiltered_html` capability given to the admin role, extends to comments. Read more here: <
stackexchange-wordpress
{ "answer_score": 1, "question_score": 2, "tags": "comments, security, sanitization, escaping, input" }
GET request return value as error instead of success I am trying to send response back to ajax request in js by using REST API. send request from ajax to server is okay and its processing okay. But to send the response from server to ajax, the ajax receive it as "error" instead of "success". My ajax in js ![enter image description here]( My REST API ![enter image description here]( I have tried wp_send_json, json_encode, wp_send_json_success, but results are still the same. This is what I have in Error from ajax ![enter image description here](
On line 252 you are using `print_r()` inside your code, which is printing out an error message before the proper response, so your response is not valid JSON anymore. If, as it appears, you want to include the output of `print_r()` in your error log, and not include it in the response, you need to set the second argument so that the value of `print_r()` is _returned_ , and not printed: error_log( "get_detail =" . print_r( $data, true ) );
stackexchange-wordpress
{ "answer_score": 0, "question_score": 0, "tags": "plugin development, ajax, rest api, errors, json" }
Wordpress is stripping the Alt tag's quote marks from images where Alt is not set, but leaving the word 'alt' creating problems for ADA compliance How do I get around this? For ADA compliance I specifically need `alt=""` on some of my images in a wordpress site, however wordpress is stripping the Alt tag's quote marks from images where Alt is not set, and just leaving the word 'alt' without the quotation marks. How do I make sure the Alt tags are left intact with their quote marks? I just need it to say `alt=""` instead of `alt`. ! :D
I tried to replicate your issue and while the dev tools show it as `alt` the source code shows `alt=""`, so WordPress is not stripping the quotes, it's just the dev tools being concise. But even if it was, they're equivalent so `alt` and `alt=""` are the same. As for why the dev tools display `alt`, it's because the dev tools don't display the HTML, they display the DOM
stackexchange-wordpress
{ "answer_score": 3, "question_score": 1, "tags": "images" }
Home page not loading after editing header.php file My sites home page has lost all the content after i added a line of code for Google Analytics-Global tag in the header.php file. I took the backup of the file before i did the change and have restored it as well but issue is still there. All other pages of the site are working fine, on the home page all i am seeing is site header and footer. My site us built using wordpress and Divi theme. Please let me know what i can do to fix this. Thanks Mo
Looks like you have lost the homepage content. Edit the page and restore the last revision as explained here. <
stackexchange-wordpress
{ "answer_score": 0, "question_score": 0, "tags": "templates" }
How can I identify it as admin page or not? I only want to display it on all pages without the admin pages. How can? How to detect is it admin page or not? My custom plugin file: ~/wp-content/plugins/mycplugin/mycplugin.php if ( not admin page ) { // ? if ( defined ( 'WP_AUTO_UPDATE_CORE' ) ) { print '<div style="background-color: black; bottom: 0; color: white; font-family: monospace; font-size: 10px; opacity: 0.5; padding: 0.5em; position: fixed; width: 100%;">' . WP_AUTO_UPDATE_CORE . '</div>'; } else {} } else {}
Use `is_admin()` function. It will return true if it's wp-admin page and false on frontend. more here <
stackexchange-wordpress
{ "answer_score": 3, "question_score": 0, "tags": "plugin development" }
twenty twenty one / background values have checked my source code of my wordpress site/theme using < because I have installed the new theme twenty twenty one and now the sites stalls on my iphone with an animation I used before. tools says: > background: repeating-conic-gradient(from 0deg,rgb(236, 236, 236, 0.9) 0deg 1deg,transparent 1deg 2deg) is an ERROR and is not a background-color value? I can find quiet many examples in the web that say it should be that way? any advice? regards, A
CSS conical gradient is still in the experimental stage and hasn’t been adopted yet by the majority of modern browsers. Only Google Chrome 69+ and Safari 12.1+ in desktop browsers and iOS Safari 12.2, Android 12.2+ and Chrome Android 67 among mobile browsers provide browser support for this feature. Other popular browsers like Mozilla Firefox, Opera and Edge still haven’t rolled out support for conical CSS gradient. In order to provide CSS conical gradient functionality for unsupported browsers, you can make use of an ingenious polyfill by Lea Verou.
stackexchange-wordpress
{ "answer_score": 0, "question_score": 0, "tags": "theme twenty twenty one" }
Fetch taxonomies by custom post type id array I want to find all the taxonomies that match an array of CPT id's. I have a taxonomy called `location` and I want to find all the locations where they have posts that are equal to my array of post id's e.g. `array(12, 13, 18, 22, 343, 5644)`
Easiest way to find terms of many posts is to use `wp_get_object_terms` function $your_post_ids = array(12, 13, 18, 22, 343, 5644); $your_taxonomy = 'location' //you can set many as array $terms = wp_get_object_terms ( $your_post_ids, $your_taxonomy);
stackexchange-wordpress
{ "answer_score": 2, "question_score": 1, "tags": "custom post types, wp query, custom taxonomy, taxonomy" }
theme style is applied on the dhasboard rather than the website I am creating a new theme, I created a new directory called **mytheme** and created three files directly inside the directory where the content is as follow: **index.php** <?php echo "hellow world"; ?> **style.css** /* Theme Name: mytheme */ body {background: red;} **functions.php** <?php wp_enqueue_style( 'style', get_stylesheet_uri() ); ?> the problem: the dashboard is colored in red. expectations: the website itself to be colored in red. **Edit:** the solution marked is only half the answer. **index.php** needs to have headers initiated otherwise it wont work **index.php** is now: <?php wp_header(); echo "hellow world"; ?>
You need to enqueue your stylesheets and script to `wp_enqueue_scripts` hook. In your functions.php try function enqueue_scripts_cp() { wp_enqueue_style( 'style', get_stylesheet_uri() ); } add_action( 'wp_enqueue_scripts', 'enqueue_scripts_cp' );
stackexchange-wordpress
{ "answer_score": 1, "question_score": 0, "tags": "theme development, themes, css, wp enqueue style" }
getting url from variable that calls picture of current page, not working. Only displays everything instead of url I am trying to echo an image to the background like so $product_pic = get_the_post_thumbnail($pid, 'full'); $pid = $result[0]->productID; <style> .product-pic-bg{background-image:url("<?php echo $product_pic;?>")} </style> It doesn't work. All I get is `.product-pic-bg{url""}` in the console. When I dump the $product-pic I get: ![background]( What do I do to get this to work?
`get_the_post_thumbnail` function returns the post thumbnail image tag as a string. Use `get_the_post_thumbnail_url` function instead to get url. $url = get_the_post_thumbnail_url($pid, 'full');
stackexchange-wordpress
{ "answer_score": 1, "question_score": 0, "tags": "php" }
Add description to custom plugin setting Using `add_settings_field();` i am able to add my custom setting: add_settings_field('AUTOPLAY', 'Auto Play', 'printAutoPlayCheckbox', 'my_settings'); function printAutoPlayCheckbox() { $id = 'AUTOPLAY'; $name = 'my_settings' . "[$id]"; $options = get_option('my_settings'); echo '<input type="checkbox" id="' . $id . '" name="' . $name . '" ' . checked(1, isset($options[$id]), false) . '" />'; } ![enter image description here]( Now i want to add a short description of this setting, something like that: ![enter image description here]( How can i do that? I couldn't find it in the WordPress docs.
I've not seen this type of _title_ settings layout in the admin pages, so it seems you're parting away from it. Otherwise note that the _title_ field of `add_settings_field()` is unescaped, so in theory one could add some HTML code for new title layout. Usually the description is added to the input field.
stackexchange-wordpress
{ "answer_score": 1, "question_score": 0, "tags": "options, settings api, description" }
How can I programmatically disable Gutenberg query block patterns? I have this function in my theme's functions.php file: remove_theme_support( 'core-block-patterns' ); which works great but does not remove the Query patterns. How can I include those to be removed in this function? ![enter image description here](
My fix for this issue is editing the Gutenberg plugin and removing the blocks there. I have not found a way to cleanly remove them through functions.php.
stackexchange-wordpress
{ "answer_score": -1, "question_score": 0, "tags": "block editor" }
How to get the particular product quantity in orders in Woocommerce I am working on my WooCommerce project and I am sending mail to the customer and in that I am sending the particular product quantity. So, I am not able to get that particular product quantity from the order. **This is code:** $order = new WC_Order( $order_id ); $item_quantity=0; $targeted_id = 14988; foreach ( $order->get_items() as $item_id => $item ) { $item_quantity += $item->get_quantity(); } I want to get the '14988' product quantity from the orders. Any help is much appreciated.
In the foreach you need to check each item for its product id and compare it to the targeted id $order = new WC_Order($order_id); $item_quantity = 0; $targeted_id = 14988; foreach ($order->get_items() as $item_id => $item) { // check if current item (product) id is equal to targeted id if ($item->get_product_id() == $targeted_id) { $item_quantity += $item->get_quantity(); // once the correct cart item is found we no longer need to loop all other products so we break out of the loop break; } }
stackexchange-wordpress
{ "answer_score": 1, "question_score": 0, "tags": "plugins, woocommerce offtopic" }
How to get a list of all possible values of a specific user meta key? I have set up my posts with bookmarks where the user's meta will be updated with the post ID of the post they are bookmarking. They are stored in user meta key `my-bookmarks` as an array. Now I am trying to query (using PHP) all of the users that have bookmarked a specific post, and list the counts by state. So 20 people from Wisconsin, 10 people from Florida, etc. I am wondering if there is an easy way to fetch all of the possible values of the user meta key `state` from the users that have bookmarked that post, so I don't have to iterate all 50 states every single time. I would rather see that only users from 3 states have downloaded them, so let's just query the users from those 3 states. Unless you have a better idea.
Perhaps you could create a private utility taxonomy `bookmarks`, where each term would correspond to a user. When ever a user is created a new term would be added to the utility taxonomy. As the user bookmarks or removes one's bookmark from a post, your code would attach or detach the user equivalent term from the post. The user ID could be saved as the term name and/or slug, which you could use to do "reverse lookups" e.g. turn the term name into a integer and query single user with it. To find out who has bookmarked a post, you'd simply use `get_the_terms($post_id, 'bookmarks')`, turn the term names to an array of IDs, and query the users with `WP_User_Query(array('include' => $user_ids))`.
stackexchange-wordpress
{ "answer_score": 1, "question_score": 1, "tags": "php, users, query, user meta" }
How to add ajax url to js using wp_add_inline_script()? I usually enable ajax in a js script by using _wp_localize_script_ like this wp_localize_script( 'map-scripts', 'ajax_info', array( 'ajax_url' => admin_url( 'admin-ajax.php' ) ) ); but now I see it is best practice to use _wp_add_inline_script_ , which I find harder to use. I am not able to pass an array with this method. I tried the following but it does not look the same: $ajax_arr = array( 'ajax_url' => admin_url( 'admin-ajax.php' ) ); $ajax_json = json_encode($ajax_arr); $ajax_info = 'ajax_info = '.json_encode($ajax_json).';'; wp_add_inline_script( 'map-scripts', $ajax_info, 'before' ); Do you know the proper way to do it?
If anyone still needs it: wp_add_inline_script( 'map-scripts', 'const ajax_info = ' . json_encode(array( 'ajaxurl' => admin_url('admin-ajax.php'), )), 'before' ); but, it's good practice to use nonce as well for better security: wp_add_inline_script( 'map-scripts', 'const ajax_info = ' . json_encode(array( 'ajaxurl' => admin_url('admin-ajax.php'), 'nonce' => wp_create_nonce('your_nonce_handler'), //the more specific the better 'your_other_item' => "some additional data", //etc.. )), 'before' ); <
stackexchange-wordpress
{ "answer_score": 2, "question_score": 0, "tags": "ajax, wp localize script" }
Wordpress Side Menu Admin Panel Default Order numbers List? Is there a page on the WP documentation someplace that lists the order numbers for the default menu items in the Admin panel on Wordpress? Cannot find anything on line that just gives a clear numbering system such as "Posts = 1" "Media = 5" etc etc. I'm using a plugin that allows to add an order number for placing a custom post on the menu area but it would be handy to know the breakdown of the numbering between the default menu options instead of guessing 1, 5, 10 and 20. I remember seeing something like this before that broke it down but cannot find it at all on Google. Only ways to rewrite the order using functions.php file. Thanks in advance.
Default order: 2 – Dashboard 4 – Separator 5 – Posts 10 – Media 15 – Links 20 – Pages 25 – Comments 59 – Separator 60 – Appearance 65 – Plugins 70 – Users 75 – Tools 80 – Settings 99 – Separator add_menu_page() code reference
stackexchange-wordpress
{ "answer_score": 3, "question_score": 1, "tags": "wp admin, admin menu" }
Missing variable options on add to cart form I would like to display my add to cart doem in a modal but doing so make a part of becomes missing. I have variable products and the select field corresponding to the variation options is missing Here is how i call the Add to cart form in my child theme : <div id="buyModal" class="modal"> <div class="buyModal-content"> <?php woocommerce_template_single_add_to_cart(); ?> <a href="javascript:;" class="close_btn_subsciption">X</a> </div> </div>
I have replaced `woocommerce_template_single_add_to_cart();` by this global $product; if( is_a( $product, 'WC_Product_Variable' ) ){ woocommerce_variable_add_to_cart(); } else { woocommerce_simple_add_to_cart(); } and it worked as i wanted.
stackexchange-wordpress
{ "answer_score": 0, "question_score": 0, "tags": "woocommerce offtopic, hooks" }
Why does the $_GET parameter ?search forward the front-page to the archive/blog page I need the $_GET parameter `?search` for my front-page for a third party plugin. Whenever I enter < I get redirected to the blog/archive page. If I enter < I get redirected to `/some-page`. It appears to be a redirection only for the front-page. Am I missing something from the docs? Steps to reproduce: 1. Go to a WP website and add `?search` to your front-page URL 2. Go to a WP website and add `?search` to a random sub-page URL
`search` is a reserved term, and should not be used as a query variable. The presence of any reserved query variable tells WordPress that the current query must be for something other than the front page, so it interprets it as an an archive query of some sort. The reason you get redirected to the canonical URL on other pages is because being on another page means that there are some other query variables being set that tell WordPress which page to load. These aren't present on the homepage, hence the fallback to just the blog. The parameter doesn't actually do anything though, and hasn't for at least 15 years, but it's still reserved for possible future use.
stackexchange-wordpress
{ "answer_score": 2, "question_score": 0, "tags": "redirect, wp redirect, template redirect" }
Remove Site Logo from Homepage in Twenty Twentyone I am looking for a way not to show the site logo in my homepage (but on all other pages). I can manage to do this only in the nasty way, using css and display none - however, I would like to avoid that the logo is not loaded on the homepage? functions.php? best, Aprilia
I had a quick look at the site-branding template part which handles the rendering of the custom logo on the site header. There's a conditional check on two lines against `has_custom_logo()`, along show title theme mod, which determines, if the custom logo should be rendered or not. Internally `has_custom_logo()` calls `get_theme_mod( 'custom_logo' )` to figure out, if a custom logo has been set. This means, you can use the theme_mod_{$name} filter to change 1) the value of the theme mod and 2) the result of `has_custom_logo()`. As code the above would be something like this, function prefix_disable_logo_on_front_page( $value ) { return is_front_page() ? false : $value; } add_filter('theme_mod_custom_logo', 'prefix_disable_logo_on_front_page');
stackexchange-wordpress
{ "answer_score": 4, "question_score": 1, "tags": "logo, theme twenty twenty one" }
Application Password is not enable by default? So I have this site running under ssl (on siteground). The site is new, the instalation has no more than 2 weeks. I have a working desktop app to connect to my sites, using jwt tokens, but the plugins for this token are old and has not being tested with newer WP versions. So to keep everything up to date, I want to change to this kind of auth. But when I try my site, using get over the rest-api, I don´t get the authentication key according to this. So I think that app passwords are not enable by default. If that is the case, according to that page, I have to add: add_filter( 'wp_is_application_passwords_available', '__return_true' ); somewhere, but I don´t know where to add it. Or is this something else I have to be cheking?
If you want to add that single filter, you can do it in your theme's `functions.php` file. If you'd prefer to keep it out of the theme, you can make it a simple Must Use Plugin. Make a file like `wp-content/mu-plugins/enable-application-passwords.php` with this file content: <?php /** * Plugin Name: Enable Application Passwords * Description: A simple plugin that enables application passwords. */ add_filter( 'wp_is_application_passwords_available', '__return_true' ); This plugin will load automatically with WordPress.
stackexchange-wordpress
{ "answer_score": 4, "question_score": 1, "tags": "rest api" }
Run command "composer install" when activating wordpress plugin I want to run the command : " _composer install --prefer-dist_ " in a wordpress plugin in the hook _register_activation_hook_ to install the require vendors. But when I trying to activating the plugin the error below is generate. Do you have a way to install the required composers when activate the plugin? > Fatal error: Uncaught Error: Class 'App\XXXXX' not found in /../wordpress/wp-content/plugins/my-plugin/my-plugin.php:54 Stack trace: #0 /../wordpress/wp-admin/includes/plugin.php(2300): include() #1 /../wordpress/wp-admin/plugins.php(191): plugin_sandbox_scrape('my-plugin/my-...') #2 {main} thrown in /../wordpress/wp-content/plugins/my-plugin/my-plugin.php on line 54
This is not how this should work. You should not be stunning shell commands from a plugin. The proper way to do this is to install dependencies _before_ bundling for distribution.
stackexchange-wordpress
{ "answer_score": 1, "question_score": 0, "tags": "plugin development, hooks" }
Change plugin descriptions Is it possible to programmatically change the plugin descriptions otherwise provided by the plugin author? The text I've highlighted below is what I'm talking about wanting to change: ![Plugin description]( I often find most plugins have fairly useless descriptions, and it would be useful to use this area to actually describe what we're using the plugin for. None of the plugins (I've tried) that allow you to write notes for other plugins deliver a satisfactory solution. Any ideas?
Yes, there is a filter you can use — `all_plugins`: > `apply_filters( 'all_plugins', array $all_plugins )` > > Filters the full array of plugins to list in the Plugins list table. And here's an example which changes the description of the Akismet plugin: add_filter( 'all_plugins', 'my_all_plugins' ); function my_all_plugins( $all_plugins ) { // the & means we're modifying the original $all_plugins array foreach ( $all_plugins as $plugin_file => &$plugin_data ) { if ( 'Akismet Anti-Spam' === $plugin_data['Name'] ) { $plugin_data['Description'] = 'My awesome description'; } } return $all_plugins; } But yes, the above hook runs on the Plugins _list table_ only.. * _my_all_plugins_ is just an example name. You should use a better one..
stackexchange-wordpress
{ "answer_score": 2, "question_score": 0, "tags": "plugins, php, plugin development" }
What to do about no-global-event-listener warning for "DOM is ready" function? Recently I started to use the ESlint plugin `@wordpress/eslint-plugin/recommended` for developing a WP plugin. The plugin works, but the linter is not happy with it. I rather use vanilla JS than jQuery, and usually replace jQuery's `$.ready()` with the code below: document.addEventListener('readystatechange', (event) => { if (event.target.readyState === 'complete') { ... } }); ESlint says: _Avoid using (add|remove)EventListener with globals. Use`ownerDocument` or `ownerDocument.defaultView` on a node ref instead.eslint(@wordpress/no-global-event-listener)_ I'm somewhat confused what I'm supposed to change here. This is even an example on developer.mozilla.org.
You can probably ignore the rule. A (very) quick search revealed the GitHub PR where this rule was added, and it is only intended for use in React components (emphasis mine): > **It's only meant for React components.** Not sure if there's a way to make it more specific...
stackexchange-wordpress
{ "answer_score": 1, "question_score": 0, "tags": "javascript" }
Automatically replace &nbsp with space In my WooCommerce online store, I frequently copy and paste product description from the OEM webpage. This works well for the most part, however depending on the site, the spaces are sometimes encoded as &nbsp. While this renders just fine in the browser, it does cause issues with text wrapping as the browser appears to see the string as one long word (so the text will inevitably overflow, unless I use word-break which will just break words in the middle). What I'd like to have, ideally, is something that automatically converts these &nbsp to a regular space character. Is this possible, are there any downsides and what are other solutions to consider?
Yes, this is possible. You could do it when saving the post, or just when rendering (which won't change the actual content in the editor). Using `the_content` filter, replacing characters in rendering: function wpse_387560( $content ) { $content = str_replace( '&nbsp;', ' ', $content ); return $content; } add_filter( 'the_content', 'wpse_387560' ); Using the `wp_insert_post_data` hook, replacing them in the content when saving: function wpse_387560( $data ) { $data['post_content'] = str_replace( '&nbsp;', ' ', $data['post_content'] ); return $data; } add_filter( 'wp_insert_post_data', 'wpse_387560' );
stackexchange-wordpress
{ "answer_score": 1, "question_score": 0, "tags": "visual editor" }
Where in the backend can I get information about the current WordPress version I am using? In the dashboard backend admin area, I only see `Update to Wordpress <Latest Version>` in the updates section, and at the bottom, is the `Get Version <Latest Version>` link, but nowhere does it tell me what version of Wordpress I am using in the backend anywhere, before deciding to update to the latest version. Where can I get this information?
It's not right in front of you, but you can obtain this information from the back end. Go to `Tools -> Site Health -> Click on Info tab.` Clicking on the first drop-down ('Wordpress') will get you the current version and the latest.
stackexchange-wordpress
{ "answer_score": 1, "question_score": 0, "tags": "updates, wordpress version" }
Where is admin bar supposed to appear? Where in the page's HTML is the admin bar supposed to appear? On my blog it is added to the footer section, with the result being that there is a gap above it when viewing the blog on mobile phones. (The admin bar has `position:absolute;` at small resolutions, and so does the footer it's contained within.)
It's supposed to be in the footer, and it's positioned with CSS. This is partly because at the time that it was introduced there wasn't a standard hook in themes for placing something at the very top of the page. Instead it is added to the `wp_footer` hook. It's the theme's job to make sure it accounts for the presence of the admin bar, which it can do using the `admin-bar` body class that's added when the bar is present.
stackexchange-wordpress
{ "answer_score": 1, "question_score": 0, "tags": "admin bar" }
How to Delete Posts by title? I have about 2000 titles. How can I automatically delete posts with these titles? For example ![My list](
Like keepkalm said I'd find the list of post IDs from the database: select id, post_title FROM wp_posts where post_title like '%Pharmaton%' or post_title like '%Winston Blu%' or post_title like '%Kefir%' or post_title like '%Tetradox%' or post_title like '%Passport Sco%'; and then use the list of IDs with wp-cli's `wp post delete` which accepts a space-separated list of post IDs: wp post delete 1 2 3 4 (You could also use wp post list to get all titles and IDs in the system, and grep to filter the list down to the posts you want, awk or similar to extract the list of IDs and then pass that all to wp post delete in one go - but this feels safer to do as a semi-manual process since you're deleting things.)
stackexchange-wordpress
{ "answer_score": 1, "question_score": -1, "tags": "functions, wp query, mysql, wp delete post" }
Code snippet to show current php version inside "At a Glance" box in admin Could somebody provide a code snippet which would show current php version inside the "At a glance" box win Wordpress admin? There are plugins but I'd like to do it with a code.
This one will add php version at the bottom of 'at a glance' metabox, where goes wordpress version with active theme name. function update_right_now_text_callback($content){ $php_version = __('PHP version: ') . phpversion(); return $php_version . ' | ' . $content; } add_filter( 'update_right_now_text', 'update_right_now_text_callback' ); If you want to add it as content list item for some reason, this snippet work: function dashboard_glance_items_callback( $data = [] ) { $data[] = 'PHP version: ' . phpversion(); return $data; } add_filter( 'dashboard_glance_items', 'dashboard_glance_items_callback' );
stackexchange-wordpress
{ "answer_score": 1, "question_score": 0, "tags": "php, code" }
How can I specify the post status of an untrashed post? By default Wordpress assigns the `draft` status to a post that has been untrashed. I would like to assign the `pending` status to posts that are untrashed. This seems to be possible with wp_untrash_post_status, but I can't seem to find the proper way to use it. I have this in my code : add_action( 'untrash_post', 'my_function' ); function my_function( $post_id ) { apply_filters( 'wp_untrash_post_status', 'pending', $post_id, 'pending' ); } What am I doing wrong ?
I think for your purpose `wp_untrash_post_status` filter will be enough. Will work with single and multiple posts restore. > Filters the status that a post gets assigned when it is restored from the trash (untrashed). add_filter( 'wp_untrash_post_status', 'change_untrash_post_status'); function change_untrash_post_status($status){ return 'pending'; } P.S. `apply_filters`hook is used to call callback functions created by us, like a snippet above, so `apply_filters` will fire a callback function which we added with `add_filter` (As I understood wp logic right)
stackexchange-wordpress
{ "answer_score": 1, "question_score": 0, "tags": "filters, actions, post status, trash" }
Remove password protected posts from default RSS feed I want to remove all password protected posts from the default RSS feed. Unfortunately I was only able to find one code example, but it looks like something is missing. function rss_filter_protected( $query ) { if ( $query->is_feed ) { add_filter( 'posts_where', 'rss_filter_password_where' ); } return $query; } add_filter( 'pre_get_posts','rss_filter_protected' ); As soon as I save this function the RSS feed displays all post types (attachments, etc.) that are registered to the system instead of only published posts. If possible I would like to solve this without an additional plugin. Thanks
Here's the filter to exclude password protected posts from the default RSS feed: function rss_filter_protected( $query ) { if ( $query->is_feed ) { $query->set( 'has_password', false ); } return $query; } add_filter( 'pre_get_posts','rss_filter_protected' );
stackexchange-wordpress
{ "answer_score": 2, "question_score": 0, "tags": "posts, rss, password" }
how use ajax to custom page template i'm completely new to WordPress ajax . i'm working on new custom template . there is a custom form which stores data on custom database . for search section i need to use Ajax . then i found one way , that is create new template page which called json.php for example . it echoing the data in json formating . is that way correct way for using ajax ? what's the better way ? anyone can help me please ?
> then i found one way , that is create new template page which called json.php for example . it echoing the data in json formating . **No.** You should never make direct requests to php files inside a theme or plugin, and you don't need to create page templates to handle AJAX requests. If you need to handle a form, make the request to the same page that served the form and inspect the POST/GET variables. _If you need to make an AJAX request using javascript_ , do it to the REST API. You can register an endpoint URL with a pretty url that will respond with JSON that can be easily processed in javascript. When registering the endpoint, you tell it the name you want for the URL, e.g. `/wp-json/hossein/v1/searchdatabase`, and you tell it a function to call when it's used. That function is where you do the searching of your database, and you return the data you want to send to the browser.
stackexchange-wordpress
{ "answer_score": 0, "question_score": 0, "tags": "theme development, ajax, json" }
Loading two post layouts for the same post with different url How can I show the same post content with two different post layouts on two different URLs? For example
You can pass the layout name as a `GET` parameter and then change the design based on that. So your URL should be something like this: Now in your `single.php` file or whatever file that renders the template, you can do this check to show the different layouts: <?php // If the header is different two, you should call for different headers too, // Check this for showing different headers // if( isset( $_GET['layout'] ) && $_GET['layout'] == 'layout-1' ) { // Show the design for for the first layout } else if ( ... ) { // Show the design for other layouts }
stackexchange-wordpress
{ "answer_score": 1, "question_score": 0, "tags": "php" }
How is $current_page passed in woocommerce_account_orders function? The woocommerce function `woocommerce_account_orders($current_page)` has 1 parameter called `$current_page`. The function is called via `woocommerce_account_orders_endpoint` via the following hook - `add_action( 'woocommerce_account_orders_endpoint', 'woocommerce_account_orders' );` However, in the above hook, `$current_page` is not passed as an argument in the function. How is `$current_page` passed to `woocommerce_account_orders()` function?
Action hooks can pass variables do hooked callback functions. For example: do_action( 'my_custom_action', $a_variable ); For that action, any callback function has access to `$a_variable`: add_action( 'my_custom_action', 'my_custom_function' ); function my_custom_function( $a_variable ) { // etc. } The `woocommerce_account_orders_endpoint` action hook is defined like this: do_action( 'woocommerce_account_' . $key . '_endpoint', $value ); Where `$value` would be passed to `woocommerce_account_orders()` which uses it as the `$current_page` argument.
stackexchange-wordpress
{ "answer_score": 1, "question_score": 0, "tags": "functions, wp query" }
AWS Wordpress Install - pages/posts 404 on restart until updating permalinks I have launched a WordPress instance on AWS using elastic beanstalk. Every now and then AWS restarts my server and when it does all my pages/posts links switch to returning 404. I can fix this by 1. logging into my instance through `/wp-login` 2. going to the `/options-permalinks` page 3. hitting [save changes] (without making any changes) I am wondering if there is something I can add to my wp-config.php (or similar) to do the same work at launch every time so that I don't have a broken website randomly sitting there waiting for me to notice? Any help would be amazing.
This answer was based off the comment from @Rup on the question. I needed to add a `.htaccess` file to my source. I did this with the default contents: # BEGIN WordPress RewriteEngine On RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] # END WordPress which I got from here: < Adding this at the root of my deploy package (uploaded source) and the problem went away.
stackexchange-wordpress
{ "answer_score": 1, "question_score": 1, "tags": "permalinks, htaccess, 404 error, wp config" }
Why is the "Additional CSS" section missing in my theme Customizer? Since upgrading to WordPress 5.7.1, the "Additional CSS" option seems to be missing in Customizer at Appearance -> Customize on various WordPress websites I look after with various different themes including Astra and GeneratePress. I have updated the plugins and themes to the latest versions but this has not helped. I have tried temporarily changing to a default theme (Twenty Twenty-One) but this does not help either. I realise I can add custom CSS via a plugin and possibly via a child theme but what happened to this option? Update: This option appears as expected in a fresh install of WordPress 5.7.1 with the default Twenty Twenty-One theme.
I finally found the answer myself after a year and a half. I'm not sure how this value was changed but changing: define('DISALLOW_UNFILTERED_HTML', true); in `wp-config.php` back to: define('DISALLOW_UNFILTERED_HTML', false); has fixed the problem.
stackexchange-wordpress
{ "answer_score": 3, "question_score": 3, "tags": "css, theme customizer, wp config" }
Does WordPress require port 25 for email? My host is about to block port 25 and I'm unsure if WordPress requires port 25 to send emails like password reset, user registration, notifications etc...
WordPress sends emails via the `wp_mail()` method, which, by default, needs port 25 to be enabled in your `php.ini` settings: > For this function to work, the settings `SMTP` and `smtp_port` (default: 25) need to be set in your php.ini file. You will have to change this setting if you would want to send mails via another port.
stackexchange-wordpress
{ "answer_score": 0, "question_score": 0, "tags": "email" }
Get user meta for only the keys with a certain prefix There is a list of meta keys with the prefix my_theme, these are updated by the user. My problem is how to get_user_meta for only the keys with my_theme prefix. Tried a wildcard, didn't work. get_user_meta( $user_id, 'my_theme%', true );
There is no native WordPress function to achieve this but you can get all meta keys for a given user ID and then filter the ones you need. Here is how to do that for a given `$user_id`. First you get all the user meta entries: $all_meta = get_user_meta($user_id); As you can see in the get_user_meta() docs, since we are leaving the `$key` argument blank, this will contain an array with all the meta entries for the given user, including the ones you are looking for. Then you may filter the resulting array with the PHP array_filter() function. $only_my_theme_meta = array_filter($all_meta, function($key){ return strpos($key, 'my_theme') === 0; }, ARRAY_FILTER_USE_KEY); Also note that each element is again an array, in some cases you may want to dereference the resulting array in order to take only the first index of each result: $dereferenced_array = array_map(function( $a ){ return $a[0]; }, $only_my_theme_meta);
stackexchange-wordpress
{ "answer_score": 3, "question_score": 0, "tags": "user meta" }
Display WordPress archive template page in 3 columns and not 1 column I'm trying to achieve the following: ![enter image description here]( Currently WordPress display them in 1 column: ![enter image description here]( Is there code I can Add to the template file, to display all the blog post in this grid layout
Without knowing the structure, class names, ids etc. it would be impossible to give you an answer that would help. But lets say that the structure is ul>li*6 <ul> <li>...</li> <li>...</li> <li>...</li> <li>...</li> <li>...</li> <li>...</li> </ul> The must basic of css that would create such a design would be ul { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-gap: 20px 50px; } You would need to adjust the gap im sure, but this is a good starting point > EDIT Ok so following your answer with the image the css target would be `.page-content`, but that could target other elements with the same class. Try looking for a parent with a unique class or id that you can use to make sure your css only target that specific element
stackexchange-wordpress
{ "answer_score": 0, "question_score": 0, "tags": "php, templates, archives" }
Increment integer field in database when WHERE needs to be dynamic I have a database column called "upvotes". I have another column called "userid". I would like to increment the value in the "updates" column where the userid matches the dynamic variable I'm providing. Here's my attempt: $results = $wpdb->query("UPDATE points SET upvotes = upvotes + 1 WHERE userid= %d", $theDynamicUserID); That is giving the following error: [You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near &#039;%d&#039; at line 1]<br /><code>UPDATE points SET upvotes = upvotes + 1 WHERE userid= %d</code> EDIT: These Stack Exchange posts seem to hint that it's possible but I can't get the syntax right: < <
Just noticed that you are missing a prepare. Your code should look like this $results = $wpdb->query($wpdb->prepare('UPDATE points SET upvotes = upvotes + 1 WHERE userid= %d', $theDynamicUserID));
stackexchange-wordpress
{ "answer_score": 2, "question_score": 0, "tags": "wpdb, sql" }
how to get users with usermeta include array of an array i have a user_meta for users that them is array like below: user_saved_posts = [31289,31482,27641] and i want to get users that their user_meta include an item of an array like below: goal_posts = [31289,31422,77641,41289,21482,17641] if user have an item of goal_posts array must returned them. i use below code but this code worked if i have a value for search in user_meta $args = [ 'meta_query' => [ [ [ 'key' => 'saved_posts', 'value' => sprintf(':"%s";', 31289), 'compare' => 'LIKE' ] ] ] ]; get_users($args);
I solved my problem in another way( **WPDB** ). I wrote a query for this purpose like below: $goal_posts = [31289,31422,77641,41289,21482,17641]; $sql = "SELECT * FROM wp_usermeta WHERE (meta_key = 'saved_posts') AND ("; $sql .= implode(" OR ", $goal_posts); $sql .= ') GROUP BY user_id'; global $wpdb; $users = $wpdb->get_results($sql);
stackexchange-wordpress
{ "answer_score": 0, "question_score": 0, "tags": "user meta, array" }
Match tag names with form titles I am trying to match tag names with form titles to fetch the correct form into the current post, to subscribe to new posts tagged with the current posts tag. I only have 1 tag assigned per post. The code for categories works well, and I tried to transcribe it for tags, but I am afraid there are syntax errors in the code, because it does not work. How do I write the correct code? add_shortcode( 'subscribe-to-tag', function() { global $wpdb, $post; $the_tag = get_the_tags( $post->ID ); $tag_name = $the_tag[0]->tag_name; $id = $wpdb->get_var($wpdb->prepare("SELECT ID FROM wptq_forms WHERE name = '{$tag_name}';")); if (is_null($id)) { return ''; } return do_shortcode( '[newsletter_form id="' . intval( $id ) . '"]' ); } );
I don't see PHP syntax errors (like unwanted brackets) in your code, but there are two WordPress-specific issues that need to be fixed: 1. Note that `wpdb::prepare()` needs one or more placeholders (e.g. `%s` for strings and `%d` for numbers) and the replacement value for each placeholder. So in your case, the correct `$wpdb->prepare()` would be: $wpdb->prepare( "SELECT ID FROM wptq_forms WHERE name = %s", $tag_name ); 2. `get_the_tags()` returns an array of term objects on successful requests, and each object is a `WP_Term` instance which does _not_ have a `tag_name` property, only `name`. Therefore `$the_tag[0]->tag_name` should instead be `$the_tag[0]->name`.
stackexchange-wordpress
{ "answer_score": 1, "question_score": 0, "tags": "mysql, forms, tags" }
$wpdb->prepare was called incorrectly when inserting multiple records This works: $values = array(); foreach ( $_POST as $key => $value ) { $values[] = $wpdb->prepare( "(%d,%s,%s)", $post_id, $key, $value ); } $query = "INSERT INTO {$table} (post_id, meta_key, meta_value) VALUES "; $query .= implode( ",\n", $values ); $wpdb->query( $wpdb->prepare( "$query", $values ) ); But it throws this notice: > PHP Notice: wpdb::prepare was called **incorrectly**. The query does not contain the correct number of placeholders (0) for the number of arguments passed (3). How can I avoid the Notice?
Well, you don't need the second `$wpdb->prepare()` and just do `$wpdb->query( $query );`. The reason is because the `$query` does not contain any placeholders just as stated in the notice; only the items in `$values` contain the placeholders, but you already prepared them in the `foreach`. Additionally, be sure to run the `query()` only if the array `$values` is not empty.
stackexchange-wordpress
{ "answer_score": 1, "question_score": 0, "tags": "wpdb" }
Show latest posts in a plain HTML website custom widget I have a plain HTML website with WP in a subfolder (/blog). I need to display latest posts from /blog into the plain HTML webpage. Is there a PHP script or some kind of widget to achieve this? Thanks!
Perhaps you could consider using WP REST API to get the posts with a XMLHttpRequest in javascript instead of trying to get php work on .html file(s). From the REST handbook, > The WordPress REST API provides an interface for applications to interact with your WordPress site by sending and receiving data as JSON (JavaScript Object Notation) objects. And > It provides data access to the content of your site, and implements the same authentication restrictions — content that is public on your site is generally publicly accessible via the REST API, while private content, password-protected content, internal users, custom post types, and metadata is only available with authentication or if you specifically set it to be so.
stackexchange-wordpress
{ "answer_score": 2, "question_score": 0, "tags": "php, widgets, html" }
Filter posts by month (dropdown) Good day! I am building this Blog Archive page and it requires filtering of posts by months, using dropdown. Any idea how to do this? ![enter image description here]( <?php // what goes here printf('<option value=".%s">%s</option>', `what_here`, `what_here`); ?>
You can try to use wp_get_archives() function. Example from this link: <select name="archive-dropdown" onchange="document.location.href=this.options[this.selectedIndex].value;"> <option value=""><?php esc_attr( _e( 'Select Month', 'textdomain' ) ); ?></option> <?php wp_get_archives( array( 'type' => 'monthly', 'format' => 'option', 'show_post_count' => 1 ) ); ?> </select>
stackexchange-wordpress
{ "answer_score": 0, "question_score": 0, "tags": "posts, filters, dropdown" }
Change the Sender(not From) on wp_mail() function I'm using the Post SMTP Plugin, but I manually send email via the `wp_mail()` function. The gmail client shows the correct From:, but when I switch to outlook or another email client, shows the different Sender: (the one that has been set up in the Post SMTP From: setting) I have tried these filters, but only the `wp_mail_from_name` works: add_filter( 'wp_mail_from', create_function('', 'return sanitize_email("[email protected]"); ') ); add_filter( 'wp_mail_from_name', create_function('', 'return "Test Testov"; ') ); How can I force-change that sender? EDIT: Paul G., in Gmail I see this: `from: Correct Name <[email protected]>` and in another email client this: `From: Correct Name` `Sender: [email protected]` <\---- This is wrong.
First Disable PostSMTP plugin and delete if not used anymore it should cleanup. Then in functions.php add the following lines // Function to change email address function sender_email( $original_email_address ) { return '[email protected]'; } // Function to change sender name function sender_name( $original_email_from ) { return 'Tim Smith'; } // Hooking up our functions to WordPress filters add_filter( 'wp_mail_from', 'sender_email' ); add_filter( 'wp_mail_from_name', 'sender_name' ); Taken from : WPBeginner
stackexchange-wordpress
{ "answer_score": 2, "question_score": 0, "tags": "email, wp mail" }
Add_action not working in required file of functions.php I am trying to separate a part of my code from the functions.php file to make it easier to understand and maintain. So I want to put all my "ajax" related code in a different PHP file. Here is the require in my functions.php file: require_once( __DIR__ . '/includes/ajax.php'); And here is some of the content of the ajax.php file: function theme_enqueue_ajax(){ wp_localize_script( 'myJSScript', 'ajaxUrl', array( 'url' => admin_url( 'admin-ajax.php' ) ) ); } add_action( "wp_enqueue_scripts", "theme_enqueue_ajax"); If I put the code from ajax.php directly in my functions.php file, everything works fine, but once I move it to ajax.php the ajaxUrl variable doesnt exist anymnore.
Of course there can be many reasons, but if you require `ajax.php` in functions.php **above** the hook with `wp_enqueue_script( 'myJSScript' ...);` \- it will not work. > wp_localize_script() > Works only if the script has already been added. function theme_enqueue_ajax(){ //try to add wp_enqueue_script( 'myJSScript' ...); here wp_localize_script( 'myJSScript', 'ajaxUrl', array( 'url' => admin_url( 'admin-ajax.php' ) ) ); } add_action( "wp_enqueue_scripts", "theme_enqueue_ajax");
stackexchange-wordpress
{ "answer_score": 0, "question_score": 1, "tags": "php, theme development" }
Access category within rss2_head hook? Can I access the current category of a category feed with the `rss2_head` hook to add for example itunes tags? Lets say I have `wordpress.com/catx/feed` I want to get `acf field elements` associated with this specific category. Here is what I am trying to accomplish: function itunes_head() { $category = get_the_category(); $categories = get_category(); global $post; var_dump($categories); echo print_r($post); echo $categories; echo $category; } add_filter( 'rss2_head', 'itunes_head' ); I am assuming that I somehow can retrieve the `catx` category here?
I think you can just fetch it from the global query using get_queried_object: function itunes_head() { if ( is_category() ) { $category = get_queried_object(); if ( isset( $category ) ) { $acf_category = 'category_' . $category->term_id; $field = get_field( 'my_category_field', $acf_category ); } } }
stackexchange-wordpress
{ "answer_score": 1, "question_score": 0, "tags": "functions, categories, advanced custom fields, rss, feed" }
What is cookie "U" from domain ".adsymptotic.com" found on the WordPress page? On a landing page of our WordPress site, I find a cookie "U" from domain ".adsymptotic.com" as the image below shows. Could you please let me know where this comes from because searching the project folder doesn't show results for this cookie? ![enter image description here](
It's from LinkedIn. It's listed here: <
stackexchange-wordpress
{ "answer_score": 4, "question_score": 2, "tags": "cookies" }
Changing search slug from + to - (hyphen) I've been fiddling with this all day, where I'm trying to change my search function from website.com/s?this%20is%20an%20example to website.com/tag/this-is-an-example to no avail. I have this code in my snippets: /** * Change search page slug. */ function wp_change_search_url() { if ( is_search() && ! empty( $_GET['s'] ) ) { wp_redirect( home_url( "/tag/" ) . urlencode( get_query_var( 's' ) ) ); exit(); } } add_action( 'template_redirect', 'wp_change_search_url' ); This is theoretically supposed to do what I want it to and I'm so close to solving this. But my urls now come out as /tag/this+is+an+example/ instead of /tag/this-is-an-example/ Any ideas? Any help is very much appreciated!
PHP's `urlencode()` function replaces spaces with `+`s, so that's why that's happening for you. WordPress provides the `sanitize_title()` function, which is used (among other things) to generate a post slug from the post's title. /** * Change search page slug. */ function wp_change_search_url() { if ( is_search() && ! empty( $_GET['s'] ) ) { wp_redirect( home_url( "/tag/" ) . sanitize_title( get_query_var( 's' ) ) ); exit(); } } add_action( 'template_redirect', 'wp_change_search_url' );
stackexchange-wordpress
{ "answer_score": 2, "question_score": 1, "tags": "search, slug" }
How to check parent & child category I just want to display a section in the parent category. And I want to display another section in the child category. How to do it? if ( is_category() ) { get_template_part( 'template-parts/banner/tab-1' , 'xcde' ); } else { get_template_part( 'template-parts/banner/tab-2' , 'xcde' ); ]
On your category template you can use `get_queried_object()` to get the current `WP_Term` object. From that you can check the `parent` property, which is 0, if it is a parent, or some integer, if it is a child term as it returns the parent term's ID. $current_term = get_queried_object(); if ( $current_term->parent ) { // child term } else { // parent term }
stackexchange-wordpress
{ "answer_score": 0, "question_score": 0, "tags": "categories" }
how to use media library hello i want to use wordpress media library . i want to user see the library when click on button i made and choose a picture and i get a link of picture wich user choosed . actualy i want to learn how we should use this library <button type="button" class="button button-primary">choose picture</button> i will be so happy to you guys to answer or link some docs to study them.
Take a look at wp_enqueue_media funciton. It enqueues all scripts, styles, settings, and templates necessary to use all media JS APIs. Then you can execute wp.media function: var button = document.querySelector('.button'); button.addEventListener('click', function(e) { e.preventDefault(); var frame = wp.media({ title: 'Frame title', multiple: false }); frame.on('select', function () { var attachment = frame.state().get('selection').first().toJSON(); alert(attachment.url); }); frame.open(); }); More detailed guide: <
stackexchange-wordpress
{ "answer_score": 3, "question_score": 1, "tags": "uploads, media library" }
Wordpress custom fields feature is missing in my installation I cannot see the option to enable WordPress custom fields, and no, I have not installed or used Advanced Custom Fields Plugin for WordPress. I also disabled my functions.php (just in case) but with no luck. How can I see custom fields to enable it?
I mark this as answered. Go to any page or post and click on edit and follow the arrows below. > By default, the custom fields option is hidden on the post edit screen. To view it, you need to click on the three-dot menu at the top-right corner of the screen and select ‘Options’ from the menu. Reference: this site ![enter image description here](
stackexchange-wordpress
{ "answer_score": 1, "question_score": 0, "tags": "custom field" }
How to put the day of the function get_the_modified_date ('l', $post_id') with the first capital letter? How to put the day of the function get_the_modified_date ('l') with the first capital letter? echo get_the_modified_date ('l', $post_id'); The result is like this: "sunday I want so: "Sunday" Since ja I thank you
'l' will give you lowercase representation of the day. You can wrap it in `ucfirst` (and beware that you have a typo): echo ucfirst( get_the_modified_date ('l', $post_id) ); or you can use css, if you can target it and it's the only word in there: .day { text-transform: capitalize; }
stackexchange-wordpress
{ "answer_score": 0, "question_score": 0, "tags": "php" }