Title: WP Cache Block
Author: prettyboymp
Published: <strong>13 يونيو، 2010</strong>
Last modified: 14 فبراير، 2011

---

البحث عن الإضافات

هذه الإضافة **لم يتم تحديثها وتجربتها لأكثر من 3 إصدارات ووردبريس رئيسية**. قد لا
تكون خاضعة للصيانة أو تقدم الدعم والمساعدة بالوقت الحالي وقد تكون بها مشاكل في التوافق
عند إستخدامها مع إصدارات حديثة من ووردبريس.

![](https://s.w.org/plugins/geopattern-icon/wp-cache-block.svg)

# WP Cache Block

 بواسطة [prettyboymp](https://profiles.wordpress.org/prettyboymp/)

[تنزيل](https://downloads.wordpress.org/plugin/wp-cache-block.zip)

 * [تفاصيل](https://ar.wordpress.org/plugins/wp-cache-block/#description)
 * [المراجعات](https://ar.wordpress.org/plugins/wp-cache-block/#reviews)
 *  [التنصيب](https://ar.wordpress.org/plugins/wp-cache-block/#installation)
 * [التطوير](https://ar.wordpress.org/plugins/wp-cache-block/#developers)

 [الدعم](https://wordpress.org/support/plugin/wp-cache-block/)

## الوصف

Adds ability to globally cache certain segments of code.

WP Cache and some other caching plugins work amazingly well, however, their benefits
are limited in sites with a large percentage of logged in users. While working on
these projects, we, Voce Connect, found the need for a better caching solution. 
We needed to easily cache rendered portions of the theme that were the same for 
each user without caching other portions that may have user specific content. The
solution was to come up with a plugin that could be easily integrated into a theme
to help cache these blocks of content.

Requirements:

 * WordPress 2.8 or higher
 * “php5” – I’m a big proponent of dropping the php4 compatibility of WordPress 
   due to the improved OO support. Because of this, I prefer to write my plugins
   in php5 form in hopes to help push the community along.

## التنصيب

 1. Upload `wp-cache-block` folder to the `/wp-content/plugins/` directory
 2. Activate the plugin through the ‘Plugins’ menu in WordPress
 3. Add cache block areas to the slower parts of your theme. See below.

Adding a cache block only requires wrapping the section of content you want to cache
in a couple of lines of code. The key is make sure that the cache block is uniquely
idtentified based on the content it will render.

For simple content that is the same on every page:

    ```
    <?php if(wp_cacheblock_start('my-content')) : ?>
    //the content you want to cache
    <?php endif; wp_cacheblock_end(); ?>
    ```

Content that varies based on page, user, etc, will need to use key builders. Key
builders are simple classes that help make a unique key for the block of content
based on different parameters.

For caching the_loop in index.php you’ll need to add a Query_Unique_Key_Builder 
which creates a key based on passed in query_var keys:

    ```
    <?php $key_builders = array(new Query_Unique_Key_Builder( array ('paged') ) );
    <?php if(wp_cacheblock_start( 'index-loop', array('key_builders'=> $key_builders) ) ) : ?>
      //the post loop
    <?php endif; wp_cacheblock_end(); ?>
    ```

To cache the comment output, you can use the Pending_Comment_Unique_Key_Builder 
so users with pending comments will get their own cached page.

    ```
    <?php $key_builders = array( new Pending_Comment_Unique_Key_Builder() );
    <?php if(wp_cacheblock_start('index-loop', array('key_builders'=> $key_builders) ) ) : ?>
      //the comment loop
    <?php endif; wp_cacheblock_end(); ?>
    ```

If you’re having to render complex data per user, the Per_User_Unique_Key_Builder
will help create a unique key per user for the content:

    ```
    <?php $key_builders = array( new Per_User_Unique_Key_Builder() );
    <?php if(wp_cacheblock_start('index-loop', array('key_builders'=> $key_builders) ) ) : ?>
      //the user specific content
    <?php endif; wp_cacheblock_end(); ?>
    ```

## الأسئلة المتكررّة

  Do I need this plugin?

Probably not. Full page rendering is the best solution for most sites. This plugin
is really only useful for sites that have a great deal of user specific content 
areas that causes full page caching to no longer be an option.

## المراجعات

لا توجد مراجعات لهذه الإضافة.

## المساهمون والمطوّرون

“WP Cache Block” هو برنامج مفتوح المصدر. وقد ساهم هؤلاء الأشخاص بالأسفل في هذه الإضافة.

المساهمون

 *   [ prettyboymp ](https://profiles.wordpress.org/prettyboymp/)

[ترجمة ”WP Cache Block“ إلى لغتك.](https://translate.wordpress.org/projects/wp-plugins/wp-cache-block)

### مُهتم بالتطوير؟

[تصفّح الشفرة](https://plugins.trac.wordpress.org/browser/wp-cache-block/)، تحقق
من [مستودع SVN](https://plugins.svn.wordpress.org/wp-cache-block/)، أو الاشتراك 
في [سجل التطوير](https://plugins.trac.wordpress.org/log/wp-cache-block/) بواسطة 
[RSS](https://plugins.trac.wordpress.org/log/wp-cache-block/?limit=100&mode=stop_on_copy&format=rss).

## سجل التغييرات

#### 0.1.1

 * Limited transient key length to 45 chars per https://core.trac.wordpress.org/
   ticket/15058
 * Fixing unique key when only a block name is provided.

#### 0.1.0

 * Initial release.

## ميتا Meta

 *  Version **0.1.1**
 *  Last updated **قبل 15 سنة**
 *  Active installations **10+**
 *  WordPress version ** 2.8 أو أعلى **
 *  Tested up to **3.0.5**
 *  Language
 * [English (US)](https://wordpress.org/plugins/wp-cache-block/)
 * Tags
 * [cache](https://ar.wordpress.org/plugins/tags/cache/)[cache block](https://ar.wordpress.org/plugins/tags/cache-block/)
   [caching](https://ar.wordpress.org/plugins/tags/caching/)[output caching](https://ar.wordpress.org/plugins/tags/output-caching/)
   [performance](https://ar.wordpress.org/plugins/tags/performance/)
 *  [عرض متقدم](https://ar.wordpress.org/plugins/wp-cache-block/advanced/)

## التقييم

لم يتم تقديم أي مراجعات بعد.

[Your review](https://wordpress.org/support/plugin/wp-cache-block/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/wp-cache-block/reviews/)

## المساهمون

 *   [ prettyboymp ](https://profiles.wordpress.org/prettyboymp/)

## الدعم

لديك شيء لتقوله؟ بحاجة الى مساعدة؟

 [عرض منتدى الدعم](https://wordpress.org/support/plugin/wp-cache-block/)

## تبرع

هل ترغب في تقديم دعم متقدم لهذه الإضافة؟

 [ تبرع لهذه الإضافة ](http://voceconnect.com/)