Wordpress Plugin

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Supz
    Arthur Flegenheimer
    • Jul 2006
    • 11057

    #1

    Wordpress Plugin

    Im looking for a workpress plugin that will create tags automatically based on content.

    Thanks.
  • Emil
    Confirmed User
    • Feb 2007
    • 5658

    #2
    Bump for you! I was looking for this the other day!
    Free 🅑🅘🅣🅒🅞🅘🅝🅢 Every Hour (Yes, really. Free ₿itCoins.)
    (Signup with ONLY your Email and Password. You can also refer people and get even more.)

    Comment

    • just a punk
      So fuckin' bored
      • Jun 2003
      • 32393

      #3
      CyberSEO Suite can do that
      Obey the Cowgod

      Comment

      • Helix
        Confirmed User
        • Feb 2002
        • 6021

        #4
        http://wordpress.org/extend/plugins/simple-tags/

        Comment

        • just a punk
          So fuckin' bored
          • Jun 2003
          • 32393

          #5
          Forgot to mention. The CyberSEO Suite will not slow down your server because it creates the tags only once - when the post is being syndicated.
          Last edited by just a punk; 07-25-2010, 05:11 AM.
          Obey the Cowgod

          Comment

          • fris
            Too lazy to set a custom title
            • Aug 2002
            • 55679

            #6
            hit me up i may have something for you
            Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

            Comment

            • Supz
              Arthur Flegenheimer
              • Jul 2006
              • 11057

              #7
              Installed this. a little to much shit here. I just want something that will generate tags. I haven't figured out how to do so with this.

              Comment

              • Supz
                Arthur Flegenheimer
                • Jul 2006
                • 11057

                #8
                Originally posted by fris
                hit me up i may have something for you
                Will hit you up on the ICQ.

                Comment

                • RyuLion
                  • Mar 2003
                  • 32369

                  #9
                  I want this too!

                  Adult Biz Consultant A tech head since 1995
                  Affiliate Support: Chaturbate | CCBill Live

                  Comment

                  • just a punk
                    So fuckin' bored
                    • Jun 2003
                    • 32393

                    #10
                    Here is how you can do it with CyberSEO Suite.

                    1) Go to the syndicating feed setting menu.
                    2) Enable the "Create tags from category names" option.
                    3) Past the following code into the "PHP Code <?php .. ?>" field:

                    PHP Code:
                    $lines = @file ( "http://www.mydomain/tags.txt" );
                    
                    if (count ( $lines ) > 0) {
                        foreach ( $lines as $line ) {
                            $words = explode ( "|", $line );
                            $tag = $words [0];
                            foreach ( $words as $word ) {
                                if (stripos ( $post ['post_content'], trim ( $word ) ) !== false) {
                                    $post ['categories'] [] = $tag;
                                }
                            }
                        }
                    } 
                    
                    Where http://www.mydomain/tags.txt must be replaced with the path (URL) to a text file with your tags list.

                    4) Save the feed's settings.

                    Now a few words about tags list file format. It's just a plain text file where each line contains a tag name which will be searched in the post body. E.g.:

                    hardcore
                    anal
                    big tits
                    lesbian
                    etc...

                    Whose words from the tag list that will be found in the syndicating post body, will be added to the post tags.

                    Also you can specify a set of words/phrases that correspond to some particular tag. For example, if you want to make the "anal" tag associated to these phases: "ass fuck", "asshole", "fucked in the ass". Just modify your tags list as shown below:

                    hardcore
                    anal|ass fuck|asshole|fucked in the ass
                    big tits
                    lesbian
                    etc...

                    So if the syndicating post will contain any of these phases: "anal", "ass fuck", "asshole", "fucked in the ass". The "anal" tag will be added.
                    Obey the Cowgod

                    Comment

                    • fris
                      Too lazy to set a custom title
                      • Aug 2002
                      • 55679

                      #11
                      but you have to make a list of tags before hand right?

                      not actually click someting on the post screen like fetch tags
                      Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

                      Comment

                      • just a punk
                        So fuckin' bored
                        • Jun 2003
                        • 32393

                        #12
                        I don't see any problem making the list manually. Also don't forget about possibility to associate any number of keywords and phrases with some particular tag. I don't think there are other plugins that can do the same as that small piece of code that I wrote for CyberSEO Suite.
                        Obey the Cowgod

                        Comment

                        Working...