Version Description
- Tested with WordPress 4.7.3.
- Added FAQ section to plugin repository page.
Download this release
Release Info
Developer | ViktorFroberg |
Plugin | ACF Content Analysis for Yoast SEO |
Version | 1.2.6 |
Comparing to | |
See all releases |
Code changes from version 1.2.5 to 1.2.6
- readme.txt +20 -2
- yoast-seo-acf-content-analysis.php +2 -2
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: ViktorFroberg, marol87, pekz0r, angrycreative
|
3 |
Tags: Angry Creative, Yoast SEO, Yoast, SEO, ACF, Advanced Custom Fields
|
4 |
Requires at least: 4.0
|
5 |
-
Tested up to: 4.
|
6 |
-
Stable tag: 1.2.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -35,8 +35,26 @@ add_filter('ysacf_exclude_fields', function(){
|
|
35 |
1. Download, unzip and upload the plugin folder to the `/wp-content/plugins/` directory
|
36 |
2. Activate the plugin through the 'Plugins' menu in WordPress (activate for network if multisite)
|
37 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
== Changelog ==
|
39 |
|
|
|
|
|
|
|
|
|
40 |
= 1.2.5 =
|
41 |
* Fix for taxonomies in the latest version of WordPress
|
42 |
|
2 |
Contributors: ViktorFroberg, marol87, pekz0r, angrycreative
|
3 |
Tags: Angry Creative, Yoast SEO, Yoast, SEO, ACF, Advanced Custom Fields
|
4 |
Requires at least: 4.0
|
5 |
+
Tested up to: 4.7.3
|
6 |
+
Stable tag: 1.2.6
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
35 |
1. Download, unzip and upload the plugin folder to the `/wp-content/plugins/` directory
|
36 |
2. Activate the plugin through the 'Plugins' menu in WordPress (activate for network if multisite)
|
37 |
|
38 |
+
== Frequently Asked Questions ==
|
39 |
+
|
40 |
+
= I'm using Flexible Content and the field name is displayed in the snippet preview. How do I remove it? =
|
41 |
+
|
42 |
+
You can remove it using the ysacf_exclude_fields filter.
|
43 |
+
|
44 |
+
`
|
45 |
+
add_filter('ysacf_exclude_fields', function(){
|
46 |
+
return array(
|
47 |
+
'acf_fc_layout',
|
48 |
+
);
|
49 |
+
});
|
50 |
+
`
|
51 |
+
|
52 |
== Changelog ==
|
53 |
|
54 |
+
= 1.2.6 =
|
55 |
+
* Tested with WordPress 4.7.3.
|
56 |
+
* Added FAQ section to plugin repository page.
|
57 |
+
|
58 |
= 1.2.5 =
|
59 |
* Fix for taxonomies in the latest version of WordPress
|
60 |
|
yoast-seo-acf-content-analysis.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: ACF Content Analysis for Yoast SEO
|
4 |
Plugin URI: http://angrycreative.se
|
5 |
Description: Ensure that Yoast SEO analysize all ACF content including Flexible Content and Repeaters.
|
6 |
-
Version: 1.2.
|
7 |
Author: ViktorFroberg, marol87, pekz0r, angrycreative
|
8 |
Author URI: http://angrycreative.se
|
9 |
License: GPL
|
@@ -28,7 +28,7 @@ class AC_Yoast_SEO_ACF_Content_Analysis
|
|
28 |
* @since 0.1.0
|
29 |
* @var string
|
30 |
*/
|
31 |
-
const VERSION = '1.2.
|
32 |
/**
|
33 |
* Unique identifier for the plugin.
|
34 |
* This value is used as the text domain when internationalizing strings of text. It should
|
3 |
Plugin Name: ACF Content Analysis for Yoast SEO
|
4 |
Plugin URI: http://angrycreative.se
|
5 |
Description: Ensure that Yoast SEO analysize all ACF content including Flexible Content and Repeaters.
|
6 |
+
Version: 1.2.6
|
7 |
Author: ViktorFroberg, marol87, pekz0r, angrycreative
|
8 |
Author URI: http://angrycreative.se
|
9 |
License: GPL
|
28 |
* @since 0.1.0
|
29 |
* @var string
|
30 |
*/
|
31 |
+
const VERSION = '1.2.6';
|
32 |
/**
|
33 |
* Unique identifier for the plugin.
|
34 |
* This value is used as the text domain when internationalizing strings of text. It should
|