Template error, template file not found

[wordpress插件] Author Bio Shortcode作者生物简码

评分100描述This plugin allows you to enter [author_bio] anywhere within the content of a post or page to display the biography of the ...
继续阅读 »
评分
100
描述

This plugin allows you to enter [author_bio] anywhere within the content of a post or page to display the biography of the author of that post or page.

此插件可让您在帖子或页面的内容中的任意位置输入[author_bio],以显示该帖子或页面的作者的传记。

The output now contains HTML, which can be customised very easily with extra parameters – see Installation for a how-to – to sit around the bio, as defined in /wp-admin/profile.php.

现在,输出包含HTML,可以使用/wp-admin/profile.php中的定义,使用附加参数非常轻松地自定义HTML(请参见“安装”中的操作方法)以围绕生物。

By default the shortcode produces the author of that post or page.

默认情况下,简码会产生该帖子或页面的作者。

However, extra parameters enable you to specify a different user whose bio you want to print out – see usage instructions.

但是,额外的参数使您可以指定要打印其生物的其他用户-请参阅使用说明。

Feature requests welcomed with open arms!

张开双臂欢迎功能要求!

安装步骤

Simple install in /wp-content/plugins like any other!

与其他任何其他应用一样,可以在/ wp-content / plugins中轻松安装!

Usage

用法

Simply place [author_bio] anywhere within your post/page content.

只需将[author_bio]放置在您的帖子/页面内容中的任何地方。

Additionally, you can pass one of the following attributes to specify a different user;

此外,您可以传递以下属性之一来指定其他用户;

    • id – accepts the user ID
    • id –接受用户ID

    • username – accepts the username
    • 用户名–接受用户名

    • email – accepts the user e-mail address
    • 电子邮件–接受用户的电子邮件地址

    For example;
        

    例如;
        

    [author_bio]
        

    [author_bio]
        

    [author_bio id=”4″]
        

    [author_bio id =” 4”]
        

    [author_bio username=”admin”]
        

    [author_bio username =“ admin”]
        

    [author_bio email=”user@example.com”]

    [author_bio email =” user@example.com”]

    You can also have the author’s avatar added, by using the avatar parameter like so;
        

    您还可以使用avatar参数添加作者的头像;
        

    [author_bio avatar=”yes”]

    [author_bio avatar =”是”]

    Warning: if you don’t want the avatar, do not change the above to “no” as it will not work, simply change back to [author_bio] alone.

    警告:如果您不想使用该头像,请不要将其更改为“ no”,因为它将不起作用,只需将其单独更改为 [author_bio]

    It’s possible to add the author’s name, too by adding the name parameter;
        

    也可以通过添加name参数来添加作者的姓名;
        

    [author_bio name=”yes”]

    [author_bio name =“ yes”]

    Warning: As with the avatar option, leave the name parameter out completely to hide the name.

    警告:与avatar选项一样,请完全省略name参数以隐藏名称。

    Additionally, you can make the author’s name link to his/her website as defined in their profile;
        

    此外,您还可以按照作者个人资料中的定义将其姓名链接到他/她的网站;
        

    [author_bio name=”yes” name_link=”yes”]

    [author_bio name =“ yes” name_link =“ yes”]

    You can also customise the HTML output which defaults to;

    您还可以自定义默认的HTML输出;

    … the author bio …

    …作者简介…

    There are 7 parameters that describe the HTML above;

    有7个参数描述了上面的HTML;

      • ‘container_element’ defaults to ‘div’ and creates the first div in the example above
      • “ container_element”默认为“ div”,并​​在上面的示例中创建第一个div

      • ‘container_class’ defaults to ‘author_bio_shortcode’ as seen above
      • 如上所示,

      • “ container_class”默认为“ author_bio_shortcode”

      • ‘name_container’ defaults to h3
      • “ name_container”默认为h3

      • ‘name_class’ defaults to ‘name’
      • “名称类”默认为“名称”

      • ‘name_pre’ is empty by default and can be used to add text before the author’s name
      • “ name_pre”默认为空,可用于在作者姓名之前添加文字

      • ‘name_post’ is empty by default and can be used to add text after the author’s name
      • “ name_post”默认为空,可用于在作者姓名后添加文字

      • ‘avatar_container_element’ defaults to ‘div’ and creates the element that surrounds the avatar image
      • “ avatar_container_element”默认为“ div”,并​​创建围绕头像图像的元素

      • ‘avatar_container_class’ defaults to ‘avatar’ and adds itself to the ‘avatar_container_element’
      • “ avatar_container_class”默认为“ avatar”,并将其自身添加到“ avatar_container_element”

      • ‘bio_container_element’ defaults to ‘div’ and wraps the bio text
      • “ bio_container_element”默认为“ div”并包装生物文本

      • ‘bio_container_class’ defaults to ‘bio’ and is used in the bio container element
      • “ bio_container_class”默认为“ bio”,并在bio容器元素中使用

      • ‘bio_paragraph’ defaults to true and decides whether to put the bio text into a Paragrah tag.

      • “ bio_paragraph”默认为true,并决定是否将生物文本放入Paragrah标记中。

        Note, only a value of zero (0) will change it, e.g.

        请注意,只有零(0)值会更改它,例如

        bio_paragraph=0

      • bio_paragraph = 0

      Here is an example using all the HTML parameters to re-create the above example code;
          

      以下是使用所有HTML参数重新创建上述示例代码的示例;
          

      [author_bio container_element=”div” container_class=”author-bio-shortcode” avatar_container_element=”div” avatar_container_class=”avatar” bio_container_element=”div” bio_container_class=”bio” bio_paragraph=”true”]

      [author_bio container_element =“ div” container_class =“ author-bio-shortcode” avatar_container_element =“ div” avatar_container_class =“ avatar” bio_container_element =“ div” bio_container_class =“ bio” bio_paragraph =“ true”]

      This example shows how to remove the P tag from around the bio text;
          

      此示例显示了如何从生物文本周围删除P标签;
          

      [author_bio bio_paragraph=0]

      [author_bio bio_paragraph = 0]

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

