Skip to main content

Home/ Wordpress/ Group items tagged contents

Rss Feed Group items tagged

Vernon Fowler

WordPress 3.5 And WPDB Prepare - 0 views

  • “Warning: Missing argument 2 for wpdb::prepare()” How do I fix it? If you are seeing an error after upgrading to WordPress 3.5 that says something like this, you need to upgrade your theme. We have fixed this with all of our themes and they are ready to download and re-install from your account page. What if I have customized my theme’s code and don’t want to upgrade? For those of you who have customized your theme’s code and don’t want to do a full upgrade, you’ll need to take a look at the warning message. Here’s a sample error we have fixed from the Biznify Theme: Warning: Missing argument 2 for wpdb::prepare(), called in /home/mintthem/public_html/demo/wp-content/themes/Biznify/products-pagetemplate.php on line 39 and defined in /home/mintthem/public_html/demo/wp-includes/wp-db.php on line 990 Step 1: Open the file it tells you to open. In this case, it is products-pagetemplate.php and Go to the line it refers to. In this case it is line 39 Step 2: Find the code that looks like this: $wpdb->prepare(“SELECT price FROM $table_name WHERE item_number = ‘$item_number’;”) Step 3: Replace $item_number with %d Step 4: Add $item_number after the last quotation mark. Also, make sure to put a comma before it. (notice the comma before $item_number below) Example: $wpdb->prepare(“SELECT price FROM $table_name WHERE item_number = ‘%d‘;”, $item_number)
  • $price = $wpdb->get_var($wpdb->prepare(“SELECT price FROM $table_name WHERE item_number = ‘%d‘;”, $item_number));
  • WordPress 3.5 And WPDB Prepare
Pablo Pacheco Karzin

WordPress › Support » Get full text for page and strip images - 5 views

  • strip_tags(get_the_content(), '<p><a><h2><blockquote><code><ul><li><i><em><strong>')
    • Pablo Pacheco Karzin
       
      Get only text from wordpress content
Vernon Fowler

WordPress › WP Super Cache « WordPress Plugins - 1 views

  • After you have enabled the plugin, look for the file "wp-content/cache/.htaccess". If it's not there you must create it. It should read: # BEGIN supercache <IfModule mod_mime.c> <FilesMatch "\.html\.gz$"> ForceType text/html FileETag None </FilesMatch> AddEncoding gzip .gz AddType text/html .gz </IfModule> <IfModule mod_deflate.c> SetEnvIfNoCase Request_URI \.gz$ no-gzip </IfModule> <IfModule mod_headers.c> Header set Cache-Control 'max-age=3, must-revalidate' </IfModule> <IfModule mod_expires.c> ExpiresActive On ExpiresByType text/html A3 </IfModule> `` # END supercache
Vernon Fowler

How to Optimize Videos for SEO [an Interview With Joost de Valk] - 2 views

  • Video SEO is mostly a technical thing, assuming you already have video content. It offers absolutely great opportunities because it allows you to appear in the search result pages with a video snippet, which includes an image and therefore attracts far more attention and clicks then a "normal" search result.
  • What does your Video SEO plugin actually do? It goes through a series of steps, as soon as you update a post that you put a video in: It recognises the video and, depending on whether it's a self-hosted video or hosted on a site like Vimeo, determines what to do; If it's for instance hosted on Vimeo, it'll retrieve the video details from the Vimeo API; It'll determine which thumbnail to attach to the video and what the duration of the video is; It then saves all this metadata so that you get a video snippet in the snippet preview AND a video XML sitemap entry is generated for the post / page. It does all that on the fly, as soon as the plugin is activated you only have to add a video to a post and it'll automatically recognize it and go through those steps for you.
  • if you are serious about video production for your WordPress site and stand to profit from increased rankings and click-throughs, you should strongly consider purchasing Video SEO
  • ...1 more annotation...
  • If on the other hand you are a "hobby" blogger or are not profiting from your site's traffic, the plugin may not be a viable option. If you do not stand to profit from the investment, $89 is a considerable sum of money to fork out.
Vernon Fowler

