Template error, template file not found

[wordpress插件] Author Profile Image作者个人头像

评分0描述An author image can be uploaded right from the profile page with the click of a button.只需单击一下按钮,就可以从个人资料页面直接上传作者图像。安装步骤See “I...
继续阅读 »
评分
0
描述

An author image can be uploaded right from the profile page with the click of a button.

只需单击一下按钮,就可以从个人资料页面直接上传作者图像。

安装步骤

    1. See “Installing Plugins” article on the WordPress Codex.<

    2. 请参阅WordPress Codex上的“ 安装插件“文章。

      /li>

      / li>

    3. Activate the plugin through the ‘Plugins’ menu in WordPress
    4. 通过WordPress中的“插件”菜单激活插件

    5. Go to Users->Your Profile and get started!

    6. 转到“用户”->“您的个人资料”并开始使用!

      If you have multiple users, they all can log in and upload an image, too.

    7. 如果您有多个用户,他们所有人都可以登录并上传图片。

下载地址
https://downloads.wordpress.org/plugin/author-profile-image.1.0.zip
收起阅读 »

[wordpress插件] Author Spotlight (Widget)作者聚焦(小部件)

评分90描述Author Spotlight widget displays the profile of the author(s) with Social links (example: Twitter, Facebook) and his/her pro...
继续阅读 »
评分
90
描述

Author Spotlight widget displays the profile of the author(s) with Social links (example: Twitter, Facebook) and his/her profile picture or Gravatar on any post or page that has an Author.

Author Spotlight小部件在具有作者的任何帖子或页面上显示带有社交链接的作者个人资料(例如Twitter,Facebook)以及他/她的个人资料图片或Gravatar。

The widget automatically detects the current author(s) of the displayed post or page;

小部件会自动检测显示的帖子或页面的当前作者;

just drag and drop the widget on your sidebar and you are done.

只需将小部件拖放到侧边栏即可。

To display a custom photograph with the Author's Profile you may install the User Photo<

要显示具有作者个人资料的自定义照片,您可以安装用户照片<

/a>.

/ a>。

In absence of this plugin the widget will fall-back to displaying the Gravatar associated with the user.

在没有此插件的情况下,小部件将回退到显示与用户关联的Gravatar。

If your posts have multiple authors you may use the Co-Authors Plus<

如果您的帖子有多位作者,则可以使用Co-Authors Plus <

/a>, the Author Spotlight will then display all the author profiles one below another for such post/page.

/ a>,然后,作者聚光灯将在该帖子/页面的下方显示所有作者个人资料。

Note that installing the User Photo or Co-Author plugin is purely optional, this widget will work fine without them as well.

请注意,安装User Photo或Co-Author插件纯粹是可选的,如果没有它们,此小部件也可以正常工作。

If you face any issues with the plugin or have any suggestion/feature requests please do so

如果您遇到该插件的任何问题或有任何建议/功能请求,请

at the support forum.

在支持论坛上。