[wordpress插件] Author Bio Plus作者Bio Plus

评分0描述Author Bio Plus displays author information in a box at the end of the post. Author Bio Plus在帖子末尾的框中显示作者信息。安装步骤This section d...
继续阅读 »
评分
0
描述

Author Bio Plus displays author information in a box at the end of the post.

Author Bio Plus在帖子末尾的框中显示作者信息。

安装步骤

This section describes how to install the plugin and get it working.

本节介绍如何安装插件并使其正常工作。

e.g.

例如

    1. Upload author-bio-pls to the /wp-content/plugins/ directory
    2. author-bio-pls 上载到 / wp-content / plugins / 目录

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

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

图片拉伸+降噪黑科技 waifu2x-caffe 的命令行和下载链接

USAGE:     waifu2x-caffe-cui.exe  [-b <int>] [-c <int>] [-p &l...
继续阅读 »
USAGE: 

   waifu2x-caffe-cui.exe  [-b <int>] [-c <int>] [-p <cpu|gpu|cudnn>]
                          [--model_dir <string>] [-s <double>] [-n <1|2>]
                          [-m <noise|scale|noise_scale|auto_scale>] [-e
                          <string>] [-l <string>] [-o <string>] -i <string>
                          [--] [--version] [-h]


Where: 

   -b <int>,  --batch_size <int>
     input batch size

   -c <int>,  --crop_size <int>
     input image split size

   -p <cpu|gpu|cudnn>,  --process <cpu|gpu|cudnn>
     process mode

   --model_dir <string>
     path to custom model directory (don't append last / )

   -s <double>,  --scale_ratio <double>
     custom scale ratio

   -n <1|2>,  --noise_level <1|2>
     noise reduction level

   -m <noise|scale|noise_scale|auto_scale>,  --mode <noise|scale
      |noise_scale|auto_scale>
     image processing mode

   -e <string>,  --output_extention <string>
     extention to output image file when output_path is (auto) or
     input_path is folder

   -l <string>,  --input_extention_list <string>
     extention to input image file when input_path is folder

   -o <string>,  --output_path <string>
     path to output image file (when input_path is folder, output_path must
     be folder)

   -i <string>,  --input_path <string>
     (required)  path to input image file

   --,  --ignore_rest
     Ignores the rest of the labeled arguments following this flag.

   --version
     Displays version information and exits.

   -h,  --help
     Displays usage information and exits.


   waifu2x reimplementation using Caffe


下载地址:

链接: https://pan.baidu.com/s/1LwexUUK4su7pHFca7aABCQ 提取码: eti3 复制这段内容后打开百度网盘手机App,操作更方便哦

收起阅读 »

[wordpress插件] Author Bio Box作者简介Box

评分100描述Display a box with the author’s biography and also social icons in bottom of the post.在帖子底部显示一个带有作者传记以及社交图标的框。Contribute贡献Y...
继续阅读 »
评分
100
描述

Display a box with the author’s biography and also social icons in bottom of the post.

在帖子底部显示一个带有作者传记以及社交图标的框。

Contribute

贡献

You can contribute to the source code in our GitHub page.

您可以在我们的 GitHub 页面上为源代码做出贡献。

Credits

信用

    License

    许可证

    Author Bio Box is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any

    Author Bio Box是免费软件:您可以根据自由软件基金会发布的GNU通用公共许可证的条款(许可证的版本3)或(根据您的选择)重新分发和/或修改它

    later version.

    更高版本。

    Author Bio Box is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;

    Author Bio Box的发行是希望它会有用,但没有任何保证;

    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 along with Author Bio Box.

    您应该已经随同Author Bio Box一起收到了GNU通用公共许可证的副本。

    If not, see http://www.gnu.org/licenses/.

    如果没有,请参见 http://www.gnu.org/licenses/

安装步骤

    • Upload plugin files to your plugins folder, or install using WordPress built-in Add New Plugin installer;
    • 将插件文件上传到您的plugins文件夹,或使用WordPress内置的“添加新插件”安装程序进行安装;

    • Activate the plugin;
    • 激活插件;

    • Navigate to Settings -> Author Bio Box and fill the options;
    • 导航至“设置”->“作者简介”并填写选项;

    • Fill the Biographical Info and Contact Info in Users -> Your Profile.
    • 填写用户->您的个人资料中的传记信息联系信息

    Add the box directly

    直接添加框

    Use this function:

    使用此功能:

      <?php    

    if ( function_exists( 'get_author_bio_box' ) ) {        

    如果(function_exists('get_author_bio_box')){        

    echo get_author_bio_box();    

    回声get_author_bio_box();    

    }

    }

    ?>

    ?>

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

[wordpress插件] Author Bind作者绑定

评分0描述Author Bind is a plugin that lets you configure a User ID to override all future added or edited posts/pages.作者绑定是一个插件,可让您配置用...
继续阅读 »
评分
0
描述

Author Bind is a plugin that lets you configure a User ID to override all future added or edited posts/pages.

作者绑定是一个插件,可让您配置用户ID以覆盖所有将来添加或编辑的帖子/页面。

There is a settings page under Settings for this plugin where you can configure this ID.

在此插件的“设置”下有一个设置页,您可以在其中配置此ID。

In addition, this plugin denies viewing author information in the browser.

此外,此插件拒绝在浏览器中查看作者信息。

If you try to access any author .e.g.

如果您尝试访问任何作者。

via http://…./?author=1 you will be redirected to home page.

通过http://…./?author = 1,您将被重定向到主页。

the same goes for perma links.

永久链接也是如此。

The plugin also will override the error message when logging in to something generic, instead of informing the person trying to login if the username exists.

当登录到通用名称时,该插件还将覆盖错误消息,而不通知用户名是否存在尝试登录的人。

This is currently only in english, and not translated.

目前这仅是英文,尚未翻译。

安装步骤

Either download the zip, extract and upload the folder to /wp-content/plugins/ or install it from the extension market.

下载zip压缩包,然后将其解压缩并上传到/ wp-content / plugins /或从扩展市场安装。

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

[wordpress插件] Author Based Twitter Widget基于作者的Twitter小部件

评分0描述This plugin will allow all authors to have their own tweets shown on in the widget area of their posts, by adding it to their...
继续阅读 »
评分
0
描述

This plugin will allow all authors to have their own tweets shown on in the widget area of their posts, by adding it to their profiles.

通过将该插件添加到个人资料,该插件将允许所有作者在其帖子的小部件区域中显示自己的推文。

That way any multi-author blog can let their bloggers promote their own twitter account and not a joint account.

这样,任何多作者博客都可以让其博主宣传自己的Twitter帐户,而不是联合帐户。

安装步骤

The installation process of this plugin is very simple.

此插件的安装过程非常简单。

    1. Upload the folder and content author-based-twitter-widget to /wp-content/plugins/ folder.
    2. 将文件夹和内容 author-based-twitter-widget 上载到 / wp-content / plugins / 文件夹。

    3. Activate the plugin from the Plugins menu in the WordPress Administrative Panel
    4. 从WordPress管理面板中的“插件”菜单中激活插件

    5. Place the Widget at desired location from the Widget Menu in the WordPress Administrative Panel
    6. 通过WordPress管理面板中的“小部件菜单”将小部件放置在所需位置

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

[wordpress插件] Author Avatar Grid Widget作者Avatar Grid Widget

评分100描述Need a pretty way to display all of your blog’s authors?是否需要一种漂亮的方式来显示您所有博客的作者?Want to display Gravatars for all of your si...
继续阅读 »
评分
100
描述

Need a pretty way to display all of your blog’s authors?

是否需要一种漂亮的方式来显示您所有博客的作者?

Want to display Gravatars for all of your site’s subscribers?

是否想为您网站的所有订阅者显示Gravatars?

The Author Avatar Grid Widget displays a grid of Gravatars for all users meeting the criteria defined within the widget settings.

Author Avatar Grid窗口小部件为所有满足窗口小部件设置中定义的条件的用户显示Gravatars网格。

    • Select to display all users or users of a specific role (administrator, editor, author, etc…)
    • 选择显示所有用户或具有特定角色的用户(管理员,编辑者,作者等)

    • Choose to display only users with published posts
    • 选择仅显示发布了帖子的用户

    • Define the Gravatar size
    • 定义墓碑大小

    Feature suggestions gladly accepted http://cudathemes.com/contact

    功能性建议很高兴地接受了http://cudathemes.com/contact

安装步骤

    1. Upload author-avatar-grid-widget to the /wp-content/plugins/ directory
    2. author-avatar-grid-widget 上载至 / wp-content / plugins / 目录

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

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

[wordpress插件] author-avatar作者头像

评分0描述Add an upload field in the user profile admin – Don’t want to use gravatar profile picture, or just don’t have one, just down...
继续阅读 »
评分
0
描述

Add an upload field in the user profile admin – Don’t want to use gravatar profile picture, or just don’t have one, just download this plugin.

在用户个人资料管理员中添加一个上传字段-不想使用gravatar个人资料图片,或者只是没有人,只需下载此插件即可。

It will add a custom field in the user admin with the possibility to upload your own.

它将在用户admin中添加一个自定义字段,并可以上传您自己的字段。

Once uploaded, it will add the picture url inside the usermeta table so you can easily display it with get_the_author_meta .

上载后,它将在usermeta表中添加图片网址,因此您可以轻松地通过 get_the_author_meta 显示它。

Translation ready and already available in French.

已准备好翻译,并且已经提供法语版本。

    • Easy to use, once activated and your picture uploaded, grab the source url with:

      易于使用,一旦激活并上传了图片,请使用以下网址获取源网址:

    Just add an image tag where you want the picture to be displayed like so:

    只需在要显示图片的位置添加一个图像标签,如下所示:

     My Custom user Profile Picture

      ” alt =“我的自定义用户个人资料图片”>

    Et voilà!

    等等!

安装步骤

    1. Upload “ to the /wp-content/plugins/ directory
    2. 将“上传”到 / wp-content / plugins / 目录

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

    5. grab the source url with $user_meta_image = esc_attr( get_the_author_meta( 'user_meta_image', get_the_id() ) );.

    6. 使用 $ user_meta_image = esc_attr(get_the_author_meta('user_meta_image',get_the_id())); 来获取源URL。

      Just add an image tag where you want the picture to be displayed like so: My Custom user Profile Picture

      只需在要显示图片的位置添加一个图像标签,如下所示: ” alt =“我的自定义用户个人资料图片”>

      li>

      li>

    7. Style as you wish.
    8. 您想要的样式。

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

[wordpress插件] Author Archives作者档案

评分100描述Simple plugin helps to personalize authors or users page with sidebar widgets specific to authors or users page.简单的插件有助于使用特...
继续阅读 »
评分
100
描述

Simple plugin helps to personalize authors or users page with sidebar widgets specific to authors or users page.

简单的插件有助于使用特定于作者或用户页面的侧边栏小部件来个性化作者或用户页面。

It will display author specific archives.

它将显示作者特定的档案。

Features:

特点:

1. Custom widget title, option to add author name.

1.自定义窗口小部件标题,添加作者姓名的选项。

2. Counts number of posts by author.

2.按作者计数的帖子数。

3. Easy to add.

3.易于添加。

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

[wordpress插件] Author Advertising Rewards作者广告奖励

评分0描述Allows authors to specify an advertising ID (Google Publisher ID for AdSense) and share your blog?s ad revenue.允许作者指定广告ID(AdS...
继续阅读 »
评分
0
描述

Allows authors to specify an advertising ID (Google Publisher ID for AdSense) and share your blog?s ad revenue.

允许作者指定广告ID(AdSense的Google发布商ID)并分享您博客的广告收入。

Each author gets random hits of the main page based on popluarity of his post.

每个作者都会根据自己帖子的流行程度来随机访问主页。

By Derrick D. Threatt.

Derrick D. Threatt着。

(Still under Development) This plugin was based on the author-advertising-plugin by Harley Quine but all of the code is entirely new.

(仍在开发中)该插件基于Harley Quine的author-advertising-plugin,但所有代码都是全新的。

Read the FAQ Author Advertising Plugin FAQ for more detailed information on how to use this plugin.

阅读FAQ作者广告插件常见问题解答,以获取有关如何使用此插件的更多详细信息。

Admin has complete control over

管理员可以完全控制

The percentage of author?s ads to admin ad?s.

作者的广告占管理广告的百分比。

The user level that an author has to be before they get to participate in the revenue sharing program Whether to randomise author ads on the front page of the blog.

作者必须具备的用户级别才能参与收益共享计划是否在博客首页上随机化作者广告。

The page that authors see before entering their publisher id.

作者在输入发布者ID之前会看到的页面。

Custom fields where you can collect additional information from your authors and display it.

自定义字段,您可以在其中收集作者的其他信息并进行显示。

Authors publisher ID?s, and other custom information (you can edit and delete an author?s advertising entries)

作者发布者ID和其他自定义信息(您可以编辑和删除作者的广告条目)

安装步骤

    1. Install using WordPress 2.7
    2. 使用WordPress 2.7安装

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

    5. Modify the settings in Settings > Author Advertising Config
    6. 在“设置”>“作者广告配置”中修改设置

下载地址
https://downloads.wordpress.org/plugin/author-advertising-rewards.zip
收起阅读 »
<<<7293729472957296729772987299>>>