Linux 软件免费装
Banner图

Global Content Blocks

开发者 Dave Liske
更新时间 2015年12月13日 20:40
PHP版本: 2.8.6 及以上
WordPress版本: 4.4
版权: GPLv2 or later
版权网址: 版权信息

标签

adsense html posts shortcodes form pages forms javascript shortcode admin tinymce php paypal editor code formatting snippet content block iframe insert global reusable code snippet raw html variables reuse global variables modify output

下载

1.1 1.5.5 2.1.5 1.0 1.0.1 1.1.1 1.1.2 1.2 1.3 1.4 1.4.1 1.5 1.5.1 1.5.2 1.5.3 1.5.6 1.5.7 2.0.0 2.0.1 2.0.2 2.1.0 2.1.1 2.1.2 2.1.3 2.1.4

详情介绍:

Global Content Blocks lets you create your own shortcodes to insert reusable code snippets, PHP or HTML including forms, opt-in boxes, iframes, Adsense code, etc, into pages and posts as well as widgets and directly into php content. You can insert them directly using shortcodes or via a button in the TinyMCE visual editor toolbar. You can also insert the entire content of the Content Block instead of the shortcode or use other shortcodes within the Content Block. You can also modify the output of the Content Block via a hook. It is ideal for inserting reusable objects into your content or to prevent the WordPress editor from stripping out your code or otherwise changing your formatting. The shortcodes are masked as images to allow easy manipulation and non-html tags contamination. You can also use your own variables, WordPress global variables and other shortcodes within Content Blocks, modify the output, use shortcodes in themes and widgets, nest shorcodes and a whole lot more. See http://micuisine.com/content-block-plugins/category/gcb-advanced-usage/ for more information. The plugin includes an Import/Export fuction to copy content blocks from one WordPress site to another. Further information and screenshots are available on the plugin homepage at http://micuisine.com/content-block-plugins/global-content-blocks/. As featured on ManageWP Blog (http://managewp.com/global-content-blocks) and Spanky Media (http://spankymedia.com.au/using-wordpress-global-content-blocks-to-promote-your-content/). If you have any feedback, issues or suggestions for improvements please leave a comment on the plugin homepage and if you like the plugin please give it a rating at http://wordpress.org/extend/plugins/global-content-blocks :-)

安装:

  1. Download the global-content-blocks.zip file to your local machine.
  2. Either use the automatic plugin installer (Plugins - Add New) or Unzip the file and upload the global-content-blocks folder to your /wp-content/plugins/ directory.
  3. Activate the plugin through the Plugins menu
  4. Visit the Global Content Blocks settings page (Settings > Global Content Blocks) to add or edit Content Blocks.
  5. Insert the Content Block into pages or posts using the button on the editor tool bar or by inserting the shortcode [contentblock id=xx] where xx is the ID number of the Content Block.

屏幕截图:

  • The Settings page
  • Adding a new Content Block
  • Inserting a Content Block using the toolbar button
  • Inserting a Content Block using the shortcode

升级注意事项:

1.1 A major update adding several new features and functions including the ability to insert PHP blocks, insert the entire content block instead of the shortcode and export blocks to another site. 1.0.1 Minor typo fixed

常见问题:

How big a content block can I add?

The content block will hold up to 64,000 characters.

Can I create content blocks with PHP code?

Yes, just copy the PHP as normal into a content block without the <?php, <?, ?> tags and insert the block into your content as normal.

Can I create content blocks using a visual editor?

Yes, the Settings page where the content blocks are created includes the standard WordPress visual/HTML editor.

How do I use a shortcode within a content block?

Simply add the shortcode within a block as normal, for example [gallery] to add a WordPress gallery.

Can I use content blocks outside of posts and pages?

Yes, just wrap it in the PHP function <?php echo gcb(x);?> where x is the content block ID. You can also use the longer form <?php do_shortcode("[contentblock id=x]");?>

Why do the contentblock shortcodes display instead of my content when I link to one of my posts or pages in Facebook?

If you look at the source code for your page you'll likely find something like this: < ! -- This site is optimized with the Yoast SEO plugin v3.0.3 - https: //yoast.com/wordpress/plugins/seo/ -- > < meta name="description" content="[contentblock id=hmn_yanagibas_oct] [contentblock id=17 img=gcb.png]"/ > What happens is that Facebook scrapes the meta description (or an og:description if you have that set up instead) and loads it as the description for their link. That's probably what you're seeing happen, especially since this is the only place the shortcodes appear when viewing the page source. This is a known issue with the Yoast SEO plugin, as described here: https://github.com/Yoast/wordpress-seo/issues/2846 Looking at their changelog, it appears the fix has not yet been implemented. If you're so inclined, the solution is also listed on the above linked page. I haven't tried it myself, so I can offer no guarantees. But this issue is definitely reproducable with the current version of the Yoast plugin installed.

Is it possible to modify the output of inserted content blocks?

Yes, you can add the filter 'gcb_block_output' to modify output by adding a PHP script to functions.php, for example: add_filter('gcb_block_output', 'alter_block_output'); function alter_block_output($value) { //process the output here, e.g., convert text to lowercase $new_value = strtolower($value); return "Processed output: ".$new_value; }

Can I use variables?

Yes, You can use variables within the content block that will be replaced when the block is displayed. For example, if you create a content block, say id=1 with: My name is %%name%% by using the shortcode [contentblock id=1 name="John Doe"] when displayed it will appear as My name is John Doe.

Can I use WordPress global variables?

Yes, WordPress global variables can be used within content blocks, for example, global $user_login; global $user_email; echo "$user_login, you email is: $user_email"; would output the username and email of the current logged in user, e.g.,�John, your email is john@youremail.com.

Will I lose my content blocks if I change the theme or upgrade WordPress?

No, the blocks are added to the WordPress database, so are independent of the theme and unaffected by WordPress upgrades.

Can it be completely uninstalled?

Yes, there is an option to delete the database table if you want to completely remove the plugin.

Can I copy any content blocks I've created to another WordPress site?

Yes, an Import/Export function is included. Just Export form one site, install the plugin on the other site and import.

更新日志:

2.1.5 2.1.4 2.1.3 2.1.2 2.1.1 2.1.0 2.0.2 2.0.1 2.0.0 1.5.7 1.5.6 1.5.5 1.5.3 1.5.2 1.5.1 1.5 1.4.1 1.4 1.3 1.2 1.1.2 1.1.1 1.1 1.0.1 1.0