Additional Settings for Managing Your WordPress Network - For Dummies - 2 views

  • the Sites page is where you create and delete sites and make edits to properties of the sites within your network. The Sites page also lists all the sites within your network and basic statistics about the path, including when updates occurred.
  • The management options for network sites are as follows: Edit: A link to the Edit Site page where you can change aspects of each site. Dashboard: A link to the Dashboard of the site. Deactivate: Click to mark the site for deletion in your network; a message displays in a pop-up window that asks you to confirm site deactivation. Click the Yes button to confirm. This action can be reversed by revisiting the Sites page and clicking the Activate link that appears underneath the site pathname. Archive: Click to archive the site in your network. This action can be reversed by revisiting the Sites page and clicking the Unarchive link beneath the site’s pathname. Spam: Clicking this link marks the site as spam and blocks the users from being able to access the dashboard.
Vernon Fowler

WordPress › WP Glossary « WordPress Plugins - 3 views

  • Display and link to glossary with slug 'seo' [glossary slug='seo'] Auto search word for matching glossary term (e.g. 'seo') [glossary]SEO[/glossary] Apply glossary term with slug 'seo' to post content 'search engine optimisation' [glossary slug='seo']search engine optimisation[/glossary]
  • [glossary]SEO[/glossary]
Luciano Ferrer

ImageInject - 0 views

  •  
    "ImageInject, previously called WP Inject, allows you to easily insert photos and images into your WordPress posts. Search among many thousands of free creative commons images for any keywords of your choice, then pick the best of them for the article you are working on and insert them into your post or set them as featured image! Best of all it is super fast: Injecting an image only takes 3 clicks in total!"
Luciano Ferrer

Aesop Story Engine - 0 views

  •  
    "Aesop Story Engine is a suite of open-sourced tools and components that empower developers and writers to build feature-rich, interactive, long-form storytelling themes for WordPress. At the heart of ASE are the suite of storytelling components, which are created on the fly while crafting posts within WordPress."
Luciano Ferrer

Teoría del Átomo según Cantinflas - 0 views

  •  
    ¿Didáctica del sentido común?
  •  
    ¿Didáctica del sentido común?
anonymous

Is Your Website Design Suitable for Visually Impaired Users ? - 0 views

  •  
    Making your site accessible to general visitors is not enough. You also need to ensure that disabled persons can access your site. To fulfill this goal, you need to pay attention to certain factors.
Vernon Fowler

Child Themes « WordPress Codex - 0 views

  • A child theme resides in its own directory in wp-content/themes. The scheme below shows the location of a child theme along with its parent theme (Twenty Twelve) in a typical WordPress directory structure:
  • This directory can contain as little as a style.css file, and as much as any full-fledged WordPress theme contains: style.css (required) functions.php (optional) Template files (optional) Other files (optional)
  • @import url("../twentytwelve/style.css");
  • ...4 more annotations...
  • Note on the @import rule There must be no other CSS rules above the @import rule. If you put other rules above it, it will be invalidated and the stylesheet of the parent will not be imported.
  • Unlike style.css, the functions.php of a child theme does not override its counterpart from the parent. Instead, it is loaded in addition to the parent’s functions.php. (Specifically, it is loaded right before the parent’s file.)
  • But, when creating child themes, be aware that using add_theme_support('post-formats') will override the formats as defined by the parent theme, not add to it.
  • A child theme can override any parental template by simply using a file with the same name.
vyagreshwar vadrevu

Best content in Wordpress | Diigo - Groups - 0 views

  •  
    Everything to do with the Open Source blogging software Wordpress. Templates, plugins, hacks, whatever you find suitable.
Luciano Ferrer

15 Great FeedBurner Alternatives - 7 views

  •  
    "Today I'd like to show you the best options available to you for delivering your articles to readers and analysing your traffic. I'm sure you'll find it useful. I've divided the resources into different sections such as feed services, newsletter solutions and WordPress plugins. Most of the resources offer similar features; I have simply categorised the options in this way to make it easier for you to make comparisons."
  •  
    fancy tools! You have quite a help on these. I'd definitely want to try some of these as I do content marketing.
alby clm

Wordpress incredible plugins and themes package - 11 views

  •  
    Get all the tools you need to transform you rblog into an ecommerce, a link directory, a community website, a Cms, an autoblog, an auction website, a portfolio, mobile browser ready, but not only, with WpBox.info you can protect your blog fromm spam and virus, increase revenue from adsense and affiliate, improve your Seo rankings, manage links, content and database and more... Over 600Mb filled with over 600 plugins and over 170 themes are waiting for you. This cost like an ebook but is not a single ebook unusefull, you can setup the new blog that you have in mind in seconds with WpBox.info trust me
« First ‹ Previous 201 - 220 of 283 Next › Last »
Showing 20 items per page