安装步骤

    1. Download and unzip author-profile.zip.

    2. 下载并解压缩 author-profile.zip

      Then upload the folder containing author-profile.php to the /wp-content/plugins/ directory.

    3. 然后将包含 author-profile.php 的文件夹上传到 / wp-content / plugins / 目录。

    4. Alternatively, you may use the Automatic installation feature of WordPress.
    5. 或者,您可以使用WordPress的自动安装功能。

    6. Activate the plugin through the Plugins menu in WordPress.

    7. 通过WordPress中的 Plugins 菜单激活插件。

      For details refer this Codex page.

    8. 有关详细信息,请请参阅此法典页面。

    9. To display Author Spotlight, browse to Appearance > Widgets and drag-and-drop the ‘Author Spotlight” widget to desired sidebar.

    10. 要显示 Author Spotlight ,请浏览到 Appearance>窗口小部件,然后将“ Author Spotlight”窗口小部件拖放到所需的侧边栏中。

      You may configure the widget according to your needs.

      您可以根据需要配置窗口小部件。

      Save your changes and you are done.

    11. 保存更改,您就完成了。

    12. To enable the default look & feel of your widget you may copy/paste the suggested CSS at the end of your theme CSS file (usually style.css).

    13. 要启用窗口小部件的默认外观,您可以在主题CSS文件(通常为 style.css )的末尾复制/粘贴建议的CSS。

      Please refer the answer to the FAQ section for the CSS code.<

      对于CSS代码,请参考常见问题解答部分。

      /li>

      / li>

    14. To add the ability to add Social URLs in the User profile, please add the following add to your Theme functions file:

      要添加在用户个人资料中添加社交URL的功能,请在主题功能文件中添加以下内容:

      /Add Social URLs/

      / 添加社交网址 /

      function author_spotlight_contactmethods( $contactmethods ) {
          

      函数author_spotlight_contactmethods($ contactmethods){
          

      if ( !isset( $contactmethods[‘twitter’] ) )
              

      if(!isset($ contactmethods ['twitter']))
              

      $contactmethods[‘twitter’] = ‘Twitter’;
          

      $ contactmethods [‘twitter’] =‘Twitter’;
          

      if ( !isset( $contactmethods[‘facebook’] ) )
              

      if(!isset($ contactmethods [‘facebook’]))
              

      $contactmethods[‘facebook’] = ‘Facebook’;
          

      $ contactmethods [‘facebook’] =‘Facebook’;
          

      if ( !isset( $contactmethods[‘linkedin’] ) )
              

      if(!isset($ contactmethods [’linkedin']))
              

      $contactmethods[‘linkedin’] = ‘LinkedIn’;
          

      $ contactmethods [‘linkedin’] =‘LinkedIn’;
          

      if ( !isset( $contactmethods[‘flickr’] ) )
              

      if(!isset($ contactmethods ['flickr']))
              

      $contactmethods[‘flickr’] = ‘Flickr’;
          

      $ contactmethods [‘flickr’] =‘Flickr’;
          

      if ( !isset( $contactmethods[‘myspace’] ) )
              

      if(!isset($ contactmethods ['myspace']))
              

      $contactmethods[‘myspace’] = ‘MySpace’;
          

      $ contactmethods [‘myspace’] =‘MySpace’;
          

      if ( !isset( $contactmethods[‘friendfeed’] ) )
              

      if(!isset($ contactmethods ['friendfeed']))
              

      $contactmethods[‘friendfeed’] = ‘Friendfeed’;
          

      $ contactmethods [‘friendfeed’] =‘Friendfeed’;
          

      if ( !isset( $contactmethods[‘delicious’] ) )
              

      if(!isset($ contactmethods ['delicious']))
              

      $contactmethods[‘delicious’] = ‘Delicious’;
          

      $ contactmethods [‘delicious’] =‘Delicious’;
          

      if ( !isset( $contactmethods[‘digg’] ) )
              

      if(!isset($ contactmethods ['digg']))
              

      $contactmethods[‘digg’] = ‘Digg’;
          

      $ contactmethods ['digg'] ='Digg';
          

      if ( !isset( $contactmethods[‘feed’] ) )
              

      if(!isset($ contactmethods ['feed']))
              

      $contactmethods[‘feed’] = ‘XML Feed’;
          

      $ contactmethods ['feed'] ='XML Feed';
          

      if ( !isset( $contactmethods[‘tumblr’] ) )
              

      if(!isset($ contactmethods ['tumblr']))
              

      $contactmethods[‘tumblr’] = ‘Tumblr’;
          

      $ contactmethods [‘tumblr’] =‘Tumblr’;
          

      if ( !isset( $contactmethods[‘youtube’] ) )
              

      if(!isset($ contactmethods [‘youtube’]))
              

      $contactmethods[‘youtube’] = ‘YouTube’;
          

      $ contactmethods [‘youtube’] =‘YouTube’;
          

      if ( !isset( $contactmethods[‘blogger’] ) )
              

      if(!isset($ contactmethods ['blogger']))
              

      $contactmethods[‘blogger’] = ‘Blogger’;
          

      $ contactmethods [‘blogger’] =‘Blogger’;
          

      if ( !isset( $contactmethods[‘googleplus’] ) )
              

      if(!isset($ contactmethods ['googleplus']))
              

      $contactmethods[‘googleplus’] = ‘Google+’;
          

      $ contactmethods [‘googleplus’] =‘Google+’;
          

      if ( !isset( $contactmethods[‘instagram’] ) )
              

      if(!isset($ contactmethods [‘instagram’]))
              

      $contactmethods[‘instagram’] = ‘Instagram’;
          

      $ contactmethods [‘instagram’] =‘Instagram’;
          

      if ( !isset( $contactmethods[‘slideshare’] ) )
              

      if(!isset($ contactmethods ['slideshare']))
              

      $contactmethods[‘slideshare’] = ‘Slideshare’;
          

      $ contactmethods ['slideshare'] ='Slideshare';
          

      if ( !isset( $contactmethods[‘stackoverflow’] ) )
              

      if(!isset($ contactmethods ['stackoverflow']))
              

      $contactmethods[‘stackoverflow’] = ‘Stackoverflow’;
          

      $ contactmethods [‘stackoverflow’] =‘Stackoverflow’;
          

      if ( !isset( $contactmethods[‘posterous’] ) )
              

      if(!isset($ contactmethods ['posterous']))
              

      $contactmethods[‘posterous’] = ‘Posterous’;

      $ contactmethods [‘posterous’] =‘Posterous’;

      return $contactmethods;

       返回$ contactmethods;

      }

      }

      add_filter(‘user_contactmethods’,’author_spotlight_contactmethods’);

      add_filter('user_contactmethods','author_spotlight_contactmethods');

下载地址
https://downloads.wordpress.org/plugin/author-profile.3.4.zip
收起阅读 »

[wordpress插件] Author Product Review作者产品评论

评分96描述You can add a reviewed product to any blog post and this plugin will display stars at the bottom of said post.您可以将评论产品添加到任何博...
继续阅读 »
评分
96
描述

You can add a reviewed product to any blog post and this plugin will display stars at the bottom of said post.

您可以将评论产品添加到任何博客帖子中,并且该插件将在该帖子的底部显示星星

Option is provided to hide the ratings from readers.

提供了对读者隐藏等级的选项。

Adding this Schema.org markup will show your rating, author name and price in the Google result and better your search ranking in

添加此 Schema.org标记将在Google搜索结果中显示您的评分,作者姓名和价格,并在中提高搜索排名

general.

一般。

Adding product review markups help you to get more click thorugh rate and better visibility in Google search engine.

添加产品评论标记可帮助您提高点击率,并在Google搜索引擎中获得更好的可见性。

This plugin is written by Rajesh Namase, the founder of TechLila.

该插件由TechLila 的创始人Rajesh Namase编写。

p>

>

Why You Should Implement Rich Snippets

为什么要实施丰富网页摘要

According to Google, rich snippets “extract and show more useful information from web pages than the preview text that you are used to seeing.”

据Google称,丰富的摘要“从网页上提取并显示了比您以前看到的预览文字更有用的信息。”

Significantly, Google is using structured data open standards such as microformats, RDFa, schema.org to power the rich snippets feature.

值得注意的是,Google正在使用微格式,RDFa,schema.org之类的结构化数据开放标准来提供丰富的摘要功能。

Google is is inviting publishers to mark up their HTML.

Google邀请发布商对其HTML进行标记。

Webmasters can find more detailed information about Google's rich snippets – Products review

网站管理员可以找到有关 Google丰富网页摘要-产品评论的更多详细信息,

="Google Product Review" rel="nofollow">here.

=“ Google产品评论” rel =“ nofollow”>此处。

Google’s Rich Snippets Testing Tool

Google的丰富网页摘要测试工具

Once you install this plugin, and publish your first product review, you can use Google's Rich Snippets Testing Tool to check your markup and make sure that Google can extract the structured data from your product review post.

“ rel =“ nofollow”>测试工具来检查您的标记,并确保Google可以从您的产品评论中提取结构化数据。

This tool will display a preview of how your product review might appear in Google search results.

该工具将预览您的产品评论在Google搜索结果中的显示方式。

Get Support

获得支持

If you have an issue, please contact us via the Contact Us

如果您有任何问题,请通过与我们联系

page.

页面。

Further Reading

进一步阅读

安装步骤

    1. Upload author-product-review to the /wp-content/plugins/ directory.
    2. author-product-review 上载到 / wp-content / plugins / 目录。

    3. Activate the plugin through the ‘Plugins’ menu in WordPress.
    4. 通过WordPress中的“插件”菜单激活插件。

    5. Add product review data to your posts.
    6. 将产品评论数据添加到您的帖子中。

下载地址
https://downloads.wordpress.org/plugin/author-product-review.1.1.zip
收起阅读 »

[wordpress插件] Author Posts Shortcode作者职位简码

评分100描述Provide an Shortcode to insert an Postslist from an given author ID提供简码以插入来自给定作者ID的帖子列表安装步骤Simply extract gomorrah-author-p...
继续阅读 »
评分
100
描述

Provide an Shortcode to insert an Postslist from an given author ID

提供简码以插入来自给定作者ID的帖子列表

安装步骤

Simply extract gomorrah-author-posts.zip and Upload Contents to Your Plugin Directory

只需提取gomorrah-author-posts.zip并将内容上传到您的插件目录

After that… Aktivate.

那之后……着迷。

下载地址
https://downloads.wordpress.org/plugin/author-posts-shortcode.1.0.zip
收起阅读 »

[wordpress插件] Author Post Ratings作者发表评分

评分100描述There are plenty of plugins available which allow site visitors to rate posts, but I didn't find any that gave the post aut...
继续阅读 »
评分
100
描述

There are plenty of plugins available which allow site visitors to rate posts, but I didn't find any that gave the post author that functionality, so I wrote this

有很多可用的插件,它们允许网站访问者对帖子进行评分,但是我没有找到能赋予帖子 author 功能的插件,所以我写了这个

plugin.

插入。

Author Post Ratings adds a meta box to the post edit screen, allowing you to chose a 1-5 star rating for the post, or to leave it unrated.

Author Post Ratings (作者帖子评分)在帖子编辑屏幕中添加了一个元框,您可以为帖子选择1-5星的评分,也可以不对其进行评分。

The plugin will automatically add the post rating (using stars, and an optional label) to the top or bottom of the post.

插件会自动将帖子评分(使用星号和可选标签)添加到帖子的顶部或底部。

If you wish, you can disable that functionality altogether and use a shortcode to insert the post rating anywhere in the post you choose.

如果愿意,可以完全禁用该功能,并使用简码将帖子等级插入您选择的帖子中的任何位置。

The plugin supports ratings for posts, pages, and custom post types, all of which can be individually enabled or disabled in the plugin settings.

该插件支持帖子,页面和自定义帖子类型的评级,所有这些都可以在插件设置中单独启用或禁用。

It is also fully internationalized, with Spanish language translation files included.

它也已完全国际化,包括西班牙语翻译文件。

Translating the Plugin

翻译插件

The post rating label text can be changed in the plugin settings, so no translation is required for the frontend (public side) of the site.

帖子评级标签文本可以在插件设置中更改,因此该站点的前端(公共端)不需要翻译。

However, if you wish to translate the backend settings interface, the plugin is fully internationalized and ready for translation.

但是,如果您希望翻译后端设置界面,则该插件已完全国际化并可以翻译。

There is a .po and a .mo file included in the plugin’s ‘languages’ directory for your convenience.

为方便起见,插件的“语言”目录中包含一个.po和.mo文件。

The plugin includes the following translations:

该插件包含以下翻译:

安装步骤

Author Post Ratings is installed just like any other WordPress plugin.

作者帖子评分的安装方式与其他任何WordPress插件一样。

No configuration is required, but if you wish, you may change the plugin settings at Settings > Author Post Ratings.

不需要进行配置,但是如果您愿意,可以在“设置”>“作者发布评分”中更改插件设置。

If you’re not familiar with installing WordPress plugins, follow these steps to install the plugin:

如果您不熟悉安装WordPress插件,请按照以下步骤安装插件:

Automatic Installation

自动安装

    1. Login to your WordPress dashboard, and go to Plugins > Add New.
    2. 登录到WordPress仪表板,然后转到“插件”>“添加新项”。

    3. In the Search box, type in ‘Author Post Ratings’, and click ‘Search Plugins’.
    4. 在“搜索”框中,键入“作者帖子评分”,然后单击“搜索插件”。

    5. Author Post Ratings should be the first item in the list.

    6. 作者帖子评分应该是列表中的第一项。

      Click on ‘Install Now’.

    7. 点击“立即安装”。

    8. WordPress will download and install the plugin.

    9. WordPress将下载并安装插件。

      Click on the ‘Activate Plugin’ link, and you’re in business!

    10. 点击“激活插件”链接,您就可以开展业务!

    Manual Installation Via FTP

    通过FTP手动安装

      1. Download the plugin to your computer, and unzip it.
      2. 将插件下载到您的计算机,然后将其解压缩。

      3. Using an FTP program, upload the ‘author-post-ratings’ folder to your /wp-content/plugins/ directory.
      4. 使用FTP程序,将“ author-post-ratings”文件夹上传到您的 / wp-content / plugins / 目录。

      5. Activate the plugin through the ‘Plugins’ menu in WordPress.
      6. 通过WordPress中的“插件”菜单激活插件。

      Manual Installation Via WordPress Upload

      通过WordPress上传进行手动安装

        1. Download the plugin ZIP file to your computer.
        2. 将插件ZIP文件下载到您的计算机上。

        3. In your WordPress dashboard, go to Plugins > Add New.
        4. 在WordPress信息中心中,转到“插件”>“添加新内容”。

        5. Click on the ‘Upload’ link at the top.
        6. 点击顶部的“上传”链接。

        7. In the file selection box, select the plugin ZIP file on your computer, and click on ‘Install Now’.
        8. 在文件选择框中,选择计算机上的插件ZIP文件,然后单击“立即安装”。

        9. WordPress will upload and install the plugin.

        10. WordPress将上传并安装插件。

          Click on the ‘Activate Plugin’ link, and you’re in business!

        11. 点击“激活插件”链接,您就可以开展业务!

下载地址
https://downloads.wordpress.org/plugin/author-post-ratings.1.1.1.zip
收起阅读 »

[wordpress插件] Author Popup作者弹出窗口

评分0描述This plugin does the same thing as the the_author tag, displays the author name, only this time it’s linked to hidden layer (...
继续阅读 »
评分
0
描述

This plugin does the same thing as the the_author tag, displays the author name, only this time it’s linked to hidden layer (div).

此插件与the_author标记具有相同的作用,仅在链接到隐藏层(div)时才显示作者名称。

By clicking on the author link the hidden layer(div) pop’s up with author info gathered from the profile page, plus gravatar photo (if author email is assigned with one) & social links from profile custom fields.

通过单击作者链接,弹出的隐藏层(div)弹出,其中包含从个人资料页面收集的作者信息,以及照片(如果为作者电子邮件分配了照片)和个人资料自定义字段中的社交链接。

    • xhtml,css valid.
    • xhtml,css有效。

    • Tested in FF, Opera, IE6/7, Chrome and Safari.
    • 在FF,Opera,IE6 / 7,Chrome和Safari中进行了测试。

    • Comes with separate css file for easier modification.
    • 带有单独的css文件,以便于修改。

    Live demo of this plugin available at author site

    此插件的实时演示可在作者网站中找到

    .

安装步骤

Installation is simple and should not take you more than 2 minutes.Step 1: Download “Author Popup 1.0”

安装很简单,花费的时间不会超过2分钟。步骤1:下载“ Author Popup 1.0”

    1. Download “Author Popup 1.0”

      下载“作者弹出窗口1.0”

    2. Extract and upload the entire author-popup directory to /wp-content/plugins/

      将整个author-popup目录提取并上传到/ wp-content / plugins /

    3. Open your theme’s single.php file /wp-content/themes/yourtheme/single.php Put this code the_author_posts_link();

      打开主题的single.php文件/wp-content/themes/yourtheme/single.php将此代码放入the_author_posts_link();

      inside class=”postmeta”

      内部class =“ postmeta”

    4. Activate the plugin in wp-admin area.

      在wp-admin区域激活插件。

      Additional Configurations:

      其他配置:

    5. Author popup plugin displays user’s gravatar picture based upon his email address.

      作者弹出式插件会根据用户的电子邮件地址显示其头像。

    6. If you have wordpress profile custom fields with the name of “twitter” & “facebook” then, that user’s twitter & facebook profiles will be linked inside popup.

      如果您有名为“ twitter”和“ facebook”的wordpress配置文件自定义字段,那么该用户的twitter和facebook配置文件将在弹出窗口中链接。

    label: twitter

    标签:twitter

    value: twitter username

    值:twitter用户名

    label: facebook

    标签:facebook

    value: full facebook profile url

    值:完整的Facebook个人资料网址

    label: youtube

    标签:youtube

    value: full channel url

    值:完整频道网址

下载地址
https://downloads.wordpress.org/plugin/author-popup.zip
收起阅读 »

[wordpress插件] Author Periodic Report作者定期报告

评分0描述This plugin reports to the admin on posts amount of author in specified period of time.此插件会在指定时间段内向管理员报告作者的帖子量。License许可证Copy...
继续阅读 »
评分
0
描述

This plugin reports to the admin on posts amount of author in specified period of time.

此插件会在指定时间段内向管理员报告作者的帖子量。

License

许可证

Copyright 2013 Shlomi Turjeman

2013 Shlomi Turjeman版权所有

This program is free software;

该程序是免费软件;

you can redistribute it and/or modify

您可以重新分发和/或修改

it under the terms of the GNU General Public License as published by

根据
发布的GNU通用公共许可的条款进行

the Free Software Foundation;

自由软件基金会;

either version 2 of the License, or

许可的版本2或

(at your option) any later version.

(您可以选择)任何更高版本。

This program is distributed in the hope that it will be useful,

分发该程序是希望它会有用,

but WITHOUT ANY WARRANTY;

但没有任何保证;

without even the implied warranty of

甚至没有
的暗示保证

MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

特定目的的适销性或适用性。

See the

参见

GNU General Public License for more details.

GNU通用公共许可证以获取更多详细信息。

You should have received a copy of the GNU General Public License

您应该已经收到了GNU通用公共许可证的副本

along with this program;

与该程序一起;

if not, write to the Free Software

如果没有,请写信给免费软件

Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USANone.

Foundation,Inc.,59 Temple Place,Suite 330,Boston,MA 02111-1307 USANone。

安装步骤

Copy “author-periodic-report” folder to your WordPress Plugins Directory.

将“ author-periodic-report”文件夹复制到您的WordPress插件目录中。

Activate plugin via WordPress settings.

通过WordPress设置激活插件。

下载地址
https://downloads.wordpress.org/plugin/author-periodic-report.1.0.zip
收起阅读 »

[wordpress插件] Author Performance作者表现

评分0描述Author Performance is a small plugin for evaluating authors’ performance.作者表现是一个用于评估作者表现的小插件。It is ideal for community blogs....
继续阅读 »
评分
0
描述

Author Performance is a small plugin for evaluating authors’ performance.

作者表现是一个用于评估作者表现的小插件。

It is ideal for community blogs.

它是社区博客的理想选择。

Author Performance gives brief information about how many words and posts each author has written, as well as longest posts.

“作者表现”提供了有关每个作者写了多少词和帖子以及最长帖子的简短信息。

安装步骤

Upload to wp-content/plugins and activate as any other plugin.

上传到wp-content / plugins并像其他任何插件一样激活。

You can find further info on options page, as well as examples.

您可以在选项页面上找到更多信息以及示例。

下载地址
https://downloads.wordpress.org/plugin/author-performance.zip
收起阅读 »

[wordpress插件] Author Page Views作者页面浏览量

评分0描述Author Pageviews tracks page views on a per author basis and makes it accessible for monthly reporting and CSV exports.“作者综合浏...
继续阅读 »
评分
0
描述

Author Pageviews tracks page views on a per author basis and makes it accessible for monthly reporting and CSV exports.

“作者综合浏览量”可跟踪每个作者的综合浏览量,并使其可用于每月报告和CSV导出。

The goal of the plugin is to help content publishers who monetize their sites via CPM based advertising better track and compensate their authors.

该插件的目的是帮助通过基于CPM的广告从其网站获利的内容发布者更好地跟踪并补偿其作者。

The plugin is properly escaped and secure.

插件已正确转义且安全。

It has been tested with W3 Total Cache and WP Super Cache.

它已经过W3 Total Cache和WP Super Cache的测试。

It might not properly work with some CSS magnification schemes so please test on your site and compare to Google analytics.

它可能不适用于某些CSS放大方案,因此请在您的网站上进行测试并与Google Analytics(分析)进行比较。

Author Pageviews Featers:

作者综合浏览量指标:

    • Pageview tracking by author.
    • 按作者跟踪的浏览量。

    • Admin reporting screen with time selection and CSV export functionality.
    • 具有时间选择和CSV导出功能的管理员报告屏幕。

    • Ability for an admin to assign CPM compensation on a per author basis.
    • 管理员可以按作者分配CPM补偿的能力。

    • Author profile reporting that allows authors to see their page views and compensation.
    • 作者个人资料报告,允许作者查看其页面浏览量和补偿。

    Author Pageviews supports:

    作者综合浏览量支持:

      • W3 Total Cache and WP Super Cache
      • W3总缓存和WP超级缓存

      • Proper WordPress plugin coding including secure escaping.
      • 正确的WordPress插件编码,包括安全转义。

      • Author and Administrator functionality.
      • 作者和管理员功能。

      Our Commitment

      我们的承诺

      Please understand that this is a free, open source plugin.

      请理解,这是一个免费的开源插件。

      Still, we are committed to security and quality.

      尽管如此,我们仍致力于安全性和质量。

      Visit the plugins website and provide us feedback.

      访问插件网站,并向我们提供反馈。

      We want your input and do strive to make it better.

      我们希望您的意见并尽力使其更好。

安装步骤

The Author Pageview Plugin installation is a snap.

作者浏览量插件的安装非常简单。

    1. Upload the ‘genesis-featured-press’ folder’ to the /wp-content/plugins/ directory
    2. 将“ genesis-featured-press”文件夹上传到 / wp-content / plugins / 目录

    3. Activate the plugin through the ‘Plugins’ menu in WordPress
    4. 通过WordPress中的“插件”菜单激活插件

    5. Configure User CPM rate in a User Profile if you wish to assign $ values.
    6. 如果要分配$值,请在用户配置文件中配置用户每千次展示费用费率。

    7. Leave User CPM rate as 0 in the User Profile if you just want to track views.
    8. 如果您只想跟踪观看次数,请在“用户个人资料”中将“用户CPM费率”保留为0。

下载地址
https://downloads.wordpress.org/plugin/author-page-views.zip
收起阅读 »

[wordpress插件] Author or User Image作者或用户图片

评分68描述WordPress Author / User Image lets you set author image. WordPress作者/用户图像可用于设置作者图像。By this plugin you will be able to set au...
继续阅读 »
评分
68
描述

WordPress Author / User Image lets you set author image.

WordPress作者/用户图像可用于设置作者图像。

By this plugin you will be able to set author image.

通过此插件,您可以设置作者图像。

Ability to remove user image or block particular user.

能够删除用户图像或阻止特定用户。

(New added)

(新增)

This photo will be appears below the post in about author section and also in there comment.

这张照片将出现在“关于作者”部分中的帖子下方以及其中的评论中。

When you have many user your user’s will be able to set there photo.

当您有很多用户时,您的用户将可以在其中设置照片。

It appears in comment.

它出现在评论中。

You have ability to resize the uploaded image.

您可以调整上传图片的大小。

So no extra disk space or bandwidth will be loss.

因此,不会损失额外的磁盘空间或带宽。

The most Amazing part of this plugin is you can set a default image for your user.

该插件最神奇的部分是您可以为用户设置默认图像。

If any of your user not set there image then show the default image.

如果您的任何用户未在此处设置图片,请显示默认图片。

If you have any question about this plugin you may visit WordPress Author or User Image.

nofollow“> WordPress作者或用户图片。

FEATURE of Author or User Image

作者或用户图片的功能

    1. Set a default image for any user.

    2. 为任何用户设置默认图像。

      (Who not set there Image)

    3. (未在其中设置图片的人)

    4. Individually set user’s image by user.

      按用户分别设置用户的图片。

      (This image will be shown instead of the default image)

      (将显示此图像而不是默认图像)

    5. You can specify image size.

      您可以指定图像尺寸。

      (All image will be resize with this size before save)

      (所有图片将在保存前以此尺寸调整大小)

    6. You will also able to remove your image or the default image.

      您还可以删除图像或默认图像。

    7. It shown just below your profile page in user section.

      它显示在用户部分的个人资料页面下方。

    8. Control over the user’s image.

      控制用户的图像。

    9. Ability to remove user’s image.

      能够删除用户的图像。

    10. Ability to block any user from set his image.

      能够阻止任何用户设置其图像。

    11. Ability to list all user who have set there image.

      能够列出已在其中设置图片的所有用户。

    12. Ability to list all users who is in your blacklist.

      能够列出您黑名单中的所有用户。

    If you have any question about this plugin you may visit WordPress Author or User Image.

    nofollow“> WordPress作者或用户图片。

安装步骤

To Set Image:

设置图像:

    1. You can add your photo or a default photo in “User >> Author Image”.

      您可以在“用户>>作者图像”中添加您的照片或默认照片。

    2. If you want to set a default image you will find this at the top of the page.

      如果要设置默认图像,则会在页面顶部找到它。

    3. Click on the browse button.

      单击浏览按钮。

      Then select an image.

      然后选择一张图片。

    4. You can specify image size.

      您可以指定图像尺寸。

      So all image will be resized on that size.

      因此,所有图片都会按照该尺寸进行调整。

    5. At last click on save image to upload the image.

      最后单击保存图像以上传图像。

    To Update Image:

    更新图像:

      1. If you want to update your image just upload as first time, then it will be replace your old image.
      2. 如果您想仅在第一次上传时更新图片,那么它将替换您的旧图片。

      To Remove/Delete Image

      要删除/删除图像

        1. You can delete your image or default image.

        2. 您可以删除图像或默认图像。

          To delete your image go to “User >> Author Image” scroll down to the bottom.

          要删除图像,请转到“用户>>作者图像”,向下滚动到底部。

          There you find like the image below.

        3. 您可以在其中找到下图所示的图片。

        If you have any question about installation you may visit WordPress Author or User Image.

        “> WordPress作者或用户图片。

下载地址
https://downloads.wordpress.org/plugin/author-or-user-image.2.0.1.zip
收起阅读 »
<<<7289729072917292729372947295>>>