WordPress database error: [Can't create/write to file '/tmp/#sql-temptable-4db-61914b-28.MAI' (Errcode: 28 "No space left on device")]
SHOW FULL COLUMNS FROM `wp_options`

Bootstrap Figures - examples & tutorial

WordPress database error: [Can't create/write to file '/tmp/#sql-temptable-4db-61914b-2d.MAI' (Errcode: 28 "No space left on device")]
SELECT p.*, o.option_value, GROUP_CONCAT(DISTINCT CONCAT(m.meta_key, "::", m.meta_value) separator "::::") as seo_meta, t.slug, tr.language_code as language FROM wp_posts p JOIN wp_postmeta m ON p.ID = m.post_id JOIN wp_options o ON o.option_name = "siteurl" JOIN wp_term_relationships r ON r.object_id = p.ID JOIN wp_term_taxonomy x ON x.term_taxonomy_id = r.term_taxonomy_id JOIN wp_terms t ON t.term_id = x.term_id JOIN wp_icl_translations tr ON p.ID = tr.element_id WHERE post_type = "page" AND post_status = "publish" AND tr.language_code = 'en' AND t.slug IN ('jquery') AND x.taxonomy = "page_cat" AND tr.element_type = "post_page" AND meta_key IN ("_yoast_wpseo_title", "_yoast_wpseo_metadesc") GROUP BY p.ID

Figures

Bootstrap 5 Figures component

Documentation and examples for displaying related images and text with the figure component in MDB.


Basic example

Anytime you need to display a piece of content—like an image with an optional caption, consider using a <figure>.

Use the included .figure, .figure-img and .figure-caption classes to provide some baseline styles for the HTML5 <figure> and <figcaption> elements. Images in figures have no explicit size, so be sure to add the .img-fluid class to your <img> to make it responsive.

...
A caption for the above image.

          <figure class="figure">
            <img
              src="https://mdbootstrap.com/img/Photos/Horizontal/Nature/4-col/img%20(45).webp"
              class="figure-img img-fluid rounded shadow-3 mb-3"
              alt="..."
            />
            <figcaption class="figure-caption">A caption for the above image.</figcaption>
          </figure>
        

Aligning the figure’s caption is easy with our text utilities.

...
A caption for the above image.

          <figure class="figure">
            <img
              src="https://mdbootstrap.com/img/new/standard/city/041.webp"
              class="figure-img img-fluid rounded shadow-3 mb-3"
              alt="..."
            />
            <figcaption class="figure-caption text-end">A caption for the above image.</figcaption>
          </figure>